diff --git a/data/core.yaml b/data/core.yaml index 1cc2feab8..43cbc67fb 100644 --- a/data/core.yaml +++ b/data/core.yaml @@ -227,6 +227,7 @@ en: way: Way relation: Relation location: Location + add_fields: Add additional fields background: title: Background description: Background settings diff --git a/dist/locales/en.json b/dist/locales/en.json index feabccf91..d9a9b0d78 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -278,7 +278,8 @@ "node": "Node", "way": "Way", "relation": "Relation", - "location": "Location" + "location": "Location", + "add_fields": "Add additional fields" }, "background": { "title": "Background", diff --git a/js/id/ui/preset.js b/js/id/ui/preset.js index afa5c8670..c7152f1f9 100644 --- a/js/id/ui/preset.js +++ b/js/id/ui/preset.js @@ -170,7 +170,7 @@ iD.ui.preset = function(context) { $more.enter().append('div') .attr('class', 'more-fields') .append('label') - .text('Add additional fields'); + .text(t('inspector.add_fields')); var $input = $more.selectAll('.value') .data([0]);