umap-project 2.5.1__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 +1 -0
- 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.1.dist-info → umap_project-2.6.0.dist-info}/METADATA +14 -14
- {umap_project-2.5.1.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.1.dist-info → umap_project-2.6.0.dist-info}/WHEEL +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.5.1.dist-info → umap_project-2.6.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/fi.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "näytettävä nimi",
|
|
116
116
|
"Display on load": "Näytä ladattaessa",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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("fi", locale)
|
|
504
510
|
L.setLocale("fi")
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "näytettävä nimi",
|
|
116
116
|
"Display on load": "Näytä ladattaessa",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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/fr.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "nom",
|
|
116
116
|
"Display on load": "Afficher au chargement",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Afficher le bouton pour ouvrir l'éditeur d'OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Afficher le bouton d'accès rapide aux calques de données",
|
|
119
118
|
"Display the embed control": "Afficher le bouton de partage",
|
|
120
119
|
"Display the fullscreen control": "Afficher le bouton de plein écran",
|
|
121
120
|
"Display the locate control": "Afficher le bouton de localisation",
|
|
@@ -297,7 +296,7 @@ const locale = {
|
|
|
297
296
|
"Quantiles": "Quantiles",
|
|
298
297
|
"Recent": "Récents",
|
|
299
298
|
"Remote data": "Données distantes",
|
|
300
|
-
"Remove shape from the multi": "
|
|
299
|
+
"Remove shape from the multi": "Supprimer ce tracé du groupe",
|
|
301
300
|
"Replace layer content": "Remplacer le contenu du calque",
|
|
302
301
|
"Restore this version": "Restaurer cette version",
|
|
303
302
|
"Save current edits": "Enregistrer les changements courants",
|
|
@@ -498,7 +497,16 @@ const locale = {
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "{count} lignes trouvées. Êtes-vous sûr de vouloir toutes les supprimer ?",
|
|
499
498
|
"Expression is empty": "L'expression est vide",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Annuler"
|
|
500
|
+
"Cancel": "Annuler",
|
|
501
|
+
"Attach map to a team": "Associer la carte à une équipe",
|
|
502
|
+
"Display the polygon inverted": "Afficher le polygon en négatif",
|
|
503
|
+
"Proportional circles": "Cercles proportionnels",
|
|
504
|
+
"Property name to compute circles": "Nom de la propriété pour calculer les cercles",
|
|
505
|
+
"Min circle radius": "Rayon minimum",
|
|
506
|
+
"Max circle radius": "Rayon maximum",
|
|
507
|
+
"Display the open browser control": "Afficher le bouton d'ouverture de l'explorateur",
|
|
508
|
+
"Copy as GeoJSON": "Copier le GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie"
|
|
502
510
|
}
|
|
503
511
|
L.registerLocale("fr", locale)
|
|
504
512
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "nom",
|
|
116
116
|
"Display on load": "Afficher au chargement",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Afficher le bouton pour ouvrir l'éditeur d'OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Afficher le bouton d'accès rapide aux calques de données",
|
|
119
118
|
"Display the embed control": "Afficher le bouton de partage",
|
|
120
119
|
"Display the fullscreen control": "Afficher le bouton de plein écran",
|
|
121
120
|
"Display the locate control": "Afficher le bouton de localisation",
|
|
@@ -297,7 +296,7 @@
|
|
|
297
296
|
"Quantiles": "Quantiles",
|
|
298
297
|
"Recent": "Récents",
|
|
299
298
|
"Remote data": "Données distantes",
|
|
300
|
-
"Remove shape from the multi": "
|
|
299
|
+
"Remove shape from the multi": "Supprimer ce tracé du groupe",
|
|
301
300
|
"Replace layer content": "Remplacer le contenu du calque",
|
|
302
301
|
"Restore this version": "Restaurer cette version",
|
|
303
302
|
"Save current edits": "Enregistrer les changements courants",
|
|
@@ -498,5 +497,14 @@
|
|
|
498
497
|
"Found {count} rows. Are you sure you want to delete all?": "{count} lignes trouvées. Êtes-vous sûr de vouloir toutes les supprimer ?",
|
|
499
498
|
"Expression is empty": "L'expression est vide",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "Annuler"
|
|
500
|
+
"Cancel": "Annuler",
|
|
501
|
+
"Attach map to a team": "Associer la carte à une équipe",
|
|
502
|
+
"Display the polygon inverted": "Afficher le polygon en négatif",
|
|
503
|
+
"Proportional circles": "Cercles proportionnels",
|
|
504
|
+
"Property name to compute circles": "Nom de la propriété pour calculer les cercles",
|
|
505
|
+
"Min circle radius": "Rayon minimum",
|
|
506
|
+
"Max circle radius": "Rayon maximum",
|
|
507
|
+
"Display the open browser control": "Afficher le bouton d'ouverture de l'explorateur",
|
|
508
|
+
"Copy as GeoJSON": "Copier le GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie"
|
|
502
510
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "amosar o nome",
|
|
116
116
|
"Display on load": "Amosar ó cargar",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Amosar o control para abrir o editor do OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Amosar o control da capa de datos",
|
|
119
118
|
"Display the embed control": "Amosar o control de incrustado",
|
|
120
119
|
"Display the fullscreen control": "Amosar o control de pantalla completa",
|
|
121
120
|
"Display the locate control": "Amosar o control de ubicación",
|
|
@@ -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("gl", locale)
|
|
504
510
|
L.setLocale("gl")
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "amosar o nome",
|
|
116
116
|
"Display on load": "Amosar ó cargar",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Amosar o control para abrir o editor do OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Amosar o control da capa de datos",
|
|
119
118
|
"Display the embed control": "Amosar o control de incrustado",
|
|
120
119
|
"Display the fullscreen control": "Amosar o control de pantalla completa",
|
|
121
120
|
"Display the locate control": "Amosar o control de ubicación",
|
|
@@ -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/he.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "שם תצוגה",
|
|
116
116
|
"Display on load": "הצגה עם הטעינה",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "יש להציג את הפקד לפתיחת העורך של OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "הצגת פקד שכבות הנתונים",
|
|
119
118
|
"Display the embed control": "הצגת פקד ההטמעה",
|
|
120
119
|
"Display the fullscreen control": "הצגת פקד מסך מלא",
|
|
121
120
|
"Display the locate control": "הצגת פקד האיתור",
|
|
@@ -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("he", locale)
|
|
504
510
|
L.setLocale("he")
|
umap/static/umap/locale/he.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "שם תצוגה",
|
|
116
116
|
"Display on load": "הצגה עם הטעינה",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "יש להציג את הפקד לפתיחת העורך של OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "הצגת פקד שכבות הנתונים",
|
|
119
118
|
"Display the embed control": "הצגת פקד ההטמעה",
|
|
120
119
|
"Display the fullscreen control": "הצגת פקד מסך מלא",
|
|
121
120
|
"Display the locate control": "הצגת פקד האיתור",
|
|
@@ -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/hr.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Prikaži kod učitavanja",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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("hr", locale)
|
|
504
510
|
L.setLocale("hr")
|
umap/static/umap/locale/hr.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Prikaži kod učitavanja",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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/hu.js
CHANGED
|
@@ -48,7 +48,7 @@ const locale = {
|
|
|
48
48
|
"by": "- készítette:",
|
|
49
49
|
"Cache proxied request": "Proxy keresztül továbbított gyorsítótárkérés",
|
|
50
50
|
"Cancel edits": "Szerkesztések elvetése",
|
|
51
|
-
"Caption": "
|
|
51
|
+
"Caption": "Leírás",
|
|
52
52
|
"Center map on your location": "A térkép közepének igazítása a saját pozícióhoz",
|
|
53
53
|
"Change map background": "Térkép hátterének módosítása",
|
|
54
54
|
"Change tilelayers": "Mozaikrétegek módosítása",
|
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "név megjelenítése",
|
|
116
116
|
"Display on load": "Megjelenítés betöltéskor",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Az OpenStreetMap szerkesztő megnyitása vezérlő megjelenítése",
|
|
118
|
-
"Display the data layers control": "Adatrétegek vezérlő megjelenítése",
|
|
119
118
|
"Display the embed control": "Beágyazás vezérlő megjelenítése",
|
|
120
119
|
"Display the fullscreen control": "Teljes képernyő vezérlő megjelenítése",
|
|
121
120
|
"Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
|
|
@@ -124,7 +123,7 @@ const locale = {
|
|
|
124
123
|
"Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
|
|
125
124
|
"Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
|
|
126
125
|
"Display the zoom control": "Nagyítás vezérlő megjelenítése",
|
|
127
|
-
"Do you want to display a caption bar?": "Szeretné megjeleníteni a
|
|
126
|
+
"Do you want to display a caption bar?": "Szeretné megjeleníteni a leírást tartalmazó sávot?",
|
|
128
127
|
"Do you want to display a minimap?": "Szeretne megjeleníteni egy kis térképet?",
|
|
129
128
|
"Do you want to display a panel on load?": "Betöltéskor szeretne-e megjeleníteni egy panelt?",
|
|
130
129
|
"Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
|
|
@@ -404,12 +403,12 @@ const locale = {
|
|
|
404
403
|
"{distance} miles": "{distance} mf",
|
|
405
404
|
"{distance} NM": "{distance} tengeri mf.",
|
|
406
405
|
"{distance} yd": "{distance} yard",
|
|
407
|
-
"Edit map name and caption": "Térkép nevének és
|
|
406
|
+
"Edit map name and caption": "Térkép nevének és leírásának szerkesztése",
|
|
408
407
|
"Map advanced properties": "Térkép speciális tulajdonságai",
|
|
409
408
|
"Edit map details": "Térkép adatainak szerkesztése",
|
|
410
409
|
"Back to browser": "Vissza a böngészőbe",
|
|
411
410
|
"Toggle size": "Méret átkapcsolása",
|
|
412
|
-
"Display the caption control": "A
|
|
411
|
+
"Display the caption control": "A 'leírás' vezérlő megjelenítése",
|
|
413
412
|
"<empty value>": "<empty value>",
|
|
414
413
|
"Min": "Legalább",
|
|
415
414
|
"Max": "Legfeljebb",
|
|
@@ -428,7 +427,7 @@ const locale = {
|
|
|
428
427
|
"Search map features…": "Térképobjektum keresése…",
|
|
429
428
|
"Reset all": "Minden alaphelyzetbe állítása",
|
|
430
429
|
"Open browser": "Böngésző megnyitása",
|
|
431
|
-
"Open caption": "
|
|
430
|
+
"Open caption": "Leírás megnyitása",
|
|
432
431
|
"Your map has been created with an anonymous account!": "A térképét egy névtelen fiókkal hozták létre.",
|
|
433
432
|
"Real-time collaboration": "Valós idejű együttműködés",
|
|
434
433
|
"Cannot parse data": "Nem lehet elemezni az adatokat",
|
|
@@ -481,24 +480,33 @@ const locale = {
|
|
|
481
480
|
"My Dashboard ({username})": "Irányítópult ({username})",
|
|
482
481
|
"Clear data": "Adatok törlése",
|
|
483
482
|
"Remove layers": "Rétegek eltávolítása",
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
483
|
+
"Categorized": "Kategóriák szerint",
|
|
484
|
+
"Alphabetical": "Ábécésorrendben",
|
|
485
|
+
"Category property": "Kategória tulajdonsága",
|
|
486
|
+
"Color palette": "Színskála",
|
|
487
|
+
"Categories": "Kategóriák",
|
|
488
|
+
"Comma separated list of categories.": "Kategóriák vesszővel elválasztott listája.",
|
|
489
|
+
"Categories mode": "Kategóriák mód",
|
|
490
|
+
"Remove filter for this column": "Szűrő eltávolítása az oszlopban",
|
|
491
|
+
"Add filter for this column": "Szűrő hozzáadása az oszlophoz",
|
|
492
|
+
"Rename this column": "Oszlop átnevezése",
|
|
493
|
+
"Delete this column": "Oszlop törlése",
|
|
494
|
+
"Name “{name}” should not contain a dot.": "A névben ({name}) nem lehet pont.",
|
|
495
|
+
"This name already exists: “{name}”": "„{name}” név már van",
|
|
496
|
+
"Delete selected rows": "Kijelölt sorok törlése",
|
|
497
|
+
"Found {count} rows. Are you sure you want to delete all?": "{count} sort találtunk. Biztosan törölni szeretné az összeset?",
|
|
498
|
+
"Expression is empty": "A kifejezés üres",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
500
|
+
"Cancel": "Mégse",
|
|
501
|
+
"Attach map to a team": "Térkép csoporthoz rendelése",
|
|
502
|
+
"Display the polygon inverted": "Poligon inverz megjelenítése",
|
|
503
|
+
"Proportional circles": "Arányos körök",
|
|
504
|
+
"Property name to compute circles": "Tulajdonságnév a körök kiszámításához",
|
|
505
|
+
"Min circle radius": "Kör legkisebb sugara",
|
|
506
|
+
"Max circle radius": "Kör legnagyobb sugara",
|
|
507
|
+
"Display the open browser control": "'Böngésző megnyitása' vezérlő megjelenítése",
|
|
508
|
+
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
|
|
502
510
|
}
|
|
503
511
|
L.registerLocale("hu", locale)
|
|
504
512
|
L.setLocale("hu")
|
umap/static/umap/locale/hu.json
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"by": "- készítette:",
|
|
49
49
|
"Cache proxied request": "Proxy keresztül továbbított gyorsítótárkérés",
|
|
50
50
|
"Cancel edits": "Szerkesztések elvetése",
|
|
51
|
-
"Caption": "
|
|
51
|
+
"Caption": "Leírás",
|
|
52
52
|
"Center map on your location": "A térkép közepének igazítása a saját pozícióhoz",
|
|
53
53
|
"Change map background": "Térkép hátterének módosítása",
|
|
54
54
|
"Change tilelayers": "Mozaikrétegek módosítása",
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "név megjelenítése",
|
|
116
116
|
"Display on load": "Megjelenítés betöltéskor",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Az OpenStreetMap szerkesztő megnyitása vezérlő megjelenítése",
|
|
118
|
-
"Display the data layers control": "Adatrétegek vezérlő megjelenítése",
|
|
119
118
|
"Display the embed control": "Beágyazás vezérlő megjelenítése",
|
|
120
119
|
"Display the fullscreen control": "Teljes képernyő vezérlő megjelenítése",
|
|
121
120
|
"Display the locate control": "Saját pozícióhoz igazítás vezérlő megjelenítése",
|
|
@@ -124,7 +123,7 @@
|
|
|
124
123
|
"Display the star map button": "Térképet megcsillagozó gomb megjelenítése",
|
|
125
124
|
"Display the tile layers control": "Mozaikrétegek vezérlő megjelenítése",
|
|
126
125
|
"Display the zoom control": "Nagyítás vezérlő megjelenítése",
|
|
127
|
-
"Do you want to display a caption bar?": "Szeretné megjeleníteni a
|
|
126
|
+
"Do you want to display a caption bar?": "Szeretné megjeleníteni a leírást tartalmazó sávot?",
|
|
128
127
|
"Do you want to display a minimap?": "Szeretne megjeleníteni egy kis térképet?",
|
|
129
128
|
"Do you want to display a panel on load?": "Betöltéskor szeretne-e megjeleníteni egy panelt?",
|
|
130
129
|
"Do you want to display caption menus?": "Szeretné megjeleníteni a térkép címsávmenüjét?",
|
|
@@ -404,12 +403,12 @@
|
|
|
404
403
|
"{distance} miles": "{distance} mf",
|
|
405
404
|
"{distance} NM": "{distance} tengeri mf.",
|
|
406
405
|
"{distance} yd": "{distance} yard",
|
|
407
|
-
"Edit map name and caption": "Térkép nevének és
|
|
406
|
+
"Edit map name and caption": "Térkép nevének és leírásának szerkesztése",
|
|
408
407
|
"Map advanced properties": "Térkép speciális tulajdonságai",
|
|
409
408
|
"Edit map details": "Térkép adatainak szerkesztése",
|
|
410
409
|
"Back to browser": "Vissza a böngészőbe",
|
|
411
410
|
"Toggle size": "Méret átkapcsolása",
|
|
412
|
-
"Display the caption control": "A
|
|
411
|
+
"Display the caption control": "A 'leírás' vezérlő megjelenítése",
|
|
413
412
|
"<empty value>": "<empty value>",
|
|
414
413
|
"Min": "Legalább",
|
|
415
414
|
"Max": "Legfeljebb",
|
|
@@ -428,7 +427,7 @@
|
|
|
428
427
|
"Search map features…": "Térképobjektum keresése…",
|
|
429
428
|
"Reset all": "Minden alaphelyzetbe állítása",
|
|
430
429
|
"Open browser": "Böngésző megnyitása",
|
|
431
|
-
"Open caption": "
|
|
430
|
+
"Open caption": "Leírás megnyitása",
|
|
432
431
|
"Your map has been created with an anonymous account!": "A térképét egy névtelen fiókkal hozták létre.",
|
|
433
432
|
"Real-time collaboration": "Valós idejű együttműködés",
|
|
434
433
|
"Cannot parse data": "Nem lehet elemezni az adatokat",
|
|
@@ -481,22 +480,31 @@
|
|
|
481
480
|
"My Dashboard ({username})": "Irányítópult ({username})",
|
|
482
481
|
"Clear data": "Adatok törlése",
|
|
483
482
|
"Remove layers": "Rétegek eltávolítása",
|
|
484
|
-
"Categorized": "
|
|
485
|
-
"Alphabetical": "
|
|
486
|
-
"Category property": "
|
|
487
|
-
"Color palette": "
|
|
488
|
-
"Categories": "
|
|
489
|
-
"Comma separated list of categories.": "
|
|
490
|
-
"Categories mode": "
|
|
491
|
-
"Remove filter for this column": "
|
|
492
|
-
"Add filter for this column": "
|
|
493
|
-
"Rename this column": "
|
|
494
|
-
"Delete this column": "
|
|
495
|
-
"Name “{name}” should not contain a dot.": "
|
|
496
|
-
"This name already exists: “{name}”": "
|
|
497
|
-
"Delete selected rows": "
|
|
498
|
-
"Found {count} rows. Are you sure you want to delete all?": "
|
|
499
|
-
"Expression is empty": "
|
|
483
|
+
"Categorized": "Kategóriák szerint",
|
|
484
|
+
"Alphabetical": "Ábécésorrendben",
|
|
485
|
+
"Category property": "Kategória tulajdonsága",
|
|
486
|
+
"Color palette": "Színskála",
|
|
487
|
+
"Categories": "Kategóriák",
|
|
488
|
+
"Comma separated list of categories.": "Kategóriák vesszővel elválasztott listája.",
|
|
489
|
+
"Categories mode": "Kategóriák mód",
|
|
490
|
+
"Remove filter for this column": "Szűrő eltávolítása az oszlopban",
|
|
491
|
+
"Add filter for this column": "Szűrő hozzáadása az oszlophoz",
|
|
492
|
+
"Rename this column": "Oszlop átnevezése",
|
|
493
|
+
"Delete this column": "Oszlop törlése",
|
|
494
|
+
"Name “{name}” should not contain a dot.": "A névben ({name}) nem lehet pont.",
|
|
495
|
+
"This name already exists: “{name}”": "„{name}” név már van",
|
|
496
|
+
"Delete selected rows": "Kijelölt sorok törlése",
|
|
497
|
+
"Found {count} rows. Are you sure you want to delete all?": "{count} sort találtunk. Biztosan törölni szeretné az összeset?",
|
|
498
|
+
"Expression is empty": "A kifejezés üres",
|
|
500
499
|
"OK": "OK",
|
|
501
|
-
"Cancel": "
|
|
500
|
+
"Cancel": "Mégse",
|
|
501
|
+
"Attach map to a team": "Térkép csoporthoz rendelése",
|
|
502
|
+
"Display the polygon inverted": "Poligon inverz megjelenítése",
|
|
503
|
+
"Proportional circles": "Arányos körök",
|
|
504
|
+
"Property name to compute circles": "Tulajdonságnév a körök kiszámításához",
|
|
505
|
+
"Min circle radius": "Kör legkisebb sugara",
|
|
506
|
+
"Max circle radius": "Kör legnagyobb sugara",
|
|
507
|
+
"Display the open browser control": "'Böngésző megnyitása' vezérlő megjelenítése",
|
|
508
|
+
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
+
"Please zoom in to edit the geometry": "Please zoom in to edit the geometry"
|
|
502
510
|
}
|
umap/static/umap/locale/id.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Display on load",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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("id", locale)
|
|
504
510
|
L.setLocale("id")
|
umap/static/umap/locale/id.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "display name",
|
|
116
116
|
"Display on load": "Display on load",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
|
|
118
|
-
"Display the data layers control": "Display the data layers control",
|
|
119
118
|
"Display the embed control": "Display the embed control",
|
|
120
119
|
"Display the fullscreen control": "Display the fullscreen control",
|
|
121
120
|
"Display the locate control": "Display the locate control",
|
|
@@ -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/is.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "birtingarnafn",
|
|
116
116
|
"Display on load": "Birta við innhleðslu",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Birta hnapp til að opna OpenStreetMap-ritill",
|
|
118
|
-
"Display the data layers control": "Birta hnapp fyrir gagnalög",
|
|
119
118
|
"Display the embed control": "Birta hnapp fyrir ígræðslukóða",
|
|
120
119
|
"Display the fullscreen control": "Birta hnapp fyrir skjáfylli",
|
|
121
120
|
"Display the locate control": "Birta staðsetningarhnapp",
|
|
@@ -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("is", locale)
|
|
504
510
|
L.setLocale("is")
|
umap/static/umap/locale/is.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "birtingarnafn",
|
|
116
116
|
"Display on load": "Birta við innhleðslu",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Birta hnapp til að opna OpenStreetMap-ritill",
|
|
118
|
-
"Display the data layers control": "Birta hnapp fyrir gagnalög",
|
|
119
118
|
"Display the embed control": "Birta hnapp fyrir ígræðslukóða",
|
|
120
119
|
"Display the fullscreen control": "Birta hnapp fyrir skjáfylli",
|
|
121
120
|
"Display the locate control": "Birta staðsetningarhnapp",
|
|
@@ -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/it.js
CHANGED
|
@@ -115,7 +115,6 @@ const locale = {
|
|
|
115
115
|
"display name": "visualizza il nome",
|
|
116
116
|
"Display on load": "Mostra al caricamento",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Mostra il controllo per aprire l'editor di OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Mostra il controllo dei dati per i layer",
|
|
119
118
|
"Display the embed control": "Visualizza il controllo per l'incorporamento",
|
|
120
119
|
"Display the fullscreen control": "Visualizza il controllo di schermo intero",
|
|
121
120
|
"Display the locate control": "Visualizza il controllo di localizzazione",
|
|
@@ -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("it", locale)
|
|
504
510
|
L.setLocale("it")
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"display name": "visualizza il nome",
|
|
116
116
|
"Display on load": "Mostra al caricamento",
|
|
117
117
|
"Display the control to open OpenStreetMap editor": "Mostra il controllo per aprire l'editor di OpenStreetMap",
|
|
118
|
-
"Display the data layers control": "Mostra il controllo dei dati per i layer",
|
|
119
118
|
"Display the embed control": "Visualizza il controllo per l'incorporamento",
|
|
120
119
|
"Display the fullscreen control": "Visualizza il controllo di schermo intero",
|
|
121
120
|
"Display the locate control": "Visualizza il controllo di localizzazione",
|
|
@@ -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
|
}
|