umap-project 2.4.0b2__py3-none-any.whl → 2.4.2__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.

Files changed (129) hide show
  1. umap/__init__.py +1 -1
  2. umap/locale/el/LC_MESSAGES/django.po +145 -90
  3. umap/locale/en/LC_MESSAGES/django.po +3 -3
  4. umap/locale/eu/LC_MESSAGES/django.po +145 -89
  5. umap/locale/pt/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/pt/LC_MESSAGES/django.po +87 -37
  7. umap/static/umap/base.css +20 -6
  8. umap/static/umap/content.css +2 -2
  9. umap/static/umap/css/dialog.css +1 -1
  10. umap/static/umap/css/importers.css +2 -0
  11. umap/static/umap/css/panel.css +2 -2
  12. umap/static/umap/css/tooltip.css +1 -1
  13. umap/static/umap/img/16-white.svg +1 -3
  14. umap/static/umap/img/source/16-white.svg +2 -4
  15. umap/static/umap/js/components/alerts/alert.css +1 -1
  16. umap/static/umap/js/components/alerts/alert.js +1 -1
  17. umap/static/umap/js/modules/autocomplete.js +4 -4
  18. umap/static/umap/js/modules/browser.js +11 -11
  19. umap/static/umap/js/modules/caption.js +5 -5
  20. umap/static/umap/js/modules/dompurify.js +2 -3
  21. umap/static/umap/js/modules/facets.js +16 -10
  22. umap/static/umap/js/modules/global.js +16 -16
  23. umap/static/umap/js/modules/help.js +2 -2
  24. umap/static/umap/js/modules/importer.js +6 -6
  25. umap/static/umap/js/modules/importers/geodatamine.js +4 -4
  26. umap/static/umap/js/modules/importers/overpass.js +2 -2
  27. umap/static/umap/js/modules/orderable.js +2 -2
  28. umap/static/umap/js/modules/request.js +1 -1
  29. umap/static/umap/js/modules/rules.js +13 -10
  30. umap/static/umap/js/modules/sync/engine.js +3 -3
  31. umap/static/umap/js/modules/sync/updaters.js +10 -11
  32. umap/static/umap/js/modules/sync/websocket.js +1 -1
  33. umap/static/umap/js/modules/ui/dialog.js +1 -1
  34. umap/static/umap/js/modules/ui/panel.js +1 -1
  35. umap/static/umap/js/modules/ui/tooltip.js +6 -6
  36. umap/static/umap/js/modules/urls.js +1 -2
  37. umap/static/umap/js/modules/utils.js +19 -19
  38. umap/static/umap/js/umap.controls.js +26 -28
  39. umap/static/umap/js/umap.core.js +19 -15
  40. umap/static/umap/js/umap.datalayer.permissions.js +15 -18
  41. umap/static/umap/js/umap.features.js +102 -120
  42. umap/static/umap/js/umap.forms.js +46 -74
  43. umap/static/umap/js/umap.icon.js +17 -22
  44. umap/static/umap/js/umap.js +126 -131
  45. umap/static/umap/js/umap.layer.js +159 -167
  46. umap/static/umap/js/umap.permissions.js +6 -9
  47. umap/static/umap/js/umap.popup.js +20 -20
  48. umap/static/umap/js/umap.share.js +9 -15
  49. umap/static/umap/js/umap.slideshow.js +12 -14
  50. umap/static/umap/js/umap.tableeditor.js +5 -5
  51. umap/static/umap/locale/am_ET.json +5 -2
  52. umap/static/umap/locale/ar.json +5 -2
  53. umap/static/umap/locale/ast.json +5 -2
  54. umap/static/umap/locale/bg.json +5 -2
  55. umap/static/umap/locale/br.json +5 -2
  56. umap/static/umap/locale/ca.json +5 -2
  57. umap/static/umap/locale/cs_CZ.json +5 -2
  58. umap/static/umap/locale/da.json +5 -2
  59. umap/static/umap/locale/de.json +5 -2
  60. umap/static/umap/locale/el.json +10 -7
  61. umap/static/umap/locale/en.js +2 -1
  62. umap/static/umap/locale/en.json +5 -2
  63. umap/static/umap/locale/en_US.json +5 -2
  64. umap/static/umap/locale/es.js +9 -8
  65. umap/static/umap/locale/es.json +12 -9
  66. umap/static/umap/locale/et.json +5 -2
  67. umap/static/umap/locale/fa_IR.json +5 -2
  68. umap/static/umap/locale/fi.json +5 -2
  69. umap/static/umap/locale/fr.js +2 -1
  70. umap/static/umap/locale/fr.json +5 -2
  71. umap/static/umap/locale/gl.json +5 -2
  72. umap/static/umap/locale/he.json +5 -2
  73. umap/static/umap/locale/hr.json +5 -2
  74. umap/static/umap/locale/hu.json +5 -2
  75. umap/static/umap/locale/id.json +5 -2
  76. umap/static/umap/locale/is.json +5 -2
  77. umap/static/umap/locale/it.json +5 -2
  78. umap/static/umap/locale/ja.json +5 -2
  79. umap/static/umap/locale/ko.json +5 -2
  80. umap/static/umap/locale/lt.json +5 -2
  81. umap/static/umap/locale/ms.json +5 -2
  82. umap/static/umap/locale/nl.json +5 -2
  83. umap/static/umap/locale/no.json +5 -2
  84. umap/static/umap/locale/pl.json +5 -2
  85. umap/static/umap/locale/pl_PL.json +5 -2
  86. umap/static/umap/locale/pt.js +61 -60
  87. umap/static/umap/locale/pt.json +64 -61
  88. umap/static/umap/locale/pt_BR.json +5 -2
  89. umap/static/umap/locale/pt_PT.json +5 -2
  90. umap/static/umap/locale/ro.json +5 -2
  91. umap/static/umap/locale/ru.json +5 -2
  92. umap/static/umap/locale/sk_SK.json +5 -2
  93. umap/static/umap/locale/sl.json +5 -2
  94. umap/static/umap/locale/sr.json +5 -2
  95. umap/static/umap/locale/sv.json +5 -2
  96. umap/static/umap/locale/th_TH.json +5 -2
  97. umap/static/umap/locale/tr.json +5 -2
  98. umap/static/umap/locale/uk_UA.json +5 -2
  99. umap/static/umap/locale/vi.json +5 -2
  100. umap/static/umap/locale/vi_VN.json +5 -2
  101. umap/static/umap/locale/zh.json +5 -2
  102. umap/static/umap/locale/zh_CN.json +5 -2
  103. umap/static/umap/locale/zh_TW.Big5.json +5 -2
  104. umap/static/umap/locale/zh_TW.json +5 -2
  105. umap/static/umap/map.css +22 -22
  106. umap/static/umap/unittests/utils.js +5 -5
  107. umap/static/umap/vars.css +12 -1
  108. umap/storage.py +1 -1
  109. umap/tests/integration/test_browser.py +76 -3
  110. umap/tests/integration/test_edit_polygon.py +11 -0
  111. umap/tests/integration/test_map.py +29 -0
  112. umap/tests/integration/test_map_preview.py +36 -2
  113. umap/tests/integration/test_view_marker.py +2 -2
  114. umap/tests/test_views.py +2 -2
  115. umap/views.py +3 -2
  116. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/METADATA +3 -3
  117. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/RECORD +120 -129
  118. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/WHEEL +1 -1
  119. umap/.DS_Store +0 -0
  120. umap/static/.DS_Store +0 -0
  121. umap/static/umap/.DS_Store +0 -0
  122. umap/static/umap/favicons/.DS_Store +0 -0
  123. umap/static/umap/fonts/.DS_Store +0 -0
  124. umap/static/umap/img/.DS_Store +0 -0
  125. umap/static/umap/img/source/.DS_Store +0 -0
  126. umap/tests/.DS_Store +0 -0
  127. umap/tests/integration/.DS_Store +0 -0
  128. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/entry_points.txt +0 -0
  129. {umap_project-2.4.0b2.dist-info → umap_project-2.4.2.dist-info}/licenses/LICENSE +0 -0
