umap-project 2.9.0b0__py3-none-any.whl → 2.9.1__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/admin.py +15 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +111 -67
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +112 -67
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +132 -87
- umap/locale/en/LC_MESSAGES/django.po +11 -10
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +117 -71
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +11 -10
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +219 -173
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +145 -100
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +198 -152
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +118 -73
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +112 -67
- umap/middleware.py +30 -1
- umap/models.py +20 -10
- umap/settings/base.py +2 -1
- umap/static/umap/base.css +4 -1
- umap/static/umap/css/bar.css +32 -0
- umap/static/umap/css/contextmenu.css +14 -2
- umap/static/umap/css/form.css +5 -10
- umap/static/umap/css/icon.css +39 -3
- umap/static/umap/css/panel.css +18 -1
- umap/static/umap/css/popup.css +0 -1
- umap/static/umap/img/16-white.svg +3 -3
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +17 -16
- umap/static/umap/img/24.svg +29 -18
- umap/static/umap/img/providers/twitter-oauth2.png +0 -0
- umap/static/umap/img/source/16-white.svg +4 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +20 -18
- umap/static/umap/img/source/24.svg +30 -19
- umap/static/umap/js/modules/browser.js +2 -2
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +80 -32
- umap/static/umap/js/modules/data/layer.js +37 -50
- umap/static/umap/js/modules/form/builder.js +23 -22
- umap/static/umap/js/modules/form/fields.js +13 -5
- umap/static/umap/js/modules/formatter.js +6 -2
- umap/static/umap/js/modules/help.js +17 -23
- umap/static/umap/js/modules/importer.js +5 -2
- umap/static/umap/js/modules/permissions.js +6 -2
- umap/static/umap/js/modules/rendering/layers/classified.js +1 -1
- umap/static/umap/js/modules/rendering/map.js +1 -21
- umap/static/umap/js/modules/rendering/ui.js +20 -38
- umap/static/umap/js/modules/rules.js +1 -1
- umap/static/umap/js/modules/saving.js +5 -0
- umap/static/umap/js/modules/schema.js +4 -1
- umap/static/umap/js/modules/sync/engine.js +39 -14
- umap/static/umap/js/modules/sync/updaters.js +7 -6
- umap/static/umap/js/modules/sync/websocket.js +48 -40
- umap/static/umap/js/modules/ui/bar.js +84 -0
- umap/static/umap/js/modules/ui/contextmenu.js +9 -2
- umap/static/umap/js/modules/ui/panel.js +5 -1
- umap/static/umap/js/modules/umap.js +85 -44
- umap/static/umap/js/umap.controls.js +11 -341
- umap/static/umap/locale/am_ET.js +17 -5
- umap/static/umap/locale/am_ET.json +17 -5
- umap/static/umap/locale/ar.js +17 -5
- umap/static/umap/locale/ar.json +17 -5
- umap/static/umap/locale/ast.js +17 -5
- umap/static/umap/locale/ast.json +17 -5
- umap/static/umap/locale/bg.js +17 -5
- umap/static/umap/locale/bg.json +17 -5
- umap/static/umap/locale/br.js +20 -15
- umap/static/umap/locale/br.json +20 -15
- umap/static/umap/locale/ca.js +8 -4
- umap/static/umap/locale/ca.json +8 -4
- umap/static/umap/locale/cs_CZ.js +8 -4
- umap/static/umap/locale/cs_CZ.json +8 -4
- umap/static/umap/locale/da.js +17 -5
- umap/static/umap/locale/da.json +17 -5
- umap/static/umap/locale/de.js +8 -4
- umap/static/umap/locale/de.json +8 -4
- umap/static/umap/locale/el.js +54 -50
- umap/static/umap/locale/el.json +54 -50
- umap/static/umap/locale/en.js +9 -4
- umap/static/umap/locale/en.json +9 -4
- umap/static/umap/locale/en_US.json +17 -5
- umap/static/umap/locale/es.js +13 -9
- umap/static/umap/locale/es.json +13 -9
- umap/static/umap/locale/et.js +17 -5
- umap/static/umap/locale/et.json +17 -5
- umap/static/umap/locale/eu.js +8 -4
- umap/static/umap/locale/eu.json +8 -4
- umap/static/umap/locale/fa_IR.js +8 -4
- umap/static/umap/locale/fa_IR.json +8 -4
- umap/static/umap/locale/fi.js +17 -5
- umap/static/umap/locale/fi.json +17 -5
- umap/static/umap/locale/fr.js +9 -4
- umap/static/umap/locale/fr.json +9 -4
- umap/static/umap/locale/gl.js +13 -9
- umap/static/umap/locale/gl.json +13 -9
- umap/static/umap/locale/he.js +17 -5
- umap/static/umap/locale/he.json +17 -5
- umap/static/umap/locale/hr.js +17 -5
- umap/static/umap/locale/hr.json +17 -5
- umap/static/umap/locale/hu.js +8 -4
- umap/static/umap/locale/hu.json +8 -4
- umap/static/umap/locale/id.js +17 -5
- umap/static/umap/locale/id.json +17 -5
- umap/static/umap/locale/is.js +17 -5
- umap/static/umap/locale/is.json +17 -5
- umap/static/umap/locale/it.js +31 -27
- umap/static/umap/locale/it.json +31 -27
- umap/static/umap/locale/ja.js +17 -5
- umap/static/umap/locale/ja.json +17 -5
- umap/static/umap/locale/ko.js +17 -5
- umap/static/umap/locale/ko.json +17 -5
- umap/static/umap/locale/lt.js +17 -5
- umap/static/umap/locale/lt.json +17 -5
- umap/static/umap/locale/ms.js +8 -4
- umap/static/umap/locale/ms.json +8 -4
- umap/static/umap/locale/nl.js +132 -127
- umap/static/umap/locale/nl.json +132 -127
- umap/static/umap/locale/no.js +17 -5
- umap/static/umap/locale/no.json +17 -5
- umap/static/umap/locale/pl.js +8 -4
- umap/static/umap/locale/pl.json +8 -4
- umap/static/umap/locale/pl_PL.json +17 -5
- umap/static/umap/locale/pt.js +38 -33
- umap/static/umap/locale/pt.json +38 -33
- umap/static/umap/locale/pt_BR.js +17 -5
- umap/static/umap/locale/pt_BR.json +17 -5
- umap/static/umap/locale/pt_PT.js +8 -4
- umap/static/umap/locale/pt_PT.json +8 -4
- umap/static/umap/locale/ro.js +17 -5
- umap/static/umap/locale/ro.json +17 -5
- umap/static/umap/locale/ru.js +17 -5
- umap/static/umap/locale/ru.json +17 -5
- umap/static/umap/locale/sk_SK.js +17 -5
- umap/static/umap/locale/sk_SK.json +17 -5
- umap/static/umap/locale/sl.js +17 -5
- umap/static/umap/locale/sl.json +17 -5
- umap/static/umap/locale/sr.js +17 -5
- umap/static/umap/locale/sr.json +17 -5
- umap/static/umap/locale/sv.js +17 -5
- umap/static/umap/locale/sv.json +17 -5
- umap/static/umap/locale/th_TH.js +8 -4
- umap/static/umap/locale/th_TH.json +8 -4
- umap/static/umap/locale/tr.js +17 -5
- umap/static/umap/locale/tr.json +17 -5
- umap/static/umap/locale/uk_UA.js +17 -5
- umap/static/umap/locale/uk_UA.json +17 -5
- umap/static/umap/locale/vi.js +17 -5
- umap/static/umap/locale/vi.json +17 -5
- umap/static/umap/locale/vi_VN.json +17 -5
- umap/static/umap/locale/zh.js +17 -5
- umap/static/umap/locale/zh.json +17 -5
- umap/static/umap/locale/zh_CN.json +17 -5
- umap/static/umap/locale/zh_TW.Big5.json +17 -5
- umap/static/umap/locale/zh_TW.js +14 -10
- umap/static/umap/locale/zh_TW.json +14 -10
- umap/static/umap/map.css +17 -68
- umap/static/umap/nav.css +4 -0
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/dompurify/purify.es.js +138 -354
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/editable/Leaflet.Editable.js +1 -0
- umap/sync/app.py +19 -13
- umap/sync/payloads.py +8 -1
- umap/templates/auth/user_form.html +2 -2
- umap/templates/umap/content_footer.html +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/js.html +0 -1
- umap/templates/umap/messages.html +5 -1
- umap/templates/umap/search_bar.html +1 -0
- umap/tests/integration/test_anonymous_owned_map.py +2 -2
- umap/tests/integration/test_basics.py +2 -5
- umap/tests/integration/test_categorized_layer.py +4 -8
- umap/tests/integration/test_choropleth.py +1 -1
- umap/tests/integration/test_conditional_rules.py +3 -3
- umap/tests/integration/test_draw_polygon.py +11 -19
- umap/tests/integration/test_draw_polyline.py +6 -14
- umap/tests/integration/test_edit_datalayer.py +10 -10
- umap/tests/integration/test_edit_map.py +27 -1
- umap/tests/integration/test_edit_marker.py +5 -5
- umap/tests/integration/test_edit_polygon.py +5 -5
- umap/tests/integration/test_features_id_generation.py +2 -6
- umap/tests/integration/test_import.py +93 -29
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_save.py +2 -2
- umap/tests/integration/test_tableeditor.py +7 -7
- umap/tests/integration/test_view_marker.py +10 -0
- umap/tests/integration/test_websocket_sync.py +128 -32
- umap/utils.py +4 -1
- umap/views.py +0 -9
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/METADATA +13 -13
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/RECORD +202 -204
- umap/static/umap/vendors/toolbar/leaflet.toolbar.css +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar.js +0 -1
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/WHEEL +0 -0
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.9.0b0.dist-info → umap_project-2.9.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/nl.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"(area: {measure})": "(
|
|
3
|
-
"(length: {measure})": "(
|
|
2
|
+
"(area: {measure})": "(oppervlakte: {measure})",
|
|
3
|
+
"(length: {measure})": "(lengte: {measure})",
|
|
4
4
|
"# one hash for main heading": "# een hekje voor koptekst 1",
|
|
5
5
|
"## two hashes for second heading": "## twee hekjes voor koptekst 2",
|
|
6
6
|
"### three hashes for third heading": "### drie hekjes voor koptekst 3",
|
|
@@ -181,12 +181,12 @@ const locale = {
|
|
|
181
181
|
"Icon shape": "Vorm van het icoon",
|
|
182
182
|
"Icon symbol": "Symbool voor het icoon",
|
|
183
183
|
"If false, the polygon or line will act as a part of the underlying map.": "Indien uit, zal de polygoon of lijn dienen als deel van de onderliggende kaart.",
|
|
184
|
-
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe
|
|
185
|
-
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe
|
|
184
|
+
"Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe met gespecifieerde hoogte (in px): {{{https://iframe.url.com|height}}}",
|
|
185
|
+
"Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe met gespecifieerde hoogte en breedte (in px): {{{https://iframe.url.com|height*width}}}",
|
|
186
186
|
"iframe": "iframe",
|
|
187
187
|
"Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
|
|
188
|
-
"Image with custom width (in px): {{https://image.url.com|width}}": "
|
|
189
|
-
"Image: {{https://image.url.com}}": "
|
|
188
|
+
"Image with custom width (in px): {{https://image.url.com|width}}": "Afbeelding met aangepaste breedte (in px): {{https://image.url.com|width}}",
|
|
189
|
+
"Image: {{https://image.url.com}}": "Afbeelding: {{https://image.url.com}}",
|
|
190
190
|
"Import data": "Gegevens importeren",
|
|
191
191
|
"Import in a new layer": "Importeer in een nieuwe laag",
|
|
192
192
|
"Imports all umap data, including layers and settings.": "Importeert alle umap gegevens, inclusief lagen en instellingen",
|
|
@@ -214,7 +214,7 @@ const locale = {
|
|
|
214
214
|
"Limit bounds": "Gebied begrenzen",
|
|
215
215
|
"Link to view the map": "Link om de kaart te zien",
|
|
216
216
|
"Link to…": "Link naar…",
|
|
217
|
-
"Link with text: [[https://example.com|text of the link]]": "Link
|
|
217
|
+
"Link with text: [[https://example.com|text of the link]]": "Link met tekst: [[https://example.com|tekst van de link]]",
|
|
218
218
|
"Long credits": "Lange bronvermelding",
|
|
219
219
|
"Longitude": "Lengtegraad",
|
|
220
220
|
"Make main shape": "Maak hoofd-vorm",
|
|
@@ -299,7 +299,6 @@ const locale = {
|
|
|
299
299
|
"Restore this version": "Keer terug naar deze versie",
|
|
300
300
|
"Save current edits": "Huidige bewerkingen opslaan",
|
|
301
301
|
"Save map": "Kaart opslaan",
|
|
302
|
-
"Save this center and zoom": "Bewaar deze positie op de kaart en het zoomniveau",
|
|
303
302
|
"Save this location as new feature": "Sla deze locatie op als nieuw object",
|
|
304
303
|
"Save": "Opslaan",
|
|
305
304
|
"Saved center and zoom": "Midden en zoom bewaard",
|
|
@@ -318,7 +317,7 @@ const locale = {
|
|
|
318
317
|
"Show this layer in the caption": "Toon deze laag in het bijschrift",
|
|
319
318
|
"Show/hide layer": "Laag tonen/verbergen",
|
|
320
319
|
"Side panel": "Zijpaneel",
|
|
321
|
-
"Simple link: [[https://example.com]]": "
|
|
320
|
+
"Simple link: [[https://example.com]]": "Eenvoudige link: [[http://example.com]]",
|
|
322
321
|
"Simplify": "Vereenvoudig",
|
|
323
322
|
"Skipping unknown geometry.type: {type}": "Overgeslaan wegens onbekend geometry.type: {type}",
|
|
324
323
|
"Slideshow": "Slideshow",
|
|
@@ -337,7 +336,7 @@ const locale = {
|
|
|
337
336
|
"Table": "Tabel",
|
|
338
337
|
"Text color for the cluster label": "Kleur van de text voor het label van de cluster",
|
|
339
338
|
"Text formatting": "Opmaak van de tekst",
|
|
340
|
-
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "
|
|
339
|
+
"The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "De naam van de eigenschap die als functielabel moet worden gebruikt (bijvoorbeeld: 'naam'). U kunt ook eigenschappen tussen haakjes gebruiken om er meer dan één te gebruiken of te mengen met statische inhoud (bv.: \"{naam} in {plaats}\")",
|
|
341
340
|
"The name of the property to use as feature unique identifier.": "De naam van de eigenschap die als unieke identificator van objecten geldt",
|
|
342
341
|
"The zoom and center have been modified.": "Zoom en centrum zijn bijgewerkt.",
|
|
343
342
|
"TMS format": "TMS-formaat",
|
|
@@ -401,134 +400,140 @@ const locale = {
|
|
|
401
400
|
"{distance} miles": "{distance} mijl",
|
|
402
401
|
"{distance} NM": "{distance} NM",
|
|
403
402
|
"{distance} yd": "{distance} yd",
|
|
404
|
-
"Edit map name and caption": "
|
|
405
|
-
"Map advanced properties": "
|
|
406
|
-
"Edit map details": "
|
|
407
|
-
"Back to browser": "
|
|
408
|
-
"Toggle size": "
|
|
409
|
-
"Display the caption control": "
|
|
403
|
+
"Edit map name and caption": "Bewerk de naam en het bijschrift van de kaart",
|
|
404
|
+
"Map advanced properties": "Geavanceerde eigenschappen in kaart brengen",
|
|
405
|
+
"Edit map details": "Kaartdetails bewerken",
|
|
406
|
+
"Back to browser": "Terug naar browser",
|
|
407
|
+
"Toggle size": "Grootte wisselen",
|
|
408
|
+
"Display the caption control": "De controleknop van de Het ondertiteling weergeven",
|
|
410
409
|
"<empty value>": "<empty value>",
|
|
411
410
|
"Min": "Min",
|
|
412
411
|
"Max": "Max",
|
|
413
|
-
"From": "
|
|
414
|
-
"Until": "
|
|
415
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
416
|
-
"Edit in OpenStreetMap": "
|
|
417
|
-
"Cannot determine latitude and longitude columns.": "
|
|
418
|
-
"Back to layers": "
|
|
412
|
+
"From": "Van",
|
|
413
|
+
"Until": "Tot",
|
|
414
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Voorbeeld: sleutel1,sleutel2|Label 2,sleutel3|Label 3|selectievakje",
|
|
415
|
+
"Edit in OpenStreetMap": "Bewerken in OpenStreetMap",
|
|
416
|
+
"Cannot determine latitude and longitude columns.": "Kan lengte- en breedtegraadkolommen niet bepalen.",
|
|
417
|
+
"Back to layers": "Terug naar lagen",
|
|
419
418
|
"Filters": "Filters",
|
|
420
|
-
"Comma separated list of properties to use when filtering features by text input": "
|
|
421
|
-
"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.": "
|
|
422
|
-
"Search keys": "
|
|
423
|
-
"Filters keys": "
|
|
419
|
+
"Comma separated list of properties to use when filtering features by text input": "Door komma's gescheiden lijst met eigenschappen die moeten worden gebruikt bij het filteren van elementen op tekstinvoer",
|
|
420
|
+
"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.": "Door komma's gescheiden lijst met eigenschappen die voor filters moeten worden gebruikt (bv.: mijnsleutel, anderesleutel). Als u het label wilt beheren, voeg je het toe na een | (bv.: mijnsleutel|Mijn Sleutel, otherkey|Andere Sleutel). Als u het invoerveldtype wilt beheren, voeg je het na een ander | toe (bv.: mijnsleutel|Mijn Sleutel|aanvinkvak,anderesleutel|Andere Sleutel|datum/tijd). Toegestane waarden voor het invoerveldtype zijn aanvinkvak (standaard), radioknop, nummer, datum en datum/tijd.",
|
|
421
|
+
"Search keys": "Zoek sleutels",
|
|
422
|
+
"Filters keys": "Filter sleutels",
|
|
424
423
|
"Filter data": "Filter data",
|
|
425
|
-
"Search map features…": "
|
|
426
|
-
"Reset all": "
|
|
424
|
+
"Search map features…": "Zoek naar kaarteigenschappen...",
|
|
425
|
+
"Reset all": "Alles herstellen",
|
|
427
426
|
"Open browser": "Open browser",
|
|
428
|
-
"Open caption": "Open
|
|
429
|
-
"Your map has been created with an anonymous account!": "
|
|
430
|
-
"Real-time collaboration": "
|
|
431
|
-
"Cannot parse data": "
|
|
432
|
-
"Start typing...": "
|
|
433
|
-
"No result": "
|
|
427
|
+
"Open caption": "Open bijschrift",
|
|
428
|
+
"Your map has been created with an anonymous account!": "Je kaart is gemaakt met een anoniem account!",
|
|
429
|
+
"Real-time collaboration": "Realtime samenwerking",
|
|
430
|
+
"Cannot parse data": "Kan data niet parseren",
|
|
431
|
+
"Start typing...": "Begin met typen...",
|
|
432
|
+
"No result": "Geen resultaat",
|
|
434
433
|
"Data browser": "Data browser",
|
|
435
|
-
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "
|
|
436
|
-
"Overpass supported expressions": "Overpass
|
|
437
|
-
"key (eg. building)": "
|
|
438
|
-
"!key (eg. !name)": "!
|
|
439
|
-
"key=value (eg. building=yes)": "
|
|
440
|
-
"key!=value (eg. building!=yes)": "
|
|
441
|
-
"key~value (eg. name~Grisy)": "
|
|
442
|
-
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "
|
|
443
|
-
"More info about Overpass syntax": "
|
|
444
|
-
"For more complex needs, see": "
|
|
445
|
-
"Choose data": "
|
|
446
|
-
"Choose the format": "
|
|
447
|
-
"Choose the layer": "
|
|
448
|
-
"Layer name": "
|
|
449
|
-
"Choose import mode": "
|
|
450
|
-
"Copy into the layer": "
|
|
451
|
-
"Link to the layer as remote data": "
|
|
452
|
-
"Condition": "
|
|
453
|
-
"key=value or key!=value": "
|
|
454
|
-
"Are you sure you want to delete this rule?": "
|
|
455
|
-
"empty rule": "
|
|
456
|
-
"Conditional style rules": "
|
|
457
|
-
"Add rule": "
|
|
434
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "Bij het verstrekken van een URL kan uMap de externe data in een laag kopiëren, of deze URL toevoegen als externe bron van de laag. In dat geval worden de data altijd van die URL opgehaald en dus up-to-date, maar is het niet mogelijk om ze in uMap te bewerken.",
|
|
435
|
+
"Overpass supported expressions": "Overpass Ondersteunde expressies",
|
|
436
|
+
"key (eg. building)": "sleutel (bijv. gebouw)",
|
|
437
|
+
"!key (eg. !name)": "!sleutel (bv. !naam)",
|
|
438
|
+
"key=value (eg. building=yes)": "sleutel=waarde (bv. gebouw=ja)",
|
|
439
|
+
"key!=value (eg. building!=yes)": "sleuyel!=waarde (bv. gebouw!=yes)",
|
|
440
|
+
"key~value (eg. name~Grisy)": "sleutel~waarde (bv. naam~Grisy)",
|
|
441
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "sleutel=\"waarde|waarde2\" (bv. naam=\"Parijs|Berlijn\")",
|
|
442
|
+
"More info about Overpass syntax": "Meer informatie over de syntaxis van Overpass",
|
|
443
|
+
"For more complex needs, see": "Voor complexere behoeften, zie",
|
|
444
|
+
"Choose data": "Kies data",
|
|
445
|
+
"Choose the format": "Kies het formaat",
|
|
446
|
+
"Choose the layer": "Kies de laag",
|
|
447
|
+
"Layer name": "Naam van de laag",
|
|
448
|
+
"Choose import mode": "Kies import modus",
|
|
449
|
+
"Copy into the layer": "Kopieer in de laag",
|
|
450
|
+
"Link to the layer as remote data": "Koppeling naar de laag als externe data",
|
|
451
|
+
"Condition": "Conditie",
|
|
452
|
+
"key=value or key!=value": "Sleutel=waarde of sleutel!=waarde",
|
|
453
|
+
"Are you sure you want to delete this rule?": "Weet je zeker dat je deze regel wilt verwijderen?",
|
|
454
|
+
"empty rule": "lege regel",
|
|
455
|
+
"Conditional style rules": "Voorwaardelijke stijlregels",
|
|
456
|
+
"Add rule": "Voeg regel toe",
|
|
458
457
|
"Browser: data": "Browser: data",
|
|
459
|
-
"Browser: layers": "Browser:
|
|
458
|
+
"Browser: layers": "Browser: lagen",
|
|
460
459
|
"Browser: filters": "Browser: filters",
|
|
461
|
-
"Enable real-time collaboration": "
|
|
462
|
-
"✅ Copied!": "✅
|
|
463
|
-
"Choose a dataset": "
|
|
464
|
-
"Choose this dataset": "
|
|
465
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
466
|
-
"Choose a theme": "
|
|
467
|
-
"Symplify all geometries to points": "
|
|
468
|
-
"Choose this data": "
|
|
469
|
-
"Search admin boundary": "
|
|
470
|
-
"Please choose a theme and a boundary first.": "
|
|
471
|
-
"Expression": "
|
|
472
|
-
"Geometry mode": "
|
|
473
|
-
"Only geometry centers": "
|
|
474
|
-
"Search area": "
|
|
475
|
-
"Type area name, or let empty to load data in current map view": "
|
|
476
|
-
"Data successfully imported!": "Data
|
|
477
|
-
"Clear data": "
|
|
478
|
-
"Remove layers": "
|
|
479
|
-
"Categorized": "
|
|
480
|
-
"Alphabetical": "
|
|
481
|
-
"Category property": "
|
|
482
|
-
"Color palette": "
|
|
483
|
-
"Categories": "
|
|
484
|
-
"Comma separated list of categories.": "
|
|
485
|
-
"Categories mode": "
|
|
486
|
-
"Remove filter for this column": "
|
|
487
|
-
"Add filter for this column": "
|
|
488
|
-
"Rename this column": "
|
|
489
|
-
"Delete this column": "
|
|
490
|
-
"Name “{name}” should not contain a dot.": "
|
|
491
|
-
"This name already exists: “{name}”": "
|
|
492
|
-
"Delete selected rows": "
|
|
493
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
494
|
-
"Expression is empty": "
|
|
460
|
+
"Enable real-time collaboration": "Maak realtime samenwerking mogelijk",
|
|
461
|
+
"✅ Copied!": "✅ Gekopieerd!",
|
|
462
|
+
"Choose a dataset": "Kies een dataset",
|
|
463
|
+
"Choose this dataset": "Kies deze dataset",
|
|
464
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematische data van OpenStreetMap",
|
|
465
|
+
"Choose a theme": "Kies een thema",
|
|
466
|
+
"Symplify all geometries to points": "Symplificeer alle geometrieën tot punten",
|
|
467
|
+
"Choose this data": "Kies deze data",
|
|
468
|
+
"Search admin boundary": "Zoeken administrative grens",
|
|
469
|
+
"Please choose a theme and a boundary first.": "Kies eerst een thema en een grens.",
|
|
470
|
+
"Expression": "Uitdrukking",
|
|
471
|
+
"Geometry mode": "Geometrie-modus",
|
|
472
|
+
"Only geometry centers": "Alleen geometriecentra",
|
|
473
|
+
"Search area": "Doorzoek gebied",
|
|
474
|
+
"Type area name, or let empty to load data in current map view": "Typ de naam van het gebied of laat leeg om data in de huidige kaartweergave te laden",
|
|
475
|
+
"Data successfully imported!": "Data succesvol geïmporteerd!",
|
|
476
|
+
"Clear data": "Wis data",
|
|
477
|
+
"Remove layers": "Verwijder lagen",
|
|
478
|
+
"Categorized": "Gecategoriseerd",
|
|
479
|
+
"Alphabetical": "Alfabetisch",
|
|
480
|
+
"Category property": "Categorie eigenschap",
|
|
481
|
+
"Color palette": "Kleurenpalet",
|
|
482
|
+
"Categories": "Categoriën",
|
|
483
|
+
"Comma separated list of categories.": "Door komma's gescheiden lijst van categorieën.",
|
|
484
|
+
"Categories mode": "Categorieën modus",
|
|
485
|
+
"Remove filter for this column": "Verwijder filter voor deze kolom",
|
|
486
|
+
"Add filter for this column": "Voeg filter toe voor deze kolom",
|
|
487
|
+
"Rename this column": "Hernoem deze kolom",
|
|
488
|
+
"Delete this column": "Verwijder deze kolom",
|
|
489
|
+
"Name “{name}” should not contain a dot.": "De naam \"{name}\" mag geen punt bevatten.",
|
|
490
|
+
"This name already exists: “{name}”": "Deze naam bestaat al: \"{name}\"",
|
|
491
|
+
"Delete selected rows": "Geselecteerde rijen verwijderen",
|
|
492
|
+
"Found {count} rows. Are you sure you want to delete all?": "Gevonden {count} rijen. Weet je zeker dat je alles wilt verwijderen?",
|
|
493
|
+
"Expression is empty": "Expressie is leeg",
|
|
495
494
|
"OK": "OK",
|
|
496
|
-
"Cancel": "
|
|
497
|
-
"Attach map to a team": "
|
|
498
|
-
"Display the polygon inverted": "
|
|
499
|
-
"Proportional circles": "
|
|
500
|
-
"Property name to compute circles": "
|
|
501
|
-
"Min circle radius": "Min
|
|
502
|
-
"Max circle radius": "Max
|
|
503
|
-
"Display the open browser control": "
|
|
504
|
-
"Copy as GeoJSON": "
|
|
505
|
-
"Please zoom in to edit the geometry": "
|
|
506
|
-
"New map": "
|
|
507
|
-
"My maps": "
|
|
508
|
-
"My teams": "
|
|
509
|
-
"My profile": "
|
|
510
|
-
"Type new owner's username": "
|
|
511
|
-
"Type editor's username": "
|
|
512
|
-
"Map": "
|
|
513
|
-
"Manage collaborators": "
|
|
514
|
-
"show/hide all layers": "
|
|
515
|
-
"zoom to data extent": "
|
|
516
|
-
"download visible data": "
|
|
517
|
-
"Import helpers": "
|
|
518
|
-
"Import helpers will fill the URL field for you.": "
|
|
495
|
+
"Cancel": "Annuleren",
|
|
496
|
+
"Attach map to a team": "Kaart aan een team toewijzen",
|
|
497
|
+
"Display the polygon inverted": "De omgekeerde veelhoek weergeven",
|
|
498
|
+
"Proportional circles": "Proportionele circels",
|
|
499
|
+
"Property name to compute circles": "Eigenschapsnaam om cirkels te berekenen",
|
|
500
|
+
"Min circle radius": "Min. circlestraal",
|
|
501
|
+
"Max circle radius": "Max. cirkelstraal",
|
|
502
|
+
"Display the open browser control": "Het besturingselement voor het openen van de browser weergeven",
|
|
503
|
+
"Copy as GeoJSON": "Kopiëren als GeoJSON",
|
|
504
|
+
"Please zoom in to edit the geometry": "Zoom in om de geometrie te bewerken",
|
|
505
|
+
"New map": "Nieuwe kaart",
|
|
506
|
+
"My maps": "Mijn kaarten",
|
|
507
|
+
"My teams": "Mijn teams",
|
|
508
|
+
"My profile": "Mijn profiel",
|
|
509
|
+
"Type new owner's username": "Typ de gebruikersnaam van de nieuwe eigenaar",
|
|
510
|
+
"Type editor's username": "Typ de gebruikersnaam van de redacteur",
|
|
511
|
+
"Map": "Kaart",
|
|
512
|
+
"Manage collaborators": "Medewerkers beheren",
|
|
513
|
+
"show/hide all layers": "Alle lagen tonen/verbergen",
|
|
514
|
+
"zoom to data extent": "Inzoomen op data omvang",
|
|
515
|
+
"download visible data": "Zichtbare data downloaden",
|
|
516
|
+
"Import helpers": "Importhelpers",
|
|
517
|
+
"Import helpers will fill the URL field for you.": "Importhelpers vullen het URL-veld voor u in.",
|
|
519
518
|
"Wikipedia": "Wikipedia",
|
|
520
|
-
"Save draft": "
|
|
521
|
-
"No data has been found for import": "
|
|
522
|
-
"Successfully imported {count} feature(s)": "
|
|
523
|
-
"Disconnected": "
|
|
524
|
-
"You must be logged in": "
|
|
525
|
-
"
|
|
526
|
-
"
|
|
527
|
-
"
|
|
528
|
-
"
|
|
529
|
-
"
|
|
530
|
-
"
|
|
531
|
-
"
|
|
519
|
+
"Save draft": "Concept opslaan",
|
|
520
|
+
"No data has been found for import": "Er zijn geen data gevonden voor import",
|
|
521
|
+
"Successfully imported {count} feature(s)": "Succesvol geïmporteerde {count} functie(s)",
|
|
522
|
+
"Disconnected": "Verbroken",
|
|
523
|
+
"You must be logged in": "U moet ingelogd zijn",
|
|
524
|
+
"on hover": "bij hoveren",
|
|
525
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Kan geen externe data laden voor laag \"{layer}\" met url \"{url}\"",
|
|
526
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Kan externe data niet parseren voor laag \"{layer}\" met url \"{url}\"",
|
|
527
|
+
"Import failed: invalid data": "Importeren mislukt: ongeldige data",
|
|
528
|
+
"Anonymous": "Anoniem",
|
|
529
|
+
"created at {date}": "gemaakt op {date}",
|
|
530
|
+
"modified at {date}": "gewijzigd op {date}",
|
|
531
|
+
"Default zoom": "Standaard zoomniveau",
|
|
532
|
+
"Default latitude": "Standaard breedtegraad",
|
|
533
|
+
"Default longitude": "Standaard lengtegraad",
|
|
534
|
+
"Edit map default view": "Standaardweergave van de kaart bewerken",
|
|
535
|
+
"Use current center and zoom": "Gebruik huidig centrum en zoomniveau",
|
|
536
|
+
"Layer permalink": "Layer permalink"
|
|
532
537
|
}
|
|
533
538
|
L.registerLocale("nl", locale)
|
|
534
539
|
L.setLocale("nl")
|