umap-project 3.3.2__py3-none-any.whl → 3.4.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/context_processors.py +4 -1
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +64 -53
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +47 -41
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +114 -103
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/migrations/0018_datalayer_uuid.py +1 -1
- umap/models.py +7 -3
- umap/settings/local.py.sample +1 -1
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +123 -33
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/components/base.js +1 -1
- umap/static/umap/js/modules/browser.js +69 -61
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +89 -63
- umap/static/umap/js/modules/data/fields.js +446 -0
- umap/static/umap/js/modules/data/layer.js +116 -196
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +780 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +111 -221
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +4 -3
- umap/static/umap/js/modules/i18n.js +1 -1
- umap/static/umap/js/modules/importer.js +1 -1
- umap/static/umap/js/modules/importers/opendata.js +15 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +2 -1
- umap/static/umap/js/modules/permissions.js +39 -31
- umap/static/umap/js/modules/rendering/controls.js +11 -9
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/base.js +3 -3
- umap/static/umap/js/modules/rendering/layers/classified.js +18 -11
- umap/static/umap/js/modules/rendering/layers/cluster.js +23 -11
- umap/static/umap/js/modules/rendering/layers/heat.js +27 -21
- umap/static/umap/js/modules/rendering/map.js +1 -0
- umap/static/umap/js/modules/rendering/template.js +50 -23
- umap/static/umap/js/modules/rendering/ui.js +33 -25
- umap/static/umap/js/modules/rules.js +38 -44
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +5 -4
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +55 -23
- umap/static/umap/js/modules/ui/dialog.js +38 -27
- umap/static/umap/js/modules/ui/panel.js +23 -8
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +158 -51
- umap/static/umap/js/modules/utils.js +24 -2
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +52 -17
- umap/static/umap/locale/am_ET.json +52 -17
- umap/static/umap/locale/ar.js +52 -17
- umap/static/umap/locale/ar.json +52 -17
- umap/static/umap/locale/ast.js +52 -17
- umap/static/umap/locale/ast.json +52 -17
- umap/static/umap/locale/bg.js +52 -17
- umap/static/umap/locale/bg.json +52 -17
- umap/static/umap/locale/br.js +48 -22
- umap/static/umap/locale/br.json +48 -22
- umap/static/umap/locale/ca.js +52 -17
- umap/static/umap/locale/ca.json +52 -17
- umap/static/umap/locale/cs_CZ.js +52 -17
- umap/static/umap/locale/cs_CZ.json +52 -17
- umap/static/umap/locale/da.js +54 -17
- umap/static/umap/locale/da.json +54 -17
- umap/static/umap/locale/de.js +102 -67
- umap/static/umap/locale/de.json +102 -67
- umap/static/umap/locale/el.js +52 -17
- umap/static/umap/locale/el.json +52 -17
- umap/static/umap/locale/en.js +54 -16
- umap/static/umap/locale/en.json +54 -16
- umap/static/umap/locale/en_US.json +52 -17
- umap/static/umap/locale/es.js +54 -17
- umap/static/umap/locale/es.json +54 -17
- umap/static/umap/locale/et.js +91 -56
- umap/static/umap/locale/et.json +91 -56
- umap/static/umap/locale/eu.js +84 -49
- umap/static/umap/locale/eu.json +84 -49
- umap/static/umap/locale/fa_IR.js +52 -17
- umap/static/umap/locale/fa_IR.json +52 -17
- umap/static/umap/locale/fi.js +52 -17
- umap/static/umap/locale/fi.json +52 -17
- umap/static/umap/locale/fr.js +54 -17
- umap/static/umap/locale/fr.json +54 -17
- umap/static/umap/locale/gl.js +52 -17
- umap/static/umap/locale/gl.json +52 -17
- umap/static/umap/locale/he.js +52 -17
- umap/static/umap/locale/he.json +52 -17
- umap/static/umap/locale/hr.js +52 -17
- umap/static/umap/locale/hr.json +52 -17
- umap/static/umap/locale/hu.js +59 -24
- umap/static/umap/locale/hu.json +59 -24
- umap/static/umap/locale/id.js +52 -17
- umap/static/umap/locale/id.json +52 -17
- umap/static/umap/locale/is.js +52 -17
- umap/static/umap/locale/is.json +52 -17
- umap/static/umap/locale/it.js +52 -17
- umap/static/umap/locale/it.json +52 -17
- umap/static/umap/locale/ja.js +52 -17
- umap/static/umap/locale/ja.json +52 -17
- umap/static/umap/locale/ko.js +52 -17
- umap/static/umap/locale/ko.json +52 -17
- umap/static/umap/locale/lt.js +52 -17
- umap/static/umap/locale/lt.json +52 -17
- umap/static/umap/locale/ms.js +52 -17
- umap/static/umap/locale/ms.json +52 -17
- umap/static/umap/locale/nl.js +52 -17
- umap/static/umap/locale/nl.json +52 -17
- umap/static/umap/locale/no.js +52 -17
- umap/static/umap/locale/no.json +52 -17
- umap/static/umap/locale/pl.js +53 -17
- umap/static/umap/locale/pl.json +53 -17
- umap/static/umap/locale/pl_PL.json +52 -17
- umap/static/umap/locale/pt.js +52 -17
- umap/static/umap/locale/pt.json +52 -17
- umap/static/umap/locale/pt_BR.js +52 -17
- umap/static/umap/locale/pt_BR.json +52 -17
- umap/static/umap/locale/pt_PT.js +52 -17
- umap/static/umap/locale/pt_PT.json +52 -17
- umap/static/umap/locale/ro.js +52 -17
- umap/static/umap/locale/ro.json +52 -17
- umap/static/umap/locale/ru.js +52 -17
- umap/static/umap/locale/ru.json +52 -17
- umap/static/umap/locale/si.js +1 -1
- umap/static/umap/locale/si.json +1 -1
- umap/static/umap/locale/sk_SK.js +52 -17
- umap/static/umap/locale/sk_SK.json +52 -17
- umap/static/umap/locale/sl.js +52 -17
- umap/static/umap/locale/sl.json +52 -17
- umap/static/umap/locale/sr.js +52 -17
- umap/static/umap/locale/sr.json +52 -17
- umap/static/umap/locale/sv.js +52 -17
- umap/static/umap/locale/sv.json +52 -17
- umap/static/umap/locale/th_TH.js +52 -17
- umap/static/umap/locale/th_TH.json +52 -17
- umap/static/umap/locale/tr.js +52 -17
- umap/static/umap/locale/tr.json +52 -17
- umap/static/umap/locale/uk_UA.js +52 -17
- umap/static/umap/locale/uk_UA.json +52 -17
- umap/static/umap/locale/vi.js +52 -17
- umap/static/umap/locale/vi.json +52 -17
- umap/static/umap/locale/vi_VN.json +52 -17
- umap/static/umap/locale/zh.js +52 -17
- umap/static/umap/locale/zh.json +52 -17
- umap/static/umap/locale/zh_CN.json +52 -17
- umap/static/umap/locale/zh_TW.Big5.json +52 -17
- umap/static/umap/locale/zh_TW.js +53 -17
- umap/static/umap/locale/zh_TW.json +53 -17
- umap/static/umap/map.css +63 -226
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +10 -6
- umap/tests/integration/test_anonymous_owned_map.py +90 -37
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_cluster.py +110 -0
- umap/tests/integration/test_conditional_rules.py +107 -52
- umap/tests/integration/test_datalayer.py +9 -16
- umap/tests/integration/test_draw_polygon.py +6 -0
- umap/tests/integration/test_draw_polyline.py +11 -0
- umap/tests/integration/test_edit_marker.py +12 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +541 -0
- umap/tests/integration/test_filters.py +616 -0
- umap/tests/integration/test_iframe.py +1 -1
- umap/tests/integration/test_import.py +38 -42
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_picto.py +1 -1
- umap/tests/integration/test_popup.py +31 -0
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_save.py +1 -1
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +71 -20
- umap/tests/test_dashboard.py +11 -1
- umap/tests/test_statics.py +2 -2
- umap/tests/test_utils.py +19 -2
- umap/tests/test_views.py +1 -1
- umap/urls.py +1 -0
- umap/utils.py +8 -1
- umap/views.py +5 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/METADATA +15 -15
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/RECORD +240 -236
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.2.dist-info → umap_project-3.4.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/ca.json
CHANGED
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"color": "color",
|
|
71
71
|
"Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
|
|
72
72
|
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Llista separada per comes de les propietats a usar per a les característiques d'ordenació. Per a invertir l'ordre, afegiu un signe menys (-) abans. P. ex. lamevaclau, -unaslatraclau",
|
|
73
|
-
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the
|
|
73
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.": "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.",
|
|
74
74
|
"Congratulations, your map has been created!": "Enhorabona, s'ha creat el mapa!",
|
|
75
75
|
"Continue line": "Continue line",
|
|
76
76
|
"Coordinates": "Coordenades",
|
|
@@ -159,7 +159,6 @@
|
|
|
159
159
|
"Go to \"{coords}\"": "Go to \"{coords}\"",
|
|
160
160
|
"Go to the homepage": "Vés a la pàgina d'inici",
|
|
161
161
|
"Go to «{feature}»": "Vés a «{feature}»",
|
|
162
|
-
"Heatmap intensity property": "Heatmap intensity property",
|
|
163
162
|
"Heatmap radius": "Heatmap radius",
|
|
164
163
|
"Heatmap": "Heatmap",
|
|
165
164
|
"height": "alçada",
|
|
@@ -255,7 +254,6 @@
|
|
|
255
254
|
"Open share & download panel": "Obrir el panell Comparteix i baixa",
|
|
256
255
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
|
|
257
256
|
"OpenStreetMap": "OpenStreetMap",
|
|
258
|
-
"Optional intensity property for heatmap": "Optional intensity property for heatmap",
|
|
259
257
|
"Optional. Same as color if not set.": "Opcional. El mateix color si no s'estableix.",
|
|
260
258
|
"Optional.": "Opcional.",
|
|
261
259
|
"Override clustering radius (default 80)": "Override clustering radius (default 80)",
|
|
@@ -267,7 +265,6 @@
|
|
|
267
265
|
"Permanent credits": "Crèdits permanents",
|
|
268
266
|
"Please be sure the licence is compliant with your use.": "Assegureu-vos que la llicència és compatible amb l'ús que en feu.",
|
|
269
267
|
"Please choose a format": "Please choose a format",
|
|
270
|
-
"Please enter the name of the property": "Introduïu el nom de la propietat",
|
|
271
268
|
"Please save the map first": "Abans deseu el mapa",
|
|
272
269
|
"Popup (large)": "Finestra emergent (gran)",
|
|
273
270
|
"Popup content style": "Estil del contingut de la finestra emergent",
|
|
@@ -397,20 +394,16 @@
|
|
|
397
394
|
"Max": "Max",
|
|
398
395
|
"From": "From",
|
|
399
396
|
"Until": "Until",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
401
397
|
"Edit in OpenStreetMap": "Edita a OpenStreetMap",
|
|
402
398
|
"Back to layers": "Back to layers",
|
|
403
399
|
"Filters": "Filtres",
|
|
404
400
|
"Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
|
|
406
401
|
"Search keys": "Claus de cerca",
|
|
407
|
-
"Filters keys": "Claus de filtres",
|
|
408
402
|
"Filter data": "Filter data",
|
|
409
403
|
"Search map features…": "Buscar elements del mapa…",
|
|
410
404
|
"Reset all": "Restablir tot",
|
|
411
405
|
"Open browser": "Obriu el navegador",
|
|
412
406
|
"Open caption": "Obriu la llegenda",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
414
407
|
"Real-time collaboration": "Real-time collaboration",
|
|
415
408
|
"Cannot parse data": "Cannot parse data",
|
|
416
409
|
"Start typing...": "Start typing...",
|
|
@@ -466,10 +459,6 @@
|
|
|
466
459
|
"Categories": "Categories",
|
|
467
460
|
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
468
461
|
"Categories mode": "Categories mode",
|
|
469
|
-
"Remove filter for this column": "Remove filter for this column",
|
|
470
|
-
"Add filter for this column": "Add filter for this column",
|
|
471
|
-
"Rename this column": "Rename this column",
|
|
472
|
-
"Delete this column": "Delete this column",
|
|
473
462
|
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
474
463
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
475
464
|
"Delete selected rows": "Delete selected rows",
|
|
@@ -571,11 +560,8 @@
|
|
|
571
560
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
561
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
562
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
563
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
564
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
565
|
"Delete this field": "Delete this field",
|
|
580
566
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
567
|
"Print map": "Print map",
|
|
@@ -595,7 +581,6 @@
|
|
|
595
581
|
"Transform to regular line": "Transform to regular line",
|
|
596
582
|
"Transform to route": "Transform to route",
|
|
597
583
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
584
|
"Profile": "Profile",
|
|
600
585
|
"Compute elevations": "Compute elevations",
|
|
601
586
|
"Route preference": "Route preference",
|
|
@@ -615,5 +600,55 @@
|
|
|
615
600
|
"Loss:": "Loss:",
|
|
616
601
|
"Altitude:": "Altitude:",
|
|
617
602
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
603
|
+
"Draw along routes": "Draw along routes",
|
|
604
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
605
|
+
"Add filter": "Add filter",
|
|
606
|
+
"Min/Max": "Min/Max",
|
|
607
|
+
"Multiple choices": "Multiple choices",
|
|
608
|
+
"Exclusive choice": "Exclusive choice",
|
|
609
|
+
"Yes/No": "Yes/No",
|
|
610
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
611
|
+
"Edit this filter": "Edit this filter",
|
|
612
|
+
"Remove this filter": "Remove this filter",
|
|
613
|
+
"Apply filter to": "Apply filter to",
|
|
614
|
+
"Filter on": "Filter on",
|
|
615
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
616
|
+
"Widget for the filter": "Widget for the filter",
|
|
617
|
+
"Edit filter": "Edit filter",
|
|
618
|
+
"Edit this field": "Edit this field",
|
|
619
|
+
"all layers": "all layers",
|
|
620
|
+
"single layer": "single layer",
|
|
621
|
+
"unset": "unset",
|
|
622
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
623
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
624
|
+
"Field Name": "Field Name",
|
|
625
|
+
"Field Type": "Field Type",
|
|
626
|
+
"Manage field": "Manage field",
|
|
627
|
+
"Add filter for this field": "Add filter for this field",
|
|
628
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
629
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
630
|
+
"Anonymous map": "Anonymous map",
|
|
631
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
632
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
633
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
634
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
635
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
636
|
+
"Mapillary": "Mapillary",
|
|
637
|
+
"Wikidata": "Wikidata",
|
|
638
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
639
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
640
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
641
|
+
"Login": "Login",
|
|
642
|
+
"Manage filters": "Manage filters",
|
|
643
|
+
"Map (all layers)": "Map (all layers)",
|
|
644
|
+
"Add a filter for this field": "Add a filter for this field",
|
|
645
|
+
"Short text": "Short text",
|
|
646
|
+
"Text": "Text",
|
|
647
|
+
"Number": "Number",
|
|
648
|
+
"Date": "Date",
|
|
649
|
+
"Date and time": "Date and time",
|
|
650
|
+
"List of values": "List of values",
|
|
651
|
+
"Yes / No": "Yes / No",
|
|
652
|
+
"Select field to compute intensity": "Select field to compute intensity",
|
|
653
|
+
"Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
|
|
619
654
|
}
|
umap/static/umap/locale/cs_CZ.js
CHANGED
|
@@ -70,7 +70,7 @@ const locale = {
|
|
|
70
70
|
"color": "barva",
|
|
71
71
|
"Comma separated list of numbers, including min and max values.": "Seznam čísel oddělených čárkou, včetně minimálních a maximálních hodnot.",
|
|
72
72
|
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Čárkami oddělený seznam vlastností, které se mají použít pro třídění prvků. Chcete-li řazení obrátit, vložte před něj znaménko mínus (-). Např. mykey,-otherkey.",
|
|
73
|
-
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the
|
|
73
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.": "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.",
|
|
74
74
|
"Congratulations, your map has been created!": "Gratulujeme, vaše mapa byla vytvořena!",
|
|
75
75
|
"Continue line": "Pokračovat v čáře",
|
|
76
76
|
"Coordinates": "Souřadnice",
|
|
@@ -159,7 +159,6 @@ const locale = {
|
|
|
159
159
|
"Go to \"{coords}\"": "Přejít na „{coords}“",
|
|
160
160
|
"Go to the homepage": "Přejít na domovskou stránku",
|
|
161
161
|
"Go to «{feature}»": "Jdi na \"{feature}\"",
|
|
162
|
-
"Heatmap intensity property": "Vlastnost pro intenzitu teplotní mapy",
|
|
163
162
|
"Heatmap radius": "Poloměr teplotní mapy",
|
|
164
163
|
"Heatmap": "Teplotní mapa",
|
|
165
164
|
"height": "výška",
|
|
@@ -255,7 +254,6 @@ const locale = {
|
|
|
255
254
|
"Open share & download panel": "Otevřít panel na sdílení a stahování",
|
|
256
255
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Otevři tuto oblast v editoru OpenStreetMap. Toto vám umožní editovat přímo základní mapová data a přispět tak v tvorbě svobodné mapy pro všechny.",
|
|
257
256
|
"OpenStreetMap": "OpenStreetMap",
|
|
258
|
-
"Optional intensity property for heatmap": "Volitelná vlastnost pro výpočet intenzity v teplotní mapě",
|
|
259
257
|
"Optional. Same as color if not set.": "Nepovinné. Stejné jako barva, pokud není nastaveno.",
|
|
260
258
|
"Optional.": "Volitelné.",
|
|
261
259
|
"Override clustering radius (default 80)": "Přepsat shlukovací poloměr (výchozí hodnota 80)",
|
|
@@ -267,7 +265,6 @@ const locale = {
|
|
|
267
265
|
"Permanent credits": "Permanent credits",
|
|
268
266
|
"Please be sure the licence is compliant with your use.": "Prosíme ujistěte se, že licence je ve shodě s tím jak mapu používáte.",
|
|
269
267
|
"Please choose a format": "Zvolte formát",
|
|
270
|
-
"Please enter the name of the property": "Zadejte prosím název vlastnosti",
|
|
271
268
|
"Please save the map first": "Prosím, nejprve uložte mapu",
|
|
272
269
|
"Popup (large)": "Popup (velký)",
|
|
273
270
|
"Popup content style": "Styl obsahu popupu",
|
|
@@ -397,20 +394,16 @@ const locale = {
|
|
|
397
394
|
"Max": "Max",
|
|
398
395
|
"From": "Z",
|
|
399
396
|
"Until": "Dokud",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Příklad: klíč1,klíč2|Popisek 2, klíč3|Popisek 3|checkbox",
|
|
401
397
|
"Edit in OpenStreetMap": "Upravit v OpenStreetMap",
|
|
402
398
|
"Back to layers": "Zpět na vrstvy",
|
|
403
399
|
"Filters": "Filtry",
|
|
404
400
|
"Comma separated list of properties to use when filtering features by text input": "Čárkami oddělený seznam vlastností pro filtrování objektů podle zadávání textu",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Čárkami oddělený seznam vlastností, které se mají použít pro filtry (např.: můjklíč,jinýklíč). Chcete-li ovládat štítek, přidejte jej za | (např.: můjklíč|Můj klíč,jinýklíč|Jiný klíč). Chcete-li ovládat typ vstupního pole, přidejte jej za další | (např.: můjklíč|Můj klíč|checkbox,jinýklíč|Jiný klíč|datetime). Povolené hodnoty pro typ vstupního pole jsou checkbox (výchozí), radio, number, date a datetime.",
|
|
406
401
|
"Search keys": "Hledat klíče",
|
|
407
|
-
"Filters keys": "Filtry klíčů",
|
|
408
402
|
"Filter data": "Filtrovat data",
|
|
409
403
|
"Search map features…": "Hledat objekty mapy…",
|
|
410
404
|
"Reset all": "Obnovit vše",
|
|
411
405
|
"Open browser": "Otevřete prohlížeč",
|
|
412
406
|
"Open caption": "Otevřete popisky",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Vaše mapa byla vytvořena s anonymním účtem!",
|
|
414
407
|
"Real-time collaboration": "Spolupráce v reálném čase",
|
|
415
408
|
"Cannot parse data": "Nelze zpracovat data",
|
|
416
409
|
"Start typing...": "Začněte psát...",
|
|
@@ -466,10 +459,6 @@ const locale = {
|
|
|
466
459
|
"Categories": "Kategorie",
|
|
467
460
|
"Comma separated list of categories.": "Seznam kategorií oddělených čárkou.",
|
|
468
461
|
"Categories mode": "Režim kategorií",
|
|
469
|
-
"Remove filter for this column": "Odebrat filtr pro tento sloupec",
|
|
470
|
-
"Add filter for this column": "Přidat filtr pro tento sloupec",
|
|
471
|
-
"Rename this column": "Přejmenovat tento sloupec",
|
|
472
|
-
"Delete this column": "Smazat tento sloupec",
|
|
473
462
|
"Name “{name}” should not contain a dot.": "Název \"{name}\" by neměl obsahovat tečku.",
|
|
474
463
|
"This name already exists: “{name}”": "Tento název již existuje: \"{name}\"",
|
|
475
464
|
"Delete selected rows": "Smazat vybrané řádky",
|
|
@@ -571,11 +560,8 @@ const locale = {
|
|
|
571
560
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
561
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
562
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
563
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
564
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
565
|
"Delete this field": "Delete this field",
|
|
580
566
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
567
|
"Print map": "Print map",
|
|
@@ -595,7 +581,6 @@ const locale = {
|
|
|
595
581
|
"Transform to regular line": "Transform to regular line",
|
|
596
582
|
"Transform to route": "Transform to route",
|
|
597
583
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
584
|
"Profile": "Profile",
|
|
600
585
|
"Compute elevations": "Compute elevations",
|
|
601
586
|
"Route preference": "Route preference",
|
|
@@ -615,7 +600,57 @@ const locale = {
|
|
|
615
600
|
"Loss:": "Loss:",
|
|
616
601
|
"Altitude:": "Altitude:",
|
|
617
602
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
603
|
+
"Draw along routes": "Draw along routes",
|
|
604
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
605
|
+
"Add filter": "Add filter",
|
|
606
|
+
"Min/Max": "Min/Max",
|
|
607
|
+
"Multiple choices": "Multiple choices",
|
|
608
|
+
"Exclusive choice": "Exclusive choice",
|
|
609
|
+
"Yes/No": "Yes/No",
|
|
610
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
611
|
+
"Edit this filter": "Edit this filter",
|
|
612
|
+
"Remove this filter": "Remove this filter",
|
|
613
|
+
"Apply filter to": "Apply filter to",
|
|
614
|
+
"Filter on": "Filter on",
|
|
615
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
616
|
+
"Widget for the filter": "Widget for the filter",
|
|
617
|
+
"Edit filter": "Edit filter",
|
|
618
|
+
"Edit this field": "Edit this field",
|
|
619
|
+
"all layers": "all layers",
|
|
620
|
+
"single layer": "single layer",
|
|
621
|
+
"unset": "unset",
|
|
622
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
623
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
624
|
+
"Field Name": "Field Name",
|
|
625
|
+
"Field Type": "Field Type",
|
|
626
|
+
"Manage field": "Manage field",
|
|
627
|
+
"Add filter for this field": "Add filter for this field",
|
|
628
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
629
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
630
|
+
"Anonymous map": "Anonymous map",
|
|
631
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
632
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
633
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
634
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
635
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
636
|
+
"Mapillary": "Mapillary",
|
|
637
|
+
"Wikidata": "Wikidata",
|
|
638
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
639
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
640
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
641
|
+
"Login": "Login",
|
|
642
|
+
"Manage filters": "Manage filters",
|
|
643
|
+
"Map (all layers)": "Map (all layers)",
|
|
644
|
+
"Add a filter for this field": "Add a filter for this field",
|
|
645
|
+
"Short text": "Short text",
|
|
646
|
+
"Text": "Text",
|
|
647
|
+
"Number": "Number",
|
|
648
|
+
"Date": "Date",
|
|
649
|
+
"Date and time": "Date and time",
|
|
650
|
+
"List of values": "List of values",
|
|
651
|
+
"Yes / No": "Yes / No",
|
|
652
|
+
"Select field to compute intensity": "Select field to compute intensity",
|
|
653
|
+
"Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
|
|
619
654
|
}
|
|
620
655
|
L.registerLocale("cs_CZ", locale)
|
|
621
656
|
L.setLocale("cs_CZ")
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"color": "barva",
|
|
71
71
|
"Comma separated list of numbers, including min and max values.": "Seznam čísel oddělených čárkou, včetně minimálních a maximálních hodnot.",
|
|
72
72
|
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Čárkami oddělený seznam vlastností, které se mají použít pro třídění prvků. Chcete-li řazení obrátit, vložte před něj znaménko mínus (-). Např. mykey,-otherkey.",
|
|
73
|
-
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the
|
|
73
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.": "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.",
|
|
74
74
|
"Congratulations, your map has been created!": "Gratulujeme, vaše mapa byla vytvořena!",
|
|
75
75
|
"Continue line": "Pokračovat v čáře",
|
|
76
76
|
"Coordinates": "Souřadnice",
|
|
@@ -159,7 +159,6 @@
|
|
|
159
159
|
"Go to \"{coords}\"": "Přejít na „{coords}“",
|
|
160
160
|
"Go to the homepage": "Přejít na domovskou stránku",
|
|
161
161
|
"Go to «{feature}»": "Jdi na \"{feature}\"",
|
|
162
|
-
"Heatmap intensity property": "Vlastnost pro intenzitu teplotní mapy",
|
|
163
162
|
"Heatmap radius": "Poloměr teplotní mapy",
|
|
164
163
|
"Heatmap": "Teplotní mapa",
|
|
165
164
|
"height": "výška",
|
|
@@ -255,7 +254,6 @@
|
|
|
255
254
|
"Open share & download panel": "Otevřít panel na sdílení a stahování",
|
|
256
255
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Otevři tuto oblast v editoru OpenStreetMap. Toto vám umožní editovat přímo základní mapová data a přispět tak v tvorbě svobodné mapy pro všechny.",
|
|
257
256
|
"OpenStreetMap": "OpenStreetMap",
|
|
258
|
-
"Optional intensity property for heatmap": "Volitelná vlastnost pro výpočet intenzity v teplotní mapě",
|
|
259
257
|
"Optional. Same as color if not set.": "Nepovinné. Stejné jako barva, pokud není nastaveno.",
|
|
260
258
|
"Optional.": "Volitelné.",
|
|
261
259
|
"Override clustering radius (default 80)": "Přepsat shlukovací poloměr (výchozí hodnota 80)",
|
|
@@ -267,7 +265,6 @@
|
|
|
267
265
|
"Permanent credits": "Permanent credits",
|
|
268
266
|
"Please be sure the licence is compliant with your use.": "Prosíme ujistěte se, že licence je ve shodě s tím jak mapu používáte.",
|
|
269
267
|
"Please choose a format": "Zvolte formát",
|
|
270
|
-
"Please enter the name of the property": "Zadejte prosím název vlastnosti",
|
|
271
268
|
"Please save the map first": "Prosím, nejprve uložte mapu",
|
|
272
269
|
"Popup (large)": "Popup (velký)",
|
|
273
270
|
"Popup content style": "Styl obsahu popupu",
|
|
@@ -397,20 +394,16 @@
|
|
|
397
394
|
"Max": "Max",
|
|
398
395
|
"From": "Z",
|
|
399
396
|
"Until": "Dokud",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Příklad: klíč1,klíč2|Popisek 2, klíč3|Popisek 3|checkbox",
|
|
401
397
|
"Edit in OpenStreetMap": "Upravit v OpenStreetMap",
|
|
402
398
|
"Back to layers": "Zpět na vrstvy",
|
|
403
399
|
"Filters": "Filtry",
|
|
404
400
|
"Comma separated list of properties to use when filtering features by text input": "Čárkami oddělený seznam vlastností pro filtrování objektů podle zadávání textu",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Čárkami oddělený seznam vlastností, které se mají použít pro filtry (např.: můjklíč,jinýklíč). Chcete-li ovládat štítek, přidejte jej za | (např.: můjklíč|Můj klíč,jinýklíč|Jiný klíč). Chcete-li ovládat typ vstupního pole, přidejte jej za další | (např.: můjklíč|Můj klíč|checkbox,jinýklíč|Jiný klíč|datetime). Povolené hodnoty pro typ vstupního pole jsou checkbox (výchozí), radio, number, date a datetime.",
|
|
406
401
|
"Search keys": "Hledat klíče",
|
|
407
|
-
"Filters keys": "Filtry klíčů",
|
|
408
402
|
"Filter data": "Filtrovat data",
|
|
409
403
|
"Search map features…": "Hledat objekty mapy…",
|
|
410
404
|
"Reset all": "Obnovit vše",
|
|
411
405
|
"Open browser": "Otevřete prohlížeč",
|
|
412
406
|
"Open caption": "Otevřete popisky",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Vaše mapa byla vytvořena s anonymním účtem!",
|
|
414
407
|
"Real-time collaboration": "Spolupráce v reálném čase",
|
|
415
408
|
"Cannot parse data": "Nelze zpracovat data",
|
|
416
409
|
"Start typing...": "Začněte psát...",
|
|
@@ -466,10 +459,6 @@
|
|
|
466
459
|
"Categories": "Kategorie",
|
|
467
460
|
"Comma separated list of categories.": "Seznam kategorií oddělených čárkou.",
|
|
468
461
|
"Categories mode": "Režim kategorií",
|
|
469
|
-
"Remove filter for this column": "Odebrat filtr pro tento sloupec",
|
|
470
|
-
"Add filter for this column": "Přidat filtr pro tento sloupec",
|
|
471
|
-
"Rename this column": "Přejmenovat tento sloupec",
|
|
472
|
-
"Delete this column": "Smazat tento sloupec",
|
|
473
462
|
"Name “{name}” should not contain a dot.": "Název \"{name}\" by neměl obsahovat tečku.",
|
|
474
463
|
"This name already exists: “{name}”": "Tento název již existuje: \"{name}\"",
|
|
475
464
|
"Delete selected rows": "Smazat vybrané řádky",
|
|
@@ -571,11 +560,8 @@
|
|
|
571
560
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
561
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
562
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
563
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
564
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
565
|
"Delete this field": "Delete this field",
|
|
580
566
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
567
|
"Print map": "Print map",
|
|
@@ -595,7 +581,6 @@
|
|
|
595
581
|
"Transform to regular line": "Transform to regular line",
|
|
596
582
|
"Transform to route": "Transform to route",
|
|
597
583
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
584
|
"Profile": "Profile",
|
|
600
585
|
"Compute elevations": "Compute elevations",
|
|
601
586
|
"Route preference": "Route preference",
|
|
@@ -615,5 +600,55 @@
|
|
|
615
600
|
"Loss:": "Loss:",
|
|
616
601
|
"Altitude:": "Altitude:",
|
|
617
602
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
603
|
+
"Draw along routes": "Draw along routes",
|
|
604
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
605
|
+
"Add filter": "Add filter",
|
|
606
|
+
"Min/Max": "Min/Max",
|
|
607
|
+
"Multiple choices": "Multiple choices",
|
|
608
|
+
"Exclusive choice": "Exclusive choice",
|
|
609
|
+
"Yes/No": "Yes/No",
|
|
610
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
611
|
+
"Edit this filter": "Edit this filter",
|
|
612
|
+
"Remove this filter": "Remove this filter",
|
|
613
|
+
"Apply filter to": "Apply filter to",
|
|
614
|
+
"Filter on": "Filter on",
|
|
615
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
616
|
+
"Widget for the filter": "Widget for the filter",
|
|
617
|
+
"Edit filter": "Edit filter",
|
|
618
|
+
"Edit this field": "Edit this field",
|
|
619
|
+
"all layers": "all layers",
|
|
620
|
+
"single layer": "single layer",
|
|
621
|
+
"unset": "unset",
|
|
622
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
623
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
624
|
+
"Field Name": "Field Name",
|
|
625
|
+
"Field Type": "Field Type",
|
|
626
|
+
"Manage field": "Manage field",
|
|
627
|
+
"Add filter for this field": "Add filter for this field",
|
|
628
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
629
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
630
|
+
"Anonymous map": "Anonymous map",
|
|
631
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
632
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
633
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
634
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
635
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
636
|
+
"Mapillary": "Mapillary",
|
|
637
|
+
"Wikidata": "Wikidata",
|
|
638
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
639
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
640
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
641
|
+
"Login": "Login",
|
|
642
|
+
"Manage filters": "Manage filters",
|
|
643
|
+
"Map (all layers)": "Map (all layers)",
|
|
644
|
+
"Add a filter for this field": "Add a filter for this field",
|
|
645
|
+
"Short text": "Short text",
|
|
646
|
+
"Text": "Text",
|
|
647
|
+
"Number": "Number",
|
|
648
|
+
"Date": "Date",
|
|
649
|
+
"Date and time": "Date and time",
|
|
650
|
+
"List of values": "List of values",
|
|
651
|
+
"Yes / No": "Yes / No",
|
|
652
|
+
"Select field to compute intensity": "Select field to compute intensity",
|
|
653
|
+
"Optional intensity field to compute heatmap": "Optional intensity field to compute heatmap"
|
|
619
654
|
}
|
umap/static/umap/locale/da.js
CHANGED
|
@@ -70,7 +70,7 @@ const locale = {
|
|
|
70
70
|
"color": "farver",
|
|
71
71
|
"Comma separated list of numbers, including min and max values.": "Kommasepareret liste af tal, inklusive min- og max-værdier.",
|
|
72
72
|
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Kommasepareret liste over egenskaber, der skal bruges til at sortere objekter. For at vende sorteringen skal du sætte et minustegn (-) før. F.eks. mykey,-otherkey.",
|
|
73
|
-
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the
|
|
73
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the beginning of the header, case insensitive. All other column are imported as properties.": "Komma-, tabulator- eller semikolonseparerede værdier. SRS WGS84 er underforstået. Kun punktgeometrier importeres. Importen vil se på kolonneoverskrifterne for enhver omtale af «lat» og «lon» i begyndelsen af overskriften, uden skelnen mellem store og små bogstaver. Alle andre kolonner importeres som egenskaber.",
|
|
74
74
|
"Congratulations, your map has been created!": "Tillykke, dit kort er nu oprettet!",
|
|
75
75
|
"Continue line": "Fortsæt linje",
|
|
76
76
|
"Coordinates": "Koordinater",
|
|
@@ -159,7 +159,6 @@ const locale = {
|
|
|
159
159
|
"Go to \"{coords}\"": "Gå til \"{coords}\"",
|
|
160
160
|
"Go to the homepage": "Gå til startsiden",
|
|
161
161
|
"Go to «{feature}»": "Gå til \"{feature}\"",
|
|
162
|
-
"Heatmap intensity property": "Heatmaps intensitetsegenskaber",
|
|
163
162
|
"Heatmap radius": "Heatmaps radius",
|
|
164
163
|
"Heatmap": "Heatmap",
|
|
165
164
|
"height": "højde",
|
|
@@ -255,7 +254,6 @@ const locale = {
|
|
|
255
254
|
"Open share & download panel": "Åbn panelet for deling og download",
|
|
256
255
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Åbn dette kort i en korteditor for at levere mere nøjagtige data til OpenStreetMap",
|
|
257
256
|
"OpenStreetMap": "OpenStreetMap",
|
|
258
|
-
"Optional intensity property for heatmap": "Valgfri intensitetsegenskaber for heatmap",
|
|
259
257
|
"Optional. Same as color if not set.": "Valgfri. Samme som farve, hvis ikke angivet.",
|
|
260
258
|
"Optional.": "Valgfri.",
|
|
261
259
|
"Override clustering radius (default 80)": "Overskriv klyngeradius (standard 80)",
|
|
@@ -267,7 +265,6 @@ const locale = {
|
|
|
267
265
|
"Permanent credits": "Permanent kreditering",
|
|
268
266
|
"Please be sure the licence is compliant with your use.": "Sørg for, at licensen er kompatibel med din anvendelse.",
|
|
269
267
|
"Please choose a format": "Vælg et format",
|
|
270
|
-
"Please enter the name of the property": "Angiv egenskabens navn",
|
|
271
268
|
"Please save the map first": "Gem først kortet",
|
|
272
269
|
"Popup (large)": "Popup (stor)",
|
|
273
270
|
"Popup content style": "Popup-indholdsstil",
|
|
@@ -397,20 +394,16 @@ const locale = {
|
|
|
397
394
|
"Max": "Maks",
|
|
398
395
|
"From": "Fra",
|
|
399
396
|
"Until": "Indtil",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Eksempel: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
401
397
|
"Edit in OpenStreetMap": "Rediger i OpenStreetMap",
|
|
402
398
|
"Back to layers": "Tilbage til lag",
|
|
403
399
|
"Filters": "Filtre",
|
|
404
400
|
"Comma separated list of properties to use when filtering features by text input": "Kommasepareret liste over egenskaber, der skal bruges til at filtrere objekter efter tekstinput",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Kommasepareret liste over egenskaber, der skal bruges til filtre (f.eks.: mykey,otherkey). For at kontrollere etiketten skal du tilføje den efter en | (F.eks.: mykey|My Key,otherkey|Other Key). For at styre inputfeltets type skal du tilføje det efter en anden | (F.eks.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Tilladte værdier for inputfelt-typen er checkbox (standard), radio, number, date og datetime.",
|
|
406
401
|
"Search keys": "Søg nøgler",
|
|
407
|
-
"Filters keys": "Filtrerer nøgler",
|
|
408
402
|
"Filter data": "Filtrer data",
|
|
409
403
|
"Search map features…": "Søg kortobjekter…",
|
|
410
404
|
"Reset all": "Nulstil alt",
|
|
411
405
|
"Open browser": "Åbn browser",
|
|
412
406
|
"Open caption": "Åbn korttekst",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Dit kort er blevet oprettet med en anonym konto!",
|
|
414
407
|
"Real-time collaboration": "Samarbejde i realtid",
|
|
415
408
|
"Cannot parse data": "Kan ikke fortolke data",
|
|
416
409
|
"Start typing...": "Begynd at skrive...",
|
|
@@ -466,10 +459,6 @@ const locale = {
|
|
|
466
459
|
"Categories": "Kategorier",
|
|
467
460
|
"Comma separated list of categories.": "Kommasepareret liste over kategorier.",
|
|
468
461
|
"Categories mode": "Kategori-tilstand",
|
|
469
|
-
"Remove filter for this column": "Fjern filter for denne kolonne",
|
|
470
|
-
"Add filter for this column": "Tilføj filter for denne kolonne",
|
|
471
|
-
"Rename this column": "Omdøb denne kolonne",
|
|
472
|
-
"Delete this column": "Slet denne kolonne",
|
|
473
462
|
"Name “{name}” should not contain a dot.": "Navnet “{name}” må ikke indeholde et punktum.",
|
|
474
463
|
"This name already exists: “{name}”": "Dette navn findes allerede: “{name}”",
|
|
475
464
|
"Delete selected rows": "Slet valgte rækker",
|
|
@@ -571,11 +560,8 @@ const locale = {
|
|
|
571
560
|
"Please choose an instance first.": "Vælg en instans først.",
|
|
572
561
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "Ingen geo-kolonne fundet: skal være enten `lat(itude)` og `lon(gitude)` eller `geom(etry)`.",
|
|
573
562
|
"Add a new field": "Tilføj et nyt felt",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Er du sikker på, at du vil slette dette felt på alle objekter?",
|
|
575
|
-
"Please enter the new name of this field": "Indtast det nye navn på dette felt",
|
|
576
563
|
"Cannot process MultiPoint": "Kan ikke bearbejde MultiPoint",
|
|
577
564
|
"Manage Fields": "Administrer felter",
|
|
578
|
-
"Rename this field": "Omdøb dette felt",
|
|
579
565
|
"Delete this field": "Slet dette felt",
|
|
580
566
|
"Double click to edit the name": "Dobbeltklik for at redigere navnet",
|
|
581
567
|
"Print map": "Udskriv kort",
|
|
@@ -595,7 +581,6 @@ const locale = {
|
|
|
595
581
|
"Transform to regular line": "Omdan til almindelig linje",
|
|
596
582
|
"Transform to route": "Omdan til rute",
|
|
597
583
|
"Restore route": "Gendan rute",
|
|
598
|
-
"Compute elevation": "Beregn højde",
|
|
599
584
|
"Profile": "Profil",
|
|
600
585
|
"Compute elevations": "Beregn højder",
|
|
601
586
|
"Route preference": "Rutepræference",
|
|
@@ -615,7 +600,59 @@ const locale = {
|
|
|
615
600
|
"Loss:": "Tab:",
|
|
616
601
|
"Altitude:": "Højde:",
|
|
617
602
|
"Right-click to edit": "Højreklik for at redigere",
|
|
618
|
-
"Draw along routes": "Tegn langs ruter"
|
|
603
|
+
"Draw along routes": "Tegn langs ruter",
|
|
604
|
+
"Skipping invalid geometry": "Springer ugyldig geometri over",
|
|
605
|
+
"Add filter": "Tilføj filter",
|
|
606
|
+
"Min/Max": "Min/Maks",
|
|
607
|
+
"Multiple choices": "Flere valgmuligheder",
|
|
608
|
+
"Exclusive choice": "Eksklusivt valg",
|
|
609
|
+
"Yes/No": "Ja/Nej",
|
|
610
|
+
"Add a field prior to create a filter.": "Tilføj et felt, før du opretter et filter.",
|
|
611
|
+
"Edit this filter": "Rediger dette filter",
|
|
612
|
+
"Remove this filter": "Fjern dette filter",
|
|
613
|
+
"Apply filter to": "Anvend filter på",
|
|
614
|
+
"Filter on": "Filtrer på",
|
|
615
|
+
"Human readable name of the filter": "Menneskeslæseligt navn på filteret",
|
|
616
|
+
"Widget for the filter": "Widget til filteret",
|
|
617
|
+
"Edit filter": "Rediger filter",
|
|
618
|
+
"Edit this field": "Rediger dette felt",
|
|
619
|
+
"all layers": "alle lag",
|
|
620
|
+
"single layer": "enkelt lag",
|
|
621
|
+
"unset": "ikke-indstillet",
|
|
622
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filtre vises i databrowseren for at lette datavalget.",
|
|
623
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (f.eks. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
624
|
+
"Field Name": "Feltnavn",
|
|
625
|
+
"Field Type": "Felttype",
|
|
626
|
+
"Manage field": "Administrer felt",
|
|
627
|
+
"Add filter for this field": "Tilføj filter til dette felt",
|
|
628
|
+
"Name cannot be empty.": "Navn må ikke være tomt.",
|
|
629
|
+
"Are you sure you want to delete this field on all the data?": "Er du sikker på, at du vil slette dette felt i alle dataene?",
|
|
630
|
+
"Anonymous map": "Anonymt kort",
|
|
631
|
+
"Edit filter for this field": "Rediger filter for dette felt",
|
|
632
|
+
"Hey, you created a map without an account!": "Hej, du har oprettet et kort uden en konto!",
|
|
633
|
+
"This map is anonymous, do you want to attach it to your account?": "Dette kort er anonymt. Vil du knytte det til din konto?",
|
|
634
|
+
"The map has been upgraded to latest version, please save it.": "Kortet er blevet opgraderet til den nyeste version. Gem det venligst.",
|
|
635
|
+
"Elevation has been added!": "Højde er blevet tilføjet!",
|
|
636
|
+
"Mapillary": "Mapillary",
|
|
637
|
+
"Wikidata": "Wikidata",
|
|
638
|
+
"Wikipedia contributors": "Wikipedia-bidragydere",
|
|
639
|
+
"See on Wikipedia": "Se på Wikipedia",
|
|
640
|
+
"Anonymous map: update who can see and edit it": "Anonymt kort: Opdater, hvem der kan se og redigere det",
|
|
641
|
+
"Login": "Login",
|
|
642
|
+
"Manage filters": "Administrer filtre",
|
|
643
|
+
"Map (all layers)": "Kort (alle lag)",
|
|
644
|
+
"Add a filter for this field": "Tilføj et filter for dette felt",
|
|
645
|
+
"Short text": "Kort tekst",
|
|
646
|
+
"Text": "Tekst",
|
|
647
|
+
"Number": "Tal",
|
|
648
|
+
"Date": "Dato",
|
|
649
|
+
"Date and time": "Dato og tid",
|
|
650
|
+
"List of values": "Liste over værdier",
|
|
651
|
+
"Yes / No": "Ja / Nej",
|
|
652
|
+
"Select field to compute intensity": "Vælg felt for at beregne intensitet",
|
|
653
|
+
"Optional intensity field to compute heatmap": "Valgfrit intensitetsfelt til beregning af heatmap",
|
|
654
|
+
"All layers": "Alle lag",
|
|
655
|
+
"Comma separated list of values": "Comma separated list of values"
|
|
619
656
|
}
|
|
620
657
|
L.registerLocale("da", locale)
|
|
621
658
|
L.setLocale("da")
|