@@ -12,13 +12,13 @@
12
12
  "5 min": "5 min",
13
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Una lista de números separados por comas que define el patrón de trazos. Por ejemplo: \"5, 10, 15\".",
14
14
  "About": "Acerca de",
15
- "Action not allowed :(": "Action not allowed :(",
15
+ "Action not allowed :(": "Acción no permitida :(",
16
16
  "Activate slideshow mode": "Activar el modo presentación de diapositivas",
17
17
  "Add a layer": "Añadir una capa",
18
18
  "Add a line to the current multi": "Añadir una línea para el multi elemento actual",
19
19
  "Add a new property": "Añadir una nueva propiedad",
20
20
  "Add a polygon to the current multi": "Añadir un polígono al multi elemento actual",
21
- "Add image URL": "Add image URL",
21
+ "Add image URL": "Añadir URL de la imagen",
22
22
  "Add": "Añadir",
23
23
  "Advanced actions": "Acciones avanzadas",
24
24
  "Advanced properties": "Propiedades avanzadas",
@@ -83,7 +83,7 @@
83
83
  "Congratulations, your map has been created!": "Enhorabuena, ¡su mapa ha sido creado!",
84
84
  "Continue line": "Línea continua",
85
85
  "Coordinates": "Coordenadas",
86
- "copy": "copy",
86
+ "copy": "copiar",
87
87
  "Credits": "Créditos",
