umap-project 2.5.0__py3-none-any.whl → 2.6.0__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.
- umap/__init__.py +1 -1
- umap/admin.py +6 -1
- umap/context_processors.py +2 -1
- umap/decorators.py +13 -2
- umap/forms.py +26 -2
- umap/locale/br/LC_MESSAGES/django.mo +0 -0
- umap/locale/br/LC_MESSAGES/django.po +252 -146
- umap/locale/ca/LC_MESSAGES/django.mo +0 -0
- umap/locale/ca/LC_MESSAGES/django.po +274 -162
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +261 -150
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +299 -187
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +215 -159
- umap/locale/en/LC_MESSAGES/django.po +211 -155
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +255 -144
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +254 -198
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +347 -235
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +216 -160
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +215 -159
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +252 -146
- umap/locale/ms/LC_MESSAGES/django.mo +0 -0
- umap/locale/ms/LC_MESSAGES/django.po +252 -146
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +254 -148
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +215 -159
- umap/locale/sv/LC_MESSAGES/django.mo +0 -0
- umap/locale/sv/LC_MESSAGES/django.po +254 -143
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +125 -70
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +256 -145
- umap/migrations/0022_add_team.py +94 -0
- umap/models.py +45 -10
- umap/settings/__init__.py +2 -0
- umap/settings/base.py +9 -2
- umap/static/umap/base.css +32 -41
- umap/static/umap/content.css +19 -25
- umap/static/umap/css/icon.css +63 -37
- umap/static/umap/css/importers.css +1 -1
- umap/static/umap/css/slideshow.css +7 -5
- umap/static/umap/css/tableeditor.css +4 -3
- umap/static/umap/img/16-white.svg +1 -4
- umap/static/umap/img/16.svg +2 -6
- umap/static/umap/img/24-white.svg +4 -4
- umap/static/umap/img/24.svg +6 -6
- umap/static/umap/img/source/16-white.svg +2 -5
- umap/static/umap/img/source/16.svg +3 -7
- umap/static/umap/img/source/24-white.svg +7 -14
- umap/static/umap/img/source/24.svg +10 -17
- umap/static/umap/js/components/alerts/alert.css +20 -8
- umap/static/umap/js/modules/autocomplete.js +8 -12
- umap/static/umap/js/modules/browser.js +4 -3
- umap/static/umap/js/modules/caption.js +9 -11
- umap/static/umap/js/modules/data/features.js +993 -0
- umap/static/umap/js/modules/data/layer.js +1210 -0
- umap/static/umap/js/modules/formatter.js +12 -3
- umap/static/umap/js/modules/global.js +21 -5
- umap/static/umap/js/modules/importers/overpass.js +22 -8
- umap/static/umap/js/modules/permissions.js +280 -0
- umap/static/umap/js/{umap.icon.js → modules/rendering/icon.js} +77 -56
- umap/static/umap/js/modules/rendering/layers/base.js +105 -0
- umap/static/umap/js/modules/rendering/layers/classified.js +484 -0
- umap/static/umap/js/modules/rendering/layers/cluster.js +103 -0
- umap/static/umap/js/modules/rendering/layers/heat.js +182 -0
- umap/static/umap/js/modules/rendering/popup.js +99 -0
- umap/static/umap/js/modules/rendering/template.js +217 -0
- umap/static/umap/js/modules/rendering/ui.js +610 -0
- umap/static/umap/js/modules/rules.js +16 -3
- umap/static/umap/js/modules/schema.js +25 -1
- umap/static/umap/js/modules/share.js +66 -45
- umap/static/umap/js/modules/sync/updaters.js +9 -10
- umap/static/umap/js/modules/tableeditor.js +7 -7
- umap/static/umap/js/modules/ui/dialog.js +8 -4
- umap/static/umap/js/modules/utils.js +22 -13
- umap/static/umap/js/umap.controls.js +80 -146
- umap/static/umap/js/umap.core.js +9 -9
- umap/static/umap/js/umap.forms.js +41 -17
- umap/static/umap/js/umap.js +72 -65
- umap/static/umap/locale/am_ET.js +8 -2
- umap/static/umap/locale/am_ET.json +8 -2
- umap/static/umap/locale/ar.js +8 -2
- umap/static/umap/locale/ar.json +8 -2
- umap/static/umap/locale/ast.js +8 -2
- umap/static/umap/locale/ast.json +8 -2
- umap/static/umap/locale/bg.js +8 -2
- umap/static/umap/locale/bg.json +8 -2
- umap/static/umap/locale/br.js +42 -36
- umap/static/umap/locale/br.json +42 -36
- umap/static/umap/locale/ca.js +67 -61
- umap/static/umap/locale/ca.json +67 -61
- umap/static/umap/locale/cs_CZ.js +8 -2
- umap/static/umap/locale/cs_CZ.json +8 -2
- umap/static/umap/locale/da.js +8 -2
- umap/static/umap/locale/da.json +8 -2
- umap/static/umap/locale/de.js +143 -137
- umap/static/umap/locale/de.json +143 -137
- umap/static/umap/locale/el.js +54 -48
- umap/static/umap/locale/el.json +54 -48
- umap/static/umap/locale/en.js +10 -2
- umap/static/umap/locale/en.json +10 -2
- umap/static/umap/locale/en_US.json +8 -2
- umap/static/umap/locale/es.js +8 -2
- umap/static/umap/locale/es.json +8 -2
- umap/static/umap/locale/et.js +8 -2
- umap/static/umap/locale/et.json +8 -2
- umap/static/umap/locale/eu.js +346 -338
- umap/static/umap/locale/eu.json +346 -338
- umap/static/umap/locale/fa_IR.js +415 -407
- umap/static/umap/locale/fa_IR.json +415 -407
- umap/static/umap/locale/fi.js +8 -2
- umap/static/umap/locale/fi.json +8 -2
- umap/static/umap/locale/fr.js +11 -3
- umap/static/umap/locale/fr.json +11 -3
- umap/static/umap/locale/gl.js +8 -2
- umap/static/umap/locale/gl.json +8 -2
- umap/static/umap/locale/he.js +8 -2
- umap/static/umap/locale/he.json +8 -2
- umap/static/umap/locale/hr.js +8 -2
- umap/static/umap/locale/hr.json +8 -2
- umap/static/umap/locale/hu.js +31 -23
- umap/static/umap/locale/hu.json +31 -23
- umap/static/umap/locale/id.js +8 -2
- umap/static/umap/locale/id.json +8 -2
- umap/static/umap/locale/is.js +8 -2
- umap/static/umap/locale/is.json +8 -2
- umap/static/umap/locale/it.js +8 -2
- umap/static/umap/locale/it.json +8 -2
- umap/static/umap/locale/ja.js +8 -2
- umap/static/umap/locale/ja.json +8 -2
- umap/static/umap/locale/ko.js +8 -2
- umap/static/umap/locale/ko.json +8 -2
- umap/static/umap/locale/lt.js +8 -2
- umap/static/umap/locale/lt.json +8 -2
- umap/static/umap/locale/ms.js +8 -2
- umap/static/umap/locale/ms.json +8 -2
- umap/static/umap/locale/nl.js +8 -2
- umap/static/umap/locale/nl.json +8 -2
- umap/static/umap/locale/no.js +8 -2
- umap/static/umap/locale/no.json +8 -2
- umap/static/umap/locale/pl.js +54 -48
- umap/static/umap/locale/pl.json +54 -48
- umap/static/umap/locale/pl_PL.json +8 -2
- umap/static/umap/locale/pt.js +24 -18
- umap/static/umap/locale/pt.json +24 -18
- umap/static/umap/locale/pt_BR.js +8 -2
- umap/static/umap/locale/pt_BR.json +8 -2
- umap/static/umap/locale/pt_PT.js +214 -208
- umap/static/umap/locale/pt_PT.json +214 -208
- umap/static/umap/locale/ro.js +8 -2
- umap/static/umap/locale/ro.json +8 -2
- umap/static/umap/locale/ru.js +8 -2
- umap/static/umap/locale/ru.json +8 -2
- umap/static/umap/locale/sk_SK.js +8 -2
- umap/static/umap/locale/sk_SK.json +8 -2
- umap/static/umap/locale/sl.js +8 -2
- umap/static/umap/locale/sl.json +8 -2
- umap/static/umap/locale/sr.js +8 -2
- umap/static/umap/locale/sr.json +8 -2
- umap/static/umap/locale/sv.js +8 -2
- umap/static/umap/locale/sv.json +8 -2
- umap/static/umap/locale/th_TH.js +33 -27
- umap/static/umap/locale/th_TH.json +33 -27
- umap/static/umap/locale/tr.js +8 -2
- umap/static/umap/locale/tr.json +8 -2
- umap/static/umap/locale/uk_UA.js +8 -2
- umap/static/umap/locale/uk_UA.json +8 -2
- umap/static/umap/locale/vi.js +8 -2
- umap/static/umap/locale/vi.json +8 -2
- umap/static/umap/locale/vi_VN.json +8 -2
- umap/static/umap/locale/zh.js +8 -2
- umap/static/umap/locale/zh.json +8 -2
- umap/static/umap/locale/zh_CN.json +8 -2
- umap/static/umap/locale/zh_TW.Big5.json +8 -2
- umap/static/umap/locale/zh_TW.js +102 -96
- umap/static/umap/locale/zh_TW.json +102 -96
- umap/static/umap/map.css +111 -108
- umap/static/umap/nav.css +19 -10
- umap/static/umap/unittests/utils.js +230 -107
- umap/static/umap/vars.css +1 -0
- umap/static/umap/vendors/csv2geojson/csv2geojson.js +62 -40
- umap/static/umap/vendors/editable/Leaflet.Editable.js +2079 -1937
- umap/storage.py +4 -3
- umap/templates/404.html +5 -1
- umap/templates/500.html +3 -1
- umap/templates/auth/user_detail.html +8 -2
- umap/templates/auth/user_form.html +19 -10
- umap/templates/auth/user_stars.html +8 -2
- umap/templates/base.html +1 -0
- umap/templates/registration/login.html +18 -3
- umap/templates/umap/about.html +1 -0
- umap/templates/umap/about_summary.html +22 -7
- umap/templates/umap/components/alerts/alert.html +42 -21
- umap/templates/umap/content.html +2 -0
- umap/templates/umap/content_footer.html +7 -3
- umap/templates/umap/css.html +1 -0
- umap/templates/umap/dashboard_menu.html +15 -0
- umap/templates/umap/home.html +14 -4
- umap/templates/umap/js.html +4 -9
- umap/templates/umap/login_popup_end.html +10 -4
- umap/templates/umap/map_detail.html +8 -2
- umap/templates/umap/map_fragment.html +3 -1
- umap/templates/umap/map_init.html +2 -1
- umap/templates/umap/map_list.html +6 -3
- umap/templates/umap/map_table.html +36 -12
- umap/templates/umap/messages.html +0 -1
- umap/templates/umap/navigation.html +2 -1
- umap/templates/umap/password_change.html +5 -1
- umap/templates/umap/password_change_done.html +8 -2
- umap/templates/umap/search.html +8 -2
- umap/templates/umap/search_bar.html +1 -0
- umap/templates/umap/team_confirm_delete.html +19 -0
- umap/templates/umap/team_detail.html +27 -0
- umap/templates/umap/team_form.html +60 -0
- umap/templates/umap/user_dashboard.html +7 -9
- umap/templates/umap/user_teams.html +51 -0
- umap/tests/base.py +8 -1
- umap/tests/conftest.py +6 -0
- umap/tests/fixtures/test_circles_layer.geojson +219 -0
- umap/tests/fixtures/test_upload_georss.xml +20 -0
- umap/tests/integration/conftest.py +18 -4
- umap/tests/integration/helpers.py +12 -0
- umap/tests/integration/test_anonymous_owned_map.py +23 -0
- umap/tests/integration/test_basics.py +29 -0
- umap/tests/integration/test_browser.py +20 -0
- umap/tests/integration/test_caption.py +20 -0
- umap/tests/integration/test_circles_layer.py +69 -0
- umap/tests/integration/test_conditional_rules.py +102 -17
- umap/tests/integration/test_draw_polygon.py +138 -13
- umap/tests/integration/test_draw_polyline.py +8 -18
- umap/tests/integration/test_edit_datalayer.py +3 -3
- umap/tests/integration/test_import.py +124 -5
- umap/tests/integration/test_owned_map.py +21 -13
- umap/tests/integration/test_querystring.py +7 -0
- umap/tests/integration/test_team.py +47 -0
- umap/tests/integration/test_tilelayer.py +19 -2
- umap/tests/integration/test_view_marker.py +28 -1
- umap/tests/integration/test_websocket_sync.py +5 -5
- umap/tests/test_datalayer.py +32 -7
- umap/tests/test_datalayer_views.py +1 -1
- umap/tests/test_map.py +30 -4
- umap/tests/test_map_views.py +2 -2
- umap/tests/test_statics.py +40 -0
- umap/tests/test_team_views.py +131 -0
- umap/tests/test_views.py +15 -1
- umap/urls.py +23 -13
- umap/views.py +116 -10
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/RECORD +260 -253
- umap/static/umap/js/umap.datalayer.permissions.js +0 -70
- umap/static/umap/js/umap.features.js +0 -1290
- umap/static/umap/js/umap.layer.js +0 -1837
- umap/static/umap/js/umap.permissions.js +0 -208
- umap/static/umap/js/umap.popup.js +0 -341
- umap/static/umap/test/TableEditor.js +0 -104
- umap/static/umap/vendors/leaflet/leaflet-src.js +0 -14512
- umap/static/umap/vendors/leaflet/leaflet-src.js.map +0 -1
- umap/static/umap/vendors/leaflet/leaflet.js +0 -6
- umap/static/umap/vendors/leaflet/leaflet.js.map +0 -1
- umap/static/umap/vendors/markercluster/WhereAreTheJavascriptFiles.txt +0 -5
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js +0 -2718
- umap/static/umap/vendors/markercluster/leaflet.markercluster-src.js.map +0 -1
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.css +0 -117
- umap/static/umap/vendors/toolbar/leaflet.toolbar-src.js +0 -365
- umap/tests/integration/test_statics.py +0 -47
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.0.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/ca.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
" (area: {measure})": "(area: {measure})",
|
|
3
3
|
" (length: {measure})": "(length: {measure})",
|
|
4
|
-
"# one hash for main heading": "#
|
|
4
|
+
"# one hash for main heading": "# un coixinet per a capçalera principal",
|
|
5
5
|
"## two hashes for second heading": "## dos coixinets per a capçalera secundària",
|
|
6
|
-
"### three hashes for third heading": "###
|
|
6
|
+
"### three hashes for third heading": "### tres coixinets per a capçalera tercera",
|
|
7
7
|
"**double star for bold**": "**doble asteric per a negreta**",
|
|
8
|
-
"*single star for italic*": "*
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
8
|
+
"*single star for italic*": "*sola asteric per a cursiva*",
|
|
9
|
+
"--- for a horizontal rule": "--- per un separador horitzontal",
|
|
10
10
|
"1 day": "1 dia",
|
|
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\".": "
|
|
13
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Una llista de números separats per comes que defineix el patró de traç. Ex.: \"5, 10, 15\".",
|
|
14
14
|
"About": "Quant a",
|
|
15
15
|
"Action not allowed :(": "Action not allowed :(",
|
|
16
16
|
"Activate slideshow mode": "Activate slideshow mode",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"Auto": "Auto",
|
|
41
41
|
"Automatic": "Automatic",
|
|
42
42
|
"Autostart when map is loaded": "Autostart when map is loaded",
|
|
43
|
-
"Back to preview": "
|
|
43
|
+
"Back to preview": "Tornar a la vista prèvia",
|
|
44
44
|
"Background overlay url": "URL de superposició del fons",
|
|
45
45
|
"Ball": "Bola",
|
|
46
46
|
"Bring feature to center": "Porta el element al centre",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"Choropleth property value": "Choropleth property value",
|
|
62
62
|
"Choropleth": "Choropleth",
|
|
63
63
|
"Circle": "Cercle",
|
|
64
|
-
"clear": "
|
|
64
|
+
"clear": "esborrar",
|
|
65
65
|
"Click last point to finish shape": "Click last point to finish shape",
|
|
66
66
|
"Click to add a marker": "Feu clic per a afegir una marca",
|
|
67
67
|
"Click to continue drawing": "Click to continue drawing",
|
|
@@ -89,18 +89,18 @@
|
|
|
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",
|
|
92
|
-
"dash array": "
|
|
92
|
+
"dash array": "matriu de guions",
|
|
93
93
|
"Data is browsable": "Data is browsable",
|
|
94
94
|
"Datalayers": "Datalayers",
|
|
95
|
-
"Default interaction options": "
|
|
95
|
+
"Default interaction options": "Opcions d'interacció predeterminades",
|
|
96
96
|
"Default properties": "Propietats predeterminades",
|
|
97
|
-
"Default shape properties": "
|
|
98
|
-
"Default view": "
|
|
99
|
-
"Default zoom level": "
|
|
97
|
+
"Default shape properties": "Propietats de forma per defecte",
|
|
98
|
+
"Default view": "Vista per defecte",
|
|
99
|
+
"Default zoom level": "Nivell de l'escala per defecte",
|
|
100
100
|
"Default": "Per defecte",
|
|
101
|
-
"Default: name": "
|
|
101
|
+
"Default: name": "Per defecte: name",
|
|
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
|
-
"define": "
|
|
103
|
+
"define": "definir",
|
|
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",
|
|
@@ -110,19 +110,18 @@
|
|
|
110
110
|
"description": "descripció",
|
|
111
111
|
"Direct link": "Enllaç directe",
|
|
112
112
|
"Directions from here": "Direccions des d'aquí",
|
|
113
|
-
"Display label": "
|
|
113
|
+
"Display label": "Mostra l'etiqueta",
|
|
114
114
|
"Display measure": "Display measure",
|
|
115
115
|
"display name": "mostra el nom",
|
|
116
116
|
"Display on load": "Mostrar en carregar",
|
|
117
|
-
"Display the control to open OpenStreetMap editor": "
|
|
118
|
-
"Display the
|
|
119
|
-
"Display the embed control": "Display the embed control",
|
|
117
|
+
"Display the control to open OpenStreetMap editor": "Mostra el botó per obrir l'editor d'OpenStreetMap",
|
|
118
|
+
"Display the embed control": "Mostra el control d'inserció",
|
|
120
119
|
"Display the fullscreen control": "Mostrar el control de la pantalla completa",
|
|
121
|
-
"Display the locate control": "
|
|
122
|
-
"Display the measure control": "
|
|
120
|
+
"Display the locate control": "Mostra el control de ubicar",
|
|
121
|
+
"Display the measure control": "Mostra el botó mesura",
|
|
123
122
|
"Display the search control": "Mostra el control de cerca",
|
|
124
123
|
"Display the star map button": "Mostra el botó per a destacar el mapa",
|
|
125
|
-
"Display the tile layers control": "
|
|
124
|
+
"Display the tile layers control": "Mostra el botó de les capes de tessel·les",
|
|
126
125
|
"Display the zoom control": "Mostra el control del zoom",
|
|
127
126
|
"Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
|
|
128
127
|
"Do you want to display a minimap?": "Voleu mostrar un minimapa?",
|
|
@@ -138,7 +137,7 @@
|
|
|
138
137
|
"Draw a polyline": "Dibuixa una polilínia",
|
|
139
138
|
"Drawing": "Drawing",
|
|
140
139
|
"Drop": "Deixar",
|
|
141
|
-
"Dynamic properties": "
|
|
140
|
+
"Dynamic properties": "Propietats dinàmiques",
|
|
142
141
|
"Dynamic": "Dinàmic",
|
|
143
142
|
"Edit feature's layer": "Edita la capa de la característica",
|
|
144
143
|
"Edit properties in a table": "Edita les propietats en una taula",
|
|
@@ -155,13 +154,13 @@
|
|
|
155
154
|
"Exit Fullscreen": "Exit Fullscreen",
|
|
156
155
|
"expanded": "expanded",
|
|
157
156
|
"Extract shape to separate feature": "Extract shape to separate feature",
|
|
158
|
-
"Feature identifier key": "
|
|
157
|
+
"Feature identifier key": "Clau identificadora de element",
|
|
159
158
|
"Feature properties": "Feature properties",
|
|
160
159
|
"Fetch data each time map view changes.": "Fetch data each time map view changes.",
|
|
161
160
|
"fill color": "emplena el color",
|
|
162
161
|
"fill opacity": "opacitat d'emplenament",
|
|
163
162
|
"fill": "emplena",
|
|
164
|
-
"Fit all data": "
|
|
163
|
+
"Fit all data": "Encaixar totes les dades",
|
|
165
164
|
"Format": "Format",
|
|
166
165
|
"From zoom": "Del zoom",
|
|
167
166
|
"full backup": "còpia de seguretat completa",
|
|
@@ -179,13 +178,13 @@
|
|
|
179
178
|
"hidden": "amagat",
|
|
180
179
|
"Hide controls": "Amaga els controls",
|
|
181
180
|
"Home": "Home",
|
|
182
|
-
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "
|
|
181
|
+
"How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Quant simplificar la polilínia a cada nivell de l'escala (més = millor rendiment i aspecte més suau, menys = més precís)",
|
|
183
182
|
"icon opacity": "opacitat de la icona",
|
|
184
|
-
"Icon shape": "
|
|
185
|
-
"Icon symbol": "
|
|
183
|
+
"Icon shape": "forma de la icona",
|
|
184
|
+
"Icon symbol": "Imatge de la icona",
|
|
186
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.",
|
|
187
|
-
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe
|
|
188
|
-
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe
|
|
186
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe amb alçada personalitzada (en px): {{{http://iframe.url.com|height}}}",
|
|
187
|
+
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe amb alçada i amplada personalitzades (en px): {{{http://iframe.url.com|height*width}}}",
|
|
189
188
|
"iframe": "iframe",
|
|
190
189
|
"Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
|
|
191
190
|
"Image with custom width (in px): {{http://image.url.com|width}}": "Imatge amb amplada personalitzada (en px): {{http://imatge.url.com|amplada}}",
|
|
@@ -205,10 +204,10 @@
|
|
|
205
204
|
"Keep current visible layers": "Mantenir les capes visibles actuals",
|
|
206
205
|
"kilometers": "quilòmetres",
|
|
207
206
|
"km": "km",
|
|
208
|
-
"Label direction": "
|
|
209
|
-
"Label key": "
|
|
207
|
+
"Label direction": "Direcció de l'etiqueta",
|
|
208
|
+
"Label key": "Clau d'etiqueta",
|
|
210
209
|
"Labels are clickable": "Labels are clickable",
|
|
211
|
-
"Latest feature": "
|
|
210
|
+
"Latest feature": "Darrera característica",
|
|
212
211
|
"Latitude": "Latitud",
|
|
213
212
|
"Layer properties": "Layer properties",
|
|
214
213
|
"Layer": "Capa",
|
|
@@ -218,7 +217,7 @@
|
|
|
218
217
|
"Link to view the map": "Enllaç per veure el mapa",
|
|
219
218
|
"Link to…": "Link to…",
|
|
220
219
|
"Link with text: [[http://example.com|text of the link]]": "Enllaceu amb el text: [[http://exemple.com|text de l'enllaç]]",
|
|
221
|
-
"Long credits": "
|
|
220
|
+
"Long credits": "Crèdits llargs",
|
|
222
221
|
"Longitude": "Longitud",
|
|
223
222
|
"Make main shape": "Make main shape",
|
|
224
223
|
"Manage layers": "Manage layers",
|
|
@@ -242,7 +241,7 @@
|
|
|
242
241
|
"miles": "milles",
|
|
243
242
|
"min zoom": "escala mínima",
|
|
244
243
|
"More controls": "Més controls",
|
|
245
|
-
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "
|
|
244
|
+
"Must be a valid CSS value (eg.: DarkBlue or #123456)": "Ha de ser un valor CSS vàlid (p. ex.: DarkBlue o #123456)",
|
|
246
245
|
"name": "nom",
|
|
247
246
|
"nautical miles": "miles nàutiques",
|
|
248
247
|
"never": "mai",
|
|
@@ -250,7 +249,7 @@
|
|
|
250
249
|
"next": "next",
|
|
251
250
|
"NM": "NM",
|
|
252
251
|
"No cache": "Sense memòria cau",
|
|
253
|
-
"No licence has been set": "No
|
|
252
|
+
"No licence has been set": "No s'ha establert cap llicència",
|
|
254
253
|
"No results": "No results",
|
|
255
254
|
"no": "no",
|
|
256
255
|
"No.": "No.",
|
|
@@ -276,8 +275,8 @@
|
|
|
276
275
|
"parent window": "parent window",
|
|
277
276
|
"Paste your data here": "Enganxeu les dades aquí",
|
|
278
277
|
"Permalink": "Permalink",
|
|
279
|
-
"Permanent credits background": "
|
|
280
|
-
"Permanent credits": "
|
|
278
|
+
"Permanent credits background": "Mostra un fons per al crèdit permanent",
|
|
279
|
+
"Permanent credits": "Crèdits permanents",
|
|
281
280
|
"Please be sure the licence is compliant with your use.": "Assegureu-vos que la llicència és compatible amb l'ús que en feu.",
|
|
282
281
|
"Please choose a format": "Please choose a format",
|
|
283
282
|
"Please enter the name of the property": "Introduïu el nom de la propietat",
|
|
@@ -285,7 +284,7 @@
|
|
|
285
284
|
"Please save the map first": "Abans deseu el mapa",
|
|
286
285
|
"Popup (large)": "Finestra emergent (gran)",
|
|
287
286
|
"Popup content style": "Estil del contingut de la finestra emergent",
|
|
288
|
-
"Popup content template": "
|
|
287
|
+
"Popup content template": "Plantilla de contingut de la finestra emergent",
|
|
289
288
|
"Popup shape": "Forma de la finestra emergent",
|
|
290
289
|
"Popup": "Finestra emergent",
|
|
291
290
|
"Powered by uMap": "Powered by uMap",
|
|
@@ -301,11 +300,11 @@
|
|
|
301
300
|
"Replace layer content": "Replace layer content",
|
|
302
301
|
"Restore this version": "Restore this version",
|
|
303
302
|
"Save current edits": "Desa les edicions actuals",
|
|
304
|
-
"Save map": "
|
|
303
|
+
"Save map": "Deseu el mapa",
|
|
305
304
|
"Save this center and zoom": "Desa aquest centre i escala",
|
|
306
305
|
"Save this location as new feature": "Save this location as new feature",
|
|
307
306
|
"Save": "Desa",
|
|
308
|
-
"Saved center and zoom": "
|
|
307
|
+
"Saved center and zoom": "Centre i escala desats",
|
|
309
308
|
"Search location": "Cercar ubicacion",
|
|
310
309
|
"Search": "Search",
|
|
311
310
|
"Secret edit link:": "Secret edit link:",
|
|
@@ -316,16 +315,16 @@
|
|
|
316
315
|
"Shape properties": "Shape properties",
|
|
317
316
|
"Share and download": "Comparteix i baixa",
|
|
318
317
|
"Share this link to open a customized map view": "Comparteix aquest enllaç per obrir una vista de mapa personalitzada",
|
|
319
|
-
"Short credits": "
|
|
318
|
+
"Short credits": "Crèdits curts",
|
|
320
319
|
"Short link": "Enllaç curt",
|
|
321
320
|
"Show this layer in the caption": "Show this layer in the caption",
|
|
322
321
|
"Show/hide layer": "Mostra/amaga la capa",
|
|
323
322
|
"Side panel": "Side panel",
|
|
324
323
|
"Simple link: [[http://example.com]]": "Enllaç simple: [[http://exemple.com]]",
|
|
325
|
-
"Simplify": "
|
|
324
|
+
"Simplify": "Simplificar",
|
|
326
325
|
"Skipping unknown geometry.type: {type}": "S'està ometent el tipus de geometria desconegut: {type}",
|
|
327
326
|
"Slideshow": "Presentació",
|
|
328
|
-
"Sort key": "
|
|
327
|
+
"Sort key": "Clau d'ordenació",
|
|
329
328
|
"Split line": "Split line",
|
|
330
329
|
"Star this map": "Destaca aquest mapa",
|
|
331
330
|
"Start a hole here": "Start a hole here",
|
|
@@ -340,14 +339,14 @@
|
|
|
340
339
|
"Table": "Taula",
|
|
341
340
|
"Text color for the cluster label": "Text color for the cluster label",
|
|
342
341
|
"Text formatting": "Format del text",
|
|
343
|
-
"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}\")": "
|
|
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}\")": "El nom de la propietat que s'utilitzarà com a etiqueta de característica (p. ex.: \"nom\"). També podeu utilitzar propietats entre claudàtors per utilitzar-ne més d'una o barrejar-les amb contingut estàtic (p. ex.: \"{name} in {place}\")",
|
|
344
343
|
"The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
|
|
345
344
|
"The zoom and center have been modified.": "L'escala i el centre s'han modificat.",
|
|
346
345
|
"TMS format": "Format TMS",
|
|
347
346
|
"To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
|
|
348
347
|
"To zoom": "A l'escala",
|
|
349
348
|
"Toggle edit mode (⇧+Click)": "Activa o desactiva el mode d'edició (⇧+clic)",
|
|
350
|
-
"Toggle edit mode": "
|
|
349
|
+
"Toggle edit mode": "Activa o desactiva el mode d'edició",
|
|
351
350
|
"Transfer shape to edited feature": "Transfer shape to edited feature",
|
|
352
351
|
"Transform to lines": "Transforma a línies",
|
|
353
352
|
"Transform to polygon": "Transforma a polígon",
|
|
@@ -363,19 +362,19 @@
|
|
|
363
362
|
"Url": "URL",
|
|
364
363
|
"URL": "URL",
|
|
365
364
|
"Use current bounds": "Usa els límits actuals",
|
|
366
|
-
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "
|
|
365
|
+
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Utilitzeu marcadors de posició amb propietats de característiques entre claudàtors, ex. {name}, seran substituïts dinàmicament pels valors corresponents.",
|
|
367
366
|
"User content credits": "Crèdits dels continguts de l'usuari",
|
|
368
367
|
"User interface options": "Opcions de la interfície d'usuari",
|
|
369
|
-
"User location": "
|
|
368
|
+
"User location": "Ubicació de l'usuari",
|
|
370
369
|
"Verify remote URL": "Verify remote URL",
|
|
371
370
|
"Versions": "Versions",
|
|
372
371
|
"View Fullscreen": "Veure pantalla completa",
|
|
373
|
-
"View": "
|
|
374
|
-
"Visibility: {status}": "
|
|
372
|
+
"View": "Vista",
|
|
373
|
+
"Visibility: {status}": "Visibilitat: {status}",
|
|
375
374
|
"weight": "pes",
|
|
376
375
|
"Where do we go from here?": "On anem des d'aquí?",
|
|
377
376
|
"Whether to display or not polygons paths.": "Whether to display or not polygons paths.",
|
|
378
|
-
"Whether to fill polygons with color.": "
|
|
377
|
+
"Whether to fill polygons with color.": "emplenar polígons amb color..",
|
|
379
378
|
"Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
|
|
380
379
|
"Who can edit": "Qui pot editar",
|
|
381
380
|
"Who can view": "Qui pot visualitzar",
|
|
@@ -385,7 +384,7 @@
|
|
|
385
384
|
"Will be visible in the caption of the map": "Will be visible in the caption of the map",
|
|
386
385
|
"yes": "sí",
|
|
387
386
|
"Zoom in": "Apropa't",
|
|
388
|
-
"Zoom level for automatic zooms": "
|
|
387
|
+
"Zoom level for automatic zooms": "Nivell de zoom per a zooms automàtics",
|
|
389
388
|
"Zoom out": "Allunya't",
|
|
390
389
|
"Zoom to layer extent": "Acostament fins que vegeu les dades de la capa",
|
|
391
390
|
"Zoom to the next": "Zoom to the next",
|
|
@@ -404,31 +403,31 @@
|
|
|
404
403
|
"{distance} miles": "{distance} milles",
|
|
405
404
|
"{distance} NM": "{distance} NM",
|
|
406
405
|
"{distance} yd": "{distance} yd",
|
|
407
|
-
"Edit map name and caption": "
|
|
408
|
-
"Map advanced properties": "
|
|
409
|
-
"Edit map details": "
|
|
406
|
+
"Edit map name and caption": "Edita el nom i la llegenda del mapa",
|
|
407
|
+
"Map advanced properties": "Propietats avançades del mapa",
|
|
408
|
+
"Edit map details": "Edita les propietats del mapa",
|
|
410
409
|
"Back to browser": "Back to browser",
|
|
411
410
|
"Toggle size": "Canvia la mida",
|
|
412
|
-
"Display the caption control": "
|
|
411
|
+
"Display the caption control": "Mostra el control de la llegenda",
|
|
413
412
|
"<empty value>": "<empty value>",
|
|
414
413
|
"Min": "Min",
|
|
415
414
|
"Max": "Max",
|
|
416
415
|
"From": "From",
|
|
417
416
|
"Until": "Until",
|
|
418
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "
|
|
419
|
-
"Edit in OpenStreetMap": "
|
|
417
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
418
|
+
"Edit in OpenStreetMap": "Edita a OpenStreetMap",
|
|
420
419
|
"Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
|
|
421
420
|
"Back to layers": "Back to layers",
|
|
422
421
|
"Filters": "Filtres",
|
|
423
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",
|
|
424
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.",
|
|
425
|
-
"Search keys": "
|
|
424
|
+
"Search keys": "Claus de cerca",
|
|
426
425
|
"Filters keys": "Filters keys",
|
|
427
426
|
"Filter data": "Filter data",
|
|
428
427
|
"Search map features…": "Buscar elements del mapa…",
|
|
429
428
|
"Reset all": "Restablir tot",
|
|
430
429
|
"Open browser": "Obriu el navegador",
|
|
431
|
-
"Open caption": "
|
|
430
|
+
"Open caption": "Obriu la llegenda",
|
|
432
431
|
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
433
432
|
"Real-time collaboration": "Real-time collaboration",
|
|
434
433
|
"Cannot parse data": "Cannot parse data",
|
|
@@ -478,7 +477,7 @@
|
|
|
478
477
|
"Search area": "Search area",
|
|
479
478
|
"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",
|
|
480
479
|
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
-
"My Dashboard ({username})": "
|
|
480
|
+
"My Dashboard ({username})": "El meu Tauler de control ({username})",
|
|
482
481
|
"Clear data": "Clear data",
|
|
483
482
|
"Remove layers": "Remove layers",
|
|
484
483
|
"Categorized": "Categorized",
|
|
@@ -498,5 +497,12 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
umap/static/umap/locale/cs_CZ.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "zobrazit název",
|
|
116
116
|
"Display on load": "Zobrazit při startu",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Zobrazit možnost upravit mapu v OpenStreetMap editoru",
|
|
118
|
-
"Display the data layers control": "Zobrazit tlačítko nastavení datových vrstev",
|
|
119
118
|
"Display the embed control": "Zobrazit tlačítko pro sdílení mapy",
|
|
120
119
|
"Display the fullscreen control": "Zobrazit tlačítko pro celoobrazovkový režim",
|
|
121
120
|
"Display the locate control": "Zobrazit tlačítko pro určení polohy",
|
|
@@ -498,7 +497,14 @@ const locale = {
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
|
503
509
|
L.registerLocale("cs_CZ", locale)
|
|
504
510
|
L.setLocale("cs_CZ")
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "zobrazit název",
|
|
116
116
|
"Display on load": "Zobrazit při startu",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Zobrazit možnost upravit mapu v OpenStreetMap editoru",
|
|
118
|
-
"Display the data layers control": "Zobrazit tlačítko nastavení datových vrstev",
|
|
119
118
|
"Display the embed control": "Zobrazit tlačítko pro sdílení mapy",
|
|
120
119
|
"Display the fullscreen control": "Zobrazit tlačítko pro celoobrazovkový režim",
|
|
121
120
|
"Display the locate control": "Zobrazit tlačítko pro určení polohy",
|
|
@@ -498,5 +497,12 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
umap/static/umap/locale/da.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "visningsnavn",
|
|
116
116
|
"Display on load": "Vis ved indlæsning",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Vis kontrollen til åbning af OpenStreetMap-editoren",
|
|
118
|
-
"Display the data layers control": "Vis datalagkontrollen",
|
|
119
118
|
"Display the embed control": "Vis indlejringskontrollen",
|
|
120
119
|
"Display the fullscreen control": "Vis fuldskærmskontrollen",
|
|
121
120
|
"Display the locate control": "Vis lokaliseringskontrollen",
|
|
@@ -498,7 +497,14 @@ const locale = {
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|
|
503
509
|
L.registerLocale("da", locale)
|
|
504
510
|
L.setLocale("da")
|
umap/static/umap/locale/da.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "visningsnavn",
|
|
116
116
|
"Display on load": "Vis ved indlæsning",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Vis kontrollen til åbning af OpenStreetMap-editoren",
|
|
118
|
-
"Display the data layers control": "Vis datalagkontrollen",
|
|
119
118
|
"Display the embed control": "Vis indlejringskontrollen",
|
|
120
119
|
"Display the fullscreen control": "Vis fuldskærmskontrollen",
|
|
121
120
|
"Display the locate control": "Vis lokaliseringskontrollen",
|
|
@@ -498,5 +497,12 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
498
|
"Expression is empty": "Expression is empty",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Cancel"
|
|
500
|
+
"Cancel": "Cancel",
|
|
501
|
+
"Attach map to a team": "Attach map to a team",
|
|
502
|
+
"Display the polygon inverted": "Display the polygon inverted",
|
|
503
|
+
"Proportional circles": "Proportional circles",
|
|
504
|
+
"Property name to compute circles": "Property name to compute circles",
|
|
505
|
+
"Min circle radius": "Min circle radius",
|
|
506
|
+
"Max circle radius": "Max circle radius",
|
|
507
|
+
"Display the open browser control": "Display the open browser control"
|
|
502
508
|
}
|