umap-project 3.0.6__py3-none-any.whl → 3.1.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/forms.py +1 -1
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +219 -72
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +286 -95
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +211 -65
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +394 -202
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +146 -75
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +125 -59
- umap/locale/en/LC_MESSAGES/django.po +124 -58
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +125 -59
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +210 -64
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +212 -65
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +286 -95
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +125 -59
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +212 -66
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +148 -78
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +130 -60
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +125 -59
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +289 -98
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +128 -61
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +287 -96
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +211 -65
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +212 -66
- umap/management/commands/migrate_to_S3.py +42 -20
- umap/management/commands/purge_old_versions.py +63 -0
- umap/management/commands/switch_user.py +52 -0
- umap/managers.py +29 -2
- umap/middleware.py +1 -1
- umap/migrations/0028_map_is_template.py +21 -0
- umap/models.py +14 -4
- umap/settings/base.py +22 -0
- umap/static/umap/base.css +4 -2
- umap/static/umap/content.css +1 -1
- umap/static/umap/css/dialog.css +5 -2
- umap/static/umap/css/form.css +19 -12
- umap/static/umap/css/icon.css +6 -0
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/css/panel.css +2 -0
- umap/static/umap/img/16-white.svg +5 -1
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/24-white.svg +3 -2
- umap/static/umap/img/24.svg +3 -4
- umap/static/umap/img/importers/opendata.svg +1 -0
- umap/static/umap/img/providers/bitbucket.png +0 -0
- umap/static/umap/img/source/16-white.svg +8 -4
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/img/source/24-white.svg +5 -4
- umap/static/umap/img/source/24.svg +5 -6
- umap/static/umap/js/components/modal.js +27 -0
- umap/static/umap/js/modules/caption.js +4 -4
- umap/static/umap/js/modules/data/features.js +40 -4
- umap/static/umap/js/modules/data/layer.js +208 -138
- umap/static/umap/js/modules/form/builder.js +6 -14
- umap/static/umap/js/modules/form/fields.js +2 -2
- umap/static/umap/js/modules/help.js +11 -3
- umap/static/umap/js/modules/importer.js +7 -4
- umap/static/umap/js/modules/importers/opendata.js +142 -0
- umap/static/umap/js/modules/permissions.js +3 -3
- umap/static/umap/js/modules/rendering/controls.js +34 -2
- umap/static/umap/js/modules/rendering/icon.js +2 -2
- umap/static/umap/js/modules/rendering/layers/base.js +1 -1
- umap/static/umap/js/modules/rendering/layers/classified.js +55 -49
- umap/static/umap/js/modules/rendering/layers/cluster.js +16 -9
- umap/static/umap/js/modules/rendering/layers/heat.js +13 -11
- umap/static/umap/js/modules/rendering/map.js +5 -0
- umap/static/umap/js/modules/rendering/ui.js +23 -0
- umap/static/umap/js/modules/rules.js +24 -23
- umap/static/umap/js/modules/schema.js +60 -4
- umap/static/umap/js/modules/sync/updaters.js +7 -3
- umap/static/umap/js/modules/tableeditor.js +7 -30
- umap/static/umap/js/modules/templates.js +122 -0
- umap/static/umap/js/modules/ui/bar.js +13 -3
- umap/static/umap/js/modules/ui/panel.js +1 -1
- umap/static/umap/js/modules/umap.js +28 -13
- umap/static/umap/js/umap.controls.js +11 -4
- umap/static/umap/locale/br.js +51 -18
- umap/static/umap/locale/br.json +51 -18
- umap/static/umap/locale/da.js +343 -310
- umap/static/umap/locale/da.json +343 -310
- umap/static/umap/locale/de.js +40 -7
- umap/static/umap/locale/de.json +40 -7
- umap/static/umap/locale/el.js +31 -4
- umap/static/umap/locale/el.json +31 -4
- umap/static/umap/locale/en.js +33 -1
- umap/static/umap/locale/en.json +33 -1
- umap/static/umap/locale/es.js +37 -4
- umap/static/umap/locale/es.json +37 -4
- umap/static/umap/locale/fr.js +34 -1
- umap/static/umap/locale/fr.json +34 -1
- umap/static/umap/locale/hu.js +44 -17
- umap/static/umap/locale/hu.json +44 -17
- umap/static/umap/locale/it.js +74 -41
- umap/static/umap/locale/it.json +74 -41
- umap/static/umap/locale/nl.js +42 -9
- umap/static/umap/locale/nl.json +42 -9
- umap/static/umap/map.css +3 -23
- umap/static/umap/vendors/textpath/leaflet.textpath.js +184 -0
- umap/storage/fs.py +19 -9
- umap/templates/umap/dashboard_menu.html +5 -0
- umap/templates/umap/design_system.html +9 -0
- umap/templates/umap/js.html +3 -0
- umap/templates/umap/map_list.html +2 -2
- umap/templates/umap/map_table.html +18 -18
- umap/templates/umap/user_dashboard.html +9 -58
- umap/templates/umap/user_map_table.html +36 -0
- umap/templates/umap/user_templates.html +19 -0
- umap/templatetags/umap_tags.py +5 -0
- umap/tests/integration/test_conditional_rules.py +57 -0
- umap/tests/integration/test_datalayer.py +16 -9
- umap/tests/integration/test_edit_marker.py +11 -0
- umap/tests/integration/test_tableeditor.py +42 -7
- umap/tests/integration/test_templates.py +44 -0
- umap/tests/test_dashboard.py +19 -0
- umap/tests/test_purge_old_versions.py +91 -0
- umap/tests/test_switch_user.py +31 -0
- umap/tests/test_views.py +67 -0
- umap/urls.py +7 -1
- umap/views.py +64 -18
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/METADATA +13 -13
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/RECORD +143 -130
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/WHEEL +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/entry_points.txt +0 -0
- {umap_project-3.0.6.dist-info → umap_project-3.1.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/it.js
CHANGED
|
@@ -330,7 +330,7 @@ const locale = {
|
|
|
330
330
|
"Table": "Tabella",
|
|
331
331
|
"Text color for the cluster label": "Colore di testo per l'etichetta del raggruppamento",
|
|
332
332
|
"Text formatting": "Formattazione testo",
|
|
333
|
-
"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}\")": "
|
|
333
|
+
"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}\")": "Il nome della proprietà da usare come etichetta per l’elemento (ad es. \"nome\"). Puoi anche usare proprietà tra parentesi per specificarne più di una oppure combinarle con contenuti statici (ad es. “{nome} in {luogo}”)",
|
|
334
334
|
"The name of the property to use as feature unique identifier.": "Nome della proprietà da utilizzare come identificatore univoco per ogni oggetto.",
|
|
335
335
|
"The zoom and center have been modified.": "Lo zoom e il centro sono stati modificati",
|
|
336
336
|
"TMS format": "formato TMS",
|
|
@@ -387,7 +387,7 @@ const locale = {
|
|
|
387
387
|
"{area} mi²": "{area} mi²",
|
|
388
388
|
"{area} yd²": "{area} yd²",
|
|
389
389
|
"{count} errors during import: {message}": "{count} errori durante l'importazione: {message}",
|
|
390
|
-
"{delay} seconds": "{
|
|
390
|
+
"{delay} seconds": "{delay} secondi",
|
|
391
391
|
"{distance} km": "{distance} km",
|
|
392
392
|
"{distance} m": "{distance} m",
|
|
393
393
|
"{distance} miles": "{distance} miglia",
|
|
@@ -410,21 +410,21 @@ const locale = {
|
|
|
410
410
|
"Back to layers": "Torna ai livelli",
|
|
411
411
|
"Filters": "Filtri",
|
|
412
412
|
"Comma separated list of properties to use when filtering features by text input": "Lista di proprietà separate da virgola da utilizzare quando il filtro è impostato su testo ",
|
|
413
|
-
"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.": "
|
|
413
|
+
"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.": "La lista separata da virgola delle proprietà da usare come filtro (ad es. chiave1,chiave2). Per impostare l’etichetta, aggiungila dopo un carattere | (ad es. chiave1|Mia chiave 1,chiave2|Mia chiave 2). Per impostare il tipo di input del campo, aggiungilo dopo un altro carattere | (ad es. chiave1|Mia chiave 1|checkbox,chiave2|Mia chiave 2|datetime). I valori ammessi per i tipi di input dei campi sono checkbox (predefinito), radio, number, date e datetime.",
|
|
414
414
|
"Search keys": "Chiavi di ricerca",
|
|
415
415
|
"Filters keys": "Filtro sui campi",
|
|
416
416
|
"Filter data": "Filtra dati",
|
|
417
417
|
"Search map features…": "Cerca elementi della mappa…",
|
|
418
418
|
"Reset all": "Reimposta tutto",
|
|
419
419
|
"Open browser": "Apri browser",
|
|
420
|
-
"Open caption": "
|
|
420
|
+
"Open caption": "Apri didascalia",
|
|
421
421
|
"Your map has been created with an anonymous account!": "La tua mappa è stata creata con un account anonimo!",
|
|
422
422
|
"Real-time collaboration": "Collaborazione in tempo reale",
|
|
423
423
|
"Cannot parse data": "Impossibile analizzare i dati",
|
|
424
424
|
"Start typing...": "Inizia a scrivere...",
|
|
425
425
|
"No result": "Nessun risultato",
|
|
426
426
|
"Data browser": "Browser dei dati",
|
|
427
|
-
"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.": "
|
|
427
|
+
"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.": "Quando viene fornito un URL, uMap può copiare i dati remoti in un layer oppure aggiungere questo URL come fonte remota per il layer. In quel caso, i dati verranno sempre scaricati da quell’URL e quindi saranno aggiornati, ma non potranno essere modificati su uMap.",
|
|
428
428
|
"Overpass supported expressions": "Espressioni di Overpass supportate",
|
|
429
429
|
"key (eg. building)": "chiave (es. building)",
|
|
430
430
|
"!key (eg. !name)": "!chiave (es. !name)",
|
|
@@ -454,11 +454,11 @@ const locale = {
|
|
|
454
454
|
"✅ Copied!": "✅ Copiato!",
|
|
455
455
|
"Choose a dataset": "Scegli un dataset",
|
|
456
456
|
"Choose this dataset": "Scegli questo dataset",
|
|
457
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
457
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dati tematici da OpenstreetMap",
|
|
458
458
|
"Choose a theme": "Seleziona un tema",
|
|
459
459
|
"Choose this data": "Seleziona questi dati",
|
|
460
460
|
"Search admin boundary": "Cerca confini amministrativi",
|
|
461
|
-
"Please choose a theme and a boundary first.": "
|
|
461
|
+
"Please choose a theme and a boundary first.": "Prima scegli un tema e un confine.",
|
|
462
462
|
"Expression": "Espressione",
|
|
463
463
|
"Geometry mode": "Modalità geometria",
|
|
464
464
|
"Only geometry centers": "Solo i centri delle geometrie",
|
|
@@ -473,7 +473,7 @@ const locale = {
|
|
|
473
473
|
"Color palette": "Palette di colori",
|
|
474
474
|
"Categories": "Categorie",
|
|
475
475
|
"Comma separated list of categories.": "Lista di categorie separate da virgola.",
|
|
476
|
-
"Categories mode": "
|
|
476
|
+
"Categories mode": "Modalità categorie",
|
|
477
477
|
"Remove filter for this column": "Rimuovi filtri da questa colonna",
|
|
478
478
|
"Add filter for this column": "Aggiungi filtri a questa colonna",
|
|
479
479
|
"Rename this column": "Rinomina questa colonna",
|
|
@@ -491,7 +491,7 @@ const locale = {
|
|
|
491
491
|
"Property name to compute circles": "Proprietà per cui calcolare i cerchi",
|
|
492
492
|
"Min circle radius": "Raggio minimo del cerchio",
|
|
493
493
|
"Max circle radius": "Raggio massimo del cerchio",
|
|
494
|
-
"Display the open browser control": "
|
|
494
|
+
"Display the open browser control": "Mostra il controllo apri browser",
|
|
495
495
|
"Copy as GeoJSON": "Copia come GeoJSON",
|
|
496
496
|
"Please zoom in to edit the geometry": "Ingrandisci per modificare la geometria",
|
|
497
497
|
"New map": "Nuova mappa",
|
|
@@ -499,51 +499,84 @@ const locale = {
|
|
|
499
499
|
"My teams": "I miei gruppi",
|
|
500
500
|
"My profile": "Il mio profilo",
|
|
501
501
|
"Type new owner's username": "Inserisci il nome utente del nuovo proprietario",
|
|
502
|
-
"Type editor's username": "
|
|
502
|
+
"Type editor's username": "Inserisci il nome utente del contributore",
|
|
503
503
|
"Map": "Mappa",
|
|
504
504
|
"Manage collaborators": "Gestisci chi può collaborare",
|
|
505
505
|
"show/hide all layers": "mostra/nascondi tutti i livelli",
|
|
506
506
|
"zoom to data extent": "ingrandisci sull'area dei dati",
|
|
507
507
|
"download visible data": "scarica i dati visibili",
|
|
508
|
-
"Import helpers": "
|
|
509
|
-
"Import helpers will fill the URL field for you.": "
|
|
508
|
+
"Import helpers": "Importa guide",
|
|
509
|
+
"Import helpers will fill the URL field for you.": "Importando le guide il campo URL verrà compilato automaticamente.",
|
|
510
510
|
"Wikipedia": "Wikipedia",
|
|
511
511
|
"Save draft": "Salva bozza",
|
|
512
512
|
"No data has been found for import": "Non sono stati trovati dati da importare",
|
|
513
|
-
"Successfully imported {count} feature(s)": "
|
|
513
|
+
"Successfully imported {count} feature(s)": "Importato con successo {count} elemento/i",
|
|
514
514
|
"Disconnected": "Scollegato",
|
|
515
515
|
"You must be logged in": "Devi aver effettuato l’accesso",
|
|
516
|
-
"on hover": "
|
|
517
|
-
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "
|
|
518
|
-
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "
|
|
516
|
+
"on hover": "al passaggio del mouse",
|
|
517
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Impossibile caricare i dati remoti per il layer “{layer}” con URL “{url}”",
|
|
518
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Impossibile analizzare i dati remoti per il layer “{layer}” con URL “{url}”",
|
|
519
519
|
"Import failed: invalid data": "Import fallito: dati non validi",
|
|
520
520
|
"Anonymous": "Anonimo",
|
|
521
|
-
"created at {date}": "
|
|
522
|
-
"modified at {date}": "
|
|
523
|
-
"Default zoom": "
|
|
524
|
-
"Default latitude": "
|
|
525
|
-
"Default longitude": "
|
|
526
|
-
"Edit map default view": "
|
|
527
|
-
"Use current center and zoom": "
|
|
528
|
-
"Layer permalink": "
|
|
529
|
-
"Back to home": "
|
|
530
|
-
"Home logo": "
|
|
531
|
-
"Add this geometry to my map": "
|
|
532
|
-
"Add this place to my map": "
|
|
533
|
-
"Cancel last edit": "
|
|
534
|
-
"Redo last edit": "
|
|
535
|
-
"Links": "
|
|
536
|
-
"Images": "
|
|
537
|
-
"Iframes": "
|
|
538
|
-
"Tags": "
|
|
521
|
+
"created at {date}": "creato il {date}",
|
|
522
|
+
"modified at {date}": "modificato il {date}",
|
|
523
|
+
"Default zoom": "Zoom predefinito",
|
|
524
|
+
"Default latitude": "Latitudine predefinita",
|
|
525
|
+
"Default longitude": "Longitudine predefinita",
|
|
526
|
+
"Edit map default view": "Modifica la vista predefinita della mappa",
|
|
527
|
+
"Use current center and zoom": "Usa centro e zoom attuali",
|
|
528
|
+
"Layer permalink": "Permalink del layer",
|
|
529
|
+
"Back to home": "Torna alla home",
|
|
530
|
+
"Home logo": "Logo della home",
|
|
531
|
+
"Add this geometry to my map": "Aggiungi questa geometria alla mia mappa",
|
|
532
|
+
"Add this place to my map": "Aggiungi questo posto alla mia mappa",
|
|
533
|
+
"Cancel last edit": "Annulla ultima modifica",
|
|
534
|
+
"Redo last edit": "Rifai ultima modifica",
|
|
535
|
+
"Links": "Collegamenti",
|
|
536
|
+
"Images": "Immagini",
|
|
537
|
+
"Iframes": "Iframe",
|
|
538
|
+
"Tags": "Etichette",
|
|
539
539
|
"Geocode": "Geocode",
|
|
540
|
-
"Display the back to home icon": "
|
|
541
|
-
"Do you want to display layer switcher in caption bar?": "
|
|
542
|
-
"Simplify all geometries to points": "
|
|
543
|
-
"Back to list": "
|
|
544
|
-
"Toggle rule": "
|
|
545
|
-
"Delete rule": "
|
|
546
|
-
"Cannot save layer, please try again in a few minutes.": "
|
|
540
|
+
"Display the back to home icon": "Mostra l’icona per tornare alla home",
|
|
541
|
+
"Do you want to display layer switcher in caption bar?": "Vuoi mostrare il commutatore dei layer nella didascalia?",
|
|
542
|
+
"Simplify all geometries to points": "Semplifica tutte le geometrie con punti",
|
|
543
|
+
"Back to list": "Torna alla lista",
|
|
544
|
+
"Toggle rule": "Commuta regola",
|
|
545
|
+
"Delete rule": "Cancella regola",
|
|
546
|
+
"Cannot save layer, please try again in a few minutes.": "Impossibile salvare il layer, prova di nuovo tra qualche minuto.",
|
|
547
|
+
"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.",
|
|
548
|
+
"More help resources": "Altre risorse dell'help",
|
|
549
|
+
"This map is a template": "Questa mappe è un template ",
|
|
550
|
+
"Add text along path": "Add text along path",
|
|
551
|
+
"Text color": "Colore del testo",
|
|
552
|
+
"Text offset": "Text offset",
|
|
553
|
+
"Text position": "Posizione del testo",
|
|
554
|
+
"start": "inizio",
|
|
555
|
+
"center": "centro",
|
|
556
|
+
"end": "fine",
|
|
557
|
+
"Text repeat": "Ripeti testo",
|
|
558
|
+
"Text rotate": "Ruota testo",
|
|
559
|
+
"Text size": "Dimensioni testo",
|
|
560
|
+
"Load map template": "Load map template",
|
|
561
|
+
"My templates": "My templates",
|
|
562
|
+
"From staff": "Dallo staff",
|
|
563
|
+
"From community": "Dalla community",
|
|
564
|
+
"You must select a template.": "Devi selezionare un template",
|
|
565
|
+
"Line decoration": "Line decoration",
|
|
566
|
+
"Reuse this template": "Reuse this template",
|
|
567
|
+
"Create a new map using this template": "Create a new map using this template",
|
|
568
|
+
"Save template": "Save template",
|
|
569
|
+
"Load template": "Load template",
|
|
570
|
+
"Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
|
|
571
|
+
"Load template with data": "Load template with data",
|
|
572
|
+
"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\".",
|
|
573
|
+
"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.",
|
|
574
|
+
"There is no public template yet.": "There is no public template yet.",
|
|
575
|
+
"Explore": "Explore",
|
|
576
|
+
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
|
+
"Choose a portal": "Choose a portal",
|
|
578
|
+
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
+
"Please choose an instance first.": "Please choose an instance first."
|
|
547
580
|
}
|
|
548
581
|
L.registerLocale("it", locale)
|
|
549
582
|
L.setLocale("it")
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
"Table": "Tabella",
|
|
331
331
|
"Text color for the cluster label": "Colore di testo per l'etichetta del raggruppamento",
|
|
332
332
|
"Text formatting": "Formattazione testo",
|
|
333
|
-
"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}\")": "
|
|
333
|
+
"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}\")": "Il nome della proprietà da usare come etichetta per l’elemento (ad es. \"nome\"). Puoi anche usare proprietà tra parentesi per specificarne più di una oppure combinarle con contenuti statici (ad es. “{nome} in {luogo}”)",
|
|
334
334
|
"The name of the property to use as feature unique identifier.": "Nome della proprietà da utilizzare come identificatore univoco per ogni oggetto.",
|
|
335
335
|
"The zoom and center have been modified.": "Lo zoom e il centro sono stati modificati",
|
|
336
336
|
"TMS format": "formato TMS",
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
"{area} mi²": "{area} mi²",
|
|
388
388
|
"{area} yd²": "{area} yd²",
|
|
389
389
|
"{count} errors during import: {message}": "{count} errori durante l'importazione: {message}",
|
|
390
|
-
"{delay} seconds": "{
|
|
390
|
+
"{delay} seconds": "{delay} secondi",
|
|
391
391
|
"{distance} km": "{distance} km",
|
|
392
392
|
"{distance} m": "{distance} m",
|
|
393
393
|
"{distance} miles": "{distance} miglia",
|
|
@@ -410,21 +410,21 @@
|
|
|
410
410
|
"Back to layers": "Torna ai livelli",
|
|
411
411
|
"Filters": "Filtri",
|
|
412
412
|
"Comma separated list of properties to use when filtering features by text input": "Lista di proprietà separate da virgola da utilizzare quando il filtro è impostato su testo ",
|
|
413
|
-
"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.": "
|
|
413
|
+
"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.": "La lista separata da virgola delle proprietà da usare come filtro (ad es. chiave1,chiave2). Per impostare l’etichetta, aggiungila dopo un carattere | (ad es. chiave1|Mia chiave 1,chiave2|Mia chiave 2). Per impostare il tipo di input del campo, aggiungilo dopo un altro carattere | (ad es. chiave1|Mia chiave 1|checkbox,chiave2|Mia chiave 2|datetime). I valori ammessi per i tipi di input dei campi sono checkbox (predefinito), radio, number, date e datetime.",
|
|
414
414
|
"Search keys": "Chiavi di ricerca",
|
|
415
415
|
"Filters keys": "Filtro sui campi",
|
|
416
416
|
"Filter data": "Filtra dati",
|
|
417
417
|
"Search map features…": "Cerca elementi della mappa…",
|
|
418
418
|
"Reset all": "Reimposta tutto",
|
|
419
419
|
"Open browser": "Apri browser",
|
|
420
|
-
"Open caption": "
|
|
420
|
+
"Open caption": "Apri didascalia",
|
|
421
421
|
"Your map has been created with an anonymous account!": "La tua mappa è stata creata con un account anonimo!",
|
|
422
422
|
"Real-time collaboration": "Collaborazione in tempo reale",
|
|
423
423
|
"Cannot parse data": "Impossibile analizzare i dati",
|
|
424
424
|
"Start typing...": "Inizia a scrivere...",
|
|
425
425
|
"No result": "Nessun risultato",
|
|
426
426
|
"Data browser": "Browser dei dati",
|
|
427
|
-
"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.": "
|
|
427
|
+
"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.": "Quando viene fornito un URL, uMap può copiare i dati remoti in un layer oppure aggiungere questo URL come fonte remota per il layer. In quel caso, i dati verranno sempre scaricati da quell’URL e quindi saranno aggiornati, ma non potranno essere modificati su uMap.",
|
|
428
428
|
"Overpass supported expressions": "Espressioni di Overpass supportate",
|
|
429
429
|
"key (eg. building)": "chiave (es. building)",
|
|
430
430
|
"!key (eg. !name)": "!chiave (es. !name)",
|
|
@@ -454,11 +454,11 @@
|
|
|
454
454
|
"✅ Copied!": "✅ Copiato!",
|
|
455
455
|
"Choose a dataset": "Scegli un dataset",
|
|
456
456
|
"Choose this dataset": "Scegli questo dataset",
|
|
457
|
-
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine:
|
|
457
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: dati tematici da OpenstreetMap",
|
|
458
458
|
"Choose a theme": "Seleziona un tema",
|
|
459
459
|
"Choose this data": "Seleziona questi dati",
|
|
460
460
|
"Search admin boundary": "Cerca confini amministrativi",
|
|
461
|
-
"Please choose a theme and a boundary first.": "
|
|
461
|
+
"Please choose a theme and a boundary first.": "Prima scegli un tema e un confine.",
|
|
462
462
|
"Expression": "Espressione",
|
|
463
463
|
"Geometry mode": "Modalità geometria",
|
|
464
464
|
"Only geometry centers": "Solo i centri delle geometrie",
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
"Color palette": "Palette di colori",
|
|
474
474
|
"Categories": "Categorie",
|
|
475
475
|
"Comma separated list of categories.": "Lista di categorie separate da virgola.",
|
|
476
|
-
"Categories mode": "
|
|
476
|
+
"Categories mode": "Modalità categorie",
|
|
477
477
|
"Remove filter for this column": "Rimuovi filtri da questa colonna",
|
|
478
478
|
"Add filter for this column": "Aggiungi filtri a questa colonna",
|
|
479
479
|
"Rename this column": "Rinomina questa colonna",
|
|
@@ -491,7 +491,7 @@
|
|
|
491
491
|
"Property name to compute circles": "Proprietà per cui calcolare i cerchi",
|
|
492
492
|
"Min circle radius": "Raggio minimo del cerchio",
|
|
493
493
|
"Max circle radius": "Raggio massimo del cerchio",
|
|
494
|
-
"Display the open browser control": "
|
|
494
|
+
"Display the open browser control": "Mostra il controllo apri browser",
|
|
495
495
|
"Copy as GeoJSON": "Copia come GeoJSON",
|
|
496
496
|
"Please zoom in to edit the geometry": "Ingrandisci per modificare la geometria",
|
|
497
497
|
"New map": "Nuova mappa",
|
|
@@ -499,49 +499,82 @@
|
|
|
499
499
|
"My teams": "I miei gruppi",
|
|
500
500
|
"My profile": "Il mio profilo",
|
|
501
501
|
"Type new owner's username": "Inserisci il nome utente del nuovo proprietario",
|
|
502
|
-
"Type editor's username": "
|
|
502
|
+
"Type editor's username": "Inserisci il nome utente del contributore",
|
|
503
503
|
"Map": "Mappa",
|
|
504
504
|
"Manage collaborators": "Gestisci chi può collaborare",
|
|
505
505
|
"show/hide all layers": "mostra/nascondi tutti i livelli",
|
|
506
506
|
"zoom to data extent": "ingrandisci sull'area dei dati",
|
|
507
507
|
"download visible data": "scarica i dati visibili",
|
|
508
|
-
"Import helpers": "
|
|
509
|
-
"Import helpers will fill the URL field for you.": "
|
|
508
|
+
"Import helpers": "Importa guide",
|
|
509
|
+
"Import helpers will fill the URL field for you.": "Importando le guide il campo URL verrà compilato automaticamente.",
|
|
510
510
|
"Wikipedia": "Wikipedia",
|
|
511
511
|
"Save draft": "Salva bozza",
|
|
512
512
|
"No data has been found for import": "Non sono stati trovati dati da importare",
|
|
513
|
-
"Successfully imported {count} feature(s)": "
|
|
513
|
+
"Successfully imported {count} feature(s)": "Importato con successo {count} elemento/i",
|
|
514
514
|
"Disconnected": "Scollegato",
|
|
515
515
|
"You must be logged in": "Devi aver effettuato l’accesso",
|
|
516
|
-
"on hover": "
|
|
517
|
-
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "
|
|
518
|
-
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "
|
|
516
|
+
"on hover": "al passaggio del mouse",
|
|
517
|
+
"Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Impossibile caricare i dati remoti per il layer “{layer}” con URL “{url}”",
|
|
518
|
+
"Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Impossibile analizzare i dati remoti per il layer “{layer}” con URL “{url}”",
|
|
519
519
|
"Import failed: invalid data": "Import fallito: dati non validi",
|
|
520
520
|
"Anonymous": "Anonimo",
|
|
521
|
-
"created at {date}": "
|
|
522
|
-
"modified at {date}": "
|
|
523
|
-
"Default zoom": "
|
|
524
|
-
"Default latitude": "
|
|
525
|
-
"Default longitude": "
|
|
526
|
-
"Edit map default view": "
|
|
527
|
-
"Use current center and zoom": "
|
|
528
|
-
"Layer permalink": "
|
|
529
|
-
"Back to home": "
|
|
530
|
-
"Home logo": "
|
|
531
|
-
"Add this geometry to my map": "
|
|
532
|
-
"Add this place to my map": "
|
|
533
|
-
"Cancel last edit": "
|
|
534
|
-
"Redo last edit": "
|
|
535
|
-
"Links": "
|
|
536
|
-
"Images": "
|
|
537
|
-
"Iframes": "
|
|
538
|
-
"Tags": "
|
|
521
|
+
"created at {date}": "creato il {date}",
|
|
522
|
+
"modified at {date}": "modificato il {date}",
|
|
523
|
+
"Default zoom": "Zoom predefinito",
|
|
524
|
+
"Default latitude": "Latitudine predefinita",
|
|
525
|
+
"Default longitude": "Longitudine predefinita",
|
|
526
|
+
"Edit map default view": "Modifica la vista predefinita della mappa",
|
|
527
|
+
"Use current center and zoom": "Usa centro e zoom attuali",
|
|
528
|
+
"Layer permalink": "Permalink del layer",
|
|
529
|
+
"Back to home": "Torna alla home",
|
|
530
|
+
"Home logo": "Logo della home",
|
|
531
|
+
"Add this geometry to my map": "Aggiungi questa geometria alla mia mappa",
|
|
532
|
+
"Add this place to my map": "Aggiungi questo posto alla mia mappa",
|
|
533
|
+
"Cancel last edit": "Annulla ultima modifica",
|
|
534
|
+
"Redo last edit": "Rifai ultima modifica",
|
|
535
|
+
"Links": "Collegamenti",
|
|
536
|
+
"Images": "Immagini",
|
|
537
|
+
"Iframes": "Iframe",
|
|
538
|
+
"Tags": "Etichette",
|
|
539
539
|
"Geocode": "Geocode",
|
|
540
|
-
"Display the back to home icon": "
|
|
541
|
-
"Do you want to display layer switcher in caption bar?": "
|
|
542
|
-
"Simplify all geometries to points": "
|
|
543
|
-
"Back to list": "
|
|
544
|
-
"Toggle rule": "
|
|
545
|
-
"Delete rule": "
|
|
546
|
-
"Cannot save layer, please try again in a few minutes.": "
|
|
540
|
+
"Display the back to home icon": "Mostra l’icona per tornare alla home",
|
|
541
|
+
"Do you want to display layer switcher in caption bar?": "Vuoi mostrare il commutatore dei layer nella didascalia?",
|
|
542
|
+
"Simplify all geometries to points": "Semplifica tutte le geometrie con punti",
|
|
543
|
+
"Back to list": "Torna alla lista",
|
|
544
|
+
"Toggle rule": "Commuta regola",
|
|
545
|
+
"Delete rule": "Cancella regola",
|
|
546
|
+
"Cannot save layer, please try again in a few minutes.": "Impossibile salvare il layer, prova di nuovo tra qualche minuto.",
|
|
547
|
+
"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.",
|
|
548
|
+
"More help resources": "Altre risorse dell'help",
|
|
549
|
+
"This map is a template": "Questa mappe è un template ",
|
|
550
|
+
"Add text along path": "Add text along path",
|
|
551
|
+
"Text color": "Colore del testo",
|
|
552
|
+
"Text offset": "Text offset",
|
|
553
|
+
"Text position": "Posizione del testo",
|
|
554
|
+
"start": "inizio",
|
|
555
|
+
"center": "centro",
|
|
556
|
+
"end": "fine",
|
|
557
|
+
"Text repeat": "Ripeti testo",
|
|
558
|
+
"Text rotate": "Ruota testo",
|
|
559
|
+
"Text size": "Dimensioni testo",
|
|
560
|
+
"Load map template": "Load map template",
|
|
561
|
+
"My templates": "My templates",
|
|
562
|
+
"From staff": "Dallo staff",
|
|
563
|
+
"From community": "Dalla community",
|
|
564
|
+
"You must select a template.": "Devi selezionare un template",
|
|
565
|
+
"Line decoration": "Line decoration",
|
|
566
|
+
"Reuse this template": "Reuse this template",
|
|
567
|
+
"Create a new map using this template": "Create a new map using this template",
|
|
568
|
+
"Save template": "Save template",
|
|
569
|
+
"Load template": "Load template",
|
|
570
|
+
"Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
|
|
571
|
+
"Load template with data": "Load template with data",
|
|
572
|
+
"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\".",
|
|
573
|
+
"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.",
|
|
574
|
+
"There is no public template yet.": "There is no public template yet.",
|
|
575
|
+
"Explore": "Explore",
|
|
576
|
+
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
|
+
"Choose a portal": "Choose a portal",
|
|
578
|
+
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
+
"Please choose an instance first.": "Please choose an instance first."
|
|
547
580
|
}
|
umap/static/umap/locale/nl.js
CHANGED
|
@@ -119,7 +119,7 @@ const locale = {
|
|
|
119
119
|
"Do you want to display a caption bar?": "Wil je een hoofding tonen?",
|
|
120
120
|
"Do you want to display a minimap?": "Wil je een minikaartje tonen?",
|
|
121
121
|
"Do you want to display a panel on load?": "Wil je een zijpaneel tonen als de kaart geladen wordt?",
|
|
122
|
-
"Do you want to display caption menus?": "
|
|
122
|
+
"Do you want to display caption menus?": "Wil je een menu met bijschriften weergeven?",
|
|
123
123
|
"Do you want to display popup footer?": "Wil je een popup-footer tonen?",
|
|
124
124
|
"Do you want to display the scale control?": "Wil je het schaal-besturingselement tonen?",
|
|
125
125
|
"Do you want to display the «more» control?": "Wil je de knop «meer» laten zien?",
|
|
@@ -189,7 +189,7 @@ const locale = {
|
|
|
189
189
|
"Inherit": "Overerving",
|
|
190
190
|
"inherit": "overerven",
|
|
191
191
|
"Interaction options": "Opties voor interactie",
|
|
192
|
-
"Invalid latitude or longitude": "
|
|
192
|
+
"Invalid latitude or longitude": "Incorrecte lengte- of breedtegraad",
|
|
193
193
|
"Invalid umap data in {filename}": "Incorrecte umap data in {filename}",
|
|
194
194
|
"Invalid umap data": "Incorrecte umap data",
|
|
195
195
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
@@ -268,8 +268,8 @@ const locale = {
|
|
|
268
268
|
"parent window": "bovenliggend venster",
|
|
269
269
|
"Paste your data here": "Plak je data hier",
|
|
270
270
|
"Permalink": "Permalink",
|
|
271
|
-
"Permanent credits background": "
|
|
272
|
-
"Permanent credits": "
|
|
271
|
+
"Permanent credits background": "Permanente bronverwijzing achtergrond",
|
|
272
|
+
"Permanent credits": "Permanente bronverwijzing",
|
|
273
273
|
"Please be sure the licence is compliant with your use.": "Zorg er aub voor dat je je aan de licentievoorwaarden houdt",
|
|
274
274
|
"Please choose a format": "Kies een formaat",
|
|
275
275
|
"Please enter the name of the property": "Vul de naam in van de eigenschap",
|
|
@@ -425,7 +425,7 @@ const locale = {
|
|
|
425
425
|
"No result": "Geen resultaat",
|
|
426
426
|
"Data browser": "Data browser",
|
|
427
427
|
"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.",
|
|
428
|
-
"Overpass supported expressions": "Overpass
|
|
428
|
+
"Overpass supported expressions": "Ondersteunde Overpass uitdrukkingen",
|
|
429
429
|
"key (eg. building)": "sleutel (bijv. gebouw)",
|
|
430
430
|
"!key (eg. !name)": "!sleutel (bv. !naam)",
|
|
431
431
|
"key=value (eg. building=yes)": "sleutel=waarde (bv. gebouw=ja)",
|
|
@@ -540,10 +540,43 @@ const locale = {
|
|
|
540
540
|
"Display the back to home icon": "Het pictogram Terug naar huis weergeven",
|
|
541
541
|
"Do you want to display layer switcher in caption bar?": "Wilt u de laagwisselaar weergeven in de ondertitelingsbalk?",
|
|
542
542
|
"Simplify all geometries to points": "Vereenvoudig alle geometrieën tot punten",
|
|
543
|
-
"Back to list": "
|
|
544
|
-
"Toggle rule": "
|
|
545
|
-
"Delete rule": "
|
|
546
|
-
"Cannot save layer, please try again in a few minutes.": "
|
|
543
|
+
"Back to list": "Terug naar lijst",
|
|
544
|
+
"Toggle rule": "Regel wisselen",
|
|
545
|
+
"Delete rule": "Verwijder regel",
|
|
546
|
+
"Cannot save layer, please try again in a few minutes.": "Kan de laag niet opslaan, probeer het over een paar minuten opnieuw.",
|
|
547
|
+
"Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activeer samen live editeren voor deze kaart. Anderen moeten de kaart vernieuwen vooraleer dit actief wordt bij hen.",
|
|
548
|
+
"More help resources": "Meer hulpbronnen",
|
|
549
|
+
"This map is a template": "Deze kaart is een sjabloon",
|
|
550
|
+
"Add text along path": "Een tekst langs een pad",
|
|
551
|
+
"Text color": "Tekst kleur",
|
|
552
|
+
"Text offset": "Tekst offset",
|
|
553
|
+
"Text position": "Tekst positie",
|
|
554
|
+
"start": "start",
|
|
555
|
+
"center": "center",
|
|
556
|
+
"end": "einde",
|
|
557
|
+
"Text repeat": "Tekst herhaling",
|
|
558
|
+
"Text rotate": "Tekst draaien",
|
|
559
|
+
"Text size": "Tekst grootte",
|
|
560
|
+
"Load map template": "Laad een sjabloonkaart",
|
|
561
|
+
"My templates": "Mijn sjablonen",
|
|
562
|
+
"From staff": "Van de beheerders",
|
|
563
|
+
"From community": "Van de community",
|
|
564
|
+
"You must select a template.": "Je moet een sjabloon kiezen",
|
|
565
|
+
"Line decoration": "Lijn tekenstijl",
|
|
566
|
+
"Reuse this template": "Hergebruik dit sjabloon",
|
|
567
|
+
"Create a new map using this template": "Maak een nieuwe kaart met dit sjabloon",
|
|
568
|
+
"Save template": "Sla sjabloon op",
|
|
569
|
+
"Load template": "Laad sjabloon",
|
|
570
|
+
"Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
|
|
571
|
+
"Load template with data": "Load template with data",
|
|
572
|
+
"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\".",
|
|
573
|
+
"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.",
|
|
574
|
+
"There is no public template yet.": "There is no public template yet.",
|
|
575
|
+
"Explore": "Explore",
|
|
576
|
+
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
|
+
"Choose a portal": "Choose a portal",
|
|
578
|
+
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
+
"Please choose an instance first.": "Please choose an instance first."
|
|
547
580
|
}
|
|
548
581
|
L.registerLocale("nl", locale)
|
|
549
582
|
L.setLocale("nl")
|
umap/static/umap/locale/nl.json
CHANGED
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"Do you want to display a caption bar?": "Wil je een hoofding tonen?",
|
|
120
120
|
"Do you want to display a minimap?": "Wil je een minikaartje tonen?",
|
|
121
121
|
"Do you want to display a panel on load?": "Wil je een zijpaneel tonen als de kaart geladen wordt?",
|
|
122
|
-
"Do you want to display caption menus?": "
|
|
122
|
+
"Do you want to display caption menus?": "Wil je een menu met bijschriften weergeven?",
|
|
123
123
|
"Do you want to display popup footer?": "Wil je een popup-footer tonen?",
|
|
124
124
|
"Do you want to display the scale control?": "Wil je het schaal-besturingselement tonen?",
|
|
125
125
|
"Do you want to display the «more» control?": "Wil je de knop «meer» laten zien?",
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"Inherit": "Overerving",
|
|
190
190
|
"inherit": "overerven",
|
|
191
191
|
"Interaction options": "Opties voor interactie",
|
|
192
|
-
"Invalid latitude or longitude": "
|
|
192
|
+
"Invalid latitude or longitude": "Incorrecte lengte- of breedtegraad",
|
|
193
193
|
"Invalid umap data in {filename}": "Incorrecte umap data in {filename}",
|
|
194
194
|
"Invalid umap data": "Incorrecte umap data",
|
|
195
195
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
@@ -268,8 +268,8 @@
|
|
|
268
268
|
"parent window": "bovenliggend venster",
|
|
269
269
|
"Paste your data here": "Plak je data hier",
|
|
270
270
|
"Permalink": "Permalink",
|
|
271
|
-
"Permanent credits background": "
|
|
272
|
-
"Permanent credits": "
|
|
271
|
+
"Permanent credits background": "Permanente bronverwijzing achtergrond",
|
|
272
|
+
"Permanent credits": "Permanente bronverwijzing",
|
|
273
273
|
"Please be sure the licence is compliant with your use.": "Zorg er aub voor dat je je aan de licentievoorwaarden houdt",
|
|
274
274
|
"Please choose a format": "Kies een formaat",
|
|
275
275
|
"Please enter the name of the property": "Vul de naam in van de eigenschap",
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
"No result": "Geen resultaat",
|
|
426
426
|
"Data browser": "Data browser",
|
|
427
427
|
"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.",
|
|
428
|
-
"Overpass supported expressions": "Overpass
|
|
428
|
+
"Overpass supported expressions": "Ondersteunde Overpass uitdrukkingen",
|
|
429
429
|
"key (eg. building)": "sleutel (bijv. gebouw)",
|
|
430
430
|
"!key (eg. !name)": "!sleutel (bv. !naam)",
|
|
431
431
|
"key=value (eg. building=yes)": "sleutel=waarde (bv. gebouw=ja)",
|
|
@@ -540,8 +540,41 @@
|
|
|
540
540
|
"Display the back to home icon": "Het pictogram Terug naar huis weergeven",
|
|
541
541
|
"Do you want to display layer switcher in caption bar?": "Wilt u de laagwisselaar weergeven in de ondertitelingsbalk?",
|
|
542
542
|
"Simplify all geometries to points": "Vereenvoudig alle geometrieën tot punten",
|
|
543
|
-
"Back to list": "
|
|
544
|
-
"Toggle rule": "
|
|
545
|
-
"Delete rule": "
|
|
546
|
-
"Cannot save layer, please try again in a few minutes.": "
|
|
543
|
+
"Back to list": "Terug naar lijst",
|
|
544
|
+
"Toggle rule": "Regel wisselen",
|
|
545
|
+
"Delete rule": "Verwijder regel",
|
|
546
|
+
"Cannot save layer, please try again in a few minutes.": "Kan de laag niet opslaan, probeer het over een paar minuten opnieuw.",
|
|
547
|
+
"Activate collaborative live editing on this map. Other users must reload the map after changing this setting.": "Activeer samen live editeren voor deze kaart. Anderen moeten de kaart vernieuwen vooraleer dit actief wordt bij hen.",
|
|
548
|
+
"More help resources": "Meer hulpbronnen",
|
|
549
|
+
"This map is a template": "Deze kaart is een sjabloon",
|
|
550
|
+
"Add text along path": "Een tekst langs een pad",
|
|
551
|
+
"Text color": "Tekst kleur",
|
|
552
|
+
"Text offset": "Tekst offset",
|
|
553
|
+
"Text position": "Tekst positie",
|
|
554
|
+
"start": "start",
|
|
555
|
+
"center": "center",
|
|
556
|
+
"end": "einde",
|
|
557
|
+
"Text repeat": "Tekst herhaling",
|
|
558
|
+
"Text rotate": "Tekst draaien",
|
|
559
|
+
"Text size": "Tekst grootte",
|
|
560
|
+
"Load map template": "Laad een sjabloonkaart",
|
|
561
|
+
"My templates": "Mijn sjablonen",
|
|
562
|
+
"From staff": "Van de beheerders",
|
|
563
|
+
"From community": "Van de community",
|
|
564
|
+
"You must select a template.": "Je moet een sjabloon kiezen",
|
|
565
|
+
"Line decoration": "Lijn tekenstijl",
|
|
566
|
+
"Reuse this template": "Hergebruik dit sjabloon",
|
|
567
|
+
"Create a new map using this template": "Maak een nieuwe kaart met dit sjabloon",
|
|
568
|
+
"Save template": "Sla sjabloon op",
|
|
569
|
+
"Load template": "Laad sjabloon",
|
|
570
|
+
"Loading a template will apply predefined styles and settings to your map": "Loading a template will apply predefined styles and settings to your map",
|
|
571
|
+
"Load template with data": "Load template with data",
|
|
572
|
+
"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\".",
|
|
573
|
+
"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.",
|
|
574
|
+
"There is no public template yet.": "There is no public template yet.",
|
|
575
|
+
"Explore": "Explore",
|
|
576
|
+
"Import data from public open data portals": "Import data from public open data portals",
|
|
577
|
+
"Choose a portal": "Choose a portal",
|
|
578
|
+
"Limit results to current map view": "Limit results to current map view",
|
|
579
|
+
"Please choose an instance first.": "Please choose an instance first."
|
|
547
580
|
}
|