umap-project 2.3.1__py3-none-any.whl → 2.4.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/locale/en/LC_MESSAGES/django.po +81 -31
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +117 -66
- umap/management/commands/run_websocket_server.py +23 -0
- umap/models.py +6 -1
- umap/settings/base.py +11 -3
- umap/static/umap/base.css +64 -184
- umap/static/umap/content.css +3 -2
- umap/static/umap/css/dialog.css +18 -0
- umap/static/umap/css/icon.css +8 -0
- umap/static/umap/css/importers.css +51 -0
- umap/static/umap/css/panel.css +18 -57
- umap/static/umap/css/tooltip.css +59 -0
- umap/static/umap/css/window.css +35 -0
- umap/static/umap/img/16-white.svg +1 -3
- umap/static/umap/img/alert-icon-error.svg +8 -0
- umap/static/umap/img/alert-icon-info.svg +4 -0
- umap/static/umap/img/alert-icon-success.svg +3 -0
- umap/static/umap/img/icon-external-link.svg +3 -0
- umap/static/umap/img/importers/communesfr.svg +5 -0
- umap/static/umap/img/importers/datasets.svg +13 -0
- umap/static/umap/img/importers/geodatamine.svg +10 -0
- umap/static/umap/img/importers/overpass.svg +7 -0
- umap/static/umap/img/importers/random.svg +18 -0
- umap/static/umap/img/importers/random1.svg +4 -0
- umap/static/umap/img/importers/random2.svg +4 -0
- umap/static/umap/img/source/16-white.svg +2 -4
- umap/static/umap/js/components/alerts/alert.css +160 -0
- umap/static/umap/js/components/alerts/alert.js +169 -0
- umap/static/umap/js/components/base.js +54 -0
- umap/static/umap/js/modules/autocomplete.js +347 -0
- umap/static/umap/js/modules/browser.js +6 -6
- umap/static/umap/js/modules/caption.js +5 -4
- umap/static/umap/js/modules/global.js +36 -12
- umap/static/umap/js/modules/help.js +255 -0
- umap/static/umap/js/modules/importer.js +308 -0
- umap/static/umap/js/modules/importers/communesfr.js +44 -0
- umap/static/umap/js/modules/importers/datasets.js +42 -0
- umap/static/umap/js/modules/importers/geodatamine.js +95 -0
- umap/static/umap/js/modules/importers/overpass.js +84 -0
- umap/static/umap/js/modules/request.js +12 -14
- umap/static/umap/js/modules/rules.js +241 -0
- umap/static/umap/js/modules/schema.js +63 -14
- umap/static/umap/js/modules/sync/engine.js +93 -0
- umap/static/umap/js/modules/sync/updaters.js +109 -0
- umap/static/umap/js/modules/sync/websocket.js +25 -0
- umap/static/umap/js/modules/ui/dialog.js +52 -0
- umap/static/umap/js/modules/{panel.js → ui/panel.js} +25 -14
- umap/static/umap/js/modules/ui/tooltip.js +116 -0
- umap/static/umap/js/modules/utils.js +25 -18
- umap/static/umap/js/umap.controls.js +13 -14
- umap/static/umap/js/umap.core.js +1 -324
- umap/static/umap/js/umap.features.js +77 -29
- umap/static/umap/js/umap.forms.js +9 -13
- umap/static/umap/js/umap.js +254 -215
- umap/static/umap/js/umap.layer.js +152 -74
- umap/static/umap/js/umap.permissions.js +5 -9
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/js/umap.tableeditor.js +8 -8
- umap/static/umap/locale/am_ET.js +51 -16
- umap/static/umap/locale/am_ET.json +51 -16
- umap/static/umap/locale/ar.js +51 -16
- umap/static/umap/locale/ar.json +51 -16
- umap/static/umap/locale/ast.js +51 -16
- umap/static/umap/locale/ast.json +51 -16
- umap/static/umap/locale/bg.js +51 -16
- umap/static/umap/locale/bg.json +51 -16
- umap/static/umap/locale/br.js +55 -20
- umap/static/umap/locale/br.json +55 -20
- umap/static/umap/locale/ca.js +51 -16
- umap/static/umap/locale/ca.json +51 -16
- umap/static/umap/locale/cs_CZ.js +93 -58
- umap/static/umap/locale/cs_CZ.json +93 -58
- umap/static/umap/locale/da.js +51 -16
- umap/static/umap/locale/da.json +51 -16
- umap/static/umap/locale/de.js +56 -21
- umap/static/umap/locale/de.json +56 -21
- umap/static/umap/locale/el.js +51 -16
- umap/static/umap/locale/el.json +51 -16
- umap/static/umap/locale/en.js +52 -16
- umap/static/umap/locale/en.json +52 -16
- umap/static/umap/locale/en_US.json +51 -16
- umap/static/umap/locale/es.js +51 -16
- umap/static/umap/locale/es.json +51 -16
- umap/static/umap/locale/et.js +51 -16
- umap/static/umap/locale/et.json +51 -16
- umap/static/umap/locale/eu.js +51 -16
- umap/static/umap/locale/eu.json +51 -16
- umap/static/umap/locale/fa_IR.js +51 -16
- umap/static/umap/locale/fa_IR.json +51 -16
- umap/static/umap/locale/fi.js +51 -16
- umap/static/umap/locale/fi.json +51 -16
- umap/static/umap/locale/fr.js +61 -25
- umap/static/umap/locale/fr.json +61 -25
- umap/static/umap/locale/gl.js +51 -16
- umap/static/umap/locale/gl.json +51 -16
- umap/static/umap/locale/he.js +51 -16
- umap/static/umap/locale/he.json +51 -16
- umap/static/umap/locale/hr.js +51 -16
- umap/static/umap/locale/hr.json +51 -16
- umap/static/umap/locale/hu.js +51 -16
- umap/static/umap/locale/hu.json +51 -16
- umap/static/umap/locale/id.js +51 -16
- umap/static/umap/locale/id.json +51 -16
- umap/static/umap/locale/is.js +51 -16
- umap/static/umap/locale/is.json +51 -16
- umap/static/umap/locale/it.js +51 -16
- umap/static/umap/locale/it.json +51 -16
- umap/static/umap/locale/ja.js +51 -16
- umap/static/umap/locale/ja.json +51 -16
- umap/static/umap/locale/ko.js +51 -16
- umap/static/umap/locale/ko.json +51 -16
- umap/static/umap/locale/lt.js +51 -16
- umap/static/umap/locale/lt.json +51 -16
- umap/static/umap/locale/ms.js +51 -16
- umap/static/umap/locale/ms.json +51 -16
- umap/static/umap/locale/nl.js +51 -16
- umap/static/umap/locale/nl.json +51 -16
- umap/static/umap/locale/no.js +51 -16
- umap/static/umap/locale/no.json +51 -16
- umap/static/umap/locale/pl.js +93 -58
- umap/static/umap/locale/pl.json +93 -58
- umap/static/umap/locale/pl_PL.json +51 -16
- umap/static/umap/locale/pt.js +215 -180
- umap/static/umap/locale/pt.json +215 -180
- umap/static/umap/locale/pt_BR.js +51 -16
- umap/static/umap/locale/pt_BR.json +51 -16
- umap/static/umap/locale/pt_PT.js +51 -16
- umap/static/umap/locale/pt_PT.json +51 -16
- umap/static/umap/locale/ro.js +51 -16
- umap/static/umap/locale/ro.json +51 -16
- umap/static/umap/locale/ru.js +51 -16
- umap/static/umap/locale/ru.json +51 -16
- umap/static/umap/locale/si.js +51 -16
- umap/static/umap/locale/si.json +51 -16
- umap/static/umap/locale/sk_SK.js +51 -16
- umap/static/umap/locale/sk_SK.json +51 -16
- umap/static/umap/locale/sl.js +51 -16
- umap/static/umap/locale/sl.json +51 -16
- umap/static/umap/locale/sr.js +51 -16
- umap/static/umap/locale/sr.json +51 -16
- umap/static/umap/locale/sv.js +51 -16
- umap/static/umap/locale/sv.json +51 -16
- umap/static/umap/locale/th_TH.js +51 -16
- umap/static/umap/locale/th_TH.json +51 -16
- umap/static/umap/locale/tr.js +51 -16
- umap/static/umap/locale/tr.json +51 -16
- umap/static/umap/locale/uk_UA.js +51 -16
- umap/static/umap/locale/uk_UA.json +51 -16
- umap/static/umap/locale/vi.js +51 -16
- umap/static/umap/locale/vi.json +51 -16
- umap/static/umap/locale/vi_VN.json +51 -16
- umap/static/umap/locale/zh.js +51 -16
- umap/static/umap/locale/zh.json +51 -16
- umap/static/umap/locale/zh_CN.json +51 -16
- umap/static/umap/locale/zh_TW.Big5.json +51 -16
- umap/static/umap/locale/zh_TW.js +51 -16
- umap/static/umap/locale/zh_TW.json +51 -16
- umap/static/umap/map.css +40 -53
- umap/static/umap/unittests/sync.js +105 -0
- umap/static/umap/unittests/utils.js +78 -36
- umap/static/umap/vars.css +19 -1
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +2 -2
- umap/templates/umap/components/alerts/alert.html +89 -0
- umap/templates/umap/content.html +4 -3
- umap/templates/umap/css.html +4 -0
- umap/templates/umap/home.html +3 -0
- umap/templates/umap/js.html +0 -3
- umap/templates/umap/map_init.html +2 -8
- umap/templates/umap/messages.html +9 -11
- umap/templates/umap/search.html +3 -0
- umap/tests/base.py +2 -0
- umap/tests/integration/conftest.py +30 -0
- umap/tests/integration/test_anonymous_owned_map.py +8 -13
- umap/tests/integration/test_browser.py +77 -4
- umap/tests/integration/test_conditional_rules.py +201 -0
- umap/tests/integration/test_dashboard.py +1 -1
- umap/tests/integration/test_datalayer.py +2 -3
- umap/tests/integration/test_edit_datalayer.py +4 -4
- umap/tests/integration/test_edit_map.py +1 -1
- umap/tests/integration/test_facets_browser.py +3 -3
- umap/tests/integration/test_import.py +185 -49
- umap/tests/integration/test_map.py +31 -2
- umap/tests/integration/{test_collaborative_editing.py → test_optimistic_merge.py} +7 -7
- umap/tests/integration/test_owned_map.py +1 -1
- umap/tests/integration/test_picto.py +2 -2
- umap/tests/integration/test_statics.py +1 -1
- umap/tests/integration/test_view_marker.py +2 -2
- umap/tests/integration/test_websocket_sync.py +283 -0
- umap/tests/settings.py +5 -0
- umap/tests/test_datalayer_views.py +0 -1
- umap/tests/test_views.py +53 -0
- umap/urls.py +5 -0
- umap/views.py +40 -11
- umap/websocket_server.py +92 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/METADATA +10 -8
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/RECORD +201 -167
- umap/static/umap/js/umap.autocomplete.js +0 -341
- umap/static/umap/js/umap.importer.js +0 -187
- umap/static/umap/js/umap.ui.js +0 -190
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/WHEEL +0 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/entry_points.txt +0 -0
- {umap_project-2.3.1.dist-info → umap_project-2.4.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -48,16 +48,12 @@
|
|
|
48
48
|
"by": "بوسیله",
|
|
49
49
|
"Cache proxied request": "درخواست پراکسی حافظه پنهان",
|
|
50
50
|
"Cancel edits": "لغو ویرایش ها",
|
|
51
|
-
"Cancel": "انصراف",
|
|
52
51
|
"Caption": "درباره",
|
|
53
52
|
"Center map on your location": "نقشه مرکز بر روی موقعیت مکانی شما",
|
|
54
53
|
"Change map background": "تغییر پس زمینه نقشه",
|
|
55
54
|
"Change tilelayers": "کاشی های کاری را تغییر دهید",
|
|
56
55
|
"Change": "Change",
|
|
57
|
-
"Choose a preset": "از پیش تعیین شده را انتخاب کنید",
|
|
58
56
|
"Choose the data format": "قالب داده را انتخاب کنید",
|
|
59
|
-
"Choose the format of the data to import": "قالب داده را برای وارد کردن انتخاب کنید",
|
|
60
|
-
"Choose the layer to import in": "لایه ای را برای وارد کردن انتخاب کنید",
|
|
61
57
|
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
62
58
|
"Choropleth classes": "Choropleth classes",
|
|
63
59
|
"Choropleth color palette": "Choropleth color palette",
|
|
@@ -87,7 +83,6 @@
|
|
|
87
83
|
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
88
84
|
"Continue line": "ادامه خط",
|
|
89
85
|
"Coordinates": "مختصات",
|
|
90
|
-
"Copy link": "Copy link",
|
|
91
86
|
"copy": "copy",
|
|
92
87
|
"Credits": "اعتبار",
|
|
93
88
|
"Current map view": "Current map view",
|
|
@@ -152,7 +147,6 @@
|
|
|
152
147
|
"Edit the title of the map": "Edit the title of the map",
|
|
153
148
|
"Edit this feature": "این ویژگی را ویرایش کنید",
|
|
154
149
|
"Edit": "ویرایش",
|
|
155
|
-
"Email": "Email",
|
|
156
150
|
"Embed and link options": "Embed and link options",
|
|
157
151
|
"Embed the map": "نقشه را جاسازی کنید",
|
|
158
152
|
"Emoji & Character": "Emoji & Character",
|
|
@@ -200,7 +194,6 @@
|
|
|
200
194
|
"Image: {{http://image.url.com}}": "تصویر: {{http://image.url.com}}",
|
|
201
195
|
"Import data": "وارد كردن داده",
|
|
202
196
|
"Import in a new layer": "وارد کردن در یک لایه جدید",
|
|
203
|
-
"Import": "وارد كردن",
|
|
204
197
|
"Imports all umap data, including layers and settings.": "همه داده های umap ، از جمله لایه ها و تنظیمات را وارد می کند.",
|
|
205
198
|
"Include full screen link?": "پیوند تمام صفحه را شامل می شود؟",
|
|
206
199
|
"Inherit": "ارث بری",
|
|
@@ -311,7 +304,6 @@
|
|
|
311
304
|
"Rename this property on all the features": "نام این ویژگی را در همه ویژگی ها تغییر دهید",
|
|
312
305
|
"Replace layer content": "جایگزینی محتوای لایه",
|
|
313
306
|
"Restore this version": "این نسخه را بازیابی کنید",
|
|
314
|
-
"Save anyway": "به هر حال ذخیره کنید",
|
|
315
307
|
"Save current edits": "ویرایش های فعلی را ذخیره کنید",
|
|
316
308
|
"Save map": "Save map",
|
|
317
309
|
"Save this center and zoom": "این مرکز را ذخیره کرده و بزرگنمایی کنید",
|
|
@@ -320,12 +312,9 @@
|
|
|
320
312
|
"Saved center and zoom": "Saved center and zoom",
|
|
321
313
|
"Search location": "مکان را جستجو کنید",
|
|
322
314
|
"Search": "Search",
|
|
323
|
-
"Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
|
|
324
315
|
"Secret edit link:": "Secret edit link:",
|
|
325
|
-
"See layers": "See layers",
|
|
326
316
|
"See full screen": "تمام صفحه را مشاهده کنید",
|
|
327
317
|
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
328
|
-
"Send me the link": "Send me the link",
|
|
329
318
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "آن را روی غلط/false تنظیم کنید تا این لایه از نمایش اسلاید، مرورگر داده، ناوبری بازشو پنهان شود…",
|
|
330
319
|
"settings": "settings",
|
|
331
320
|
"Shape properties": "ویژگی های شکل",
|
|
@@ -398,9 +387,7 @@
|
|
|
398
387
|
"Will be displayed in the bottom right corner of the map": "در گوشه سمت راست پایین نقشه نمایش داده می شود",
|
|
399
388
|
"Will be permanently visible in the bottom left corner of the map": "برای همیشه در گوشه سمت چپ پایین نقشه قابل مشاهده خواهد بود",
|
|
400
389
|
"Will be visible in the caption of the map": "در زیرنویس نقشه قابل مشاهده خواهد بود",
|
|
401
|
-
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "وای! به نظر می رسد شخص دیگری داده ها را ویرایش کرده است. در هر صورت می توانید ذخیره کنید، اما با این کار تغییرات ایجاد شده توسط دیگران پاک می شود.",
|
|
402
390
|
"yes": "بله",
|
|
403
|
-
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
|
|
404
391
|
"Zoom in": "بزرگنمایی",
|
|
405
392
|
"Zoom level for automatic zooms": "سطح زوم برای بزرگنمایی خودکار",
|
|
406
393
|
"Zoom out": "کوچک نمایی",
|
|
@@ -444,7 +431,55 @@
|
|
|
444
431
|
"Filter data": "Filter data",
|
|
445
432
|
"Search map features…": "Search map features…",
|
|
446
433
|
"Reset all": "Reset all",
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
434
|
+
"Open browser": "Open browser",
|
|
435
|
+
"Open caption": "Open caption",
|
|
436
|
+
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
437
|
+
"Real-time collaboration": "Real-time collaboration",
|
|
438
|
+
"Cannot parse data": "Cannot parse data",
|
|
439
|
+
"Start typing...": "Start typing...",
|
|
440
|
+
"No result": "No result",
|
|
441
|
+
"Data browser": "Data browser",
|
|
442
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
|
|
443
|
+
"Overpass supported expressions": "Overpass supported expressions",
|
|
444
|
+
"key (eg. building)": "key (eg. building)",
|
|
445
|
+
"!key (eg. !name)": "!key (eg. !name)",
|
|
446
|
+
"key=value (eg. building=yes)": "key=value (eg. building=yes)",
|
|
447
|
+
"key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
|
|
448
|
+
"key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
|
|
449
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
|
|
450
|
+
"More info about Overpass syntax": "More info about Overpass syntax",
|
|
451
|
+
"For more complex needs, see": "For more complex needs, see",
|
|
452
|
+
"Choose data": "Choose data",
|
|
453
|
+
"Import helpers:": "Import helpers:",
|
|
454
|
+
"Choose the format": "Choose the format",
|
|
455
|
+
"Choose the layer": "Choose the layer",
|
|
456
|
+
"Layer name": "Layer name",
|
|
457
|
+
"Choose import mode": "Choose import mode",
|
|
458
|
+
"Copy into the layer": "Copy into the layer",
|
|
459
|
+
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
460
|
+
"Condition": "Condition",
|
|
461
|
+
"key=value or key!=value": "key=value or key!=value",
|
|
462
|
+
"Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
|
|
463
|
+
"empty rule": "empty rule",
|
|
464
|
+
"Conditional style rules": "Conditional style rules",
|
|
465
|
+
"Add rule": "Add rule",
|
|
466
|
+
"Browser: data": "Browser: data",
|
|
467
|
+
"Browser: layers": "Browser: layers",
|
|
468
|
+
"Browser: filters": "Browser: filters",
|
|
469
|
+
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
470
|
+
"✅ Copied!": "✅ Copied!",
|
|
471
|
+
"Choose a dataset": "Choose a dataset",
|
|
472
|
+
"Choose this dataset": "Choose this dataset",
|
|
473
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
474
|
+
"Choose a theme": "Choose a theme",
|
|
475
|
+
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
476
|
+
"Choose this data": "Choose this data",
|
|
477
|
+
"Search admin boundary": "Search admin boundary",
|
|
478
|
+
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
479
|
+
"Expression": "Expression",
|
|
480
|
+
"Geometry mode": "Geometry mode",
|
|
481
|
+
"Only geometry centers": "Only geometry centers",
|
|
482
|
+
"Search area": "Search area",
|
|
483
|
+
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
+
"Please define an expression for the query first": "Please define an expression for the query first"
|
|
450
485
|
}
|
umap/static/umap/locale/fi.js
CHANGED
|
@@ -48,16 +48,12 @@ const locale = {
|
|
|
48
48
|
"by": "taholta",
|
|
49
49
|
"Cache proxied request": "Cache proxied request",
|
|
50
50
|
"Cancel edits": "Peruuta muokkaukset",
|
|
51
|
-
"Cancel": "Peruuta",
|
|
52
51
|
"Caption": "Kuvateksti",
|
|
53
52
|
"Center map on your location": "Keskitä kartta sijaintiisi",
|
|
54
53
|
"Change map background": "Vaihda taustakarttaa",
|
|
55
54
|
"Change tilelayers": "Muuta karttavaihtoehtoja",
|
|
56
55
|
"Change": "Change",
|
|
57
|
-
"Choose a preset": "Valitse",
|
|
58
56
|
"Choose the data format": "Valitse päivämäärän muoto",
|
|
59
|
-
"Choose the format of the data to import": "Valitse tuotavien tietojen formaatti",
|
|
60
|
-
"Choose the layer to import in": "Valitse kerros johon tieto tuodaan",
|
|
61
57
|
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
62
58
|
"Choropleth classes": "Choropleth classes",
|
|
63
59
|
"Choropleth color palette": "Choropleth color palette",
|
|
@@ -87,7 +83,6 @@ const locale = {
|
|
|
87
83
|
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
88
84
|
"Continue line": "Jatka viivaa",
|
|
89
85
|
"Coordinates": "Koordinaatit",
|
|
90
|
-
"Copy link": "Copy link",
|
|
91
86
|
"copy": "copy",
|
|
92
87
|
"Credits": "Tunnustukset",
|
|
93
88
|
"Current map view": "Current map view",
|
|
@@ -152,7 +147,6 @@ const locale = {
|
|
|
152
147
|
"Edit the title of the map": "Edit the title of the map",
|
|
153
148
|
"Edit this feature": "Muokkaa tätä piirrettä",
|
|
154
149
|
"Edit": "Muokkaa",
|
|
155
|
-
"Email": "Email",
|
|
156
150
|
"Embed and link options": "Embed and link options",
|
|
157
151
|
"Embed the map": "Liitä kartta",
|
|
158
152
|
"Emoji & Character": "Emoji & Character",
|
|
@@ -200,7 +194,6 @@ const locale = {
|
|
|
200
194
|
"Image: {{http://image.url.com}}": "Kuva: {{http://kuva.url.com}}",
|
|
201
195
|
"Import data": "Tuo tietoja",
|
|
202
196
|
"Import in a new layer": "Tuo uuteen kerrokseen",
|
|
203
|
-
"Import": "Tuo",
|
|
204
197
|
"Imports all umap data, including layers and settings.": "Tuo kaikki karttatiedot, mukaan lukien datatasot ja asetukset.",
|
|
205
198
|
"Include full screen link?": "Sisällytä koko näyttö -linkki?",
|
|
206
199
|
"Inherit": "Peri",
|
|
@@ -311,7 +304,6 @@ const locale = {
|
|
|
311
304
|
"Rename this property on all the features": "Uudelleen nimeä tämä ominaisuus kaikissa piirteissä",
|
|
312
305
|
"Replace layer content": "Korvaa kerroksen sisältö",
|
|
313
306
|
"Restore this version": "Palauta tämä versio",
|
|
314
|
-
"Save anyway": "Tallenna joka tapauksessa",
|
|
315
307
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
316
308
|
"Save map": "Save map",
|
|
317
309
|
"Save this center and zoom": "Tallenna tämä kartan keskitys ja zoomaustaso",
|
|
@@ -320,12 +312,9 @@ const locale = {
|
|
|
320
312
|
"Saved center and zoom": "Saved center and zoom",
|
|
321
313
|
"Search location": "Search location",
|
|
322
314
|
"Search": "Search",
|
|
323
|
-
"Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
|
|
324
315
|
"Secret edit link:": "Secret edit link:",
|
|
325
|
-
"See layers": "See layers",
|
|
326
316
|
"See full screen": "Katso koko näytöllä",
|
|
327
317
|
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
328
|
-
"Send me the link": "Send me the link",
|
|
329
318
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
330
319
|
"settings": "settings",
|
|
331
320
|
"Shape properties": "Piirteen ominaisuudet",
|
|
@@ -398,9 +387,7 @@ const locale = {
|
|
|
398
387
|
"Will be displayed in the bottom right corner of the map": "Näytetään kartan oikeassa alakulmassa",
|
|
399
388
|
"Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
|
|
400
389
|
"Will be visible in the caption of the map": "Näytetään kartan kuvatekstinä",
|
|
401
|
-
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Hupsankeikkaa! Joku muu on näemmä muokannut tietoja. Voit tallentaa joka tapauksessa, mutta tallentamisesi poistaa muiden muokkaukset.",
|
|
402
390
|
"yes": "kyllä",
|
|
403
|
-
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
|
|
404
391
|
"Zoom in": "Lähennä",
|
|
405
392
|
"Zoom level for automatic zooms": "Zoomaustaso automaattisessa zoomauksessa",
|
|
406
393
|
"Zoom out": "Loitonna",
|
|
@@ -444,9 +431,57 @@ const locale = {
|
|
|
444
431
|
"Filter data": "Filter data",
|
|
445
432
|
"Search map features…": "Search map features…",
|
|
446
433
|
"Reset all": "Reset all",
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
434
|
+
"Open browser": "Open browser",
|
|
435
|
+
"Open caption": "Open caption",
|
|
436
|
+
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
437
|
+
"Real-time collaboration": "Real-time collaboration",
|
|
438
|
+
"Cannot parse data": "Cannot parse data",
|
|
439
|
+
"Start typing...": "Start typing...",
|
|
440
|
+
"No result": "No result",
|
|
441
|
+
"Data browser": "Data browser",
|
|
442
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
|
|
443
|
+
"Overpass supported expressions": "Overpass supported expressions",
|
|
444
|
+
"key (eg. building)": "key (eg. building)",
|
|
445
|
+
"!key (eg. !name)": "!key (eg. !name)",
|
|
446
|
+
"key=value (eg. building=yes)": "key=value (eg. building=yes)",
|
|
447
|
+
"key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
|
|
448
|
+
"key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
|
|
449
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
|
|
450
|
+
"More info about Overpass syntax": "More info about Overpass syntax",
|
|
451
|
+
"For more complex needs, see": "For more complex needs, see",
|
|
452
|
+
"Choose data": "Choose data",
|
|
453
|
+
"Import helpers:": "Import helpers:",
|
|
454
|
+
"Choose the format": "Choose the format",
|
|
455
|
+
"Choose the layer": "Choose the layer",
|
|
456
|
+
"Layer name": "Layer name",
|
|
457
|
+
"Choose import mode": "Choose import mode",
|
|
458
|
+
"Copy into the layer": "Copy into the layer",
|
|
459
|
+
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
460
|
+
"Condition": "Condition",
|
|
461
|
+
"key=value or key!=value": "key=value or key!=value",
|
|
462
|
+
"Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
|
|
463
|
+
"empty rule": "empty rule",
|
|
464
|
+
"Conditional style rules": "Conditional style rules",
|
|
465
|
+
"Add rule": "Add rule",
|
|
466
|
+
"Browser: data": "Browser: data",
|
|
467
|
+
"Browser: layers": "Browser: layers",
|
|
468
|
+
"Browser: filters": "Browser: filters",
|
|
469
|
+
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
470
|
+
"✅ Copied!": "✅ Copied!",
|
|
471
|
+
"Choose a dataset": "Choose a dataset",
|
|
472
|
+
"Choose this dataset": "Choose this dataset",
|
|
473
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
474
|
+
"Choose a theme": "Choose a theme",
|
|
475
|
+
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
476
|
+
"Choose this data": "Choose this data",
|
|
477
|
+
"Search admin boundary": "Search admin boundary",
|
|
478
|
+
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
479
|
+
"Expression": "Expression",
|
|
480
|
+
"Geometry mode": "Geometry mode",
|
|
481
|
+
"Only geometry centers": "Only geometry centers",
|
|
482
|
+
"Search area": "Search area",
|
|
483
|
+
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
+
"Please define an expression for the query first": "Please define an expression for the query first"
|
|
450
485
|
}
|
|
451
486
|
L.registerLocale("fi", locale)
|
|
452
487
|
L.setLocale("fi")
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -48,16 +48,12 @@
|
|
|
48
48
|
"by": "taholta",
|
|
49
49
|
"Cache proxied request": "Cache proxied request",
|
|
50
50
|
"Cancel edits": "Peruuta muokkaukset",
|
|
51
|
-
"Cancel": "Peruuta",
|
|
52
51
|
"Caption": "Kuvateksti",
|
|
53
52
|
"Center map on your location": "Keskitä kartta sijaintiisi",
|
|
54
53
|
"Change map background": "Vaihda taustakarttaa",
|
|
55
54
|
"Change tilelayers": "Muuta karttavaihtoehtoja",
|
|
56
55
|
"Change": "Change",
|
|
57
|
-
"Choose a preset": "Valitse",
|
|
58
56
|
"Choose the data format": "Valitse päivämäärän muoto",
|
|
59
|
-
"Choose the format of the data to import": "Valitse tuotavien tietojen formaatti",
|
|
60
|
-
"Choose the layer to import in": "Valitse kerros johon tieto tuodaan",
|
|
61
57
|
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
62
58
|
"Choropleth classes": "Choropleth classes",
|
|
63
59
|
"Choropleth color palette": "Choropleth color palette",
|
|
@@ -87,7 +83,6 @@
|
|
|
87
83
|
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
88
84
|
"Continue line": "Jatka viivaa",
|
|
89
85
|
"Coordinates": "Koordinaatit",
|
|
90
|
-
"Copy link": "Copy link",
|
|
91
86
|
"copy": "copy",
|
|
92
87
|
"Credits": "Tunnustukset",
|
|
93
88
|
"Current map view": "Current map view",
|
|
@@ -152,7 +147,6 @@
|
|
|
152
147
|
"Edit the title of the map": "Edit the title of the map",
|
|
153
148
|
"Edit this feature": "Muokkaa tätä piirrettä",
|
|
154
149
|
"Edit": "Muokkaa",
|
|
155
|
-
"Email": "Email",
|
|
156
150
|
"Embed and link options": "Embed and link options",
|
|
157
151
|
"Embed the map": "Liitä kartta",
|
|
158
152
|
"Emoji & Character": "Emoji & Character",
|
|
@@ -200,7 +194,6 @@
|
|
|
200
194
|
"Image: {{http://image.url.com}}": "Kuva: {{http://kuva.url.com}}",
|
|
201
195
|
"Import data": "Tuo tietoja",
|
|
202
196
|
"Import in a new layer": "Tuo uuteen kerrokseen",
|
|
203
|
-
"Import": "Tuo",
|
|
204
197
|
"Imports all umap data, including layers and settings.": "Tuo kaikki karttatiedot, mukaan lukien datatasot ja asetukset.",
|
|
205
198
|
"Include full screen link?": "Sisällytä koko näyttö -linkki?",
|
|
206
199
|
"Inherit": "Peri",
|
|
@@ -311,7 +304,6 @@
|
|
|
311
304
|
"Rename this property on all the features": "Uudelleen nimeä tämä ominaisuus kaikissa piirteissä",
|
|
312
305
|
"Replace layer content": "Korvaa kerroksen sisältö",
|
|
313
306
|
"Restore this version": "Palauta tämä versio",
|
|
314
|
-
"Save anyway": "Tallenna joka tapauksessa",
|
|
315
307
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
316
308
|
"Save map": "Save map",
|
|
317
309
|
"Save this center and zoom": "Tallenna tämä kartan keskitys ja zoomaustaso",
|
|
@@ -320,12 +312,9 @@
|
|
|
320
312
|
"Saved center and zoom": "Saved center and zoom",
|
|
321
313
|
"Search location": "Search location",
|
|
322
314
|
"Search": "Search",
|
|
323
|
-
"Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
|
|
324
315
|
"Secret edit link:": "Secret edit link:",
|
|
325
|
-
"See layers": "See layers",
|
|
326
316
|
"See full screen": "Katso koko näytöllä",
|
|
327
317
|
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
328
|
-
"Send me the link": "Send me the link",
|
|
329
318
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…",
|
|
330
319
|
"settings": "settings",
|
|
331
320
|
"Shape properties": "Piirteen ominaisuudet",
|
|
@@ -398,9 +387,7 @@
|
|
|
398
387
|
"Will be displayed in the bottom right corner of the map": "Näytetään kartan oikeassa alakulmassa",
|
|
399
388
|
"Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
|
|
400
389
|
"Will be visible in the caption of the map": "Näytetään kartan kuvatekstinä",
|
|
401
|
-
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Hupsankeikkaa! Joku muu on näemmä muokannut tietoja. Voit tallentaa joka tapauksessa, mutta tallentamisesi poistaa muiden muokkaukset.",
|
|
402
390
|
"yes": "kyllä",
|
|
403
|
-
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
|
|
404
391
|
"Zoom in": "Lähennä",
|
|
405
392
|
"Zoom level for automatic zooms": "Zoomaustaso automaattisessa zoomauksessa",
|
|
406
393
|
"Zoom out": "Loitonna",
|
|
@@ -444,7 +431,55 @@
|
|
|
444
431
|
"Filter data": "Filter data",
|
|
445
432
|
"Search map features…": "Search map features…",
|
|
446
433
|
"Reset all": "Reset all",
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
434
|
+
"Open browser": "Open browser",
|
|
435
|
+
"Open caption": "Open caption",
|
|
436
|
+
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
437
|
+
"Real-time collaboration": "Real-time collaboration",
|
|
438
|
+
"Cannot parse data": "Cannot parse data",
|
|
439
|
+
"Start typing...": "Start typing...",
|
|
440
|
+
"No result": "No result",
|
|
441
|
+
"Data browser": "Data browser",
|
|
442
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.",
|
|
443
|
+
"Overpass supported expressions": "Overpass supported expressions",
|
|
444
|
+
"key (eg. building)": "key (eg. building)",
|
|
445
|
+
"!key (eg. !name)": "!key (eg. !name)",
|
|
446
|
+
"key=value (eg. building=yes)": "key=value (eg. building=yes)",
|
|
447
|
+
"key!=value (eg. building!=yes)": "key!=value (eg. building!=yes)",
|
|
448
|
+
"key~value (eg. name~Grisy)": "key~value (eg. name~Grisy)",
|
|
449
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
|
|
450
|
+
"More info about Overpass syntax": "More info about Overpass syntax",
|
|
451
|
+
"For more complex needs, see": "For more complex needs, see",
|
|
452
|
+
"Choose data": "Choose data",
|
|
453
|
+
"Import helpers:": "Import helpers:",
|
|
454
|
+
"Choose the format": "Choose the format",
|
|
455
|
+
"Choose the layer": "Choose the layer",
|
|
456
|
+
"Layer name": "Layer name",
|
|
457
|
+
"Choose import mode": "Choose import mode",
|
|
458
|
+
"Copy into the layer": "Copy into the layer",
|
|
459
|
+
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
460
|
+
"Condition": "Condition",
|
|
461
|
+
"key=value or key!=value": "key=value or key!=value",
|
|
462
|
+
"Are you sure you want to delete this rule?": "Are you sure you want to delete this rule?",
|
|
463
|
+
"empty rule": "empty rule",
|
|
464
|
+
"Conditional style rules": "Conditional style rules",
|
|
465
|
+
"Add rule": "Add rule",
|
|
466
|
+
"Browser: data": "Browser: data",
|
|
467
|
+
"Browser: layers": "Browser: layers",
|
|
468
|
+
"Browser: filters": "Browser: filters",
|
|
469
|
+
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
470
|
+
"✅ Copied!": "✅ Copied!",
|
|
471
|
+
"Choose a dataset": "Choose a dataset",
|
|
472
|
+
"Choose this dataset": "Choose this dataset",
|
|
473
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
474
|
+
"Choose a theme": "Choose a theme",
|
|
475
|
+
"Symplify all geometries to points": "Symplify all geometries to points",
|
|
476
|
+
"Choose this data": "Choose this data",
|
|
477
|
+
"Search admin boundary": "Search admin boundary",
|
|
478
|
+
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
479
|
+
"Expression": "Expression",
|
|
480
|
+
"Geometry mode": "Geometry mode",
|
|
481
|
+
"Only geometry centers": "Only geometry centers",
|
|
482
|
+
"Search area": "Search area",
|
|
483
|
+
"Type area name, or let empty to load data in current map view": "Type area name, or let empty to load data in current map view",
|
|
484
|
+
"Please define an expression for the query first": "Please define an expression for the query first"
|
|
450
485
|
}
|
umap/static/umap/locale/fr.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const locale = {
|
|
2
|
-
" (area: {measure})": "(surface: {measure})",
|
|
3
|
-
" (length: {measure})": "(longueur: {measure})",
|
|
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",
|
|
@@ -48,16 +48,12 @@ const locale = {
|
|
|
48
48
|
"by": "par",
|
|
49
49
|
"Cache proxied request": "Cacher la requête avec proxy",
|
|
50
50
|
"Cancel edits": "Annuler les modifications",
|
|
51
|
-
"Cancel": "Annuler",
|
|
52
51
|
"Caption": "Légende",
|
|
53
52
|
"Center map on your location": "Centrer la carte sur votre position",
|
|
54
53
|
"Change map background": "Changer le fond de carte",
|
|
55
54
|
"Change tilelayers": "Changer le fond de carte",
|
|
56
55
|
"Change": "Modifier",
|
|
57
|
-
"Choose a preset": "Choisir dans les présélections",
|
|
58
56
|
"Choose the data format": "Choisir le format des données",
|
|
59
|
-
"Choose the format of the data to import": "Choisir le format des données pour l'import",
|
|
60
|
-
"Choose the layer to import in": "Choisir le calque de données pour l'import",
|
|
61
57
|
"Choropleth breakpoints": "Seuils choropleth",
|
|
62
58
|
"Choropleth classes": "Classes choropleth",
|
|
63
59
|
"Choropleth color palette": "Palettes de couleurs choropleth",
|
|
@@ -87,7 +83,6 @@ const locale = {
|
|
|
87
83
|
"Congratulations, your map has been created!": "Félicitations, votre carte a bien été créée !",
|
|
88
84
|
"Continue line": "Continuer la ligne",
|
|
89
85
|
"Coordinates": "Coordonnées",
|
|
90
|
-
"Copy link": "Copier le lien",
|
|
91
86
|
"copy": "copier",
|
|
92
87
|
"Credits": "Crédits",
|
|
93
88
|
"Current map view": "Lister seulement les éléments visibles",
|
|
@@ -152,7 +147,6 @@ const locale = {
|
|
|
152
147
|
"Edit the title of the map": "Modifier le titre de la carte",
|
|
153
148
|
"Edit this feature": "Éditer cet élément",
|
|
154
149
|
"Edit": "Éditer",
|
|
155
|
-
"Email": "Courriel",
|
|
156
150
|
"Embed and link options": "Intégration et partage",
|
|
157
151
|
"Embed the map": "Intégrer la carte dans une iframe",
|
|
158
152
|
"Emoji & Character": "Emoji & texte",
|
|
@@ -191,8 +185,8 @@ const locale = {
|
|
|
191
185
|
"icon opacity": "Opacité de l'icône",
|
|
192
186
|
"Icon shape": "Forme de l'icône",
|
|
193
187
|
"Icon symbol": "Image de l'icône",
|
|
194
|
-
"If false, the polygon or line will act as a part of the underlying map.": "Désactiver pour que le polygone ou la ligne ne réagisse plus aux
|
|
195
|
-
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe avec hauteur (en pixels): {{{http://iframe.url.com|hauteur}}}",
|
|
188
|
+
"If false, the polygon or line will act as a part of the underlying map.": "Désactiver pour que le polygone ou la ligne ne réagisse plus aux interactions.",
|
|
189
|
+
"Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe avec hauteur (en pixels) : {{{http://iframe.url.com|hauteur}}}",
|
|
196
190
|
"Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe avec hauteur et largeur (en px) : {{{http://iframe.url.com|height*width}}}",
|
|
197
191
|
"iframe": "iframe",
|
|
198
192
|
"Iframe: {{{http://iframe.url.com}}}": "Iframe : {{{http://iframe.url.com}}}",
|
|
@@ -200,7 +194,6 @@ const locale = {
|
|
|
200
194
|
"Image: {{http://image.url.com}}": "Image : {{http://image.url.com}}",
|
|
201
195
|
"Import data": "Importer des données",
|
|
202
196
|
"Import in a new layer": "Importer dans un nouveau calque",
|
|
203
|
-
"Import": "Importer",
|
|
204
197
|
"Imports all umap data, including layers and settings.": "Importer toutes les données de la carte, y compris les calques et les propriétés",
|
|
205
198
|
"Include full screen link?": "Inclure le lien \"plein écran\" ?",
|
|
206
199
|
"Inherit": "Hériter",
|
|
@@ -209,7 +202,7 @@ const locale = {
|
|
|
209
202
|
"Invalid latitude or longitude": "Latitude ou longitude invalide",
|
|
210
203
|
"Invalid umap data in {filename}": "Les données du fichier {filename} ne sont pas valides comme format uMap",
|
|
211
204
|
"Invalid umap data": "Données uMap invalides",
|
|
212
|
-
"Invalide property name: {name}": "Nom de propriété invalide: {name}",
|
|
205
|
+
"Invalide property name: {name}": "Nom de propriété invalide : {name}",
|
|
213
206
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
214
207
|
"K-means": "K-moyennes",
|
|
215
208
|
"Keep current visible layers": "Garder les calques visibles actuellement",
|
|
@@ -311,7 +304,6 @@ const locale = {
|
|
|
311
304
|
"Rename this property on all the features": "Renommer la propriété",
|
|
312
305
|
"Replace layer content": "Remplacer le contenu du calque",
|
|
313
306
|
"Restore this version": "Restaurer cette version",
|
|
314
|
-
"Save anyway": "Continuer",
|
|
315
307
|
"Save current edits": "Enregistrer les changements courants",
|
|
316
308
|
"Save map": "Enregistrer la carte",
|
|
317
309
|
"Save this center and zoom": "Enregistrer le zoom et le centre actuels",
|
|
@@ -320,12 +312,9 @@ const locale = {
|
|
|
320
312
|
"Saved center and zoom": "Centre et zoom enregistrés",
|
|
321
313
|
"Search location": "Chercher un lieu",
|
|
322
314
|
"Search": "Chercher",
|
|
323
|
-
"Secret edit link copied to clipboard!": "Lien d'édition secret copié dans le presse-papier!",
|
|
324
315
|
"Secret edit link:": "Lien d'édition secret :",
|
|
325
|
-
"See layers": "Voir les calques",
|
|
326
316
|
"See full screen": "Voir en plein écran",
|
|
327
317
|
"See on OpenStreetMap": "Voir sur OpenStreetMap",
|
|
328
|
-
"Send me the link": "Envoyer le lien",
|
|
329
318
|
"Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Désactiver pour masquer ce calque du diaporama, du navigateur de données…",
|
|
330
319
|
"settings": "paramètres",
|
|
331
320
|
"Shape properties": "Propriétés de la forme",
|
|
@@ -338,7 +327,7 @@ const locale = {
|
|
|
338
327
|
"Side panel": "Panneau latéral",
|
|
339
328
|
"Simple link: [[http://example.com]]": "Lien simple : [[https://exemple.fr]]",
|
|
340
329
|
"Simplify": "Simplifier",
|
|
341
|
-
"Skipping unknown geometry.type: {type}": "Type de géométrie inconnu
|
|
330
|
+
"Skipping unknown geometry.type: {type}": "Type de géométrie inconnu ignoré : {type}",
|
|
342
331
|
"Slideshow": "Diaporama",
|
|
343
332
|
"Sort key": "Clé de tri",
|
|
344
333
|
"Split line": "Scinder la ligne",
|
|
@@ -386,7 +375,7 @@ const locale = {
|
|
|
386
375
|
"Versions": "Versions",
|
|
387
376
|
"View Fullscreen": "Voir en plein écran",
|
|
388
377
|
"View": "Aperçu",
|
|
389
|
-
"Visibility: {status}": "
|
|
378
|
+
"Visibility: {status}": "Visibilité : {status}",
|
|
390
379
|
"weight": "épaisseur",
|
|
391
380
|
"Where do we go from here?": "C'est par où pour aller plus loin?",
|
|
392
381
|
"Whether to display or not polygons paths.": "Afficher les contours des polygones.",
|
|
@@ -398,9 +387,7 @@ const locale = {
|
|
|
398
387
|
"Will be displayed in the bottom right corner of the map": "S'affiche dans le coin en bas à droite de la carte",
|
|
399
388
|
"Will be permanently visible in the bottom left corner of the map": "Afficher en permanence au coin en bas à gauche de la carte",
|
|
400
389
|
"Will be visible in the caption of the map": "Sera visible dans la légende de la carte",
|
|
401
|
-
"Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Aïe ! Quelqu'un d'autre semble avoir modifié la carte. Vous pouvez continuer l'enregistrement, mais ses données seront perdues.",
|
|
402
390
|
"yes": "oui",
|
|
403
|
-
"Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Votre carte a été créée! Comme vous n'êtes pas identifié, voici le lien secret pour éditer la carte à l'avenir, conservez-le précieusement:",
|
|
404
391
|
"Zoom in": "Zoomer",
|
|
405
392
|
"Zoom level for automatic zooms": "Niveau de zoom automatique",
|
|
406
393
|
"Zoom out": "Dézoomer",
|
|
@@ -414,7 +401,7 @@ const locale = {
|
|
|
414
401
|
"{area} m²": "{area} m²",
|
|
415
402
|
"{area} mi²": "{area} mi²",
|
|
416
403
|
"{area} yd²": "{area} yd²",
|
|
417
|
-
"{count} errors during import: {message}": "{count} erreurs pendant l'import: {message}",
|
|
404
|
+
"{count} errors during import: {message}": "{count} erreurs pendant l'import : {message}",
|
|
418
405
|
"{delay} seconds": "{delay} secondes",
|
|
419
406
|
"{distance} km": "{distance} km",
|
|
420
407
|
"{distance} m": "{distance} m",
|
|
@@ -432,7 +419,7 @@ const locale = {
|
|
|
432
419
|
"Max": "Max",
|
|
433
420
|
"From": "De",
|
|
434
421
|
"Until": "À",
|
|
435
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple: cle1,cle2|Label 2,Label 3|checkbox",
|
|
422
|
+
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Exemple : cle1,cle2|Label 2,Label 3|checkbox",
|
|
436
423
|
"Edit in OpenStreetMap": "Modifier dans OpenStreetMap",
|
|
437
424
|
"Cannot determine latitude and longitude columns.": "Impossible de détecter les colonnes latitude et longitude.",
|
|
438
425
|
"Back to layers": "Voir les calques",
|
|
@@ -444,9 +431,58 @@ const locale = {
|
|
|
444
431
|
"Filter data": "Filtrer les données",
|
|
445
432
|
"Search map features…": "Chercher des éléments de la carte",
|
|
446
433
|
"Reset all": "Tout réinitialiser",
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
434
|
+
"Open browser": "Explorateur",
|
|
435
|
+
"Open caption": "Légende",
|
|
436
|
+
"Your map has been created with an anonymous account!": "La carte a été créée avec un compte anonyme !",
|
|
437
|
+
"Real-time collaboration": "Collaboration temps réel",
|
|
438
|
+
"Cannot parse data": "Données invalides",
|
|
439
|
+
"Start typing...": "Taper…",
|
|
440
|
+
"No result": "Aucun résultat",
|
|
441
|
+
"Data browser": "Explorateur de données",
|
|
442
|
+
"When providing an URL, uMap can copy the remote data in a layer, or add this URL as remote source of the layer. In that case, data will always be fetched from that URL, and thus be up to date, but it will not be possible to edit it inside uMap.": "À partir d'une URL, uMap peut soit copier les données dans un calque, soit ajouter cette URL comme source de données distantes. Dans ce cas, les données sont téléchargées depuis cette URL à chaque chargement de la carte, et donc sont toujours à jour, mais il n'est alors pas possible de les modifier dans uMap.",
|
|
443
|
+
"Overpass supported expressions": "Expressions pour les requêtes Overpass",
|
|
444
|
+
"key (eg. building)": "clé (ex. building)",
|
|
445
|
+
"!key (eg. !name)": "!clé (ex. !name)",
|
|
446
|
+
"key=value (eg. building=yes)": "clé=valeur (ex. building=yes)",
|
|
447
|
+
"key!=value (eg. building!=yes)": "clé!=valeur (ex. building!=yes)",
|
|
448
|
+
"key~value (eg. name~Grisy)": "clé~valeur (ex. name~Grisy)",
|
|
449
|
+
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"valeur|valeur2\" (ex. name=\"Paris|Berlin\")",
|
|
450
|
+
"More info about Overpass syntax": "Plus d'infos sur la syntaxe Overpass",
|
|
451
|
+
"For more complex needs, see": "Pour les besoins plus avancés:",
|
|
452
|
+
"Choose data": "Choisir les données",
|
|
453
|
+
"Import helpers:": "Assistants d'import :",
|
|
454
|
+
"Choose the format": "Choisir le format",
|
|
455
|
+
"Choose the layer": "Choisir le calque",
|
|
456
|
+
"Layer name": "Nom du calque",
|
|
457
|
+
"Choose import mode": "Choisir le mode d'import",
|
|
458
|
+
"Copy into the layer": "Copier dans le calque",
|
|
459
|
+
"Link to the layer as remote data": "Associer au calque comme données distantes",
|
|
460
|
+
"Condition": "Condition",
|
|
461
|
+
"key=value or key!=value": "clé=valeur ou clé!=valeur",
|
|
462
|
+
"Are you sure you want to delete this rule?": "Confirmez-vous la suppression de cette règle ?",
|
|
463
|
+
"empty rule": "règle vide",
|
|
464
|
+
"Conditional style rules": "Règles de formatage conditionnelles",
|
|
465
|
+
"Add rule": "Ajouter une règle",
|
|
466
|
+
"Browser: data": "Explorateur : données",
|
|
467
|
+
"Browser: layers": "Explorateur : calques",
|
|
468
|
+
"Browser: filters": "Explorateur : filtres",
|
|
469
|
+
"Enable real-time collaboration": "Activer la collaboration temps réel",
|
|
470
|
+
"✅ Copied!": "✅ Copié !",
|
|
471
|
+
"Choose a dataset": "Choisir un jeu de données",
|
|
472
|
+
"Choose this dataset": "Choisir ce jeu de données",
|
|
473
|
+
"GeoDataMine: thematic data from OpenStreetMap": "GéoDataMine : données thématiques à partir d'OpenStreetMap",
|
|
474
|
+
"Choose a theme": "Choisir un thème",
|
|
475
|
+
"Symplify all geometries to points": "Simplifier les géométries en points",
|
|
476
|
+
"Choose this data": "Choisir ces données",
|
|
477
|
+
"Search admin boundary": "Chercher une limite administrative",
|
|
478
|
+
"Please choose a theme and a boundary first.": "Merci de choisir un thème et une limite administrative.",
|
|
479
|
+
"Expression": "Expression",
|
|
480
|
+
"Geometry mode": "Type de géométries",
|
|
481
|
+
"Only geometry centers": "Seulement les centres",
|
|
482
|
+
"Search area": "Chercher un coin",
|
|
483
|
+
"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",
|
|
484
|
+
"Please define an expression for the query first": "Définir une expression pour la requête",
|
|
485
|
+
"Data successfully imported!": "Les données ont été importées!"
|
|
450
486
|
}
|
|
451
487
|
L.registerLocale("fr", locale)
|
|
452
488
|
L.setLocale("fr")
|