]> git.openstreetmap.org Git - rails.git/commitdiff
Make context menu entries translateable
authorTom Hughes <tom@compton.nu>
Sun, 12 Feb 2017 15:03:56 +0000 (15:03 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 12 Feb 2017 19:19:14 +0000 (19:19 +0000)
app/assets/javascripts/index/contextmenu.js
config/locales/en.yml

index f9f49db15c736186f31be61c36bba57138bac1f8..8a4654b97b9316b336e1ff70e8f031e9273aed71 100644 (file)
@@ -1,6 +1,6 @@
 OSM.initializeContextMenu = function (map) {
   map.contextmenu.addItem({
-    text: "Directions from here",
+    text: I18n.t("javascripts.context.directions_from"),
     callback: function directionsFromHere(e) {
       var precision = OSM.zoomPrecision(map.getZoom()),
           latlng = e.latlng.wrap(),
@@ -14,7 +14,7 @@ OSM.initializeContextMenu = function (map) {
   });
 
   map.contextmenu.addItem({
-    text: "Directions to here",
+    text: I18n.t("javascripts.context.directions_to"),
     callback: function directionsToHere(e) {
       var precision = OSM.zoomPrecision(map.getZoom()),
           latlng = e.latlng.wrap(),
@@ -28,7 +28,7 @@ OSM.initializeContextMenu = function (map) {
   });
 
   map.contextmenu.addItem({
-    text: "Add a note here",
+    text: I18n.t("javascripts.context.add_note"),
     callback: function addNoteHere(e) {
       // I'd like this, instead of panning, to pass a query parameter about where to place the marker
       map.panTo(e.latlng.wrap(), {animate: false});
@@ -37,7 +37,7 @@ OSM.initializeContextMenu = function (map) {
   });
 
   map.contextmenu.addItem({
-    text: "Show address",
+    text: I18n.t("javascripts.context.show_address"),
     callback: function describeLocation(e) {
       var precision = OSM.zoomPrecision(map.getZoom()),
           latlng = e.latlng.wrap(),
@@ -49,7 +49,7 @@ OSM.initializeContextMenu = function (map) {
   });
 
   map.contextmenu.addItem({
-    text: "Query features",
+    text: I18n.t("javascripts.context.query_features"),
     callback: function queryFeatures(e) {
       var precision = OSM.zoomPrecision(map.getZoom()),
           latlng = e.latlng.wrap(),
@@ -61,7 +61,7 @@ OSM.initializeContextMenu = function (map) {
   });
 
   map.contextmenu.addItem({
-    text: "Centre map here",
+    text: I18n.t("javascripts.context.centre_map"),
     callback: function centreMap(e) {
       map.panTo(e.latlng);
     }
index 2414fcd1f0ef3c6a2c789f5e03110bc224a3f29b..58c21db0050b331c34f8ab98ed7daa3ca1c40a64 100644 (file)
@@ -2305,6 +2305,13 @@ en:
       nothing_found: No features found
       error: "Error contacting %{server}: %{error}"
       timeout: "Timeout contacting %{server}"
+    context:
+      directions_from: Directions from here
+      directions_to: Directions to here
+      add_note: Add a note here
+      show_address: Show address
+      query_features: Query features
+      centre_map: Centre map here
   redaction:
     edit:
       description: "Description"