umap-project 2.8.2__py3-none-any.whl → 2.9.0b0__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 (157) hide show
  1. umap/__init__.py +1 -1
  2. umap/asgi.py +12 -7
  3. umap/context_processors.py +1 -0
  4. umap/locale/en/LC_MESSAGES/django.po +102 -59
  5. umap/locale/fr/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/fr/LC_MESSAGES/django.po +105 -61
  7. umap/management/commands/empty_trash.py +12 -1
  8. umap/migrations/0026_datalayer_modified_at_datalayer_share_status.py +26 -0
  9. umap/models.py +23 -3
  10. umap/settings/base.py +4 -1
  11. umap/static/umap/base.css +1 -1
  12. umap/static/umap/content.css +2 -22
  13. umap/static/umap/css/bar.css +7 -10
  14. umap/static/umap/css/form.css +28 -29
  15. umap/static/umap/css/icon.css +8 -2
  16. umap/static/umap/css/panel.css +2 -1
  17. umap/static/umap/css/tooltip.css +33 -31
  18. umap/static/umap/img/16-white.svg +2 -0
  19. umap/static/umap/img/16.svg +1 -1
  20. umap/static/umap/img/providers/bitbucket.png +0 -0
  21. umap/static/umap/img/providers/github.png +0 -0
  22. umap/static/umap/img/providers/keycloak.png +0 -0
  23. umap/static/umap/img/providers/openstreetmap-oauth2.png +0 -0
  24. umap/static/umap/img/providers/twitter-oauth2.png +0 -0
  25. umap/static/umap/img/source/16-white.svg +3 -1
  26. umap/static/umap/img/source/16.svg +1 -1
  27. umap/static/umap/js/components/alerts/alert.js +4 -1
  28. umap/static/umap/js/modules/browser.js +6 -6
  29. umap/static/umap/js/modules/caption.js +30 -7
  30. umap/static/umap/js/modules/data/features.js +21 -24
  31. umap/static/umap/js/modules/data/layer.js +71 -33
  32. umap/static/umap/js/modules/form/builder.js +241 -0
  33. umap/static/umap/js/modules/form/fields.js +1338 -0
  34. umap/static/umap/js/modules/formatter.js +5 -8
  35. umap/static/umap/js/modules/help.js +3 -1
  36. umap/static/umap/js/modules/importer.js +1 -1
  37. umap/static/umap/js/modules/permissions.js +5 -4
  38. umap/static/umap/js/modules/rendering/icon.js +5 -1
  39. umap/static/umap/js/modules/rendering/layers/classified.js +11 -7
  40. umap/static/umap/js/modules/rendering/layers/cluster.js +11 -1
  41. umap/static/umap/js/modules/rendering/map.js +0 -2
  42. umap/static/umap/js/modules/rules.js +2 -1
  43. umap/static/umap/js/modules/schema.js +5 -6
  44. umap/static/umap/js/modules/share.js +3 -3
  45. umap/static/umap/js/modules/sync/engine.js +18 -13
  46. umap/static/umap/js/modules/sync/updaters.js +8 -0
  47. umap/static/umap/js/modules/sync/websocket.js +10 -5
  48. umap/static/umap/js/modules/tableeditor.js +3 -2
  49. umap/static/umap/js/modules/ui/bar.js +17 -9
  50. umap/static/umap/js/modules/ui/base.js +7 -24
  51. umap/static/umap/js/modules/ui/tooltip.js +19 -11
  52. umap/static/umap/js/modules/umap.js +36 -24
  53. umap/static/umap/js/modules/utils.js +196 -12
  54. umap/static/umap/js/umap.controls.js +0 -12
  55. umap/static/umap/locale/br.js +21 -13
  56. umap/static/umap/locale/br.json +21 -13
  57. umap/static/umap/locale/ca.js +12 -4
  58. umap/static/umap/locale/ca.json +12 -4
  59. umap/static/umap/locale/cs_CZ.js +10 -4
  60. umap/static/umap/locale/cs_CZ.json +10 -4
  61. umap/static/umap/locale/de.js +12 -4
  62. umap/static/umap/locale/de.json +12 -4
  63. umap/static/umap/locale/el.js +12 -4
  64. umap/static/umap/locale/el.json +12 -4
  65. umap/static/umap/locale/en.js +9 -4
  66. umap/static/umap/locale/en.json +9 -4
  67. umap/static/umap/locale/es.js +20 -12
  68. umap/static/umap/locale/es.json +20 -12
  69. umap/static/umap/locale/eu.js +12 -4
  70. umap/static/umap/locale/eu.json +12 -4
  71. umap/static/umap/locale/fa_IR.js +12 -4
  72. umap/static/umap/locale/fa_IR.json +12 -4
  73. umap/static/umap/locale/fr.js +10 -5
  74. umap/static/umap/locale/fr.json +10 -5
  75. umap/static/umap/locale/gl.js +353 -345
  76. umap/static/umap/locale/gl.json +353 -345
  77. umap/static/umap/locale/hu.js +9 -4
  78. umap/static/umap/locale/hu.json +9 -4
  79. umap/static/umap/locale/it.js +100 -92
  80. umap/static/umap/locale/it.json +100 -92
  81. umap/static/umap/locale/ms.js +12 -4
  82. umap/static/umap/locale/ms.json +12 -4
  83. umap/static/umap/locale/nl.js +12 -4
  84. umap/static/umap/locale/nl.json +12 -4
  85. umap/static/umap/locale/pl.js +12 -4
  86. umap/static/umap/locale/pl.json +12 -4
  87. umap/static/umap/locale/pt.js +12 -4
  88. umap/static/umap/locale/pt.json +12 -4
  89. umap/static/umap/locale/pt_PT.js +12 -4
  90. umap/static/umap/locale/pt_PT.json +12 -4
  91. umap/static/umap/locale/th_TH.js +12 -4
  92. umap/static/umap/locale/th_TH.json +12 -4
  93. umap/static/umap/locale/zh_TW.js +10 -4
  94. umap/static/umap/locale/zh_TW.json +10 -4
  95. umap/static/umap/map.css +12 -8
  96. umap/static/umap/nav.css +2 -3
  97. umap/static/umap/unittests/utils.js +14 -0
  98. umap/static/umap/vars.css +2 -0
  99. umap/sync/__init__.py +0 -0
  100. umap/sync/app.py +181 -0
  101. umap/sync/payloads.py +49 -0
  102. umap/templates/auth/user_detail.html +4 -0
  103. umap/templates/auth/user_form.html +9 -6
  104. umap/templates/auth/user_stars.html +4 -0
  105. umap/templates/base.html +1 -1
  106. umap/templates/registration/login.html +2 -5
  107. umap/templates/umap/about.html +5 -0
  108. umap/templates/umap/about_summary.html +2 -2
  109. umap/templates/umap/components/provider.html +8 -0
  110. umap/templates/umap/js.html +0 -3
  111. umap/templates/umap/map_detail.html +1 -1
  112. umap/templates/umap/password_change.html +4 -0
  113. umap/templates/umap/password_change_done.html +4 -0
  114. umap/templates/umap/search.html +4 -0
  115. umap/templates/umap/team_confirm_delete.html +4 -0
  116. umap/templates/umap/team_detail.html +4 -0
  117. umap/templates/umap/team_form.html +4 -0
  118. umap/templates/umap/user_dashboard.html +1 -1
  119. umap/templates/umap/user_teams.html +4 -0
  120. umap/tests/base.py +3 -1
  121. umap/tests/integration/conftest.py +16 -23
  122. umap/tests/integration/test_basics.py +2 -2
  123. umap/tests/integration/test_caption.py +1 -0
  124. umap/tests/integration/test_draw_polygon.py +3 -3
  125. umap/tests/integration/test_edit_datalayer.py +1 -1
  126. umap/tests/integration/test_edit_map.py +3 -3
  127. umap/tests/integration/test_edit_polygon.py +1 -1
  128. umap/tests/integration/test_import.py +23 -1
  129. umap/tests/integration/test_optimistic_merge.py +1 -0
  130. umap/tests/integration/test_picto.py +8 -8
  131. umap/tests/integration/test_save.py +1 -0
  132. umap/tests/integration/test_star.py +13 -9
  133. umap/tests/integration/test_tableeditor.py +1 -0
  134. umap/tests/integration/test_websocket_sync.py +112 -33
  135. umap/tests/settings.py +2 -0
  136. umap/tests/test_datalayer.py +2 -3
  137. umap/tests/test_datalayer_views.py +20 -1
  138. umap/tests/test_empty_trash.py +10 -3
  139. umap/tests/test_map_views.py +11 -0
  140. umap/utils.py +24 -11
  141. umap/views.py +37 -6
  142. {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/METADATA +15 -15
  143. {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/RECORD +146 -145
  144. {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/WHEEL +1 -1
  145. umap/management/commands/run_websocket_server.py +0 -23
  146. umap/settings/local_s3.py +0 -45
  147. umap/static/umap/bitbucket.png +0 -0
  148. umap/static/umap/github.png +0 -0
  149. umap/static/umap/js/umap.forms.js +0 -1242
  150. umap/static/umap/keycloak.png +0 -0
  151. umap/static/umap/openstreetmap.png +0 -0
  152. umap/static/umap/twitter.png +0 -0
  153. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +0 -468
  154. umap/tests/test_websocket_server.py +0 -22
  155. umap/websocket_server.py +0 -202
  156. {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/entry_points.txt +0 -0
  157. {umap_project-2.8.2.dist-info → umap_project-2.9.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,69 +1,68 @@
1
1
  {
2
- "(area: {measure})": "(area: {measure})",
3
- "(length: {measure})": "(length: {measure})",
2
+ "(area: {measure})": "(área: {measure})",
3
+ "(length: {measure})": "(lonxitude: {measure})",
4
4
  "# one hash for main heading": "# un cancelo para a cabeceira principal",
5
5
  "## two hashes for second heading": "## dous cancelos para a cabeceira secundaria",
6
6
  "### three hashes for third heading": "### tres cancelos para a cabeceira terciaria",
7
- "**double star for bold**": "**dous asteriscos para pór negriña**",
8
- "*single star for italic*": "*single star for italic*",
9
- "--- for a horizontal rule": "--- for a horizontal rule",
7
+ "**double star for bold**": "**dous asteriscos para pór letra grosa**",
8
+ "*single star for italic*": "*un único asterisco para pór letra itálica*",
9
+ "--- for a horizontal rule": "--- para pór unha liña horizontal",
10
10
  "1 day": "1 día",
11
11
  "1 hour": "1 hora",
12
12
  "5 min": "5 min",
13
- "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Unha listaxe separada por vírgulas que define o patrón de trazos de guión. Ex.: \"5, 10, 15\".",
14
- "About": "Acerca de",
15
- "Action not allowed :(": "Action not allowed :(",
16
- "Activate slideshow mode": "Activate slideshow mode",
13
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Unha listaxe separada por comas que define o patrón de trazos de guión. ex.: «5, 10, 15».",
14
+ "About": "Sobre",
15
+ "Action not allowed :(": "Acción non permitida :(",
16
+ "Activate slideshow mode": "Activar o modo diaporama",
17
17
  "Add a layer": "Engadir unha capa",
18
- "Add a line to the current multi": "Engadir unha liña para o multi actual",
18
+ "Add a line to the current multi": "Engadir unha liña para o multielemento actual",
19
19
  "Add a new property": "Engadir unha nova propiedade",
20
- "Add a polygon to the current multi": "Enhadir un polígono para o multi actual",
21
- "Add image URL": "Add image URL",
22
- "Add": "Add",
20
+ "Add a polygon to the current multi": "Engadir un polígono para o multielemento actual",
21
+ "Add image URL": "Engadir o URL da imaxe",
23
22
  "Advanced actions": "Accións avanzadas",
24
23
  "Advanced properties": "Propiedades avanzadas",
25
- "All data and settings of the map": "All data and settings of the map",
26
- "All properties are imported.": "Tódalas propiedades son importadas.",
24
+ "All data and settings of the map": "Todos os datos e axustes do mapa",
25
+ "All properties are imported.": "Todas as propiedades son importadas.",
27
26
  "Allow interactions": "Permitir interaccións",
28
- "Allow scroll wheel zoom?": "Permitir o achegamento ca roda do rato?",
27
+ "Allow scroll wheel zoom?": "Permitir o zoom coa roda do rato?",
29
28
  "always": "sempre",
30
- "Animated transitions": "Animated transitions",
31
- "Are you sure you want to cancel your changes?": "Estás na certeza de que desexas desbotar as túas mudanzas?",
32
- "Are you sure you want to clone this map and all its datalayers?": "Estás na certeza de que desexas clonar este mapa e tódalas súas capas de datos?",
33
- "Are you sure you want to delete the feature?": "Estás na certeza de que desexas eliminar este elemento?",
34
- "Are you sure you want to delete this layer?": "Estás na certeza de que desexas eliminar esta capa?",
35
- "Are you sure you want to delete this map?": "Estás na certeza de que desexas eliminar este mapa?",
36
- "Are you sure you want to delete this property on all the features?": "Estás na certeza de que desexas eliminar esta propiedade en tódolos elementos?",
37
- "Are you sure you want to restore this version?": "Estás na certeza de que desexas restabelecer esta versión?",
38
- "Attach the map to my account": "Adxuntar o mapa á miña conta",
29
+ "Animated transitions": "Transicións animadas",
30
+ "Are you sure you want to cancel your changes?": "Confirmas que queres desbotar os teus cambios?",
31
+ "Are you sure you want to clone this map and all its datalayers?": "Confirmas que queres clonar este mapa e todas as súas capas de datos?",
32
+ "Are you sure you want to delete the feature?": "Confirmas que queres eliminar este elemento?",
33
+ "Are you sure you want to delete this layer?": "Confirmas que queres eliminar esta capa?",
34
+ "Are you sure you want to delete this map?": "Confirmas que queres eliminar este mapa?",
35
+ "Are you sure you want to delete this property on all the features?": "Confirmas que queres eliminar esta propiedade en todos os elementos?",
36
+ "Are you sure you want to restore this version?": "Confirmas que queres restabelecer esta versión?",
37
+ "Attach the map to my account": "Incorporar o mapa á miña conta",
39
38
  "attribution": "atribución",
40
39
  "Auto": "Automático",
41
40
  "Automatic": "Automático",
42
- "Autostart when map is loaded": "Autocomezar cando o mapa estea cargado",
43
- "Back to preview": "Back to preview",
44
- "Background overlay url": "Background overlay url",
41
+ "Autostart when map is loaded": "Iniciar automaticamente cando o mapa estea cargado",
42
+ "Back to preview": "Volver á vista previa",
43
+ "Background overlay url": "URL de superposición de fondo",
45
44
  "Ball": "Bóla",
46
- "Bring feature to center": "Bring feature to center",
45
+ "Bring feature to center": "Levar o elemento ao centro",
47
46
  "Browse data": "Navegar polos datos",
48
47
  "by": "por",
49
- "Cache proxied request": "Solicitude de proxy da caché",
48
+ "Cache proxied request": "Solicitude de proxy da memoria tobo",
50
49
  "Cancel edits": "Desbotar as edicións",
51
- "Caption": "Subtítulo",
52
- "Center map on your location": "Centrar o mapa na túa ubicación",
53
- "Change map background": "Mudar o mapa do fondo",
54
- "Change tilelayers": "Mudar as capas de teselas",
55
- "Change": "Change",
50
+ "Caption": "Lenda",
51
+ "Center map on your location": "Centrar o mapa na túa posición",
52
+ "Change map background": "Cambiar o mapa do fondo",
53
+ "Change tilelayers": "Cambiar as capas de teselas",
54
+ "Change": "Cambiar",
56
55
  "Choose the data format": "Escoller o formato de datos",
57
- "Choropleth breakpoints": "Choropleth breakpoints",
58
- "Choropleth classes": "Choropleth classes",
59
- "Choropleth color palette": "Choropleth color palette",
60
- "Choropleth mode": "Choropleth mode",
61
- "Choropleth property value": "Choropleth property value",
62
- "Choropleth": "Choropleth",
56
+ "Choropleth breakpoints": "Puntos de ruptura de coropletas",
57
+ "Choropleth classes": "Clases de coropletas",
58
+ "Choropleth color palette": "Paleta de cores de coropletas",
59
+ "Choropleth mode": "Modo de coropletas",
60
+ "Choropleth property value": "Valor da propiedade da coropleta",
61
+ "Choropleth": "Cloropetas",
63
62
  "Circle": "Círculo",
64
63
  "clear": "limpar",
65
64
  "Click last point to finish shape": "Preme no derradeiro punto para rematar a forma",
66
- "Click to add a marker": "Preme para engadir unha marcaxe",
65
+ "Click to add a marker": "Preme para engadir un marcador",
67
66
  "Click to continue drawing": "Preme para seguir debuxando",
68
67
  "Click to edit": "Preme para editar",
69
68
  "Click to start drawing a line": "Preme para comezar a debuxar unha liña",
@@ -75,102 +74,101 @@
75
74
  "Close": "Pechar",
76
75
  "Clustered": "Agrupados",
77
76
  "Clustering radius": "Raio de agrupamento",
78
- "collapsed": "agochado",
77
+ "collapsed": "contraído",
79
78
  "color": "cor",
80
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
81
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
82
- "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.",
83
- "Congratulations, your map has been created!": "Congratulations, your map has been created!",
79
+ "Comma separated list of numbers, including min and max values.": "Lista de números separados por comas, incluídos os valores mínimo e máximo.",
80
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Lista de propiedades separadas por comas a empregar para ordenar elementos. Para inverter a ordenación, pon un signo menos (-) antes. ex.: amiñaclave,-outraclave.",
81
+ "Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Valores separados por comas, tabulacións ou puntos e coma. SRS WGS84 está implícito. se importan xeometrías de puntos. A importación buscará nas cabeceiras das columnas calquera mención de «lat» e «lon» ao comezo da cabeceira, sen distinción entre maiúsculas e minúsculas. Todas as demais columnas impórtanse como propiedades.",
82
+ "Congratulations, your map has been created!": "Parabéns! O teu mapa foi creado!",
84
83
  "Continue line": "Liña continua",
85
84
  "Coordinates": "Coordenadas",
86
- "copy": "copy",
87
- "Credits": "Cretos",
88
- "Current map view": "Current map view",
85
+ "copy": "copia",
86
+ "Credits": "Recoñecementos",
87
+ "Current map view": "Vista do mapa actual",
89
88
  "Current view instead of default map view?": "Vista actual en troques da vista predeterminada?",
90
- "Custom background": "Fondo persoalizado",
91
- "Custom overlay": "Custom overlay",
89
+ "Custom background": "Fondo personalizado",
90
+ "Custom overlay": "Superposición personalizada",
92
91
  "dash array": "matriz de guións",
93
92
  "Data is browsable": "Os datos son navegábeis",
94
- "Datalayers": "Datalayers",
95
- "Default interaction options": "Opcións de interacción predeterminados",
93
+ "Datalayers": "Capas de datos",
94
+ "Default interaction options": "Opcións de interacción predeterminadas",
96
95
  "Default properties": "Propiedades predeterminadas",
97
- "Default shape properties": "Propiedades de formas predeterminados",
98
- "Default view": "Default view",
99
- "Default zoom level": "Nivel do achegamento predeterminado",
100
- "Default": "Por defecto",
101
- "Default: name": "Por defecto: nome",
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
- "define": "define",
104
- "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
96
+ "Default shape properties": "Propiedades de forma predeterminadas",
97
+ "Default view": "Vista predeterminada",
98
+ "Default zoom level": "Nivel de zoom predeterminado",
99
+ "Default": "Predeterminado",
100
+ "Default: name": "Predeterminado: nome",
101
+ "Define link to open in a new window on polygon click.": "Defina unha ligazón para abrir nunha nova xanela ao premer no polígono.",
102
+ "define": "definir",
103
+ "Delay between two transitions when in play mode": "Atraso entre dúas transicións cando está en modo de reprodución",
105
104
  "Delete layer": "Eliminar capa",
106
105
  "Delete this feature": "Eliminar este elemento",
107
106
  "Delete this shape": "Eliminar esta forma",
108
- "Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+Clic)",
107
+ "Delete this vertex (Alt+Click)": "Eliminar este vértice (Alt+Premer)",
109
108
  "Delete": "Eliminar",
110
109
  "description": "descrición",
111
- "Direct link": "Direct link",
112
- "Directions from here": "Direccións dende aquí",
113
- "Display label": "Amosar etiqueta",
114
- "Display measure": "Amosar medida",
110
+ "Direct link": "Ligazón directa",
111
+ "Directions from here": "Direccións desde aquí",
112
+ "Display label": "Amosar a etiqueta",
113
+ "Display measure": "Amosar a medida",
115
114
  "display name": "amosar o nome",
116
- "Display on load": "Amosar ó cargar",
117
- "Display the control to open OpenStreetMap editor": "Amosar o control para abrir o editor do OpenStreetMap",
115
+ "Display on load": "Amosar ao cargar",
116
+ "Display the control to open OpenStreetMap editor": "Amosar o control para abrir o editor de OpenStreetMap",
118
117
  "Display the embed control": "Amosar o control de incrustado",
119
118
  "Display the fullscreen control": "Amosar o control de pantalla completa",
120
- "Display the locate control": "Amosar o control de ubicación",
119
+ "Display the locate control": "Amosar o control de posición",
121
120
  "Display the measure control": "Amosar o control de medida",
122
121
  "Display the search control": "Amosar o control de procura",
123
- "Display the star map button": "Display the star map button",
124
122
  "Display the tile layers control": "Amosar o control de capas de teselas",
125
- "Display the zoom control": "Amosar o control de achegamento",
126
- "Do you want to display a caption bar?": "Desexas amosar a barra de subtítulos?",
127
- "Do you want to display a minimap?": "Desexas amosar un minimapa?",
128
- "Do you want to display a panel on load?": "Desexas amosar un panel ó cargar?",
129
- "Do you want to display caption menus?": "Do you want to display caption menus?",
130
- "Do you want to display popup footer?": "Desexas amosar a xanela emerxente no pé de páxina?",
131
- "Do you want to display the scale control?": "Desexas amosar o control de escala?",
132
- "Do you want to display the «more» control?": "Desexas amosar o control «máis»?",
133
- "Download": "Baixar",
123
+ "Display the zoom control": "Amosar o control do zoom",
124
+ "Do you want to display a caption bar?": "Queres amosar unha barra de lendas?",
125
+ "Do you want to display a minimap?": "Queres amosar un minimapa?",
126
+ "Do you want to display a panel on load?": "Queres amosar un panel ao cargar?",
127
+ "Do you want to display caption menus?": "Queres amosar o menú de subtítulos?",
128
+ "Do you want to display popup footer?": "Queres amosar a xanela emerxente no rodapé?",
129
+ "Do you want to display the scale control?": "Queres amosar o control de escala?",
130
+ "Do you want to display the «more» control?": "Queres amosar o control «máis»?",
131
+ "Download": "Descargar",
134
132
  "Drag to reorder": "Arrastrar para reordenar",
135
- "Draw a marker": "Debuxa unha marcaxe",
133
+ "Draw a marker": "Debuxar un marcador",
136
134
  "Draw a polygon": "Debuxa un polígono",
137
- "Draw a polyline": "Debuxa unha liña múltiple",
138
- "Drawing": "Drawing",
139
- "Drop": "Marcaxe",
135
+ "Draw a polyline": "Debuxa unha poliliña",
136
+ "Drawing": "Debuxo",
137
+ "Drop": "Gota",
140
138
  "Dynamic properties": "Propiedades dinámicas",
141
139
  "Dynamic": "Dinámico",
142
140
  "Edit feature's layer": "Editar a capa do elemento",
143
- "Edit properties in a table": "Editar propiedades nunha táboa",
144
- "Edit the title of the map": "Edit the title of the map",
141
+ "Edit properties in a table": "Editar as propiedades nunha táboa",
142
+ "Edit the title of the map": "Editar o título do mapa",
145
143
  "Edit this feature": "Editar este elemento",
146
144
  "Edit": "Editar",
147
- "Embed and link options": "Embed and link options",
148
- "Embed the map": "Incorporar o mapa",
149
- "Emoji & Character": "Emoji & Character",
145
+ "Embed and link options": "Opcións de incrustación e ligazón",
146
+ "Embed the map": "Incrustar o mapa",
147
+ "Emoji & Character": "Emojis e personaxes",
150
148
  "Empty": "Baleirar",
151
- "Equidistant": "Equidistant",
152
- "Error in the overlay URL": "Error in the overlay URL",
153
- "Error in the tilelayer URL": "Erro na URL da capa de teselas",
149
+ "Equidistant": "Equidistante",
150
+ "Error in the overlay URL": "Hai un erro no URL de superposición",
151
+ "Error in the tilelayer URL": "Hai un erro no URL da capa de teselas",
154
152
  "Exit Fullscreen": "Saír da pantalla completa",
155
153
  "expanded": "expandido",
156
- "Extract shape to separate feature": "Extraer a forma ó elemento separado",
157
- "Feature identifier key": "Feature identifier key",
158
- "Feature properties": "Feature properties",
159
- "Fetch data each time map view changes.": "Obter os datos cada vez que a vista do mapa muda.",
154
+ "Extract shape to separate feature": "Extraer a forma para separar o elemento",
155
+ "Feature identifier key": "Chave identificadora do elemento",
156
+ "Feature properties": "Propiedades do elemento",
157
+ "Fetch data each time map view changes.": "Obter os datos cada vez que cambia a vista do mapa.",
160
158
  "fill color": "cor de recheo",
161
- "fill opacity": "rechear a opacidade",
162
- "fill": "rechear",
163
- "Fit all data": "Fit all data",
159
+ "fill opacity": "reencher a opacidade",
160
+ "fill": "reencher",
161
+ "Fit all data": "Axustar todos os datos",
164
162
  "Format": "Formato",
165
- "From zoom": "Dende o achegamento",
166
- "full backup": "full backup",
167
- "Generic": "Generic",
163
+ "From zoom": "Dende o zoom",
164
+ "full backup": "copia de seguranza completa",
165
+ "Generic": "Xenérico",
168
166
  "GeoRSS (only link)": "GeoRSS (só ligazón)",
169
167
  "GeoRSS (title + image)": "GeoRSS (título + imaxe)",
170
- "Go to \"{coords}\"": "Go to \"{coords}\"",
171
- "Go to the homepage": "Go to the homepage",
172
- "Go to «{feature}»": "Ir cara «{feature}»",
173
- "Heatmap intensity property": "Propiedade intensidade do mapa de calor",
168
+ "Go to \"{coords}\"": "Ir a «{coords}»",
169
+ "Go to the homepage": "Ir á páxina de inicio",
170
+ "Go to «{feature}»": "Ir a «{feature}»",
171
+ "Heatmap intensity property": "Propiedade da intensidade do mapa de calor",
174
172
  "Heatmap radius": "Raio do mapa de calor",
175
173
  "Heatmap": "Mapa de calor",
176
174
  "height": "altura",
@@ -178,217 +176,217 @@
178
176
  "hidden": "agochar",
179
177
  "Hide controls": "Agochar os controis",
180
178
  "Home": "Inicio",
181
- "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Canto se simplificará a polilínea en cada nivel de achegamento (máis = mellor comportamento e aparencia máis feble, menos = máis preciso)",
182
- "icon opacity": "icon opacity",
179
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Canto se simplificará a poliliña en cada nivel de zoom (máis = mellor comportamento e aparencia máis feble, menos = máis preciso)",
180
+ "icon opacity": "opacidade da icona",
183
181
  "Icon shape": "Forma da icona",
184
182
  "Icon symbol": "Símbolo da icona",
185
- "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.",
186
- "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}",
187
- "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}",
183
+ "If false, the polygon or line will act as a part of the underlying map.": "Se é falso, o polígono ou a liña actuará coma parte do mapa subxacente.",
184
+ "Iframe with custom height (in px): {{{https://iframe.url.com|height}}}": "Iframe con altura personalizada (en px): {{{https://iframe.url.com|height}}",
185
+ "Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}": "Iframe con altura e largura personalizadas (en px): {{{https://iframe.url.com|height*width}}",
188
186
  "iframe": "iframe",
189
187
  "Iframe: {{{https://iframe.url.com}}}": "Iframe: {{{https://iframe.url.com}}}",
190
- "Image with custom width (in px): {{https://image.url.com|width}}": "Image with custom width (in px): {{https://image.url.com|width}}",
188
+ "Image with custom width (in px): {{https://image.url.com|width}}": "Imaxe con largo personalizado (en px):",
191
189
  "Image: {{https://image.url.com}}": "Image: {{https://image.url.com}}",
192
190
  "Import data": "Importar datos",
193
191
  "Import in a new layer": "Importar nunha nova capa",
194
- "Imports all umap data, including layers and settings.": "Importar tódolos datos do umap, incluíndo capas e axustes.",
192
+ "Imports all umap data, including layers and settings.": "Importar todos os datos de umap, incluíndo capas e axustes.",
195
193
  "Include full screen link?": "Engadir a ligazón de pantalla completa?",
196
194
  "Inherit": "Herdar",
197
195
  "inherit": "herdar",
198
196
  "Interaction options": "Opcións de interacción",
199
- "Invalid latitude or longitude": "Invalid latitude or longitude",
200
- "Invalid umap data in {filename}": "Dato umap non válido en {filename}",
201
- "Invalid umap data": "Dato umap non válido",
197
+ "Invalid latitude or longitude": "Latitude ou lonxitude incorrecta",
198
+ "Invalid umap data in {filename}": "Dato umap incorrecto en {filename}",
199
+ "Invalid umap data": "Dato umap inorrecto",
202
200
  "Jenks-Fisher": "Jenks-Fisher",
203
- "K-means": "K-means",
201
+ "K-means": "K-medias",
204
202
  "Keep current visible layers": "Gardar capas visíbeis actuais",
205
203
  "kilometers": "quilómetros",
206
204
  "km": "km",
207
205
  "Label direction": "Dirección da etiqueta",
208
206
  "Label key": "Etiqueta da clave",
209
- "Labels are clickable": "Labels are clickable",
210
- "Latest feature": "Latest feature",
207
+ "Labels are clickable": "Pódese premer nas etiquetas",
208
+ "Latest feature": "Elemento máis recente",
211
209
  "Latitude": "Latitude",
212
210
  "Layer properties": "Propiedades da capa",
213
211
  "Layer": "Capa",
214
212
  "Licence": "Licenza",
215
213
  "licence": "licenza",
216
- "Limit bounds": "Limitar os límites",
217
- "Link to view the map": "Link to view the map",
218
- "Link to…": "Ligazón cara...",
219
- "Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
220
- "Long credits": "Cretos longos",
214
+ "Limit bounds": "Limites máximos",
215
+ "Link to view the map": "Ligazón para ver o mapa",
216
+ "Link to…": "Ligazón cara a…",
217
+ "Link with text: [[https://example.com|text of the link]]": "Ligazón con texto: [[https://example.com|texto da ligazón]]",
218
+ "Long credits": "Recoñecementos extensos",
221
219
  "Longitude": "Lonxitude",
222
220
  "Make main shape": "Facer a forma principal",
223
221
  "Manage layers": "Xestionar capas",
224
222
  "Manual": "Manual",
225
- "Map background credits": "Cretos do mapa de fondo",
226
- "Map has been attached to your account": "O mapa adxuntouse á súa conta",
227
- "Map has been saved!": "Gardouse o mapa!",
228
- "Map has been starred": "Map has been starred",
229
- "Map has been unstarred": "Map has been unstarred",
223
+ "Map background credits": "Recoñecementos do mapa de fondo",
224
+ "Map has been attached to your account": "O mapa foi incorporado á súa conta",
225
+ "Map has been saved!": "O mapa foi gardado!",
226
+ "Map has been starred": "O mapa foi destacado con estrela",
227
+ "Map has been unstarred": "Retiróuselle ao mapa o destaque con estrela",
230
228
  "Map user content has been published under licence": "O contido do mapa do usuario foi publicado baixo a licenza",
231
229
  "Map's editors": "Editores do mapa",
232
- "Map's owner": "Dono do mapa",
230
+ "Map's owner": "Propietario do mapa",
233
231
  "max East": "máximo Leste",
234
232
  "max North": "máximo Norte",
235
- "max South": "máximo Sul",
233
+ "max South": "máximo Sur",
236
234
  "max West": "máximo Oeste",
237
- "max zoom": "achegamento máximo",
235
+ "max zoom": "zoom máximo",
238
236
  "Measure distances": "Medir distancias",
239
237
  "Merge lines": "Combinar liñas",
240
238
  "mi": "mi",
241
239
  "miles": "millas",
242
- "min zoom": "achegamento mínimo",
240
+ "min zoom": "zoom mínimo",
243
241
  "More controls": "Máis controis",
244
- "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Ten que ser un valor CSS válido (por ex.: DarkBlue ou #123456)",
242
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Ten que ser un valor CSS válido (p. ex.: DarkBlue ou #123456)",
245
243
  "name": "nome",
246
244
  "nautical miles": "millas náuticas",
247
245
  "never": "nunca",
248
246
  "new window": "nova xanela",
249
247
  "next": "seguinte",
250
- "NM": "NM",
251
- "No cache": "Sen caché",
252
- "No licence has been set": "Ningunha licenza foi estabelecida",
248
+ "NM": "M",
249
+ "No cache": "Sen memoria tobo",
250
+ "No licence has been set": "Non foi definida ningunha licenza",
253
251
  "No results": "Sen resultados",
254
252
  "no": "non",
255
- "No.": "No.",
253
+ "No.": "Núm.",
256
254
  "None": "Ningún",
257
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
255
+ "Number of desired classes (default 5)": "Número de clases desexadas (predeterminado 5)",
258
256
  "On the bottom": "Na parte de embaixo",
259
257
  "On the left": "Á esquerda",
260
258
  "On the right": "Á dereita",
261
259
  "On the top": "Na parte de enriba",
262
- "Only visible layers' data": "Only visible layers' data",
260
+ "Only visible layers' data": " os datos das capas visíbeis",
263
261
  "opacity": "opacidade",
264
- "Opacity": "Opacity",
265
- "Open current feature on load": "Open current feature on load",
266
- "Open link in…": "Abrir ligazón en...",
267
- "Open share & download panel": "Open share & download panel",
268
- "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abre a extensión deste mapa nun editor de mapas para fornecer datos máis precisos ó OpenStreetMap",
262
+ "Opacity": "Opacidade",
263
+ "Open current feature on load": "Abrir o elemento actual na carga",
264
+ "Open link in…": "Abrir a ligazón en",
265
+ "Open share & download panel": "Abrir o panel de compartición e descarga",
266
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Abrir esta extensión do mapa nun editor de mapas para fornecer datos máis precisos a OpenStreetMap",
269
267
  "OpenStreetMap": "OpenStreetMap",
270
268
  "Optional intensity property for heatmap": "Propiedade de intensidade opcional para o mapa de calor",
271
- "Optional. Same as color if not set.": "Opcional. A mesma cor se non se estabelece.",
269
+ "Optional. Same as color if not set.": "Opcional. A mesma cor se non se define.",
272
270
  "Optional.": "Opcional.",
273
271
  "Override clustering radius (default 80)": "Sobrescribir o raio de agrupamento (predeterminado 80)",
274
272
  "Override heatmap radius (default 25)": "Sobreescribir o raio do mapa de calor (predeterminado 25)",
275
- "parent window": "xanela pai ou principal",
273
+ "parent window": "xanela principal",
276
274
  "Paste your data here": "Pega os teus datos aquí",
277
- "Permalink": "Permalink",
278
- "Permanent credits background": "Permanent credits background",
279
- "Permanent credits": "Permanent credits",
280
- "Please be sure the licence is compliant with your use.": "Coide de que a licenza sexa compatíbel co emprego que lle vai a dár.",
275
+ "Permalink": "Ligazón permanente",
276
+ "Permanent credits background": "Fondo dos recoñecementos permanentes",
277
+ "Permanent credits": "Recoñecementos permanentes",
278
+ "Please be sure the licence is compliant with your use.": "Asegúrate de que a licenza sexa compatíbel co uso que lle vas dar.",
281
279
  "Please choose a format": "Escolle un formato",
282
- "Please enter the name of the property": "Insira o nome da propiedade",
283
- "Please enter the new name of this property": "Insira o novo nome desta propiedade",
284
- "Please save the map first": "Por favor garda o mapa primeiro",
280
+ "Please enter the name of the property": "Introduce o nome da propiedade",
281
+ "Please enter the new name of this property": "Introduce o novo nome desta propiedade",
282
+ "Please save the map first": "Garda o mapa primeiro",
285
283
  "Popup (large)": "Xanela emerxente (grande)",
286
284
  "Popup content style": "Estilo do contido da xanela emerxente",
287
- "Popup content template": "Padrón do contido da xanela emerxente",
285
+ "Popup content template": "Modelo do contido da xanela emerxente",
288
286
  "Popup shape": "Forma da xanela emerxente",
289
287
  "Popup": "Xanela emerxente",
290
- "Powered by uMap": "Powered by uMap",
288
+ "Powered by uMap": " Desanvolvido por uMap",
291
289
  "previous": "anterior",
292
- "Problem in the response": "Problem in the response",
290
+ "Problem in the response": "Produciuse un problema na resposta",
293
291
  "Properties imported:": "Propiedades importadas:",
294
- "Provide an URL here": "Forneza unha URL aquí",
295
- "Proxy request": "Petición a proxy",
296
- "Quantiles": "Quantiles",
297
- "Recent": "Recent",
292
+ "Provide an URL here": "Fornece un URL aquí",
293
+ "Proxy request": "Petición ao proxy",
294
+ "Quantiles": "Cuantiles",
295
+ "Recent": "Recente",
298
296
  "Remote data": "Datos remotos",
299
- "Remove shape from the multi": "Eliminar a forma do 'multi'",
297
+ "Remove shape from the multi": "Eliminar a forma do multielemento",
300
298
  "Replace layer content": "Substitúe o contido da capa",
301
299
  "Restore this version": "Restabelecer esta versión",
302
300
  "Save current edits": "Gardar as edicións actuais",
303
- "Save map": "Save map",
304
- "Save this center and zoom": "Gardar este centrado e achegamento",
305
- "Save this location as new feature": "Gardar esta ubicación coma novo elemento",
301
+ "Save map": "Gardar o mapa",
302
+ "Save this center and zoom": "Gardar este centrado e nivel de zoom",
303
+ "Save this location as new feature": "Gardar esta posición coma novo elemento",
306
304
  "Save": "Gardar",
307
- "Saved center and zoom": "Saved center and zoom",
308
- "Search location": "Procurar localización",
309
- "Search": "Search",
310
- "Secret edit link:": "Secret edit link:",
311
- "See full screen": "Ollar pantalla completa",
312
- "See on OpenStreetMap": "See on OpenStreetMap",
313
- "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Axústeo a falso para agochar esta capa da presentación ('slideshow'), o navegador de datos, a navegación da xanela emerxente...",
314
- "settings": "settings",
305
+ "Saved center and zoom": "Gardar o centrado e nivel de zoom",
306
+ "Search location": "Buscar posición",
307
+ "Search": "Buscar",
308
+ "Secret edit link:": "Ligazón de edición secreta:",
309
+ "See full screen": "Ver a pantalla completa",
310
+ "See on OpenStreetMap": "Ver en OpenStreetMap",
311
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Defíneo como falso para agochar esta capa do diaporama (slideshow), do navegador de datos e da navegación da xanela emerxente",
312
+ "settings": "axustes",
315
313
  "Shape properties": "Propiedades da forma",
316
- "Share and download": "Share and download",
317
- "Share this link to open a customized map view": "Share this link to open a customized map view",
318
- "Short credits": "Cretos curtos",
319
- "Short link": "Short link",
320
- "Show this layer in the caption": "Show this layer in the caption",
314
+ "Share and download": "Compartición e descarga",
315
+ "Share this link to open a customized map view": "Comparte esta ligazón para abrir unha vista de mapa personalizada",
316
+ "Short credits": "Recoñecementos breves",
317
+ "Short link": "Ligazón curta",
318
+ "Show this layer in the caption": "Amosar esta capa na lenda",
321
319
  "Show/hide layer": "Amosar/agochar capa",
322
- "Side panel": "Lapela lateral",
323
- "Simple link: [[https://example.com]]": "Simple link: [[https://example.com]]",
320
+ "Side panel": "Panel lateral",
321
+ "Simple link: [[https://example.com]]": "Ligazón sinxela: [[http://example.com]]",
324
322
  "Simplify": "Simplificar",
325
- "Skipping unknown geometry.type: {type}": "Brincando tipo descoñecido geometry.type: {type}",
326
- "Slideshow": "Presentación",
327
- "Sort key": "Orde da clave",
323
+ "Skipping unknown geometry.type: {type}": "Omitindo o «geometry.type» descoñecido: {type}",
324
+ "Slideshow": "Diaporama",
325
+ "Sort key": "Clave de ordenación",
328
326
  "Split line": "Liña de división",
329
- "Star this map": "Star this map",
330
- "Start a hole here": "Comezar un burato aquí",
331
- "Start slideshow": "Comezar presentación",
332
- "Stop editing": "Deter a edición",
333
- "Stop slideshow": "Deter a presentación",
334
- "Street": "Street",
327
+ "Star this map": "Destacar este mapa con estrela",
328
+ "Start a hole here": "Comezar un buraco aquí",
329
+ "Start slideshow": "Comezar o diaporama",
330
+ "Stop editing": "Deixar de editar",
331
+ "Stop slideshow": "Deter o diaporama",
332
+ "Street": "Rúa",
335
333
  "stroke": "trazo",
336
- "Supported scheme": "Esquema suportado",
337
- "Supported variables that will be dynamically replaced": "Variábeis suportadas que serán substituídas de xeito dinámico",
338
- "Symbol": "Symbol",
334
+ "Supported scheme": "Esquema admitido",
335
+ "Supported variables that will be dynamically replaced": "Variábeis admitidas que serán substituídas de xeito dinámico",
336
+ "Symbol": "Símbolo",
339
337
  "Table": "Táboa",
340
- "Text color for the cluster label": "Cor do texto para a etiqueta clúster",
338
+ "Text color for the cluster label": "Cor do texto para a etiqueta do agrupamento",
341
339
  "Text formatting": "Formato do texto",
342
- "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}\")",
343
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
344
- "The zoom and center have been modified.": "The zoom and center have been modified.",
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}\")": "O nome da propiedade que vai ser empregado como etiqueta do elemento (p. ex.: «nom»). Tamén podes usar propiedades entre corchetes para usar máis dunha ou mesturar con contido estático (p. ex.: «{name} en {place&rcub)",
341
+ "The name of the property to use as feature unique identifier.": "O nome da propiedade que se utilizará como identificador único do elemento.",
342
+ "The zoom and center have been modified.": "O nivel de zoom e o centrado foron modificados.",
345
343
  "TMS format": "formato TMS",
346
- "To use if remote server doesn't allow cross domain (slower)": "Para empregar se o servidor remoto non permite dominios cruzados (máis amodo)",
347
- "To zoom": "Para o achegamento",
348
- "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
349
- "Toggle edit mode": "Toggle edit mode",
350
- "Transfer shape to edited feature": "Transferir a forma ó elemento editada",
344
+ "To use if remote server doesn't allow cross domain (slower)": "Para empregar se o servidor remoto non permite dominios cruzados (máis lento)",
345
+ "To zoom": "Para o zoom",
346
+ "Toggle edit mode (⇧+Click)": "Alternar o modo de edición (⇧+Premer)",
347
+ "Toggle edit mode": "Alternar o modo de edición",
348
+ "Transfer shape to edited feature": "Transferir a forma ao elemento editado",
351
349
  "Transform to lines": "Transformar a liñas",
352
350
  "Transform to polygon": "Transformar a polígono",
353
- "Type a place name or coordinates": "Type a place name or coordinates",
354
- "Type char or paste emoji": "Type char or paste emoji",
351
+ "Type a place name or coordinates": "Escribe un nome de lugar ou coordenadas",
352
+ "Type char or paste emoji": "Escribe un carácter ou pega un emoji",
355
353
  "Type of layer": "Tipo de capa",
356
- "Unable to detect format of file {filename}": "Non se pode detectar o formato de ficheiro {filename}",
354
+ "Unable to detect format of file {filename}": "Non é posíbel detectar o formato de ficheiro {filename}",
357
355
  "Untitled layer": "Capa sen título",
358
356
  "Untitled map": "Mapa sen título",
359
357
  "Update permissions and editors": "Actualizar permisos e editores",
360
358
  "Update permissions": "Actualizar permisos",
361
- "Update who can see and edit the map": "Update who can see and edit the map",
359
+ "Update who can see and edit the map": "Actualiza quen pode ver e editar o mapa",
362
360
  "Url": "Url",
363
361
  "URL": "URL",
364
362
  "Use current bounds": "Empregar os límites actuais",
365
- "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Empregar marcaxes de posición con propiedades do elemento entre paréntesis, exemplo {name}, serán substituídos de xeito dinámico polos valores correspondentes.",
366
- "User content credits": "Cretos do contido do usuario",
363
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Empregar marcadores de substitución con propiedades do elemento entre parénteses, exemplo {name}, serán substituídos de xeito dinámico polos valores correspondentes.",
364
+ "User content credits": "Recoñecementos do contido do usuario",
367
365
  "User interface options": "Opcións da interface de usuario",
368
- "User location": "User location",
369
- "Verify remote URL": "Verify remote URL",
366
+ "User location": "Posición do usuario",
367
+ "Verify remote URL": "Verifica o URL remoto",
370
368
  "Versions": "Versións",
371
- "View Fullscreen": "Ollar en pantalla completa",
372
- "View": "View",
373
- "Visibility: {status}": "Visibility: {status}",
374
- "weight": "peso",
375
- "Where do we go from here?": "Onde vamos a partir daquí?",
376
- "Whether to display or not polygons paths.": "Se desexas amosar ou non as rutas dos polígonos.",
377
- "Whether to fill polygons with color.": "Se desexas rechear os polígonos con cor.",
378
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
369
+ "View Fullscreen": "Ver en pantalla completa",
370
+ "View": "Ver",
371
+ "Visibility: {status}": "Visibilidade: {status}",
372
+ "weight": "largo",
373
+ "Where do we go from here?": "Cara onde imos?",
374
+ "Whether to display or not polygons paths.": "Se queres amosar ou non as rutas dos polígonos.",
375
+ "Whether to fill polygons with color.": "Se queres rechear os polígonos con cor.",
376
+ "Who can edit \"{layer}\"": "Quen pode editar «{layer}»",
379
377
  "Who can edit": "Quen pode editar",
380
- "Who can view": "Quen pode ollar",
381
- "width": "ancho",
382
- "Will be displayed in the bottom right corner of the map": "Amosarase na esquina inferior esquerda do mapa",
383
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
384
- "Will be visible in the caption of the map": "Será visíbel no subtítulo do mapa",
378
+ "Who can view": "Quen pode ver",
379
+ "width": "largo",
380
+ "Will be displayed in the bottom right corner of the map": "Amosarase no canto inferior esquerdo do mapa",
381
+ "Will be permanently visible in the bottom left corner of the map": "Será visíbel permanentemente no canto inferior esquerdo do mapa",
382
+ "Will be visible in the caption of the map": "Será visíbel na lenda do mapa",
385
383
  "yes": "si",
386
384
  "Zoom in": "Achegar",
387
- "Zoom level for automatic zooms": "Nivel de achegamento para achegamentos automáticos",
385
+ "Zoom level for automatic zooms": "Nivel de zoom para achegamentos automáticos",
388
386
  "Zoom out": "Afastar",
389
- "Zoom to layer extent": "Achegar ó nivel da capa",
390
- "Zoom to the next": "Achegar ó seguinte",
391
- "Zoom to the previous": "Achegar ó anterior",
387
+ "Zoom to layer extent": "Zoom ata que se vexan os datos da capa",
388
+ "Zoom to the next": "Achegar ata o seguinte",
389
+ "Zoom to the previous": "Achegar ata o anterior",
392
390
  "Zoom to this feature": "Achegar a este elemento",
393
391
  "Zoom to this place": "Achegar a este lugar",
394
392
  "{area} acres": "{area} acres",
@@ -400,125 +398,135 @@
400
398
  "{delay} seconds": "{delay} segundos",
401
399
  "{distance} km": "{distance} km",
402
400
  "{distance} m": "{distance} m",
403
- "{distance} miles": "{distance} miles",
404
- "{distance} NM": "{distance} NM",
401
+ "{distance} miles": "{distance} millas",
402
+ "{distance} NM": "{distance} M",
405
403
  "{distance} yd": "{distance} yd",
406
- "Edit map name and caption": "Edit map name and caption",
407
- "Map advanced properties": "Map advanced properties",
408
- "Edit map details": "Edit map details",
409
- "Back to browser": "Back to browser",
410
- "Toggle size": "Toggle size",
411
- "Display the caption control": "Display the caption control",
412
- "<empty value>": "<empty value>",
413
- "Min": "Min",
414
- "Max": "Max",
415
- "From": "From",
416
- "Until": "Until",
417
- "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
418
- "Edit in OpenStreetMap": "Edit in OpenStreetMap",
419
- "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
420
- "Back to layers": "Back to layers",
421
- "Filters": "Filters",
422
- "Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
423
- "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
424
- "Search keys": "Search keys",
425
- "Filters keys": "Filters keys",
426
- "Filter data": "Filter data",
427
- "Search map features…": "Search map features…",
428
- "Reset all": "Reset all",
429
- "Open browser": "Open browser",
430
- "Open caption": "Open caption",
431
- "Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
432
- "Real-time collaboration": "Real-time collaboration",
433
- "Cannot parse data": "Cannot parse data",
434
- "Start typing...": "Start typing...",
435
- "No result": "No result",
436
- "Data browser": "Data browser",
437
- "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.": "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.",
438
- "Overpass supported expressions": "Overpass supported expressions",
439
- "key (eg. building)": "key (eg. building)",
440
- "!key (eg. !name)": "!key (eg. !name)",
441
- "key=value (eg. building=yes)": "key=value (eg. building=yes)",
442
- "key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
443
- "key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
444
- "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
445
- "More info about Overpass syntax": "More info about Overpass syntax",
446
- "For more complex needs, see": "For more complex needs, see",
447
- "Choose data": "Choose data",
448
- "Choose the format": "Choose the format",
449
- "Choose the layer": "Choose the layer",
450
- "Layer name": "Layer name",
451
- "Choose import mode": "Choose import mode",
452
- "Copy into the layer": "Copy into the layer",
453
- "Link to the layer as remote data": "Link to the layer as remote data",
454
- "Condition": "Condition",
455
- "key=value or key!=value": "key=value or key!=value",
456
- "Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
457
- "empty rule": "empty rule",
458
- "Conditional style rules": "Conditional style rules",
459
- "Add rule": "Add rule",
460
- "Browser: data": "Browser: data",
461
- "Browser: layers": "Browser: layers",
462
- "Browser: filters": "Browser: filters",
463
- "Enable real-time collaboration": "Enable real-time collaboration",
464
- "✅ Copied!": "✅ Copied!",
465
- "Choose a dataset": "Choose a dataset",
466
- "Choose this dataset": "Choose this dataset",
467
- "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
468
- "Choose a theme": "Choose a theme",
469
- "Symplify all geometries to points": "Symplify all geometries to points",
470
- "Choose this data": "Choose this data",
471
- "Search admin boundary": "Search admin boundary",
472
- "Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
473
- "Expression": "Expression",
474
- "Geometry mode": "Geometry mode",
475
- "Only geometry centers": "Only geometry centers",
476
- "Search area": "Search area",
477
- "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",
478
- "Data successfully imported!": "Data successfully imported!",
479
- "Clear data": "Clear data",
480
- "Remove layers": "Remove layers",
481
- "Categorized": "Categorized",
482
- "Alphabetical": "Alphabetical",
483
- "Category property": "Category property",
484
- "Color palette": "Color palette",
485
- "Categories": "Categories",
486
- "Comma separated list of categories.": "Comma separated list of categories.",
487
- "Categories mode": "Categories mode",
488
- "Remove filter for this column": "Remove filter for this column",
489
- "Add filter for this column": "Add filter for this column",
490
- "Rename this column": "Rename this column",
491
- "Delete this column": "Delete this column",
492
- "Name “{name}” should not contain a dot.": "Name {name} should not contain a dot.",
493
- "This name already exists: “{name}”": "This name already exists: “{name}",
494
- "Delete selected rows": "Delete selected rows",
495
- "Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
496
- "Expression is empty": "Expression is empty",
497
- "OK": "OK",
498
- "Cancel": "Cancel",
499
- "Attach map to a team": "Attach map to a team",
500
- "Display the polygon inverted": "Display the polygon inverted",
501
- "Proportional circles": "Proportional circles",
502
- "Property name to compute circles": "Property name to compute circles",
503
- "Min circle radius": "Min circle radius",
504
- "Max circle radius": "Max circle radius",
505
- "Display the open browser control": "Display the open browser control",
506
- "Copy as GeoJSON": "Copy as GeoJSON",
507
- "Please zoom in to edit the geometry": "Please zoom in to edit the geometry",
508
- "New map": "New map",
509
- "My maps": "My maps",
510
- "My teams": "My teams",
511
- "My profile": "My profile",
512
- "Type new owner's username": "Type new owner's username",
513
- "Type editor's username": "Type editor's username",
514
- "Map": "Map",
515
- "Manage collaborators": "Manage collaborators",
516
- "show/hide all layers": "show/hide all layers",
517
- "zoom to data extent": "zoom to data extent",
518
- "download visible data": "download visible data",
519
- "{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} peer(s) currently connected to this map",
520
- "Import helpers": "Import helpers",
521
- "Import helpers will fill the URL field for you.": "Import helpers will fill the URL field for you.",
404
+ "Edit map name and caption": "Editar o nome e a lenda do mapa",
405
+ "Map advanced properties": "Propiedades avanzadas do mapa",
406
+ "Edit map details": "Editar os detalles do mapa",
407
+ "Back to browser": "Volver ao navegador",
408
+ "Toggle size": "Alternar o tamaño",
409
+ "Display the caption control": "Amosar o control de lendas",
410
+ "<empty value>": "<valor valeiro>",
411
+ "Min": "Mín.",
412
+ "Max": "Máx.",
413
+ "From": "Desde",
414
+ "Until": "Ata",
415
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": " Exemplo: clave1,clave2|Etiqueta 2,clave3|Etiqueta 3|caixa de verificación",
416
+ "Edit in OpenStreetMap": "Editar en OpenStreetMap",
417
+ "Cannot determine latitude and longitude columns.": "Non é posíbel determinar as columnas de latitude e lonxitude.",
418
+ "Back to layers": "Volver ás capas",
419
+ "Filters": "Filtros",
420
+ "Comma separated list of properties to use when filtering features by text input": "Lista de propiedades separadas por comas a empregar ao filtrar funcións pola entrada de texto",
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.": "Lista de propiedades separadas por comas a empregar para os filtros (p. ex.: amiñaclave,outraclave). Para controlar a etiqueta, engádaa após unha | (p. ex.: amiñaclave|AmiñaClave,outraclave|Outra chave). Para controlar o tipo de campo de entrada, engádeo após outra | (p. ex.: amiñaclave|AmiñaClave|caixadeverificación,otraclave|Outra clave|datahora). Os valores permitidos para o tipo de campo de entrada son caixa de verificación (predeterminado), botón de opción, número, data e datahora.",
422
+ "Search keys": "Claves de busca",
423
+ "Filters keys": "Claves de filtrado",
424
+ "Filter data": "Filtrar datos",
425
+ "Search map features…": " Buscar elementos do mapa…",
426
+ "Reset all": "Restabelecer todo",
427
+ "Open browser": "Abrir o navegador",
428
+ "Open caption": "Abrir as lendas",
429
+ "Your map has been created with an anonymous account!": "O teu mapa creouse cunha conta anónima.",
430
+ "Real-time collaboration": "Colaboración en tempo real",
431
+ "Cannot parse data": "Non é posíbel analizar os datos",
432
+ "Start typing...": "Comeza a escribir…",
433
+ "No result": "Sen resultados",
434
+ "Data browser": "Navegador de datos",
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.": "Ao fornecer un URL, uMap pode copiar os datos remotos nunha capa ou engadir este URL como fonte remota da capa. Nese caso, os datos sempre se obterán dese URL e, polo tanto, estarán actualizados, mais non será posíbel editalos dentro de uMap.",
436
+ "Overpass supported expressions": " Expresións compatíbeis con Overpass",
437
+ "key (eg. building)": "clave (ex. building)",
438
+ "!key (eg. !name)": "!clave (ex. !name)",
439
+ "key=value (eg. building=yes)": "clave=valor (ex. building=yes)",
440
+ "key!=value (eg. building!=yes)": "clave!=valor (ex. building!=yes)",
441
+ "key~value (eg. name~Grisy)": "clave~valor (ex. name~Grisy)",
442
+ "key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "clave=\"valor|valor2\" (ex. name=\"Paris|Berlin\")",
443
+ "More info about Overpass syntax": "Máis información sobre a sintaxe Overpass",
444
+ "For more complex needs, see": "Para necesidades máis complexas, consultao",
445
+ "Choose data": "Escoller os datos",
446
+ "Choose the format": "Escoller o formato",
447
+ "Choose the layer": "Escoller a capa",
448
+ "Layer name": "Nome da capa",
449
+ "Choose import mode": "Escoller o modo de importación",
450
+ "Copy into the layer": "Copiar na capa",
451
+ "Link to the layer as remote data": "Ligazón á capa como datos remotos",
452
+ "Condition": "Condición",
453
+ "key=value or key!=value": "clave=valor ou clave!=valor",
454
+ "Are you sure you want to delete this rule?": "Confirmas que queres eliminar esta regra?",
455
+ "empty rule": "regra baleira",
456
+ "Conditional style rules": "Regras de estilo condicional",
457
+ "Add rule": "Engadir regra",
458
+ "Browser: data": "Navegador: datos",
459
+ "Browser: layers": "Navegador: capas",
460
+ "Browser: filters": "Navegador: filtros",
461
+ "Enable real-time collaboration": "Activa a colaboración en tempo real",
462
+ "✅ Copied!": "✅ Copiado!",
463
+ "Choose a dataset": "Escoller un conxunto de datos",
464
+ "Choose this dataset": "Escoller este conxunto de datos",
465
+ "GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: datos temáticos de OpenStreetMap",
466
+ "Choose a theme": "Escoller un tema",
467
+ "Symplify all geometries to points": "Simplificar todas as xeometrías a puntos",
468
+ "Choose this data": "Escoller estes datos",
469
+ "Search admin boundary": "Buscar un límite administrativo",
470
+ "Please choose a theme and a boundary first.": "Escolle primeiro un tema e un límite.",
471
+ "Expression": "Expresión",
472
+ "Geometry mode": "Modo xeometría",
473
+ "Only geometry centers": " centros xeométricos",
474
+ "Search area": "Área de busca",
475
+ "Type area name, or let empty to load data in current map view": "Escribe o nome da área ou déixao baleiro para cargar datos na vista de mapa actual",
476
+ "Data successfully imported!": "Os datos foron importados correctamente!",
477
+ "Clear data": "Limpar os datos",
478
+ "Remove layers": "Retirar as capas",
479
+ "Categorized": "Categorizado",
480
+ "Alphabetical": "Alfabético",
481
+ "Category property": "Propiedade de categoría",
482
+ "Color palette": "Paleta de cores",
483
+ "Categories": "Categorias",
484
+ "Comma separated list of categories.": "Lista de categorías separadas por comas.",
485
+ "Categories mode": "Modo de categorías",
486
+ "Remove filter for this column": "Retirar o filtro para esta columna",
487
+ "Add filter for this column": "Engadir filtro para esta columna",
488
+ "Rename this column": "Cambiar o nome desta columna",
489
+ "Delete this column": "Eliminar esta columna",
490
+ "Name “{name}” should not contain a dot.": "O nome «{name}» non debe conter un punto.",
491
+ "This name already exists: “{name}”": "O nome «{name}» xa existe",
492
+ "Delete selected rows": "Eliminar as filas seleccionadas",
493
+ "Found {count} rows. Are you sure you want to delete all?": "Atopáronse {count} filas. Confirmas que queres eliminalo todo?",
494
+ "Expression is empty": "A expresión está baleira",
495
+ "OK": "Aceptar",
496
+ "Cancel": "Cancelar",
497
+ "Attach map to a team": "Incorporar o mapa ao equipo",
498
+ "Display the polygon inverted": "Amosar o polígono invertido",
499
+ "Proportional circles": "Círculos proporcionais",
500
+ "Property name to compute circles": "Nome da propiedade para calcular círculos",
501
+ "Min circle radius": "Raio mínimo do círculo",
502
+ "Max circle radius": "Raio máximo do círculo",
503
+ "Display the open browser control": "Mostra o control para abrir o navegador",
504
+ "Copy as GeoJSON": "Copiar como GeoJSON",
505
+ "Please zoom in to edit the geometry": "Achegar co zoom para editar a xeometría",
506
+ "New map": "Mapa novo",
507
+ "My maps": "Os meus mapas",
508
+ "My teams": "Os meus equipos",
509
+ "My profile": "O meu perfil",
510
+ "Type new owner's username": "Escribe o nome de usuario do novo propietario",
511
+ "Type editor's username": "Escribe o nome de usuario do editor",
512
+ "Map": "Mapa",
513
+ "Manage collaborators": "Xestionar os colaboradores",
514
+ "show/hide all layers": "amosar/agochar todas as capas",
515
+ "zoom to data extent": "Achegar co zoom para a extensión dos datos",
516
+ "download visible data": "descargar os datos visíbeis",
517
+ "Import helpers": "Asistentes de importación",
518
+ "Import helpers will fill the URL field for you.": "Os asistentes de importación encherán o campo URL por Vde.",
522
519
  "Wikipedia": "Wikipedia",
523
- "Save draft": "Save draft"
520
+ "Save draft": "Gardar o borrador",
521
+ "No data has been found for import": "Non se atoparon datos para importar",
522
+ "Successfully imported {count} feature(s)": "Importado(s) satisfactoriamente {count} elemento(s)",
523
+ "Disconnected": "Desconectado",
524
+ "You must be logged in": "You must be logged in",
525
+ "Created at {date}": "Created at {date}",
526
+ "Modified at {date}": "Modified at {date}",
527
+ "on hover": "on hover",
528
+ "Cannot load remote data for layer \"{layer}\" with url \"{url}\"": "Cannot load remote data for layer \"{layer}\" with url \"{url}\"",
529
+ "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"": "Cannot parse remote data for layer \"{layer}\" with url \"{url}\"",
530
+ "Import failed: invalid data": "Import failed: invalid data",
531
+ "Anonymous": "Anonymous"
524
532
  }