mirror of
https://github.com/FoggedLens/iD.git
synced 2026-04-21 11:16:36 +02:00
Fix "Remove" translation in radio field (fixes #1317)
This commit is contained in:
@@ -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 \
|
||||
|
||||
@@ -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
@@ -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
@@ -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": {
|
||||
|
||||
@@ -182,7 +182,6 @@ en:
|
||||
tunnel: Tunnel
|
||||
embankment: Embankment
|
||||
cutting: Cutting
|
||||
remove: Remove
|
||||
supervised:
|
||||
label: Supervised
|
||||
surface:
|
||||
|
||||
@@ -451,8 +451,7 @@
|
||||
"bridge": "Bridge",
|
||||
"tunnel": "Tunnel",
|
||||
"embankment": "Embankment",
|
||||
"cutting": "Cutting",
|
||||
"remove": "Remove"
|
||||
"cutting": "Cutting"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -12,8 +12,7 @@
|
||||
"bridge": "Bridge",
|
||||
"tunnel": "Tunnel",
|
||||
"embankment": "Embankment",
|
||||
"cutting": "Cutting",
|
||||
"remove": "Remove"
|
||||
"cutting": "Cutting"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user