umap-project 2.4.2__py3-none-any.whl → 2.5.1__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.
- umap/__init__.py +1 -1
- umap/locale/el/LC_MESSAGES/django.mo +0 -0
- umap/locale/eu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.mo +0 -0
- umap/locale/hu/LC_MESSAGES/django.po +100 -50
- umap/static/umap/base.css +4 -1
- umap/static/umap/css/contextmenu.css +11 -0
- umap/static/umap/css/dialog.css +24 -3
- umap/static/umap/css/panel.css +4 -2
- umap/static/umap/css/slideshow.css +69 -0
- umap/static/umap/css/tableeditor.css +69 -0
- umap/static/umap/css/tooltip.css +3 -3
- umap/static/umap/img/16-white.svg +4 -0
- umap/static/umap/img/source/16-white.svg +5 -1
- umap/static/umap/js/components/alerts/alert.css +10 -10
- umap/static/umap/js/modules/autocomplete.js +23 -1
- umap/static/umap/js/modules/browser.js +14 -8
- umap/static/umap/js/modules/facets.js +40 -10
- umap/static/umap/js/modules/formatter.js +153 -0
- umap/static/umap/js/modules/global.js +10 -1
- umap/static/umap/js/modules/help.js +25 -25
- umap/static/umap/js/modules/importer.js +4 -4
- umap/static/umap/js/modules/importers/communesfr.js +3 -1
- umap/static/umap/js/modules/importers/datasets.js +8 -6
- umap/static/umap/js/modules/importers/geodatamine.js +10 -10
- umap/static/umap/js/modules/importers/overpass.js +18 -14
- umap/static/umap/js/modules/rules.js +13 -1
- umap/static/umap/js/modules/schema.js +16 -12
- umap/static/umap/js/{umap.share.js → modules/share.js} +60 -99
- umap/static/umap/js/modules/slideshow.js +141 -0
- umap/static/umap/js/modules/tableeditor.js +329 -0
- umap/static/umap/js/modules/ui/base.js +93 -0
- umap/static/umap/js/modules/ui/contextmenu.js +50 -0
- umap/static/umap/js/modules/ui/dialog.js +169 -31
- umap/static/umap/js/modules/ui/panel.js +6 -4
- umap/static/umap/js/modules/ui/tooltip.js +5 -75
- umap/static/umap/js/modules/utils.js +20 -0
- umap/static/umap/js/umap.controls.js +1 -1
- umap/static/umap/js/umap.features.js +22 -14
- umap/static/umap/js/umap.forms.js +157 -154
- umap/static/umap/js/umap.js +48 -34
- umap/static/umap/js/umap.layer.js +232 -164
- umap/static/umap/js/umap.permissions.js +1 -1
- umap/static/umap/js/umap.popup.js +1 -1
- umap/static/umap/locale/am_ET.js +22 -5
- umap/static/umap/locale/am_ET.json +19 -5
- umap/static/umap/locale/ar.js +22 -5
- umap/static/umap/locale/ar.json +19 -5
- umap/static/umap/locale/ast.js +22 -5
- umap/static/umap/locale/ast.json +19 -5
- umap/static/umap/locale/bg.js +22 -5
- umap/static/umap/locale/bg.json +19 -5
- umap/static/umap/locale/br.js +22 -5
- umap/static/umap/locale/br.json +19 -5
- umap/static/umap/locale/ca.js +56 -39
- umap/static/umap/locale/ca.json +53 -39
- umap/static/umap/locale/cs_CZ.js +22 -5
- umap/static/umap/locale/cs_CZ.json +19 -5
- umap/static/umap/locale/da.js +22 -5
- umap/static/umap/locale/da.json +19 -5
- umap/static/umap/locale/de.js +22 -5
- umap/static/umap/locale/de.json +19 -5
- umap/static/umap/locale/el.js +27 -10
- umap/static/umap/locale/el.json +19 -5
- umap/static/umap/locale/en.js +22 -6
- umap/static/umap/locale/en.json +19 -5
- umap/static/umap/locale/en_US.json +19 -5
- umap/static/umap/locale/es.js +22 -6
- umap/static/umap/locale/es.json +19 -5
- umap/static/umap/locale/et.js +22 -5
- umap/static/umap/locale/et.json +19 -5
- umap/static/umap/locale/eu.js +167 -150
- umap/static/umap/locale/eu.json +167 -150
- umap/static/umap/locale/fa_IR.js +22 -5
- umap/static/umap/locale/fa_IR.json +19 -5
- umap/static/umap/locale/fi.js +22 -5
- umap/static/umap/locale/fi.json +19 -5
- umap/static/umap/locale/fr.js +22 -6
- umap/static/umap/locale/fr.json +19 -5
- umap/static/umap/locale/gl.js +22 -5
- umap/static/umap/locale/gl.json +19 -5
- umap/static/umap/locale/he.js +22 -5
- umap/static/umap/locale/he.json +19 -5
- umap/static/umap/locale/hr.js +22 -5
- umap/static/umap/locale/hr.json +19 -5
- umap/static/umap/locale/hu.js +89 -72
- umap/static/umap/locale/hu.json +89 -75
- umap/static/umap/locale/id.js +22 -5
- umap/static/umap/locale/id.json +19 -5
- umap/static/umap/locale/is.js +22 -5
- umap/static/umap/locale/is.json +19 -5
- umap/static/umap/locale/it.js +22 -5
- umap/static/umap/locale/it.json +19 -5
- umap/static/umap/locale/ja.js +22 -5
- umap/static/umap/locale/ja.json +19 -5
- umap/static/umap/locale/ko.js +22 -5
- umap/static/umap/locale/ko.json +19 -5
- umap/static/umap/locale/lt.js +22 -5
- umap/static/umap/locale/lt.json +19 -5
- umap/static/umap/locale/ms.js +22 -5
- umap/static/umap/locale/ms.json +19 -5
- umap/static/umap/locale/nl.js +22 -5
- umap/static/umap/locale/nl.json +19 -5
- umap/static/umap/locale/no.js +22 -5
- umap/static/umap/locale/no.json +19 -5
- umap/static/umap/locale/pl.js +22 -5
- umap/static/umap/locale/pl.json +19 -5
- umap/static/umap/locale/pl_PL.json +19 -5
- umap/static/umap/locale/pt.js +22 -6
- umap/static/umap/locale/pt.json +21 -7
- umap/static/umap/locale/pt_BR.js +22 -5
- umap/static/umap/locale/pt_BR.json +19 -5
- umap/static/umap/locale/pt_PT.js +22 -5
- umap/static/umap/locale/pt_PT.json +19 -5
- umap/static/umap/locale/ro.js +22 -5
- umap/static/umap/locale/ro.json +19 -5
- umap/static/umap/locale/ru.js +22 -5
- umap/static/umap/locale/ru.json +19 -5
- umap/static/umap/locale/sk_SK.js +22 -5
- umap/static/umap/locale/sk_SK.json +19 -5
- umap/static/umap/locale/sl.js +22 -5
- umap/static/umap/locale/sl.json +19 -5
- umap/static/umap/locale/sr.js +22 -5
- umap/static/umap/locale/sr.json +19 -5
- umap/static/umap/locale/sv.js +22 -5
- umap/static/umap/locale/sv.json +19 -5
- umap/static/umap/locale/th_TH.js +22 -5
- umap/static/umap/locale/th_TH.json +19 -5
- umap/static/umap/locale/tr.js +22 -5
- umap/static/umap/locale/tr.json +19 -5
- umap/static/umap/locale/uk_UA.js +22 -5
- umap/static/umap/locale/uk_UA.json +19 -5
- umap/static/umap/locale/vi.js +22 -5
- umap/static/umap/locale/vi.json +19 -5
- umap/static/umap/locale/vi_VN.json +19 -5
- umap/static/umap/locale/zh.js +22 -5
- umap/static/umap/locale/zh.json +19 -5
- umap/static/umap/locale/zh_CN.json +19 -5
- umap/static/umap/locale/zh_TW.Big5.json +19 -5
- umap/static/umap/locale/zh_TW.js +22 -5
- umap/static/umap/locale/zh_TW.json +19 -5
- umap/static/umap/map.css +2 -145
- umap/static/umap/vars.css +5 -0
- umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +410 -428
- umap/static/umap/vendors/geojson-to-gpx/index.js +155 -0
- umap/static/umap/vendors/osmtogeojson/osmtogeojson.js +1 -2
- umap/static/umap/vendors/togeojson/togeojson.es.js +1109 -0
- umap/static/umap/vendors/togeojson/{togeojson.umd.js.map → togeojson.es.mjs.map} +1 -1
- umap/static/umap/vendors/tokml/tokml.es.js +895 -0
- umap/static/umap/vendors/tokml/tokml.es.mjs.map +1 -0
- umap/storage.py +6 -2
- umap/templates/umap/components/alerts/alert.html +3 -3
- umap/templates/umap/css.html +3 -0
- umap/templates/umap/js.html +0 -6
- umap/tests/fixtures/categorized_highway.geojson +1 -0
- umap/tests/fixtures/test_import_osm_relation.json +130 -0
- umap/tests/integration/conftest.py +8 -1
- umap/tests/integration/test_browser.py +3 -2
- umap/tests/integration/test_categorized_layer.py +141 -0
- umap/tests/integration/test_conditional_rules.py +21 -0
- umap/tests/integration/test_datalayer.py +9 -4
- umap/tests/integration/test_edit_datalayer.py +1 -0
- umap/tests/integration/test_edit_polygon.py +1 -1
- umap/tests/integration/test_export_map.py +2 -3
- umap/tests/integration/test_import.py +22 -0
- umap/tests/integration/test_tableeditor.py +158 -4
- umap/tests/integration/test_websocket_sync.py +2 -2
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/METADATA +8 -8
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/RECORD +172 -162
- umap/static/umap/js/umap.slideshow.js +0 -163
- umap/static/umap/js/umap.tableeditor.js +0 -118
- umap/static/umap/vendors/togeojson/togeojson.umd.js +0 -2
- umap/static/umap/vendors/togpx/togpx.js +0 -547
- umap/static/umap/vendors/tokml/tokml.js +0 -343
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/WHEEL +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/entry_points.txt +0 -0
- {umap_project-2.4.2.dist-info → umap_project-2.5.1.dist-info}/licenses/LICENSE +0 -0
umap/static/umap/locale/eu.json
CHANGED
|
@@ -1,161 +1,159 @@
|
|
|
1
1
|
{
|
|
2
2
|
" (area: {measure})": "(area: {measure})",
|
|
3
|
-
" (length: {measure})": "(
|
|
4
|
-
"# one hash for main heading": "#
|
|
5
|
-
"## two hashes for second heading": "##
|
|
6
|
-
"### three hashes for third heading": "###
|
|
7
|
-
"**double star for bold**": "**
|
|
8
|
-
"*single star for italic*": "*
|
|
9
|
-
"--- for a horizontal rule": "---
|
|
10
|
-
"1 day": "1
|
|
11
|
-
"1 hour": "1
|
|
3
|
+
" (length: {measure})": "(luzera: {measure})",
|
|
4
|
+
"# one hash for main heading": "# traola bat goiburu nagusirako",
|
|
5
|
+
"## two hashes for second heading": "## bi traola bigarren goibururako",
|
|
6
|
+
"### three hashes for third heading": "### hiru traola hirugarren goibururako",
|
|
7
|
+
"**double star for bold**": "**izarño bikoitza letra loditzeko**",
|
|
8
|
+
"*single star for italic*": "*izarño bakarra letra etzatzeko*",
|
|
9
|
+
"--- for a horizontal rule": "--- lerro horizontala egiteko",
|
|
10
|
+
"1 day": "egun 1",
|
|
11
|
+
"1 hour": "ordu 1",
|
|
12
12
|
"5 min": "5 min",
|
|
13
|
-
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "
|
|
14
|
-
"About": "
|
|
15
|
-
"Action not allowed :(": "
|
|
16
|
-
"Activate slideshow mode": "
|
|
17
|
-
"Add a layer": "
|
|
18
|
-
"Add a line to the current multi": "
|
|
19
|
-
"Add a new property": "
|
|
20
|
-
"Add a polygon to the current multi": "
|
|
21
|
-
"Add image URL": "
|
|
22
|
-
"Add": "
|
|
23
|
-
"Advanced actions": "
|
|
24
|
-
"Advanced properties": "
|
|
25
|
-
"All data and settings of the map": "
|
|
26
|
-
"All properties are imported.": "
|
|
27
|
-
"Allow interactions": "
|
|
13
|
+
"A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Trazuaren marra eredua definitzen duen komaz bereizitako zenbakien zerrenda. Adib.: \"5, 10, 15\".",
|
|
14
|
+
"About": "Honi buruz",
|
|
15
|
+
"Action not allowed :(": "Ekintza hau ez da onartzen :(",
|
|
16
|
+
"Activate slideshow mode": "Aktibatu aurkezpen modua",
|
|
17
|
+
"Add a layer": "Gehitu geruza bat",
|
|
18
|
+
"Add a line to the current multi": "Gehitu lerro bat uneko multiari",
|
|
19
|
+
"Add a new property": "Gehitu jabe berri bat",
|
|
20
|
+
"Add a polygon to the current multi": "Gehitu poligono bat uneko multiari",
|
|
21
|
+
"Add image URL": "Gehitu irudiaren URLa",
|
|
22
|
+
"Add": "Gehitu",
|
|
23
|
+
"Advanced actions": "Ekintza aurreratuak",
|
|
24
|
+
"Advanced properties": "Propietate aurreratuak",
|
|
25
|
+
"All data and settings of the map": "Maparen datu eta ezarpen guztiak",
|
|
26
|
+
"All properties are imported.": "Propietate guztiak inportatu dira.",
|
|
27
|
+
"Allow interactions": "Baimendu interakzioak",
|
|
28
28
|
"Allow scroll wheel zoom?": "Saguaren errobera erabiliz zoom egitea baimendu?",
|
|
29
|
-
"always": "
|
|
30
|
-
"Animated transitions": "
|
|
31
|
-
"Are you sure you want to cancel your changes?": "
|
|
32
|
-
"Are you sure you want to clone this map and all its datalayers?": "
|
|
33
|
-
"Are you sure you want to delete the feature?": "
|
|
34
|
-
"Are you sure you want to delete this layer?": "
|
|
35
|
-
"Are you sure you want to delete this map?": "
|
|
36
|
-
"Are you sure you want to delete this property on all the features?": "
|
|
37
|
-
"Are you sure you want to restore this version?": "
|
|
38
|
-
"Attach the map to my account": "
|
|
39
|
-
"attribution": "
|
|
40
|
-
"Auto": "
|
|
29
|
+
"always": "beti",
|
|
30
|
+
"Animated transitions": "Trantsizio animatuak",
|
|
31
|
+
"Are you sure you want to cancel your changes?": "Ziur aldaketak bertan behera utzi nahi dituzula?",
|
|
32
|
+
"Are you sure you want to clone this map and all its datalayers?": "Ziur mapa hau eta bere datu-geruza guztiak klonatu nahi dituzula?",
|
|
33
|
+
"Are you sure you want to delete the feature?": "Ziur eginbidea ezabatu nahi duzula?",
|
|
34
|
+
"Are you sure you want to delete this layer?": "Ziur geruza hau ezabatu nahi duzula?",
|
|
35
|
+
"Are you sure you want to delete this map?": "Ziur mapa hau ezabatu nahi duzula?",
|
|
36
|
+
"Are you sure you want to delete this property on all the features?": "Ziur propietate hau eginbide guztietan ezabatu nahi duzula?",
|
|
37
|
+
"Are you sure you want to restore this version?": "Ziur bertsio hau leheneratu nahi duzula?",
|
|
38
|
+
"Attach the map to my account": "Erantsi mapa nire kontuan",
|
|
39
|
+
"attribution": "atribuzioa",
|
|
40
|
+
"Auto": "Automatikoa",
|
|
41
41
|
"Automatic": "Automatikoa",
|
|
42
|
-
"Autostart when map is loaded": "
|
|
43
|
-
"Back to preview": "
|
|
44
|
-
"Background overlay url": "
|
|
42
|
+
"Autostart when map is loaded": "Abiarazi automatikoki mapa kargatzen denean",
|
|
43
|
+
"Back to preview": "Itzuli aurrebistara",
|
|
44
|
+
"Background overlay url": "Atzeko planoan gainjartzeko URLa",
|
|
45
45
|
"Ball": "Baloia",
|
|
46
|
-
"Bring feature to center": "
|
|
47
|
-
"Browse data": "
|
|
48
|
-
"by": "
|
|
49
|
-
"Cache proxied request": "Cache
|
|
50
|
-
"Cancel edits": "
|
|
46
|
+
"Bring feature to center": "Ekarri funtzioa erdigunera",
|
|
47
|
+
"Browse data": "Arakatu datuak",
|
|
48
|
+
"by": "egilea",
|
|
49
|
+
"Cache proxied request": "Cache proxy eskaera",
|
|
50
|
+
"Cancel edits": "Utzi aldaketak",
|
|
51
51
|
"Caption": "Testua",
|
|
52
|
-
"Center map on your location": "
|
|
53
|
-
"Change map background": "
|
|
54
|
-
"Change tilelayers": "
|
|
55
|
-
"Change": "
|
|
52
|
+
"Center map on your location": "Zentratu mapa zure kokapenean",
|
|
53
|
+
"Change map background": "Aldatu maparen atzeko planoa",
|
|
54
|
+
"Change tilelayers": "Aldatu lauzen-geruzak",
|
|
55
|
+
"Change": "Aldatu",
|
|
56
56
|
"Choose the data format": "Aukeratu data-formatua",
|
|
57
|
-
"Choropleth breakpoints": "
|
|
58
|
-
"Choropleth classes": "
|
|
59
|
-
"Choropleth color palette": "
|
|
60
|
-
"Choropleth mode": "
|
|
61
|
-
"Choropleth property value": "
|
|
62
|
-
"Choropleth": "
|
|
57
|
+
"Choropleth breakpoints": "Koropletaren eten-puntuak",
|
|
58
|
+
"Choropleth classes": "Koropleta motak",
|
|
59
|
+
"Choropleth color palette": "Koropletaren kolore paleta",
|
|
60
|
+
"Choropleth mode": "Koropleta mota",
|
|
61
|
+
"Choropleth property value": "Koropletaren jabetza-balioa",
|
|
62
|
+
"Choropleth": "Koropleta",
|
|
63
63
|
"Circle": "Borobila",
|
|
64
|
-
"clear": "
|
|
65
|
-
"Click last point to finish shape": "
|
|
66
|
-
"Click to add a marker": "
|
|
67
|
-
"Click to continue drawing": "
|
|
68
|
-
"Click to edit": "
|
|
69
|
-
"Click to start drawing a line": "
|
|
70
|
-
"Click to start drawing a polygon": "
|
|
71
|
-
"Clone of {name}": "
|
|
72
|
-
"Clone this feature": "
|
|
73
|
-
"Clone this map": "
|
|
74
|
-
"Clone": "
|
|
75
|
-
"Close": "
|
|
64
|
+
"clear": "garbitu",
|
|
65
|
+
"Click last point to finish shape": "Egin klik azken puntuan forma amaitzeko",
|
|
66
|
+
"Click to add a marker": "Egin klik markatzaile bat gehitzeko",
|
|
67
|
+
"Click to continue drawing": "Egin klik marrazten jarraitzeko",
|
|
68
|
+
"Click to edit": "Egin klik editatzeko",
|
|
69
|
+
"Click to start drawing a line": "Egin klik lerro bat marrazten hasteko",
|
|
70
|
+
"Click to start drawing a polygon": "Egin klik poligono bat marrazten hasteko",
|
|
71
|
+
"Clone of {name}": "{name}-ren klona",
|
|
72
|
+
"Clone this feature": "Klonatu eginbide hau",
|
|
73
|
+
"Clone this map": "Klonatu mapa hau",
|
|
74
|
+
"Clone": "Klonatu",
|
|
75
|
+
"Close": "Itxi",
|
|
76
76
|
"Clustered": "Taldekatuta",
|
|
77
|
-
"Clustering radius": "
|
|
78
|
-
"collapsed": "
|
|
79
|
-
"color": "
|
|
80
|
-
"Comma separated list of numbers, including min and max values.": "
|
|
81
|
-
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "
|
|
82
|
-
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "
|
|
83
|
-
"Congratulations, your map has been created!": "
|
|
84
|
-
"Continue line": "
|
|
85
|
-
"Coordinates": "
|
|
86
|
-
"copy": "
|
|
87
|
-
"Credits": "
|
|
88
|
-
"Current map view": "
|
|
89
|
-
"Current view instead of default map view?": "
|
|
90
|
-
"Custom background": "
|
|
91
|
-
"Custom overlay": "
|
|
92
|
-
"dash array": "
|
|
93
|
-
"Data is browsable": "
|
|
94
|
-
"Datalayers": "
|
|
95
|
-
"Default interaction options": "
|
|
96
|
-
"Default properties": "
|
|
97
|
-
"Default shape properties": "
|
|
98
|
-
"Default view": "
|
|
99
|
-
"Default zoom level": "
|
|
100
|
-
"Default": "
|
|
101
|
-
"Default: name": "
|
|
102
|
-
"Define link to open in a new window on polygon click.": "
|
|
103
|
-
"define": "
|
|
104
|
-
"Delay between two transitions when in play mode": "
|
|
105
|
-
"Delete
|
|
106
|
-
"Delete
|
|
107
|
-
"Delete this
|
|
108
|
-
"Delete this
|
|
109
|
-
"Delete
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"Display
|
|
117
|
-
"
|
|
118
|
-
"Display
|
|
119
|
-
"Display the control
|
|
120
|
-
"Display the
|
|
121
|
-
"Display the
|
|
122
|
-
"Display the
|
|
123
|
-
"Display the
|
|
124
|
-
"Display the
|
|
125
|
-
"Display the
|
|
126
|
-
"Display the
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"Do you want to display a
|
|
130
|
-
"Do you want to display
|
|
131
|
-
"Do you want to display
|
|
132
|
-
"Do you want to display
|
|
133
|
-
"Do you want to display
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"Draw a
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
"
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"Edit
|
|
146
|
-
"Edit
|
|
147
|
-
"Edit
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"Embed and link options": "Embed and link options",
|
|
151
|
-
"Embed the map": "Embed the map",
|
|
77
|
+
"Clustering radius": "Taldearen erradioa",
|
|
78
|
+
"collapsed": "taldekatua",
|
|
79
|
+
"color": "kolorea",
|
|
80
|
+
"Comma separated list of numbers, including min and max values.": "Komaz bereizitako zenbakien zerrenda, gutxieneko eta gehienezko balioak barne.",
|
|
81
|
+
"Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Komaz bereizitako propietateen zerrenda ordenatzeko irizpide gisa erabiltzeko. Ordena aldatzeko, jarri minus ikurra (-) aurretik. Adib. niretekla,-bestetekla.",
|
|
82
|
+
"Comma, tab or semi-colon separated values. SRS WGS84 is implied. Only Point geometries are imported. The import will look at the column headers for any mention of «lat» and «lon» at the begining of the header, case insensitive. All other column are imported as properties.": "Koma, tabulazioa edo puntu eta komaz bereizitako balioak. SRS WGS84 inplizitua dago. Puntuen geometriak bakarrik inportatzen dira. Inportazioak zutabeen goiburuak aztertuko ditu goiburuaren hasieran «lat» eta «lon» aipatzearren, maiuskulak eta minuskulak bereizten dituena. Beste zutabe guztiak propietate gisa inportatzen dira.",
|
|
83
|
+
"Congratulations, your map has been created!": "Zorionak, zure mapa ondo sortu da!",
|
|
84
|
+
"Continue line": "Lerro jarrai",
|
|
85
|
+
"Coordinates": "Koordenatuak",
|
|
86
|
+
"copy": "kopiatu",
|
|
87
|
+
"Credits": "Kredituak",
|
|
88
|
+
"Current map view": "Uneko maparen ikuspegia",
|
|
89
|
+
"Current view instead of default map view?": "Uneko ikuspegia maparen ikuspegi lehenetsiaren ordez?",
|
|
90
|
+
"Custom background": "Atzeko plano pertsonalizatua",
|
|
91
|
+
"Custom overlay": "Gainjartze pertsonalizatua",
|
|
92
|
+
"dash array": "marren matrizea",
|
|
93
|
+
"Data is browsable": "Datuak araka daitezke",
|
|
94
|
+
"Datalayers": "Datu-geruzak",
|
|
95
|
+
"Default interaction options": "Interakzio-aukera lehenetsiak",
|
|
96
|
+
"Default properties": "Propietate lehenetsiak",
|
|
97
|
+
"Default shape properties": "Formen propietate lehenetsiak",
|
|
98
|
+
"Default view": "Ikuspegi lehenetsia",
|
|
99
|
+
"Default zoom level": "Zoom maila lehenetsia",
|
|
100
|
+
"Default": "Lehenetsia",
|
|
101
|
+
"Default: name": "Lehenetsia: izena",
|
|
102
|
+
"Define link to open in a new window on polygon click.": "Definitu esteka poligonoan klik eginez leiho berri batean irekitzeko.",
|
|
103
|
+
"define": "definitu",
|
|
104
|
+
"Delay between two transitions when in play mode": "Bi trantsizioren arteko atzerapena erreprodukzio moduan dagoenean",
|
|
105
|
+
"Delete layer": "Ezabatu geruza",
|
|
106
|
+
"Delete this feature": "Ezabatu eginbide hau",
|
|
107
|
+
"Delete this shape": "Ezabatu forma hau",
|
|
108
|
+
"Delete this vertex (Alt+Click)": "Ezabatu erpin hau (Alt+Klik)",
|
|
109
|
+
"Delete": "Ezabatu",
|
|
110
|
+
"description": "deskribapena",
|
|
111
|
+
"Direct link": "Esteka zuzena",
|
|
112
|
+
"Directions from here": "Hemendik jarraibideak",
|
|
113
|
+
"Display label": "Bistaratu etiketa",
|
|
114
|
+
"Display measure": "Bistaratu neurria",
|
|
115
|
+
"display name": "bistaratu izena",
|
|
116
|
+
"Display on load": "Bistaratu kargatzean",
|
|
117
|
+
"Display the control to open OpenStreetMap editor": "Bistaratu OpenStreetMap editorea irekitzeko kontrola",
|
|
118
|
+
"Display the data layers control": "Bistaratu datu-geruzen kontrola",
|
|
119
|
+
"Display the embed control": "Bistaratu kapsulatzeko kontrola",
|
|
120
|
+
"Display the fullscreen control": "Bistaratu pantaila osoko kontrola",
|
|
121
|
+
"Display the locate control": "Bistaratu lokalizazio kontrola",
|
|
122
|
+
"Display the measure control": "Bistaratu neurrien kontrola",
|
|
123
|
+
"Display the search control": "Bistaratu bilaketa-kontrola",
|
|
124
|
+
"Display the star map button": "Bistaratu izarren maparen botoia",
|
|
125
|
+
"Display the tile layers control": "Bistaratu lauza-geruzaren kontrola",
|
|
126
|
+
"Display the zoom control": "Bistaratu zoom kontrola",
|
|
127
|
+
"Do you want to display a caption bar?": "Epigrafeen barra bistaratu nahi duzu?",
|
|
128
|
+
"Do you want to display a minimap?": "Minimapa erakutsi nahi duzu?",
|
|
129
|
+
"Do you want to display a panel on load?": "Kargatzean panel bat bistaratu nahi duzu?",
|
|
130
|
+
"Do you want to display caption menus?": "Epigrafeen menuak erakutsi nahi dituzu?",
|
|
131
|
+
"Do you want to display popup footer?": "Popup-oina bistaratu nahi duzu?",
|
|
132
|
+
"Do you want to display the scale control?": "Eskalaren kontrola bistaratu nahi duzu?",
|
|
133
|
+
"Do you want to display the «more» control?": "«Gehiago» kontrola bistaratu nahi duzu?",
|
|
134
|
+
"Download": "Deskargatu",
|
|
135
|
+
"Drag to reorder": "Arrastatu berrantolatzeko",
|
|
136
|
+
"Draw a marker": "Marraztu markatzaile bat",
|
|
137
|
+
"Draw a polygon": "Marraztu poligono bat",
|
|
138
|
+
"Draw a polyline": "Marraztu polilinea bat",
|
|
139
|
+
"Drawing": "Marrazten",
|
|
140
|
+
"Drop": "Jaregin",
|
|
141
|
+
"Dynamic properties": "Propietate dinamikoak",
|
|
142
|
+
"Dynamic": "Dinamikoa",
|
|
143
|
+
"Edit feature's layer": "Editatu eginbideen geruza",
|
|
144
|
+
"Edit properties in a table": "Editatu propietateak taula batean",
|
|
145
|
+
"Edit the title of the map": "Editatu maparen izenburua",
|
|
146
|
+
"Edit this feature": "Editatu eginbide hau",
|
|
147
|
+
"Edit": "Editatu",
|
|
148
|
+
"Embed and link options": "Kapsulatzeko eta estekatzeko aukerak",
|
|
149
|
+
"Embed the map": "Kapsulatu mapa",
|
|
152
150
|
"Emoji & Character": "Emoji & Character",
|
|
153
|
-
"Empty": "
|
|
154
|
-
"Equidistant": "
|
|
155
|
-
"Error in the overlay URL": "
|
|
156
|
-
"Error in the tilelayer URL": "
|
|
157
|
-
"Exit Fullscreen": "
|
|
158
|
-
"expanded": "
|
|
151
|
+
"Empty": "Hutsa",
|
|
152
|
+
"Equidistant": "Ekidistantea",
|
|
153
|
+
"Error in the overlay URL": "Errorea gainjarritako URLan",
|
|
154
|
+
"Error in the tilelayer URL": "Errore bat lauza-geruzaren URLan",
|
|
155
|
+
"Exit Fullscreen": "Irten pantaila osotik",
|
|
156
|
+
"expanded": "hedatua",
|
|
159
157
|
"Extract shape to separate feature": "Extract shape to separate feature",
|
|
160
158
|
"Feature identifier key": "Feature identifier key",
|
|
161
159
|
"Feature properties": "Feature properties",
|
|
@@ -202,7 +200,6 @@
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Invalid umap data in {filename}",
|
|
204
202
|
"Invalid umap data": "Invalid umap data",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Keep current visible layers",
|
|
@@ -301,7 +298,6 @@
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Remote data",
|
|
303
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
304
|
-
"Rename this property on all the features": "Rename this property on all the features",
|
|
305
301
|
"Replace layer content": "Replace layer content",
|
|
306
302
|
"Restore this version": "Restore this version",
|
|
307
303
|
"Save current edits": "Save current edits",
|
|
@@ -481,5 +477,26 @@
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"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
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
umap/static/umap/locale/fa_IR.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "پیوندی را باز کنید که در یک پنجره جدید با کلیک چند ضلعی باز می شود.",
|
|
103
103
|
"define": "تعريف كردن",
|
|
104
104
|
"Delay between two transitions when in play mode": "تأخیر بین دو انتقال در حالت پخش",
|
|
105
|
-
"Delete all layers": "حذف همه لایه ها",
|
|
106
105
|
"Delete layer": "حذف لایه",
|
|
107
106
|
"Delete this feature": "این ویژگی را حذف کنید",
|
|
108
|
-
"Delete this property on all the features": "این ویژگی را در همه ویژگی ها حذف کنید",
|
|
109
107
|
"Delete this shape": "این شکل را حذف کنید",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "حذف این راس (Alt+Click)",
|
|
111
109
|
"Delete": "حذف",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "طول یا عرض جغرافیایی نامعتبر است",
|
|
203
201
|
"Invalid umap data in {filename}": "داده های umap نامعتبر در {نام فایل}",
|
|
204
202
|
"Invalid umap data": "داده های umap نامعتبر است",
|
|
205
|
-
"Invalide property name: {name}": "نام دارایی معتبر نیست: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "لایه های قابل مشاهده فعلی را حفظ کنید",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "داده های از راه دور",
|
|
303
300
|
"Remove shape from the multi": "حذف شکل از مولتی",
|
|
304
|
-
"Rename this property on all the features": "نام این ویژگی را در همه ویژگی ها تغییر دهید",
|
|
305
301
|
"Replace layer content": "جایگزینی محتوای لایه",
|
|
306
302
|
"Restore this version": "این نسخه را بازیابی کنید",
|
|
307
303
|
"Save current edits": "ویرایش های فعلی را ذخیره کنید",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"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
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("fa_IR", locale)
|
|
487
504
|
L.setLocale("fa_IR")
|
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "تأخیر بین دو انتقال در حالت پخش",
|
|
105
105
|
"Delete layer": "حذف لایه",
|
|
106
106
|
"Delete this feature": "این ویژگی را حذف کنید",
|
|
107
|
-
"Delete this property on all the features": "این ویژگی را در همه ویژگی ها حذف کنید",
|
|
108
107
|
"Delete this shape": "این شکل را حذف کنید",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "حذف این راس (Alt+Click)",
|
|
110
109
|
"Delete": "حذف",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "طول یا عرض جغرافیایی نامعتبر است",
|
|
202
201
|
"Invalid umap data in {filename}": "داده های umap نامعتبر در {نام فایل}",
|
|
203
202
|
"Invalid umap data": "داده های umap نامعتبر است",
|
|
204
|
-
"Invalide property name: {name}": "نام دارایی معتبر نیست: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "لایه های قابل مشاهده فعلی را حفظ کنید",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "داده های از راه دور",
|
|
302
300
|
"Remove shape from the multi": "حذف شکل از مولتی",
|
|
303
|
-
"Rename this property on all the features": "نام این ویژگی را در همه ویژگی ها تغییر دهید",
|
|
304
301
|
"Replace layer content": "جایگزینی محتوای لایه",
|
|
305
302
|
"Restore this version": "این نسخه را بازیابی کنید",
|
|
306
303
|
"Save current edits": "ویرایش های فعلی را ذخیره کنید",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"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",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|
umap/static/umap/locale/fi.js
CHANGED
|
@@ -102,10 +102,8 @@ const locale = {
|
|
|
102
102
|
"Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
|
|
103
103
|
"define": "määritä",
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
|
-
"Delete all layers": "Poista kaikki kerrokset",
|
|
106
105
|
"Delete layer": "Poista kerros",
|
|
107
106
|
"Delete this feature": "Poista tämä piirre",
|
|
108
|
-
"Delete this property on all the features": "Poista tämä ominaisuus kaikista piirteistä",
|
|
109
107
|
"Delete this shape": "Poista tämä muoto",
|
|
110
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
111
109
|
"Delete": "Poista",
|
|
@@ -202,7 +200,6 @@ const locale = {
|
|
|
202
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
203
201
|
"Invalid umap data in {filename}": "Virheellistä uMap-dataa {filename}:ssa",
|
|
204
202
|
"Invalid umap data": "Virheellistä uMap-dataa",
|
|
205
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
206
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
207
204
|
"K-means": "K-means",
|
|
208
205
|
"Keep current visible layers": "Pidä nyt näkyvät datakerrokset",
|
|
@@ -301,7 +298,6 @@ const locale = {
|
|
|
301
298
|
"Recent": "Recent",
|
|
302
299
|
"Remote data": "Etä-tiedot",
|
|
303
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
304
|
-
"Rename this property on all the features": "Uudelleen nimeä tämä ominaisuus kaikissa piirteissä",
|
|
305
301
|
"Replace layer content": "Korvaa kerroksen sisältö",
|
|
306
302
|
"Restore this version": "Palauta tämä versio",
|
|
307
303
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
@@ -481,7 +477,28 @@ const locale = {
|
|
|
481
477
|
"Only geometry centers": "Only geometry centers",
|
|
482
478
|
"Search area": "Search area",
|
|
483
479
|
"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
|
-
"
|
|
480
|
+
"Data successfully imported!": "Data successfully imported!",
|
|
481
|
+
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
482
|
+
"Clear data": "Clear data",
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
485
502
|
}
|
|
486
503
|
L.registerLocale("fi", locale)
|
|
487
504
|
L.setLocale("fi")
|
umap/static/umap/locale/fi.json
CHANGED
|
@@ -104,7 +104,6 @@
|
|
|
104
104
|
"Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
|
|
105
105
|
"Delete layer": "Poista kerros",
|
|
106
106
|
"Delete this feature": "Poista tämä piirre",
|
|
107
|
-
"Delete this property on all the features": "Poista tämä ominaisuus kaikista piirteistä",
|
|
108
107
|
"Delete this shape": "Poista tämä muoto",
|
|
109
108
|
"Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
|
|
110
109
|
"Delete": "Poista",
|
|
@@ -201,7 +200,6 @@
|
|
|
201
200
|
"Invalid latitude or longitude": "Invalid latitude or longitude",
|
|
202
201
|
"Invalid umap data in {filename}": "Virheellistä uMap-dataa {filename}:ssa",
|
|
203
202
|
"Invalid umap data": "Virheellistä uMap-dataa",
|
|
204
|
-
"Invalide property name: {name}": "Invalide property name: {name}",
|
|
205
203
|
"Jenks-Fisher": "Jenks-Fisher",
|
|
206
204
|
"K-means": "K-means",
|
|
207
205
|
"Keep current visible layers": "Pidä nyt näkyvät datakerrokset",
|
|
@@ -300,7 +298,6 @@
|
|
|
300
298
|
"Recent": "Recent",
|
|
301
299
|
"Remote data": "Etä-tiedot",
|
|
302
300
|
"Remove shape from the multi": "Remove shape from the multi",
|
|
303
|
-
"Rename this property on all the features": "Uudelleen nimeä tämä ominaisuus kaikissa piirteissä",
|
|
304
301
|
"Replace layer content": "Korvaa kerroksen sisältö",
|
|
305
302
|
"Restore this version": "Palauta tämä versio",
|
|
306
303
|
"Save current edits": "Tallenna tämänhetkiset muokkaukset",
|
|
@@ -480,9 +477,26 @@
|
|
|
480
477
|
"Only geometry centers": "Only geometry centers",
|
|
481
478
|
"Search area": "Search area",
|
|
482
479
|
"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",
|
|
483
|
-
"Please define an expression for the query first": "Please define an expression for the query first",
|
|
484
480
|
"Data successfully imported!": "Data successfully imported!",
|
|
485
481
|
"My Dashboard ({username})": "My Dashboard ({username})",
|
|
486
482
|
"Clear data": "Clear data",
|
|
487
|
-
"Remove layers": "Remove layers"
|
|
483
|
+
"Remove layers": "Remove layers",
|
|
484
|
+
"Categorized": "Categorized",
|
|
485
|
+
"Alphabetical": "Alphabetical",
|
|
486
|
+
"Category property": "Category property",
|
|
487
|
+
"Color palette": "Color palette",
|
|
488
|
+
"Categories": "Categories",
|
|
489
|
+
"Comma separated list of categories.": "Comma separated list of categories.",
|
|
490
|
+
"Categories mode": "Categories mode",
|
|
491
|
+
"Remove filter for this column": "Remove filter for this column",
|
|
492
|
+
"Add filter for this column": "Add filter for this column",
|
|
493
|
+
"Rename this column": "Rename this column",
|
|
494
|
+
"Delete this column": "Delete this column",
|
|
495
|
+
"Name “{name}” should not contain a dot.": "Name “{name}” should not contain a dot.",
|
|
496
|
+
"This name already exists: “{name}”": "This name already exists: “{name}”",
|
|
497
|
+
"Delete selected rows": "Delete selected rows",
|
|
498
|
+
"Found {count} rows. Are you sure you want to delete all?": "Found {count} rows. Are you sure you want to delete all?",
|
|
499
|
+
"Expression is empty": "Expression is empty",
|
|
500
|
+
"OK": "OK",
|
|
501
|
+
"Cancel": "Cancel"
|
|
488
502
|
}
|