umap-project 2.4.2__py3-none-any.whl → 2.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- umap/__init__.py +1 -1
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +100 -50
- umap/static/umap/base.css +4 -1
- umap/static/umap/css/contextmenu.css +11 -0
- umap/static/umap/css/dialog.css +24 -3
- umap/static/umap/css/panel.css +4 -2
- umap/static/umap/css/slideshow.css +69 -0
- umap/static/umap/css/tableeditor.css +69 -0
- umap/static/umap/css/tooltip.css +3 -3
- umap/static/umap/img/16-white.svg +4 -0
- umap/static/umap/img/source/16-white.svg +5 -1
- umap/static/umap/js/components/alerts/alert.css +10 -10
- umap/static/umap/js/modules/autocomplete.js +23 -1
- umap/static/umap/js/modules/browser.js +14 -8
- umap/static/umap/js/modules/facets.js +40 -10
- umap/static/umap/js/modules/formatter.js +153 -0
- umap/static/umap/js/modules/global.js +10 -1
- umap/static/umap/js/modules/help.js +25 -25
- umap/static/umap/js/modules/importer.js +4 -4
- umap/static/umap/js/modules/importers/communesfr.js +3 -1
- umap/static/umap/js/modules/importers/datasets.js +8 -6
- umap/static/umap/js/modules/importers/geodatamine.js +10 -10
- umap/static/umap/js/modules/importers/overpass.js +18 -14
- umap/static/umap/js/modules/rules.js +13 -1
- umap/static/umap/js/modules/schema.js +16 -12
- umap/static/umap/js/{umap.share.js → modules/share.js} +60 -99
- umap/static/umap/js/modules/slideshow.js +141 -0
- umap/static/umap/js/modules/tableeditor.js +329 -0
- umap/static/umap/js/modules/ui/base.js +93 -0
- umap/static/umap/js/modules/ui/contextmenu.js +50 -0
- umap/static/umap/js/modules/ui/dialog.js +169 -31
- umap/static/umap/js/modules/ui/panel.js +6 -4
- umap/static/umap/js/modules/ui/tooltip.js +5 -75
- umap/static/umap/js/modules/utils.js +20 -0
- umap/static/umap/js/umap.controls.js +1 -1
- umap/static/umap/js/umap.features.js +22 -14
- umap/static/umap/js/umap.forms.js +157 -154
- umap/static/umap/js/umap.js +48 -34
- umap/static/umap/js/umap.layer.js +232 -164
- umap/static/umap/js/umap.permissions.js +1 -1
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/locale/am_ET.js +22 -5
- umap/static/umap/locale/am_ET.json +19 -5
- umap/static/umap/locale/ar.js +22 -5
- umap/static/umap/locale/ar.json +19 -5
- umap/static/umap/locale/ast.js +22 -5
- umap/static/umap/locale/ast.json +19 -5
- umap/static/umap/locale/bg.js +22 -5
- umap/static/umap/locale/bg.json +19 -5
- umap/static/umap/locale/br.js +22 -5
- umap/static/umap/locale/br.json +19 -5
- umap/static/umap/locale/ca.js +56 -39
- umap/static/umap/locale/ca.json +53 -39
- umap/static/umap/locale/cs_CZ.js +22 -5
- umap/static/umap/locale/cs_CZ.json +19 -5
- umap/static/umap/locale/da.js +22 -5
- umap/static/umap/locale/da.json +19 -5
- umap/static/umap/locale/de.js +22 -5
- umap/static/umap/locale/de.json +19 -5
- umap/static/umap/locale/el.js +27 -10
- umap/static/umap/locale/el.json +19 -5
- umap/static/umap/locale/en.js +22 -6
- umap/static/umap/locale/en.json +19 -5
- umap/static/umap/locale/en_US.json +19 -5
- umap/static/umap/locale/es.js +22 -6
- umap/static/umap/locale/es.json +19 -5
- umap/static/umap/locale/et.js +22 -5
- umap/static/umap/locale/et.json +19 -5
- umap/static/umap/locale/eu.js +167 -150
- umap/static/umap/locale/eu.json +167 -150
- umap/static/umap/locale/fa_IR.js +22 -5
- umap/static/umap/locale/fa_IR.json +19 -5
- umap/static/umap/locale/fi.js +22 -5
- umap/static/umap/locale/fi.json +19 -5
- umap/static/umap/locale/fr.js +22 -6
- umap/static/umap/locale/fr.json +19 -5
- umap/static/umap/locale/gl.js +22 -5
- umap/static/umap/locale/gl.json +19 -5
- umap/static/umap/locale/he.js +22 -5
- umap/static/umap/locale/he.json +19 -5
- umap/static/umap/locale/hr.js +22 -5
- umap/static/umap/locale/hr.json +19 -5
- umap/static/umap/locale/hu.js +89 -72
- umap/static/umap/locale/hu.json +89 -75
- umap/static/umap/locale/id.js +22 -5
- umap/static/umap/locale/id.json +19 -5
- umap/static/umap/locale/is.js +22 -5
- umap/static/umap/locale/is.json +19 -5
- umap/static/umap/locale/it.js +22 -5
- umap/static/umap/locale/it.json +19 -5
- umap/static/umap/locale/ja.js +22 -5
- umap/static/umap/locale/ja.json +19 -5
- umap/static/umap/locale/ko.js +22 -5
- umap/static/umap/locale/ko.json +19 -5
- umap/static/umap/locale/lt.js +22 -5
- umap/static/umap/locale/lt.json +19 -5
- umap/static/umap/locale/ms.js +22 -5
- umap/static/umap/locale/ms.json +19 -5
- umap/static/umap/locale/nl.js +22 -5
- umap/static/umap/locale/nl.json +19 -5
- umap/static/umap/locale/no.js +22 -5
- umap/static/umap/locale/no.json +19 -5
- umap/static/umap/locale/pl.js +22 -5
- umap/static/umap/locale/pl.json +19 -5
- umap/static/umap/locale/pl_PL.json +19 -5
- umap/static/umap/locale/pt.js +22 -6
- umap/static/umap/locale/pt.json +21 -7
- umap/static/umap/locale/pt_BR.js +22 -5
- umap/static/umap/locale/pt_BR.json +19 -5
- umap/static/umap/locale/pt_PT.js +22 -5
- umap/static/umap/locale/pt_PT.json +19 -5
- umap/static/umap/locale/ro.js +22 -5
- umap/static/umap/locale/ro.json +19 -5
- umap/static/umap/locale/ru.js +22 -5
- umap/static/umap/locale/ru.json +19 -5
- umap/static/umap/locale/sk_SK.js +22 -5
- umap/static/umap/locale/sk_SK.json +19 -5
- umap/static/umap/locale/sl.js +22 -5
- umap/static/umap/locale/sl.json +19 -5
- umap/static/umap/locale/sr.js +22 -5
- umap/static/umap/locale/sr.json +19 -5
- umap/static/umap/locale/sv.js +22 -5
- umap/static/umap/locale/sv.json +19 -5
- umap/static/umap/locale/th_TH.js +22 -5
- umap/static/umap/locale/th_TH.json +19 -5
- umap/static/umap/locale/tr.js +22 -5
- umap/static/umap/locale/tr.json +19 -5
- umap/static/umap/locale/uk_UA.js +22 -5
- umap/static/umap/locale/uk_UA.json +19 -5
- umap/static/umap/locale/vi.js +22 -5
- umap/static/umap/locale/vi.json +19 -5
- umap/static/umap/locale/vi_VN.json +19 -5
- umap/static/umap/locale/zh.js +22 -5
- umap/static/umap/locale/zh.json +19 -5
- umap/static/umap/locale/zh_CN.json +19 -5
- umap/static/umap/locale/zh_TW.Big5.json +19 -5
- umap/static/umap/locale/zh_TW.js +22 -5
- umap/static/umap/locale/zh_TW.json +19 -5
- umap/static/umap/map.css +2 -145
- umap/static/umap/vars.css +5 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +410 -428
- umap/static/umap/vendors/geojson-to-gpx/index.js +155 -0
- umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +1 -2
- umap/static/umap/vendors/togeojson/togeojson.es.js +1109 -0
- umap/static/umap/vendors/togeojson/{togeojson.umd.js.map → togeojson.es.mjs.map} +1 -1
- umap/static/umap/vendors/tokml/tokml.es.js +895 -0
- umap/static/umap/vendors/tokml/tokml.es.mjs.map +1 -0
- umap/storage.py +5 -1
- umap/templates/umap/components/alerts/alert.html +3 -3
- umap/templates/umap/css.html +3 -0
- umap/templates/umap/js.html +0 -6
- umap/tests/fixtures/categorized_highway.geojson +1 -0
- umap/tests/fixtures/test_import_osm_relation.json +130 -0
- umap/tests/integration/conftest.py +8 -1
- umap/tests/integration/test_browser.py +3 -2
- umap/tests/integration/test_categorized_layer.py +141 -0
- umap/tests/integration/test_conditional_rules.py +21 -0
- umap/tests/integration/test_datalayer.py +9 -4
- umap/tests/integration/test_edit_datalayer.py +1 -0
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_export_map.py +2 -3
- umap/tests/integration/test_import.py +22 -0
- umap/tests/integration/test_tableeditor.py +158 -4
- umap/tests/integration/test_websocket_sync.py +2 -2
- {umap_project-2.4.2.dist-info → umap_project-2.5.0.dist-info}/METADATA +8 -8
- {umap_project-2.4.2.dist-info → umap_project-2.5.0.dist-info}/RECORD +172 -162
- umap/static/umap/js/umap.slideshow.js +0 -163
- umap/static/umap/js/umap.tableeditor.js +0 -118
- umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -2
- umap/static/umap/vendors/togpx/togpx.js +0 -547
- umap/static/umap/vendors/tokml/tokml.js +0 -343
- {umap_project-2.4.2.dist-info → umap_project-2.5.0.dist-info}/WHEEL +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Zpoždění mezi dvěma předěly v přehrávacím módu",
|
|
105
105
|
"Delete layer": "Vymazat vrstvu",
|
|
106
106
|
"Delete this feature": "Vymazat objekt",
|
|
107
|
-
"Delete this property on all the features": "Smazat tuto vlastnost na všech objektech",
|
|
108
107
|
"Delete this shape": "Smazat tento tvar",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Smazat tento bod (Alt+Klik)",
|
|
110
109
|
"Delete": "Vymazat",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Neplatná zeměpisná šířka nebo délka",
|
|
202
201
|
"Invalid umap data in {filename}": "Neplatná data umapy v souboru {filename}",
|
|
203
202
|
"Invalid umap data": "Neplatná data umapy",
|
|
204
|
-
"Invalide property name: {name}": "Neplatný název vlastnosti: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Použít aktuální zobrazení vrstev",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Nedávné",
|
|
301
299
|
"Remote data": "Vzdálená data",
|
|
302
300
|
"Remove shape from the multi": "Odebrat tvar z multi",
|
|
303
|
-
"Rename this property on all the features": "Přejmenovat tuto vlastnost na všech objektech",
|
|
304
301
|
"Replace layer content": "Nahradit obsah vrstvy",
|
|
305
302
|
"Restore this version": "Obnovit tuto verzi",
|
|
306
303
|
"Save current edits": "Ulož nedávné změny",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/da.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Definer link der åbnes i et nyt vindue ved klik på polygon.",
|
|
103
103
|
"define": "definer",
|
|
104
104
|
"Delay between two transitions when in play mode": "Forsinkelse mellem to transitioner, når i afspilningstilstand",
|
|
105
|
-
"Delete all layers": "Slet alle lag",
|
|
106
105
|
"Delete layer": "Slet lag",
|
|
107
106
|
"Delete this feature": "Slet dette objekt",
|
|
108
|
-
"Delete this property on all the features": "Slet denne egenskab på alle objekter",
|
|
109
107
|
"Delete this shape": "Slet denne figur",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Slet denne vertex (Alt+Click)",
|
|
111
109
|
"Delete": "Slet",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Ugydige umapdata i {filename}",
|
|
204
202
|
"Invalid umap data": "Ugyldige umapdata",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Behold nuværende synlige lag",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Fjernudbudte data",
|
|
303
300
|
"Remove shape from the multi": "Fjern figur fra multi",
|
|
304
|
-
"Rename this property on all the features": "Omdøb denne egenskab på alle objekter",
|
|
305
301
|
"Replace layer content": "Erstat lags indhold",
|
|
306
302
|
"Restore this version": "Genskab denne version",
|
|
307
303
|
"Save current edits": "Gem nuværende redigeringer",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("da", locale)
|
|
487
504
|
L.setLocale("da")
|
umap/static/umap/locale/da.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Forsinkelse mellem to transitioner, når i afspilningstilstand",
|
|
105
105
|
"Delete layer": "Slet lag",
|
|
106
106
|
"Delete this feature": "Slet dette objekt",
|
|
107
|
-
"Delete this property on all the features": "Slet denne egenskab på alle objekter",
|
|
108
107
|
"Delete this shape": "Slet denne figur",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Slet denne vertex (Alt+Click)",
|
|
110
109
|
"Delete": "Slet",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
202
201
|
"Invalid umap data in {filename}": "Ugydige umapdata i {filename}",
|
|
203
202
|
"Invalid umap data": "Ugyldige umapdata",
|
|
204
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Behold nuværende synlige lag",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Fjernudbudte data",
|
|
302
300
|
"Remove shape from the multi": "Fjern figur fra multi",
|
|
303
|
-
"Rename this property on all the features": "Omdøb denne egenskab på alle objekter",
|
|
304
301
|
"Replace layer content": "Erstat lags indhold",
|
|
305
302
|
"Restore this version": "Genskab denne version",
|
|
306
303
|
"Save current edits": "Gem nuværende redigeringer",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/de.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Definiere einen externen Link, der sich beim Klick auf die Fläche in einem neuen Fenster öffnet.",
|
|
103
103
|
"define": "festlegen",
|
|
104
104
|
"Delay between two transitions when in play mode": "Verzögerung zwischen zwei Übergängen im Abspielmodus",
|
|
105
|
-
"Delete all layers": "Alle Ebenen löschen",
|
|
106
105
|
"Delete layer": "Ebene löschen",
|
|
107
106
|
"Delete this feature": "Dieses Element löschen",
|
|
108
|
-
"Delete this property on all the features": "Dieses Merkmal bei allen Elementen löschen",
|
|
109
107
|
"Delete this shape": "Diese Form löschen",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Diesen Eckpunkt löschen (Alt+Klick)",
|
|
111
109
|
"Delete": "Löschen",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Ungültiger Längen- oder Breitengrad",
|
|
203
201
|
"Invalid umap data in {filename}": "Ungültige uMap-Daten in {filename}",
|
|
204
202
|
"Invalid umap data": "Ungütige uMap-Daten",
|
|
205
|
-
"Invalide property name: {name}": "Ungültiger Eigenschaftsname: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Aktuell eingeblendete Ebenen übernehmen?",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Ausgelagerte Daten",
|
|
303
300
|
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
304
|
-
"Rename this property on all the features": "Dieses Merkmal bei allen Elementen umbenennen",
|
|
305
301
|
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
306
302
|
"Restore this version": "Diese Version wiederherstellen",
|
|
307
303
|
"Save current edits": "Aktuelle Änderungen speichern",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("de", locale)
|
|
487
504
|
L.setLocale("de")
|
umap/static/umap/locale/de.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Verzögerung zwischen zwei Übergängen im Abspielmodus",
|
|
105
105
|
"Delete layer": "Ebene löschen",
|
|
106
106
|
"Delete this feature": "Dieses Element löschen",
|
|
107
|
-
"Delete this property on all the features": "Dieses Merkmal bei allen Elementen löschen",
|
|
108
107
|
"Delete this shape": "Diese Form löschen",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Diesen Eckpunkt löschen (Alt+Klick)",
|
|
110
109
|
"Delete": "Löschen",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Ungültiger Längen- oder Breitengrad",
|
|
202
201
|
"Invalid umap data in {filename}": "Ungültige uMap-Daten in {filename}",
|
|
203
202
|
"Invalid umap data": "Ungütige uMap-Daten",
|
|
204
|
-
"Invalide property name: {name}": "Ungültiger Eigenschaftsname: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Aktuell eingeblendete Ebenen übernehmen?",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Ausgelagerte Daten",
|
|
302
300
|
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
303
|
-
"Rename this property on all the features": "Dieses Merkmal bei allen Elementen umbenennen",
|
|
304
301
|
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
305
302
|
"Restore this version": "Diese Version wiederherstellen",
|
|
306
303
|
"Save current edits": "Aktuelle Änderungen speichern",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/el.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
const locale = {
|
|
2
2
|
" (area: {measure})": "(περιοχή: {measure})",
|
|
3
3
|
" (length: {measure})": "(μήκος: {measure})",
|
|
4
|
-
"# one hash for main heading": "# για επικεφαλίδα πρώτου επιπέδου",
|
|
5
|
-
"## two hashes for second heading": "## για επικεφαλίδα δευτέρου επιπέδου",
|
|
6
|
-
"### three hashes for third heading": "### για επικεφαλίδα τρίτου επιπέδου",
|
|
4
|
+
"# one hash for main heading": "# ένα hash για επικεφαλίδα πρώτου επιπέδου",
|
|
5
|
+
"## two hashes for second heading": "## δύο hash για επικεφαλίδα δευτέρου επιπέδου",
|
|
6
|
+
"### three hashes for third heading": "### τρία hash για επικεφαλίδα τρίτου επιπέδου",
|
|
7
7
|
"**double star for bold**": "**διπλό αστερίσκο για έντονα**",
|
|
8
|
-
"*single star for italic*": "
|
|
8
|
+
"*single star for italic*": "*μονό αστερίσκο για πλάγια*",
|
|
9
9
|
"--- for a horizontal rule": "--- για οριζόντιο χάρακα",
|
|
10
10
|
"1 day": "1 μέρα",
|
|
11
11
|
"1 hour": "1 ώρα",
|
|
12
12
|
"5 min": "5 λεπτά",
|
|
13
13
|
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Μια λίστα αριθμών διαχωρισμένων με κόμμα που καθορίζει το μοτίβο της παύλας. Π.χ.: \"5, 10, 15\".",
|
|
14
14
|
"About": "Σχετικά",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "Μη επιτρεπόμενη ενέργεια :(",
|
|
16
16
|
"Activate slideshow mode": "Ενεργοποίηση λειτουργίας παρουσίασης",
|
|
17
17
|
"Add a layer": "Προσθήκη επιπέδου",
|
|
18
18
|
"Add a line to the current multi": "Προσθήκη γραμμής στο παρόν πολυδεδομένο",
|
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Προσδιορισμός συνδέσμου για άνοιγμα σε νέο παράθυρο με κλικ στο πολύγωνο",
|
|
103
103
|
"define": "Ορισμός",
|
|
104
104
|
"Delay between two transitions when in play mode": "Καθυστέρηση μεταξύ μεταβάσεων κατά την παρουσίαση",
|
|
105
|
-
"Delete all layers": "Διαγραφή όλων των επιπέδων",
|
|
106
105
|
"Delete layer": "Διαγραφή επιπέδου",
|
|
107
106
|
"Delete this feature": "Διαγραφή αυτού του στοιχείου",
|
|
108
|
-
"Delete this property on all the features": "Διαγραφή αυτής της ιδιότητας από όλα τα στοιχεία",
|
|
109
107
|
"Delete this shape": "Διαγραφή σχήματος",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Διαγραφή αυτής της κορυφής (Alt+Click)",
|
|
111
109
|
"Delete": "Διαγραφή",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Μη έγκυρο γεωγραφικό πλάτος ή μήκος",
|
|
203
201
|
"Invalid umap data in {filename}": "Μη έγκυρα δεδομένα στο αρχείο {filename}",
|
|
204
202
|
"Invalid umap data": "Μη έγκυρα δεδομένα umap",
|
|
205
|
-
"Invalide property name: {name}": "Μη έγκυρο όνομα ιδιότητας: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Διατήρηση τρεχουσών ορατών επιπέδων",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Απομακρυσμένα δεδομένα",
|
|
303
300
|
"Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
|
|
304
|
-
"Rename this property on all the features": "Μετονομασία αυτής της ιδιότητας σε όλα τα στοιχεία",
|
|
305
301
|
"Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
|
|
306
302
|
"Restore this version": "Επαναφορά αυτής της έκδοσης",
|
|
307
303
|
"Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("el", locale)
|
|
487
504
|
L.setLocale("el")
|
umap/static/umap/locale/el.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Καθυστέρηση μεταξύ μεταβάσεων κατά την παρουσίαση",
|
|
105
105
|
"Delete layer": "Διαγραφή επιπέδου",
|
|
106
106
|
"Delete this feature": "Διαγραφή αυτού του στοιχείου",
|
|
107
|
-
"Delete this property on all the features": "Διαγραφή αυτής της ιδιότητας από όλα τα στοιχεία",
|
|
108
107
|
"Delete this shape": "Διαγραφή σχήματος",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Διαγραφή αυτής της κορυφής (Alt+Click)",
|
|
110
109
|
"Delete": "Διαγραφή",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Μη έγκυρο γεωγραφικό πλάτος ή μήκος",
|
|
202
201
|
"Invalid umap data in {filename}": "Μη έγκυρα δεδομένα στο αρχείο {filename}",
|
|
203
202
|
"Invalid umap data": "Μη έγκυρα δεδομένα umap",
|
|
204
|
-
"Invalide property name: {name}": "Μη έγκυρο όνομα ιδιότητας: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Διατήρηση τρεχουσών ορατών επιπέδων",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Απομακρυσμένα δεδομένα",
|
|
302
300
|
"Remove shape from the multi": "Αφαίρεση σχήματος από πολυδεδομένο",
|
|
303
|
-
"Rename this property on all the features": "Μετονομασία αυτής της ιδιότητας σε όλα τα στοιχεία",
|
|
304
301
|
"Replace layer content": "Αντικατάσταση περιεχομένου του επιπέδου",
|
|
305
302
|
"Restore this version": "Επαναφορά αυτής της έκδοσης",
|
|
306
303
|
"Save current edits": "Αποθήκευση τρέχουσας επεξεργασίας",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/en.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
|
|
103
103
|
"define": "define",
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
|
-
"Delete all layers": "Delete all layers",
|
|
106
105
|
"Delete layer": "Delete layer",
|
|
107
106
|
"Delete this feature": "Delete this feature",
|
|
108
|
-
"Delete this property on all the features": "Delete this property on all the features",
|
|
109
107
|
"Delete this shape": "Delete this shape",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
111
109
|
"Delete": "Delete",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
204
202
|
"Invalid umap data": "Invalid umap data",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Keep current visible layers",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Remote data",
|
|
303
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
304
|
-
"Rename this property on all the features": "Rename this property on all the features",
|
|
305
301
|
"Replace layer content": "Replace layer content",
|
|
306
302
|
"Restore this version": "Restore this version",
|
|
307
303
|
"Save current edits": "Save current edits",
|
|
@@ -481,8 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
-
"
|
|
485
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
486
502
|
}
|
|
487
503
|
L.registerLocale("en", locale)
|
|
488
504
|
L.setLocale("en")
|
umap/static/umap/locale/en.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
105
|
"Delete layer": "Delete layer",
|
|
106
106
|
"Delete this feature": "Delete this feature",
|
|
107
|
-
"Delete this property on all the features": "Delete this property on all the features",
|
|
108
107
|
"Delete this shape": "Delete this shape",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
110
109
|
"Delete": "Delete",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
202
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
203
202
|
"Invalid umap data": "Invalid umap data",
|
|
204
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Keep current visible layers",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Remote data",
|
|
302
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
303
|
-
"Rename this property on all the features": "Rename this property on all the features",
|
|
304
301
|
"Replace layer content": "Replace layer content",
|
|
305
302
|
"Restore this version": "Restore this version",
|
|
306
303
|
"Save current edits": "Save current edits",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
105
|
"Delete layer": "Delete layer",
|
|
106
106
|
"Delete this feature": "Delete this feature",
|
|
107
|
-
"Delete this property on all the features": "Delete this property on all features",
|
|
108
107
|
"Delete this shape": "Delete this shape",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
110
109
|
"Delete": "Delete",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
202
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
203
202
|
"Invalid umap data": "Invalid umap data",
|
|
204
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Keep current visible layers",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Remote data",
|
|
302
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
303
|
-
"Rename this property on all the features": "Rename this property on all features",
|
|
304
301
|
"Replace layer content": "Replace layer content",
|
|
305
302
|
"Restore this version": "Restore this version",
|
|
306
303
|
"Save current edits": "Save current edits",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/es.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Defina un enlace para abrir en un nueva ventana al hacer clic en el polígono.",
|
|
103
103
|
"define": "definir",
|
|
104
104
|
"Delay between two transitions when in play mode": "Retraso entre dos transiciones cuando se está en el modo de reproducción",
|
|
105
|
-
"Delete all layers": "Borrar todas las capas",
|
|
106
105
|
"Delete layer": "Borrar capa",
|
|
107
106
|
"Delete this feature": "Borrar este elemento",
|
|
108
|
-
"Delete this property on all the features": "Borrar esta propiedad en todos los elementos",
|
|
109
107
|
"Delete this shape": "Borrar esta figura",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Borrar este vértice (Alt+Clic)",
|
|
111
109
|
"Delete": "Borrar",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Datos umap inválido en {filename}",
|
|
204
202
|
"Invalid umap data": "Datos umap inválido",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-medias",
|
|
208
205
|
"Keep current visible layers": "Guardar capas visibles actuales",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Datos remotos",
|
|
303
300
|
"Remove shape from the multi": "Quitar la figura del multi elemento",
|
|
304
|
-
"Rename this property on all the features": "Renombrar esta propiedad en todos los elementos",
|
|
305
301
|
"Replace layer content": "Reemplaza el contenido de la capa",
|
|
306
302
|
"Restore this version": "Restaurar esta versión",
|
|
307
303
|
"Save current edits": "Guardar las ediciones actuales",
|
|
@@ -481,8 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
-
"
|
|
485
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
486
502
|
}
|
|
487
503
|
L.registerLocale("es", locale)
|
|
488
504
|
L.setLocale("es")
|