umap-project 2.4.2__py3-none-any.whl → 2.5.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- umap/__init__.py +1 -1
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +100 -50
- umap/static/umap/base.css +4 -1
- umap/static/umap/css/contextmenu.css +11 -0
- umap/static/umap/css/dialog.css +24 -3
- umap/static/umap/css/panel.css +4 -2
- umap/static/umap/css/slideshow.css +69 -0
- umap/static/umap/css/tableeditor.css +69 -0
- umap/static/umap/css/tooltip.css +3 -3
- umap/static/umap/img/16-white.svg +4 -0
- umap/static/umap/img/source/16-white.svg +5 -1
- umap/static/umap/js/components/alerts/alert.css +10 -10
- umap/static/umap/js/modules/autocomplete.js +23 -1
- umap/static/umap/js/modules/browser.js +14 -8
- umap/static/umap/js/modules/facets.js +40 -10
- umap/static/umap/js/modules/formatter.js +153 -0
- umap/static/umap/js/modules/global.js +10 -1
- umap/static/umap/js/modules/help.js +25 -25
- umap/static/umap/js/modules/importer.js +4 -4
- umap/static/umap/js/modules/importers/communesfr.js +3 -1
- umap/static/umap/js/modules/importers/datasets.js +8 -6
- umap/static/umap/js/modules/importers/geodatamine.js +10 -10
- umap/static/umap/js/modules/importers/overpass.js +18 -14
- umap/static/umap/js/modules/rules.js +13 -1
- umap/static/umap/js/modules/schema.js +16 -12
- umap/static/umap/js/{umap.share.js → modules/share.js} +60 -99
- umap/static/umap/js/modules/slideshow.js +141 -0
- umap/static/umap/js/modules/tableeditor.js +329 -0
- umap/static/umap/js/modules/ui/base.js +93 -0
- umap/static/umap/js/modules/ui/contextmenu.js +50 -0
- umap/static/umap/js/modules/ui/dialog.js +169 -31
- umap/static/umap/js/modules/ui/panel.js +6 -4
- umap/static/umap/js/modules/ui/tooltip.js +5 -75
- umap/static/umap/js/modules/utils.js +20 -0
- umap/static/umap/js/umap.controls.js +1 -1
- umap/static/umap/js/umap.features.js +22 -14
- umap/static/umap/js/umap.forms.js +157 -154
- umap/static/umap/js/umap.js +48 -34
- umap/static/umap/js/umap.layer.js +232 -164
- umap/static/umap/js/umap.permissions.js +1 -1
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/locale/am_ET.js +22 -5
- umap/static/umap/locale/am_ET.json +19 -5
- umap/static/umap/locale/ar.js +22 -5
- umap/static/umap/locale/ar.json +19 -5
- umap/static/umap/locale/ast.js +22 -5
- umap/static/umap/locale/ast.json +19 -5
- umap/static/umap/locale/bg.js +22 -5
- umap/static/umap/locale/bg.json +19 -5
- umap/static/umap/locale/br.js +22 -5
- umap/static/umap/locale/br.json +19 -5
- umap/static/umap/locale/ca.js +56 -39
- umap/static/umap/locale/ca.json +53 -39
- umap/static/umap/locale/cs_CZ.js +22 -5
- umap/static/umap/locale/cs_CZ.json +19 -5
- umap/static/umap/locale/da.js +22 -5
- umap/static/umap/locale/da.json +19 -5
- umap/static/umap/locale/de.js +22 -5
- umap/static/umap/locale/de.json +19 -5
- umap/static/umap/locale/el.js +27 -10
- umap/static/umap/locale/el.json +19 -5
- umap/static/umap/locale/en.js +22 -6
- umap/static/umap/locale/en.json +19 -5
- umap/static/umap/locale/en_US.json +19 -5
- umap/static/umap/locale/es.js +22 -6
- umap/static/umap/locale/es.json +19 -5
- umap/static/umap/locale/et.js +22 -5
- umap/static/umap/locale/et.json +19 -5
- umap/static/umap/locale/eu.js +167 -150
- umap/static/umap/locale/eu.json +167 -150
- umap/static/umap/locale/fa_IR.js +22 -5
- umap/static/umap/locale/fa_IR.json +19 -5
- umap/static/umap/locale/fi.js +22 -5
- umap/static/umap/locale/fi.json +19 -5
- umap/static/umap/locale/fr.js +22 -6
- umap/static/umap/locale/fr.json +19 -5
- umap/static/umap/locale/gl.js +22 -5
- umap/static/umap/locale/gl.json +19 -5
- umap/static/umap/locale/he.js +22 -5
- umap/static/umap/locale/he.json +19 -5
- umap/static/umap/locale/hr.js +22 -5
- umap/static/umap/locale/hr.json +19 -5
- umap/static/umap/locale/hu.js +89 -72
- umap/static/umap/locale/hu.json +89 -75
- umap/static/umap/locale/id.js +22 -5
- umap/static/umap/locale/id.json +19 -5
- umap/static/umap/locale/is.js +22 -5
- umap/static/umap/locale/is.json +19 -5
- umap/static/umap/locale/it.js +22 -5
- umap/static/umap/locale/it.json +19 -5
- umap/static/umap/locale/ja.js +22 -5
- umap/static/umap/locale/ja.json +19 -5
- umap/static/umap/locale/ko.js +22 -5
- umap/static/umap/locale/ko.json +19 -5
- umap/static/umap/locale/lt.js +22 -5
- umap/static/umap/locale/lt.json +19 -5
- umap/static/umap/locale/ms.js +22 -5
- umap/static/umap/locale/ms.json +19 -5
- umap/static/umap/locale/nl.js +22 -5
- umap/static/umap/locale/nl.json +19 -5
- umap/static/umap/locale/no.js +22 -5
- umap/static/umap/locale/no.json +19 -5
- umap/static/umap/locale/pl.js +22 -5
- umap/static/umap/locale/pl.json +19 -5
- umap/static/umap/locale/pl_PL.json +19 -5
- umap/static/umap/locale/pt.js +22 -6
- umap/static/umap/locale/pt.json +21 -7
- umap/static/umap/locale/pt_BR.js +22 -5
- umap/static/umap/locale/pt_BR.json +19 -5
- umap/static/umap/locale/pt_PT.js +22 -5
- umap/static/umap/locale/pt_PT.json +19 -5
- umap/static/umap/locale/ro.js +22 -5
- umap/static/umap/locale/ro.json +19 -5
- umap/static/umap/locale/ru.js +22 -5
- umap/static/umap/locale/ru.json +19 -5
- umap/static/umap/locale/sk_SK.js +22 -5
- umap/static/umap/locale/sk_SK.json +19 -5
- umap/static/umap/locale/sl.js +22 -5
- umap/static/umap/locale/sl.json +19 -5
- umap/static/umap/locale/sr.js +22 -5
- umap/static/umap/locale/sr.json +19 -5
- umap/static/umap/locale/sv.js +22 -5
- umap/static/umap/locale/sv.json +19 -5
- umap/static/umap/locale/th_TH.js +22 -5
- umap/static/umap/locale/th_TH.json +19 -5
- umap/static/umap/locale/tr.js +22 -5
- umap/static/umap/locale/tr.json +19 -5
- umap/static/umap/locale/uk_UA.js +22 -5
- umap/static/umap/locale/uk_UA.json +19 -5
- umap/static/umap/locale/vi.js +22 -5
- umap/static/umap/locale/vi.json +19 -5
- umap/static/umap/locale/vi_VN.json +19 -5
- umap/static/umap/locale/zh.js +22 -5
- umap/static/umap/locale/zh.json +19 -5
- umap/static/umap/locale/zh_CN.json +19 -5
- umap/static/umap/locale/zh_TW.Big5.json +19 -5
- umap/static/umap/locale/zh_TW.js +22 -5
- umap/static/umap/locale/zh_TW.json +19 -5
- umap/static/umap/map.css +2 -145
- umap/static/umap/vars.css +5 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +410 -428
- umap/static/umap/vendors/geojson-to-gpx/index.js +155 -0
- umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +1 -2
- umap/static/umap/vendors/togeojson/togeojson.es.js +1109 -0
- umap/static/umap/vendors/togeojson/{togeojson.umd.js.map → togeojson.es.mjs.map} +1 -1
- umap/static/umap/vendors/tokml/tokml.es.js +895 -0
- umap/static/umap/vendors/tokml/tokml.es.mjs.map +1 -0
- umap/storage.py +6 -2
- umap/templates/umap/components/alerts/alert.html +3 -3
- umap/templates/umap/css.html +3 -0
- umap/templates/umap/js.html +0 -6
- umap/tests/fixtures/categorized_highway.geojson +1 -0
- umap/tests/fixtures/test_import_osm_relation.json +130 -0
- umap/tests/integration/conftest.py +8 -1
- umap/tests/integration/test_browser.py +3 -2
- umap/tests/integration/test_categorized_layer.py +141 -0
- umap/tests/integration/test_conditional_rules.py +21 -0
- umap/tests/integration/test_datalayer.py +9 -4
- umap/tests/integration/test_edit_datalayer.py +1 -0
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_export_map.py +2 -3
- umap/tests/integration/test_import.py +22 -0
- umap/tests/integration/test_tableeditor.py +158 -4
- umap/tests/integration/test_websocket_sync.py +2 -2
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/METADATA +8 -8
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/RECORD +172 -162
- umap/static/umap/js/umap.slideshow.js +0 -163
- umap/static/umap/js/umap.tableeditor.js +0 -118
- umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -2
- umap/static/umap/vendors/togpx/togpx.js +0 -547
- umap/static/umap/vendors/tokml/tokml.js +0 -343
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/WHEEL +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/ca.js
CHANGED
|
@@ -22,11 +22,11 @@ const locale = {
|
|
|
22
22
|
"Add": "Add",
|
|
23
23
|
"Advanced actions": "Opcions avançades",
|
|
24
24
|
"Advanced properties": "Propietats avançades",
|
|
25
|
-
"All data and settings of the map": "
|
|
25
|
+
"All data and settings of the map": "Totes les dades i configuracions del mapa",
|
|
26
26
|
"All properties are imported.": "S'han importat totes les propietats",
|
|
27
27
|
"Allow interactions": "Allow interactions",
|
|
28
28
|
"Allow scroll wheel zoom?": "Voleu permetre el zoom amb la roda de desplaçament?",
|
|
29
|
-
"always": "
|
|
29
|
+
"always": "sempre",
|
|
30
30
|
"Animated transitions": "Transicions animades",
|
|
31
31
|
"Are you sure you want to cancel your changes?": "Esteu segur de voler cancel·lar els canvis?",
|
|
32
32
|
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
|
@@ -43,7 +43,7 @@ const locale = {
|
|
|
43
43
|
"Back to preview": "Back to preview",
|
|
44
44
|
"Background overlay url": "URL de superposició del fons",
|
|
45
45
|
"Ball": "Bola",
|
|
46
|
-
"Bring feature to center": "
|
|
46
|
+
"Bring feature to center": "Porta el element al centre",
|
|
47
47
|
"Browse data": "Explora les dades",
|
|
48
48
|
"by": "per",
|
|
49
49
|
"Cache proxied request": "Petició proxy en memòria cau",
|
|
@@ -83,9 +83,9 @@ const locale = {
|
|
|
83
83
|
"Congratulations, your map has been created!": "Enhorabona, s'ha creat el mapa!",
|
|
84
84
|
"Continue line": "Continue line",
|
|
85
85
|
"Coordinates": "Coordenades",
|
|
86
|
-
"copy": "
|
|
86
|
+
"copy": "copiar",
|
|
87
87
|
"Credits": "Crèdits",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Visualització del mapa actual",
|
|
89
89
|
"Current view instead of default map view?": "Voleu la visualització actual en comptes de la visualització predeterminada?",
|
|
90
90
|
"Custom background": "Fons personalitzat",
|
|
91
91
|
"Custom overlay": "Superposició personalitzada",
|
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
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": "Suprimeix aquesta característica",
|
|
108
|
-
"Delete this property on all the features": "Suprimeix aquesta propietat a totes les característiques",
|
|
109
107
|
"Delete this shape": "Delete this shape",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
111
109
|
"Delete": "Suprimeix",
|
|
@@ -119,20 +117,20 @@ const locale = {
|
|
|
119
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
120
118
|
"Display the data layers control": "Display the data layers control",
|
|
121
119
|
"Display the embed control": "Display the embed control",
|
|
122
|
-
"Display the fullscreen control": "
|
|
120
|
+
"Display the fullscreen control": "Mostrar el control de la pantalla completa",
|
|
123
121
|
"Display the locate control": "Display the locate control",
|
|
124
122
|
"Display the measure control": "Display the measure control",
|
|
125
|
-
"Display the search control": "
|
|
123
|
+
"Display the search control": "Mostra el control de cerca",
|
|
126
124
|
"Display the star map button": "Mostra el botó per a destacar el mapa",
|
|
127
125
|
"Display the tile layers control": "Display the tile layers control",
|
|
128
|
-
"Display the zoom control": "
|
|
126
|
+
"Display the zoom control": "Mostra el control del zoom",
|
|
129
127
|
"Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
|
|
130
128
|
"Do you want to display a minimap?": "Voleu mostrar un minimapa?",
|
|
131
129
|
"Do you want to display a panel on load?": "Voleu mostrar el quandre en carregar?",
|
|
132
|
-
"Do you want to display caption menus?": "
|
|
130
|
+
"Do you want to display caption menus?": "Voleu mostrar menús de llegenda?",
|
|
133
131
|
"Do you want to display popup footer?": "Voleu mostrar un peu emergent?",
|
|
134
132
|
"Do you want to display the scale control?": "Voleu mostrar el control d'escala?",
|
|
135
|
-
"Do you want to display the «more» control?": "
|
|
133
|
+
"Do you want to display the «more» control?": "Voleu mostrar el control \"més\"?",
|
|
136
134
|
"Download": "Baixa",
|
|
137
135
|
"Drag to reorder": "Drag to reorder",
|
|
138
136
|
"Draw a marker": "Dibuixa un marcador",
|
|
@@ -147,7 +145,7 @@ const locale = {
|
|
|
147
145
|
"Edit the title of the map": "Edit the title of the map",
|
|
148
146
|
"Edit this feature": "Edita aquesta característica",
|
|
149
147
|
"Edit": "Edita",
|
|
150
|
-
"Embed and link options": "
|
|
148
|
+
"Embed and link options": "Opcions d'inserció i enllaç",
|
|
151
149
|
"Embed the map": "Incrusta el mapa",
|
|
152
150
|
"Emoji & Character": "Emoji & Character",
|
|
153
151
|
"Empty": "Buit",
|
|
@@ -166,7 +164,7 @@ const locale = {
|
|
|
166
164
|
"Fit all data": "Fit all data",
|
|
167
165
|
"Format": "Format",
|
|
168
166
|
"From zoom": "Del zoom",
|
|
169
|
-
"full backup": "
|
|
167
|
+
"full backup": "còpia de seguretat completa",
|
|
170
168
|
"Generic": "Generic",
|
|
171
169
|
"GeoRSS (only link)": "GeoRSS (només enllaç)",
|
|
172
170
|
"GeoRSS (title + image)": "GeoRSS (títol i imatge)",
|
|
@@ -178,7 +176,7 @@ const locale = {
|
|
|
178
176
|
"Heatmap": "Heatmap",
|
|
179
177
|
"height": "alçada",
|
|
180
178
|
"Help": "Ajuda",
|
|
181
|
-
"hidden": "
|
|
179
|
+
"hidden": "amagat",
|
|
182
180
|
"Hide controls": "Amaga els controls",
|
|
183
181
|
"Home": "Home",
|
|
184
182
|
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)",
|
|
@@ -202,10 +200,9 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
204
202
|
"Invalid umap data": "Invalid umap data",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
|
-
"Keep current visible layers": "
|
|
205
|
+
"Keep current visible layers": "Mantenir les capes visibles actuals",
|
|
209
206
|
"kilometers": "quilòmetres",
|
|
210
207
|
"km": "km",
|
|
211
208
|
"Label direction": "Label direction",
|
|
@@ -218,7 +215,7 @@ const locale = {
|
|
|
218
215
|
"Licence": "Llicència",
|
|
219
216
|
"licence": "llicència",
|
|
220
217
|
"Limit bounds": "Límits",
|
|
221
|
-
"Link to view the map": "
|
|
218
|
+
"Link to view the map": "Enllaç per veure el mapa",
|
|
222
219
|
"Link to…": "Link to…",
|
|
223
220
|
"Link with text: [[http://example.com|text of the link]]": "Enllaceu amb el text: [[http://exemple.com|text de l'enllaç]]",
|
|
224
221
|
"Long credits": "Long credits",
|
|
@@ -248,7 +245,7 @@ const locale = {
|
|
|
248
245
|
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
|
|
249
246
|
"name": "nom",
|
|
250
247
|
"nautical miles": "miles nàutiques",
|
|
251
|
-
"never": "
|
|
248
|
+
"never": "mai",
|
|
252
249
|
"new window": "new window",
|
|
253
250
|
"next": "next",
|
|
254
251
|
"NM": "NM",
|
|
@@ -263,10 +260,10 @@ const locale = {
|
|
|
263
260
|
"On the left": "On the left",
|
|
264
261
|
"On the right": "On the right",
|
|
265
262
|
"On the top": "On the top",
|
|
266
|
-
"Only visible layers' data": "
|
|
263
|
+
"Only visible layers' data": "Només les dades de les capes visibles",
|
|
267
264
|
"opacity": "opacitat",
|
|
268
265
|
"Opacity": "Opacitat",
|
|
269
|
-
"Open current feature on load": "
|
|
266
|
+
"Open current feature on load": "Obrir el element actual en càrregar",
|
|
270
267
|
"Open link in…": "Open link in…",
|
|
271
268
|
"Open share & download panel": "Open share & download panel",
|
|
272
269
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Dades remotes",
|
|
303
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
304
|
-
"Rename this property on all the features": "Canvia el nom d'aquesta propietat en totes les característiques",
|
|
305
301
|
"Replace layer content": "Replace layer content",
|
|
306
302
|
"Restore this version": "Restore this version",
|
|
307
303
|
"Save current edits": "Desa les edicions actuals",
|
|
@@ -310,7 +306,7 @@ const locale = {
|
|
|
310
306
|
"Save this location as new feature": "Save this location as new feature",
|
|
311
307
|
"Save": "Desa",
|
|
312
308
|
"Saved center and zoom": "Saved center and zoom",
|
|
313
|
-
"Search location": "
|
|
309
|
+
"Search location": "Cercar ubicacion",
|
|
314
310
|
"Search": "Search",
|
|
315
311
|
"Secret edit link:": "Secret edit link:",
|
|
316
312
|
"See full screen": "Mostra-ho a pantalla completa",
|
|
@@ -318,10 +314,10 @@ const locale = {
|
|
|
318
314
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
319
315
|
"settings": "settings",
|
|
320
316
|
"Shape properties": "Shape properties",
|
|
321
|
-
"Share and download": "
|
|
322
|
-
"Share this link to open a customized map view": "
|
|
317
|
+
"Share and download": "Comparteix i baixa",
|
|
318
|
+
"Share this link to open a customized map view": "Comparteix aquest enllaç per obrir una vista de mapa personalitzada",
|
|
323
319
|
"Short credits": "Short credits",
|
|
324
|
-
"Short link": "
|
|
320
|
+
"Short link": "Enllaç curt",
|
|
325
321
|
"Show this layer in the caption": "Show this layer in the caption",
|
|
326
322
|
"Show/hide layer": "Mostra/amaga la capa",
|
|
327
323
|
"Side panel": "Side panel",
|
|
@@ -355,7 +351,7 @@ const locale = {
|
|
|
355
351
|
"Transfer shape to edited feature": "Transfer shape to edited feature",
|
|
356
352
|
"Transform to lines": "Transforma a línies",
|
|
357
353
|
"Transform to polygon": "Transforma a polígon",
|
|
358
|
-
"Type a place name or coordinates": "
|
|
354
|
+
"Type a place name or coordinates": "Escriviu un nom de lloc o una coordenada",
|
|
359
355
|
"Type char or paste emoji": "Type char or paste emoji",
|
|
360
356
|
"Type of layer": "Tipus de capa",
|
|
361
357
|
"Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
|
|
@@ -373,7 +369,7 @@ const locale = {
|
|
|
373
369
|
"User location": "User location",
|
|
374
370
|
"Verify remote URL": "Verify remote URL",
|
|
375
371
|
"Versions": "Versions",
|
|
376
|
-
"View Fullscreen": "
|
|
372
|
+
"View Fullscreen": "Veure pantalla completa",
|
|
377
373
|
"View": "View",
|
|
378
374
|
"Visibility: {status}": "Visibility: {status}",
|
|
379
375
|
"weight": "pes",
|
|
@@ -391,7 +387,7 @@ const locale = {
|
|
|
391
387
|
"Zoom in": "Apropa't",
|
|
392
388
|
"Zoom level for automatic zooms": "Zoom level for automatic zooms",
|
|
393
389
|
"Zoom out": "Allunya't",
|
|
394
|
-
"Zoom to layer extent": "
|
|
390
|
+
"Zoom to layer extent": "Acostament fins que vegeu les dades de la capa",
|
|
395
391
|
"Zoom to the next": "Zoom to the next",
|
|
396
392
|
"Zoom to the previous": "Zoom to the previous",
|
|
397
393
|
"Zoom to this feature": "Fes zoom a aquesta característica",
|
|
@@ -412,7 +408,7 @@ const locale = {
|
|
|
412
408
|
"Map advanced properties": "Map advanced properties",
|
|
413
409
|
"Edit map details": "Edit map details",
|
|
414
410
|
"Back to browser": "Back to browser",
|
|
415
|
-
"Toggle size": "
|
|
411
|
+
"Toggle size": "Canvia la mida",
|
|
416
412
|
"Display the caption control": "Display the caption control",
|
|
417
413
|
"<empty value>": "<empty value>",
|
|
418
414
|
"Min": "Min",
|
|
@@ -423,22 +419,22 @@ const locale = {
|
|
|
423
419
|
"Edit in OpenStreetMap": "Edit in OpenStreetMap",
|
|
424
420
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
425
421
|
"Back to layers": "Back to layers",
|
|
426
|
-
"Filters": "
|
|
422
|
+
"Filters": "Filtres",
|
|
427
423
|
"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",
|
|
428
424
|
"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.",
|
|
429
425
|
"Search keys": "Search keys",
|
|
430
426
|
"Filters keys": "Filters keys",
|
|
431
427
|
"Filter data": "Filter data",
|
|
432
|
-
"Search map features…": "
|
|
433
|
-
"Reset all": "
|
|
434
|
-
"Open browser": "
|
|
428
|
+
"Search map features…": "Buscar elements del mapa…",
|
|
429
|
+
"Reset all": "Restablir tot",
|
|
430
|
+
"Open browser": "Obriu el navegador",
|
|
435
431
|
"Open caption": "Open caption",
|
|
436
432
|
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
437
433
|
"Real-time collaboration": "Real-time collaboration",
|
|
438
434
|
"Cannot parse data": "Cannot parse data",
|
|
439
435
|
"Start typing...": "Start typing...",
|
|
440
436
|
"No result": "No result",
|
|
441
|
-
"Data browser": "
|
|
437
|
+
"Data browser": "Navegador de dades",
|
|
442
438
|
"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.",
|
|
443
439
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
444
440
|
"key (eg. building)": "key (eg. building)",
|
|
@@ -463,9 +459,9 @@ const locale = {
|
|
|
463
459
|
"empty rule": "empty rule",
|
|
464
460
|
"Conditional style rules": "Conditional style rules",
|
|
465
461
|
"Add rule": "Add rule",
|
|
466
|
-
"Browser: data": "
|
|
467
|
-
"Browser: layers": "
|
|
468
|
-
"Browser: filters": "
|
|
462
|
+
"Browser: data": "Navegador: dades",
|
|
463
|
+
"Browser: layers": "Navegador: capes",
|
|
464
|
+
"Browser: filters": "Navegador: filtres",
|
|
469
465
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
470
466
|
"✅ Copied!": "✅ Copied!",
|
|
471
467
|
"Choose a dataset": "Choose a dataset",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"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
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("ca", locale)
|
|
487
504
|
L.setLocale("ca")
|
umap/static/umap/locale/ca.json
CHANGED
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"Add": "Add",
|
|
23
23
|
"Advanced actions": "Opcions avançades",
|
|
24
24
|
"Advanced properties": "Propietats avançades",
|
|
25
|
-
"All data and settings of the map": "
|
|
25
|
+
"All data and settings of the map": "Totes les dades i configuracions del mapa",
|
|
26
26
|
"All properties are imported.": "S'han importat totes les propietats",
|
|
27
27
|
"Allow interactions": "Allow interactions",
|
|
28
28
|
"Allow scroll wheel zoom?": "Voleu permetre el zoom amb la roda de desplaçament?",
|
|
29
|
-
"always": "
|
|
29
|
+
"always": "sempre",
|
|
30
30
|
"Animated transitions": "Transicions animades",
|
|
31
31
|
"Are you sure you want to cancel your changes?": "Esteu segur de voler cancel·lar els canvis?",
|
|
32
32
|
"Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"Back to preview": "Back to preview",
|
|
44
44
|
"Background overlay url": "URL de superposició del fons",
|
|
45
45
|
"Ball": "Bola",
|
|
46
|
-
"Bring feature to center": "
|
|
46
|
+
"Bring feature to center": "Porta el element al centre",
|
|
47
47
|
"Browse data": "Explora les dades",
|
|
48
48
|
"by": "per",
|
|
49
49
|
"Cache proxied request": "Petició proxy en memòria cau",
|
|
@@ -83,9 +83,9 @@
|
|
|
83
83
|
"Congratulations, your map has been created!": "Enhorabona, s'ha creat el mapa!",
|
|
84
84
|
"Continue line": "Continue line",
|
|
85
85
|
"Coordinates": "Coordenades",
|
|
86
|
-
"copy": "
|
|
86
|
+
"copy": "copiar",
|
|
87
87
|
"Credits": "Crèdits",
|
|
88
|
-
"Current map view": "
|
|
88
|
+
"Current map view": "Visualització del mapa actual",
|
|
89
89
|
"Current view instead of default map view?": "Voleu la visualització actual en comptes de la visualització predeterminada?",
|
|
90
90
|
"Custom background": "Fons personalitzat",
|
|
91
91
|
"Custom overlay": "Superposició personalitzada",
|
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
105
|
"Delete layer": "Delete layer",
|
|
106
106
|
"Delete this feature": "Suprimeix aquesta característica",
|
|
107
|
-
"Delete this property on all the features": "Suprimeix aquesta propietat a totes les característiques",
|
|
108
107
|
"Delete this shape": "Delete this shape",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
110
109
|
"Delete": "Suprimeix",
|
|
@@ -118,20 +117,20 @@
|
|
|
118
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
119
118
|
"Display the data layers control": "Display the data layers control",
|
|
120
119
|
"Display the embed control": "Display the embed control",
|
|
121
|
-
"Display the fullscreen control": "
|
|
120
|
+
"Display the fullscreen control": "Mostrar el control de la pantalla completa",
|
|
122
121
|
"Display the locate control": "Display the locate control",
|
|
123
122
|
"Display the measure control": "Display the measure control",
|
|
124
|
-
"Display the search control": "
|
|
123
|
+
"Display the search control": "Mostra el control de cerca",
|
|
125
124
|
"Display the star map button": "Mostra el botó per a destacar el mapa",
|
|
126
125
|
"Display the tile layers control": "Display the tile layers control",
|
|
127
|
-
"Display the zoom control": "
|
|
126
|
+
"Display the zoom control": "Mostra el control del zoom",
|
|
128
127
|
"Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
|
|
129
128
|
"Do you want to display a minimap?": "Voleu mostrar un minimapa?",
|
|
130
129
|
"Do you want to display a panel on load?": "Voleu mostrar el quandre en carregar?",
|
|
131
|
-
"Do you want to display caption menus?": "
|
|
130
|
+
"Do you want to display caption menus?": "Voleu mostrar menús de llegenda?",
|
|
132
131
|
"Do you want to display popup footer?": "Voleu mostrar un peu emergent?",
|
|
133
132
|
"Do you want to display the scale control?": "Voleu mostrar el control d'escala?",
|
|
134
|
-
"Do you want to display the «more» control?": "
|
|
133
|
+
"Do you want to display the «more» control?": "Voleu mostrar el control \"més\"?",
|
|
135
134
|
"Download": "Baixa",
|
|
136
135
|
"Drag to reorder": "Drag to reorder",
|
|
137
136
|
"Draw a marker": "Dibuixa un marcador",
|
|
@@ -146,7 +145,7 @@
|
|
|
146
145
|
"Edit the title of the map": "Edit the title of the map",
|
|
147
146
|
"Edit this feature": "Edita aquesta característica",
|
|
148
147
|
"Edit": "Edita",
|
|
149
|
-
"Embed and link options": "
|
|
148
|
+
"Embed and link options": "Opcions d'inserció i enllaç",
|
|
150
149
|
"Embed the map": "Incrusta el mapa",
|
|
151
150
|
"Emoji & Character": "Emoji & Character",
|
|
152
151
|
"Empty": "Buit",
|
|
@@ -165,7 +164,7 @@
|
|
|
165
164
|
"Fit all data": "Fit all data",
|
|
166
165
|
"Format": "Format",
|
|
167
166
|
"From zoom": "Del zoom",
|
|
168
|
-
"full backup": "
|
|
167
|
+
"full backup": "còpia de seguretat completa",
|
|
169
168
|
"Generic": "Generic",
|
|
170
169
|
"GeoRSS (only link)": "GeoRSS (només enllaç)",
|
|
171
170
|
"GeoRSS (title + image)": "GeoRSS (títol i imatge)",
|
|
@@ -177,7 +176,7 @@
|
|
|
177
176
|
"Heatmap": "Heatmap",
|
|
178
177
|
"height": "alçada",
|
|
179
178
|
"Help": "Ajuda",
|
|
180
|
-
"hidden": "
|
|
179
|
+
"hidden": "amagat",
|
|
181
180
|
"Hide controls": "Amaga els controls",
|
|
182
181
|
"Home": "Home",
|
|
183
182
|
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)",
|
|
@@ -201,10 +200,9 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
202
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
203
202
|
"Invalid umap data": "Invalid umap data",
|
|
204
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
|
-
"Keep current visible layers": "
|
|
205
|
+
"Keep current visible layers": "Mantenir les capes visibles actuals",
|
|
208
206
|
"kilometers": "quilòmetres",
|
|
209
207
|
"km": "km",
|
|
210
208
|
"Label direction": "Label direction",
|
|
@@ -217,7 +215,7 @@
|
|
|
217
215
|
"Licence": "Llicència",
|
|
218
216
|
"licence": "llicència",
|
|
219
217
|
"Limit bounds": "Límits",
|
|
220
|
-
"Link to view the map": "
|
|
218
|
+
"Link to view the map": "Enllaç per veure el mapa",
|
|
221
219
|
"Link to…": "Link to…",
|
|
222
220
|
"Link with text: [[http://example.com|text of the link]]": "Enllaceu amb el text: [[http://exemple.com|text de l'enllaç]]",
|
|
223
221
|
"Long credits": "Long credits",
|
|
@@ -247,7 +245,7 @@
|
|
|
247
245
|
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
|
|
248
246
|
"name": "nom",
|
|
249
247
|
"nautical miles": "miles nàutiques",
|
|
250
|
-
"never": "
|
|
248
|
+
"never": "mai",
|
|
251
249
|
"new window": "new window",
|
|
252
250
|
"next": "next",
|
|
253
251
|
"NM": "NM",
|
|
@@ -262,10 +260,10 @@
|
|
|
262
260
|
"On the left": "On the left",
|
|
263
261
|
"On the right": "On the right",
|
|
264
262
|
"On the top": "On the top",
|
|
265
|
-
"Only visible layers' data": "
|
|
263
|
+
"Only visible layers' data": "Només les dades de les capes visibles",
|
|
266
264
|
"opacity": "opacitat",
|
|
267
265
|
"Opacity": "Opacitat",
|
|
268
|
-
"Open current feature on load": "
|
|
266
|
+
"Open current feature on load": "Obrir el element actual en càrregar",
|
|
269
267
|
"Open link in…": "Open link in…",
|
|
270
268
|
"Open share & download panel": "Open share & download panel",
|
|
271
269
|
"Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Dades remotes",
|
|
302
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
303
|
-
"Rename this property on all the features": "Canvia el nom d'aquesta propietat en totes les característiques",
|
|
304
301
|
"Replace layer content": "Replace layer content",
|
|
305
302
|
"Restore this version": "Restore this version",
|
|
306
303
|
"Save current edits": "Desa les edicions actuals",
|
|
@@ -309,7 +306,7 @@
|
|
|
309
306
|
"Save this location as new feature": "Save this location as new feature",
|
|
310
307
|
"Save": "Desa",
|
|
311
308
|
"Saved center and zoom": "Saved center and zoom",
|
|
312
|
-
"Search location": "
|
|
309
|
+
"Search location": "Cercar ubicacion",
|
|
313
310
|
"Search": "Search",
|
|
314
311
|
"Secret edit link:": "Secret edit link:",
|
|
315
312
|
"See full screen": "Mostra-ho a pantalla completa",
|
|
@@ -317,10 +314,10 @@
|
|
|
317
314
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
318
315
|
"settings": "settings",
|
|
319
316
|
"Shape properties": "Shape properties",
|
|
320
|
-
"Share and download": "
|
|
321
|
-
"Share this link to open a customized map view": "
|
|
317
|
+
"Share and download": "Comparteix i baixa",
|
|
318
|
+
"Share this link to open a customized map view": "Comparteix aquest enllaç per obrir una vista de mapa personalitzada",
|
|
322
319
|
"Short credits": "Short credits",
|
|
323
|
-
"Short link": "
|
|
320
|
+
"Short link": "Enllaç curt",
|
|
324
321
|
"Show this layer in the caption": "Show this layer in the caption",
|
|
325
322
|
"Show/hide layer": "Mostra/amaga la capa",
|
|
326
323
|
"Side panel": "Side panel",
|
|
@@ -354,7 +351,7 @@
|
|
|
354
351
|
"Transfer shape to edited feature": "Transfer shape to edited feature",
|
|
355
352
|
"Transform to lines": "Transforma a línies",
|
|
356
353
|
"Transform to polygon": "Transforma a polígon",
|
|
357
|
-
"Type a place name or coordinates": "
|
|
354
|
+
"Type a place name or coordinates": "Escriviu un nom de lloc o una coordenada",
|
|
358
355
|
"Type char or paste emoji": "Type char or paste emoji",
|
|
359
356
|
"Type of layer": "Tipus de capa",
|
|
360
357
|
"Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
|
|
@@ -372,7 +369,7 @@
|
|
|
372
369
|
"User location": "User location",
|
|
373
370
|
"Verify remote URL": "Verify remote URL",
|
|
374
371
|
"Versions": "Versions",
|
|
375
|
-
"View Fullscreen": "
|
|
372
|
+
"View Fullscreen": "Veure pantalla completa",
|
|
376
373
|
"View": "View",
|
|
377
374
|
"Visibility: {status}": "Visibility: {status}",
|
|
378
375
|
"weight": "pes",
|
|
@@ -390,7 +387,7 @@
|
|
|
390
387
|
"Zoom in": "Apropa't",
|
|
391
388
|
"Zoom level for automatic zooms": "Zoom level for automatic zooms",
|
|
392
389
|
"Zoom out": "Allunya't",
|
|
393
|
-
"Zoom to layer extent": "
|
|
390
|
+
"Zoom to layer extent": "Acostament fins que vegeu les dades de la capa",
|
|
394
391
|
"Zoom to the next": "Zoom to the next",
|
|
395
392
|
"Zoom to the previous": "Zoom to the previous",
|
|
396
393
|
"Zoom to this feature": "Fes zoom a aquesta característica",
|
|
@@ -411,7 +408,7 @@
|
|
|
411
408
|
"Map advanced properties": "Map advanced properties",
|
|
412
409
|
"Edit map details": "Edit map details",
|
|
413
410
|
"Back to browser": "Back to browser",
|
|
414
|
-
"Toggle size": "
|
|
411
|
+
"Toggle size": "Canvia la mida",
|
|
415
412
|
"Display the caption control": "Display the caption control",
|
|
416
413
|
"<empty value>": "<empty value>",
|
|
417
414
|
"Min": "Min",
|
|
@@ -422,22 +419,22 @@
|
|
|
422
419
|
"Edit in OpenStreetMap": "Edit in OpenStreetMap",
|
|
423
420
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
424
421
|
"Back to layers": "Back to layers",
|
|
425
|
-
"Filters": "
|
|
422
|
+
"Filters": "Filtres",
|
|
426
423
|
"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",
|
|
427
424
|
"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.",
|
|
428
425
|
"Search keys": "Search keys",
|
|
429
426
|
"Filters keys": "Filters keys",
|
|
430
427
|
"Filter data": "Filter data",
|
|
431
|
-
"Search map features…": "
|
|
432
|
-
"Reset all": "
|
|
433
|
-
"Open browser": "
|
|
428
|
+
"Search map features…": "Buscar elements del mapa…",
|
|
429
|
+
"Reset all": "Restablir tot",
|
|
430
|
+
"Open browser": "Obriu el navegador",
|
|
434
431
|
"Open caption": "Open caption",
|
|
435
432
|
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
436
433
|
"Real-time collaboration": "Real-time collaboration",
|
|
437
434
|
"Cannot parse data": "Cannot parse data",
|
|
438
435
|
"Start typing...": "Start typing...",
|
|
439
436
|
"No result": "No result",
|
|
440
|
-
"Data browser": "
|
|
437
|
+
"Data browser": "Navegador de dades",
|
|
441
438
|
"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.",
|
|
442
439
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
443
440
|
"key (eg. building)": "key (eg. building)",
|
|
@@ -462,9 +459,9 @@
|
|
|
462
459
|
"empty rule": "empty rule",
|
|
463
460
|
"Conditional style rules": "Conditional style rules",
|
|
464
461
|
"Add rule": "Add rule",
|
|
465
|
-
"Browser: data": "
|
|
466
|
-
"Browser: layers": "
|
|
467
|
-
"Browser: filters": "
|
|
462
|
+
"Browser: data": "Navegador: dades",
|
|
463
|
+
"Browser: layers": "Navegador: capes",
|
|
464
|
+
"Browser: filters": "Navegador: filtres",
|
|
468
465
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
469
466
|
"✅ Copied!": "✅ Copied!",
|
|
470
467
|
"Choose a dataset": "Choose a dataset",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"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",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/cs_CZ.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Definice odkazu, který se otevře v novém okně po kliknutí na polygon.",
|
|
103
103
|
"define": "definovat",
|
|
104
104
|
"Delay between two transitions when in play mode": "Zpoždění mezi dvěma předěly v přehrávacím módu",
|
|
105
|
-
"Delete all layers": "Vymazat všechny vrstvy",
|
|
106
105
|
"Delete layer": "Vymazat vrstvu",
|
|
107
106
|
"Delete this feature": "Vymazat objekt",
|
|
108
|
-
"Delete this property on all the features": "Smazat tuto vlastnost na všech objektech",
|
|
109
107
|
"Delete this shape": "Smazat tento tvar",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Smazat tento bod (Alt+Klik)",
|
|
111
109
|
"Delete": "Vymazat",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Neplatná zeměpisná šířka nebo délka",
|
|
203
201
|
"Invalid umap data in {filename}": "Neplatná data umapy v souboru {filename}",
|
|
204
202
|
"Invalid umap data": "Neplatná data umapy",
|
|
205
|
-
"Invalide property name: {name}": "Neplatný název vlastnosti: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Použít aktuální zobrazení vrstev",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Nedávné",
|
|
302
299
|
"Remote data": "Vzdálená data",
|
|
303
300
|
"Remove shape from the multi": "Odebrat tvar z multi",
|
|
304
|
-
"Rename this property on all the features": "Přejmenovat tuto vlastnost na všech objektech",
|
|
305
301
|
"Replace layer content": "Nahradit obsah vrstvy",
|
|
306
302
|
"Restore this version": "Obnovit tuto verzi",
|
|
307
303
|
"Save current edits": "Ulož nedávné změny",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"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
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("cs_CZ", locale)
|
|
487
504
|
L.setLocale("cs_CZ")
|