mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-20 23:44:47 +02:00
Translate "Okay" in confirm dialogs
This commit is contained in:
@@ -190,6 +190,8 @@ en:
|
||||
facebook: "Share on Facebook"
|
||||
tweet: "Tweet"
|
||||
okay: "Okay"
|
||||
confirm:
|
||||
okay: "Okay"
|
||||
splash:
|
||||
welcome: Welcome to the iD OpenStreetMap editor
|
||||
text: "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}."
|
||||
|
||||
Vendored
+3
@@ -234,6 +234,9 @@
|
||||
"tweet": "Tweet",
|
||||
"okay": "Okay"
|
||||
},
|
||||
"confirm": {
|
||||
"okay": "Okay"
|
||||
},
|
||||
"splash": {
|
||||
"welcome": "Welcome to the iD OpenStreetMap editor",
|
||||
"text": "iD is a friendly but powerful tool for contributing to the world's best free world map. This is version {version}. For more information see {website} and report bugs at {github}.",
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@ iD.ui.confirm = function(selection) {
|
||||
.on('click.confirm', function() {
|
||||
modal.remove();
|
||||
})
|
||||
.text('Okay');
|
||||
.text(t('confirm.okay'));
|
||||
|
||||
return modal;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user