umap-project 3.1.2__py3-none-any.whl → 3.3.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.
Potentially problematic release.
This version of umap-project might be problematic. Click here for more details.
- umap/__init__.py +1 -1
- umap/locale/en/LC_MESSAGES/django.mo +0 -0
- umap/locale/en/LC_MESSAGES/django.po +22 -18
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +21 -17
- umap/management/commands/export_pictogram.py +29 -0
- umap/management/commands/migrate_to_S3.py +5 -1
- umap/management/commands/purge_old_versions.py +8 -6
- umap/settings/__init__.py +21 -0
- umap/settings/base.py +3 -0
- umap/static/umap/content.css +7 -2
- umap/static/umap/css/contextmenu.css +58 -2
- umap/static/umap/css/form.css +175 -45
- umap/static/umap/css/icon.css +97 -3
- umap/static/umap/css/panel.css +31 -1
- umap/static/umap/img/16-white.svg +21 -40
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +9 -9
- umap/static/umap/img/24.svg +23 -10
- umap/static/umap/img/source/16-white.svg +23 -41
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +11 -11
- umap/static/umap/img/source/24.svg +25 -12
- umap/static/umap/js/modules/browser.js +1 -1
- umap/static/umap/js/modules/caption.js +8 -0
- umap/static/umap/js/modules/data/features.js +331 -202
- umap/static/umap/js/modules/data/layer.js +263 -152
- umap/static/umap/js/modules/facets.js +2 -2
- umap/static/umap/js/modules/form/builder.js +11 -7
- umap/static/umap/js/modules/form/fields.js +66 -26
- umap/static/umap/js/modules/formatter.js +78 -28
- umap/static/umap/js/modules/importer.js +6 -1
- umap/static/umap/js/modules/importers/opendata.js +138 -33
- umap/static/umap/js/modules/importers/openrouteservice.js +140 -0
- umap/static/umap/js/modules/managers.js +67 -0
- umap/static/umap/js/modules/printer.js +107 -0
- umap/static/umap/js/modules/rendering/controls.js +78 -2
- umap/static/umap/js/modules/rendering/icon.js +116 -87
- umap/static/umap/js/modules/rendering/layers/classified.js +8 -7
- umap/static/umap/js/modules/rendering/layers/cluster.js +199 -63
- umap/static/umap/js/modules/rendering/map.js +6 -2
- umap/static/umap/js/modules/rendering/template.js +71 -1
- umap/static/umap/js/modules/rendering/ui.js +111 -34
- umap/static/umap/js/modules/rules.js +76 -23
- umap/static/umap/js/modules/schema.js +27 -0
- umap/static/umap/js/modules/share.js +19 -12
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/updaters.js +1 -6
- umap/static/umap/js/modules/tableeditor.js +13 -37
- umap/static/umap/js/modules/templates.js +7 -6
- umap/static/umap/js/modules/ui/bar.js +6 -1
- umap/static/umap/js/modules/ui/base.js +24 -9
- umap/static/umap/js/modules/ui/contextmenu.js +17 -7
- umap/static/umap/js/modules/ui/dialog.js +7 -4
- umap/static/umap/js/modules/ui/panel.js +7 -0
- umap/static/umap/js/modules/umap.js +84 -67
- umap/static/umap/js/modules/utils.js +8 -7
- umap/static/umap/js/umap.controls.js +22 -57
- umap/static/umap/locale/am_ET.js +81 -9
- umap/static/umap/locale/am_ET.json +81 -9
- umap/static/umap/locale/ar.js +81 -9
- umap/static/umap/locale/ar.json +81 -9
- umap/static/umap/locale/ast.js +81 -9
- umap/static/umap/locale/ast.json +81 -9
- umap/static/umap/locale/bg.js +81 -9
- umap/static/umap/locale/bg.json +81 -9
- umap/static/umap/locale/br.js +68 -29
- umap/static/umap/locale/br.json +68 -29
- umap/static/umap/locale/ca.js +88 -16
- umap/static/umap/locale/ca.json +88 -16
- umap/static/umap/locale/cs_CZ.js +81 -9
- umap/static/umap/locale/cs_CZ.json +81 -9
- umap/static/umap/locale/da.js +48 -9
- umap/static/umap/locale/da.json +48 -9
- umap/static/umap/locale/de.js +48 -9
- umap/static/umap/locale/de.json +48 -9
- umap/static/umap/locale/el.js +58 -13
- umap/static/umap/locale/el.json +58 -13
- umap/static/umap/locale/en.js +48 -9
- umap/static/umap/locale/en.json +48 -9
- umap/static/umap/locale/en_US.json +81 -9
- umap/static/umap/locale/es.js +48 -9
- umap/static/umap/locale/es.json +48 -9
- umap/static/umap/locale/et.js +81 -9
- umap/static/umap/locale/et.json +81 -9
- umap/static/umap/locale/eu.js +97 -25
- umap/static/umap/locale/eu.json +97 -25
- umap/static/umap/locale/fa_IR.js +81 -9
- umap/static/umap/locale/fa_IR.json +81 -9
- umap/static/umap/locale/fi.js +81 -9
- umap/static/umap/locale/fi.json +81 -9
- umap/static/umap/locale/fr.js +48 -9
- umap/static/umap/locale/fr.json +48 -9
- umap/static/umap/locale/gl.js +81 -9
- umap/static/umap/locale/gl.json +81 -9
- umap/static/umap/locale/he.js +81 -9
- umap/static/umap/locale/he.json +81 -9
- umap/static/umap/locale/hr.js +81 -9
- umap/static/umap/locale/hr.json +81 -9
- umap/static/umap/locale/hu.js +72 -27
- umap/static/umap/locale/hu.json +72 -27
- umap/static/umap/locale/id.js +81 -9
- umap/static/umap/locale/id.json +81 -9
- umap/static/umap/locale/is.js +81 -9
- umap/static/umap/locale/is.json +81 -9
- umap/static/umap/locale/it.js +48 -9
- umap/static/umap/locale/it.json +48 -9
- umap/static/umap/locale/ja.js +81 -9
- umap/static/umap/locale/ja.json +81 -9
- umap/static/umap/locale/ko.js +81 -9
- umap/static/umap/locale/ko.json +81 -9
- umap/static/umap/locale/lt.js +81 -9
- umap/static/umap/locale/lt.json +81 -9
- umap/static/umap/locale/ms.js +81 -9
- umap/static/umap/locale/ms.json +81 -9
- umap/static/umap/locale/nl.js +48 -9
- umap/static/umap/locale/nl.json +48 -9
- umap/static/umap/locale/no.js +81 -9
- umap/static/umap/locale/no.json +81 -9
- umap/static/umap/locale/pl.js +81 -9
- umap/static/umap/locale/pl.json +81 -9
- umap/static/umap/locale/pl_PL.json +81 -9
- umap/static/umap/locale/pt.js +81 -9
- umap/static/umap/locale/pt.json +81 -9
- umap/static/umap/locale/pt_BR.js +91 -19
- umap/static/umap/locale/pt_BR.json +91 -19
- umap/static/umap/locale/pt_PT.js +81 -9
- umap/static/umap/locale/pt_PT.json +81 -9
- umap/static/umap/locale/ro.js +81 -9
- umap/static/umap/locale/ro.json +81 -9
- umap/static/umap/locale/ru.js +81 -9
- umap/static/umap/locale/ru.json +81 -9
- umap/static/umap/locale/sk_SK.js +81 -9
- umap/static/umap/locale/sk_SK.json +81 -9
- umap/static/umap/locale/sl.js +81 -9
- umap/static/umap/locale/sl.json +81 -9
- umap/static/umap/locale/sr.js +81 -9
- umap/static/umap/locale/sr.json +81 -9
- umap/static/umap/locale/sv.js +81 -9
- umap/static/umap/locale/sv.json +81 -9
- umap/static/umap/locale/th_TH.js +81 -9
- umap/static/umap/locale/th_TH.json +81 -9
- umap/static/umap/locale/tr.js +81 -9
- umap/static/umap/locale/tr.json +81 -9
- umap/static/umap/locale/uk_UA.js +81 -9
- umap/static/umap/locale/uk_UA.json +81 -9
- umap/static/umap/locale/vi.js +81 -9
- umap/static/umap/locale/vi.json +81 -9
- umap/static/umap/locale/vi_VN.json +81 -9
- umap/static/umap/locale/zh.js +81 -9
- umap/static/umap/locale/zh.json +81 -9
- umap/static/umap/locale/zh_CN.json +81 -9
- umap/static/umap/locale/zh_TW.Big5.json +81 -9
- umap/static/umap/locale/zh_TW.js +98 -26
- umap/static/umap/locale/zh_TW.json +98 -26
- umap/static/umap/map.css +325 -102
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/betterknown/betterknown.mjs +287 -0
- umap/static/umap/vendors/editable/Leaflet.Editable.js +3 -1
- umap/static/umap/vendors/openrouteservice/ors-js-client.js +521 -0
- umap/static/umap/vendors/openrouteservice/ors-js-client.js.map +1 -0
- umap/static/umap/vendors/simple-elevation-chart/elevation.js +63 -0
- umap/static/umap/vendors/simple-elevation-chart/elevation.svg +8 -0
- umap/static/umap/vendors/snapdom/snapdom.min.mjs +3 -0
- umap/storage/fs.py +3 -2
- umap/storage/staticfiles.py +12 -0
- umap/templates/base.html +4 -1
- umap/templates/umap/css.html +0 -4
- umap/templates/umap/js.html +1 -3
- umap/tests/base.py +9 -1
- umap/tests/integration/test_basics.py +3 -1
- umap/tests/integration/test_conditional_rules.py +79 -37
- umap/tests/integration/test_datalayer.py +1 -1
- umap/tests/integration/test_draw_polygon.py +3 -5
- umap/tests/integration/test_draw_polyline.py +4 -6
- umap/tests/integration/test_draw_route.py +178 -0
- umap/tests/integration/test_edit_datalayer.py +1 -1
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_edit_marker.py +8 -8
- umap/tests/integration/test_edit_polygon.py +2 -2
- umap/tests/integration/test_export_map.py +84 -10
- umap/tests/integration/test_import.py +140 -0
- umap/tests/integration/test_map_preview.py +1 -1
- umap/tests/integration/test_optimistic_merge.py +72 -12
- umap/tests/integration/test_share.py +1 -1
- umap/tests/integration/test_tableeditor.py +10 -7
- umap/tests/integration/test_websocket_sync.py +4 -4
- umap/utils.py +37 -0
- umap/views.py +18 -2
- umap_project-3.3.0.dist-info/METADATA +76 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/RECORD +194 -188
- umap/static/umap/vendors/markercluster/MarkerCluster.Default.css +0 -60
- umap/static/umap/vendors/markercluster/MarkerCluster.css +0 -14
- umap/static/umap/vendors/markercluster/leaflet.markercluster.js +0 -2
- umap/static/umap/vendors/markercluster/leaflet.markercluster.js.map +0 -1
- umap_project-3.1.2.dist-info/METADATA +0 -68
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/WHEEL +0 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.1.2.dist-info → umap_project-3.3.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"Activate slideshow mode": "Aktivovat prezentační mód",
|
|
17
17
|
"Add a layer": "Přidat vrstvu",
|
|
18
18
|
"Add a line to the current multi": "Přidat čáru k současnému multi",
|
|
19
|
-
"Add a new property": "Přidat novou vlastnost",
|
|
20
19
|
"Add a polygon to the current multi": "Přidat polygon k současnému multi",
|
|
21
20
|
"Add image URL": "Přidat URL obrázku",
|
|
22
21
|
"Advanced actions": "Pokročilé akce",
|
|
@@ -29,7 +28,6 @@
|
|
|
29
28
|
"Animated transitions": "Animované přechody",
|
|
30
29
|
"Are you sure you want to clone this map and all its datalayers?": "Určitě chcete vytvořit kopii celé této mapy a všech jejich vrstev?",
|
|
31
30
|
"Are you sure you want to delete this map?": "Jste si jisti, že chcete vymazat tuto celou mapu?",
|
|
32
|
-
"Are you sure you want to delete this property on all the features?": "Určitě chcete smazat tuto vlastnost na všech objektech?",
|
|
33
31
|
"Are you sure you want to restore this version?": "Opravdu si přejete obnovit tuto verzi?",
|
|
34
32
|
"Attach the map to my account": "Připojte mapu k mému účtu",
|
|
35
33
|
"attribution": "autorství",
|
|
@@ -59,7 +57,6 @@
|
|
|
59
57
|
"Click last point to finish shape": "Klikněte na poslední bod pro dokončení tvaru",
|
|
60
58
|
"Click to add a marker": "Kliknutím přidáš značku",
|
|
61
59
|
"Click to continue drawing": "Kliknutím můžeš pokračovat v kreslení",
|
|
62
|
-
"Click to edit": "Klikněte pro úpravy",
|
|
63
60
|
"Click to start drawing a line": "Klikněte pro začátek kreslení čáry",
|
|
64
61
|
"Click to start drawing a polygon": "Klikněte pro začátek kreslení polygonu",
|
|
65
62
|
"Clone of {name}": "Klon objektu {name}",
|
|
@@ -157,7 +154,6 @@
|
|
|
157
154
|
"Format": "Formát",
|
|
158
155
|
"From zoom": "Maximální oddálení",
|
|
159
156
|
"full backup": "plná záloha",
|
|
160
|
-
"Generic": "Generický",
|
|
161
157
|
"GeoRSS (only link)": "GeoRSS (jen odkaz)",
|
|
162
158
|
"GeoRSS (title + image)": "GeoRSS (titulek + obrázek)",
|
|
163
159
|
"Go to \"{coords}\"": "Přejít na „{coords}“",
|
|
@@ -212,7 +208,6 @@
|
|
|
212
208
|
"Link with text: [[https://example.com|text of the link]]": "Odkaz s textem: [[https://priklad.cz|text odkazu]]",
|
|
213
209
|
"Long credits": "Dlouhý text autorství",
|
|
214
210
|
"Longitude": "Délka",
|
|
215
|
-
"Make main shape": "Učinit hlavním tvarem",
|
|
216
211
|
"Manage layers": "Spravovat vrstvy",
|
|
217
212
|
"Manual": "Ručně",
|
|
218
213
|
"Map background credits": "Autorství pozadí mapy",
|
|
@@ -273,7 +268,6 @@
|
|
|
273
268
|
"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.",
|
|
274
269
|
"Please choose a format": "Zvolte formát",
|
|
275
270
|
"Please enter the name of the property": "Zadejte prosím název vlastnosti",
|
|
276
|
-
"Please enter the new name of this property": "Zadejte prosím nový název této vlastnosti",
|
|
277
271
|
"Please save the map first": "Prosím, nejprve uložte mapu",
|
|
278
272
|
"Popup (large)": "Popup (velký)",
|
|
279
273
|
"Popup content style": "Styl obsahu popupu",
|
|
@@ -289,7 +283,6 @@
|
|
|
289
283
|
"Quantiles": "Kvantily",
|
|
290
284
|
"Recent": "Nedávné",
|
|
291
285
|
"Remote data": "Vzdálená data",
|
|
292
|
-
"Remove shape from the multi": "Odebrat tvar z multi",
|
|
293
286
|
"Replace layer content": "Nahradit obsah vrstvy",
|
|
294
287
|
"Restore this version": "Obnovit tuto verzi",
|
|
295
288
|
"Save current edits": "Ulož nedávné změny",
|
|
@@ -406,7 +399,6 @@
|
|
|
406
399
|
"Until": "Dokud",
|
|
407
400
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Příklad: klíč1,klíč2|Popisek 2, klíč3|Popisek 3|checkbox",
|
|
408
401
|
"Edit in OpenStreetMap": "Upravit v OpenStreetMap",
|
|
409
|
-
"Cannot determine latitude and longitude columns.": "Nelze určit sloupce zeměpisné šířky a délky.",
|
|
410
402
|
"Back to layers": "Zpět na vrstvy",
|
|
411
403
|
"Filters": "Filtry",
|
|
412
404
|
"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",
|
|
@@ -543,5 +535,85 @@
|
|
|
543
535
|
"Back to list": "Back to list",
|
|
544
536
|
"Toggle rule": "Toggle rule",
|
|
545
537
|
"Delete rule": "Delete rule",
|
|
546
|
-
"Cannot save layer, please try again in a few minutes.": "Cannot save layer, please try again in a few minutes."
|
|
538
|
+
"Cannot save layer, please try again in a few minutes.": "Cannot save layer, please try again in a few minutes.",
|
|
539
|
+
"Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activate collaborative live editing on this map. Other users must reload the map after changing this setting.",
|
|
540
|
+
"More help resources": "More help resources",
|
|
541
|
+
"This map is a template": "This map is a template",
|
|
542
|
+
"Add text along path": "Add text along path",
|
|
543
|
+
"Text color": "Text color",
|
|
544
|
+
"Text offset": "Text offset",
|
|
545
|
+
"Text position": "Text position",
|
|
546
|
+
"start": "start",
|
|
547
|
+
"center": "center",
|
|
548
|
+
"end": "end",
|
|
549
|
+
"Text repeat": "Text repeat",
|
|
550
|
+
"Text rotate": "Text rotate",
|
|
551
|
+
"Text size": "Text size",
|
|
552
|
+
"Load map template": "Load map template",
|
|
553
|
+
"My templates": "My templates",
|
|
554
|
+
"From staff": "From staff",
|
|
555
|
+
"From community": "From community",
|
|
556
|
+
"You must select a template.": "You must select a template.",
|
|
557
|
+
"Line decoration": "Line decoration",
|
|
558
|
+
"Reuse this template": "Reuse this template",
|
|
559
|
+
"Create a new map using this template": "Create a new map using this template",
|
|
560
|
+
"Save template": "Save template",
|
|
561
|
+
"Load template": "Load template",
|
|
562
|
+
"Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
|
|
563
|
+
"Load template with data": "Load template with data",
|
|
564
|
+
"You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".",
|
|
565
|
+
"There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.",
|
|
566
|
+
"There is no public template yet.": "There is no public template yet.",
|
|
567
|
+
"Explore": "Explore",
|
|
568
|
+
"Import data from public open data portals": "Import data from public open data portals",
|
|
569
|
+
"Choose a portal": "Choose a portal",
|
|
570
|
+
"Limit results to current map view": "Limit results to current map view",
|
|
571
|
+
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
|
+
"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
|
+
"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
|
+
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
|
+
"Manage Fields": "Manage Fields",
|
|
578
|
+
"Rename this field": "Rename this field",
|
|
579
|
+
"Delete this field": "Delete this field",
|
|
580
|
+
"Double click to edit the name": "Double click to edit the name",
|
|
581
|
+
"Print map": "Print map",
|
|
582
|
+
"Choose a format": "Choose a format",
|
|
583
|
+
"Scale map": "Scale map",
|
|
584
|
+
"portrait": "portrait",
|
|
585
|
+
"landscape": "landscape",
|
|
586
|
+
"Print": "Print",
|
|
587
|
+
"Preparing the print…": "Preparing the print…",
|
|
588
|
+
"Large Circle": "Large Circle",
|
|
589
|
+
"Icon size": "Icon size",
|
|
590
|
+
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
+
"Route": "Route",
|
|
592
|
+
"Display the print control": "Display the print control",
|
|
593
|
+
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
+
"Route settings": "Route settings",
|
|
595
|
+
"Transform to regular line": "Transform to regular line",
|
|
596
|
+
"Transform to route": "Transform to route",
|
|
597
|
+
"Restore route": "Restore route",
|
|
598
|
+
"Compute elevation": "Compute elevation",
|
|
599
|
+
"Profile": "Profile",
|
|
600
|
+
"Compute elevations": "Compute elevations",
|
|
601
|
+
"Route preference": "Route preference",
|
|
602
|
+
"Compute route": "Compute route",
|
|
603
|
+
"Walking": "Walking",
|
|
604
|
+
"Hiking": "Hiking",
|
|
605
|
+
"By car": "By car",
|
|
606
|
+
"Cycling": "Cycling",
|
|
607
|
+
"Wheelchair": "Wheelchair",
|
|
608
|
+
"Recommended": "Recommended",
|
|
609
|
+
"Fastest": "Fastest",
|
|
610
|
+
"Shortest": "Shortest",
|
|
611
|
+
"Max time (in minutes)": "Max time (in minutes)",
|
|
612
|
+
"Number of lines": "Number of lines",
|
|
613
|
+
"Distance:": "Distance:",
|
|
614
|
+
"Gain:": "Gain:",
|
|
615
|
+
"Loss:": "Loss:",
|
|
616
|
+
"Altitude:": "Altitude:",
|
|
617
|
+
"Right-click to edit": "Right-click to edit",
|
|
618
|
+
"Draw along routes": "Draw along routes"
|
|
547
619
|
}
|
umap/static/umap/locale/da.js
CHANGED
|
@@ -16,7 +16,6 @@ const locale = {
|
|
|
16
16
|
"Activate slideshow mode": "Aktiver fremvisningstilstand",
|
|
17
17
|
"Add a layer": "Tilføj et lag",
|
|
18
18
|
"Add a line to the current multi": "Tilføj en linje til nuværende multi",
|
|
19
|
-
"Add a new property": "Tilføj en ny egenskab",
|
|
20
19
|
"Add a polygon to the current multi": "Tilføj en polygon til aktuel multi",
|
|
21
20
|
"Add image URL": "Tilføj billed-URL",
|
|
22
21
|
"Advanced actions": "Avancerede handlinger",
|
|
@@ -29,7 +28,6 @@ const locale = {
|
|
|
29
28
|
"Animated transitions": "Animerede overgange",
|
|
30
29
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
|
31
30
|
"Are you sure you want to delete this map?": "Er du sikker på, at du vil slette dette kort?",
|
|
32
|
-
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
|
33
31
|
"Are you sure you want to restore this version?": "Er du sikker på, at du vil genskabe denne version?",
|
|
34
32
|
"Attach the map to my account": "Knyt kortet til min konto",
|
|
35
33
|
"attribution": "kreditering",
|
|
@@ -59,7 +57,6 @@ const locale = {
|
|
|
59
57
|
"Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur",
|
|
60
58
|
"Click to add a marker": "Klik for at tilføje en markør",
|
|
61
59
|
"Click to continue drawing": "Klik for at fortsætte indtegning",
|
|
62
|
-
"Click to edit": "Klik for at redigere",
|
|
63
60
|
"Click to start drawing a line": "Klik for at starte indtegning af linje",
|
|
64
61
|
"Click to start drawing a polygon": "Klik for at starte indtegning af polygon",
|
|
65
62
|
"Clone of {name}": "Klon af {name}",
|
|
@@ -157,7 +154,6 @@ const locale = {
|
|
|
157
154
|
"Format": "Format",
|
|
158
155
|
"From zoom": "Fra zoom",
|
|
159
156
|
"full backup": "fuld backup",
|
|
160
|
-
"Generic": "Generisk",
|
|
161
157
|
"GeoRSS (only link)": "GeoRSS (kun link)",
|
|
162
158
|
"GeoRSS (title + image)": "GeoRSS (titel + billede)",
|
|
163
159
|
"Go to \"{coords}\"": "Gå til \"{coords}\"",
|
|
@@ -212,7 +208,6 @@ const locale = {
|
|
|
212
208
|
"Link with text: [[https://example.com|text of the link]]": "Link med tekst: [[https://example.com|tekst for link]]",
|
|
213
209
|
"Long credits": "Lang kreditering",
|
|
214
210
|
"Longitude": "Breddegrader",
|
|
215
|
-
"Make main shape": "Gør til primær figur",
|
|
216
211
|
"Manage layers": "Håndter lag",
|
|
217
212
|
"Manual": "Manuel",
|
|
218
213
|
"Map background credits": "Baggrundskortkreditering",
|
|
@@ -273,7 +268,6 @@ const locale = {
|
|
|
273
268
|
"Please be sure the licence is compliant with your use.": "Sørg for, at licensen er kompatibel med din anvendelse.",
|
|
274
269
|
"Please choose a format": "Vælg et format",
|
|
275
270
|
"Please enter the name of the property": "Angiv egenskabens navn",
|
|
276
|
-
"Please enter the new name of this property": "Angiv egenskabens nye navn",
|
|
277
271
|
"Please save the map first": "Gem først kortet",
|
|
278
272
|
"Popup (large)": "Popup (stor)",
|
|
279
273
|
"Popup content style": "Popup-indholdsstil",
|
|
@@ -289,7 +283,6 @@ const locale = {
|
|
|
289
283
|
"Quantiles": "Kvantiler",
|
|
290
284
|
"Recent": "Seneste",
|
|
291
285
|
"Remote data": "Fjerndata",
|
|
292
|
-
"Remove shape from the multi": "Fjern figur fra multi",
|
|
293
286
|
"Replace layer content": "Erstat lags indhold",
|
|
294
287
|
"Restore this version": "Genskab denne version",
|
|
295
288
|
"Save current edits": "Gem nuværende redigeringer",
|
|
@@ -406,7 +399,6 @@ const locale = {
|
|
|
406
399
|
"Until": "Indtil",
|
|
407
400
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Eksempel: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
408
401
|
"Edit in OpenStreetMap": "Rediger i OpenStreetMap",
|
|
409
|
-
"Cannot determine latitude and longitude columns.": "Kan ikke bestemme bredde- og længdegradskolonner.",
|
|
410
402
|
"Back to layers": "Tilbage til lag",
|
|
411
403
|
"Filters": "Filtre",
|
|
412
404
|
"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",
|
|
@@ -576,7 +568,54 @@ const locale = {
|
|
|
576
568
|
"Import data from public open data portals": "Importer data fra offentlige åbne dataportaler",
|
|
577
569
|
"Choose a portal": "Vælg en portal",
|
|
578
570
|
"Limit results to current map view": "Begræns resultaterne til den aktuelle kortvisning",
|
|
579
|
-
"Please choose an instance first.": "Vælg en instans først."
|
|
571
|
+
"Please choose an instance first.": "Vælg en instans først.",
|
|
572
|
+
"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
|
+
"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
|
+
"Cannot process MultiPoint": "Kan ikke bearbejde MultiPoint",
|
|
577
|
+
"Manage Fields": "Administrer felter",
|
|
578
|
+
"Rename this field": "Omdøb dette felt",
|
|
579
|
+
"Delete this field": "Slet dette felt",
|
|
580
|
+
"Double click to edit the name": "Dobbeltklik for at redigere navnet",
|
|
581
|
+
"Print map": "Print map",
|
|
582
|
+
"Choose a format": "Choose a format",
|
|
583
|
+
"Scale map": "Scale map",
|
|
584
|
+
"portrait": "portrait",
|
|
585
|
+
"landscape": "landscape",
|
|
586
|
+
"Print": "Print",
|
|
587
|
+
"Preparing the print…": "Preparing the print…",
|
|
588
|
+
"Large Circle": "Large Circle",
|
|
589
|
+
"Icon size": "Icon size",
|
|
590
|
+
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
+
"Route": "Route",
|
|
592
|
+
"Display the print control": "Display the print control",
|
|
593
|
+
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
+
"Route settings": "Route settings",
|
|
595
|
+
"Transform to regular line": "Transform to regular line",
|
|
596
|
+
"Transform to route": "Transform to route",
|
|
597
|
+
"Restore route": "Restore route",
|
|
598
|
+
"Compute elevation": "Compute elevation",
|
|
599
|
+
"Profile": "Profile",
|
|
600
|
+
"Compute elevations": "Compute elevations",
|
|
601
|
+
"Route preference": "Route preference",
|
|
602
|
+
"Compute route": "Compute route",
|
|
603
|
+
"Walking": "Walking",
|
|
604
|
+
"Hiking": "Hiking",
|
|
605
|
+
"By car": "By car",
|
|
606
|
+
"Cycling": "Cycling",
|
|
607
|
+
"Wheelchair": "Wheelchair",
|
|
608
|
+
"Recommended": "Recommended",
|
|
609
|
+
"Fastest": "Fastest",
|
|
610
|
+
"Shortest": "Shortest",
|
|
611
|
+
"Max time (in minutes)": "Max time (in minutes)",
|
|
612
|
+
"Number of lines": "Number of lines",
|
|
613
|
+
"Distance:": "Distance:",
|
|
614
|
+
"Gain:": "Gain:",
|
|
615
|
+
"Loss:": "Loss:",
|
|
616
|
+
"Altitude:": "Altitude:",
|
|
617
|
+
"Right-click to edit": "Right-click to edit",
|
|
618
|
+
"Draw along routes": "Draw along routes"
|
|
580
619
|
}
|
|
581
620
|
L.registerLocale("da", locale)
|
|
582
621
|
L.setLocale("da")
|
umap/static/umap/locale/da.json
CHANGED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"Activate slideshow mode": "Aktiver fremvisningstilstand",
|
|
17
17
|
"Add a layer": "Tilføj et lag",
|
|
18
18
|
"Add a line to the current multi": "Tilføj en linje til nuværende multi",
|
|
19
|
-
"Add a new property": "Tilføj en ny egenskab",
|
|
20
19
|
"Add a polygon to the current multi": "Tilføj en polygon til aktuel multi",
|
|
21
20
|
"Add image URL": "Tilføj billed-URL",
|
|
22
21
|
"Advanced actions": "Avancerede handlinger",
|
|
@@ -29,7 +28,6 @@
|
|
|
29
28
|
"Animated transitions": "Animerede overgange",
|
|
30
29
|
"Are you sure you want to clone this map and all its datalayers?": "Er du sikker på du vil klone dette kort og alle dets datalag?",
|
|
31
30
|
"Are you sure you want to delete this map?": "Er du sikker på, at du vil slette dette kort?",
|
|
32
|
-
"Are you sure you want to delete this property on all the features?": "Er du sikker på du vil slette denne egenskab på alle objekter?",
|
|
33
31
|
"Are you sure you want to restore this version?": "Er du sikker på, at du vil genskabe denne version?",
|
|
34
32
|
"Attach the map to my account": "Knyt kortet til min konto",
|
|
35
33
|
"attribution": "kreditering",
|
|
@@ -59,7 +57,6 @@
|
|
|
59
57
|
"Click last point to finish shape": "Klik på det det sidste punkt for at afslutte figur",
|
|
60
58
|
"Click to add a marker": "Klik for at tilføje en markør",
|
|
61
59
|
"Click to continue drawing": "Klik for at fortsætte indtegning",
|
|
62
|
-
"Click to edit": "Klik for at redigere",
|
|
63
60
|
"Click to start drawing a line": "Klik for at starte indtegning af linje",
|
|
64
61
|
"Click to start drawing a polygon": "Klik for at starte indtegning af polygon",
|
|
65
62
|
"Clone of {name}": "Klon af {name}",
|
|
@@ -157,7 +154,6 @@
|
|
|
157
154
|
"Format": "Format",
|
|
158
155
|
"From zoom": "Fra zoom",
|
|
159
156
|
"full backup": "fuld backup",
|
|
160
|
-
"Generic": "Generisk",
|
|
161
157
|
"GeoRSS (only link)": "GeoRSS (kun link)",
|
|
162
158
|
"GeoRSS (title + image)": "GeoRSS (titel + billede)",
|
|
163
159
|
"Go to \"{coords}\"": "Gå til \"{coords}\"",
|
|
@@ -212,7 +208,6 @@
|
|
|
212
208
|
"Link with text: [[https://example.com|text of the link]]": "Link med tekst: [[https://example.com|tekst for link]]",
|
|
213
209
|
"Long credits": "Lang kreditering",
|
|
214
210
|
"Longitude": "Breddegrader",
|
|
215
|
-
"Make main shape": "Gør til primær figur",
|
|
216
211
|
"Manage layers": "Håndter lag",
|
|
217
212
|
"Manual": "Manuel",
|
|
218
213
|
"Map background credits": "Baggrundskortkreditering",
|
|
@@ -273,7 +268,6 @@
|
|
|
273
268
|
"Please be sure the licence is compliant with your use.": "Sørg for, at licensen er kompatibel med din anvendelse.",
|
|
274
269
|
"Please choose a format": "Vælg et format",
|
|
275
270
|
"Please enter the name of the property": "Angiv egenskabens navn",
|
|
276
|
-
"Please enter the new name of this property": "Angiv egenskabens nye navn",
|
|
277
271
|
"Please save the map first": "Gem først kortet",
|
|
278
272
|
"Popup (large)": "Popup (stor)",
|
|
279
273
|
"Popup content style": "Popup-indholdsstil",
|
|
@@ -289,7 +283,6 @@
|
|
|
289
283
|
"Quantiles": "Kvantiler",
|
|
290
284
|
"Recent": "Seneste",
|
|
291
285
|
"Remote data": "Fjerndata",
|
|
292
|
-
"Remove shape from the multi": "Fjern figur fra multi",
|
|
293
286
|
"Replace layer content": "Erstat lags indhold",
|
|
294
287
|
"Restore this version": "Genskab denne version",
|
|
295
288
|
"Save current edits": "Gem nuværende redigeringer",
|
|
@@ -406,7 +399,6 @@
|
|
|
406
399
|
"Until": "Indtil",
|
|
407
400
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Eksempel: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
408
401
|
"Edit in OpenStreetMap": "Rediger i OpenStreetMap",
|
|
409
|
-
"Cannot determine latitude and longitude columns.": "Kan ikke bestemme bredde- og længdegradskolonner.",
|
|
410
402
|
"Back to layers": "Tilbage til lag",
|
|
411
403
|
"Filters": "Filtre",
|
|
412
404
|
"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",
|
|
@@ -576,5 +568,52 @@
|
|
|
576
568
|
"Import data from public open data portals": "Importer data fra offentlige åbne dataportaler",
|
|
577
569
|
"Choose a portal": "Vælg en portal",
|
|
578
570
|
"Limit results to current map view": "Begræns resultaterne til den aktuelle kortvisning",
|
|
579
|
-
"Please choose an instance first.": "Vælg en instans først."
|
|
571
|
+
"Please choose an instance first.": "Vælg en instans først.",
|
|
572
|
+
"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
|
+
"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
|
+
"Cannot process MultiPoint": "Kan ikke bearbejde MultiPoint",
|
|
577
|
+
"Manage Fields": "Administrer felter",
|
|
578
|
+
"Rename this field": "Omdøb dette felt",
|
|
579
|
+
"Delete this field": "Slet dette felt",
|
|
580
|
+
"Double click to edit the name": "Dobbeltklik for at redigere navnet",
|
|
581
|
+
"Print map": "Print map",
|
|
582
|
+
"Choose a format": "Choose a format",
|
|
583
|
+
"Scale map": "Scale map",
|
|
584
|
+
"portrait": "portrait",
|
|
585
|
+
"landscape": "landscape",
|
|
586
|
+
"Print": "Print",
|
|
587
|
+
"Preparing the print…": "Preparing the print…",
|
|
588
|
+
"Large Circle": "Large Circle",
|
|
589
|
+
"Icon size": "Icon size",
|
|
590
|
+
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
+
"Route": "Route",
|
|
592
|
+
"Display the print control": "Display the print control",
|
|
593
|
+
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
+
"Route settings": "Route settings",
|
|
595
|
+
"Transform to regular line": "Transform to regular line",
|
|
596
|
+
"Transform to route": "Transform to route",
|
|
597
|
+
"Restore route": "Restore route",
|
|
598
|
+
"Compute elevation": "Compute elevation",
|
|
599
|
+
"Profile": "Profile",
|
|
600
|
+
"Compute elevations": "Compute elevations",
|
|
601
|
+
"Route preference": "Route preference",
|
|
602
|
+
"Compute route": "Compute route",
|
|
603
|
+
"Walking": "Walking",
|
|
604
|
+
"Hiking": "Hiking",
|
|
605
|
+
"By car": "By car",
|
|
606
|
+
"Cycling": "Cycling",
|
|
607
|
+
"Wheelchair": "Wheelchair",
|
|
608
|
+
"Recommended": "Recommended",
|
|
609
|
+
"Fastest": "Fastest",
|
|
610
|
+
"Shortest": "Shortest",
|
|
611
|
+
"Max time (in minutes)": "Max time (in minutes)",
|
|
612
|
+
"Number of lines": "Number of lines",
|
|
613
|
+
"Distance:": "Distance:",
|
|
614
|
+
"Gain:": "Gain:",
|
|
615
|
+
"Loss:": "Loss:",
|
|
616
|
+
"Altitude:": "Altitude:",
|
|
617
|
+
"Right-click to edit": "Right-click to edit",
|
|
618
|
+
"Draw along routes": "Draw along routes"
|
|
580
619
|
}
|
umap/static/umap/locale/de.js
CHANGED
|
@@ -16,7 +16,6 @@ const locale = {
|
|
|
16
16
|
"Activate slideshow mode": "Diashowmodus aktivieren",
|
|
17
17
|
"Add a layer": "Ebene hinzufügen",
|
|
18
18
|
"Add a line to the current multi": "Linie zur vorhandene Gruppe hinzufügen",
|
|
19
|
-
"Add a new property": "Ein Merkmal hinzufügen",
|
|
20
19
|
"Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
|
|
21
20
|
"Add image URL": "Bild-URL hinzufügen",
|
|
22
21
|
"Advanced actions": "Erweiterte Aktionen",
|
|
@@ -29,7 +28,6 @@ const locale = {
|
|
|
29
28
|
"Animated transitions": "Animierte Übergänge",
|
|
30
29
|
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
|
31
30
|
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
|
32
|
-
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
|
33
31
|
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
|
34
32
|
"Attach the map to my account": "Die Karte meinem Benutzerkonto zuordnen",
|
|
35
33
|
"attribution": "Copyright-Hinweis",
|
|
@@ -59,7 +57,6 @@ const locale = {
|
|
|
59
57
|
"Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen",
|
|
60
58
|
"Click to add a marker": "Klicke, um einen Marker hinzuzufügen",
|
|
61
59
|
"Click to continue drawing": "Klicke, um weiter zu zeichnen",
|
|
62
|
-
"Click to edit": "Zum Bearbeiten klicken",
|
|
63
60
|
"Click to start drawing a line": "Klicke, um eine Linie zu zeichnen",
|
|
64
61
|
"Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen",
|
|
65
62
|
"Clone of {name}": "Duplikat von {name}",
|
|
@@ -157,7 +154,6 @@ const locale = {
|
|
|
157
154
|
"Format": "Format",
|
|
158
155
|
"From zoom": "Von Zoomstufe",
|
|
159
156
|
"full backup": "Komplettes Backup",
|
|
160
|
-
"Generic": "Generisch",
|
|
161
157
|
"GeoRSS (only link)": "GeoRSS (nur Link)",
|
|
162
158
|
"GeoRSS (title + image)": "GeoRSS (Titel + Bild)",
|
|
163
159
|
"Go to \"{coords}\"": "Gehe zu „{coords}“",
|
|
@@ -212,7 +208,6 @@ const locale = {
|
|
|
212
208
|
"Link with text: [[https://example.com|text of the link]]": "Link mit Text: [[http://beispiel.com|Text für den Link]]",
|
|
213
209
|
"Long credits": "Lange Credits",
|
|
214
210
|
"Longitude": "Geogr. Länge",
|
|
215
|
-
"Make main shape": "Hauptform erstellen",
|
|
216
211
|
"Manage layers": "Ebenen verwalten",
|
|
217
212
|
"Manual": "Anleitung",
|
|
218
213
|
"Map background credits": "Credits der Hintergrundkarte",
|
|
@@ -273,7 +268,6 @@ const locale = {
|
|
|
273
268
|
"Please be sure the licence is compliant with your use.": "Stelle bitte sicher, dass die Lizenz mit deiner Verwendung kompatibel ist.",
|
|
274
269
|
"Please choose a format": "Bitte wähle ein Format",
|
|
275
270
|
"Please enter the name of the property": "Bitte gib den Namen des Merkmals ein",
|
|
276
|
-
"Please enter the new name of this property": "Bitte gib den neuen Namen des Merkmals ein",
|
|
277
271
|
"Please save the map first": "Bitte zuerst die Karte speichern",
|
|
278
272
|
"Popup (large)": "Popup (groß)",
|
|
279
273
|
"Popup content style": "Popupinhaltstil",
|
|
@@ -289,7 +283,6 @@ const locale = {
|
|
|
289
283
|
"Quantiles": "Quantile",
|
|
290
284
|
"Recent": "Neueste",
|
|
291
285
|
"Remote data": "Ausgelagerte Daten",
|
|
292
|
-
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
293
286
|
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
294
287
|
"Restore this version": "Diese Version wiederherstellen",
|
|
295
288
|
"Save current edits": "Aktuelle Änderungen speichern",
|
|
@@ -406,7 +399,6 @@ const locale = {
|
|
|
406
399
|
"Until": "Bis",
|
|
407
400
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Beispiel: key1,key2|Beschriftung 2,key3|Beschriftung 3|checkbox",
|
|
408
401
|
"Edit in OpenStreetMap": "Bearbeiten in OpenStreetMap",
|
|
409
|
-
"Cannot determine latitude and longitude columns.": "Die Spalten für Breiten- und Längengrad können nicht bestimmt werden.",
|
|
410
402
|
"Back to layers": "Zurück zu den Kartenebenen",
|
|
411
403
|
"Filters": "Filter",
|
|
412
404
|
"Comma separated list of properties to use when filtering features by text input": "Kommagetrennte Liste der Merkmale, welche beim Filtern von Elementen verwendet werden sollen",
|
|
@@ -576,7 +568,54 @@ const locale = {
|
|
|
576
568
|
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
569
|
"Choose a portal": "Choose a portal",
|
|
578
570
|
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
-
"Please choose an instance first.": "Please choose an instance first."
|
|
571
|
+
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
|
+
"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
|
+
"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
|
+
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
|
+
"Manage Fields": "Manage Fields",
|
|
578
|
+
"Rename this field": "Rename this field",
|
|
579
|
+
"Delete this field": "Delete this field",
|
|
580
|
+
"Double click to edit the name": "Double click to edit the name",
|
|
581
|
+
"Print map": "Print map",
|
|
582
|
+
"Choose a format": "Choose a format",
|
|
583
|
+
"Scale map": "Scale map",
|
|
584
|
+
"portrait": "portrait",
|
|
585
|
+
"landscape": "landscape",
|
|
586
|
+
"Print": "Print",
|
|
587
|
+
"Preparing the print…": "Preparing the print…",
|
|
588
|
+
"Large Circle": "Large Circle",
|
|
589
|
+
"Icon size": "Icon size",
|
|
590
|
+
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
+
"Route": "Route",
|
|
592
|
+
"Display the print control": "Display the print control",
|
|
593
|
+
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
+
"Route settings": "Route settings",
|
|
595
|
+
"Transform to regular line": "Transform to regular line",
|
|
596
|
+
"Transform to route": "Transform to route",
|
|
597
|
+
"Restore route": "Restore route",
|
|
598
|
+
"Compute elevation": "Compute elevation",
|
|
599
|
+
"Profile": "Profile",
|
|
600
|
+
"Compute elevations": "Compute elevations",
|
|
601
|
+
"Route preference": "Route preference",
|
|
602
|
+
"Compute route": "Compute route",
|
|
603
|
+
"Walking": "Walking",
|
|
604
|
+
"Hiking": "Hiking",
|
|
605
|
+
"By car": "By car",
|
|
606
|
+
"Cycling": "Cycling",
|
|
607
|
+
"Wheelchair": "Wheelchair",
|
|
608
|
+
"Recommended": "Recommended",
|
|
609
|
+
"Fastest": "Fastest",
|
|
610
|
+
"Shortest": "Shortest",
|
|
611
|
+
"Max time (in minutes)": "Max time (in minutes)",
|
|
612
|
+
"Number of lines": "Number of lines",
|
|
613
|
+
"Distance:": "Distance:",
|
|
614
|
+
"Gain:": "Gain:",
|
|
615
|
+
"Loss:": "Loss:",
|
|
616
|
+
"Altitude:": "Altitude:",
|
|
617
|
+
"Right-click to edit": "Right-click to edit",
|
|
618
|
+
"Draw along routes": "Draw along routes"
|
|
580
619
|
}
|
|
581
620
|
L.registerLocale("de", locale)
|
|
582
621
|
L.setLocale("de")
|
umap/static/umap/locale/de.json
CHANGED
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"Activate slideshow mode": "Diashowmodus aktivieren",
|
|
17
17
|
"Add a layer": "Ebene hinzufügen",
|
|
18
18
|
"Add a line to the current multi": "Linie zur vorhandene Gruppe hinzufügen",
|
|
19
|
-
"Add a new property": "Ein Merkmal hinzufügen",
|
|
20
19
|
"Add a polygon to the current multi": "Fläche zur vorhandene Gruppe hinzufügen",
|
|
21
20
|
"Add image URL": "Bild-URL hinzufügen",
|
|
22
21
|
"Advanced actions": "Erweiterte Aktionen",
|
|
@@ -29,7 +28,6 @@
|
|
|
29
28
|
"Animated transitions": "Animierte Übergänge",
|
|
30
29
|
"Are you sure you want to clone this map and all its datalayers?": "Möchtest du die Karte und ihre Datenebenen wirklich duplizieren?",
|
|
31
30
|
"Are you sure you want to delete this map?": "Willst du diese Karte wirklich löschen?",
|
|
32
|
-
"Are you sure you want to delete this property on all the features?": "Bist du sicher, dass du dieses Merkmal bei allen Elementen löschen willst?",
|
|
33
31
|
"Are you sure you want to restore this version?": "Bist du sicher, dass du diese Version wiederherstellen willst?",
|
|
34
32
|
"Attach the map to my account": "Die Karte meinem Benutzerkonto zuordnen",
|
|
35
33
|
"attribution": "Copyright-Hinweis",
|
|
@@ -59,7 +57,6 @@
|
|
|
59
57
|
"Click last point to finish shape": "Klicke den letzten Punkt an, um die Form abzuschließen",
|
|
60
58
|
"Click to add a marker": "Klicke, um einen Marker hinzuzufügen",
|
|
61
59
|
"Click to continue drawing": "Klicke, um weiter zu zeichnen",
|
|
62
|
-
"Click to edit": "Zum Bearbeiten klicken",
|
|
63
60
|
"Click to start drawing a line": "Klicke, um eine Linie zu zeichnen",
|
|
64
61
|
"Click to start drawing a polygon": "Klicke, um eine Fläche zu zeichnen",
|
|
65
62
|
"Clone of {name}": "Duplikat von {name}",
|
|
@@ -157,7 +154,6 @@
|
|
|
157
154
|
"Format": "Format",
|
|
158
155
|
"From zoom": "Von Zoomstufe",
|
|
159
156
|
"full backup": "Komplettes Backup",
|
|
160
|
-
"Generic": "Generisch",
|
|
161
157
|
"GeoRSS (only link)": "GeoRSS (nur Link)",
|
|
162
158
|
"GeoRSS (title + image)": "GeoRSS (Titel + Bild)",
|
|
163
159
|
"Go to \"{coords}\"": "Gehe zu „{coords}“",
|
|
@@ -212,7 +208,6 @@
|
|
|
212
208
|
"Link with text: [[https://example.com|text of the link]]": "Link mit Text: [[http://beispiel.com|Text für den Link]]",
|
|
213
209
|
"Long credits": "Lange Credits",
|
|
214
210
|
"Longitude": "Geogr. Länge",
|
|
215
|
-
"Make main shape": "Hauptform erstellen",
|
|
216
211
|
"Manage layers": "Ebenen verwalten",
|
|
217
212
|
"Manual": "Anleitung",
|
|
218
213
|
"Map background credits": "Credits der Hintergrundkarte",
|
|
@@ -273,7 +268,6 @@
|
|
|
273
268
|
"Please be sure the licence is compliant with your use.": "Stelle bitte sicher, dass die Lizenz mit deiner Verwendung kompatibel ist.",
|
|
274
269
|
"Please choose a format": "Bitte wähle ein Format",
|
|
275
270
|
"Please enter the name of the property": "Bitte gib den Namen des Merkmals ein",
|
|
276
|
-
"Please enter the new name of this property": "Bitte gib den neuen Namen des Merkmals ein",
|
|
277
271
|
"Please save the map first": "Bitte zuerst die Karte speichern",
|
|
278
272
|
"Popup (large)": "Popup (groß)",
|
|
279
273
|
"Popup content style": "Popupinhaltstil",
|
|
@@ -289,7 +283,6 @@
|
|
|
289
283
|
"Quantiles": "Quantile",
|
|
290
284
|
"Recent": "Neueste",
|
|
291
285
|
"Remote data": "Ausgelagerte Daten",
|
|
292
|
-
"Remove shape from the multi": "Form aus der Gruppe löschen",
|
|
293
286
|
"Replace layer content": "Ebeneninhalt ersetzen",
|
|
294
287
|
"Restore this version": "Diese Version wiederherstellen",
|
|
295
288
|
"Save current edits": "Aktuelle Änderungen speichern",
|
|
@@ -406,7 +399,6 @@
|
|
|
406
399
|
"Until": "Bis",
|
|
407
400
|
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Beispiel: key1,key2|Beschriftung 2,key3|Beschriftung 3|checkbox",
|
|
408
401
|
"Edit in OpenStreetMap": "Bearbeiten in OpenStreetMap",
|
|
409
|
-
"Cannot determine latitude and longitude columns.": "Die Spalten für Breiten- und Längengrad können nicht bestimmt werden.",
|
|
410
402
|
"Back to layers": "Zurück zu den Kartenebenen",
|
|
411
403
|
"Filters": "Filter",
|
|
412
404
|
"Comma separated list of properties to use when filtering features by text input": "Kommagetrennte Liste der Merkmale, welche beim Filtern von Elementen verwendet werden sollen",
|
|
@@ -576,5 +568,52 @@
|
|
|
576
568
|
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
569
|
"Choose a portal": "Choose a portal",
|
|
578
570
|
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
-
"Please choose an instance first.": "Please choose an instance first."
|
|
571
|
+
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
|
+
"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
|
+
"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
|
+
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
|
+
"Manage Fields": "Manage Fields",
|
|
578
|
+
"Rename this field": "Rename this field",
|
|
579
|
+
"Delete this field": "Delete this field",
|
|
580
|
+
"Double click to edit the name": "Double click to edit the name",
|
|
581
|
+
"Print map": "Print map",
|
|
582
|
+
"Choose a format": "Choose a format",
|
|
583
|
+
"Scale map": "Scale map",
|
|
584
|
+
"portrait": "portrait",
|
|
585
|
+
"landscape": "landscape",
|
|
586
|
+
"Print": "Print",
|
|
587
|
+
"Preparing the print…": "Preparing the print…",
|
|
588
|
+
"Large Circle": "Large Circle",
|
|
589
|
+
"Icon size": "Icon size",
|
|
590
|
+
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
+
"Route": "Route",
|
|
592
|
+
"Display the print control": "Display the print control",
|
|
593
|
+
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
+
"Route settings": "Route settings",
|
|
595
|
+
"Transform to regular line": "Transform to regular line",
|
|
596
|
+
"Transform to route": "Transform to route",
|
|
597
|
+
"Restore route": "Restore route",
|
|
598
|
+
"Compute elevation": "Compute elevation",
|
|
599
|
+
"Profile": "Profile",
|
|
600
|
+
"Compute elevations": "Compute elevations",
|
|
601
|
+
"Route preference": "Route preference",
|
|
602
|
+
"Compute route": "Compute route",
|
|
603
|
+
"Walking": "Walking",
|
|
604
|
+
"Hiking": "Hiking",
|
|
605
|
+
"By car": "By car",
|
|
606
|
+
"Cycling": "Cycling",
|
|
607
|
+
"Wheelchair": "Wheelchair",
|
|
608
|
+
"Recommended": "Recommended",
|
|
609
|
+
"Fastest": "Fastest",
|
|
610
|
+
"Shortest": "Shortest",
|
|
611
|
+
"Max time (in minutes)": "Max time (in minutes)",
|
|
612
|
+
"Number of lines": "Number of lines",
|
|
613
|
+
"Distance:": "Distance:",
|
|
614
|
+
"Gain:": "Gain:",
|
|
615
|
+
"Loss:": "Loss:",
|
|
616
|
+
"Altitude:": "Altitude:",
|
|
617
|
+
"Right-click to edit": "Right-click to edit",
|
|
618
|
+
"Draw along routes": "Draw along routes"
|
|
580
619
|
}
|