From aeb48a40eed7924e32ee2bbfc87345f8dbe267fc Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Fri, 21 Apr 2023 07:41:23 +0000 Subject: [PATCH 01/20] show line length while drawing line --- umap/static/umap/js/umap.controls.js | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 2ca538b9..a1fbfc69 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1198,7 +1198,7 @@ L.U.Editable = L.Editable.extend({ initialize: function (map, options) { L.Editable.prototype.initialize.call(this, map, options); - this.on('editable:drawing:start editable:drawing:click', this.drawingTooltip); + this.on('editable:drawing:start editable:drawing:click editable:drawing:move', this.drawingTooltip); this.on('editable:drawing:end', this.closeTooltip); // Layer for items added by users this.on('editable:drawing:cancel', function (e) { @@ -1250,18 +1250,26 @@ L.U.Editable = L.Editable.extend({ drawingTooltip: function (e) { var content; + var readableDistance; if (e.layer instanceof L.Marker) content = L._('Click to add a marker'); else if (e.layer instanceof L.Polyline) { if (!e.layer.editor._drawnLatLngs.length) { - if (e.layer instanceof L.Polygon) content = L._('Click to start drawing a polygon'); - else if (e.layer instanceof L.Polyline) content = L._('Click to start drawing a line'); - } else if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { - content = L._('Click to continue drawing'); + if (e.layer instanceof L.Polygon){ + content = L._('Click to start drawing a polygon'); + } else if (e.layer instanceof L.Polyline) { + content = L._('Click to start drawing a line'); + } } else { - content = L._('Click last point to finish shape'); + var tempLatLngs = e.layer.editor._drawnLatLngs.slice(); + tempLatLngs.push(e.latlng); + var length = L.GeoUtil.lineLength(this.map, tempLatLngs); + readableDistance = L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit()); + content = L._('Click last point to finish shape ({distance})', {distance: readableDistance}); } } - if (content) this.map.ui.tooltip({content: content}); + if (content) { + this.map.ui.tooltip({content: content}); + } }, closeTooltip: function () { From ec6239a837de3d3dafb10a798aba7e8968ca23c8 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Fri, 21 Apr 2023 14:55:20 +0000 Subject: [PATCH 02/20] append distance as variable to all translations --- umap/static/umap/locale/am_ET.js | 2 +- umap/static/umap/locale/am_ET.json | 2 +- umap/static/umap/locale/ar.js | 2 +- umap/static/umap/locale/ar.json | 2 +- umap/static/umap/locale/ast.js | 2 +- umap/static/umap/locale/ast.json | 2 +- umap/static/umap/locale/bg.js | 2 +- umap/static/umap/locale/bg.json | 2 +- umap/static/umap/locale/ca.js | 2 +- umap/static/umap/locale/ca.json | 2 +- umap/static/umap/locale/cs_CZ.js | 2 +- umap/static/umap/locale/cs_CZ.json | 2 +- umap/static/umap/locale/da.js | 2 +- umap/static/umap/locale/da.json | 2 +- umap/static/umap/locale/de.js | 2 +- umap/static/umap/locale/de.json | 2 +- umap/static/umap/locale/el.js | 2 +- umap/static/umap/locale/el.json | 2 +- umap/static/umap/locale/en.js | 2 +- umap/static/umap/locale/en.json | 2 +- umap/static/umap/locale/en_US.json | 2 +- umap/static/umap/locale/es.js | 2 +- umap/static/umap/locale/es.json | 2 +- umap/static/umap/locale/et.js | 2 +- umap/static/umap/locale/et.json | 2 +- umap/static/umap/locale/fa_IR.js | 2 +- umap/static/umap/locale/fa_IR.json | 2 +- umap/static/umap/locale/fi.js | 2 +- umap/static/umap/locale/fi.json | 2 +- umap/static/umap/locale/fr.js | 2 +- umap/static/umap/locale/fr.json | 2 +- umap/static/umap/locale/gl.js | 2 +- umap/static/umap/locale/gl.json | 2 +- umap/static/umap/locale/he.js | 2 +- umap/static/umap/locale/he.json | 2 +- umap/static/umap/locale/hr.js | 2 +- umap/static/umap/locale/hr.json | 2 +- umap/static/umap/locale/hu.js | 2 +- umap/static/umap/locale/hu.json | 2 +- umap/static/umap/locale/id.js | 2 +- umap/static/umap/locale/id.json | 2 +- umap/static/umap/locale/is.js | 2 +- umap/static/umap/locale/is.json | 2 +- umap/static/umap/locale/it.js | 2 +- umap/static/umap/locale/it.json | 2 +- umap/static/umap/locale/ja.js | 2 +- umap/static/umap/locale/ja.json | 2 +- umap/static/umap/locale/lt.js | 2 +- umap/static/umap/locale/lt.json | 2 +- umap/static/umap/locale/ms.js | 2 +- umap/static/umap/locale/ms.json | 2 +- umap/static/umap/locale/nl.js | 2 +- umap/static/umap/locale/nl.json | 2 +- umap/static/umap/locale/no.js | 2 +- umap/static/umap/locale/no.json | 2 +- umap/static/umap/locale/pl.js | 2 +- umap/static/umap/locale/pl.json | 2 +- umap/static/umap/locale/pl_PL.json | 2 +- umap/static/umap/locale/pt.js | 2 +- umap/static/umap/locale/pt.json | 2 +- umap/static/umap/locale/pt_BR.js | 2 +- umap/static/umap/locale/pt_BR.json | 2 +- umap/static/umap/locale/pt_PT.js | 2 +- umap/static/umap/locale/pt_PT.json | 2 +- umap/static/umap/locale/ro.js | 2 +- umap/static/umap/locale/ro.json | 2 +- umap/static/umap/locale/ru.js | 2 +- umap/static/umap/locale/ru.json | 2 +- umap/static/umap/locale/si_LK.js | 2 +- umap/static/umap/locale/si_LK.json | 2 +- umap/static/umap/locale/sk_SK.js | 2 +- umap/static/umap/locale/sk_SK.json | 2 +- umap/static/umap/locale/sl.js | 2 +- umap/static/umap/locale/sl.json | 2 +- umap/static/umap/locale/sr.js | 2 +- umap/static/umap/locale/sr.json | 2 +- umap/static/umap/locale/sv.js | 2 +- umap/static/umap/locale/sv.json | 2 +- umap/static/umap/locale/th_TH.js | 2 +- umap/static/umap/locale/th_TH.json | 2 +- umap/static/umap/locale/tr.js | 2 +- umap/static/umap/locale/tr.json | 2 +- umap/static/umap/locale/uk_UA.js | 2 +- umap/static/umap/locale/uk_UA.json | 2 +- umap/static/umap/locale/vi.js | 2 +- umap/static/umap/locale/vi.json | 2 +- umap/static/umap/locale/vi_VN.json | 2 +- umap/static/umap/locale/zh.js | 2 +- umap/static/umap/locale/zh.json | 2 +- umap/static/umap/locale/zh_CN.json | 2 +- umap/static/umap/locale/zh_TW.Big5.json | 2 +- umap/static/umap/locale/zh_TW.js | 2 +- umap/static/umap/locale/zh_TW.json | 2 +- 93 files changed, 93 insertions(+), 93 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 6d056164..166785be 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "ፕሪሴት ምረጥ", "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", - "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", + "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index e9824927..23355682 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -115,7 +115,7 @@ "Choose a preset": "ፕሪሴት ምረጥ", "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", - "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", + "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 9e850e8b..3cbc5a52 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 2bb2c519..2f0a1f2a 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index b0ee5030..8c26fc66 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index b047d8b8..82020ade 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Изберете предварително зададен", "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index e014ba6e..5893f6b7 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -115,7 +115,7 @@ "Choose a preset": "Изберете предварително зададен", "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index a82c8bdb..2f7c4773 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 1b3b00ed..f69b82d6 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 2261adee..de0d24bc 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Zvolte přednastavení", "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", - "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", + "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index 3fe77f9e..e8880ea0 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -115,7 +115,7 @@ "Choose a preset": "Zvolte přednastavení", "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", - "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", + "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 7b6ffe6e..4034521b 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vælg en forudindstilling", "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", - "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", + "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 5def18a4..4e64d5ec 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -115,7 +115,7 @@ "Choose a preset": "Vælg en forudindstilling", "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", - "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", + "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index d35fe308..9d0b5e48 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Wähle eine Vorlage", "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", - "Click last point to finish shape": "Kllicke den letzten Punkt an, um die Form abzuschließen", + "Click last point to finish shape ({distance})": "Kllicke den letzten Punkt an, um die Form abzuschließen ({distance})", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index a09de601..3dfe92af 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -115,7 +115,7 @@ "Choose a preset": "Wähle eine Vorlage", "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", - "Click last point to finish shape": "Kllicke den letzten Punkt an, um die Form abzuschließen", + "Click last point to finish shape ({distance})": "Kllicke den letzten Punkt an, um die Form abzuschließen ({distance})", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 7901726d..39d8a199 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Επιλογή προκαθορισμένου", "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", - "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", + "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index 2e0fca8d..d9a2862a 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -115,7 +115,7 @@ "Choose a preset": "Επιλογή προκαθορισμένου", "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", - "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", + "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index cde374c2..b0aaf6d7 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index 500299e7..c38991c3 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index 9b2cac56..619ebb52 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Elegir un preestablecido", "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", - "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", + "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 8112f10c..932fbbbe 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -115,7 +115,7 @@ "Choose a preset": "Elegir un preestablecido", "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", - "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", + "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index b8189f3a..937e0c49 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vali algseade", "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", - "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", + "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 12410d77..80c7953c 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -115,7 +115,7 @@ "Choose a preset": "Vali algseade", "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", - "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", + "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index edd592fc..c57417db 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "از پیش تعیین شده را انتخاب کنید", "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", - "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", + "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index 0339d780..e8e91404 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -115,7 +115,7 @@ "Choose a preset": "از پیش تعیین شده را انتخاب کنید", "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", - "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", + "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index 1d29a8a7..8b50740c 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Valitse", "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", - "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", + "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index f77d7e69..91aaa6f2 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -115,7 +115,7 @@ "Choose a preset": "Valitse", "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", - "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", + "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index d86aabd2..48511ea4 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choisir dans les présélections", "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", - "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", + "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index c089c57c..573e05cc 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -115,7 +115,7 @@ "Choose a preset": "Choisir dans les présélections", "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", - "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", + "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index b3ce447d..ebac4336 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escoller un predefinido", "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", - "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", + "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index 73053718..b09ca5ef 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -115,7 +115,7 @@ "Choose a preset": "Escoller un predefinido", "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", - "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", + "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index 36d68080..da56d7f9 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "נא לבחור ערכה", "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", - "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", + "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 6567facb..55d6a38e 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -115,7 +115,7 @@ "Choose a preset": "נא לבחור ערכה", "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", - "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", + "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index 05d44571..93747ce6 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index ac78916e..b8f25d90 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 947f3322..17709b55 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Előbeállítás kiválasztása", "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", - "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", + "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index 488c7b99..9ff8b2d1 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -115,7 +115,7 @@ "Choose a preset": "Előbeállítás kiválasztása", "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", - "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", + "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index 9e0af37c..3fb76b06 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index e9b6d16a..7b2a99b0 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Veldu forstillingu", "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", - "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", + "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index df0a4e23..908697d8 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -115,7 +115,7 @@ "Choose a preset": "Veldu forstillingu", "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", - "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", + "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 9634b175..49efddfb 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Seleziona una preimpostazione", "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", - "Click last point to finish shape": "Click su ultimo punto per completare la geometria", + "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 93f1e43a..3cf8ce57 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -115,7 +115,7 @@ "Choose a preset": "Seleziona una preimpostazione", "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", - "Click last point to finish shape": "Click su ultimo punto per completare la geometria", + "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index ac8a6ae9..85176c61 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "プリセット選択", "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", - "Click last point to finish shape": "クリックでシェイプの作成を終了", + "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index fedb8793..a72facf9 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -115,7 +115,7 @@ "Choose a preset": "プリセット選択", "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", - "Click last point to finish shape": "クリックでシェイプの作成を終了", + "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index 01d7e38f..b21b5666 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Pasirinkite šabloną", "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", - "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", + "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index b668b5f5..b593d035 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -115,7 +115,7 @@ "Choose a preset": "Pasirinkite šabloną", "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", - "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", + "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index d2a7864c..cec6b61d 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Pilih pratetapan", "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", - "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", + "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index 69316ee2..1fccebe5 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -115,7 +115,7 @@ "Choose a preset": "Pilih pratetapan", "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", - "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", + "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 09da6300..4282f2a6 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Kies een voorkeuzeinstelling", "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", - "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", + "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index 7e785289..26277bdb 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -115,7 +115,7 @@ "Choose a preset": "Kies een voorkeuzeinstelling", "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", - "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", + "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index ac5acadc..4abfc843 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 57509834..f9e88989 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index 4aee9c5e..05867c1e 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Wybierz szablon", "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", - "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", + "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 39676835..57f1f129 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -115,7 +115,7 @@ "Choose a preset": "Wybierz szablon", "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", - "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", + "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 63b202d0..dc1959b2 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index bb781522..4e37fed4 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index 8ae0b9f8..545cc0e3 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 92883fa1..317dcaf8 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index f162dae3..efb46dde 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 777e2fc5..3dbb4fbe 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", + "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index 5d46780a..20e00a26 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index 45aec9cd..6e351c88 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 5e6c4780..5b753e00 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Выберите шаблон", "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", - "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", + "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 42419d98..2be52a2d 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -115,7 +115,7 @@ "Choose a preset": "Выберите шаблон", "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", - "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", + "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index f836cf05..0f47744d 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 06dac3ef..5a3d119e 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vyberte predvoľbu", "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", - "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", + "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 3fd4c543..27f1e9f2 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -115,7 +115,7 @@ "Choose a preset": "Vyberte predvoľbu", "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", - "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", + "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index fb50b3de..681b8cc9 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Izbor prednastavitev", "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", - "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", + "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index cc096b1a..d62de312 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -115,7 +115,7 @@ "Choose a preset": "Izbor prednastavitev", "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", - "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", + "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index 0ec4ca29..05d6f21e 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Изаберите претходно подешавање", "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", - "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", + "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index dc1a2e2a..c047eca7 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -115,7 +115,7 @@ "Choose a preset": "Изаберите претходно подешавање", "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", - "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", + "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index 3d1b3ccd..acf4ee92 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Välj förinställning", "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", - "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", + "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index 31bd75e4..db110ccc 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -115,7 +115,7 @@ "Choose a preset": "Välj förinställning", "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", - "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", + "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index c6e5a72a..b5b8084c 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 07ac3816..928be82e 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Bir ön ayar seç", "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", - "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", + "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index ebfd7eed..05339e56 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -115,7 +115,7 @@ "Choose a preset": "Bir ön ayar seç", "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", - "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", + "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index 236bc1b2..cce218e6 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Виберіть шаблон", "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", - "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", + "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 7d75fe0d..9334258e 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -115,7 +115,7 @@ "Choose a preset": "Виберіть шаблон", "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", - "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", + "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index a3e7eeec..8546b929 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index 85d03250..c3cad85a 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 06ac92ab..cc5174d3 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index addcdada..b853fb28 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index d0c032b0..5ca5e146 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape": "Click last point to finish shape", + "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index 62ac1eaf..a3db195b 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "選擇一種預設值", "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", - "Click last point to finish shape": "點下最後一點後完成外形", + "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index 9ce03d2e..3b046688 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -115,7 +115,7 @@ "Choose a preset": "選擇一種預設值", "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", - "Click last point to finish shape": "點下最後一點後完成外形", + "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", From fec581548e25737bd11125a65a9a7afc82416433 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 21 Apr 2023 23:19:18 +0200 Subject: [PATCH 03/20] i18n --- umap/static/umap/locale/de.js | 2 +- umap/static/umap/locale/de.json | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index 2a6c6fea..ba8c0ee2 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -384,4 +384,4 @@ var locale = { "Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein" }; L.registerLocale("de", locale); -L.setLocale("de"); \ No newline at end of file +L.setLocale("de"); diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index de448695..72069e20 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -382,4 +382,8 @@ "Permanent credits background": "Dauerhafte Danksagung im Hintergrund", "Select data": "Wähle Daten aus", "Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein" -} \ No newline at end of file +<<<<<<< HEAD +} +======= +} +>>>>>>> 15a1802 (i18n) From 839ffd89bb5f59111ae50aa43392d08aa0effacb Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 25 Apr 2023 10:03:55 +0000 Subject: [PATCH 04/20] add distance to "continue drawing message" --- umap/static/umap/locale/am_ET.js | 2 +- umap/static/umap/locale/am_ET.json | 2 +- umap/static/umap/locale/ar.js | 2 +- umap/static/umap/locale/ar.json | 2 +- umap/static/umap/locale/ast.js | 2 +- umap/static/umap/locale/ast.json | 2 +- umap/static/umap/locale/bg.js | 2 +- umap/static/umap/locale/bg.json | 2 +- umap/static/umap/locale/ca.js | 2 +- umap/static/umap/locale/ca.json | 2 +- umap/static/umap/locale/cs_CZ.js | 2 +- umap/static/umap/locale/cs_CZ.json | 2 +- umap/static/umap/locale/da.js | 2 +- umap/static/umap/locale/da.json | 2 +- umap/static/umap/locale/de.js | 2 +- umap/static/umap/locale/de.json | 2 +- umap/static/umap/locale/el.js | 2 +- umap/static/umap/locale/el.json | 2 +- umap/static/umap/locale/en.js | 2 +- umap/static/umap/locale/en.json | 2 +- umap/static/umap/locale/en_US.json | 2 +- umap/static/umap/locale/es.js | 2 +- umap/static/umap/locale/es.json | 2 +- umap/static/umap/locale/et.js | 2 +- umap/static/umap/locale/et.json | 2 +- umap/static/umap/locale/fa_IR.js | 2 +- umap/static/umap/locale/fa_IR.json | 2 +- umap/static/umap/locale/fi.js | 2 +- umap/static/umap/locale/fi.json | 2 +- umap/static/umap/locale/fr.js | 2 +- umap/static/umap/locale/fr.json | 2 +- umap/static/umap/locale/gl.js | 2 +- umap/static/umap/locale/gl.json | 2 +- umap/static/umap/locale/he.js | 2 +- umap/static/umap/locale/he.json | 2 +- umap/static/umap/locale/hr.js | 2 +- umap/static/umap/locale/hr.json | 2 +- umap/static/umap/locale/hu.js | 2 +- umap/static/umap/locale/hu.json | 2 +- umap/static/umap/locale/id.js | 2 +- umap/static/umap/locale/id.json | 2 +- umap/static/umap/locale/is.js | 2 +- umap/static/umap/locale/is.json | 2 +- umap/static/umap/locale/it.js | 2 +- umap/static/umap/locale/it.json | 2 +- umap/static/umap/locale/ja.js | 2 +- umap/static/umap/locale/ja.json | 2 +- umap/static/umap/locale/ko.js | 2 +- umap/static/umap/locale/ko.json | 2 +- umap/static/umap/locale/lt.js | 2 +- umap/static/umap/locale/lt.json | 2 +- umap/static/umap/locale/ms.js | 2 +- umap/static/umap/locale/ms.json | 2 +- umap/static/umap/locale/nl.js | 2 +- umap/static/umap/locale/nl.json | 2 +- umap/static/umap/locale/no.js | 2 +- umap/static/umap/locale/no.json | 2 +- umap/static/umap/locale/pl.js | 2 +- umap/static/umap/locale/pl.json | 2 +- umap/static/umap/locale/pl_PL.json | 2 +- umap/static/umap/locale/pt.js | 2 +- umap/static/umap/locale/pt.json | 2 +- umap/static/umap/locale/pt_BR.js | 2 +- umap/static/umap/locale/pt_BR.json | 2 +- umap/static/umap/locale/pt_PT.js | 2 +- umap/static/umap/locale/pt_PT.json | 2 +- umap/static/umap/locale/ro.js | 2 +- umap/static/umap/locale/ro.json | 2 +- umap/static/umap/locale/ru.js | 2 +- umap/static/umap/locale/ru.json | 2 +- umap/static/umap/locale/si_LK.js | 2 +- umap/static/umap/locale/si_LK.json | 2 +- umap/static/umap/locale/sk_SK.js | 2 +- umap/static/umap/locale/sk_SK.json | 2 +- umap/static/umap/locale/sl.js | 2 +- umap/static/umap/locale/sl.json | 2 +- umap/static/umap/locale/sr.js | 2 +- umap/static/umap/locale/sr.json | 2 +- umap/static/umap/locale/sv.js | 2 +- umap/static/umap/locale/sv.json | 2 +- umap/static/umap/locale/th_TH.js | 2 +- umap/static/umap/locale/th_TH.json | 2 +- umap/static/umap/locale/tr.js | 2 +- umap/static/umap/locale/tr.json | 2 +- umap/static/umap/locale/uk_UA.js | 2 +- umap/static/umap/locale/uk_UA.json | 2 +- umap/static/umap/locale/vi.js | 2 +- umap/static/umap/locale/vi.json | 2 +- umap/static/umap/locale/vi_VN.json | 2 +- umap/static/umap/locale/zh.js | 2 +- umap/static/umap/locale/zh.json | 2 +- umap/static/umap/locale/zh_CN.json | 2 +- umap/static/umap/locale/zh_TW.Big5.json | 2 +- umap/static/umap/locale/zh_TW.js | 2 +- umap/static/umap/locale/zh_TW.json | 2 +- 95 files changed, 95 insertions(+), 95 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 166785be..d83caec6 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", - "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", + "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", "Click to edit": "ለማረም ጠቅ አድርግ", "Click to start drawing a line": "መስመር ለመሳል ጠቅ አድርግ", "Click to start drawing a polygon": "ፖሊጎን ለመሳል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index 23355682..c3eb5e4a 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", - "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", + "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", "Click to edit": "ለማረም ጠቅ አድርግ", "Click to start drawing a line": "መስመር ለመሳል ጠቅ አድርግ", "Click to start drawing a polygon": "ፖሊጎን ለመሳል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 3cbc5a52..9b98f868 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 2f0a1f2a..a4c29ffd 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index 8c26fc66..7a648a68 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index eef403e1..3dafe809 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 5e90fd60..558ed546 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index 2f7c4773..e9e665b0 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Feu clic per a afegir una marca", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index f69b82d6..abfc4f60 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Feu clic per a afegir una marca", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index de0d24bc..f6f2a511 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", "Click to add a marker": "Kliknutím přidáš značku", - "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", + "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", "Click to edit": "Klikněte pro úpravy", "Click to start drawing a line": "Klikněte pro začátek kreslení čáry", "Click to start drawing a polygon": "Klikněte pro začátek kreslení polygonu", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index e8880ea0..5fd80544 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", "Click to add a marker": "Kliknutím přidáš značku", - "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", + "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", "Click to edit": "Klikněte pro úpravy", "Click to start drawing a line": "Klikněte pro začátek kreslení čáry", "Click to start drawing a polygon": "Klikněte pro začátek kreslení polygonu", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 4034521b..11b06e39 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", "Click to add a marker": "Klik for at tilføje en markør", - "Click to continue drawing": "Klik for at fortsætte indtegning", + "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", "Click to edit": "Klik for at redigere", "Click to start drawing a line": "Klik for at starte indtegning af linje", "Click to start drawing a polygon": "Klik for at starte indtegning af polygon", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 4e64d5ec..a2764826 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", "Click to add a marker": "Klik for at tilføje en markør", - "Click to continue drawing": "Klik for at fortsætte indtegning", + "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", "Click to edit": "Klik for at redigere", "Click to start drawing a line": "Klik for at starte indtegning af linje", "Click to start drawing a polygon": "Klik for at starte indtegning af polygon", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index ba8c0ee2..5d506e22 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", - "Click to continue drawing": "Klicke, um weiter zu zeichnen", + "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", "Click to edit": "Zum Bearbeiten klicken", "Click to start drawing a line": "Klicke, um eine Linie zu zeichnen", "Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 72069e20..7834c59b 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", - "Click to continue drawing": "Klicke, um weiter zu zeichnen", + "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", "Click to edit": "Zum Bearbeiten klicken", "Click to start drawing a line": "Klicke, um eine Linie zu zeichnen", "Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 39d8a199..b8c6b210 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", - "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", + "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", "Click to edit": "Πατήστε για επεξεργασία", "Click to start drawing a line": "Πατήστε για έναρξη σχεδιασμού γραμμής", "Click to start drawing a polygon": "Πατήστε για έναρξη σχεδιασμού πολυγώνου", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index d9a2862a..bf578378 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", - "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", + "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", "Click to edit": "Πατήστε για επεξεργασία", "Click to start drawing a line": "Πατήστε για έναρξη σχεδιασμού γραμμής", "Click to start drawing a polygon": "Πατήστε για έναρξη σχεδιασμού πολυγώνου", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index b0aaf6d7..7ed59032 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index c38991c3..e2c1c72c 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Import into layer:", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index 619ebb52..5b9fd838 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", "Click to add a marker": "Haga clic para añadir un marcador", - "Click to continue drawing": "Haga clic para continuar dibujando", + "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", "Click to edit": "Clic para editar", "Click to start drawing a line": "Haga clic para empezar a dibujar una línea", "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 932fbbbe..7fae6e69 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", "Click to add a marker": "Haga clic para añadir un marcador", - "Click to continue drawing": "Haga clic para continuar dibujando", + "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", "Click to edit": "Clic para editar", "Click to start drawing a line": "Haga clic para empezar a dibujar una línea", "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 937e0c49..9d0077a7 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", "Click to add a marker": "Klõpsa markeri lisamiseks", - "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", + "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", "Click to edit": "Klõpsa muutmiseks", "Click to start drawing a line": "Klõpsa joone alustamiseks", "Click to start drawing a polygon": "Klõpsa hulknurga alustamiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 80c7953c..f0fc5240 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", "Click to add a marker": "Klõpsa markeri lisamiseks", - "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", + "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", "Click to edit": "Klõpsa muutmiseks", "Click to start drawing a line": "Klõpsa joone alustamiseks", "Click to start drawing a polygon": "Klõpsa hulknurga alustamiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index c2034202..8096f77c 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", - "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", + "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", "Click to edit": "برای ویرایش کلیک کنید", "Click to start drawing a line": "برای شروع رسم خط کلیک کنید", "Click to start drawing a polygon": "برای شروع ترسیم چند ضلعی کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index 95d24b3f..ed76ee59 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", - "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", + "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", "Click to edit": "برای ویرایش کلیک کنید", "Click to start drawing a line": "برای شروع رسم خط کلیک کنید", "Click to start drawing a polygon": "برای شروع ترسیم چند ضلعی کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index 8b50740c..1f70f237 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", - "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", + "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", "Click to edit": "Klikkaa muokataksesi", "Click to start drawing a line": "Klikkaa aloittaaksesi viivan piirtäminen", "Click to start drawing a polygon": "Klikkaa aloittaaksesi monikulmion piirtäminen", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index 91aaa6f2..c8be4403 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", - "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", + "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", "Click to edit": "Klikkaa muokataksesi", "Click to start drawing a line": "Klikkaa aloittaaksesi viivan piirtäminen", "Click to start drawing a polygon": "Klikkaa aloittaaksesi monikulmion piirtäminen", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 48511ea4..4892d9b3 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", "Click to add a marker": "Cliquer pour ajouter le marqueur", - "Click to continue drawing": "Cliquer pour continuer le tracé", + "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", "Click to edit": "Cliquer pour modifier", "Click to start drawing a line": "Cliquer pour commencer une ligne", "Click to start drawing a polygon": "Cliquer pour commencer un polygone", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 573e05cc..9edc3430 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", "Click to add a marker": "Cliquer pour ajouter le marqueur", - "Click to continue drawing": "Cliquer pour continuer le tracé", + "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", "Click to edit": "Cliquer pour modifier", "Click to start drawing a line": "Cliquer pour commencer une ligne", "Click to start drawing a polygon": "Cliquer pour commencer un polygone", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index ebac4336..02b7aad2 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", "Click to add a marker": "Preme para engadir unha marcaxe", - "Click to continue drawing": "Preme para seguir debuxando", + "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", "Click to edit": "Preme para editar", "Click to start drawing a line": "Preme para comezar a debuxar unha liña", "Click to start drawing a polygon": "Preme para comezar a debuxar un polígono", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index b09ca5ef..baab1c69 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", "Click to add a marker": "Preme para engadir unha marcaxe", - "Click to continue drawing": "Preme para seguir debuxando", + "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", "Click to edit": "Preme para editar", "Click to start drawing a line": "Preme para comezar a debuxar unha liña", "Click to start drawing a polygon": "Preme para comezar a debuxar un polígono", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index da56d7f9..a273dade 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", - "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", + "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", "Click to edit": "יש ללחוץ כדי לערוך", "Click to start drawing a line": "יש ללחוץ כדי להתחיל לצייר קו", "Click to start drawing a polygon": "יש ללחוץ כדי להתחיל לצייר מצולע", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 55d6a38e..74eb9846 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", - "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", + "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", "Click to edit": "יש ללחוץ כדי לערוך", "Click to start drawing a line": "יש ללחוץ כדי להתחיל לצייר קו", "Click to start drawing a polygon": "יש ללחוץ כדי להתחיל לצייר מצולע", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index 93747ce6..ee35e08f 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index b8f25d90..c9cc5c48 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 17709b55..433299fd 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", "Click to add a marker": "Jelölő hozzáadásához kattintson", - "Click to continue drawing": "Kattintson a rajzolás folytatásához", + "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", "Click to edit": "Kattintson a szerkesztéshez", "Click to start drawing a line": "Kattintson egy vonal rajzolásához", "Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index 9ff8b2d1..0a7efaee 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", "Click to add a marker": "Jelölő hozzáadásához kattintson", - "Click to continue drawing": "Kattintson a rajzolás folytatásához", + "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", "Click to edit": "Kattintson a szerkesztéshez", "Click to start drawing a line": "Kattintson egy vonal rajzolásához", "Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index 3fb76b06..3ca05624 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index 7b2a99b0..7a94ae54 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", "Click to add a marker": "Smella til að bæta við kortamerki", - "Click to continue drawing": "Smelltu til að halda áfram að teikna", + "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", "Click to edit": "Smelltu til að breyta", "Click to start drawing a line": "Smelltu til að byrja að teikna línu", "Click to start drawing a polygon": "Smelltu til að byrja að teikna fláka (marghyrning)", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index 908697d8..99c02277 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", "Click to add a marker": "Smella til að bæta við kortamerki", - "Click to continue drawing": "Smelltu til að halda áfram að teikna", + "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", "Click to edit": "Smelltu til að breyta", "Click to start drawing a line": "Smelltu til að byrja að teikna línu", "Click to start drawing a polygon": "Smelltu til að byrja að teikna fláka (marghyrning)", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 49efddfb..7b0cb695 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", "Click to add a marker": "Clicca per aggiungere un marcatore", - "Click to continue drawing": "Clic per continuare a disegnare", + "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", "Click to edit": "Clic per la modifica", "Click to start drawing a line": "Clic per iniziare a disegnare una linea", "Click to start drawing a polygon": "Clicca per iniziare a disegnare un poligono", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 3cf8ce57..f0cbfc82 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", "Click to add a marker": "Clicca per aggiungere un marcatore", - "Click to continue drawing": "Clic per continuare a disegnare", + "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", "Click to edit": "Clic per la modifica", "Click to start drawing a line": "Clic per iniziare a disegnare una linea", "Click to start drawing a polygon": "Clicca per iniziare a disegnare un poligono", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index 85176c61..b6723425 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", "Click to add a marker": "クリックでマーカー追加", - "Click to continue drawing": "クリックで描画を継続", + "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", "Click to edit": "クリックで編集", "Click to start drawing a line": "クリックでラインの描画開始", "Click to start drawing a polygon": "クリックでポリゴンの描画開始", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index a72facf9..5a124318 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", "Click to add a marker": "クリックでマーカー追加", - "Click to continue drawing": "クリックで描画を継続", + "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", "Click to edit": "クリックで編集", "Click to start drawing a line": "クリックでラインの描画開始", "Click to start drawing a polygon": "クリックでポリゴンの描画開始", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index a23abb6f..6fbc28d3 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", "Click to add a marker": "마커를 추가하려면 클릭", - "Click to continue drawing": "계속 그리려면 클릭", + "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", "Click to edit": "편집하려면 클릭", "Click to start drawing a line": "선을 그리려면 클릭", "Click to start drawing a polygon": "도형을 그리려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index b38ac764..2a88a84b 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", "Click to add a marker": "마커를 추가하려면 클릭", - "Click to continue drawing": "계속 그리려면 클릭", + "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", "Click to edit": "편집하려면 클릭", "Click to start drawing a line": "선을 그리려면 클릭", "Click to start drawing a polygon": "도형을 그리려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index b21b5666..b0b975d1 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", "Click to add a marker": "Paspauskite kad pridėti žymeklį", - "Click to continue drawing": "Paspauskite kad tęsti piešimą", + "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Paspauskite ir pradėsite piešti liniją", "Click to start drawing a polygon": "Paspauskite ir pradėsite priešti poligoną", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index b593d035..ae52dbb6 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", "Click to add a marker": "Paspauskite kad pridėti žymeklį", - "Click to continue drawing": "Paspauskite kad tęsti piešimą", + "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Paspauskite ir pradėsite piešti liniją", "Click to start drawing a polygon": "Paspauskite ir pradėsite priešti poligoną", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index cec6b61d..6cab6765 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", "Click to add a marker": "Klik untuk tambahkan penanda", - "Click to continue drawing": "Klik untuk terus melukis", + "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", "Click to edit": "Klik untuk menyunting", "Click to start drawing a line": "Klik untuk mula melukis garisan", "Click to start drawing a polygon": "Klik untuk mula melukis poligon", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index 1fccebe5..c1edb679 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", "Click to add a marker": "Klik untuk tambahkan penanda", - "Click to continue drawing": "Klik untuk terus melukis", + "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", "Click to edit": "Klik untuk menyunting", "Click to start drawing a line": "Klik untuk mula melukis garisan", "Click to start drawing a polygon": "Klik untuk mula melukis poligon", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 4282f2a6..7f28e86c 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", "Click to add a marker": "Klik om een punt toe te voegen", - "Click to continue drawing": "Klik om te blijven tekenen", + "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", "Click to edit": "Klik om te bewerken", "Click to start drawing a line": "Klik om een lijn te beginnen tekenen", "Click to start drawing a polygon": "Klik om een polygoon te beginnen tekenen", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index 26277bdb..4af9e4f9 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", "Click to add a marker": "Klik om een punt toe te voegen", - "Click to continue drawing": "Klik om te blijven tekenen", + "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", "Click to edit": "Klik om te bewerken", "Click to start drawing a line": "Klik om een lijn te beginnen tekenen", "Click to start drawing a polygon": "Klik om een polygoon te beginnen tekenen", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index 4abfc843..72d8c2db 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Klikk for å legge til en markør", - "Click to continue drawing": "Klikk for å fortsette å tegne", + "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", "Click to edit": "Klikk for å redigere", "Click to start drawing a line": "Klikk for å starte å tegne en linje", "Click to start drawing a polygon": "Klikk for å starte å tegne et polygon", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index f9e88989..b43e7453 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Klikk for å legge til en markør", - "Click to continue drawing": "Klikk for å fortsette å tegne", + "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", "Click to edit": "Klikk for å redigere", "Click to start drawing a line": "Klikk for å starte å tegne en linje", "Click to start drawing a polygon": "Klikk for å starte å tegne et polygon", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index 05867c1e..638fcc95 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", "Click to add a marker": "Kliknij, aby dodać znacznik", - "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", + "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", "Click to edit": "Kliknij, aby edytować", "Click to start drawing a line": "Kliknij, aby zacząć rysować linię", "Click to start drawing a polygon": "Kliknij, aby zacząć rysować obszar", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 57f1f129..2360be72 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", "Click to add a marker": "Kliknij, aby dodać znacznik", - "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", + "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", "Click to edit": "Kliknij, aby edytować", "Click to start drawing a line": "Kliknij, aby zacząć rysować linię", "Click to start drawing a polygon": "Kliknij, aby zacząć rysować obszar", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index dc1959b2..8b1be5c3 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index 4e37fed4..689a5baf 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index 545cc0e3..5025a8a5 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 317dcaf8..604c82ea 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index efb46dde..e82f85f2 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 3dbb4fbe..97385c53 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing": "Clique para continuar a desenhar", + "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index 20e00a26..fe4ce89e 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index 6e351c88..89db5639 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 5b753e00..9f687c63 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", "Click to add a marker": "Щёлкните, чтобы добавить метку", - "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", + "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", "Click to edit": "Щёлкните, чтобы изменить", "Click to start drawing a line": "Щёлкните, чтобы начать рисование линии", "Click to start drawing a polygon": "Щёлкните, чтобы начать рисование полигона", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 2be52a2d..77d960c6 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", "Click to add a marker": "Щёлкните, чтобы добавить метку", - "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", + "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", "Click to edit": "Щёлкните, чтобы изменить", "Click to start drawing a line": "Щёлкните, чтобы начать рисование линии", "Click to start drawing a polygon": "Щёлкните, чтобы начать рисование полигона", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index 0f47744d..e169a5be 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 5a3d119e..cb142691 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", "Click to add a marker": "Kliknutím pridáte značku", - "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", + "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", "Click to edit": "Kliknutím upravte", "Click to start drawing a line": "Kliknutím začnete kresliť čiaru", "Click to start drawing a polygon": "Kliknutím začnete kresliť polygón", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 27f1e9f2..38da6622 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", "Click to add a marker": "Kliknutím pridáte značku", - "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", + "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", "Click to edit": "Kliknutím upravte", "Click to start drawing a line": "Kliknutím začnete kresliť čiaru", "Click to start drawing a polygon": "Kliknutím začnete kresliť polygón", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 681b8cc9..08aeb9fc 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", "Click to add a marker": "Kliknite za dodajanje označbe", - "Click to continue drawing": "Kliknite za nadaljevanje risanja", + "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", "Click to edit": "Kliknite za urejanje", "Click to start drawing a line": "Kliknite za začetek risanja črte", "Click to start drawing a polygon": "Kliknite za začetek risanja mnogokotnika", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index d62de312..efeb046f 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", "Click to add a marker": "Kliknite za dodajanje označbe", - "Click to continue drawing": "Kliknite za nadaljevanje risanja", + "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", "Click to edit": "Kliknite za urejanje", "Click to start drawing a line": "Kliknite za začetek risanja črte", "Click to start drawing a polygon": "Kliknite za začetek risanja mnogokotnika", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index 05d6f21e..f6b2e7a1 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", "Click to add a marker": "Клик за додавање ознаке", - "Click to continue drawing": "Клик да наставите са цртањем", + "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", "Click to edit": "Клик за уређивање", "Click to start drawing a line": "Клик да започнете цртање линије", "Click to start drawing a polygon": "Клик да започнете цртање површине", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index c047eca7..1964eaeb 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", "Click to add a marker": "Клик за додавање ознаке", - "Click to continue drawing": "Клик да наставите са цртањем", + "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", "Click to edit": "Клик за уређивање", "Click to start drawing a line": "Клик да започнете цртање линије", "Click to start drawing a polygon": "Клик да започнете цртање површине", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index acf4ee92..b5a306c0 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", "Click to add a marker": "Klicka för att lägga till en markör", - "Click to continue drawing": "Klicka för att fortsätta rita", + "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", "Click to edit": "Klicka för att redigera", "Click to start drawing a line": "Klicka för att börja rita en linje", "Click to start drawing a polygon": "Klicka för att börja rita en polygon", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index db110ccc..e058876f 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", "Click to add a marker": "Klicka för att lägga till en markör", - "Click to continue drawing": "Klicka för att fortsätta rita", + "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", "Click to edit": "Klicka för att redigera", "Click to start drawing a line": "Klicka för att börja rita en linje", "Click to start drawing a polygon": "Klicka för att börja rita en polygon", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index b5b8084c..2a0dd793 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 928be82e..24abcf9a 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", - "Click to continue drawing": "Çizime devam etmek için tıklayın", + "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", "Click to edit": "Düzenlemek için tıkla", "Click to start drawing a line": "Çizgi çizmeye başlamak için tıkla", "Click to start drawing a polygon": "Çokgen çizmeye başlamak için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index 05339e56..a41b52b2 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", - "Click to continue drawing": "Çizime devam etmek için tıklayın", + "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", "Click to edit": "Düzenlemek için tıkla", "Click to start drawing a line": "Çizgi çizmeye başlamak için tıkla", "Click to start drawing a polygon": "Çokgen çizmeye başlamak için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index cce218e6..2377d932 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", "Click to add a marker": "Клацніть, щоб додати позначку", - "Click to continue drawing": "Клацайте, щоб продовжити креслення", + "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", "Click to edit": "Натисніть для редагування", "Click to start drawing a line": "Клацайте, щоб продовжити креслення", "Click to start drawing a polygon": "Клацніть, щоб почати креслення багатокутника", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 9334258e..85a094c7 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", "Click to add a marker": "Клацніть, щоб додати позначку", - "Click to continue drawing": "Клацайте, щоб продовжити креслення", + "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", "Click to edit": "Натисніть для редагування", "Click to start drawing a line": "Клацайте, щоб продовжити креслення", "Click to start drawing a polygon": "Клацніть, щоб почати креслення багатокутника", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index 8546b929..c07152f7 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index c3cad85a..33105f9d 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index cc5174d3..8929fb2f 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index b853fb28..fc07f8d1 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 5ca5e146..342591aa 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", "Click to add a marker": "Click to add a marker", - "Click to continue drawing": "Click to continue drawing", + "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index a3db195b..a280cbb2 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -117,7 +117,7 @@ var locale = { "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", "Click to add a marker": "點選以新增標記", - "Click to continue drawing": "點擊以繼續繪製", + "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", "Click to edit": "點擊開始編輯", "Click to start drawing a line": "點擊以開始繪製直線", "Click to start drawing a polygon": "點選開始繪製多邊形", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index 3b046688..6fcef9d3 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -117,7 +117,7 @@ "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", "Click to add a marker": "點選以新增標記", - "Click to continue drawing": "點擊以繼續繪製", + "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", "Click to edit": "點擊開始編輯", "Click to start drawing a line": "點擊以開始繪製直線", "Click to start drawing a polygon": "點選開始繪製多邊形", From 60fb67516def6a6557c817b595c006af4681e840 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 25 Apr 2023 10:19:43 +0000 Subject: [PATCH 05/20] add line distance and polygon area messages --- umap/static/umap/locale/am_ET.js | 2 ++ umap/static/umap/locale/am_ET.json | 2 ++ umap/static/umap/locale/ar.js | 2 ++ umap/static/umap/locale/ar.json | 2 ++ umap/static/umap/locale/ast.js | 2 ++ umap/static/umap/locale/ast.json | 2 ++ umap/static/umap/locale/bg.js | 2 ++ umap/static/umap/locale/bg.json | 2 ++ umap/static/umap/locale/ca.js | 2 ++ umap/static/umap/locale/ca.json | 2 ++ umap/static/umap/locale/cs_CZ.js | 2 ++ umap/static/umap/locale/cs_CZ.json | 2 ++ umap/static/umap/locale/da.js | 2 ++ umap/static/umap/locale/da.json | 2 ++ umap/static/umap/locale/de.js | 2 ++ umap/static/umap/locale/de.json | 2 ++ umap/static/umap/locale/el.js | 2 ++ umap/static/umap/locale/el.json | 2 ++ umap/static/umap/locale/en.js | 4 +++- umap/static/umap/locale/en.json | 4 +++- umap/static/umap/locale/en_US.json | 4 +++- umap/static/umap/locale/es.js | 2 ++ umap/static/umap/locale/es.json | 2 ++ umap/static/umap/locale/et.js | 2 ++ umap/static/umap/locale/et.json | 2 ++ umap/static/umap/locale/fa_IR.js | 2 ++ umap/static/umap/locale/fa_IR.json | 2 ++ umap/static/umap/locale/fi.js | 2 ++ umap/static/umap/locale/fi.json | 2 ++ umap/static/umap/locale/fr.js | 2 ++ umap/static/umap/locale/fr.json | 2 ++ umap/static/umap/locale/gl.js | 2 ++ umap/static/umap/locale/gl.json | 2 ++ umap/static/umap/locale/he.js | 2 ++ umap/static/umap/locale/he.json | 2 ++ umap/static/umap/locale/hr.js | 2 ++ umap/static/umap/locale/hr.json | 2 ++ umap/static/umap/locale/hu.js | 2 ++ umap/static/umap/locale/hu.json | 2 ++ umap/static/umap/locale/id.js | 2 ++ umap/static/umap/locale/id.json | 2 ++ umap/static/umap/locale/is.js | 2 ++ umap/static/umap/locale/is.json | 2 ++ umap/static/umap/locale/it.js | 2 ++ umap/static/umap/locale/it.json | 2 ++ umap/static/umap/locale/ja.js | 2 ++ umap/static/umap/locale/ja.json | 2 ++ umap/static/umap/locale/ko.js | 6 ++++-- umap/static/umap/locale/ko.json | 6 ++++-- umap/static/umap/locale/lt.js | 2 ++ umap/static/umap/locale/lt.json | 2 ++ umap/static/umap/locale/ms.js | 2 ++ umap/static/umap/locale/ms.json | 2 ++ umap/static/umap/locale/nl.js | 2 ++ umap/static/umap/locale/nl.json | 2 ++ umap/static/umap/locale/no.js | 2 ++ umap/static/umap/locale/no.json | 2 ++ umap/static/umap/locale/pl.js | 2 ++ umap/static/umap/locale/pl.json | 2 ++ umap/static/umap/locale/pl_PL.json | 2 ++ umap/static/umap/locale/pt.js | 2 ++ umap/static/umap/locale/pt.json | 2 ++ umap/static/umap/locale/pt_BR.js | 2 ++ umap/static/umap/locale/pt_BR.json | 2 ++ umap/static/umap/locale/pt_PT.js | 2 ++ umap/static/umap/locale/pt_PT.json | 2 ++ umap/static/umap/locale/ro.js | 2 ++ umap/static/umap/locale/ro.json | 2 ++ umap/static/umap/locale/ru.js | 2 ++ umap/static/umap/locale/ru.json | 2 ++ umap/static/umap/locale/si_LK.js | 2 ++ umap/static/umap/locale/si_LK.json | 2 ++ umap/static/umap/locale/sk_SK.js | 2 ++ umap/static/umap/locale/sk_SK.json | 2 ++ umap/static/umap/locale/sl.js | 2 ++ umap/static/umap/locale/sl.json | 2 ++ umap/static/umap/locale/sr.js | 2 ++ umap/static/umap/locale/sr.json | 2 ++ umap/static/umap/locale/sv.js | 2 ++ umap/static/umap/locale/sv.json | 2 ++ umap/static/umap/locale/th_TH.js | 2 ++ umap/static/umap/locale/th_TH.json | 2 ++ umap/static/umap/locale/tr.js | 2 ++ umap/static/umap/locale/tr.json | 2 ++ umap/static/umap/locale/uk_UA.js | 2 ++ umap/static/umap/locale/uk_UA.json | 2 ++ umap/static/umap/locale/vi.js | 2 ++ umap/static/umap/locale/vi.json | 2 ++ umap/static/umap/locale/vi_VN.json | 2 ++ umap/static/umap/locale/zh.js | 2 ++ umap/static/umap/locale/zh.json | 2 ++ umap/static/umap/locale/zh_CN.json | 2 ++ umap/static/umap/locale/zh_TW.Big5.json | 2 ++ umap/static/umap/locale/zh_TW.js | 2 ++ umap/static/umap/locale/zh_TW.json | 2 ++ 95 files changed, 197 insertions(+), 7 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index d83caec6..5fa4404c 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index c3eb5e4a..b25a3ab0 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 9b98f868..632b9478 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index a4c29ffd..d0d7985e 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index 7a648a68..b13df4a0 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index 3dafe809..a02cc922 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 558ed546..58dd8fe5 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index e9e665b0..a7b473d6 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index abfc4f60..4f21796f 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index f6f2a511..966914f3 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index 5fd80544..e949abf9 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 11b06e39..51283a47 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index a2764826..4e5446e0 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index 5d506e22..96839f0b 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 7834c59b..71dc7f8e 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index b8c6b210..2c8996c7 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index bf578378..7bd6f8a1 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index 7ed59032..cf7d551c 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", @@ -384,4 +386,4 @@ var locale = { "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map" }; L.registerLocale("en", locale); -L.setLocale("en"); \ No newline at end of file +L.setLocale("en"); diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index 342591aa..f2c8f3ea 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", @@ -382,4 +384,4 @@ "Permanent credits background": "Permanent credits background", "Select data": "Select data", "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map" -} \ No newline at end of file +} diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index e2c1c72c..ee833ce4 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", @@ -382,4 +384,4 @@ "Permanent credits background": "Permanent credits background", "Select data": "Select data", "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map" -} \ No newline at end of file +} diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index 5b9fd838..a9a1290b 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 7fae6e69..a3b4e7d6 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 9d0077a7..90bd92fa 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index f0fc5240..854d1875 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index 8096f77c..cf4c20f2 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index ed76ee59..a097e454 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index 1f70f237..aea43e74 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index c8be4403..f4fe793d 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 4892d9b3..0ec75106 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 9edc3430..226b85de 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index 02b7aad2..ccf03be6 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index baab1c69..8335472d 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index a273dade..91b8f903 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 74eb9846..201701f2 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index ee35e08f..1bf1b356 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index c9cc5c48..f19956b2 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 433299fd..a7fc0629 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index 0a7efaee..fc92df27 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index 3ca05624..bc7e7e18 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index 7a94ae54..dec0084b 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index 99c02277..f6647e38 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 7b0cb695..5f8a1156 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index f0cbfc82..75b9bfc0 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index b6723425..6c1defc6 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index 5a124318..732b5341 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index 6fbc28d3..f414f422 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -115,7 +115,9 @@ var locale = { "Choose a preset": "프리셋 선택", "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", - "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", + "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", "Click to edit": "편집하려면 클릭", @@ -384,4 +386,4 @@ var locale = { "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map" }; L.registerLocale("ko", locale); -L.setLocale("ko"); \ No newline at end of file +L.setLocale("ko"); diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index 2a88a84b..65a4ed0a 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -115,7 +115,9 @@ "Choose a preset": "프리셋 선택", "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", - "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", + "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", "Click to edit": "편집하려면 클릭", @@ -382,4 +384,4 @@ "Permanent credits background": "Permanent credits background", "Select data": "Select data", "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map" -} \ No newline at end of file +} diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index b0b975d1..5f106d99 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index ae52dbb6..985582f9 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 6cab6765..2342baa0 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index c1edb679..53a52da2 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 7f28e86c..49f89ef5 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index 4af9e4f9..a1bea26f 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index 72d8c2db..726be407 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index b43e7453..7b1a0992 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index 638fcc95..d46090cb 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 2360be72..4ea34066 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 8b1be5c3..7a3a0369 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index 689a5baf..1879567a 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index 5025a8a5..cd749263 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 604c82ea..9d577abf 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index e82f85f2..3080ef37 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 97385c53..37ecf756 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index fe4ce89e..db0e1f66 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index 89db5639..7eaef50a 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 9f687c63..065aae09 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 77d960c6..25710b8a 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index e169a5be..2abbc430 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index cb142691..28670696 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 38da6622..1856a94e 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 08aeb9fc..32164f5c 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index efeb046f..2b7e7786 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index f6b2e7a1..61bcd468 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index 1964eaeb..657ebdff 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index b5a306c0..d75f099d 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index e058876f..97df0f7e 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index 2a0dd793..ae656d13 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 24abcf9a..80b4c1c4 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index a41b52b2..bb06214d 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index 2377d932..1ac1fc25 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 85a094c7..5c8c42f7 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index c07152f7..5ecf103e 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index 33105f9d..c141dd8d 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 8929fb2f..26e2f841 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index fc07f8d1..1a638b02 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 342591aa..61e4dd5c 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index a280cbb2..33d5313d 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -116,6 +116,8 @@ var locale = { "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "點選以新增標記", "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", "Click to edit": "點擊開始編輯", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index 6fcef9d3..b9f3fde5 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -116,6 +116,8 @@ "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", + "Line distance: {distance}": "Line distance: {distance}", + "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "點選以新增標記", "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", "Click to edit": "點擊開始編輯", From ee6724cddb98532ab573204d659eb9f31d17bf7e Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 25 Apr 2023 10:21:36 +0000 Subject: [PATCH 06/20] show line and polygon measurements while drawing / editing --- umap/static/umap/js/umap.controls.js | 35 +++++++++++++++++++--------- umap/static/umap/js/umap.features.js | 12 ++++++++-- 2 files changed, 34 insertions(+), 13 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index a1fbfc69..de8d540b 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1250,21 +1250,34 @@ L.U.Editable = L.Editable.extend({ drawingTooltip: function (e) { var content; - var readableDistance; if (e.layer instanceof L.Marker) content = L._('Click to add a marker'); else if (e.layer instanceof L.Polyline) { - if (!e.layer.editor._drawnLatLngs.length) { - if (e.layer instanceof L.Polygon){ - content = L._('Click to start drawing a polygon'); - } else if (e.layer instanceof L.Polyline) { - content = L._('Click to start drawing a line'); + // when drawing a Polyline or Polygon + if (e.layer.editor._drawnLatLngs) { + // when drawing first point + if (!e.layer.editor._drawnLatLngs.length) { + if (e.layer instanceof L.Polygon){ + content = L._('Click to start drawing a polygon'); + } else if (e.layer instanceof L.Polyline) { + content = L._('Click to start drawing a line'); + } + } else { + var readableDistance = e.layer.getMeasure(e.latlng); + if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { + // when drawing second point + content = L._('Click to continue drawing ({distance})', { distance: readableDistance }); + } else { + // when drawing third point (or more) + content = L._('Click last point to finish shape ({distance})', { distance: readableDistance }); + } } } else { - var tempLatLngs = e.layer.editor._drawnLatLngs.slice(); - tempLatLngs.push(e.latlng); - var length = L.GeoUtil.lineLength(this.map, tempLatLngs); - readableDistance = L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit()); - content = L._('Click last point to finish shape ({distance})', {distance: readableDistance}); + // when moving an existing point + if (e.layer instanceof L.Polygon){ + content = L._('Polygon area: {area}', { area: e.layer.getMeasure() }); + } else if (e.layer instanceof L.Polyline) { + content = L._('Line distance: {distance}', { distance: e.layer.getMeasure() }); + } } } if (content) { diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index f4f51ae2..b6df7a41 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -853,8 +853,16 @@ L.U.Polyline = L.Polyline.extend({ return 'polyline'; }, - getMeasure: function () { - var length = L.GeoUtil.lineLength(this.map, this._defaultShape()); + getMeasure: function (extraPoint) { + var polyline; + if (extraPoint){ + var tmpLatLngs = this.editor._drawnLatLngs.slice(); + tmpLatLngs.push(extraPoint); + polyline = tmpLatLngs; + } else { + polyline = this._defaultShape(); + } + var length = L.GeoUtil.lineLength(this.map, polyline); return L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit()); }, From 3f12b69c25392bff5e086212e181e59e6af3d45f Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 25 Apr 2023 11:11:00 +0000 Subject: [PATCH 07/20] extend getMeasure by argument extraPoint --- umap/static/umap/js/umap.features.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index b6df7a41..8934ed85 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -1012,8 +1012,17 @@ L.U.Polygon = L.Polygon.extend({ return options.concat(L.U.FeatureMixin.getInteractionOptions()); }, - getMeasure: function () { - var area = L.GeoUtil.geodesicArea(this._defaultShape()); + getMeasure: function (extraPoint) { + var polygon; + if (extraPoint){ + var tmpLatLngs = this.editor._drawnLatLngs.slice(); + tmpLatLngs.push(extraPoint); + polygon = tmpLatLngs; + } else { + polygon = this._defaultShape(); + } + + var area = L.GeoUtil.geodesicArea(polygon); return L.GeoUtil.readableArea(area, this.map.measureTools.getMeasureUnit()); }, From 693b32c0ee172d433f0138e3c32de2a9ef449f0a Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 09:13:13 +0000 Subject: [PATCH 08/20] refactor getMeasure function --- umap/static/umap/js/umap.controls.js | 4 +++- umap/static/umap/js/umap.features.js | 29 ++++++---------------------- 2 files changed, 9 insertions(+), 24 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index de8d540b..3f61c09a 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1262,7 +1262,9 @@ L.U.Editable = L.Editable.extend({ content = L._('Click to start drawing a line'); } } else { - var readableDistance = e.layer.getMeasure(e.latlng); + var tmpLatLngs = this.editor._drawnLatLngs.slice(); + tmpLatLngs.push(e.latlng); + var readableDistance = e.layer.getMeasure(tmpLatLngs); if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { // when drawing second point content = L._('Click to continue drawing ({distance})', { distance: readableDistance }); diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index 8934ed85..d9fc87d2 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -853,17 +853,9 @@ L.U.Polyline = L.Polyline.extend({ return 'polyline'; }, - getMeasure: function (extraPoint) { - var polyline; - if (extraPoint){ - var tmpLatLngs = this.editor._drawnLatLngs.slice(); - tmpLatLngs.push(extraPoint); - polyline = tmpLatLngs; - } else { - polyline = this._defaultShape(); - } - var length = L.GeoUtil.lineLength(this.map, polyline); - return L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit()); + getMeasure: function (shape) { + var measure = L.GeoUtil.lineLength(this.map, shape | this._defaultShape()); + return L.GeoUtil.readableDistance(measure, this.map.measureTools.getMeasureUnit()); }, getContextMenuEditItems: function (e) { @@ -1012,18 +1004,9 @@ L.U.Polygon = L.Polygon.extend({ return options.concat(L.U.FeatureMixin.getInteractionOptions()); }, - getMeasure: function (extraPoint) { - var polygon; - if (extraPoint){ - var tmpLatLngs = this.editor._drawnLatLngs.slice(); - tmpLatLngs.push(extraPoint); - polygon = tmpLatLngs; - } else { - polygon = this._defaultShape(); - } - - var area = L.GeoUtil.geodesicArea(polygon); - return L.GeoUtil.readableArea(area, this.map.measureTools.getMeasureUnit()); + getMeasure: function (shape) { + var measure = L.GeoUtil.lineLength(this.map, shape | this._defaultShape()); + return L.GeoUtil.readableArea(measure, this.map.measureTools.getMeasureUnit()); }, getContextMenuEditItems: function (e) { From c916a67ae0efd9d2fd076b3716b4139d8e7facba Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 09:27:57 +0000 Subject: [PATCH 09/20] bugfix --- umap/static/umap/js/umap.controls.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 3f61c09a..1dfe44da 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1262,7 +1262,7 @@ L.U.Editable = L.Editable.extend({ content = L._('Click to start drawing a line'); } } else { - var tmpLatLngs = this.editor._drawnLatLngs.slice(); + var tmpLatLngs = e.layer.editor._drawnLatLngs.slice(); tmpLatLngs.push(e.latlng); var readableDistance = e.layer.getMeasure(tmpLatLngs); if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { From 5d2a4cab5f4b69c4189ebb350bf70abe2da2bd16 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 09:39:15 +0000 Subject: [PATCH 10/20] fix syntax --- umap/static/umap/js/umap.features.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index d9fc87d2..e7f01e35 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -854,7 +854,7 @@ L.U.Polyline = L.Polyline.extend({ }, getMeasure: function (shape) { - var measure = L.GeoUtil.lineLength(this.map, shape | this._defaultShape()); + var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape()); return L.GeoUtil.readableDistance(measure, this.map.measureTools.getMeasureUnit()); }, @@ -1005,7 +1005,7 @@ L.U.Polygon = L.Polygon.extend({ }, getMeasure: function (shape) { - var measure = L.GeoUtil.lineLength(this.map, shape | this._defaultShape()); + var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape()); return L.GeoUtil.readableArea(measure, this.map.measureTools.getMeasureUnit()); }, From eb1cfdbab059ac3943630a954cc8d7ce6a1387b8 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 10:06:28 +0000 Subject: [PATCH 11/20] bugfixes: copy/paste + renaming --- umap/static/umap/js/umap.features.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index e7f01e35..c872e689 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -854,8 +854,8 @@ L.U.Polyline = L.Polyline.extend({ }, getMeasure: function (shape) { - var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape()); - return L.GeoUtil.readableDistance(measure, this.map.measureTools.getMeasureUnit()); + var length = L.GeoUtil.lineLength(this.map, shape || this._defaultShape()); + return L.GeoUtil.readableDistance(length, this.map.measureTools.getMeasureUnit()); }, getContextMenuEditItems: function (e) { @@ -1005,8 +1005,8 @@ L.U.Polygon = L.Polygon.extend({ }, getMeasure: function (shape) { - var measure = L.GeoUtil.lineLength(this.map, shape || this._defaultShape()); - return L.GeoUtil.readableArea(measure, this.map.measureTools.getMeasureUnit()); + var area = L.GeoUtil.geodesicArea(shape || this._defaultShape()); + return L.GeoUtil.readableArea(area, this.map.measureTools.getMeasureUnit()); }, getContextMenuEditItems: function (e) { From 077688fc160649a3fbb6922861e1c297421149ea Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 10:18:59 +0000 Subject: [PATCH 12/20] Revert "add distance to "continue drawing message"" This reverts commit 839ffd89bb5f59111ae50aa43392d08aa0effacb. --- umap/static/umap/locale/am_ET.js | 2 +- umap/static/umap/locale/am_ET.json | 2 +- umap/static/umap/locale/ar.js | 2 +- umap/static/umap/locale/ar.json | 2 +- umap/static/umap/locale/ast.js | 2 +- umap/static/umap/locale/ast.json | 2 +- umap/static/umap/locale/bg.js | 2 +- umap/static/umap/locale/bg.json | 2 +- umap/static/umap/locale/ca.js | 2 +- umap/static/umap/locale/ca.json | 2 +- umap/static/umap/locale/cs_CZ.js | 2 +- umap/static/umap/locale/cs_CZ.json | 2 +- umap/static/umap/locale/da.js | 2 +- umap/static/umap/locale/da.json | 2 +- umap/static/umap/locale/de.js | 2 +- umap/static/umap/locale/de.json | 2 +- umap/static/umap/locale/el.js | 2 +- umap/static/umap/locale/el.json | 2 +- umap/static/umap/locale/en.js | 2 +- umap/static/umap/locale/en.json | 2 +- umap/static/umap/locale/en_US.json | 2 +- umap/static/umap/locale/es.js | 2 +- umap/static/umap/locale/es.json | 2 +- umap/static/umap/locale/et.js | 2 +- umap/static/umap/locale/et.json | 2 +- umap/static/umap/locale/fa_IR.js | 2 +- umap/static/umap/locale/fa_IR.json | 2 +- umap/static/umap/locale/fi.js | 2 +- umap/static/umap/locale/fi.json | 2 +- umap/static/umap/locale/fr.js | 2 +- umap/static/umap/locale/fr.json | 2 +- umap/static/umap/locale/gl.js | 2 +- umap/static/umap/locale/gl.json | 2 +- umap/static/umap/locale/he.js | 2 +- umap/static/umap/locale/he.json | 2 +- umap/static/umap/locale/hr.js | 2 +- umap/static/umap/locale/hr.json | 2 +- umap/static/umap/locale/hu.js | 2 +- umap/static/umap/locale/hu.json | 2 +- umap/static/umap/locale/id.js | 2 +- umap/static/umap/locale/id.json | 2 +- umap/static/umap/locale/is.js | 2 +- umap/static/umap/locale/is.json | 2 +- umap/static/umap/locale/it.js | 2 +- umap/static/umap/locale/it.json | 2 +- umap/static/umap/locale/ja.js | 2 +- umap/static/umap/locale/ja.json | 2 +- umap/static/umap/locale/ko.js | 2 +- umap/static/umap/locale/ko.json | 2 +- umap/static/umap/locale/lt.js | 2 +- umap/static/umap/locale/lt.json | 2 +- umap/static/umap/locale/ms.js | 2 +- umap/static/umap/locale/ms.json | 2 +- umap/static/umap/locale/nl.js | 2 +- umap/static/umap/locale/nl.json | 2 +- umap/static/umap/locale/no.js | 2 +- umap/static/umap/locale/no.json | 2 +- umap/static/umap/locale/pl.js | 2 +- umap/static/umap/locale/pl.json | 2 +- umap/static/umap/locale/pl_PL.json | 2 +- umap/static/umap/locale/pt.js | 2 +- umap/static/umap/locale/pt.json | 2 +- umap/static/umap/locale/pt_BR.js | 2 +- umap/static/umap/locale/pt_BR.json | 2 +- umap/static/umap/locale/pt_PT.js | 2 +- umap/static/umap/locale/pt_PT.json | 2 +- umap/static/umap/locale/ro.js | 2 +- umap/static/umap/locale/ro.json | 2 +- umap/static/umap/locale/ru.js | 2 +- umap/static/umap/locale/ru.json | 2 +- umap/static/umap/locale/si_LK.js | 2 +- umap/static/umap/locale/si_LK.json | 2 +- umap/static/umap/locale/sk_SK.js | 2 +- umap/static/umap/locale/sk_SK.json | 2 +- umap/static/umap/locale/sl.js | 2 +- umap/static/umap/locale/sl.json | 2 +- umap/static/umap/locale/sr.js | 2 +- umap/static/umap/locale/sr.json | 2 +- umap/static/umap/locale/sv.js | 2 +- umap/static/umap/locale/sv.json | 2 +- umap/static/umap/locale/th_TH.js | 2 +- umap/static/umap/locale/th_TH.json | 2 +- umap/static/umap/locale/tr.js | 2 +- umap/static/umap/locale/tr.json | 2 +- umap/static/umap/locale/uk_UA.js | 2 +- umap/static/umap/locale/uk_UA.json | 2 +- umap/static/umap/locale/vi.js | 2 +- umap/static/umap/locale/vi.json | 2 +- umap/static/umap/locale/vi_VN.json | 2 +- umap/static/umap/locale/zh.js | 2 +- umap/static/umap/locale/zh.json | 2 +- umap/static/umap/locale/zh_CN.json | 2 +- umap/static/umap/locale/zh_TW.Big5.json | 2 +- umap/static/umap/locale/zh_TW.js | 2 +- umap/static/umap/locale/zh_TW.json | 2 +- 95 files changed, 95 insertions(+), 95 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 5fa4404c..6b074913 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", - "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", + "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", "Click to start drawing a line": "መስመር ለመሳል ጠቅ አድርግ", "Click to start drawing a polygon": "ፖሊጎን ለመሳል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index b25a3ab0..758a6eea 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", - "Click to continue drawing ({distance})": "መሳል ለመቀጠል ጠቅ አድርግ ({distance})", + "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", "Click to start drawing a line": "መስመር ለመሳል ጠቅ አድርግ", "Click to start drawing a polygon": "ፖሊጎን ለመሳል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 632b9478..4fc0df26 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index d0d7985e..45591047 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index b13df4a0..f5bf3524 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index a02cc922..9c08dbac 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 58dd8fe5..42207c93 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index a7b473d6..44cd72b7 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Feu clic per a afegir una marca", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 4f21796f..3abe7d14 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Feu clic per a afegir una marca", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 966914f3..550433b8 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím přidáš značku", - "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", + "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", "Click to start drawing a line": "Klikněte pro začátek kreslení čáry", "Click to start drawing a polygon": "Klikněte pro začátek kreslení polygonu", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index e949abf9..614894ae 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím přidáš značku", - "Click to continue drawing ({distance})": "Kliknutím můžeš pokračovat v kreslení ({distance})", + "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", "Click to start drawing a line": "Klikněte pro začátek kreslení čáry", "Click to start drawing a polygon": "Klikněte pro začátek kreslení polygonu", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 51283a47..60d8b854 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik for at tilføje en markør", - "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", + "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", "Click to start drawing a line": "Klik for at starte indtegning af linje", "Click to start drawing a polygon": "Klik for at starte indtegning af polygon", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 4e5446e0..5b208f1b 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik for at tilføje en markør", - "Click to continue drawing ({distance})": "Klik for at fortsætte indtegning ({distance})", + "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", "Click to start drawing a line": "Klik for at starte indtegning af linje", "Click to start drawing a polygon": "Klik for at starte indtegning af polygon", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index 96839f0b..530735d7 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", - "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", + "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", "Click to start drawing a line": "Klicke, um eine Linie zu zeichnen", "Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 71dc7f8e..92140086 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", - "Click to continue drawing ({distance})": "Klicke, um weiter zu zeichnen ({distance})", + "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", "Click to start drawing a line": "Klicke, um eine Linie zu zeichnen", "Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 2c8996c7..8dbf8e6d 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", - "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", + "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", "Click to start drawing a line": "Πατήστε για έναρξη σχεδιασμού γραμμής", "Click to start drawing a polygon": "Πατήστε για έναρξη σχεδιασμού πολυγώνου", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index 7bd6f8a1..f7c87b8a 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", - "Click to continue drawing ({distance})": "Πατήστε για συνέχεια σχεδίασης ({distance})", + "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", "Click to start drawing a line": "Πατήστε για έναρξη σχεδιασμού γραμμής", "Click to start drawing a polygon": "Πατήστε για έναρξη σχεδιασμού πολυγώνου", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index cf7d551c..c137aba6 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index f2c8f3ea..4ae9daeb 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index ee833ce4..75734974 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index a9a1290b..d8595209 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Haga clic para añadir un marcador", - "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", + "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", "Click to start drawing a line": "Haga clic para empezar a dibujar una línea", "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index a3b4e7d6..57ec00bc 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Haga clic para añadir un marcador", - "Click to continue drawing ({distance})": "Haga clic para continuar dibujando ({distance})", + "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", "Click to start drawing a line": "Haga clic para empezar a dibujar una línea", "Click to start drawing a polygon": "Haga clic para empezar a dibujar un polígono", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 90bd92fa..6c24794e 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klõpsa markeri lisamiseks", - "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", + "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", "Click to start drawing a line": "Klõpsa joone alustamiseks", "Click to start drawing a polygon": "Klõpsa hulknurga alustamiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 854d1875..9ef49d7e 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klõpsa markeri lisamiseks", - "Click to continue drawing ({distance})": "Klõpsa joonistamise jätkamiseks ({distance})", + "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", "Click to start drawing a line": "Klõpsa joone alustamiseks", "Click to start drawing a polygon": "Klõpsa hulknurga alustamiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index cf4c20f2..6847ec3f 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", - "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", + "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", "Click to start drawing a line": "برای شروع رسم خط کلیک کنید", "Click to start drawing a polygon": "برای شروع ترسیم چند ضلعی کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index a097e454..b65cc363 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", - "Click to continue drawing ({distance})": "برای ادامه ترسیم کلیک کنید ({distance})", + "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", "Click to start drawing a line": "برای شروع رسم خط کلیک کنید", "Click to start drawing a polygon": "برای شروع ترسیم چند ضلعی کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index aea43e74..f5904003 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", - "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", + "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", "Click to start drawing a line": "Klikkaa aloittaaksesi viivan piirtäminen", "Click to start drawing a polygon": "Klikkaa aloittaaksesi monikulmion piirtäminen", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index f4fe793d..0781c3e4 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", - "Click to continue drawing ({distance})": "Klikkaa jatkaaksesi piirtämistä ({distance})", + "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", "Click to start drawing a line": "Klikkaa aloittaaksesi viivan piirtäminen", "Click to start drawing a polygon": "Klikkaa aloittaaksesi monikulmion piirtäminen", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 0ec75106..f4d7ad82 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Cliquer pour ajouter le marqueur", - "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", + "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", "Click to start drawing a line": "Cliquer pour commencer une ligne", "Click to start drawing a polygon": "Cliquer pour commencer un polygone", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 226b85de..eb3acf53 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Cliquer pour ajouter le marqueur", - "Click to continue drawing ({distance})": "Cliquer pour continuer le tracé ({distance})", + "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", "Click to start drawing a line": "Cliquer pour commencer une ligne", "Click to start drawing a polygon": "Cliquer pour commencer un polygone", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index ccf03be6..e4575157 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Preme para engadir unha marcaxe", - "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", + "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", "Click to start drawing a line": "Preme para comezar a debuxar unha liña", "Click to start drawing a polygon": "Preme para comezar a debuxar un polígono", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index 8335472d..f6e829ed 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Preme para engadir unha marcaxe", - "Click to continue drawing ({distance})": "Preme para seguir debuxando ({distance})", + "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", "Click to start drawing a line": "Preme para comezar a debuxar unha liña", "Click to start drawing a polygon": "Preme para comezar a debuxar un polígono", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index 91b8f903..51ce716f 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", - "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", + "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", "Click to start drawing a line": "יש ללחוץ כדי להתחיל לצייר קו", "Click to start drawing a polygon": "יש ללחוץ כדי להתחיל לצייר מצולע", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 201701f2..77806963 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", - "Click to continue drawing ({distance})": "יש ללחוץ כדי להמשיך בציור ({distance})", + "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", "Click to start drawing a line": "יש ללחוץ כדי להתחיל לצייר קו", "Click to start drawing a polygon": "יש ללחוץ כדי להתחיל לצייר מצולע", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index 1bf1b356..d429fd1c 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index f19956b2..97c8d189 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index a7fc0629..ba849233 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Jelölő hozzáadásához kattintson", - "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", + "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", "Click to start drawing a line": "Kattintson egy vonal rajzolásához", "Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index fc92df27..b5cfdb3c 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Jelölő hozzáadásához kattintson", - "Click to continue drawing ({distance})": "Kattintson a rajzolás folytatásához ({distance})", + "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", "Click to start drawing a line": "Kattintson egy vonal rajzolásához", "Click to start drawing a polygon": "Kattintson egy sokszög rajzolásához", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index bc7e7e18..a8ef11ec 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index dec0084b..deefd9c6 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Smella til að bæta við kortamerki", - "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", + "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", "Click to start drawing a line": "Smelltu til að byrja að teikna línu", "Click to start drawing a polygon": "Smelltu til að byrja að teikna fláka (marghyrning)", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index f6647e38..750dbfb7 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Smella til að bæta við kortamerki", - "Click to continue drawing ({distance})": "Smelltu til að halda áfram að teikna ({distance})", + "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", "Click to start drawing a line": "Smelltu til að byrja að teikna línu", "Click to start drawing a polygon": "Smelltu til að byrja að teikna fláka (marghyrning)", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 5f8a1156..2c15e44d 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clicca per aggiungere un marcatore", - "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", + "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", "Click to start drawing a line": "Clic per iniziare a disegnare una linea", "Click to start drawing a polygon": "Clicca per iniziare a disegnare un poligono", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 75b9bfc0..5e195bfd 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clicca per aggiungere un marcatore", - "Click to continue drawing ({distance})": "Clic per continuare a disegnare ({distance})", + "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", "Click to start drawing a line": "Clic per iniziare a disegnare una linea", "Click to start drawing a polygon": "Clicca per iniziare a disegnare un poligono", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index 6c1defc6..32c005f9 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "クリックでマーカー追加", - "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", + "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", "Click to start drawing a line": "クリックでラインの描画開始", "Click to start drawing a polygon": "クリックでポリゴンの描画開始", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index 732b5341..3a0b1054 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "クリックでマーカー追加", - "Click to continue drawing ({distance})": "クリックで描画を継続 ({distance})", + "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", "Click to start drawing a line": "クリックでラインの描画開始", "Click to start drawing a polygon": "クリックでポリゴンの描画開始", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index f414f422..b63277ad 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "마커를 추가하려면 클릭", - "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", + "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", "Click to start drawing a line": "선을 그리려면 클릭", "Click to start drawing a polygon": "도형을 그리려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index 65a4ed0a..ab6ac7f1 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "마커를 추가하려면 클릭", - "Click to continue drawing ({distance})": "계속 그리려면 클릭 ({distance})", + "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", "Click to start drawing a line": "선을 그리려면 클릭", "Click to start drawing a polygon": "도형을 그리려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index 5f106d99..efd584af 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", - "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", + "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", "Click to start drawing a line": "Paspauskite ir pradėsite piešti liniją", "Click to start drawing a polygon": "Paspauskite ir pradėsite priešti poligoną", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index 985582f9..6b4ceb2d 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", - "Click to continue drawing ({distance})": "Paspauskite kad tęsti piešimą ({distance})", + "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", "Click to start drawing a line": "Paspauskite ir pradėsite piešti liniją", "Click to start drawing a polygon": "Paspauskite ir pradėsite priešti poligoną", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 2342baa0..3996dcce 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik untuk tambahkan penanda", - "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", + "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", "Click to start drawing a line": "Klik untuk mula melukis garisan", "Click to start drawing a polygon": "Klik untuk mula melukis poligon", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index 53a52da2..22756028 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik untuk tambahkan penanda", - "Click to continue drawing ({distance})": "Klik untuk terus melukis ({distance})", + "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", "Click to start drawing a line": "Klik untuk mula melukis garisan", "Click to start drawing a polygon": "Klik untuk mula melukis poligon", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 49f89ef5..82c8f3bb 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik om een punt toe te voegen", - "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", + "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", "Click to start drawing a line": "Klik om een lijn te beginnen tekenen", "Click to start drawing a polygon": "Klik om een polygoon te beginnen tekenen", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index a1bea26f..12135ec9 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klik om een punt toe te voegen", - "Click to continue drawing ({distance})": "Klik om te blijven tekenen ({distance})", + "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", "Click to start drawing a line": "Klik om een lijn te beginnen tekenen", "Click to start drawing a polygon": "Klik om een polygoon te beginnen tekenen", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index 726be407..b955399d 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikk for å legge til en markør", - "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", + "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", "Click to start drawing a line": "Klikk for å starte å tegne en linje", "Click to start drawing a polygon": "Klikk for å starte å tegne et polygon", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 7b1a0992..399e6daf 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klikk for å legge til en markør", - "Click to continue drawing ({distance})": "Klikk for å fortsette å tegne ({distance})", + "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", "Click to start drawing a line": "Klikk for å starte å tegne en linje", "Click to start drawing a polygon": "Klikk for å starte å tegne et polygon", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index d46090cb..e2c248ca 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknij, aby dodać znacznik", - "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", + "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", "Click to start drawing a line": "Kliknij, aby zacząć rysować linię", "Click to start drawing a polygon": "Kliknij, aby zacząć rysować obszar", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 4ea34066..876c495a 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknij, aby dodać znacznik", - "Click to continue drawing ({distance})": "Kliknij, aby kontynuować rysowanie ({distance})", + "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", "Click to start drawing a line": "Kliknij, aby zacząć rysować linię", "Click to start drawing a polygon": "Kliknij, aby zacząć rysować obszar", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 7a3a0369..2e364372 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index 1879567a..11fc3886 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index cd749263..c4f5cc39 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 9d577abf..c552ce85 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index 3080ef37..a6bdea07 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 37ecf756..8057ab2d 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Clique para adicionar um marcador", - "Click to continue drawing ({distance})": "Clique para continuar a desenhar ({distance})", + "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", "Click to start drawing a line": "Clique para começar a desenhar uma linha", "Click to start drawing a polygon": "Clique para começar a desenhar um polígono", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index db0e1f66..c2584062 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index 7eaef50a..ae647e56 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 065aae09..35c9704c 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Щёлкните, чтобы добавить метку", - "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", + "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", "Click to start drawing a line": "Щёлкните, чтобы начать рисование линии", "Click to start drawing a polygon": "Щёлкните, чтобы начать рисование полигона", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 25710b8a..06f0aff4 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Щёлкните, чтобы добавить метку", - "Click to continue drawing ({distance})": "Щёлкайте, чтобы продолжить рисование ({distance})", + "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", "Click to start drawing a line": "Щёлкните, чтобы начать рисование линии", "Click to start drawing a polygon": "Щёлкните, чтобы начать рисование полигона", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index 2abbc430..ae324aef 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 28670696..96fbbbd6 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím pridáte značku", - "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", + "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", "Click to start drawing a line": "Kliknutím začnete kresliť čiaru", "Click to start drawing a polygon": "Kliknutím začnete kresliť polygón", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 1856a94e..0ff035ba 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknutím pridáte značku", - "Click to continue drawing ({distance})": "Kliknutím môžete pokračovať v kreslení ({distance})", + "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", "Click to start drawing a line": "Kliknutím začnete kresliť čiaru", "Click to start drawing a polygon": "Kliknutím začnete kresliť polygón", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 32164f5c..72c69336 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknite za dodajanje označbe", - "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", + "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", "Click to start drawing a line": "Kliknite za začetek risanja črte", "Click to start drawing a polygon": "Kliknite za začetek risanja mnogokotnika", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index 2b7e7786..c8c2b42e 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Kliknite za dodajanje označbe", - "Click to continue drawing ({distance})": "Kliknite za nadaljevanje risanja ({distance})", + "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", "Click to start drawing a line": "Kliknite za začetek risanja črte", "Click to start drawing a polygon": "Kliknite za začetek risanja mnogokotnika", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index 61bcd468..5f71383a 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клик за додавање ознаке", - "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", + "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", "Click to start drawing a line": "Клик да започнете цртање линије", "Click to start drawing a polygon": "Клик да започнете цртање површине", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index 657ebdff..d1b6070d 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клик за додавање ознаке", - "Click to continue drawing ({distance})": "Клик да наставите са цртањем ({distance})", + "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", "Click to start drawing a line": "Клик да започнете цртање линије", "Click to start drawing a polygon": "Клик да започнете цртање површине", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index d75f099d..f54f4c09 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicka för att lägga till en markör", - "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", + "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", "Click to start drawing a line": "Klicka för att börja rita en linje", "Click to start drawing a polygon": "Klicka för att börja rita en polygon", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index 97df0f7e..e7100064 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Klicka för att lägga till en markör", - "Click to continue drawing ({distance})": "Klicka för att fortsätta rita ({distance})", + "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", "Click to start drawing a line": "Klicka för att börja rita en linje", "Click to start drawing a polygon": "Klicka för att börja rita en polygon", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index ae656d13..d251a9b1 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 80b4c1c4..7feddb4a 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", - "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", + "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", "Click to start drawing a line": "Çizgi çizmeye başlamak için tıkla", "Click to start drawing a polygon": "Çokgen çizmeye başlamak için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index bb06214d..5dc8886d 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", - "Click to continue drawing ({distance})": "Çizime devam etmek için tıklayın ({distance})", + "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", "Click to start drawing a line": "Çizgi çizmeye başlamak için tıkla", "Click to start drawing a polygon": "Çokgen çizmeye başlamak için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index 1ac1fc25..9c244bdf 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клацніть, щоб додати позначку", - "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", + "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", "Click to start drawing a line": "Клацайте, щоб продовжити креслення", "Click to start drawing a polygon": "Клацніть, щоб почати креслення багатокутника", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 5c8c42f7..ed43b173 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Клацніть, щоб додати позначку", - "Click to continue drawing ({distance})": "Клацайте, щоб продовжити креслення ({distance})", + "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", "Click to start drawing a line": "Клацайте, щоб продовжити креслення", "Click to start drawing a polygon": "Клацніть, щоб почати креслення багатокутника", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index 5ecf103e..6cc8c8f0 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index c141dd8d..f0805599 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 26e2f841..124cc8ce 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index 1a638b02..09c815ca 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 61e4dd5c..1bfea060 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "Click to add a marker", - "Click to continue drawing ({distance})": "Click to continue drawing ({distance})", + "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", "Click to start drawing a line": "Click to start drawing a line", "Click to start drawing a polygon": "Click to start drawing a polygon", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index 33d5313d..478f449f 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -119,7 +119,7 @@ var locale = { "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "點選以新增標記", - "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", + "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", "Click to start drawing a line": "點擊以開始繪製直線", "Click to start drawing a polygon": "點選開始繪製多邊形", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index b9f3fde5..a9a81f55 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -119,7 +119,7 @@ "Line distance: {distance}": "Line distance: {distance}", "Polygon area: {area}": "Polygon area: {area}", "Click to add a marker": "點選以新增標記", - "Click to continue drawing ({distance})": "點擊以繼續繪製 ({distance})", + "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", "Click to start drawing a line": "點擊以開始繪製直線", "Click to start drawing a polygon": "點選開始繪製多邊形", From 62c7a5f68902a78bcd8c80ecd7d9c5be4990b5fa Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 10:20:43 +0000 Subject: [PATCH 13/20] refactor: No need to translate ({distance}) --- umap/static/umap/js/umap.controls.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 1dfe44da..383b8312 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1267,11 +1267,12 @@ L.U.Editable = L.Editable.extend({ var readableDistance = e.layer.getMeasure(tmpLatLngs); if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { // when drawing second point - content = L._('Click to continue drawing ({distance})', { distance: readableDistance }); + content = L._('Click to continue drawing'); } else { // when drawing third point (or more) - content = L._('Click last point to finish shape ({distance})', { distance: readableDistance }); + content = L._('Click last point to finish shape'); } + content += " ("+readableDistance+")"; } } else { // when moving an existing point From 3d5da276d52eee5307b287a7c0c25e013ee98a9b Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 10:26:35 +0000 Subject: [PATCH 14/20] refactor: translation variables --- umap/static/umap/js/umap.controls.js | 4 ++-- umap/static/umap/locale/am_ET.js | 4 ++-- umap/static/umap/locale/am_ET.json | 4 ++-- umap/static/umap/locale/ar.js | 4 ++-- umap/static/umap/locale/ar.json | 4 ++-- umap/static/umap/locale/ast.js | 4 ++-- umap/static/umap/locale/ast.json | 4 ++-- umap/static/umap/locale/bg.js | 4 ++-- umap/static/umap/locale/bg.json | 4 ++-- umap/static/umap/locale/ca.js | 4 ++-- umap/static/umap/locale/ca.json | 4 ++-- umap/static/umap/locale/cs_CZ.js | 4 ++-- umap/static/umap/locale/cs_CZ.json | 4 ++-- umap/static/umap/locale/da.js | 4 ++-- umap/static/umap/locale/da.json | 4 ++-- umap/static/umap/locale/de.js | 4 ++-- umap/static/umap/locale/de.json | 4 ++-- umap/static/umap/locale/el.js | 4 ++-- umap/static/umap/locale/el.json | 4 ++-- umap/static/umap/locale/en.js | 4 ++-- umap/static/umap/locale/en.json | 4 ++-- umap/static/umap/locale/en_US.json | 4 ++-- umap/static/umap/locale/es.js | 4 ++-- umap/static/umap/locale/es.json | 4 ++-- umap/static/umap/locale/et.js | 4 ++-- umap/static/umap/locale/et.json | 4 ++-- umap/static/umap/locale/fa_IR.js | 4 ++-- umap/static/umap/locale/fa_IR.json | 4 ++-- umap/static/umap/locale/fi.js | 4 ++-- umap/static/umap/locale/fi.json | 4 ++-- umap/static/umap/locale/fr.js | 4 ++-- umap/static/umap/locale/fr.json | 4 ++-- umap/static/umap/locale/gl.js | 4 ++-- umap/static/umap/locale/gl.json | 4 ++-- umap/static/umap/locale/he.js | 4 ++-- umap/static/umap/locale/he.json | 4 ++-- umap/static/umap/locale/hr.js | 4 ++-- umap/static/umap/locale/hr.json | 4 ++-- umap/static/umap/locale/hu.js | 4 ++-- umap/static/umap/locale/hu.json | 4 ++-- umap/static/umap/locale/id.js | 4 ++-- umap/static/umap/locale/id.json | 4 ++-- umap/static/umap/locale/is.js | 4 ++-- umap/static/umap/locale/is.json | 4 ++-- umap/static/umap/locale/it.js | 4 ++-- umap/static/umap/locale/it.json | 4 ++-- umap/static/umap/locale/ja.js | 4 ++-- umap/static/umap/locale/ja.json | 4 ++-- umap/static/umap/locale/ko.js | 4 ++-- umap/static/umap/locale/ko.json | 4 ++-- umap/static/umap/locale/lt.js | 4 ++-- umap/static/umap/locale/lt.json | 4 ++-- umap/static/umap/locale/ms.js | 4 ++-- umap/static/umap/locale/ms.json | 4 ++-- umap/static/umap/locale/nl.js | 4 ++-- umap/static/umap/locale/nl.json | 4 ++-- umap/static/umap/locale/no.js | 4 ++-- umap/static/umap/locale/no.json | 4 ++-- umap/static/umap/locale/pl.js | 4 ++-- umap/static/umap/locale/pl.json | 4 ++-- umap/static/umap/locale/pl_PL.json | 4 ++-- umap/static/umap/locale/pt.js | 4 ++-- umap/static/umap/locale/pt.json | 4 ++-- umap/static/umap/locale/pt_BR.js | 4 ++-- umap/static/umap/locale/pt_BR.json | 4 ++-- umap/static/umap/locale/pt_PT.js | 4 ++-- umap/static/umap/locale/pt_PT.json | 4 ++-- umap/static/umap/locale/ro.js | 4 ++-- umap/static/umap/locale/ro.json | 4 ++-- umap/static/umap/locale/ru.js | 4 ++-- umap/static/umap/locale/ru.json | 4 ++-- umap/static/umap/locale/si_LK.js | 4 ++-- umap/static/umap/locale/si_LK.json | 4 ++-- umap/static/umap/locale/sk_SK.js | 4 ++-- umap/static/umap/locale/sk_SK.json | 4 ++-- umap/static/umap/locale/sl.js | 4 ++-- umap/static/umap/locale/sl.json | 4 ++-- umap/static/umap/locale/sr.js | 4 ++-- umap/static/umap/locale/sr.json | 4 ++-- umap/static/umap/locale/sv.js | 4 ++-- umap/static/umap/locale/sv.json | 4 ++-- umap/static/umap/locale/th_TH.js | 4 ++-- umap/static/umap/locale/th_TH.json | 4 ++-- umap/static/umap/locale/tr.js | 4 ++-- umap/static/umap/locale/tr.json | 4 ++-- umap/static/umap/locale/uk_UA.js | 4 ++-- umap/static/umap/locale/uk_UA.json | 4 ++-- umap/static/umap/locale/vi.js | 4 ++-- umap/static/umap/locale/vi.json | 4 ++-- umap/static/umap/locale/vi_VN.json | 4 ++-- umap/static/umap/locale/zh.js | 4 ++-- umap/static/umap/locale/zh.json | 4 ++-- umap/static/umap/locale/zh_CN.json | 4 ++-- umap/static/umap/locale/zh_TW.Big5.json | 4 ++-- umap/static/umap/locale/zh_TW.js | 4 ++-- umap/static/umap/locale/zh_TW.json | 4 ++-- 96 files changed, 192 insertions(+), 192 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 383b8312..5eecf5c4 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1277,9 +1277,9 @@ L.U.Editable = L.Editable.extend({ } else { // when moving an existing point if (e.layer instanceof L.Polygon){ - content = L._('Polygon area: {area}', { area: e.layer.getMeasure() }); + content = L._('Polygon area: {measure}', { measure: e.layer.getMeasure() }); } else if (e.layer instanceof L.Polyline) { - content = L._('Line distance: {distance}', { distance: e.layer.getMeasure() }); + content = L._('Line distance: {measure}', { measure: e.layer.getMeasure() }); } } } diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 6b074913..9df8da2d 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index 758a6eea..2620d994 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 4fc0df26..6849ed5a 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 45591047..07172705 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index f5bf3524..7db5adf7 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index 9c08dbac..ff93565f 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 42207c93..2e2aad84 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index 44cd72b7..57036e85 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 3abe7d14..628ed880 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 550433b8..25ab078e 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index 614894ae..367ce0f8 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 60d8b854..c6730cb7 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 5b208f1b..b3531cfb 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index 530735d7..0e27a605 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 92140086..e00d65ca 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 8dbf8e6d..cedfd308 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index f7c87b8a..65717352 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index c137aba6..4c223371 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index 4ae9daeb..ed224c02 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index 75734974..cf9a378a 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index d8595209..d68bdeec 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 57ec00bc..01d1d38f 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 6c24794e..5aa3651a 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 9ef49d7e..b8c1ebb5 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index 6847ec3f..ef450d2a 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index b65cc363..4f908f5e 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index f5904003..e6ef7631 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index 0781c3e4..314d03b0 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index f4d7ad82..18243c96 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index eb3acf53..7661dc32 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index e4575157..0e95aff7 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index f6e829ed..9e3c8c55 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index 51ce716f..1d3d5ee1 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 77806963..47daa2c4 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index d429fd1c..f91d9bed 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index 97c8d189..e7dfff3c 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index ba849233..2da957fb 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index b5cfdb3c..d8a02e13 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index a8ef11ec..546a2a76 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index deefd9c6..a3d25c0f 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index 750dbfb7..11b1c0da 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 2c15e44d..844d1f9b 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 5e195bfd..8e8a7d1f 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index 32c005f9..e3ec11ab 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index 3a0b1054..f8b12c7a 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index b63277ad..29417d4c 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index ab6ac7f1..2f25a0de 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index efd584af..5998c5f0 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index 6b4ceb2d..a072ff80 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 3996dcce..55adb133 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index 22756028..e00f65b3 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 82c8f3bb..a9ab9a5f 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index 12135ec9..a3ede233 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index b955399d..ae29f15a 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 399e6daf..0ed19459 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index e2c248ca..febd044e 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 876c495a..cdaea6b7 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 2e364372..68aef3c6 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index 11fc3886..91536312 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index c4f5cc39..6d2bce93 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index c552ce85..1546e466 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index a6bdea07..3cb5b7c9 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 8057ab2d..02b8490b 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index c2584062..5468e985 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index ae647e56..2a983a7f 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 35c9704c..aad8405c 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 06f0aff4..131b524d 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index ae324aef..dd74a94e 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 96fbbbd6..c5548aa4 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 0ff035ba..5a9cdf0f 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 72c69336..fb768ef8 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index c8c2b42e..ac24c617 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index 5f71383a..aa7bc105 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index d1b6070d..2c755ee1 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index f54f4c09..ca308d56 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index e7100064..454a2e65 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index d251a9b1..ab74c9f3 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 7feddb4a..992bf68e 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index 5dc8886d..8845c708 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index 9c244bdf..5cd170e5 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index ed43b173..9784cddc 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index 6cc8c8f0..dca3d23f 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index f0805599..cf9a2130 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 124cc8ce..f7ee179a 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index 09c815ca..54726c6c 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 1bfea060..155a2322 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index 478f449f..946a0549 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -116,8 +116,8 @@ var locale = { "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index a9a81f55..b95a8ead 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -116,8 +116,8 @@ "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", - "Line distance: {distance}": "Line distance: {distance}", - "Polygon area: {area}": "Polygon area: {area}", + "Line distance: {measure}": "Line distance: {measure}", + "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", From ca40e762c130ad16029f298ade4e95c284155073 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Thu, 27 Apr 2023 12:14:04 +0000 Subject: [PATCH 15/20] Remove "({distance})" from locale "Click last point to finish shape" --- umap/static/umap/locale/am_ET.js | 2 +- umap/static/umap/locale/am_ET.json | 2 +- umap/static/umap/locale/ar.js | 2 +- umap/static/umap/locale/ar.json | 2 +- umap/static/umap/locale/ast.js | 2 +- umap/static/umap/locale/ast.json | 2 +- umap/static/umap/locale/bg.js | 2 +- umap/static/umap/locale/bg.json | 2 +- umap/static/umap/locale/ca.js | 2 +- umap/static/umap/locale/ca.json | 2 +- umap/static/umap/locale/cs_CZ.js | 2 +- umap/static/umap/locale/cs_CZ.json | 2 +- umap/static/umap/locale/da.js | 2 +- umap/static/umap/locale/da.json | 2 +- umap/static/umap/locale/de.js | 2 +- umap/static/umap/locale/de.json | 2 +- umap/static/umap/locale/el.js | 2 +- umap/static/umap/locale/el.json | 2 +- umap/static/umap/locale/en.js | 2 +- umap/static/umap/locale/en.json | 2 +- umap/static/umap/locale/en_US.json | 2 +- umap/static/umap/locale/es.js | 2 +- umap/static/umap/locale/es.json | 2 +- umap/static/umap/locale/et.js | 2 +- umap/static/umap/locale/et.json | 2 +- umap/static/umap/locale/fa_IR.js | 2 +- umap/static/umap/locale/fa_IR.json | 2 +- umap/static/umap/locale/fi.js | 2 +- umap/static/umap/locale/fi.json | 2 +- umap/static/umap/locale/fr.js | 2 +- umap/static/umap/locale/fr.json | 2 +- umap/static/umap/locale/gl.js | 2 +- umap/static/umap/locale/gl.json | 2 +- umap/static/umap/locale/he.js | 2 +- umap/static/umap/locale/he.json | 2 +- umap/static/umap/locale/hr.js | 2 +- umap/static/umap/locale/hr.json | 2 +- umap/static/umap/locale/hu.js | 2 +- umap/static/umap/locale/hu.json | 2 +- umap/static/umap/locale/id.js | 2 +- umap/static/umap/locale/id.json | 2 +- umap/static/umap/locale/is.js | 2 +- umap/static/umap/locale/is.json | 2 +- umap/static/umap/locale/it.js | 2 +- umap/static/umap/locale/it.json | 2 +- umap/static/umap/locale/ja.js | 2 +- umap/static/umap/locale/ja.json | 2 +- umap/static/umap/locale/ko.js | 2 +- umap/static/umap/locale/ko.json | 2 +- umap/static/umap/locale/lt.js | 2 +- umap/static/umap/locale/lt.json | 2 +- umap/static/umap/locale/ms.js | 2 +- umap/static/umap/locale/ms.json | 2 +- umap/static/umap/locale/nl.js | 2 +- umap/static/umap/locale/nl.json | 2 +- umap/static/umap/locale/no.js | 2 +- umap/static/umap/locale/no.json | 2 +- umap/static/umap/locale/pl.js | 2 +- umap/static/umap/locale/pl.json | 2 +- umap/static/umap/locale/pl_PL.json | 2 +- umap/static/umap/locale/pt.js | 2 +- umap/static/umap/locale/pt.json | 2 +- umap/static/umap/locale/pt_BR.js | 2 +- umap/static/umap/locale/pt_BR.json | 2 +- umap/static/umap/locale/pt_PT.js | 2 +- umap/static/umap/locale/pt_PT.json | 2 +- umap/static/umap/locale/ro.js | 2 +- umap/static/umap/locale/ro.json | 2 +- umap/static/umap/locale/ru.js | 2 +- umap/static/umap/locale/ru.json | 2 +- umap/static/umap/locale/si_LK.js | 2 +- umap/static/umap/locale/si_LK.json | 2 +- umap/static/umap/locale/sk_SK.js | 2 +- umap/static/umap/locale/sk_SK.json | 2 +- umap/static/umap/locale/sl.js | 2 +- umap/static/umap/locale/sl.json | 2 +- umap/static/umap/locale/sr.js | 2 +- umap/static/umap/locale/sr.json | 2 +- umap/static/umap/locale/sv.js | 2 +- umap/static/umap/locale/sv.json | 2 +- umap/static/umap/locale/th_TH.js | 2 +- umap/static/umap/locale/th_TH.json | 2 +- umap/static/umap/locale/tr.js | 2 +- umap/static/umap/locale/tr.json | 2 +- umap/static/umap/locale/uk_UA.js | 2 +- umap/static/umap/locale/uk_UA.json | 2 +- umap/static/umap/locale/vi.js | 2 +- umap/static/umap/locale/vi.json | 2 +- umap/static/umap/locale/vi_VN.json | 2 +- umap/static/umap/locale/zh.js | 2 +- umap/static/umap/locale/zh.json | 2 +- umap/static/umap/locale/zh_CN.json | 2 +- umap/static/umap/locale/zh_TW.Big5.json | 2 +- umap/static/umap/locale/zh_TW.js | 2 +- umap/static/umap/locale/zh_TW.json | 2 +- 95 files changed, 95 insertions(+), 95 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 9df8da2d..c8cfcc43 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "ፕሪሴት ምረጥ", "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", - "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", + "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index 2620d994..91e54862 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -115,7 +115,7 @@ "Choose a preset": "ፕሪሴት ምረጥ", "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", - "Click last point to finish shape ({distance})": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ ({distance})", + "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index 6849ed5a..feb3cb6b 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 07172705..0b7b248b 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index 7db5adf7..dd56515c 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index ff93565f..b4ad82a5 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Изберете предварително зададен", "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 2e2aad84..bc45672d 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -115,7 +115,7 @@ "Choose a preset": "Изберете предварително зададен", "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index 57036e85..6dfa80ca 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 628ed880..44c8cc98 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 25ab078e..6dd867eb 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Zvolte přednastavení", "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", - "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", + "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index 367ce0f8..ae8b4cdb 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -115,7 +115,7 @@ "Choose a preset": "Zvolte přednastavení", "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", - "Click last point to finish shape ({distance})": "Klikněte na poslední bod pro dokončení tvaru ({distance})", + "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index c6730cb7..43c7e84c 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vælg en forudindstilling", "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", - "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", + "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index b3531cfb..7647d051 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -115,7 +115,7 @@ "Choose a preset": "Vælg en forudindstilling", "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", - "Click last point to finish shape ({distance})": "Klik på det det sidste punkt for at afslutte figur ({distance})", + "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index 0e27a605..adcef6ca 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Wähle eine Vorlage", "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", - "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", + "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index e00d65ca..944c1e0c 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -115,7 +115,7 @@ "Choose a preset": "Wähle eine Vorlage", "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", - "Click last point to finish shape ({distance})": "Klicke den letzten Punkt an, um die Form abzuschließen ({distance})", + "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index cedfd308..11458cf3 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Επιλογή προκαθορισμένου", "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", - "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", + "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index 65717352..87e7c045 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -115,7 +115,7 @@ "Choose a preset": "Επιλογή προκαθορισμένου", "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", - "Click last point to finish shape ({distance})": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα ({distance})", + "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index 4c223371..5961a22b 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index ed224c02..9a76d60b 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index cf9a378a..5eee9361 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index d68bdeec..45348ff3 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Elegir un preestablecido", "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", - "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", + "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 01d1d38f..663c02a5 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -115,7 +115,7 @@ "Choose a preset": "Elegir un preestablecido", "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", - "Click last point to finish shape ({distance})": "Haga clic en el último punto para terminar la figura ({distance})", + "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 5aa3651a..91797165 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vali algseade", "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", - "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", + "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index b8c1ebb5..29073ec1 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -115,7 +115,7 @@ "Choose a preset": "Vali algseade", "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", - "Click last point to finish shape ({distance})": "Klõpsa kujundi lõpetamiseks viimasel punktil ({distance})", + "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index ef450d2a..66fc077d 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "از پیش تعیین شده را انتخاب کنید", "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", - "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", + "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index 4f908f5e..4bfdecde 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -115,7 +115,7 @@ "Choose a preset": "از پیش تعیین شده را انتخاب کنید", "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", - "Click last point to finish shape ({distance})": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید ({distance})", + "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index e6ef7631..4843af5c 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Valitse", "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", - "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", + "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index 314d03b0..fd33b418 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -115,7 +115,7 @@ "Choose a preset": "Valitse", "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", - "Click last point to finish shape ({distance})": "Klikkaa viimeistä pistettä täydentääksesi muodon ({distance})", + "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 18243c96..18da8156 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choisir dans les présélections", "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", - "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", + "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 7661dc32..4697b6d8 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -115,7 +115,7 @@ "Choose a preset": "Choisir dans les présélections", "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", - "Click last point to finish shape ({distance})": "Cliquer sur le dernier point pour finir le tracé ({distance})", + "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index 0e95aff7..8e868651 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escoller un predefinido", "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", - "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", + "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index 9e3c8c55..1533261a 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -115,7 +115,7 @@ "Choose a preset": "Escoller un predefinido", "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", - "Click last point to finish shape ({distance})": "Preme no derradeiro punto para rematar a forma ({distance})", + "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index 1d3d5ee1..dd3bd4af 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "נא לבחור ערכה", "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", - "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", + "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 47daa2c4..df2da770 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -115,7 +115,7 @@ "Choose a preset": "נא לבחור ערכה", "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", - "Click last point to finish shape ({distance})": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה ({distance})", + "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index f91d9bed..c9f706cb 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index e7dfff3c..7595c44a 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 2da957fb..92a74418 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Előbeállítás kiválasztása", "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", - "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", + "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index d8a02e13..1c1144bb 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -115,7 +115,7 @@ "Choose a preset": "Előbeállítás kiválasztása", "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", - "Click last point to finish shape ({distance})": "Az alakzat befejezéséhez kattintson az utolsó pontra ({distance})", + "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index 546a2a76..94c69dba 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index a3d25c0f..69e0f8ff 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Veldu forstillingu", "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", - "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", + "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index 11b1c0da..48fcbbe9 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -115,7 +115,7 @@ "Choose a preset": "Veldu forstillingu", "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", - "Click last point to finish shape ({distance})": "Smelltu á síðasta punktinn til að ljúka lögun ({distance})", + "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 844d1f9b..a0a28f1b 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Seleziona una preimpostazione", "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", - "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", + "Click last point to finish shape": "Click su ultimo punto per completare la geometria", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 8e8a7d1f..84b831da 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -115,7 +115,7 @@ "Choose a preset": "Seleziona una preimpostazione", "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", - "Click last point to finish shape ({distance})": "Click su ultimo punto per completare la geometria ({distance})", + "Click last point to finish shape": "Click su ultimo punto per completare la geometria", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index e3ec11ab..94066211 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "プリセット選択", "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", - "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", + "Click last point to finish shape": "クリックでシェイプの作成を終了", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index f8b12c7a..6f43545b 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -115,7 +115,7 @@ "Choose a preset": "プリセット選択", "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", - "Click last point to finish shape ({distance})": "クリックでシェイプの作成を終了 ({distance})", + "Click last point to finish shape": "クリックでシェイプの作成を終了", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index 29417d4c..77eb5044 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "프리셋 선택", "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", - "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", + "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index 2f25a0de..c49f3158 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -115,7 +115,7 @@ "Choose a preset": "프리셋 선택", "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", - "Click last point to finish shape ({distance})": "도형을 그만 그리려면 마지막 점을 클릭 ({distance})", + "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index 5998c5f0..64d9dd88 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Pasirinkite šabloną", "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", - "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", + "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index a072ff80..72cf86f5 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -115,7 +115,7 @@ "Choose a preset": "Pasirinkite šabloną", "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", - "Click last point to finish shape ({distance})": "Paspauskite ant paskutinio taško kad baigti piešimą ({distance})", + "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 55adb133..6f1c89d1 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Pilih pratetapan", "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", - "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", + "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index e00f65b3..5036ef67 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -115,7 +115,7 @@ "Choose a preset": "Pilih pratetapan", "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", - "Click last point to finish shape ({distance})": "Klik titik akhir untuk lengkapkan bentuk ({distance})", + "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index a9ab9a5f..7cfa45b2 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Kies een voorkeuzeinstelling", "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", - "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", + "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index a3ede233..b0c36e95 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -115,7 +115,7 @@ "Choose a preset": "Kies een voorkeuzeinstelling", "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", - "Click last point to finish shape ({distance})": "Klik op het laatste punt om de vorm af te maken ({distance})", + "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index ae29f15a..67f197e2 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 0ed19459..5f645af1 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index febd044e..6bf1ddf3 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Wybierz szablon", "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", - "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", + "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index cdaea6b7..46b0480c 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -115,7 +115,7 @@ "Choose a preset": "Wybierz szablon", "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", - "Click last point to finish shape ({distance})": "Kliknij ostatni punkt, aby zakończyć rysowanie ({distance})", + "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 68aef3c6..96c212be 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index 91536312..abcd1beb 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index 6d2bce93..21750140 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 1546e466..d35d1403 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index 3cb5b7c9..fa5f9538 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 02b8490b..68b96249 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -115,7 +115,7 @@ "Choose a preset": "Escolha um modelo", "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", - "Click last point to finish shape ({distance})": "Clique no último ponto para terminar a forma geométrica ({distance})", + "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index 5468e985..41c3feec 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index 2a983a7f..b4726bf3 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index aad8405c..3cf369a3 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Выберите шаблон", "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", - "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", + "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 131b524d..e43efff9 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -115,7 +115,7 @@ "Choose a preset": "Выберите шаблон", "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", - "Click last point to finish shape ({distance})": "Щёлкните на последней точке, чтобы завершить ({distance})", + "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index dd74a94e..3737590f 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index c5548aa4..1cf7b402 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Vyberte predvoľbu", "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", - "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", + "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 5a9cdf0f..d854e665 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -115,7 +115,7 @@ "Choose a preset": "Vyberte predvoľbu", "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", - "Click last point to finish shape ({distance})": "Kliknite na posledný bod pre dokončenie tvaru ({distance})", + "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index fb768ef8..85ae527e 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Izbor prednastavitev", "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", - "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", + "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index ac24c617..121e104c 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -115,7 +115,7 @@ "Choose a preset": "Izbor prednastavitev", "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", - "Click last point to finish shape ({distance})": "Kliknite na zadnjo točko za dokončanje risanja oblike ({distance})", + "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index aa7bc105..f7c83082 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Изаберите претходно подешавање", "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", - "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", + "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index 2c755ee1..841f48ee 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -115,7 +115,7 @@ "Choose a preset": "Изаберите претходно подешавање", "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", - "Click last point to finish shape ({distance})": "Кликните на последњу тачку да бисте довршили облик ({distance})", + "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index ca308d56..4a9d89ff 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Välj förinställning", "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", - "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", + "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index 454a2e65..6f21aaf3 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -115,7 +115,7 @@ "Choose a preset": "Välj förinställning", "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", - "Click last point to finish shape ({distance})": "Klicka på sista punkten för att slutföra formen ({distance})", + "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index ab74c9f3..888f956c 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 992bf68e..6e918fae 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Bir ön ayar seç", "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", - "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", + "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index 8845c708..573c0f98 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -115,7 +115,7 @@ "Choose a preset": "Bir ön ayar seç", "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", - "Click last point to finish shape ({distance})": "Şekli bitirmek için son noktaya tıklayın ({distance})", + "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index 5cd170e5..c857aad5 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Виберіть шаблон", "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", - "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", + "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 9784cddc..ffe496cc 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -115,7 +115,7 @@ "Choose a preset": "Виберіть шаблон", "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", - "Click last point to finish shape ({distance})": "Клацніть на останній точці, щоб завершити ({distance})", + "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index dca3d23f..eb30d8f2 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index cf9a2130..0e4a24e0 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index f7ee179a..6002416b 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "Choose a preset", "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index 54726c6c..9da6be86 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 155a2322..3250ea7e 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -115,7 +115,7 @@ "Choose a preset": "Choose a preset", "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", - "Click last point to finish shape ({distance})": "Click last point to finish shape ({distance})", + "Click last point to finish shape": "Click last point to finish shape", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index 946a0549..6e63290d 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -115,7 +115,7 @@ var locale = { "Choose a preset": "選擇一種預設值", "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", - "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", + "Click last point to finish shape": "點下最後一點後完成外形", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index b95a8ead..69000eee 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -115,7 +115,7 @@ "Choose a preset": "選擇一種預設值", "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", - "Click last point to finish shape ({distance})": "點下最後一點後完成外形 ({distance})", + "Click last point to finish shape": "點下最後一點後完成外形", "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", From d1ffd76d47d29f40fe2359fdb7ea1ba16a825a48 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Fri, 28 Apr 2023 12:55:01 +0000 Subject: [PATCH 16/20] cleanup --- umap/static/umap/locale/de.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 944c1e0c..bac29ccc 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -384,8 +384,4 @@ "Permanent credits background": "Dauerhafte Danksagung im Hintergrund", "Select data": "Wähle Daten aus", "Will be permanently visible in the bottom left corner of the map": "Wird in der unteren linken Ecke der Karte permanent sichtbar sein" -<<<<<<< HEAD } -======= -} ->>>>>>> 15a1802 (i18n) From afbe7c90d8df0089109cca3dff4b77d3ee06bd34 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 2 May 2023 08:00:46 +0000 Subject: [PATCH 17/20] dont show popup "click to add a marker" when moving marker --- umap/static/umap/js/umap.controls.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 5eecf5c4..418c99c7 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1250,8 +1250,9 @@ L.U.Editable = L.Editable.extend({ drawingTooltip: function (e) { var content; - if (e.layer instanceof L.Marker) content = L._('Click to add a marker'); - else if (e.layer instanceof L.Polyline) { + if (e.layer instanceof L.Marker && e.type != "editable:drawing:move") { + content = L._('Click to add a marker'); + } else if (e.layer instanceof L.Polyline) { // when drawing a Polyline or Polygon if (e.layer.editor._drawnLatLngs) { // when drawing first point From f737d81b40824b8906c2423d8dfeb3ce52ce33b7 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 2 May 2023 10:07:53 +0000 Subject: [PATCH 18/20] refactor --- umap/static/umap/js/umap.controls.js | 65 ++++++++++++++++------------ 1 file changed, 37 insertions(+), 28 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 418c99c7..070a72cc 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1249,39 +1249,48 @@ L.U.Editable = L.Editable.extend({ }, drawingTooltip: function (e) { - var content; if (e.layer instanceof L.Marker && e.type != "editable:drawing:move") { - content = L._('Click to add a marker'); - } else if (e.layer instanceof L.Polyline) { - // when drawing a Polyline or Polygon - if (e.layer.editor._drawnLatLngs) { + this.map.ui.tooltip({content: L._('Click to add a marker')}); + } + if (!(e.layer instanceof L.Polyline)) { + // only continue with Polylines and Polygons + return; + } + + var content; + var measure; + if (e.layer.editor._drawnLatLngs) { + // when drawing (a Polyline or Polygon) + if (!e.layer.editor._drawnLatLngs.length) { // when drawing first point - if (!e.layer.editor._drawnLatLngs.length) { - if (e.layer instanceof L.Polygon){ - content = L._('Click to start drawing a polygon'); - } else if (e.layer instanceof L.Polyline) { - content = L._('Click to start drawing a line'); - } - } else { - var tmpLatLngs = e.layer.editor._drawnLatLngs.slice(); - tmpLatLngs.push(e.latlng); - var readableDistance = e.layer.getMeasure(tmpLatLngs); - if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { - // when drawing second point - content = L._('Click to continue drawing'); - } else { - // when drawing third point (or more) - content = L._('Click last point to finish shape'); - } - content += " ("+readableDistance+")"; + if (e.layer instanceof L.Polygon){ + content = L._('Click to start drawing a polygon'); + } else if (e.layer instanceof L.Polyline) { + content = L._('Click to start drawing a line'); } } else { - // when moving an existing point - if (e.layer instanceof L.Polygon){ - content = L._('Polygon area: {measure}', { measure: e.layer.getMeasure() }); - } else if (e.layer instanceof L.Polyline) { - content = L._('Line distance: {measure}', { measure: e.layer.getMeasure() }); + var tmpLatLngs = e.layer.editor._drawnLatLngs.slice(); + tmpLatLngs.push(e.latlng); + measure = e.layer.getMeasure(tmpLatLngs); + + if (e.layer.editor._drawnLatLngs.length < e.layer.editor.MIN_VERTEX) { + // when drawing second point + content = L._('Click to continue drawing'); + } else { + // when drawing third point (or more) + content = L._('Click last point to finish shape'); } + content += ", " + } + } else { + // when moving an existing point + measure = e.layer.getMeasure(); + } + if (measure){ + if (e.layer instanceof L.Polygon){ + content = L._('Polygon area: {measure}', { measure: measure }); + } else if (e.layer instanceof L.Polyline) { + content = L._('Line distance: {measure}', { measure: measure }); } } if (content) { From be806435f940b48366acd7d5b4846e9679fd5345 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 2 May 2023 10:29:55 +0000 Subject: [PATCH 19/20] use "line length", remove translations (will be done by transifex) --- umap/static/umap/js/umap.controls.js | 2 +- umap/static/umap/locale/am_ET.js | 1 - umap/static/umap/locale/am_ET.json | 1 - umap/static/umap/locale/ar.js | 1 - umap/static/umap/locale/ar.json | 1 - umap/static/umap/locale/ast.js | 1 - umap/static/umap/locale/ast.json | 1 - umap/static/umap/locale/bg.js | 1 - umap/static/umap/locale/bg.json | 1 - umap/static/umap/locale/ca.js | 1 - umap/static/umap/locale/ca.json | 1 - umap/static/umap/locale/cs_CZ.js | 1 - umap/static/umap/locale/cs_CZ.json | 1 - umap/static/umap/locale/da.js | 1 - umap/static/umap/locale/da.json | 1 - umap/static/umap/locale/de.js | 1 - umap/static/umap/locale/de.json | 1 - umap/static/umap/locale/el.js | 1 - umap/static/umap/locale/el.json | 1 - umap/static/umap/locale/en.js | 1 - umap/static/umap/locale/en.json | 1 - umap/static/umap/locale/en_US.json | 1 - umap/static/umap/locale/es.js | 1 - umap/static/umap/locale/es.json | 1 - umap/static/umap/locale/et.js | 1 - umap/static/umap/locale/et.json | 1 - umap/static/umap/locale/fa_IR.js | 1 - umap/static/umap/locale/fa_IR.json | 1 - umap/static/umap/locale/fi.js | 1 - umap/static/umap/locale/fi.json | 1 - umap/static/umap/locale/fr.js | 1 - umap/static/umap/locale/fr.json | 1 - umap/static/umap/locale/gl.js | 1 - umap/static/umap/locale/gl.json | 1 - umap/static/umap/locale/he.js | 1 - umap/static/umap/locale/he.json | 1 - umap/static/umap/locale/hr.js | 1 - umap/static/umap/locale/hr.json | 1 - umap/static/umap/locale/hu.js | 1 - umap/static/umap/locale/hu.json | 1 - umap/static/umap/locale/id.js | 1 - umap/static/umap/locale/id.json | 1 - umap/static/umap/locale/is.js | 1 - umap/static/umap/locale/is.json | 1 - umap/static/umap/locale/it.js | 1 - umap/static/umap/locale/it.json | 1 - umap/static/umap/locale/ja.js | 1 - umap/static/umap/locale/ja.json | 1 - umap/static/umap/locale/ko.js | 1 - umap/static/umap/locale/ko.json | 1 - umap/static/umap/locale/lt.js | 1 - umap/static/umap/locale/lt.json | 1 - umap/static/umap/locale/ms.js | 1 - umap/static/umap/locale/ms.json | 1 - umap/static/umap/locale/nl.js | 1 - umap/static/umap/locale/nl.json | 1 - umap/static/umap/locale/no.js | 1 - umap/static/umap/locale/no.json | 1 - umap/static/umap/locale/pl.js | 1 - umap/static/umap/locale/pl.json | 1 - umap/static/umap/locale/pl_PL.json | 1 - umap/static/umap/locale/pt.js | 1 - umap/static/umap/locale/pt.json | 1 - umap/static/umap/locale/pt_BR.js | 1 - umap/static/umap/locale/pt_BR.json | 1 - umap/static/umap/locale/pt_PT.js | 1 - umap/static/umap/locale/pt_PT.json | 1 - umap/static/umap/locale/ro.js | 1 - umap/static/umap/locale/ro.json | 1 - umap/static/umap/locale/ru.js | 1 - umap/static/umap/locale/ru.json | 1 - umap/static/umap/locale/si_LK.js | 1 - umap/static/umap/locale/si_LK.json | 1 - umap/static/umap/locale/sk_SK.js | 1 - umap/static/umap/locale/sk_SK.json | 1 - umap/static/umap/locale/sl.js | 1 - umap/static/umap/locale/sl.json | 1 - umap/static/umap/locale/sr.js | 1 - umap/static/umap/locale/sr.json | 1 - umap/static/umap/locale/sv.js | 1 - umap/static/umap/locale/sv.json | 1 - umap/static/umap/locale/th_TH.js | 1 - umap/static/umap/locale/th_TH.json | 1 - umap/static/umap/locale/tr.js | 1 - umap/static/umap/locale/tr.json | 1 - umap/static/umap/locale/uk_UA.js | 1 - umap/static/umap/locale/uk_UA.json | 1 - umap/static/umap/locale/vi.js | 1 - umap/static/umap/locale/vi.json | 1 - umap/static/umap/locale/vi_VN.json | 1 - umap/static/umap/locale/zh.js | 1 - umap/static/umap/locale/zh.json | 1 - umap/static/umap/locale/zh_CN.json | 1 - umap/static/umap/locale/zh_TW.Big5.json | 1 - umap/static/umap/locale/zh_TW.js | 1 - umap/static/umap/locale/zh_TW.json | 1 - 96 files changed, 1 insertion(+), 96 deletions(-) diff --git a/umap/static/umap/js/umap.controls.js b/umap/static/umap/js/umap.controls.js index 070a72cc..af4e096a 100644 --- a/umap/static/umap/js/umap.controls.js +++ b/umap/static/umap/js/umap.controls.js @@ -1290,7 +1290,7 @@ L.U.Editable = L.Editable.extend({ if (e.layer instanceof L.Polygon){ content = L._('Polygon area: {measure}', { measure: measure }); } else if (e.layer instanceof L.Polyline) { - content = L._('Line distance: {measure}', { measure: measure }); + content = L._('Line length: {measure}', { measure: measure }); } } if (content) { diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index c8cfcc43..2d20e50f 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index 91e54862..ced96ea6 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index feb3cb6b..b05a25c9 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 0b7b248b..01ce9704 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index dd56515c..b13952c9 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index b4ad82a5..69f37456 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index bc45672d..02b70f5f 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index 6dfa80ca..faeb3cab 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 44c8cc98..583c5f49 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 6dd867eb..35d8eae5 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index ae8b4cdb..f7147814 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 43c7e84c..86ad327b 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 7647d051..507d5c86 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index adcef6ca..ee785bc2 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index bac29ccc..3477ee86 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 11458cf3..31e8be8d 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index 87e7c045..a18b853b 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index 5961a22b..fa57dd68 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index 9a76d60b..38b9dd1b 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index 5eee9361..4b2f7e44 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index 45348ff3..af6d0397 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index 663c02a5..d7e97942 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 91797165..332d06cc 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 29073ec1..45cf818d 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index 66fc077d..717f101c 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index 4bfdecde..269f110c 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index 4843af5c..04fe4bad 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index fd33b418..de0dc1ed 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 18da8156..68f0e860 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 4697b6d8..4a5e6702 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index 8e868651..a5181638 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index 1533261a..0c630ccf 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index dd3bd4af..56a15238 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index df2da770..5afaddc0 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index c9f706cb..c481ccce 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index 7595c44a..a130bbd6 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 92a74418..356c0247 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index 1c1144bb..7e8b37a5 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index 94c69dba..eec46305 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index 69e0f8ff..ed7fa7ec 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index 48fcbbe9..fc339772 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index a0a28f1b..35170ec4 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape": "Click su ultimo punto per completare la geometria", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 84b831da..0452ecaa 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape": "Click su ultimo punto per completare la geometria", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index 94066211..0fb70bfa 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape": "クリックでシェイプの作成を終了", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index 6f43545b..fd0ea8be 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape": "クリックでシェイプの作成を終了", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index 77eb5044..38af2dce 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index c49f3158..04baa538 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index 64d9dd88..12dd0e1f 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index 72cf86f5..933ab341 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 6f1c89d1..82751646 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index 5036ef67..e160e1e8 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 7cfa45b2..6f8b8ae5 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index b0c36e95..1670bb1f 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index 67f197e2..cd218110 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 5f645af1..1997ca03 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index 6bf1ddf3..37297d4f 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index 46b0480c..a0ed4a14 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index 96c212be..c759dbdf 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index abcd1beb..c18fe698 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index 21750140..d9415239 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index d35d1403..7bf5c2ba 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index fa5f9538..b052f08c 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 68b96249..34a908a0 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index 41c3feec..eb7d7eaa 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index b4726bf3..d132de78 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index 3cf369a3..aa92cb7a 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index e43efff9..38fad9f2 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index 3737590f..3ac9ec72 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 1cf7b402..00aaa9aa 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index d854e665..16dd200e 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 85ae527e..8435a0be 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index 121e104c..9c6f6745 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index f7c83082..4caa6839 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index 841f48ee..46bc14df 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index 4a9d89ff..1a039c8b 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index 6f21aaf3..8e180c82 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index 888f956c..e50376a1 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index 6e918fae..d942e578 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index 573c0f98..e4ff442e 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index c857aad5..d0321c07 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index ffe496cc..93c66f35 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index eb30d8f2..415a6157 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index 0e4a24e0..3ec7d8a4 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 6002416b..0bb90b84 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index 9da6be86..621bb63a 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 3250ea7e..3637d1b2 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index 6e63290d..b89f56eb 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape": "點下最後一點後完成外形", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index 69000eee..af1fafdc 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape": "點下最後一點後完成外形", - "Line distance: {measure}": "Line distance: {measure}", "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", From 9d79f2ba831459e679fe218ba7c3a1cb5cc0c7f7 Mon Sep 17 00:00:00 2001 From: Philip Beelmann Date: Tue, 2 May 2023 10:34:14 +0000 Subject: [PATCH 20/20] remove translation template (will be done by transifex) --- umap/static/umap/locale/am_ET.js | 1 - umap/static/umap/locale/am_ET.json | 1 - umap/static/umap/locale/ar.js | 1 - umap/static/umap/locale/ar.json | 1 - umap/static/umap/locale/ast.js | 1 - umap/static/umap/locale/ast.json | 1 - umap/static/umap/locale/bg.js | 1 - umap/static/umap/locale/bg.json | 1 - umap/static/umap/locale/ca.js | 1 - umap/static/umap/locale/ca.json | 1 - umap/static/umap/locale/cs_CZ.js | 1 - umap/static/umap/locale/cs_CZ.json | 1 - umap/static/umap/locale/da.js | 1 - umap/static/umap/locale/da.json | 1 - umap/static/umap/locale/de.js | 1 - umap/static/umap/locale/de.json | 1 - umap/static/umap/locale/el.js | 1 - umap/static/umap/locale/el.json | 1 - umap/static/umap/locale/en.js | 1 - umap/static/umap/locale/en.json | 1 - umap/static/umap/locale/en_US.json | 1 - umap/static/umap/locale/es.js | 1 - umap/static/umap/locale/es.json | 1 - umap/static/umap/locale/et.js | 1 - umap/static/umap/locale/et.json | 1 - umap/static/umap/locale/fa_IR.js | 1 - umap/static/umap/locale/fa_IR.json | 1 - umap/static/umap/locale/fi.js | 1 - umap/static/umap/locale/fi.json | 1 - umap/static/umap/locale/fr.js | 1 - umap/static/umap/locale/fr.json | 1 - umap/static/umap/locale/gl.js | 1 - umap/static/umap/locale/gl.json | 1 - umap/static/umap/locale/he.js | 1 - umap/static/umap/locale/he.json | 1 - umap/static/umap/locale/hr.js | 1 - umap/static/umap/locale/hr.json | 1 - umap/static/umap/locale/hu.js | 1 - umap/static/umap/locale/hu.json | 1 - umap/static/umap/locale/id.js | 1 - umap/static/umap/locale/id.json | 1 - umap/static/umap/locale/is.js | 1 - umap/static/umap/locale/is.json | 1 - umap/static/umap/locale/it.js | 1 - umap/static/umap/locale/it.json | 1 - umap/static/umap/locale/ja.js | 1 - umap/static/umap/locale/ja.json | 1 - umap/static/umap/locale/ko.js | 1 - umap/static/umap/locale/ko.json | 1 - umap/static/umap/locale/lt.js | 1 - umap/static/umap/locale/lt.json | 1 - umap/static/umap/locale/ms.js | 1 - umap/static/umap/locale/ms.json | 1 - umap/static/umap/locale/nl.js | 1 - umap/static/umap/locale/nl.json | 1 - umap/static/umap/locale/no.js | 1 - umap/static/umap/locale/no.json | 1 - umap/static/umap/locale/pl.js | 1 - umap/static/umap/locale/pl.json | 1 - umap/static/umap/locale/pl_PL.json | 1 - umap/static/umap/locale/pt.js | 1 - umap/static/umap/locale/pt.json | 1 - umap/static/umap/locale/pt_BR.js | 1 - umap/static/umap/locale/pt_BR.json | 1 - umap/static/umap/locale/pt_PT.js | 1 - umap/static/umap/locale/pt_PT.json | 1 - umap/static/umap/locale/ro.js | 1 - umap/static/umap/locale/ro.json | 1 - umap/static/umap/locale/ru.js | 1 - umap/static/umap/locale/ru.json | 1 - umap/static/umap/locale/si_LK.js | 1 - umap/static/umap/locale/si_LK.json | 1 - umap/static/umap/locale/sk_SK.js | 1 - umap/static/umap/locale/sk_SK.json | 1 - umap/static/umap/locale/sl.js | 1 - umap/static/umap/locale/sl.json | 1 - umap/static/umap/locale/sr.js | 1 - umap/static/umap/locale/sr.json | 1 - umap/static/umap/locale/sv.js | 1 - umap/static/umap/locale/sv.json | 1 - umap/static/umap/locale/th_TH.js | 1 - umap/static/umap/locale/th_TH.json | 1 - umap/static/umap/locale/tr.js | 1 - umap/static/umap/locale/tr.json | 1 - umap/static/umap/locale/uk_UA.js | 1 - umap/static/umap/locale/uk_UA.json | 1 - umap/static/umap/locale/vi.js | 1 - umap/static/umap/locale/vi.json | 1 - umap/static/umap/locale/vi_VN.json | 1 - umap/static/umap/locale/zh.js | 1 - umap/static/umap/locale/zh.json | 1 - umap/static/umap/locale/zh_CN.json | 1 - umap/static/umap/locale/zh_TW.Big5.json | 1 - umap/static/umap/locale/zh_TW.js | 1 - umap/static/umap/locale/zh_TW.json | 1 - 95 files changed, 95 deletions(-) diff --git a/umap/static/umap/locale/am_ET.js b/umap/static/umap/locale/am_ET.js index 2d20e50f..6d056164 100644 --- a/umap/static/umap/locale/am_ET.js +++ b/umap/static/umap/locale/am_ET.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/am_ET.json b/umap/static/umap/locale/am_ET.json index ced96ea6..e9824927 100644 --- a/umap/static/umap/locale/am_ET.json +++ b/umap/static/umap/locale/am_ET.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "ሊያመጡ የፈለጉትን የመረጃ ፎርማት ይምረጡ", "Choose the layer to import in": "የሚያስገቡበት ሌየር ይምረጡ", "Click last point to finish shape": "ቅርፁን ለማስጨረስ የመጨረሻውን ነጥብ ጠቅ ያድርጉ", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "መለያ ለመጨመር ጠቅ አድርግ", "Click to continue drawing": "መሳል ለመቀጠል ጠቅ አድርግ", "Click to edit": "ለማረም ጠቅ አድርግ", diff --git a/umap/static/umap/locale/ar.js b/umap/static/umap/locale/ar.js index b05a25c9..9e850e8b 100644 --- a/umap/static/umap/locale/ar.js +++ b/umap/static/umap/locale/ar.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ar.json b/umap/static/umap/locale/ar.json index 01ce9704..2bb2c519 100644 --- a/umap/static/umap/locale/ar.json +++ b/umap/static/umap/locale/ar.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.js b/umap/static/umap/locale/ast.js index b13952c9..b0ee5030 100644 --- a/umap/static/umap/locale/ast.js +++ b/umap/static/umap/locale/ast.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ast.json b/umap/static/umap/locale/ast.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/ast.json +++ b/umap/static/umap/locale/ast.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.js b/umap/static/umap/locale/bg.js index 69f37456..09fe58c4 100644 --- a/umap/static/umap/locale/bg.js +++ b/umap/static/umap/locale/bg.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/bg.json b/umap/static/umap/locale/bg.json index 02b70f5f..87cc4500 100644 --- a/umap/static/umap/locale/bg.json +++ b/umap/static/umap/locale/bg.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Изберете формат на данните за внос", "Choose the layer to import in": "Избери слой за внасяне в", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.js b/umap/static/umap/locale/ca.js index faeb3cab..a82c8bdb 100644 --- a/umap/static/umap/locale/ca.js +++ b/umap/static/umap/locale/ca.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ca.json b/umap/static/umap/locale/ca.json index 583c5f49..1b3b00ed 100644 --- a/umap/static/umap/locale/ca.json +++ b/umap/static/umap/locale/ca.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Trieu el format de les dades a importar", "Choose the layer to import in": "Trieu la capa que on voleu importar", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Feu clic per a afegir una marca", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/cs_CZ.js b/umap/static/umap/locale/cs_CZ.js index 35d8eae5..2261adee 100644 --- a/umap/static/umap/locale/cs_CZ.js +++ b/umap/static/umap/locale/cs_CZ.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/cs_CZ.json b/umap/static/umap/locale/cs_CZ.json index f7147814..3fe77f9e 100644 --- a/umap/static/umap/locale/cs_CZ.json +++ b/umap/static/umap/locale/cs_CZ.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Zvolte v jakém formátu jsou importovaná data", "Choose the layer to import in": "Zvolte vrstvu, do které se bude importovat", "Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím přidáš značku", "Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení", "Click to edit": "Klikněte pro úpravy", diff --git a/umap/static/umap/locale/da.js b/umap/static/umap/locale/da.js index 86ad327b..7b6ffe6e 100644 --- a/umap/static/umap/locale/da.js +++ b/umap/static/umap/locale/da.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/da.json b/umap/static/umap/locale/da.json index 507d5c86..5def18a4 100644 --- a/umap/static/umap/locale/da.json +++ b/umap/static/umap/locale/da.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Vælg imports dataformat", "Choose the layer to import in": "Vælg lag der skal importeres", "Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik for at tilføje en markør", "Click to continue drawing": "Klik for at fortsætte indtegning", "Click to edit": "Klik for at redigere", diff --git a/umap/static/umap/locale/de.js b/umap/static/umap/locale/de.js index ee785bc2..e161e354 100644 --- a/umap/static/umap/locale/de.js +++ b/umap/static/umap/locale/de.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/de.json b/umap/static/umap/locale/de.json index 3477ee86..578261ca 100644 --- a/umap/static/umap/locale/de.json +++ b/umap/static/umap/locale/de.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Wähle das Datenformat für den Import", "Choose the layer to import in": "Wähle die Ebene, in die importiert werden soll", "Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicke, um einen Marker hinzuzufügen", "Click to continue drawing": "Klicke, um weiter zu zeichnen", "Click to edit": "Zum Bearbeiten klicken", diff --git a/umap/static/umap/locale/el.js b/umap/static/umap/locale/el.js index 31e8be8d..7901726d 100644 --- a/umap/static/umap/locale/el.js +++ b/umap/static/umap/locale/el.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/el.json b/umap/static/umap/locale/el.json index a18b853b..2e0fca8d 100644 --- a/umap/static/umap/locale/el.json +++ b/umap/static/umap/locale/el.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Επιλέξτε τη μορφοποίηση των δεδομένων που θα εισαχθούν", "Choose the layer to import in": "Επιλέξτε το επίπεδο στο οποίο θα η εισαγωγή", "Click last point to finish shape": "Πατήστε στο τελευταίο σημείο για να ολοκληρωθεί το σχήμα", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Πατήστε για την εισαγωγή σημείου", "Click to continue drawing": "Πατήστε για συνέχεια σχεδίασης", "Click to edit": "Πατήστε για επεξεργασία", diff --git a/umap/static/umap/locale/en.js b/umap/static/umap/locale/en.js index fa57dd68..df26261b 100644 --- a/umap/static/umap/locale/en.js +++ b/umap/static/umap/locale/en.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en.json b/umap/static/umap/locale/en.json index 38b9dd1b..5dc6ce82 100644 --- a/umap/static/umap/locale/en.json +++ b/umap/static/umap/locale/en.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/en_US.json b/umap/static/umap/locale/en_US.json index 4b2f7e44..d749d865 100644 --- a/umap/static/umap/locale/en_US.json +++ b/umap/static/umap/locale/en_US.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Data format:", "Choose the layer to import in": "Import into layer:", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/es.js b/umap/static/umap/locale/es.js index af6d0397..9b2cac56 100644 --- a/umap/static/umap/locale/es.js +++ b/umap/static/umap/locale/es.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/es.json b/umap/static/umap/locale/es.json index d7e97942..8112f10c 100644 --- a/umap/static/umap/locale/es.json +++ b/umap/static/umap/locale/es.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Elegir el formato de los datos a importar", "Choose the layer to import in": "Elegir la capa a la que se importa", "Click last point to finish shape": "Haga clic en el último punto para terminar la figura", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Haga clic para añadir un marcador", "Click to continue drawing": "Haga clic para continuar dibujando", "Click to edit": "Clic para editar", diff --git a/umap/static/umap/locale/et.js b/umap/static/umap/locale/et.js index 332d06cc..b8189f3a 100644 --- a/umap/static/umap/locale/et.js +++ b/umap/static/umap/locale/et.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/et.json b/umap/static/umap/locale/et.json index 45cf818d..12410d77 100644 --- a/umap/static/umap/locale/et.json +++ b/umap/static/umap/locale/et.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Vali importimise andmevorming", "Choose the layer to import in": "Vali kiht, millesse importida", "Click last point to finish shape": "Klõpsa kujundi lõpetamiseks viimasel punktil", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klõpsa markeri lisamiseks", "Click to continue drawing": "Klõpsa joonistamise jätkamiseks", "Click to edit": "Klõpsa muutmiseks", diff --git a/umap/static/umap/locale/fa_IR.js b/umap/static/umap/locale/fa_IR.js index 717f101c..7238440a 100644 --- a/umap/static/umap/locale/fa_IR.js +++ b/umap/static/umap/locale/fa_IR.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fa_IR.json b/umap/static/umap/locale/fa_IR.json index 269f110c..3c65cef8 100644 --- a/umap/static/umap/locale/fa_IR.json +++ b/umap/static/umap/locale/fa_IR.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید", "Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید", "Click last point to finish shape": "برای پایان دادن به شکل روی آخرین نقطه کلیک کنید", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "برای افزودن نشانگر کلیک کنید", "Click to continue drawing": "برای ادامه ترسیم کلیک کنید", "Click to edit": "برای ویرایش کلیک کنید", diff --git a/umap/static/umap/locale/fi.js b/umap/static/umap/locale/fi.js index 04fe4bad..1d29a8a7 100644 --- a/umap/static/umap/locale/fi.js +++ b/umap/static/umap/locale/fi.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fi.json b/umap/static/umap/locale/fi.json index de0dc1ed..f77d7e69 100644 --- a/umap/static/umap/locale/fi.json +++ b/umap/static/umap/locale/fi.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Valitse tuotavien tietojen formaatti", "Choose the layer to import in": "Valitse kerros johon tieto tuodaan", "Click last point to finish shape": "Klikkaa viimeistä pistettä täydentääksesi muodon", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikkaa lisätäksesi karttamerkki", "Click to continue drawing": "Klikkaa jatkaaksesi piirtämistä", "Click to edit": "Klikkaa muokataksesi", diff --git a/umap/static/umap/locale/fr.js b/umap/static/umap/locale/fr.js index 68f0e860..d86aabd2 100644 --- a/umap/static/umap/locale/fr.js +++ b/umap/static/umap/locale/fr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/fr.json b/umap/static/umap/locale/fr.json index 4a5e6702..c089c57c 100644 --- a/umap/static/umap/locale/fr.json +++ b/umap/static/umap/locale/fr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choisir le format des données pour l'import", "Choose the layer to import in": "Choisir le calque de données pour l'import", "Click last point to finish shape": "Cliquer sur le dernier point pour finir le tracé", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Cliquer pour ajouter le marqueur", "Click to continue drawing": "Cliquer pour continuer le tracé", "Click to edit": "Cliquer pour modifier", diff --git a/umap/static/umap/locale/gl.js b/umap/static/umap/locale/gl.js index a5181638..b3ce447d 100644 --- a/umap/static/umap/locale/gl.js +++ b/umap/static/umap/locale/gl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/gl.json b/umap/static/umap/locale/gl.json index 0c630ccf..73053718 100644 --- a/umap/static/umap/locale/gl.json +++ b/umap/static/umap/locale/gl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escoller o formato dos datos a importar", "Choose the layer to import in": "Escoller a capa á que se importa", "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Preme para engadir unha marcaxe", "Click to continue drawing": "Preme para seguir debuxando", "Click to edit": "Preme para editar", diff --git a/umap/static/umap/locale/he.js b/umap/static/umap/locale/he.js index 56a15238..36d68080 100644 --- a/umap/static/umap/locale/he.js +++ b/umap/static/umap/locale/he.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/he.json b/umap/static/umap/locale/he.json index 5afaddc0..6567facb 100644 --- a/umap/static/umap/locale/he.json +++ b/umap/static/umap/locale/he.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא", "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא", "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "יש ללחוץ כדי להוסיף סמן", "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור", "Click to edit": "יש ללחוץ כדי לערוך", diff --git a/umap/static/umap/locale/hr.js b/umap/static/umap/locale/hr.js index c481ccce..05d44571 100644 --- a/umap/static/umap/locale/hr.js +++ b/umap/static/umap/locale/hr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hr.json b/umap/static/umap/locale/hr.json index a130bbd6..ac78916e 100644 --- a/umap/static/umap/locale/hr.json +++ b/umap/static/umap/locale/hr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Odaberi sloj za uvoz", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/hu.js b/umap/static/umap/locale/hu.js index 356c0247..947f3322 100644 --- a/umap/static/umap/locale/hu.js +++ b/umap/static/umap/locale/hu.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/hu.json b/umap/static/umap/locale/hu.json index 7e8b37a5..488c7b99 100644 --- a/umap/static/umap/locale/hu.json +++ b/umap/static/umap/locale/hu.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Importálandó adatok formátumának kiválasztása", "Choose the layer to import in": "Importálandó réteg kiválasztása", "Click last point to finish shape": "Az alakzat befejezéséhez kattintson az utolsó pontra", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Jelölő hozzáadásához kattintson", "Click to continue drawing": "Kattintson a rajzolás folytatásához", "Click to edit": "Kattintson a szerkesztéshez", diff --git a/umap/static/umap/locale/id.js b/umap/static/umap/locale/id.js index eec46305..9e0af37c 100644 --- a/umap/static/umap/locale/id.js +++ b/umap/static/umap/locale/id.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/id.json b/umap/static/umap/locale/id.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/id.json +++ b/umap/static/umap/locale/id.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/is.js b/umap/static/umap/locale/is.js index ed7fa7ec..e9b6d16a 100644 --- a/umap/static/umap/locale/is.js +++ b/umap/static/umap/locale/is.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/is.json b/umap/static/umap/locale/is.json index fc339772..df0a4e23 100644 --- a/umap/static/umap/locale/is.json +++ b/umap/static/umap/locale/is.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Veldu snið á gögnum sem á að flytja inn", "Choose the layer to import in": "Veldu lagið sem á að flytja inn í", "Click last point to finish shape": "Smelltu á síðasta punktinn til að ljúka lögun", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Smella til að bæta við kortamerki", "Click to continue drawing": "Smelltu til að halda áfram að teikna", "Click to edit": "Smelltu til að breyta", diff --git a/umap/static/umap/locale/it.js b/umap/static/umap/locale/it.js index 35170ec4..9634b175 100644 --- a/umap/static/umap/locale/it.js +++ b/umap/static/umap/locale/it.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape": "Click su ultimo punto per completare la geometria", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/it.json b/umap/static/umap/locale/it.json index 0452ecaa..93f1e43a 100644 --- a/umap/static/umap/locale/it.json +++ b/umap/static/umap/locale/it.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Seleziona il formato dei dati da importare", "Choose the layer to import in": "Seleziona su quale livello fare l'importazione", "Click last point to finish shape": "Click su ultimo punto per completare la geometria", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clicca per aggiungere un marcatore", "Click to continue drawing": "Clic per continuare a disegnare", "Click to edit": "Clic per la modifica", diff --git a/umap/static/umap/locale/ja.js b/umap/static/umap/locale/ja.js index 0fb70bfa..ac8a6ae9 100644 --- a/umap/static/umap/locale/ja.js +++ b/umap/static/umap/locale/ja.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape": "クリックでシェイプの作成を終了", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ja.json b/umap/static/umap/locale/ja.json index fd0ea8be..fedb8793 100644 --- a/umap/static/umap/locale/ja.json +++ b/umap/static/umap/locale/ja.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "インポートデータ形式を選択", "Choose the layer to import in": "インポート対象レイヤ選択", "Click last point to finish shape": "クリックでシェイプの作成を終了", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "クリックでマーカー追加", "Click to continue drawing": "クリックで描画を継続", "Click to edit": "クリックで編集", diff --git a/umap/static/umap/locale/ko.js b/umap/static/umap/locale/ko.js index 38af2dce..176d1e7e 100644 --- a/umap/static/umap/locale/ko.js +++ b/umap/static/umap/locale/ko.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", diff --git a/umap/static/umap/locale/ko.json b/umap/static/umap/locale/ko.json index 04baa538..f9045c15 100644 --- a/umap/static/umap/locale/ko.json +++ b/umap/static/umap/locale/ko.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "삽입할 데이터의 포맷 선택", "Choose the layer to import in": "삽입할 레이어 선택", "Click last point to finish shape": "도형을 그만 그리려면 마지막 점을 클릭", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "마커를 추가하려면 클릭", "Click to continue drawing": "계속 그리려면 클릭", "Click to edit": "편집하려면 클릭", diff --git a/umap/static/umap/locale/lt.js b/umap/static/umap/locale/lt.js index 12dd0e1f..01d7e38f 100644 --- a/umap/static/umap/locale/lt.js +++ b/umap/static/umap/locale/lt.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/lt.json b/umap/static/umap/locale/lt.json index 933ab341..b668b5f5 100644 --- a/umap/static/umap/locale/lt.json +++ b/umap/static/umap/locale/lt.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Pasirinkite importuojamų uomenų formatą", "Choose the layer to import in": "Pasirinkite sluoksnį importavimui", "Click last point to finish shape": "Paspauskite ant paskutinio taško kad baigti piešimą", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Paspauskite kad pridėti žymeklį", "Click to continue drawing": "Paspauskite kad tęsti piešimą", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ms.js b/umap/static/umap/locale/ms.js index 82751646..d2a7864c 100644 --- a/umap/static/umap/locale/ms.js +++ b/umap/static/umap/locale/ms.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/ms.json b/umap/static/umap/locale/ms.json index e160e1e8..69316ee2 100644 --- a/umap/static/umap/locale/ms.json +++ b/umap/static/umap/locale/ms.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Pilih format data yang ingin diimport", "Choose the layer to import in": "Pilih lapisan untuk diimport", "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik untuk tambahkan penanda", "Click to continue drawing": "Klik untuk terus melukis", "Click to edit": "Klik untuk menyunting", diff --git a/umap/static/umap/locale/nl.js b/umap/static/umap/locale/nl.js index 6f8b8ae5..09da6300 100644 --- a/umap/static/umap/locale/nl.js +++ b/umap/static/umap/locale/nl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/nl.json b/umap/static/umap/locale/nl.json index 1670bb1f..7e785289 100644 --- a/umap/static/umap/locale/nl.json +++ b/umap/static/umap/locale/nl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Kies het formaat van de te importeren gegevens", "Choose the layer to import in": "Kies de laag om in te importeren", "Click last point to finish shape": "Klik op het laatste punt om de vorm af te maken", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klik om een punt toe te voegen", "Click to continue drawing": "Klik om te blijven tekenen", "Click to edit": "Klik om te bewerken", diff --git a/umap/static/umap/locale/no.js b/umap/static/umap/locale/no.js index cd218110..ac5acadc 100644 --- a/umap/static/umap/locale/no.js +++ b/umap/static/umap/locale/no.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/no.json b/umap/static/umap/locale/no.json index 1997ca03..57509834 100644 --- a/umap/static/umap/locale/no.json +++ b/umap/static/umap/locale/no.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klikk for å legge til en markør", "Click to continue drawing": "Klikk for å fortsette å tegne", "Click to edit": "Klikk for å redigere", diff --git a/umap/static/umap/locale/pl.js b/umap/static/umap/locale/pl.js index 37297d4f..4aee9c5e 100644 --- a/umap/static/umap/locale/pl.js +++ b/umap/static/umap/locale/pl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl.json b/umap/static/umap/locale/pl.json index a0ed4a14..39676835 100644 --- a/umap/static/umap/locale/pl.json +++ b/umap/static/umap/locale/pl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Wybierz format importowanych danych", "Choose the layer to import in": "Wybierz warstwę docelową", "Click last point to finish shape": "Kliknij ostatni punkt, aby zakończyć rysowanie", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknij, aby dodać znacznik", "Click to continue drawing": "Kliknij, aby kontynuować rysowanie", "Click to edit": "Kliknij, aby edytować", diff --git a/umap/static/umap/locale/pl_PL.json b/umap/static/umap/locale/pl_PL.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/pl_PL.json +++ b/umap/static/umap/locale/pl_PL.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/pt.js b/umap/static/umap/locale/pt.js index c759dbdf..63b202d0 100644 --- a/umap/static/umap/locale/pt.js +++ b/umap/static/umap/locale/pt.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt.json b/umap/static/umap/locale/pt.json index c18fe698..bb781522 100644 --- a/umap/static/umap/locale/pt.json +++ b/umap/static/umap/locale/pt.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.js b/umap/static/umap/locale/pt_BR.js index d9415239..8ae0b9f8 100644 --- a/umap/static/umap/locale/pt_BR.js +++ b/umap/static/umap/locale/pt_BR.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_BR.json b/umap/static/umap/locale/pt_BR.json index 7bf5c2ba..92883fa1 100644 --- a/umap/static/umap/locale/pt_BR.json +++ b/umap/static/umap/locale/pt_BR.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.js b/umap/static/umap/locale/pt_PT.js index b052f08c..f162dae3 100644 --- a/umap/static/umap/locale/pt_PT.js +++ b/umap/static/umap/locale/pt_PT.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/pt_PT.json b/umap/static/umap/locale/pt_PT.json index 34a908a0..777e2fc5 100644 --- a/umap/static/umap/locale/pt_PT.json +++ b/umap/static/umap/locale/pt_PT.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Escolha o formato dos dados para importação", "Choose the layer to import in": "Escolha a camada para destino da importação", "Click last point to finish shape": "Clique no último ponto para terminar a forma geométrica", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Clique para adicionar um marcador", "Click to continue drawing": "Clique para continuar a desenhar", "Click to edit": "Clique para editar", diff --git a/umap/static/umap/locale/ro.js b/umap/static/umap/locale/ro.js index eb7d7eaa..5d46780a 100644 --- a/umap/static/umap/locale/ro.js +++ b/umap/static/umap/locale/ro.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ro.json b/umap/static/umap/locale/ro.json index d132de78..45aec9cd 100644 --- a/umap/static/umap/locale/ro.json +++ b/umap/static/umap/locale/ro.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/ru.js b/umap/static/umap/locale/ru.js index aa92cb7a..5e6c4780 100644 --- a/umap/static/umap/locale/ru.js +++ b/umap/static/umap/locale/ru.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/ru.json b/umap/static/umap/locale/ru.json index 38fad9f2..42419d98 100644 --- a/umap/static/umap/locale/ru.json +++ b/umap/static/umap/locale/ru.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Выберите формат данных для импорта", "Choose the layer to import in": "Выбрать слой для импорта в него", "Click last point to finish shape": "Щёлкните на последней точке, чтобы завершить", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Щёлкните, чтобы добавить метку", "Click to continue drawing": "Щёлкайте, чтобы продолжить рисование", "Click to edit": "Щёлкните, чтобы изменить", diff --git a/umap/static/umap/locale/si_LK.js b/umap/static/umap/locale/si_LK.js index 3ac9ec72..f836cf05 100644 --- a/umap/static/umap/locale/si_LK.js +++ b/umap/static/umap/locale/si_LK.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/si_LK.json b/umap/static/umap/locale/si_LK.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/si_LK.json +++ b/umap/static/umap/locale/si_LK.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/sk_SK.js b/umap/static/umap/locale/sk_SK.js index 00aaa9aa..06dac3ef 100644 --- a/umap/static/umap/locale/sk_SK.js +++ b/umap/static/umap/locale/sk_SK.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sk_SK.json b/umap/static/umap/locale/sk_SK.json index 16dd200e..3fd4c543 100644 --- a/umap/static/umap/locale/sk_SK.json +++ b/umap/static/umap/locale/sk_SK.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Zvoľte v akom formáte sú importované údaje", "Choose the layer to import in": "Zvoľte vrstvu, do ktorej sa bude importovať", "Click last point to finish shape": "Kliknite na posledný bod pre dokončenie tvaru", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknutím pridáte značku", "Click to continue drawing": "Kliknutím môžete pokračovať v kreslení", "Click to edit": "Kliknutím upravte", diff --git a/umap/static/umap/locale/sl.js b/umap/static/umap/locale/sl.js index 8435a0be..fb50b3de 100644 --- a/umap/static/umap/locale/sl.js +++ b/umap/static/umap/locale/sl.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sl.json b/umap/static/umap/locale/sl.json index 9c6f6745..cc096b1a 100644 --- a/umap/static/umap/locale/sl.json +++ b/umap/static/umap/locale/sl.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Izbor oblike zapisa podatkov za uvoz", "Choose the layer to import in": "Izbor plasti za uvoz podatkov", "Click last point to finish shape": "Kliknite na zadnjo točko za dokončanje risanja oblike", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Kliknite za dodajanje označbe", "Click to continue drawing": "Kliknite za nadaljevanje risanja", "Click to edit": "Kliknite za urejanje", diff --git a/umap/static/umap/locale/sr.js b/umap/static/umap/locale/sr.js index 4caa6839..0ec4ca29 100644 --- a/umap/static/umap/locale/sr.js +++ b/umap/static/umap/locale/sr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sr.json b/umap/static/umap/locale/sr.json index 46bc14df..dc1a2e2a 100644 --- a/umap/static/umap/locale/sr.json +++ b/umap/static/umap/locale/sr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Изаберите формат података за увоз", "Choose the layer to import in": "Одабери лејер за увоз", "Click last point to finish shape": "Кликните на последњу тачку да бисте довршили облик", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клик за додавање ознаке", "Click to continue drawing": "Клик да наставите са цртањем", "Click to edit": "Клик за уређивање", diff --git a/umap/static/umap/locale/sv.js b/umap/static/umap/locale/sv.js index 1a039c8b..3d1b3ccd 100644 --- a/umap/static/umap/locale/sv.js +++ b/umap/static/umap/locale/sv.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/sv.json b/umap/static/umap/locale/sv.json index 8e180c82..31bd75e4 100644 --- a/umap/static/umap/locale/sv.json +++ b/umap/static/umap/locale/sv.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Välj dataformat för importen", "Choose the layer to import in": "Välj lager att importera till", "Click last point to finish shape": "Klicka på sista punkten för att slutföra formen", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Klicka för att lägga till en markör", "Click to continue drawing": "Klicka för att fortsätta rita", "Click to edit": "Klicka för att redigera", diff --git a/umap/static/umap/locale/th_TH.js b/umap/static/umap/locale/th_TH.js index e50376a1..c6e5a72a 100644 --- a/umap/static/umap/locale/th_TH.js +++ b/umap/static/umap/locale/th_TH.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/th_TH.json b/umap/static/umap/locale/th_TH.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/th_TH.json +++ b/umap/static/umap/locale/th_TH.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/tr.js b/umap/static/umap/locale/tr.js index d942e578..07ac3816 100644 --- a/umap/static/umap/locale/tr.js +++ b/umap/static/umap/locale/tr.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/tr.json b/umap/static/umap/locale/tr.json index e4ff442e..ebfd7eed 100644 --- a/umap/static/umap/locale/tr.json +++ b/umap/static/umap/locale/tr.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "İçe aktarılacak verilerin biçimini seç", "Choose the layer to import in": "İçe aktarılacak katmanı seç", "Click last point to finish shape": "Şekli bitirmek için son noktaya tıklayın", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Bir işaretleyici eklemek için tıklayın", "Click to continue drawing": "Çizime devam etmek için tıklayın", "Click to edit": "Düzenlemek için tıkla", diff --git a/umap/static/umap/locale/uk_UA.js b/umap/static/umap/locale/uk_UA.js index d0321c07..236bc1b2 100644 --- a/umap/static/umap/locale/uk_UA.js +++ b/umap/static/umap/locale/uk_UA.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/uk_UA.json b/umap/static/umap/locale/uk_UA.json index 93c66f35..7d75fe0d 100644 --- a/umap/static/umap/locale/uk_UA.json +++ b/umap/static/umap/locale/uk_UA.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Виберіть формат даних для імпорту", "Choose the layer to import in": "Виберіть шар для імпорту в нього", "Click last point to finish shape": "Клацніть на останній точці, щоб завершити", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Клацніть, щоб додати позначку", "Click to continue drawing": "Клацайте, щоб продовжити креслення", "Click to edit": "Натисніть для редагування", diff --git a/umap/static/umap/locale/vi.js b/umap/static/umap/locale/vi.js index 415a6157..a3e7eeec 100644 --- a/umap/static/umap/locale/vi.js +++ b/umap/static/umap/locale/vi.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi.json b/umap/static/umap/locale/vi.json index 3ec7d8a4..85d03250 100644 --- a/umap/static/umap/locale/vi.json +++ b/umap/static/umap/locale/vi.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Chọn định dạng tập tin", "Choose the layer to import in": "Chọn lớp cần nhập vào", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/vi_VN.json b/umap/static/umap/locale/vi_VN.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/vi_VN.json +++ b/umap/static/umap/locale/vi_VN.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.js b/umap/static/umap/locale/zh.js index 0bb90b84..06ac92ab 100644 --- a/umap/static/umap/locale/zh.js +++ b/umap/static/umap/locale/zh.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh.json b/umap/static/umap/locale/zh.json index 621bb63a..addcdada 100644 --- a/umap/static/umap/locale/zh.json +++ b/umap/static/umap/locale/zh.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "选择导入的数据格式", "Choose the layer to import in": "选择导入的图层", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_CN.json b/umap/static/umap/locale/zh_CN.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/zh_CN.json +++ b/umap/static/umap/locale/zh_CN.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.Big5.json b/umap/static/umap/locale/zh_TW.Big5.json index 3637d1b2..d0c032b0 100644 --- a/umap/static/umap/locale/zh_TW.Big5.json +++ b/umap/static/umap/locale/zh_TW.Big5.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "Choose the format of the data to import", "Choose the layer to import in": "Choose the layer to import in", "Click last point to finish shape": "Click last point to finish shape", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "Click to add a marker", "Click to continue drawing": "Click to continue drawing", "Click to edit": "Click to edit", diff --git a/umap/static/umap/locale/zh_TW.js b/umap/static/umap/locale/zh_TW.js index b89f56eb..62ac1eaf 100644 --- a/umap/static/umap/locale/zh_TW.js +++ b/umap/static/umap/locale/zh_TW.js @@ -116,7 +116,6 @@ var locale = { "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape": "點下最後一點後完成外形", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯", diff --git a/umap/static/umap/locale/zh_TW.json b/umap/static/umap/locale/zh_TW.json index af1fafdc..9ce03d2e 100644 --- a/umap/static/umap/locale/zh_TW.json +++ b/umap/static/umap/locale/zh_TW.json @@ -116,7 +116,6 @@ "Choose the format of the data to import": "選擇匯入的資料格式", "Choose the layer to import in": "選擇匯入圖層", "Click last point to finish shape": "點下最後一點後完成外形", - "Polygon area: {measure}": "Polygon area: {measure}", "Click to add a marker": "點選以新增標記", "Click to continue drawing": "點擊以繼續繪製", "Click to edit": "點擊開始編輯",