umap-project 2.6.2__py3-none-any.whl → 2.7.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 +64 -1
- umap/asgi.py +15 -0
- umap/context_processors.py +1 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +96 -92
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +19 -18
- umap/locale/en/LC_MESSAGES/django.po +47 -43
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +134 -128
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +51 -47
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +64 -60
- umap/management/commands/clean_tilelayer.py +152 -0
- umap/management/commands/purge_purgatory.py +28 -0
- umap/models.py +27 -2
- umap/settings/base.py +3 -1
- umap/static/umap/base.css +4 -4
- umap/static/umap/css/contextmenu.css +6 -1
- umap/static/umap/css/icon.css +7 -2
- umap/static/umap/css/importers.css +4 -0
- umap/static/umap/img/16-white.svg +9 -2
- umap/static/umap/img/16.svg +1 -181
- umap/static/umap/img/24-white.svg +1 -0
- umap/static/umap/img/24.svg +1 -0
- umap/static/umap/img/importers/cadastrefr.svg +23 -0
- umap/static/umap/img/source/16-white.svg +10 -3
- umap/static/umap/img/source/16.svg +753 -197
- umap/static/umap/img/source/24-white.svg +3 -2
- umap/static/umap/img/source/24.svg +3 -2
- umap/static/umap/js/modules/autocomplete.js +7 -3
- umap/static/umap/js/modules/browser.js +55 -2
- umap/static/umap/js/modules/caption.js +16 -5
- umap/static/umap/js/modules/data/features.js +183 -8
- umap/static/umap/js/modules/data/layer.js +57 -40
- umap/static/umap/js/modules/formatter.js +3 -2
- umap/static/umap/js/modules/global.js +2 -0
- umap/static/umap/js/modules/importer.js +3 -0
- umap/static/umap/js/modules/importers/cadastrefr.js +62 -0
- umap/static/umap/js/modules/importers/communesfr.js +15 -3
- umap/static/umap/js/modules/permissions.js +123 -93
- umap/static/umap/js/modules/rendering/layers/classified.js +2 -0
- umap/static/umap/js/modules/rendering/ui.js +60 -213
- umap/static/umap/js/modules/share.js +1 -3
- umap/static/umap/js/modules/slideshow.js +1 -1
- umap/static/umap/js/modules/sync/engine.js +371 -14
- umap/static/umap/js/modules/sync/hlc.js +106 -0
- umap/static/umap/js/modules/sync/updaters.js +18 -6
- umap/static/umap/js/modules/sync/websocket.js +1 -1
- umap/static/umap/js/modules/tableeditor.js +1 -1
- umap/static/umap/js/modules/ui/base.js +2 -2
- umap/static/umap/js/modules/ui/contextmenu.js +51 -18
- umap/static/umap/js/modules/urls.js +5 -1
- umap/static/umap/js/modules/utils.js +28 -4
- umap/static/umap/js/umap.controls.js +76 -55
- umap/static/umap/js/umap.core.js +3 -3
- umap/static/umap/js/umap.forms.js +3 -1
- umap/static/umap/js/umap.js +115 -124
- umap/static/umap/locale/am_ET.js +2 -2
- umap/static/umap/locale/am_ET.json +2 -2
- umap/static/umap/locale/ar.js +2 -2
- umap/static/umap/locale/ar.json +2 -2
- umap/static/umap/locale/ast.js +2 -2
- umap/static/umap/locale/ast.json +2 -2
- umap/static/umap/locale/bg.js +2 -2
- umap/static/umap/locale/bg.json +2 -2
- umap/static/umap/locale/br.js +13 -4
- umap/static/umap/locale/br.json +13 -4
- umap/static/umap/locale/ca.js +30 -17
- umap/static/umap/locale/ca.json +30 -17
- umap/static/umap/locale/cs_CZ.js +89 -80
- umap/static/umap/locale/cs_CZ.json +89 -80
- umap/static/umap/locale/da.js +2 -2
- umap/static/umap/locale/da.json +2 -2
- umap/static/umap/locale/de.js +17 -8
- umap/static/umap/locale/de.json +17 -8
- umap/static/umap/locale/el.js +2 -2
- umap/static/umap/locale/el.json +2 -2
- umap/static/umap/locale/en.js +15 -4
- umap/static/umap/locale/en.json +15 -4
- umap/static/umap/locale/en_US.json +2 -2
- umap/static/umap/locale/es.js +338 -325
- umap/static/umap/locale/es.json +338 -325
- umap/static/umap/locale/et.js +2 -2
- umap/static/umap/locale/et.json +2 -2
- umap/static/umap/locale/eu.js +11 -4
- umap/static/umap/locale/eu.json +11 -4
- umap/static/umap/locale/fa_IR.js +11 -4
- umap/static/umap/locale/fa_IR.json +11 -4
- umap/static/umap/locale/fi.js +2 -2
- umap/static/umap/locale/fi.json +2 -2
- umap/static/umap/locale/fr.js +15 -4
- umap/static/umap/locale/fr.json +15 -4
- umap/static/umap/locale/gl.js +2 -2
- umap/static/umap/locale/gl.json +2 -2
- umap/static/umap/locale/he.js +2 -2
- umap/static/umap/locale/he.json +2 -2
- umap/static/umap/locale/hr.js +2 -2
- umap/static/umap/locale/hr.json +2 -2
- umap/static/umap/locale/hu.js +12 -5
- umap/static/umap/locale/hu.json +12 -5
- umap/static/umap/locale/id.js +2 -2
- umap/static/umap/locale/id.json +2 -2
- umap/static/umap/locale/is.js +2 -2
- umap/static/umap/locale/is.json +2 -2
- umap/static/umap/locale/it.js +2 -2
- umap/static/umap/locale/it.json +2 -2
- umap/static/umap/locale/ja.js +2 -2
- umap/static/umap/locale/ja.json +2 -2
- umap/static/umap/locale/ko.js +2 -2
- umap/static/umap/locale/ko.json +2 -2
- umap/static/umap/locale/lt.js +2 -2
- umap/static/umap/locale/lt.json +2 -2
- umap/static/umap/locale/ms.js +2 -2
- umap/static/umap/locale/ms.json +2 -2
- umap/static/umap/locale/nl.js +2 -2
- umap/static/umap/locale/nl.json +2 -2
- umap/static/umap/locale/no.js +2 -2
- umap/static/umap/locale/no.json +2 -2
- umap/static/umap/locale/pl.js +2 -2
- umap/static/umap/locale/pl.json +2 -2
- umap/static/umap/locale/pl_PL.json +2 -2
- umap/static/umap/locale/pt.js +19 -10
- umap/static/umap/locale/pt.json +19 -10
- umap/static/umap/locale/pt_BR.js +2 -2
- umap/static/umap/locale/pt_BR.json +2 -2
- umap/static/umap/locale/pt_PT.js +13 -4
- umap/static/umap/locale/pt_PT.json +13 -4
- umap/static/umap/locale/ro.js +2 -2
- umap/static/umap/locale/ro.json +2 -2
- umap/static/umap/locale/ru.js +2 -2
- umap/static/umap/locale/ru.json +2 -2
- umap/static/umap/locale/si.js +2 -2
- umap/static/umap/locale/si.json +2 -2
- umap/static/umap/locale/sk_SK.js +2 -2
- umap/static/umap/locale/sk_SK.json +2 -2
- umap/static/umap/locale/sl.js +2 -2
- umap/static/umap/locale/sl.json +2 -2
- umap/static/umap/locale/sr.js +2 -2
- umap/static/umap/locale/sr.json +2 -2
- umap/static/umap/locale/sv.js +2 -2
- umap/static/umap/locale/sv.json +2 -2
- umap/static/umap/locale/th_TH.js +2 -2
- umap/static/umap/locale/th_TH.json +2 -2
- umap/static/umap/locale/tr.js +2 -2
- umap/static/umap/locale/tr.json +2 -2
- umap/static/umap/locale/uk_UA.js +2 -2
- umap/static/umap/locale/uk_UA.json +2 -2
- umap/static/umap/locale/vi.js +2 -2
- umap/static/umap/locale/vi.json +2 -2
- umap/static/umap/locale/vi_VN.json +2 -2
- umap/static/umap/locale/zh.js +2 -2
- umap/static/umap/locale/zh.json +2 -2
- umap/static/umap/locale/zh_CN.json +2 -2
- umap/static/umap/locale/zh_TW.Big5.json +2 -2
- umap/static/umap/locale/zh_TW.js +13 -4
- umap/static/umap/locale/zh_TW.json +13 -4
- umap/static/umap/map.css +44 -29
- umap/static/umap/unittests/hlc.js +165 -0
- umap/static/umap/unittests/sync.js +321 -15
- umap/static/umap/unittests/utils.js +47 -0
- umap/static/umap/vars.css +2 -1
- umap/static/umap/vendors/colorbrewer/colorbrewer.js +309 -317
- umap/static/umap/vendors/dompurify/purify.es.js +15 -16
- umap/static/umap/vendors/dompurify/purify.es.mjs.map +1 -1
- umap/static/umap/vendors/georsstogeojson/GeoRSSToGeoJSON.js +111 -80
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js +2 -2
- umap/static/umap/vendors/locatecontrol/L.Control.Locate.min.js.map +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js +1 -1
- umap/static/umap/vendors/simple-statistics/simple-statistics.min.js.map +1 -1
- umap/templates/umap/css.html +0 -2
- umap/templates/umap/dashboard_menu.html +4 -2
- umap/templates/umap/js.html +0 -5
- umap/templates/umap/map_detail.html +2 -2
- umap/tests/fixtures/test_upload_data.csv +2 -2
- umap/tests/integration/test_anonymous_owned_map.py +1 -0
- umap/tests/integration/test_basics.py +1 -1
- umap/tests/integration/test_browser.py +69 -7
- umap/tests/integration/test_caption.py +3 -3
- umap/tests/integration/test_circles_layer.py +12 -0
- umap/tests/integration/test_cluster.py +53 -0
- umap/tests/integration/test_datalayer.py +2 -1
- umap/tests/integration/test_draw_polygon.py +17 -9
- umap/tests/integration/test_draw_polyline.py +84 -7
- umap/tests/integration/test_edit_datalayer.py +5 -8
- umap/tests/integration/test_edit_map.py +2 -2
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +1 -0
- umap/tests/integration/test_map.py +1 -0
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_view_marker.py +63 -0
- umap/tests/integration/test_view_polygon.py +12 -12
- umap/tests/integration/test_websocket_sync.py +65 -3
- umap/tests/test_clean_tilelayer.py +83 -0
- umap/tests/test_datalayer.py +24 -0
- umap/tests/test_map_views.py +20 -0
- umap/tests/test_purge_purgatory.py +25 -0
- umap/tests/test_websocket_server.py +22 -0
- umap/urls.py +5 -1
- umap/views.py +6 -3
- umap/websocket_server.py +130 -27
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/METADATA +18 -14
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/RECORD +209 -200
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.css +0 -1
- umap/static/umap/vendors/contextmenu/leaflet.contextmenu.min.js +0 -7
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/WHEEL +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.6.2.dist-info → umap_project-2.7.0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/et.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# üks trell põhipealkirja jaoks",
|
|
5
5
|
"## two hashes for second heading": "## kaks trelli teise pealkirja jaoks",
|
|
6
6
|
"### three hashes for third heading": "### kolm trelli kolmanda pealkirja jaoks",
|
umap/static/umap/locale/et.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# üks trell põhipealkirja jaoks",
|
|
5
5
|
"## two hashes for second heading": "## kaks trelli teise pealkirja jaoks",
|
|
6
6
|
"### three hashes for third heading": "### kolm trelli kolmanda pealkirja jaoks",
|
umap/static/umap/locale/eu.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# traola bat goiburu nagusirako",
|
|
5
5
|
"## two hashes for second heading": "## bi traola bigarren goibururako",
|
|
6
6
|
"### three hashes for third heading": "### hiru traola hirugarren goibururako",
|
|
@@ -477,7 +477,6 @@ const locale = {
|
|
|
477
477
|
"Search area": "Bilatu eremua",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Idatzi eremuaren izena edo utzi hutsik datuak kargatzeko uneko maparen ikuspegian",
|
|
479
479
|
"Data successfully imported!": "Datuak behar bezala inportatu dira!",
|
|
480
|
-
"My Dashboard ({username})": "Nire panela ({username})",
|
|
481
480
|
"Clear data": "Garbitu datuak",
|
|
482
481
|
"Remove layers": "Kendu geruzak",
|
|
483
482
|
"Categorized": "Sailkatuta",
|
|
@@ -506,7 +505,15 @@ const locale = {
|
|
|
506
505
|
"Max circle radius": "Zirkuluaren gehieneko erradioa",
|
|
507
506
|
"Display the open browser control": "Display the open browser control",
|
|
508
507
|
"Copy as GeoJSON": "Kopiatu GeoJSON gisa",
|
|
509
|
-
"Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko"
|
|
508
|
+
"Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
|
511
518
|
L.registerLocale("eu", locale)
|
|
512
519
|
L.setLocale("eu")
|
umap/static/umap/locale/eu.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# traola bat goiburu nagusirako",
|
|
5
5
|
"## two hashes for second heading": "## bi traola bigarren goibururako",
|
|
6
6
|
"### three hashes for third heading": "### hiru traola hirugarren goibururako",
|
|
@@ -477,7 +477,6 @@
|
|
|
477
477
|
"Search area": "Bilatu eremua",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Idatzi eremuaren izena edo utzi hutsik datuak kargatzeko uneko maparen ikuspegian",
|
|
479
479
|
"Data successfully imported!": "Datuak behar bezala inportatu dira!",
|
|
480
|
-
"My Dashboard ({username})": "Nire panela ({username})",
|
|
481
480
|
"Clear data": "Garbitu datuak",
|
|
482
481
|
"Remove layers": "Kendu geruzak",
|
|
483
482
|
"Categorized": "Sailkatuta",
|
|
@@ -506,5 +505,13 @@
|
|
|
506
505
|
"Max circle radius": "Zirkuluaren gehieneko erradioa",
|
|
507
506
|
"Display the open browser control": "Display the open browser control",
|
|
508
507
|
"Copy as GeoJSON": "Kopiatu GeoJSON gisa",
|
|
509
|
-
"Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko"
|
|
508
|
+
"Please zoom in to edit the geometry": "Mesedez, handitu geometria editatzeko",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
umap/static/umap/locale/fa_IR.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# یک هش برای عنوان اصلی",
|
|
5
5
|
"## two hashes for second heading": "## دو هش برای عنوان دوم",
|
|
6
6
|
"### three hashes for third heading": "### سه هش برای عنوان سوم",
|
|
@@ -477,7 +477,6 @@ const locale = {
|
|
|
477
477
|
"Search area": "محدودهٔ جستجو",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "نام محدوده را بنویسید، یا خالی بگذارید تا برای نمای فعلی نقشه دادهها بار شود",
|
|
479
479
|
"Data successfully imported!": "داده با موفقیت درونبرد شد!",
|
|
480
|
-
"My Dashboard ({username})": "پیشخان من ({username})",
|
|
481
480
|
"Clear data": "حذف داده",
|
|
482
481
|
"Remove layers": "حذف لایهها",
|
|
483
482
|
"Categorized": "دستهبندیشده",
|
|
@@ -506,7 +505,15 @@ const locale = {
|
|
|
506
505
|
"Max circle radius": "بیشتری شعاع دایره",
|
|
507
506
|
"Display the open browser control": "نمایش دکمهٔ بازکردن مرورگر",
|
|
508
507
|
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
-
"Please zoom in to edit the geometry": "لطفاً برای ویرایش هندسه زوم کنید"
|
|
508
|
+
"Please zoom in to edit the geometry": "لطفاً برای ویرایش هندسه زوم کنید",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
|
511
518
|
L.registerLocale("fa_IR", locale)
|
|
512
519
|
L.setLocale("fa_IR")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# یک هش برای عنوان اصلی",
|
|
5
5
|
"## two hashes for second heading": "## دو هش برای عنوان دوم",
|
|
6
6
|
"### three hashes for third heading": "### سه هش برای عنوان سوم",
|
|
@@ -477,7 +477,6 @@
|
|
|
477
477
|
"Search area": "محدودهٔ جستجو",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "نام محدوده را بنویسید، یا خالی بگذارید تا برای نمای فعلی نقشه دادهها بار شود",
|
|
479
479
|
"Data successfully imported!": "داده با موفقیت درونبرد شد!",
|
|
480
|
-
"My Dashboard ({username})": "پیشخان من ({username})",
|
|
481
480
|
"Clear data": "حذف داده",
|
|
482
481
|
"Remove layers": "حذف لایهها",
|
|
483
482
|
"Categorized": "دستهبندیشده",
|
|
@@ -506,5 +505,13 @@
|
|
|
506
505
|
"Max circle radius": "بیشتری شعاع دایره",
|
|
507
506
|
"Display the open browser control": "نمایش دکمهٔ بازکردن مرورگر",
|
|
508
507
|
"Copy as GeoJSON": "Copy as GeoJSON",
|
|
509
|
-
"Please zoom in to edit the geometry": "لطفاً برای ویرایش هندسه زوم کنید"
|
|
508
|
+
"Please zoom in to edit the geometry": "لطفاً برای ویرایش هندسه زوم کنید",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
umap/static/umap/locale/fi.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# yksi risuaita tekee päätason otsikon",
|
|
5
5
|
"## two hashes for second heading": "## kaksi risuaitaa tekee kakkostason otsikon",
|
|
6
6
|
"### three hashes for third heading": "### kolme risuaitaa tekee kolmostason otsikon",
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# yksi risuaita tekee päätason otsikon",
|
|
5
5
|
"## two hashes for second heading": "## kaksi risuaitaa tekee kakkostason otsikon",
|
|
6
6
|
"### three hashes for third heading": "### kolme risuaitaa tekee kolmostason otsikon",
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(surface: {measure})",
|
|
3
|
+
"(length: {measure})": "(longueur: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un dièse pour titre 1",
|
|
5
5
|
"## two hashes for second heading": "## deux dièses pour titre 2",
|
|
6
6
|
"### three hashes for third heading": "### trois dièses pour titre 3",
|
|
@@ -477,7 +477,6 @@ const locale = {
|
|
|
477
477
|
"Search area": "Chercher un coin",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Entrer le nom d'un périmètre géographique, ou laisser vide pour utiliser la vue courante de la carte",
|
|
479
479
|
"Data successfully imported!": "Les données ont été importées!",
|
|
480
|
-
"My Dashboard ({username})": "Mon tableau de bord ({username})",
|
|
481
480
|
"Clear data": "Effacer les données",
|
|
482
481
|
"Remove layers": "Supprimer les calques",
|
|
483
482
|
"Categorized": "Par catégories",
|
|
@@ -506,7 +505,19 @@ const locale = {
|
|
|
506
505
|
"Max circle radius": "Rayon maximum",
|
|
507
506
|
"Display the open browser control": "Afficher le bouton d'ouverture de l'explorateur",
|
|
508
507
|
"Copy as GeoJSON": "Copier le GeoJSON",
|
|
509
|
-
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie"
|
|
508
|
+
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie",
|
|
509
|
+
"New map": "Nouvelle carte",
|
|
510
|
+
"My maps": "Mes cartes",
|
|
511
|
+
"My teams": "Mes équipes",
|
|
512
|
+
"My profile": "Mon profil",
|
|
513
|
+
"Type new owner's username": "Nom d'utilisateur du nouveau propriétaire",
|
|
514
|
+
"Type editor's username": "Nom d'utilisateur de l'éditeur",
|
|
515
|
+
"Map": "Carte",
|
|
516
|
+
"Manage collaborators": "Gérer les collaborateurs",
|
|
517
|
+
"show/hide all layers": "montrer/masquer les calques",
|
|
518
|
+
"zoom to data extent": "zoomer sur les données",
|
|
519
|
+
"download visible data": "télécharger les données affichées",
|
|
520
|
+
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte"
|
|
510
521
|
}
|
|
511
522
|
L.registerLocale("fr", locale)
|
|
512
523
|
L.setLocale("fr")
|
umap/static/umap/locale/fr.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(surface: {measure})",
|
|
3
|
+
"(length: {measure})": "(longueur: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un dièse pour titre 1",
|
|
5
5
|
"## two hashes for second heading": "## deux dièses pour titre 2",
|
|
6
6
|
"### three hashes for third heading": "### trois dièses pour titre 3",
|
|
@@ -477,7 +477,6 @@
|
|
|
477
477
|
"Search area": "Chercher un coin",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Entrer le nom d'un périmètre géographique, ou laisser vide pour utiliser la vue courante de la carte",
|
|
479
479
|
"Data successfully imported!": "Les données ont été importées!",
|
|
480
|
-
"My Dashboard ({username})": "Mon tableau de bord ({username})",
|
|
481
480
|
"Clear data": "Effacer les données",
|
|
482
481
|
"Remove layers": "Supprimer les calques",
|
|
483
482
|
"Categorized": "Par catégories",
|
|
@@ -506,5 +505,17 @@
|
|
|
506
505
|
"Max circle radius": "Rayon maximum",
|
|
507
506
|
"Display the open browser control": "Afficher le bouton d'ouverture de l'explorateur",
|
|
508
507
|
"Copy as GeoJSON": "Copier le GeoJSON",
|
|
509
|
-
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie"
|
|
508
|
+
"Please zoom in to edit the geometry": "Zoomer pour éditer la géométrie",
|
|
509
|
+
"New map": "Nouvelle carte",
|
|
510
|
+
"My maps": "Mes cartes",
|
|
511
|
+
"My teams": "Mes équipes",
|
|
512
|
+
"My profile": "Mon profil",
|
|
513
|
+
"Type new owner's username": "Nom d'utilisateur du nouveau propriétaire",
|
|
514
|
+
"Type editor's username": "Nom d'utilisateur de l'éditeur",
|
|
515
|
+
"Map": "Carte",
|
|
516
|
+
"Manage collaborators": "Gérer les collaborateurs",
|
|
517
|
+
"show/hide all layers": "montrer/masquer les calques",
|
|
518
|
+
"zoom to data extent": "zoomer sur les données",
|
|
519
|
+
"download visible data": "télécharger les données affichées",
|
|
520
|
+
"{connectedPeers} peer(s) currently connected to this map": "{connectedPeers} personne(s) actuellement connectée(s) à cette carte"
|
|
510
521
|
}
|
umap/static/umap/locale/gl.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un cancelo para a cabeceira principal",
|
|
5
5
|
"## two hashes for second heading": "## dous cancelos para a cabeceira secundaria",
|
|
6
6
|
"### three hashes for third heading": "### tres cancelos para a cabeceira terciaria",
|
umap/static/umap/locale/gl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un cancelo para a cabeceira principal",
|
|
5
5
|
"## two hashes for second heading": "## dous cancelos para a cabeceira secundaria",
|
|
6
6
|
"### three hashes for third heading": "### tres cancelos para a cabeceira terciaria",
|
umap/static/umap/locale/he.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# סולמית אחת לכותרת ראשית",
|
|
5
5
|
"## two hashes for second heading": "## שתי סולמיות לכותרת מסדר שני",
|
|
6
6
|
"### three hashes for third heading": "### שלוש סולמיות לכותרת מסדר שלישי",
|
umap/static/umap/locale/he.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# סולמית אחת לכותרת ראשית",
|
|
5
5
|
"## two hashes for second heading": "## שתי סולמיות לכותרת מסדר שני",
|
|
6
6
|
"### three hashes for third heading": "### שלוש סולמיות לכותרת מסדר שלישי",
|
umap/static/umap/locale/hr.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# jedne ljestve za glavni naslov",
|
|
5
5
|
"## two hashes for second heading": "### dva puta ljestve za treću razinu naslova",
|
|
6
6
|
"### three hashes for third heading": "### tri puta ljestve za treću razinu naslova",
|
umap/static/umap/locale/hr.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# jedne ljestve za glavni naslov",
|
|
5
5
|
"## two hashes for second heading": "### dva puta ljestve za treću razinu naslova",
|
|
6
6
|
"### three hashes for third heading": "### tri puta ljestve za treću razinu naslova",
|
umap/static/umap/locale/hu.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(terület: {measure})",
|
|
3
|
+
"(length: {measure})": "(távolság: {measure})",
|
|
4
4
|
"# one hash for main heading": "# egy számjel: fő címsor",
|
|
5
5
|
"## two hashes for second heading": "## két számjel: második címsor",
|
|
6
6
|
"### three hashes for third heading": "### három számjel: harmadik címsor",
|
|
@@ -477,7 +477,6 @@ const locale = {
|
|
|
477
477
|
"Search area": "Terület keresése",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Adja meg a terület nevét vagy hagyja üresen a jelenlegi térképnézet adatainak betöltéséhez",
|
|
479
479
|
"Data successfully imported!": "Adatok sikeresen importálva",
|
|
480
|
-
"My Dashboard ({username})": "Irányítópult ({username})",
|
|
481
480
|
"Clear data": "Adatok törlése",
|
|
482
481
|
"Remove layers": "Rétegek eltávolítása",
|
|
483
482
|
"Categorized": "Kategóriák szerint",
|
|
@@ -505,8 +504,16 @@ const locale = {
|
|
|
505
504
|
"Min circle radius": "Kör legkisebb sugara",
|
|
506
505
|
"Max circle radius": "Kör legnagyobb sugara",
|
|
507
506
|
"Display the open browser control": "'Böngésző megnyitása' vezérlő megjelenítése",
|
|
508
|
-
"Copy as GeoJSON": "
|
|
509
|
-
"Please zoom in to edit the geometry": "
|
|
507
|
+
"Copy as GeoJSON": "Másolás GeoJSON-ként",
|
|
508
|
+
"Please zoom in to edit the geometry": "Az alakzat szerkesztéséhez nagyítson",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
|
511
518
|
L.registerLocale("hu", locale)
|
|
512
519
|
L.setLocale("hu")
|
umap/static/umap/locale/hu.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(terület: {measure})",
|
|
3
|
+
"(length: {measure})": "(távolság: {measure})",
|
|
4
4
|
"# one hash for main heading": "# egy számjel: fő címsor",
|
|
5
5
|
"## two hashes for second heading": "## két számjel: második címsor",
|
|
6
6
|
"### three hashes for third heading": "### három számjel: harmadik címsor",
|
|
@@ -477,7 +477,6 @@
|
|
|
477
477
|
"Search area": "Terület keresése",
|
|
478
478
|
"Type area name, or let empty to load data in current map view": "Adja meg a terület nevét vagy hagyja üresen a jelenlegi térképnézet adatainak betöltéséhez",
|
|
479
479
|
"Data successfully imported!": "Adatok sikeresen importálva",
|
|
480
|
-
"My Dashboard ({username})": "Irányítópult ({username})",
|
|
481
480
|
"Clear data": "Adatok törlése",
|
|
482
481
|
"Remove layers": "Rétegek eltávolítása",
|
|
483
482
|
"Categorized": "Kategóriák szerint",
|
|
@@ -505,6 +504,14 @@
|
|
|
505
504
|
"Min circle radius": "Kör legkisebb sugara",
|
|
506
505
|
"Max circle radius": "Kör legnagyobb sugara",
|
|
507
506
|
"Display the open browser control": "'Böngésző megnyitása' vezérlő megjelenítése",
|
|
508
|
-
"Copy as GeoJSON": "
|
|
509
|
-
"Please zoom in to edit the geometry": "
|
|
507
|
+
"Copy as GeoJSON": "Másolás GeoJSON-ként",
|
|
508
|
+
"Please zoom in to edit the geometry": "Az alakzat szerkesztéséhez nagyítson",
|
|
509
|
+
"New map": "New map",
|
|
510
|
+
"My maps": "My maps",
|
|
511
|
+
"My teams": "My teams",
|
|
512
|
+
"My profile": "My profile",
|
|
513
|
+
"Type new owner's username": "Type new owner's username",
|
|
514
|
+
"Type editor's username": "Type editor's username",
|
|
515
|
+
"Map": "Map",
|
|
516
|
+
"Manage collaborators": "Manage collaborators"
|
|
510
517
|
}
|
umap/static/umap/locale/id.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# one hash for main heading",
|
|
5
5
|
"## two hashes for second heading": "## two hashes for second heading",
|
|
6
6
|
"### three hashes for third heading": "### three hashes for third heading",
|
umap/static/umap/locale/id.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# one hash for main heading",
|
|
5
5
|
"## two hashes for second heading": "## two hashes for second heading",
|
|
6
6
|
"### three hashes for third heading": "### three hashes for third heading",
|
umap/static/umap/locale/is.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# eitt myllumerki fyrir aðalfyrirsögn",
|
|
5
5
|
"## two hashes for second heading": "## tvö myllumerki fyrir aðra fyrirsögn",
|
|
6
6
|
"### three hashes for third heading": "### þrjú myllumerki fyrir þriðju fyrirsögn",
|
umap/static/umap/locale/is.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# eitt myllumerki fyrir aðalfyrirsögn",
|
|
5
5
|
"## two hashes for second heading": "## tvö myllumerki fyrir aðra fyrirsögn",
|
|
6
6
|
"### three hashes for third heading": "### þrjú myllumerki fyrir þriðju fyrirsögn",
|
umap/static/umap/locale/it.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un cancelleto per l'intestazione principale",
|
|
5
5
|
"## two hashes for second heading": "## due cancelletti per le intestazioni di secondo livello",
|
|
6
6
|
"### three hashes for third heading": "### tre cancelletti per intestazione di terzo livello",
|
umap/static/umap/locale/it.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# un cancelleto per l'intestazione principale",
|
|
5
5
|
"## two hashes for second heading": "## due cancelletti per le intestazioni di secondo livello",
|
|
6
6
|
"### three hashes for third heading": "### tre cancelletti per intestazione di terzo livello",
|
umap/static/umap/locale/ja.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# ハッシュ1つで主な見出し",
|
|
5
5
|
"## two hashes for second heading": "## ハッシュ2つで第二見出し",
|
|
6
6
|
"### three hashes for third heading": "### ハッシュ3つで第三見出し",
|
umap/static/umap/locale/ja.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# ハッシュ1つで主な見出し",
|
|
5
5
|
"## two hashes for second heading": "## ハッシュ2つで第二見出し",
|
|
6
6
|
"### three hashes for third heading": "### ハッシュ3つで第三見出し",
|
umap/static/umap/locale/ko.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# 주요 단락",
|
|
5
5
|
"## two hashes for second heading": "## 2차 단락",
|
|
6
6
|
"### three hashes for third heading": "### 3차 단락",
|
umap/static/umap/locale/ko.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# 주요 단락",
|
|
5
5
|
"## two hashes for second heading": "## 2차 단락",
|
|
6
6
|
"### three hashes for third heading": "### 3차 단락",
|
umap/static/umap/locale/lt.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# viena grotelė pagrindinei antraštei",
|
|
5
5
|
"## two hashes for second heading": "## dvi grotelės antraštei",
|
|
6
6
|
"### three hashes for third heading": "### trys grotelės trečio lygio pastraipai",
|
umap/static/umap/locale/lt.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# viena grotelė pagrindinei antraštei",
|
|
5
5
|
"## two hashes for second heading": "## dvi grotelės antraštei",
|
|
6
6
|
"### three hashes for third heading": "### trys grotelės trečio lygio pastraipai",
|
umap/static/umap/locale/ms.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(kawasan: {measure})",
|
|
3
|
+
"(length: {measure})": "(panjang: {measure})",
|
|
4
4
|
"# one hash for main heading": "# satu tanda pagar untuk tajuk utama",
|
|
5
5
|
"## two hashes for second heading": "## dua tanda pagar untuk tajuk kedua",
|
|
6
6
|
"### three hashes for third heading": "### tiga tanda pagar untuk tajuk ketiga",
|
umap/static/umap/locale/ms.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(kawasan: {measure})",
|
|
3
|
+
"(length: {measure})": "(panjang: {measure})",
|
|
4
4
|
"# one hash for main heading": "# satu tanda pagar untuk tajuk utama",
|
|
5
5
|
"## two hashes for second heading": "## dua tanda pagar untuk tajuk kedua",
|
|
6
6
|
"### three hashes for third heading": "### tiga tanda pagar untuk tajuk ketiga",
|
umap/static/umap/locale/nl.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(oppervlakte: {measure})",
|
|
3
|
+
"(length: {measure})": "(lengte: {measure})",
|
|
4
4
|
"# one hash for main heading": "# een hekje voor koptekst 1",
|
|
5
5
|
"## two hashes for second heading": "## twee hekjes voor koptekst 2",
|
|
6
6
|
"### three hashes for third heading": "### drie hekjes voor koptekst 3",
|
umap/static/umap/locale/nl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(oppervlakte: {measure})",
|
|
3
|
+
"(length: {measure})": "(lengte: {measure})",
|
|
4
4
|
"# one hash for main heading": "# een hekje voor koptekst 1",
|
|
5
5
|
"## two hashes for second heading": "## twee hekjes voor koptekst 2",
|
|
6
6
|
"### three hashes for third heading": "### drie hekjes voor koptekst 3",
|
umap/static/umap/locale/no.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# en emneknagg for hovedtittel",
|
|
5
5
|
"## two hashes for second heading": "## to emneknagger for andre tittel",
|
|
6
6
|
"### three hashes for third heading": "### tre emneknagger for tredje tittel",
|
umap/static/umap/locale/no.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# en emneknagg for hovedtittel",
|
|
5
5
|
"## two hashes for second heading": "## to emneknagger for andre tittel",
|
|
6
6
|
"### three hashes for third heading": "### tre emneknagger for tredje tittel",
|
umap/static/umap/locale/pl.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(obszar: {measure})",
|
|
3
|
+
"(length: {measure})": "(długość: {measure})",
|
|
4
4
|
"# one hash for main heading": "# jeden krzyżyk – nagłówek pierwszego poziomu",
|
|
5
5
|
"## two hashes for second heading": "## dwa krzyżyki – nagłówek drugiego poziomu",
|
|
6
6
|
"### three hashes for third heading": "### trzy krzyżyki – nagłówek trzeciego poziomu",
|
umap/static/umap/locale/pl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(obszar: {measure})",
|
|
3
|
+
"(length: {measure})": "(długość: {measure})",
|
|
4
4
|
"# one hash for main heading": "# jeden krzyżyk – nagłówek pierwszego poziomu",
|
|
5
5
|
"## two hashes for second heading": "## dwa krzyżyki – nagłówek drugiego poziomu",
|
|
6
6
|
"### three hashes for third heading": "### trzy krzyżyki – nagłówek trzeciego poziomu",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"(area: {measure})": "(area: {measure})",
|
|
3
|
+
"(length: {measure})": "(length: {measure})",
|
|
4
4
|
"# one hash for main heading": "# one hash for main heading",
|
|
5
5
|
"## two hashes for second heading": "## two hashes for second heading",
|
|
6
6
|
"### three hashes for third heading": "### three hashes for third heading",
|