88
88
  "Current map view": "Current map view",
89
89
  "Current view instead of default map view?": "¿Vista actual en lugar de la vista del mapa predeterminada?",
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Defina un enlace para abrir en un nueva ventana al hacer clic en el polígono.",
103
103
  "define": "definir",
104
104
  "Delay between two transitions when in play mode": "Retraso entre dos transiciones cuando se está en el modo de reproducción",
105
- "Delete all layers": "Borrar todas las capas",
106
105
  "Delete layer": "Borrar capa",
107
106
  "Delete this feature": "Borrar este elemento",
108
107
  "Delete this property on all the features": "Borrar esta propiedad en todos los elementos",
@@ -185,7 +184,7 @@
185
184
  "icon opacity": "opacidad del icono",
186
185
  "Icon shape": "Forma de icono",
187
186
  "Icon symbol": "Símbolo del icono",
188
- "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
187
+ "If false, the polygon or line will act as a part of the underlying map.": "Si está desactivado el polígono o la línea será como una parte del mapa subyacente.",
189
188
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe con altura personalizada (en píxeles): {{{http://iframe.url.com|altura}}}",
190
189
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe con alto y ancho (en px) personalizado: {{{http://iframe.url.com|height*width}}}",
191
190
  "iframe": "iframe",
@@ -305,7 +304,7 @@
305
304
  "Replace layer content": "Reemplaza el contenido de la capa",
306
305
  "Restore this version": "Restaurar esta versión",
307
306
  "Save current edits": "Guardar las ediciones actuales",
308
- "Save map": "Save map",
307
+ "Save map": "Guardar el mapa",
309
308
  "Save this center and zoom": "Guardar este centrado y acercamiento",
310
309
  "Save this location as new feature": "Guardar esta ubicación como nuevo elemento",
311
310
  "Save": "Guardar",
@@ -344,7 +343,7 @@
344
343
  "Table": "Tabla",
345
344
  "Text color for the cluster label": "Color del texto para la etiqueta clúster",
346
345
  "Text formatting": "Formato de texto",
347
- "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}\")": "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}\")",
346
+ "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}\")": "El nombre de la propiedad a utilizar como etiqueta de la característica (ej.: \"nombre\"). También puede utilizar propiedades entre llaves para utilizar más de una o mezclarlas con contenido estático (p. ej.: \"{nombre} en {lugar}\").",
348
347
  "The name of the property to use as feature unique identifier.": "El nombre de la propiedad a utilizar como identificador único del elemento.",
349
348
  "The zoom and center have been modified.": "Se han modificado el zoom y el centro.",
350
349
  "TMS format": "formato TMS",
@@ -409,7 +408,7 @@
409
408
  "{distance} NM": "{distancia} NM",
410
409
  "{distance} yd": "{distancia} yd",
411
410
  "Edit map name and caption": "Edit map name and caption",
412
- "Map advanced properties": "Map advanced properties",
411
+ "Map advanced properties": "Propiedades avanzadas del mapa",
413
412
  "Edit map details": "Edit map details",
414
413
  "Back to browser": "Back to browser",
415
414
  "Toggle size": "Toggle size",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "määra",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Kustuta kõik kihid",
106
105
  "Delete layer": "Kustuta kiht",
107
106
  "Delete this feature": "Kustuta see element",
108
107
  "Delete this property on all the features": "Kustuta see omadus kõigi elementide juures",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "پیوندی را باز کنید که در یک پنجره جدید با کلیک چند ضلعی باز می شود.",
103
103
  "define": "تعريف كردن",
104
104
  "Delay between two transitions when in play mode": "تأخیر بین دو انتقال در حالت پخش",
105
- "Delete all layers": "حذف همه لایه ها",
106
105
  "Delete layer": "حذف لایه",
107
106
  "Delete this feature": "این ویژگی را حذف کنید",
108
107
  "Delete this property on all the features": "این ویژگی را در همه ویژگی ها حذف کنید",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "määritä",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Poista kaikki kerrokset",
106
105
  "Delete layer": "Poista kerros",
107
106
  "Delete this feature": "Poista tämä piirre",
108
107
  "Delete this property on all the features": "Poista tämä ominaisuus kaikista piirteistä",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -481,7 +481,8 @@ const locale = {
481
481
  "Only geometry centers": "Seulement les centres",
482
482
  "Search area": "Chercher un coin",
483
483
  "Type area name, or let empty to load data in current map view": "Entrer le nom d'un périmètre géographique, ou laisser vide pour utiliser la vue courante de la carte",
484
- "Please define an expression for the query first": "Définir une expression pour la requête"
484
+ "Please define an expression for the query first": "Définir une expression pour la requête",
485
+ "Data successfully imported!": "Les données ont été importées!"
485
486
  }
486
487
  L.registerLocale("fr", locale)
487
488
  L.setLocale("fr")
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Définit un lien à ouvrir dans une nouvelle fenêtre au clic sur le polygone.",
103
103
  "define": "définir",
104
104
  "Delay between two transitions when in play mode": "Délai entre les transitions en mode lecture",
105
- "Delete all layers": "Supprimer tous les calques",
106
105
  "Delete layer": "Supprimer le calque",
107
106
  "Delete this feature": "Supprimer cet élément",
108
107
  "Delete this property on all the features": "Supprimer cette propriété",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Seulement les centres",
482
481
  "Search area": "Chercher un coin",
483
482
  "Type area name, or let empty to load data in current map view": "Entrer le nom d'un périmètre géographique, ou laisser vide pour utiliser la vue courante de la carte",
484
- "Please define an expression for the query first": "Définir une expression pour la requête"
483
+ "Please define an expression for the query first": "Définir une expression pour la requête",
484
+ "Data successfully imported!": "Les données ont été importées!",
485
+ "My Dashboard ({username})": "Mon tableau de bord ({username})",
486
+ "Clear data": "Effacer les données",
487
+ "Remove layers": "Supprimer les calques"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Defina unha ligazón para abrir nunha nova xanela ó premer no polígono.",
103
103
  "define": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Eliminar tódalas capas",
106
105
  "Delete layer": "Eliminar capa",
107
106
  "Delete this feature": "Eliminar este elemento",
108
107
  "Delete this property on all the features": "Eliminar esta propiedade en tódolos elementos",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "יש להגדיר קישור לפתיחה בחלון חדש עם לחיצה על מצולע.",
103
103
  "define": "הגדרה",
104
104
  "Delay between two transitions when in play mode": "השהיה בין שתי העברות כשמדובר במצב משחק",
105
- "Delete all layers": "מחיקת כל השכבות",
106
105
  "Delete layer": "מחיקת שכבה",
107
106
  "Delete this feature": "מחיקת התכונה הזו",
108
107
  "Delete this property on all the features": "מחיקת המאפיין הזה מכל התכונות",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Brisanje ovog elementa",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "A sokszögre kattintva új ablakban megnyíló link meghatározása.",
103
103
  "define": "meghatározás",
104
104
  "Delay between two transitions when in play mode": "Az áttűnések közötti késés lejátszási üzemmódban",
105
- "Delete all layers": "Összes réteg törlése",
106
105
  "Delete layer": "Réteg törlése",
107
106
  "Delete this feature": "Objektum törlése",
108
107
  "Delete this property on all the features": "Tulajdonság törlése az összes objektumról",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Delete this feature",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Skilgreindu tengil til að opna í nýjum glugga þegar smellt er á marghyrning.",
103
103
  "define": "skilgreina",
104
104
  "Delay between two transitions when in play mode": "Hlé milli tveggja millifærslna í afspilunarham",
105
- "Delete all layers": "Eyða öllum lögum",
106
105
  "Delete layer": "Eyða lagi",
107
106
  "Delete this feature": "Eyða þessari fitju",
108
107
  "Delete this property on all the features": "Eyða þessu eigindi á öllum fitjum",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Definisci un link d'aprire in una nuova finestra al clic sul poligono.",
103
103
  "define": "definisci",
104
104
  "Delay between two transitions when in play mode": "Ritardo tra le due transizioni in modalità di riproduzione",
105
- "Delete all layers": "Elimina tutti i layer",
106
105
  "Delete layer": "Elimina layer",
107
106
  "Delete this feature": "Cancella questo oggetto",
108
107
  "Delete this property on all the features": "Cancella questa proprietà in tutti gli oggetti",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "ポリゴンクリック時にリンクを新しいウィンドウで開く",
103
103
  "define": "指定",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "すべてのレイヤを削除",
106
105
  "Delete layer": "レイヤを削除",
107
106
  "Delete this feature": "地物を削除",
108
107
  "Delete this property on all the features": "すべての地物からこのプロパティを削除",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "정의",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Delete this feature",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Ištrinti šį objektą",
108
107
  "Delete this property on all the features": "Pašalinti šį parametrą visuose objektuose",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Tetapkan pautan untuk buka dalam tetingkap baharu apabila poligon diklik",
103
103
  "define": "takrif",
104
104
  "Delay between two transitions when in play mode": "Lengah di antara dua transisi apabila dalam mod main",
105
- "Delete all layers": "Padam semua lapisan",
106
105
  "Delete layer": "Padam lapisan",
107
106
  "Delete this feature": "Padam sifat ini",
108
107
  "Delete this property on all the features": "Padam ciri-ciri ini di kesemua sifat-sifat",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Stel outputlink in om een nieuw venster te openen wanneer polygoon wordt aangeklikt",
103
103
  "define": "definieer",
104
104
  "Delay between two transitions when in play mode": "Pauze tussen twee transities wanneer in afspeel-modus",
105
- "Delete all layers": "Verwijder alle lagen",
106
105
  "Delete layer": "Verwijder laag",
107
106
  "Delete this feature": "Dit object verwijderen",
108
107
  "Delete this property on all the features": "Verwijder deze eigenschap bij alle objecten",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "definer",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Slett alle lag",
106
105
  "Delete layer": "Slett lag",
107
106
  "Delete this feature": "Slett dette objektet",
108
107
  "Delete this property on all the features": "Slett denne egenskapen fra alle objekter",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Ustaw odnośnik, który otworzy się w nowym oknie po kliknięciu wielokąta.",
103
103
  "define": "określ",
104
104
  "Delay between two transitions when in play mode": "Opóźnienie pomiędzy dwoma przejściami w trybie odtwarzania",
105
- "Delete all layers": "Usuń wszystkie warstwy",
106
105
  "Delete layer": "Usuń warstwę",
107
106
  "Delete this feature": "Usuń ten obiekt",
108
107
  "Delete this property on all the features": "Usuń tę właściwość ze wszystkich obiektów",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }
@@ -102,7 +102,6 @@
102
102
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
103
103
  "define": "define",
104
104
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
105
- "Delete all layers": "Delete all layers",
106
105
  "Delete layer": "Delete layer",
107
106
  "Delete this feature": "Delete this feature",
108
107
  "Delete this property on all the features": "Delete this property on all the features",
@@ -481,5 +480,9 @@
481
480
  "Only geometry centers": "Only geometry centers",
482
481
  "Search area": "Search area",
483
482
  "Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
484
- "Please define an expression for the query first": "Please define an expression for the query first"
483
+ "Please define an expression for the query first": "Please define an expression for the query first",
484
+ "Data successfully imported!": "Data successfully imported!",
485
+ "My Dashboard ({username})": "My Dashboard ({username})",
486
+ "Clear data": "Clear data",
487
+ "Remove layers": "Remove layers"
485
488
  }