umap-project 3.3.6__py3-none-any.whl → 3.4.0b0__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/cs_CZ/LC_MESSAGES/django.mo +0 -0
- umap/locale/cs_CZ/LC_MESSAGES/django.po +43 -33
- umap/locale/da/LC_MESSAGES/django.mo +0 -0
- umap/locale/da/LC_MESSAGES/django.po +43 -33
- umap/locale/de/LC_MESSAGES/django.mo +0 -0
- umap/locale/de/LC_MESSAGES/django.po +35 -29
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/el/LC_MESSAGES/django.po +35 -29
- umap/locale/en/LC_MESSAGES/django.po +34 -28
- umap/locale/es/LC_MESSAGES/django.mo +0 -0
- umap/locale/es/LC_MESSAGES/django.po +43 -33
- umap/locale/et/LC_MESSAGES/django.mo +0 -0
- umap/locale/et/LC_MESSAGES/django.po +58 -54
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.po +43 -33
- umap/locale/fa_IR/LC_MESSAGES/django.mo +0 -0
- umap/locale/fa_IR/LC_MESSAGES/django.po +43 -33
- umap/locale/fr/LC_MESSAGES/django.mo +0 -0
- umap/locale/fr/LC_MESSAGES/django.po +36 -30
- umap/locale/gl/LC_MESSAGES/django.mo +0 -0
- umap/locale/gl/LC_MESSAGES/django.po +43 -33
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +35 -29
- umap/locale/is/LC_MESSAGES/django.mo +0 -0
- umap/locale/is/LC_MESSAGES/django.po +43 -33
- umap/locale/it/LC_MESSAGES/django.mo +0 -0
- umap/locale/it/LC_MESSAGES/django.po +43 -33
- umap/locale/nl/LC_MESSAGES/django.mo +0 -0
- umap/locale/nl/LC_MESSAGES/django.po +35 -29
- umap/locale/pl/LC_MESSAGES/django.mo +0 -0
- umap/locale/pl/LC_MESSAGES/django.po +43 -33
- umap/locale/pt/LC_MESSAGES/django.mo +0 -0
- umap/locale/pt/LC_MESSAGES/django.po +43 -33
- umap/locale/th_TH/LC_MESSAGES/django.mo +0 -0
- umap/locale/th_TH/LC_MESSAGES/django.po +310 -109
- umap/locale/zh_TW/LC_MESSAGES/django.mo +0 -0
- umap/locale/zh_TW/LC_MESSAGES/django.po +80 -70
- umap/management/commands/switch_user.py +2 -2
- umap/static/umap/base.css +89 -32
- umap/static/umap/content.css +129 -33
- umap/static/umap/css/bar.css +82 -20
- umap/static/umap/css/browser.css +163 -0
- umap/static/umap/css/contextmenu.css +15 -0
- umap/static/umap/css/dialog.css +36 -16
- umap/static/umap/css/form.css +122 -32
- umap/static/umap/css/icon.css +46 -3
- umap/static/umap/css/panel.css +7 -3
- umap/static/umap/css/popup.css +34 -8
- umap/static/umap/css/tooltip.css +8 -4
- umap/static/umap/img/16-white.svg +26 -8
- umap/static/umap/img/16.svg +1 -1
- umap/static/umap/img/source/16-white.svg +36 -18
- umap/static/umap/img/source/16.svg +1 -1
- umap/static/umap/js/components/alerts/alert.css +69 -31
- umap/static/umap/js/components/alerts/alert.js +20 -2
- umap/static/umap/js/modules/browser.js +63 -55
- umap/static/umap/js/modules/caption.js +10 -7
- umap/static/umap/js/modules/data/features.js +82 -59
- umap/static/umap/js/modules/data/layer.js +56 -157
- umap/static/umap/js/modules/domutils.js +109 -0
- umap/static/umap/js/modules/filters.js +807 -0
- umap/static/umap/js/modules/form/builder.js +8 -5
- umap/static/umap/js/modules/form/fields.js +110 -220
- umap/static/umap/js/modules/formatter.js +24 -1
- umap/static/umap/js/modules/help.js +3 -2
- umap/static/umap/js/modules/importers/opendata.js +5 -0
- umap/static/umap/js/modules/importers/openrouteservice.js +6 -1
- umap/static/umap/js/modules/managers.js +265 -1
- umap/static/umap/js/modules/permissions.js +35 -31
- umap/static/umap/js/modules/rendering/controls.js +7 -7
- umap/static/umap/js/modules/rendering/icon.js +3 -8
- umap/static/umap/js/modules/rendering/layers/classified.js +17 -10
- umap/static/umap/js/modules/rendering/layers/cluster.js +2 -2
- umap/static/umap/js/modules/rendering/template.js +44 -8
- umap/static/umap/js/modules/rendering/ui.js +29 -23
- umap/static/umap/js/modules/rules.js +4 -3
- umap/static/umap/js/modules/schema.js +3 -6
- umap/static/umap/js/modules/share.js +4 -3
- umap/static/umap/js/modules/tableeditor.js +50 -38
- umap/static/umap/js/modules/templates.js +2 -3
- umap/static/umap/js/modules/ui/bar.js +42 -18
- umap/static/umap/js/modules/ui/dialog.js +33 -31
- umap/static/umap/js/modules/ui/panel.js +21 -7
- umap/static/umap/js/modules/ui/tooltip.js +6 -5
- umap/static/umap/js/modules/umap.js +148 -51
- umap/static/umap/js/modules/utils.js +23 -1
- umap/static/umap/js/umap.core.js +1 -110
- umap/static/umap/locale/am_ET.js +40 -14
- umap/static/umap/locale/am_ET.json +40 -14
- umap/static/umap/locale/ar.js +40 -14
- umap/static/umap/locale/ar.json +40 -14
- umap/static/umap/locale/ast.js +40 -14
- umap/static/umap/locale/ast.json +40 -14
- umap/static/umap/locale/bg.js +40 -14
- umap/static/umap/locale/bg.json +40 -14
- umap/static/umap/locale/br.js +47 -21
- umap/static/umap/locale/br.json +47 -21
- umap/static/umap/locale/ca.js +40 -14
- umap/static/umap/locale/ca.json +40 -14
- umap/static/umap/locale/cs_CZ.js +40 -14
- umap/static/umap/locale/cs_CZ.json +40 -14
- umap/static/umap/locale/da.js +40 -14
- umap/static/umap/locale/da.json +40 -14
- umap/static/umap/locale/de.js +39 -13
- umap/static/umap/locale/de.json +39 -13
- umap/static/umap/locale/el.js +40 -14
- umap/static/umap/locale/el.json +40 -14
- umap/static/umap/locale/en.js +39 -13
- umap/static/umap/locale/en.json +39 -13
- umap/static/umap/locale/en_US.json +40 -14
- umap/static/umap/locale/es.js +40 -14
- umap/static/umap/locale/es.json +40 -14
- umap/static/umap/locale/et.js +79 -53
- umap/static/umap/locale/et.json +79 -53
- umap/static/umap/locale/eu.js +72 -46
- umap/static/umap/locale/eu.json +72 -46
- umap/static/umap/locale/fa_IR.js +40 -14
- umap/static/umap/locale/fa_IR.json +40 -14
- umap/static/umap/locale/fi.js +40 -14
- umap/static/umap/locale/fi.json +40 -14
- umap/static/umap/locale/fr.js +39 -13
- umap/static/umap/locale/fr.json +39 -13
- umap/static/umap/locale/gl.js +40 -14
- umap/static/umap/locale/gl.json +40 -14
- umap/static/umap/locale/he.js +40 -14
- umap/static/umap/locale/he.json +40 -14
- umap/static/umap/locale/hr.js +40 -14
- umap/static/umap/locale/hr.json +40 -14
- umap/static/umap/locale/hu.js +40 -14
- umap/static/umap/locale/hu.json +40 -14
- umap/static/umap/locale/id.js +40 -14
- umap/static/umap/locale/id.json +40 -14
- umap/static/umap/locale/is.js +40 -14
- umap/static/umap/locale/is.json +40 -14
- umap/static/umap/locale/it.js +40 -14
- umap/static/umap/locale/it.json +40 -14
- umap/static/umap/locale/ja.js +40 -14
- umap/static/umap/locale/ja.json +40 -14
- umap/static/umap/locale/ko.js +40 -14
- umap/static/umap/locale/ko.json +40 -14
- umap/static/umap/locale/lt.js +40 -14
- umap/static/umap/locale/lt.json +40 -14
- umap/static/umap/locale/ms.js +40 -14
- umap/static/umap/locale/ms.json +40 -14
- umap/static/umap/locale/nl.js +40 -14
- umap/static/umap/locale/nl.json +40 -14
- umap/static/umap/locale/no.js +40 -14
- umap/static/umap/locale/no.json +40 -14
- umap/static/umap/locale/pl.js +40 -14
- umap/static/umap/locale/pl.json +40 -14
- umap/static/umap/locale/pl_PL.json +40 -14
- umap/static/umap/locale/pt.js +40 -14
- umap/static/umap/locale/pt.json +40 -14
- umap/static/umap/locale/pt_BR.js +40 -14
- umap/static/umap/locale/pt_BR.json +40 -14
- umap/static/umap/locale/pt_PT.js +40 -14
- umap/static/umap/locale/pt_PT.json +40 -14
- umap/static/umap/locale/ro.js +40 -14
- umap/static/umap/locale/ro.json +40 -14
- umap/static/umap/locale/ru.js +40 -14
- umap/static/umap/locale/ru.json +40 -14
- umap/static/umap/locale/sk_SK.js +40 -14
- umap/static/umap/locale/sk_SK.json +40 -14
- umap/static/umap/locale/sl.js +40 -14
- umap/static/umap/locale/sl.json +40 -14
- umap/static/umap/locale/sr.js +40 -14
- umap/static/umap/locale/sr.json +40 -14
- umap/static/umap/locale/sv.js +40 -14
- umap/static/umap/locale/sv.json +40 -14
- umap/static/umap/locale/th_TH.js +40 -14
- umap/static/umap/locale/th_TH.json +40 -14
- umap/static/umap/locale/tr.js +40 -14
- umap/static/umap/locale/tr.json +40 -14
- umap/static/umap/locale/uk_UA.js +40 -14
- umap/static/umap/locale/uk_UA.json +40 -14
- umap/static/umap/locale/vi.js +40 -14
- umap/static/umap/locale/vi.json +40 -14
- umap/static/umap/locale/vi_VN.json +40 -14
- umap/static/umap/locale/zh.js +40 -14
- umap/static/umap/locale/zh.json +40 -14
- umap/static/umap/locale/zh_CN.json +40 -14
- umap/static/umap/locale/zh_TW.Big5.json +40 -14
- umap/static/umap/locale/zh_TW.js +39 -13
- umap/static/umap/locale/zh_TW.json +39 -13
- umap/static/umap/map.css +60 -223
- umap/static/umap/unittests/utils.js +18 -0
- umap/static/umap/vars.css +23 -5
- umap/templates/umap/components/alerts/alert.html +32 -29
- umap/templates/umap/css.html +2 -1
- umap/templates/umap/login_popup_end.html +18 -9
- umap/templates/umap/user_map_table.html +7 -2
- umap/tests/integration/conftest.py +2 -6
- umap/tests/integration/test_anonymous_owned_map.py +89 -36
- umap/tests/integration/test_basics.py +25 -1
- umap/tests/integration/test_browser.py +37 -0
- umap/tests/integration/test_draw_polygon.py +2 -0
- umap/tests/integration/test_edit_marker.py +1 -1
- umap/tests/integration/test_export_map.py +19 -0
- umap/tests/integration/test_fields.py +522 -0
- umap/tests/integration/test_filters.py +617 -0
- umap/tests/integration/test_import.py +15 -42
- umap/tests/integration/test_remote_data.py +60 -4
- umap/tests/integration/test_share.py +4 -4
- umap/tests/integration/test_tableeditor.py +31 -7
- umap/tests/integration/test_websocket_sync.py +3 -1
- umap/tests/test_dashboard.py +10 -0
- umap/urls.py +1 -0
- umap/views.py +5 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/METADATA +12 -12
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/RECORD +214 -211
- umap/static/umap/js/modules/facets.js +0 -164
- umap/tests/integration/test_facets_browser.py +0 -279
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/WHEEL +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/entry_points.txt +0 -0
- {umap_project-3.3.6.dist-info → umap_project-3.4.0b0.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/et.json
CHANGED
|
@@ -5,19 +5,19 @@
|
|
|
5
5
|
"## two hashes for second heading": "## kaks trelli teise pealkirja jaoks",
|
|
6
6
|
"### three hashes for third heading": "### kolm trelli kolmanda pealkirja jaoks",
|
|
7
7
|
"**double star for bold**": "**kaks tärni paksu kirja jaoks**",
|
|
8
|
-
"*single star for italic*": "
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
8
|
+
"*single star for italic*": "*üks tärn kursiivi jaoks",
|
|
9
|
+
"--- for a horizontal rule": "--- horisontaalse joone jaoks",
|
|
10
10
|
"1 day": "1 päev",
|
|
11
11
|
"1 hour": "1 tund",
|
|
12
12
|
"5 min": "5 min",
|
|
13
13
|
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Komaga eraldatud numbriloend, mis määrab katkendjoone mustri, nt \"5, 10, 15\".",
|
|
14
14
|
"About": "Teave",
|
|
15
|
-
"Action not allowed :(": "
|
|
15
|
+
"Action not allowed :(": "Tegevus pole lubatud :(",
|
|
16
16
|
"Activate slideshow mode": "Aktiveeri slaidiesitluse režiim",
|
|
17
17
|
"Add a layer": "Lisa kiht",
|
|
18
18
|
"Add a line to the current multi": "Add a line to the current multi",
|
|
19
19
|
"Add a polygon to the current multi": "Add a polygon to the current multi",
|
|
20
|
-
"Add image URL": "
|
|
20
|
+
"Add image URL": "Lisa pildi URL",
|
|
21
21
|
"Advanced actions": "Täiendavad tegevused",
|
|
22
22
|
"Advanced properties": "Täiendavad omadused",
|
|
23
23
|
"All data and settings of the map": "All data and settings of the map",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"Auto": "Auto",
|
|
35
35
|
"Automatic": "Automaatne",
|
|
36
36
|
"Autostart when map is loaded": "Automaatne käivitus kaardi laadimisel",
|
|
37
|
-
"Back to preview": "
|
|
37
|
+
"Back to preview": "Tagasi eelvaate juurde",
|
|
38
38
|
"Background overlay url": "Background overlay url",
|
|
39
39
|
"Ball": "Nööpnõel",
|
|
40
40
|
"Bring feature to center": "Bring feature to center",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"Caption": "Legend",
|
|
45
45
|
"Center map on your location": "Sea oma asukoht keskpunktiks",
|
|
46
46
|
"Change tilelayers": "Vaheta kaardi taust",
|
|
47
|
-
"Change": "
|
|
47
|
+
"Change": "Muuda",
|
|
48
48
|
"Choose the data format": "Vali andmevorming",
|
|
49
49
|
"Choropleth breakpoints": "Choropleth breakpoints",
|
|
50
50
|
"Choropleth classes": "Choropleth classes",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"Congratulations, your map has been created!": "Congratulations, your map has been created!",
|
|
75
75
|
"Continue line": "Jätka joont",
|
|
76
76
|
"Coordinates": "Koordinaadid",
|
|
77
|
-
"copy": "
|
|
77
|
+
"copy": "kopeeri",
|
|
78
78
|
"Credits": "Õigused",
|
|
79
|
-
"Current map view": "
|
|
79
|
+
"Current map view": "Praegune vaade",
|
|
80
80
|
"Current view instead of default map view?": "Praegune vaade vaikimisi vaate asemel?",
|
|
81
81
|
"Custom background": "Kohandatud taust",
|
|
82
82
|
"Custom overlay": "Custom overlay",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"Default interaction options": "Interaktsiooni vaikesuvandid",
|
|
87
87
|
"Default properties": "Vaikeomadused",
|
|
88
88
|
"Default shape properties": "Kujundi vaikeomadused",
|
|
89
|
-
"Default view": "
|
|
89
|
+
"Default view": "Vaikevaade",
|
|
90
90
|
"Default zoom level": "Vaikimisi suurendusaste",
|
|
91
91
|
"Default": "Vaikesäte",
|
|
92
92
|
"Default: name": "Vaikimisi: name",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"Delete this vertex (Alt+Click)": "Kustuta see tipp (Alt+Klõps)",
|
|
100
100
|
"Delete": "Kustuta",
|
|
101
101
|
"description": "kirjeldus",
|
|
102
|
-
"Direct link": "
|
|
102
|
+
"Direct link": "Otselink",
|
|
103
103
|
"Directions from here": "Juhised siit",
|
|
104
104
|
"Display label": "Kuva silt",
|
|
105
105
|
"Display measure": "Kuva suurus",
|
|
@@ -131,7 +131,7 @@
|
|
|
131
131
|
"Dynamic": "Dünaamiline",
|
|
132
132
|
"Edit feature's layer": "Muuda elemendi kihti",
|
|
133
133
|
"Edit properties in a table": "Muuda omadusi tabelis",
|
|
134
|
-
"Edit the title of the map": "
|
|
134
|
+
"Edit the title of the map": "Muuda kaardi pealkirja",
|
|
135
135
|
"Edit this feature": "Muuda seda elementi",
|
|
136
136
|
"Edit": "Muuda",
|
|
137
137
|
"Embed and link options": "Embed and link options",
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"Licence": "Litsents",
|
|
204
204
|
"licence": "litsents",
|
|
205
205
|
"Limit bounds": "Määra piirid",
|
|
206
|
-
"Link to view the map": "Link
|
|
206
|
+
"Link to view the map": "Link kaardi vaatamiseks",
|
|
207
207
|
"Link to…": "Lingi…",
|
|
208
208
|
"Link with text: [[https://example.com|text of the link]]": "Link with text: [[https://example.com|text of the link]]",
|
|
209
209
|
"Long credits": "Long credits",
|
|
@@ -240,16 +240,16 @@
|
|
|
240
240
|
"No licence has been set": "Litsentsi pole määratud",
|
|
241
241
|
"No results": "Tulemused puuduvad",
|
|
242
242
|
"no": "ei",
|
|
243
|
-
"No.": "
|
|
243
|
+
"No.": "Nr",
|
|
244
244
|
"None": "Mitte midagi",
|
|
245
245
|
"Number of desired classes (default 5)": "Number of desired classes (default 5)",
|
|
246
246
|
"On the bottom": "All",
|
|
247
247
|
"On the left": "Vasakul",
|
|
248
248
|
"On the right": "Paremal",
|
|
249
249
|
"On the top": "Ülal",
|
|
250
|
-
"Only visible layers' data": "
|
|
250
|
+
"Only visible layers' data": "Ainult nähtavate kihtide andmed",
|
|
251
251
|
"opacity": "läbipaistvus",
|
|
252
|
-
"Opacity": "
|
|
252
|
+
"Opacity": "Läbipaistvus",
|
|
253
253
|
"Open current feature on load": "Open current feature on load",
|
|
254
254
|
"Open link in…": "Ava link...",
|
|
255
255
|
"Open share & download panel": "Open share & download panel",
|
|
@@ -267,14 +267,13 @@
|
|
|
267
267
|
"Permanent credits": "Permanent credits",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Please be sure the licence is compliant with your use.",
|
|
269
269
|
"Please choose a format": "Vali palun vorming",
|
|
270
|
-
"Please enter the name of the property": "Sisesta palun omaduse nimi",
|
|
271
270
|
"Please save the map first": "Salvesta palun enne kaart",
|
|
272
271
|
"Popup (large)": "Hüpik (suur)",
|
|
273
272
|
"Popup content style": "Hüpiku sisu stiil",
|
|
274
273
|
"Popup content template": "Hüpiku mall",
|
|
275
274
|
"Popup shape": "Hüpiku kuju",
|
|
276
275
|
"Popup": "Hüpik",
|
|
277
|
-
"Powered by uMap": "
|
|
276
|
+
"Powered by uMap": "Valminud uMapiga",
|
|
278
277
|
"previous": "tagasi",
|
|
279
278
|
"Problem in the response": "Problem in the response",
|
|
280
279
|
"Properties imported:": "Imporditud omadused:",
|
|
@@ -286,7 +285,7 @@
|
|
|
286
285
|
"Replace layer content": "Asenda kihi sisu",
|
|
287
286
|
"Restore this version": "Taasta see versioon",
|
|
288
287
|
"Save current edits": "Salvesta praegused muudatused",
|
|
289
|
-
"Save map": "
|
|
288
|
+
"Save map": "Salvesta kaart",
|
|
290
289
|
"Save": "Salvesta",
|
|
291
290
|
"Saved center and zoom": "Saved center and zoom",
|
|
292
291
|
"Search location": "Asukoha otsing",
|
|
@@ -295,12 +294,12 @@
|
|
|
295
294
|
"See full screen": "Täisekraanvaade",
|
|
296
295
|
"See on OpenStreetMap": "See on OpenStreetMap",
|
|
297
296
|
"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…",
|
|
298
|
-
"settings": "
|
|
297
|
+
"settings": "sätted",
|
|
299
298
|
"Shape properties": "Kujundi omadused",
|
|
300
299
|
"Share and download": "Share and download",
|
|
301
300
|
"Share this link to open a customized map view": "Share this link to open a customized map view",
|
|
302
301
|
"Short credits": "Short credits",
|
|
303
|
-
"Short link": "
|
|
302
|
+
"Short link": "Lühilink",
|
|
304
303
|
"Show this layer in the caption": "Show this layer in the caption",
|
|
305
304
|
"Show/hide layer": "Näita/peida kiht",
|
|
306
305
|
"Side panel": "Külgpaneel",
|
|
@@ -315,7 +314,7 @@
|
|
|
315
314
|
"Start slideshow": "Alusta slaidiprogrammi",
|
|
316
315
|
"Stop editing": "Lõpeta muutmine",
|
|
317
316
|
"Stop slideshow": "Lõpeta slaidiprogramm",
|
|
318
|
-
"Street": "
|
|
317
|
+
"Street": "Tänav",
|
|
319
318
|
"stroke": "piirjoon",
|
|
320
319
|
"Supported scheme": "Supported scheme",
|
|
321
320
|
"Supported variables that will be dynamically replaced": "Supported variables that will be dynamically replaced",
|
|
@@ -349,11 +348,11 @@
|
|
|
349
348
|
"Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.",
|
|
350
349
|
"User content credits": "Kasutaja sisu õigused",
|
|
351
350
|
"User interface options": "Kasutajaliidese suvandid",
|
|
352
|
-
"User location": "
|
|
351
|
+
"User location": "Kasutaja asukoht",
|
|
353
352
|
"Verify remote URL": "Verify remote URL",
|
|
354
353
|
"Versions": "Versioonid",
|
|
355
354
|
"View Fullscreen": "Täisekraanivaade",
|
|
356
|
-
"View": "
|
|
355
|
+
"View": "Vaade",
|
|
357
356
|
"Visibility: {status}": "Visibility: {status}",
|
|
358
357
|
"weight": "jämedus",
|
|
359
358
|
"Where do we go from here?": "Kuhu läheb siit edasi?",
|
|
@@ -383,9 +382,9 @@
|
|
|
383
382
|
"{delay} seconds": "{delay} sekundit",
|
|
384
383
|
"{distance} km": "{distance} km",
|
|
385
384
|
"{distance} m": "{distance} m",
|
|
386
|
-
"{distance} miles": "{distance}
|
|
385
|
+
"{distance} miles": "{distance} miili",
|
|
387
386
|
"{distance} NM": "{distance} NM",
|
|
388
|
-
"{distance} yd": "{distance}
|
|
387
|
+
"{distance} yd": "{distance} jardi",
|
|
389
388
|
"Edit map name and caption": "Edit map name and caption",
|
|
390
389
|
"Map advanced properties": "Map advanced properties",
|
|
391
390
|
"Edit map details": "Edit map details",
|
|
@@ -395,26 +394,22 @@
|
|
|
395
394
|
"<empty value>": "<empty value>",
|
|
396
395
|
"Min": "Min",
|
|
397
396
|
"Max": "Max",
|
|
398
|
-
"From": "
|
|
399
|
-
"Until": "
|
|
400
|
-
"
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"Filters": "Filters",
|
|
397
|
+
"From": "Alates",
|
|
398
|
+
"Until": "Kuni",
|
|
399
|
+
"Edit in OpenStreetMap": "Muuda OpenStreetMapis",
|
|
400
|
+
"Back to layers": "Tagasi kihtide juurde",
|
|
401
|
+
"Filters": "Filtrid",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Comma separated list of properties to use when filtering features by text input",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
|
|
406
403
|
"Search keys": "Search keys",
|
|
407
|
-
"Filters keys": "Filters keys",
|
|
408
404
|
"Filter data": "Filter data",
|
|
409
405
|
"Search map features…": "Search map features…",
|
|
410
|
-
"Reset all": "
|
|
411
|
-
"Open browser": "
|
|
406
|
+
"Reset all": "Lähtesta kõik",
|
|
407
|
+
"Open browser": "Ava brauser",
|
|
412
408
|
"Open caption": "Open caption",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Your map has been created with an anonymous account!",
|
|
414
409
|
"Real-time collaboration": "Real-time collaboration",
|
|
415
410
|
"Cannot parse data": "Cannot parse data",
|
|
416
411
|
"Start typing...": "Start typing...",
|
|
417
|
-
"No result": "
|
|
412
|
+
"No result": "Tulemused puuduvad",
|
|
418
413
|
"Data browser": "Data browser",
|
|
419
414
|
"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.",
|
|
420
415
|
"Overpass supported expressions": "Overpass supported expressions",
|
|
@@ -426,10 +421,10 @@
|
|
|
426
421
|
"key=\"value|value2\" (eg. name=\"Paris|Berlin\")": "key=\"value|value2\" (eg. name=\"Paris|Berlin\")",
|
|
427
422
|
"More info about Overpass syntax": "More info about Overpass syntax",
|
|
428
423
|
"For more complex needs, see": "For more complex needs, see",
|
|
429
|
-
"Choose data": "
|
|
430
|
-
"Choose the format": "
|
|
431
|
-
"Choose the layer": "
|
|
432
|
-
"Layer name": "
|
|
424
|
+
"Choose data": "Vali andmed",
|
|
425
|
+
"Choose the format": "Vali vorming",
|
|
426
|
+
"Choose the layer": "Vali kiht",
|
|
427
|
+
"Layer name": "Kihi nimi",
|
|
433
428
|
"Choose import mode": "Choose import mode",
|
|
434
429
|
"Copy into the layer": "Copy into the layer",
|
|
435
430
|
"Link to the layer as remote data": "Link to the layer as remote data",
|
|
@@ -443,11 +438,11 @@
|
|
|
443
438
|
"Browser: layers": "Browser: layers",
|
|
444
439
|
"Browser: filters": "Browser: filters",
|
|
445
440
|
"Enable real-time collaboration": "Enable real-time collaboration",
|
|
446
|
-
"✅ Copied!": "✅
|
|
441
|
+
"✅ Copied!": "✅ Kopeeritud!",
|
|
447
442
|
"Choose a dataset": "Choose a dataset",
|
|
448
443
|
"Choose this dataset": "Choose this dataset",
|
|
449
444
|
"GeoDataMine: thematic data from OpenStreetMap": "GeoDataMine: thematic data from OpenStreetMap",
|
|
450
|
-
"Choose a theme": "
|
|
445
|
+
"Choose a theme": "Vali teema",
|
|
451
446
|
"Choose this data": "Choose this data",
|
|
452
447
|
"Search admin boundary": "Search admin boundary",
|
|
453
448
|
"Please choose a theme and a boundary first.": "Please choose a theme and a boundary first.",
|
|
@@ -466,10 +461,6 @@
|
|
|
466
461
|
"Categories": "Categories",
|
|
467
462
|
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
468
463
|
"Categories mode": "Categories mode",
|
|
469
|
-
"Remove filter for this column": "Remove filter for this column",
|
|
470
|
-
"Add filter for this column": "Add filter for this column",
|
|
471
|
-
"Rename this column": "Rename this column",
|
|
472
|
-
"Delete this column": "Delete this column",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
474
465
|
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
475
466
|
"Delete selected rows": "Delete selected rows",
|
|
@@ -515,7 +506,7 @@
|
|
|
515
506
|
"Default zoom": "Default zoom",
|
|
516
507
|
"Default latitude": "Default latitude",
|
|
517
508
|
"Default longitude": "Default longitude",
|
|
518
|
-
"Edit map default view": "
|
|
509
|
+
"Edit map default view": "Kaardi muutmise vaikevaade",
|
|
519
510
|
"Use current center and zoom": "Use current center and zoom",
|
|
520
511
|
"Layer permalink": "Layer permalink",
|
|
521
512
|
"Back to home": "Back to home",
|
|
@@ -571,11 +562,8 @@
|
|
|
571
562
|
"Please choose an instance first.": "Please choose an instance first.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Add a new field",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Are you sure you want to delete this field on all the features?",
|
|
575
|
-
"Please enter the new name of this field": "Please enter the new name of this field",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Manage Fields",
|
|
578
|
-
"Rename this field": "Rename this field",
|
|
579
567
|
"Delete this field": "Delete this field",
|
|
580
568
|
"Double click to edit the name": "Double click to edit the name",
|
|
581
569
|
"Print map": "Print map",
|
|
@@ -595,7 +583,6 @@
|
|
|
595
583
|
"Transform to regular line": "Transform to regular line",
|
|
596
584
|
"Transform to route": "Transform to route",
|
|
597
585
|
"Restore route": "Restore route",
|
|
598
|
-
"Compute elevation": "Compute elevation",
|
|
599
586
|
"Profile": "Profile",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
@@ -615,5 +602,44 @@
|
|
|
615
602
|
"Loss:": "Loss:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
604
|
"Right-click to edit": "Right-click to edit",
|
|
618
|
-
"Draw along routes": "Draw along routes"
|
|
605
|
+
"Draw along routes": "Draw along routes",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|
umap/static/umap/locale/eu.js
CHANGED
|
@@ -267,7 +267,6 @@ const locale = {
|
|
|
267
267
|
"Permanent credits": "Kreditu iraunkorrak",
|
|
268
268
|
"Please be sure the licence is compliant with your use.": "Mesedez, ziurtatu lizentzia zure erabilerarekin bat datorrela.",
|
|
269
269
|
"Please choose a format": "Aukeratu formatu bat",
|
|
270
|
-
"Please enter the name of the property": "Sartu propietate honen izena",
|
|
271
270
|
"Please save the map first": "Gorde mapa lehenik",
|
|
272
271
|
"Popup (large)": "Laster-leiho (handia)",
|
|
273
272
|
"Popup content style": "Laster-leihoaren edukiaren estiloa",
|
|
@@ -397,20 +396,16 @@ const locale = {
|
|
|
397
396
|
"Max": "Max",
|
|
398
397
|
"From": "Nondik",
|
|
399
398
|
"Until": "Noraino",
|
|
400
|
-
"Example: key1,key2|Label 2,key3|Label 3|checkbox": "Adibidea: key1,key2|Label 2,key3|Label 3|checkbox",
|
|
401
399
|
"Edit in OpenStreetMap": "Editatu OpenStreetMap-en",
|
|
402
400
|
"Back to layers": "Itzuli geruzetara",
|
|
403
401
|
"Filters": "Iragazkiak",
|
|
404
402
|
"Comma separated list of properties to use when filtering features by text input": "Testu sarreren bidez entitateak iragazteko erabili beharreko propietateen zerrenda komaz bereizita",
|
|
405
|
-
"Comma separated list of properties to use for filters (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Iragazteko erabili beharreko propietateen zerrenda komaz bereizita (adib.: niregakoa,bestegakoa). Etiketa kontrolatzeko, gehitu | (adib.: niregakoa|niregakoa,bestegakoa|beste gakoa). Sarrera-eremu mota kontrolatzeko, gehitu beste | (adib.: nire gakoa|Nire gakoa|kontrol-laukia,bestegakoa|Beste gakoa|data-ordua). Sarrera-eremu motarako baimendutako balioak kontrol-laukia (lehenetsia), irratia, zenbakia, data eta data-ordua dira.",
|
|
406
403
|
"Search keys": "Bilatu gakoak",
|
|
407
|
-
"Filters keys": "Iragazkien gakoak",
|
|
408
404
|
"Filter data": "Iragazi datuak",
|
|
409
405
|
"Search map features…": "Bilatu maparen entitateak...",
|
|
410
406
|
"Reset all": "Berrezarri dena",
|
|
411
407
|
"Open browser": "Ireki arakatzailea",
|
|
412
408
|
"Open caption": "Ireki epigrafea",
|
|
413
|
-
"Your map has been created with an anonymous account!": "Zure mapa kontu anonimo batekin sortu da!",
|
|
414
409
|
"Real-time collaboration": "Denbora errealeko lankidetza",
|
|
415
410
|
"Cannot parse data": "Ezin dira datuak analizatu",
|
|
416
411
|
"Start typing...": "Hasi idazten...",
|
|
@@ -466,10 +461,6 @@ const locale = {
|
|
|
466
461
|
"Categories": "Kategoriak",
|
|
467
462
|
"Comma separated list of categories.": "Komaz bereizitako kategorien zerrenda.",
|
|
468
463
|
"Categories mode": "Kategoriak modua",
|
|
469
|
-
"Remove filter for this column": "Kendu iragazkia zutabe honetarako",
|
|
470
|
-
"Add filter for this column": "Gehitu iragazkia zutabe honetarako",
|
|
471
|
-
"Rename this column": "Aldatu izena zutabe honi",
|
|
472
|
-
"Delete this column": "Ezabatu zutabe hau",
|
|
473
464
|
"Name “{name}” should not contain a dot.": "\"{name}\" izenak ez luke punturik izan behar.",
|
|
474
465
|
"This name already exists: “{name}”": "Izen hau dagoeneko badago: “{name}”",
|
|
475
466
|
"Delete selected rows": "Ezabatu hautatutako errenkadak",
|
|
@@ -555,7 +546,7 @@ const locale = {
|
|
|
555
546
|
"From community": "From community",
|
|
556
547
|
"You must select a template.": "Txantiloi bat aukeratu behar duzu",
|
|
557
548
|
"Line decoration": "Line decoration",
|
|
558
|
-
"Reuse this template": "
|
|
549
|
+
"Reuse this template": "Berrerabili txantiloi hau",
|
|
559
550
|
"Create a new map using this template": "Sortu mapa berri bat txantiloi hau erabiliz",
|
|
560
551
|
"Save template": "Gorde txantiloia",
|
|
561
552
|
"Load template": "Kargatu txantiloia",
|
|
@@ -564,58 +555,93 @@ const locale = {
|
|
|
564
555
|
"You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".": "You have no registered template yet. You can add one by creating a new map and flagging it as \"template\".",
|
|
565
556
|
"There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.": "There is no recommended template yet. Recommended templates are the ones starred by uMap administrators.",
|
|
566
557
|
"There is no public template yet.": "There is no public template yet.",
|
|
567
|
-
"Explore": "
|
|
558
|
+
"Explore": "Arakatu",
|
|
568
559
|
"Import data from public open data portals": "Import data from public open data portals",
|
|
569
560
|
"Choose a portal": "Choose a portal",
|
|
570
561
|
"Limit results to current map view": "Mugatu emaitzak uneko maparen ikuspegira",
|
|
571
562
|
"Please choose an instance first.": "Mesedez, lehendabizi instantzia bat aukeratu.",
|
|
572
563
|
"No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.": "No geo column found: must be either `lat(itude)` and `lon(gitude)` or `geom(etry)`.",
|
|
573
564
|
"Add a new field": "Gehitu eremu berri bat",
|
|
574
|
-
"Are you sure you want to delete this field on all the features?": "Ziur zaude eremu hau ezabatu nahi duzula funtzio guztietan?",
|
|
575
|
-
"Please enter the new name of this field": "Eman izen berri bat eremu honi",
|
|
576
565
|
"Cannot process MultiPoint": "Cannot process MultiPoint",
|
|
577
566
|
"Manage Fields": "Kudeatu eremuak",
|
|
578
|
-
"Rename this field": "Berrizendatu eremu hau",
|
|
579
567
|
"Delete this field": "Ezabatu eremu hau",
|
|
580
568
|
"Double click to edit the name": "Egin klik bikoitza izena editatzeko",
|
|
581
|
-
"Print map": "
|
|
582
|
-
"Choose a format": "
|
|
583
|
-
"Scale map": "
|
|
584
|
-
"portrait": "
|
|
585
|
-
"landscape": "
|
|
586
|
-
"Print": "
|
|
587
|
-
"Preparing the print…": "
|
|
588
|
-
"Large Circle": "
|
|
589
|
-
"Icon size": "
|
|
569
|
+
"Print map": "Inprimatu mapa",
|
|
570
|
+
"Choose a format": "Aukeratu formatu bat",
|
|
571
|
+
"Scale map": "Eskalatu mapa",
|
|
572
|
+
"portrait": "Bertikala",
|
|
573
|
+
"landscape": "Horizontala",
|
|
574
|
+
"Print": "Inprimatu",
|
|
575
|
+
"Preparing the print…": "Inprimaketa prestatzen...",
|
|
576
|
+
"Large Circle": "Zirkulu handia",
|
|
577
|
+
"Icon size": "Ikonoen tamaina",
|
|
590
578
|
"Will only affect raw and large circle icons.": "Will only affect raw and large circle icons.",
|
|
591
|
-
"Route": "
|
|
592
|
-
"Display the print control": "
|
|
579
|
+
"Route": "Ibilbidea",
|
|
580
|
+
"Display the print control": "Bistaratu inprimatzeko kontrola",
|
|
593
581
|
"Compute isochrone from here": "Compute isochrone from here",
|
|
594
|
-
"Route settings": "
|
|
595
|
-
"Transform to regular line": "
|
|
596
|
-
"Transform to route": "
|
|
597
|
-
"Restore route": "
|
|
598
|
-
"
|
|
599
|
-
"Profile": "Profile",
|
|
582
|
+
"Route settings": "Ibilbidearen ezarpenak",
|
|
583
|
+
"Transform to regular line": "Bihurtu lerro erregularra",
|
|
584
|
+
"Transform to route": "Bihurtu ibilbidea",
|
|
585
|
+
"Restore route": "Leheneratu ibilbidea",
|
|
586
|
+
"Profile": "Profila",
|
|
600
587
|
"Compute elevations": "Compute elevations",
|
|
601
588
|
"Route preference": "Route preference",
|
|
602
589
|
"Compute route": "Compute route",
|
|
603
|
-
"Walking": "
|
|
604
|
-
"Hiking": "
|
|
605
|
-
"By car": "
|
|
606
|
-
"Cycling": "
|
|
607
|
-
"Wheelchair": "
|
|
608
|
-
"Recommended": "
|
|
609
|
-
"Fastest": "
|
|
610
|
-
"Shortest": "
|
|
611
|
-
"Max time (in minutes)": "
|
|
612
|
-
"Number of lines": "
|
|
613
|
-
"Distance:": "
|
|
614
|
-
"Gain:": "
|
|
615
|
-
"Loss:": "
|
|
590
|
+
"Walking": "Oinez",
|
|
591
|
+
"Hiking": "Korrika",
|
|
592
|
+
"By car": "Autoz",
|
|
593
|
+
"Cycling": "Bizikletaz",
|
|
594
|
+
"Wheelchair": "Aulki gurpildunaz",
|
|
595
|
+
"Recommended": "Gomendatua",
|
|
596
|
+
"Fastest": "Azkarrena",
|
|
597
|
+
"Shortest": "Laburrena",
|
|
598
|
+
"Max time (in minutes)": "Denbora maximoa (minututan)",
|
|
599
|
+
"Number of lines": "Lerro kopurua",
|
|
600
|
+
"Distance:": "Distantzia:",
|
|
601
|
+
"Gain:": "Altuera irabazia:",
|
|
602
|
+
"Loss:": "Altuera galera:",
|
|
616
603
|
"Altitude:": "Altitude:",
|
|
617
|
-
"Right-click to edit": "
|
|
618
|
-
"Draw along routes": "
|
|
604
|
+
"Right-click to edit": "Eskuin-klik editatzeko",
|
|
605
|
+
"Draw along routes": "Arrastatu ibilbideetatik",
|
|
606
|
+
"Skipping invalid geometry": "Skipping invalid geometry",
|
|
607
|
+
"Add filter": "Add filter",
|
|
608
|
+
"Min/Max": "Min/Max",
|
|
609
|
+
"Multiple choices": "Multiple choices",
|
|
610
|
+
"Exclusive choice": "Exclusive choice",
|
|
611
|
+
"Yes/No": "Yes/No",
|
|
612
|
+
"Add a field prior to create a filter.": "Add a field prior to create a filter.",
|
|
613
|
+
"Edit this filter": "Edit this filter",
|
|
614
|
+
"Remove this filter": "Remove this filter",
|
|
615
|
+
"Apply filter to": "Apply filter to",
|
|
616
|
+
"Filter on": "Filter on",
|
|
617
|
+
"Human readable name of the filter": "Human readable name of the filter",
|
|
618
|
+
"Widget for the filter": "Widget for the filter",
|
|
619
|
+
"Edit filter": "Edit filter",
|
|
620
|
+
"Edit this field": "Edit this field",
|
|
621
|
+
"all layers": "all layers",
|
|
622
|
+
"single layer": "single layer",
|
|
623
|
+
"unset": "unset",
|
|
624
|
+
"Filters will be displayed in the data browser to ease data selection.": "Filters will be displayed in the data browser to ease data selection.",
|
|
625
|
+
"[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])": "[key=\"value\"][key2=\"value2\"] (eg. [boundary=\"educational\"][name=\"Académie de Lyon\"])",
|
|
626
|
+
"Field Name": "Field Name",
|
|
627
|
+
"Field Type": "Field Type",
|
|
628
|
+
"Manage field": "Manage field",
|
|
629
|
+
"Add filter for this field": "Add filter for this field",
|
|
630
|
+
"Name cannot be empty.": "Name cannot be empty.",
|
|
631
|
+
"Are you sure you want to delete this field on all the data?": "Are you sure you want to delete this field on all the data?",
|
|
632
|
+
"Anonymous map": "Anonymous map",
|
|
633
|
+
"Edit filter for this field": "Edit filter for this field",
|
|
634
|
+
"Fields, filters and keys": "Fields, filters and keys",
|
|
635
|
+
"Hey, you created a map without an account!": "Hey, you created a map without an account!",
|
|
636
|
+
"This map is anonymous, do you want to attach it to your account?": "This map is anonymous, do you want to attach it to your account?",
|
|
637
|
+
"The map has been upgraded to latest version, please save it.": "The map has been upgraded to latest version, please save it.",
|
|
638
|
+
"Elevation has been added!": "Elevation has been added!",
|
|
639
|
+
"Mapillary": "Mapillary",
|
|
640
|
+
"Wikidata": "Wikidata",
|
|
641
|
+
"Wikipedia contributors": "Wikipedia contributors",
|
|
642
|
+
"See on Wikipedia": "See on Wikipedia",
|
|
643
|
+
"Anonymous map: update who can see and edit it": "Anonymous map: update who can see and edit it",
|
|
644
|
+
"Login": "Login"
|
|
619
645
|
}
|
|
620
646
|
L.registerLocale("eu", locale)
|
|
621
647
|
L.setLocale("eu")
|