From ced015832791666867d481a03b3cba4b6e97cdb3 Mon Sep 17 00:00:00 2001 From: Aaron Lidman Date: Thu, 30 Oct 2014 16:07:38 -0400 Subject: [PATCH] Fix .more-fields string --- data/core.yaml | 1 + dist/locales/en.json | 3 ++- js/id/ui/preset.js | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) 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]);