Fix .more-fields string

This commit is contained in:
Aaron Lidman
2014-10-30 16:07:38 -04:00
parent 554dc77cef
commit ced0158327
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -227,6 +227,7 @@ en:
way: Way
relation: Relation
location: Location
add_fields: Add additional fields
background:
title: Background
description: Background settings
+2 -1
View File
@@ -278,7 +278,8 @@
"node": "Node",
"way": "Way",
"relation": "Relation",
"location": "Location"
"location": "Location",
"add_fields": "Add additional fields"
},
"background": {
"title": "Background",
+1 -1
View File
@@ -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]);