diff --git a/data/core.yaml b/data/core.yaml index de1a0e20f..a031ad0b6 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -123,8 +123,8 @@ en: deleted: Deleted created: Created contributors: - list: "Viewing contributions by {users}" - truncated_list: "Viewing contributions by {users} and {count} others" + list: "Contributed by {users}" + truncated_list: "Contributed by {users} and {count} others" geocoder: title: Find a place placeholder: Find a place @@ -182,8 +182,6 @@ en: zoom: in: Zoom In out: Zoom Out - imagery: - provided_by: "Imagery provided by {source}" gpx: local_layer: "Local GPX file" drag_drop: "Drag and drop a .gpx file on the page" diff --git a/data/locales.js b/data/locales.js index c8f62cf4a..cc1170352 100644 --- a/data/locales.js +++ b/data/locales.js @@ -156,8 +156,8 @@ locale.en = { "created": "Created" }, "contributors": { - "list": "Viewing contributions by {users}", - "truncated_list": "Viewing contributions by {users} and {count} others" + "list": "Contributed by {users}", + "truncated_list": "Contributed by {users} and {count} others" }, "geocoder": { "title": "Find a place", @@ -227,9 +227,6 @@ locale.en = { "in": "Zoom In", "out": "Zoom Out" }, - "imagery": { - "provided_by": "Imagery provided by {source}" - }, "gpx": { "local_layer": "Local GPX file", "drag_drop": "Drag and drop a .gpx file on the page" diff --git a/js/id/ui/attribution.js b/js/id/ui/attribution.js index f06b04972..9c4ecb7a7 100644 --- a/js/id/ui/attribution.js +++ b/js/id/ui/attribution.js @@ -16,14 +16,13 @@ iD.ui.Attribution = function(context) { source = ''; } - var desc = t('imagery.provided_by', {source: source}); if (d.data.terms_url) { provided_by.append('a') .attr('href', d.data.terms_url) .attr('target', '_blank') - .html(desc); + .html(source); } else { - provided_by.text(desc); + provided_by.text(source); } var copyright = d.copyrightNotices(context.map().zoom(), context.map().extent());