Fix "Remove" translation in radio field (fixes #1317)

This commit is contained in:
John Firebaugh
2013-04-15 17:06:01 -07:00
parent d6e51cc777
commit 7f498c2a10
8 changed files with 13 additions and 11 deletions
+3
View File
@@ -13,6 +13,9 @@ DATA_FILES = $(shell find data -type f -name '*.json' -o -name '*.md')
data/data.js: $(DATA_FILES)
node build.js
data/locales/en.js: data/core.yaml data/presets.yaml
node build.js
iD.js: \
js/lib/bootstrap-tooltip.js \
js/lib/d3.v3.js \
+1
View File
@@ -161,6 +161,7 @@ en:
results: "{n} results for {search}"
reference: View on OpenStreetMap Wiki
back_tooltip: Change feature type
remove: Remove
background:
title: Background
description: Background settings
+2 -1
View File
@@ -4273,7 +4273,8 @@ locale.en = {
"choose": "Select feature type",
"results": "{n} results for {search}",
"reference": "View on OpenStreetMap Wiki",
"back_tooltip": "Change feature type"
"back_tooltip": "Change feature type",
"remove": "Remove"
},
"background": {
"title": "Background",
+3 -3
View File
@@ -198,7 +198,8 @@ locale.en = {
"choose": "Select feature type",
"results": "{n} results for {search}",
"reference": "View on OpenStreetMap Wiki",
"back_tooltip": "Change feature type"
"back_tooltip": "Change feature type",
"remove": "Remove"
},
"background": {
"title": "Background",
@@ -566,8 +567,7 @@ locale.en = {
"bridge": "Bridge",
"tunnel": "Tunnel",
"embankment": "Embankment",
"cutting": "Cutting",
"remove": "Remove"
"cutting": "Cutting"
}
},
"supervised": {
-1
View File
@@ -182,7 +182,6 @@ en:
tunnel: Tunnel
embankment: Embankment
cutting: Cutting
remove: Remove
supervised:
label: Supervised
surface:
+1 -2
View File
@@ -451,8 +451,7 @@
"bridge": "Bridge",
"tunnel": "Tunnel",
"embankment": "Embankment",
"cutting": "Cutting",
"remove": "Remove"
"cutting": "Cutting"
}
}
},
+1 -2
View File
@@ -12,8 +12,7 @@
"bridge": "Bridge",
"tunnel": "Tunnel",
"embankment": "Embankment",
"cutting": "Cutting",
"remove": "Remove"
"cutting": "Cutting"
}
}
}
+2 -2
View File
@@ -25,9 +25,9 @@ iD.ui.preset.radio = function(field) {
buttons.classed('active', false);
change();
})
.text( field.t('options.remove'))
.text(t('inspector.remove'))
.append('span')
.attr('class', 'icon remove');
.attr('class', 'icon remove');
}
function change() {