umap-project 2.1.3__py3-none-any.whl → 2.2.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.

Files changed (200) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +8 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +43 -156
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +97 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +149 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.autocomplete.js +40 -25
  36. umap/static/umap/js/umap.controls.js +227 -369
  37. umap/static/umap/js/umap.core.js +77 -366
  38. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  39. umap/static/umap/js/umap.features.js +62 -42
  40. umap/static/umap/js/umap.forms.js +128 -36
  41. umap/static/umap/js/umap.icon.js +11 -4
  42. umap/static/umap/js/umap.importer.js +78 -57
  43. umap/static/umap/js/umap.js +179 -156
  44. umap/static/umap/js/umap.layer.js +79 -40
  45. umap/static/umap/js/umap.permissions.js +13 -9
  46. umap/static/umap/js/umap.popup.js +26 -30
  47. umap/static/umap/js/umap.share.js +12 -9
  48. umap/static/umap/js/umap.tableeditor.js +4 -6
  49. umap/static/umap/js/umap.ui.js +10 -60
  50. umap/static/umap/locale/am_ET.js +243 -227
  51. umap/static/umap/locale/am_ET.json +21 -9
  52. umap/static/umap/locale/ar.js +243 -227
  53. umap/static/umap/locale/ar.json +21 -9
  54. umap/static/umap/locale/ast.js +243 -227
  55. umap/static/umap/locale/ast.json +21 -9
  56. umap/static/umap/locale/bg.js +243 -227
  57. umap/static/umap/locale/bg.json +21 -9
  58. umap/static/umap/locale/br.js +253 -237
  59. umap/static/umap/locale/br.json +25 -13
  60. umap/static/umap/locale/ca.js +243 -227
  61. umap/static/umap/locale/ca.json +21 -9
  62. umap/static/umap/locale/cs_CZ.js +243 -227
  63. umap/static/umap/locale/cs_CZ.json +21 -9
  64. umap/static/umap/locale/da.js +243 -227
  65. umap/static/umap/locale/da.json +21 -9
  66. umap/static/umap/locale/de.js +243 -227
  67. umap/static/umap/locale/de.json +21 -9
  68. umap/static/umap/locale/el.js +243 -227
  69. umap/static/umap/locale/el.json +21 -9
  70. umap/static/umap/locale/en.js +243 -234
  71. umap/static/umap/locale/en.json +22 -10
  72. umap/static/umap/locale/en_US.json +21 -9
  73. umap/static/umap/locale/es.js +243 -227
  74. umap/static/umap/locale/es.json +21 -9
  75. umap/static/umap/locale/et.js +243 -227
  76. umap/static/umap/locale/et.json +21 -9
  77. umap/static/umap/locale/eu.js +227 -199
  78. umap/static/umap/locale/eu.json +1 -1
  79. umap/static/umap/locale/fa_IR.js +243 -227
  80. umap/static/umap/locale/fa_IR.json +21 -9
  81. umap/static/umap/locale/fi.js +243 -227
  82. umap/static/umap/locale/fi.json +21 -9
  83. umap/static/umap/locale/fr.js +243 -234
  84. umap/static/umap/locale/fr.json +21 -9
  85. umap/static/umap/locale/gl.js +243 -227
  86. umap/static/umap/locale/gl.json +21 -9
  87. umap/static/umap/locale/he.js +243 -227
  88. umap/static/umap/locale/he.json +21 -9
  89. umap/static/umap/locale/hr.js +243 -227
  90. umap/static/umap/locale/hr.json +21 -9
  91. umap/static/umap/locale/hu.js +243 -234
  92. umap/static/umap/locale/hu.json +21 -9
  93. umap/static/umap/locale/id.js +243 -227
  94. umap/static/umap/locale/id.json +21 -9
  95. umap/static/umap/locale/is.js +243 -227
  96. umap/static/umap/locale/is.json +21 -9
  97. umap/static/umap/locale/it.js +243 -234
  98. umap/static/umap/locale/it.json +21 -9
  99. umap/static/umap/locale/ja.js +243 -227
  100. umap/static/umap/locale/ja.json +21 -9
  101. umap/static/umap/locale/ko.js +243 -227
  102. umap/static/umap/locale/ko.json +21 -9
  103. umap/static/umap/locale/lt.js +243 -227
  104. umap/static/umap/locale/lt.json +21 -9
  105. umap/static/umap/locale/ms.js +243 -234
  106. umap/static/umap/locale/ms.json +22 -10
  107. umap/static/umap/locale/nl.js +246 -230
  108. umap/static/umap/locale/nl.json +21 -9
  109. umap/static/umap/locale/no.js +243 -227
  110. umap/static/umap/locale/no.json +21 -9
  111. umap/static/umap/locale/pl.js +243 -227
  112. umap/static/umap/locale/pl.json +21 -9
  113. umap/static/umap/locale/pl_PL.json +21 -9
  114. umap/static/umap/locale/pt.js +243 -227
  115. umap/static/umap/locale/pt.json +21 -9
  116. umap/static/umap/locale/pt_BR.js +243 -227
  117. umap/static/umap/locale/pt_BR.json +21 -9
  118. umap/static/umap/locale/pt_PT.js +243 -227
  119. umap/static/umap/locale/pt_PT.json +21 -9
  120. umap/static/umap/locale/ro.js +243 -227
  121. umap/static/umap/locale/ro.json +21 -9
  122. umap/static/umap/locale/ru.js +243 -227
  123. umap/static/umap/locale/ru.json +21 -9
  124. umap/static/umap/locale/si.js +1 -1
  125. umap/static/umap/locale/si.json +1 -1
  126. umap/static/umap/locale/sk_SK.js +243 -227
  127. umap/static/umap/locale/sk_SK.json +21 -9
  128. umap/static/umap/locale/sl.js +243 -227
  129. umap/static/umap/locale/sl.json +21 -9
  130. umap/static/umap/locale/sr.js +243 -227
  131. umap/static/umap/locale/sr.json +21 -9
  132. umap/static/umap/locale/sv.js +243 -227
  133. umap/static/umap/locale/sv.json +21 -9
  134. umap/static/umap/locale/th_TH.js +243 -227
  135. umap/static/umap/locale/th_TH.json +21 -9
  136. umap/static/umap/locale/tr.js +243 -227
  137. umap/static/umap/locale/tr.json +21 -9
  138. umap/static/umap/locale/uk_UA.js +243 -227
  139. umap/static/umap/locale/uk_UA.json +21 -9
  140. umap/static/umap/locale/vi.js +243 -227
  141. umap/static/umap/locale/vi.json +21 -9
  142. umap/static/umap/locale/vi_VN.json +21 -9
  143. umap/static/umap/locale/zh.js +243 -227
  144. umap/static/umap/locale/zh.json +21 -9
  145. umap/static/umap/locale/zh_CN.json +21 -9
  146. umap/static/umap/locale/zh_TW.Big5.json +21 -9
  147. umap/static/umap/locale/zh_TW.js +243 -234
  148. umap/static/umap/locale/zh_TW.json +21 -9
  149. umap/static/umap/map.css +124 -264
  150. umap/static/umap/test/DataLayer.js +463 -0
  151. umap/static/umap/test/Feature.js +0 -226
  152. umap/static/umap/test/TableEditor.js +104 -0
  153. umap/static/umap/test/Util.js +0 -521
  154. umap/static/umap/test/index.html +0 -1
  155. umap/static/umap/unittests/URLs.js +1 -1
  156. umap/static/umap/unittests/utils.js +610 -0
  157. umap/static/umap/vars.css +9 -0
  158. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  159. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
  160. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  161. umap/templates/umap/css.html +2 -0
  162. umap/templates/umap/js.html +0 -1
  163. umap/templates/umap/map_detail.html +4 -0
  164. umap/templates/umap/map_table.html +12 -10
  165. umap/templatetags/umap_tags.py +5 -0
  166. umap/tests/integration/conftest.py +12 -1
  167. umap/tests/integration/test_anonymous_owned_map.py +27 -5
  168. umap/tests/integration/test_basics.py +21 -0
  169. umap/tests/integration/test_browser.py +12 -25
  170. umap/tests/integration/test_choropleth.py +1 -1
  171. umap/tests/integration/test_dashboard.py +10 -0
  172. umap/tests/integration/test_datalayer.py +8 -6
  173. umap/tests/integration/test_edit_datalayer.py +24 -19
  174. umap/tests/integration/test_edit_map.py +189 -2
  175. umap/tests/integration/test_edit_marker.py +120 -0
  176. umap/tests/integration/test_edit_polygon.py +122 -0
  177. umap/tests/integration/test_facets_browser.py +104 -14
  178. umap/tests/integration/test_import.py +72 -20
  179. umap/tests/integration/test_map.py +19 -17
  180. umap/tests/integration/test_map_list.py +28 -0
  181. umap/tests/integration/test_owned_map.py +10 -10
  182. umap/tests/integration/test_picto.py +5 -5
  183. umap/tests/integration/test_querystring.py +9 -15
  184. umap/tests/integration/test_slideshow.py +0 -5
  185. umap/tests/integration/test_statics.py +3 -2
  186. umap/tests/integration/test_tableeditor.py +1 -5
  187. umap/tests/integration/test_tilelayer.py +10 -0
  188. umap/tests/integration/test_view_marker.py +64 -0
  189. umap/tests/integration/test_view_polygon.py +59 -0
  190. umap/tests/integration/test_view_polyline.py +51 -0
  191. umap/tests/test_map_views.py +13 -0
  192. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/METADATA +12 -12
  193. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/RECORD +198 -182
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/WHEEL +1 -1
  195. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  196. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  197. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  198. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  199. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/entry_points.txt +0 -0
  200. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "Voleu permetre el zoom amb la roda de desplaçament?",
3
- "Automatic": "Automatic",
4
- "Ball": "Bola",
5
- "Cancel": "Cancel·la",
6
- "Caption": "Llegenda",
7
- "Choose the data format": "Trieu el format de dades",
8
- "Choose the layer of the feature": "Trieu la capa de la característica",
9
- "Circle": "Cercle",
10
- "Clustered": "Clustered",
11
- "Data browser": "Data browser",
12
- "Default": "Per defecte",
13
- "Default zoom level": "Default zoom level",
14
- "Default: name": "Default: name",
15
- "Display label": "Display label",
16
- "Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
17
- "Display the data layers control": "Display the data layers control",
18
- "Display the embed control": "Display the embed control",
19
- "Display the fullscreen control": "Display the fullscreen control",
20
- "Display the locate control": "Display the locate control",
21
- "Display the measure control": "Display the measure control",
22
- "Display the search control": "Display the search control",
23
- "Display the tile layers control": "Display the tile layers control",
24
- "Display the zoom control": "Display the zoom control",
25
- "Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
26
- "Do you want to display a minimap?": "Voleu mostrar un minimapa?",
27
- "Do you want to display a panel on load?": "Voleu mostrar el quandre en carregar?",
28
- "Do you want to display popup footer?": "Voleu mostrar un peu emergent?",
29
- "Do you want to display the scale control?": "Voleu mostrar el control d'escala?",
30
- "Do you want to display the «more» control?": "Do you want to display the «more» control?",
31
- "Drop": "Deixar",
32
- "GeoRSS (only link)": "GeoRSS (només enllaç)",
33
- "GeoRSS (title + image)": "GeoRSS (títol i imatge)",
34
- "Heatmap": "Heatmap",
35
- "Icon shape": "Icon shape",
36
- "Icon symbol": "Icon symbol",
37
- "Inherit": "Hereta",
38
- "Label direction": "Label direction",
39
- "Label key": "Label key",
40
- "Labels are clickable": "Labels are clickable",
41
- "None": "Cap",
42
- "On the bottom": "On the bottom",
43
- "On the left": "On the left",
44
- "On the right": "On the right",
45
- "On the top": "On the top",
46
- "Popup content template": "Popup content template",
47
- "Side panel": "Side panel",
48
- "Simplify": "Simplify",
49
- "Table": "Taula",
50
- "always": "always",
51
- "clear": "clear",
52
- "collapsed": "collapsed",
53
- "color": "color",
54
- "dash array": "dash array",
55
- "define": "define",
56
- "description": "descripció",
57
- "expanded": "expanded",
58
- "fill": "emplena",
59
- "fill color": "emplena el color",
60
- "fill opacity": "opacitat d'emplenament",
61
- "hidden": "hidden",
62
- "iframe": "iframe",
63
- "inherit": "heretat",
64
- "name": "nom",
65
- "never": "never",
66
- "new window": "new window",
67
- "no": "no",
68
- "on hover": "en passar per sobre",
69
- "opacity": "opacitat",
70
- "parent window": "parent window",
71
- "stroke": "stroke",
72
- "weight": "pes",
73
- "yes": "sí",
74
- "{delay} seconds": "{delay} seconds",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# one hash for main heading",
76
5
  "## two hashes for second heading": "## dos coixinets per a capçalera secundària",
77
6
  "### three hashes for third heading": "### three hashes for third heading",
78
7
  "**double star for bold**": "**doble asteric per a negreta**",
8
+ "*single star for italic*": "*single star for italic*",
9
+ "--- for a horizontal rule": "--- for a horizontal rule",
10
+ "1 day": "1 dia",
11
+ "1 hour": "1 hora",
12
+ "5 min": "5 min",
79
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".",
80
14
  "About": "Quant a",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "Activate slideshow mode",
82
17
  "Add a layer": "Afegeix una capa",
83
18
  "Add a line to the current multi": "Add a line to the current multi",
84
19
  "Add a new property": "Add a new property",
85
20
  "Add a polygon to the current multi": "Add a polygon to the current multi",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Add",
86
23
  "Advanced actions": "Opcions avançades",
87
24
  "Advanced properties": "Propietats avançades",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "S'han importat totes les propietats",
89
27
  "Allow interactions": "Allow interactions",
28
+ "Allow scroll wheel zoom?": "Voleu permetre el zoom amb la roda de desplaçament?",
29
+ "always": "always",
30
+ "Animated transitions": "Transicions animades",
90
31
  "Are you sure you want to cancel your changes?": "Esteu segur de voler cancel·lar els canvis?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Esteu segur de voler clonar aquest mapa i totes les capes de dades?",
92
33
  "Are you sure you want to delete the feature?": "Segur que voleu suprimir la característica?",
@@ -95,186 +36,379 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "Are you sure you want to delete this property on all the features?",
96
37
  "Are you sure you want to restore this version?": "Are you sure you want to restore this version?",
97
38
  "Attach the map to my account": "Adjunta el mapa al meu compte",
39
+ "attribution": "atribució",
98
40
  "Auto": "Auto",
41
+ "Automatic": "Automatic",
99
42
  "Autostart when map is loaded": "Autostart when map is loaded",
43
+ "Back to preview": "Back to preview",
44
+ "Background overlay url": "URL de superposició del fons",
45
+ "Ball": "Bola",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "Explora les dades",
48
+ "by": "per",
49
+ "Cache proxied request": "Petició proxy en memòria cau",
101
50
  "Cancel edits": "Cancel·la les edicions",
51
+ "Cancel": "Cancel·la",
52
+ "Caption": "Llegenda",
102
53
  "Center map on your location": "Centra el mapa a la vostra ubicació",
103
54
  "Change map background": "Canvia el fons del mapa",
104
55
  "Change tilelayers": "Canvia les capes de tessel·les",
56
+ "Change": "Change",
105
57
  "Choose a preset": "Choose a preset",
58
+ "Choose the data format": "Trieu el format de dades",
106
59
  "Choose the format of the data to import": "Trieu el format de les dades a importar",
107
60
  "Choose the layer to import in": "Trieu la capa que on voleu importar",
61
+ "Choropleth breakpoints": "Choropleth breakpoints",
62
+ "Choropleth classes": "Choropleth classes",
63
+ "Choropleth color palette": "Choropleth color palette",
64
+ "Choropleth mode": "Choropleth mode",
65
+ "Choropleth property value": "Choropleth property value",
66
+ "Choropleth": "Choropleth",
67
+ "Circle": "Cercle",
68
+ "clear": "clear",
108
69
  "Click last point to finish shape": "Click last point to finish shape",
109
70
  "Click to add a marker": "Feu clic per a afegir una marca",
110
71
  "Click to continue drawing": "Click to continue drawing",
111
72
  "Click to edit": "Click to edit",
112
73
  "Click to start drawing a line": "Click to start drawing a line",
113
74
  "Click to start drawing a polygon": "Click to start drawing a polygon",
114
- "Clone": "Clona",
115
75
  "Clone of {name}": "Clona de {name}",
116
76
  "Clone this feature": "Clone this feature",
117
77
  "Clone this map": "Clona aquest mapa",
78
+ "Clone": "Clona",
118
79
  "Close": "Tanca",
80
+ "Clustered": "Clustered",
119
81
  "Clustering radius": "Clustering radius",
82
+ "collapsed": "collapsed",
83
+ "color": "color",
84
+ "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
85
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Llista separada per comes de les propietats a usar per a les característiques d'ordenació. Per a invertir l'ordre, afegiu un signe menys (-) abans. P. ex. lamevaclau, -unaslatraclau",
120
86
  "Comma separated list of properties to use when filtering features": "Comma separated list of properties to use when filtering features",
121
87
  "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.": "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.",
88
+ "Congratulations, your map has been created!": "Enhorabona, s'ha creat el mapa!",
122
89
  "Continue line": "Continue line",
123
- "Continue line (Ctrl+Click)": "Continue line (Ctrl+Click)",
124
90
  "Coordinates": "Coordenades",
91
+ "Copy link": "Copia l'enllaç",
92
+ "copy": "copy",
125
93
  "Credits": "Crèdits",
94
+ "Current map view": "Current map view",
126
95
  "Current view instead of default map view?": "Voleu la visualització actual en comptes de la visualització predeterminada?",
127
96
  "Custom background": "Fons personalitzat",
97
+ "Custom overlay": "Superposició personalitzada",
98
+ "dash array": "dash array",
99
+ "Data browser": "Data browser",
128
100
  "Data is browsable": "Data is browsable",
101
+ "Datalayers": "Datalayers",
129
102
  "Default interaction options": "Default interaction options",
130
103
  "Default properties": "Propietats predeterminades",
131
104
  "Default shape properties": "Default shape properties",
105
+ "Default view": "Default view",
106
+ "Default zoom level": "Default zoom level",
107
+ "Default": "Per defecte",
108
+ "Default: name": "Default: name",
132
109
  "Define link to open in a new window on polygon click.": "Define link to open in a new window on polygon click.",
110
+ "define": "define",
133
111
  "Delay between two transitions when in play mode": "Delay between two transitions when in play mode",
134
- "Delete": "Suprimeix",
135
112
  "Delete all layers": "Delete all layers",
136
113
  "Delete layer": "Delete layer",
137
114
  "Delete this feature": "Suprimeix aquesta característica",
138
115
  "Delete this property on all the features": "Suprimeix aquesta propietat a totes les característiques",
139
116
  "Delete this shape": "Delete this shape",
140
117
  "Delete this vertex (Alt+Click)": "Delete this vertex (Alt+Click)",
118
+ "Delete": "Suprimeix",
119
+ "description": "descripció",
120
+ "Direct link": "Enllaç directe",
141
121
  "Directions from here": "Direccions des d'aquí",
122
+ "Display label": "Display label",
142
123
  "Display measure": "Display measure",
124
+ "display name": "mostra el nom",
143
125
  "Display on load": "Mostrar en carregar",
126
+ "Display the control to open OpenStreetMap editor": "Display the control to open OpenStreetMap editor",
127
+ "Display the data layers control": "Display the data layers control",
128
+ "Display the embed control": "Display the embed control",
129
+ "Display the fullscreen control": "Display the fullscreen control",
130
+ "Display the locate control": "Display the locate control",
131
+ "Display the measure control": "Display the measure control",
132
+ "Display the search control": "Display the search control",
133
+ "Display the star map button": "Mostra el botó per a destacar el mapa",
134
+ "Display the tile layers control": "Display the tile layers control",
135
+ "Display the zoom control": "Display the zoom control",
136
+ "Do you want to display a caption bar?": "Voleu mostrar la barra de llegenda?",
137
+ "Do you want to display a minimap?": "Voleu mostrar un minimapa?",
138
+ "Do you want to display a panel on load?": "Voleu mostrar el quandre en carregar?",
139
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
140
+ "Do you want to display popup footer?": "Voleu mostrar un peu emergent?",
141
+ "Do you want to display the scale control?": "Voleu mostrar el control d'escala?",
142
+ "Do you want to display the «more» control?": "Do you want to display the «more» control?",
144
143
  "Download": "Baixa",
145
144
  "Drag to reorder": "Drag to reorder",
146
145
  "Draw a marker": "Dibuixa un marcador",
147
146
  "Draw a polygon": "Dibuixa un polígon",
148
147
  "Draw a polyline": "Dibuixa una polilínia",
149
- "Dynamic": "Dinàmic",
148
+ "Drawing": "Drawing",
149
+ "Drop": "Deixar",
150
150
  "Dynamic properties": "Dynamic properties",
151
- "Edit": "Edita",
151
+ "Dynamic": "Dinàmic",
152
152
  "Edit feature's layer": "Edita la capa de la característica",
153
- "Edit map properties": "Edita les propietats del mapa",
154
153
  "Edit properties in a table": "Edita les propietats en una taula",
154
+ "Edit the title of the map": "Edit the title of the map",
155
155
  "Edit this feature": "Edita aquesta característica",
156
+ "Edit": "Edita",
157
+ "Email": "Envia per correu electrònic",
158
+ "Embed and link options": "Embed and link options",
156
159
  "Embed the map": "Incrusta el mapa",
160
+ "Emoji & Character": "Emoji & Character",
157
161
  "Empty": "Buit",
162
+ "Equidistant": "Equidistant",
163
+ "Error in the overlay URL": "S'ha produït un error en l'URL de superposició",
158
164
  "Error in the tilelayer URL": "Hi ha un error en l'URL de la cap de tessel·les",
159
165
  "Exit Fullscreen": "Exit Fullscreen",
166
+ "expanded": "expanded",
160
167
  "Extract shape to separate feature": "Extract shape to separate feature",
168
+ "Facet keys": "Facet keys",
169
+ "Facet search": "Facet search",
170
+ "Feature identifier key": "Feature identifier key",
171
+ "Feature properties": "Feature properties",
161
172
  "Fetch data each time map view changes.": "Fetch data each time map view changes.",
173
+ "fill color": "emplena el color",
174
+ "fill opacity": "opacitat d'emplenament",
175
+ "fill": "emplena",
162
176
  "Filter keys": "Filter keys",
177
+ "Filter": "Filter",
178
+ "Fit all data": "Fit all data",
163
179
  "Format": "Format",
164
180
  "From zoom": "Del zoom",
181
+ "full backup": "full backup",
182
+ "Generic": "Generic",
183
+ "GeoRSS (only link)": "GeoRSS (només enllaç)",
184
+ "GeoRSS (title + image)": "GeoRSS (títol i imatge)",
185
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
186
+ "Go to the homepage": "Go to the homepage",
165
187
  "Go to «{feature}»": "Vés a «{feature}»",
166
188
  "Heatmap intensity property": "Heatmap intensity property",
167
189
  "Heatmap radius": "Heatmap radius",
190
+ "Heatmap": "Heatmap",
191
+ "height": "alçada",
168
192
  "Help": "Ajuda",
193
+ "hidden": "hidden",
169
194
  "Hide controls": "Amaga els controls",
170
195
  "Home": "Home",
171
196
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)",
197
+ "icon opacity": "opacitat de la icona",
198
+ "Icon shape": "Icon shape",
199
+ "Icon symbol": "Icon symbol",
200
+ "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
172
201
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}",
173
202
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}",
203
+ "iframe": "iframe",
174
204
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
205
  "Image with custom width (in px): {{http://image.url.com|width}}": "Imatge amb amplada personalitzada (en px): {{http://imatge.url.com|amplada}}",
176
206
  "Image: {{http://image.url.com}}": "Imatge: {{http://imatge.url.com}}",
177
- "Import": "Importa",
178
207
  "Import data": "Importa dades",
179
208
  "Import in a new layer": "Import in a new layer",
209
+ "Import": "Importa",
180
210
  "Imports all umap data, including layers and settings.": "Imports all umap data, including layers and settings.",
181
211
  "Include full screen link?": "Voleu incloure l'enllaç a pantalla completa?",
212
+ "Inherit": "Hereta",
213
+ "inherit": "heretat",
182
214
  "Interaction options": "Interaction options",
183
- "Invalid umap data": "Invalid umap data",
215
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
216
  "Invalid umap data in {filename}": "Invalid umap data in {filename}",
217
+ "Invalid umap data": "Invalid umap data",
218
+ "Invalide property name: {name}": "Invalide property name: {name}",
219
+ "Jenks-Fisher": "Jenks-Fisher",
220
+ "K-means": "K-means",
185
221
  "Keep current visible layers": "Keep current visible layers",
222
+ "kilometers": "quilòmetres",
223
+ "km": "km",
224
+ "Label direction": "Label direction",
225
+ "Label key": "Label key",
226
+ "Labels are clickable": "Labels are clickable",
227
+ "Latest feature": "Latest feature",
186
228
  "Latitude": "Latitud",
187
- "Layer": "Capa",
188
229
  "Layer properties": "Layer properties",
230
+ "Layer": "Capa",
189
231
  "Licence": "Llicència",
232
+ "licence": "llicència",
190
233
  "Limit bounds": "Límits",
234
+ "Link to view the map": "Link to view the map",
191
235
  "Link to…": "Link to…",
192
236
  "Link with text: [[http://example.com|text of the link]]": "Enllaceu amb el text: [[http://exemple.com|text de l'enllaç]]",
193
237
  "Long credits": "Long credits",
194
238
  "Longitude": "Longitud",
195
239
  "Make main shape": "Make main shape",
196
240
  "Manage layers": "Manage layers",
241
+ "Manual": "Manual",
197
242
  "Map background credits": "Crèdits del fons del mapa",
198
243
  "Map has been attached to your account": "El mapa s'ha adjuntat al vostre compte",
199
244
  "Map has been saved!": "S'ha desat el mapa!",
245
+ "Map has been starred": "El mapa s'ha destacat",
246
+ "Map has been unstarred": "El mapa ja no està destacat",
200
247
  "Map user content has been published under licence": "El contingut de l'usuari del mapa s'ha publicat sota la llicència",
201
248
  "Map's editors": "Editors del mapa",
202
249
  "Map's owner": "Propietari del mapa",
250
+ "max East": "Est màxim",
251
+ "max North": "Nord màxim",
252
+ "max South": "Sud màxim",
253
+ "max West": "Oest màxim",
254
+ "max zoom": "escala màxima",
255
+ "Measure distances": "Mesura distàncies",
203
256
  "Merge lines": "Merge lines",
257
+ "mi": "mi",
258
+ "miles": "milles",
259
+ "min zoom": "escala mínima",
204
260
  "More controls": "Més controls",
205
261
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Must be a valid CSS value (eg.: DarkBlue or #123456)",
262
+ "name": "nom",
263
+ "nautical miles": "miles nàutiques",
264
+ "never": "never",
265
+ "new window": "new window",
266
+ "next": "next",
267
+ "NM": "NM",
268
+ "No cache": "Sense memòria cau",
206
269
  "No licence has been set": "No licence has been set",
270
+ "No results for these facets": "No results for these facets",
207
271
  "No results": "No results",
272
+ "no": "no",
273
+ "No.": "No.",
274
+ "None": "Cap",
275
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
276
+ "On the bottom": "On the bottom",
277
+ "On the left": "On the left",
278
+ "On the right": "On the right",
279
+ "On the top": "On the top",
280
+ "Only visible layers' data": "Only visible layers' data",
281
+ "opacity": "opacitat",
282
+ "Opacity": "Opacitat",
283
+ "Open current feature on load": "Open current feature on load",
208
284
  "Open link in…": "Open link in…",
285
+ "Open share & download panel": "Open share & download panel",
209
286
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Open this map extent in a map editor to provide more accurate data to OpenStreetMap",
287
+ "OpenStreetMap": "OpenStreetMap",
210
288
  "Optional intensity property for heatmap": "Optional intensity property for heatmap",
211
289
  "Optional. Same as color if not set.": "Opcional. El mateix color si no s'estableix.",
290
+ "Optional.": "Opcional.",
212
291
  "Override clustering radius (default 80)": "Override clustering radius (default 80)",
213
292
  "Override heatmap radius (default 25)": "Override heatmap radius (default 25)",
293
+ "parent window": "parent window",
294
+ "Paste your data here": "Enganxeu les dades aquí",
295
+ "Permalink": "Permalink",
296
+ "Permanent credits background": "Permanent credits background",
297
+ "Permanent credits": "Permanent credits",
214
298
  "Please be sure the licence is compliant with your use.": "Assegureu-vos que la llicència és compatible amb l'ús que en feu.",
215
299
  "Please choose a format": "Please choose a format",
216
300
  "Please enter the name of the property": "Introduïu el nom de la propietat",
217
301
  "Please enter the new name of this property": "Introduïu el nom d'aquesta propietat",
302
+ "Please save the map first": "Abans deseu el mapa",
303
+ "Popup (large)": "Finestra emergent (gran)",
304
+ "Popup content style": "Estil del contingut de la finestra emergent",
305
+ "Popup content template": "Popup content template",
306
+ "Popup shape": "Forma de la finestra emergent",
307
+ "Popup": "Finestra emergent",
308
+ "Powered by uMap": "Powered by uMap",
309
+ "previous": "previous",
310
+ "Problem in the response": "Problem in the response",
218
311
  "Properties imported:": "Propietats importades:",
219
312
  "Provide an URL here": "Proporcioneu un URL aquí",
220
313
  "Proxy request": "Petició proxy",
314
+ "Quantiles": "Quantiles",
315
+ "Recent": "Recent",
221
316
  "Remote data": "Dades remotes",
222
317
  "Remove shape from the multi": "Remove shape from the multi",
223
318
  "Rename this property on all the features": "Canvia el nom d'aquesta propietat en totes les característiques",
224
319
  "Replace layer content": "Replace layer content",
225
320
  "Restore this version": "Restore this version",
226
- "Save": "Desa",
227
321
  "Save anyway": "Desa-ho igualment",
228
322
  "Save current edits": "Desa les edicions actuals",
323
+ "Save map": "Save map",
229
324
  "Save this center and zoom": "Desa aquest centre i escala",
230
325
  "Save this location as new feature": "Save this location as new feature",
326
+ "Save": "Desa",
327
+ "Saved center and zoom": "Saved center and zoom",
231
328
  "Search location": "Search location",
232
- "See all": "See all",
233
- "See data layers": "Mostra les capes de dades",
329
+ "Search": "Search",
330
+ "Secret edit link copied to clipboard!": "L'enllaç secret s'ha copiat al porta-retalls!",
331
+ "Secret edit link:": "Secret edit link:",
332
+ "See layers": "See layers",
234
333
  "See full screen": "Mostra-ho a pantalla completa",
334
+ "See on OpenStreetMap": "See on OpenStreetMap",
335
+ "Select data": "Select data",
336
+ "Send me the link": "Envia'm aquest enllaç",
235
337
  "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…",
338
+ "settings": "settings",
236
339
  "Shape properties": "Shape properties",
340
+ "Share and download": "Share and download",
341
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
237
342
  "Short credits": "Short credits",
343
+ "Short link": "Short link",
344
+ "Show this layer in the caption": "Show this layer in the caption",
238
345
  "Show/hide layer": "Mostra/amaga la capa",
346
+ "Side panel": "Side panel",
239
347
  "Simple link: [[http://example.com]]": "Enllaç simple: [[http://exemple.com]]",
348
+ "Simplify": "Simplify",
349
+ "Skipping unknown geometry.type: {type}": "S'està ometent el tipus de geometria desconegut: {type}",
240
350
  "Slideshow": "Presentació",
241
351
  "Sort key": "Sort key",
242
352
  "Split line": "Split line",
353
+ "Star this map": "Destaca aquest mapa",
243
354
  "Start a hole here": "Start a hole here",
244
355
  "Start slideshow": "Inicia la presentació",
245
356
  "Stop editing": "Atura l'edició",
246
357
  "Stop slideshow": "Atura la presentació",
358
+ "Street": "Street",
359
+ "stroke": "stroke",
247
360
  "Supported scheme": "Esquema suportat",
248
361
  "Supported variables that will be dynamically replaced": "Supported variables that will be dynamically replaced",
249
- "TMS format": "Format TMS",
362
+ "Symbol": "Symbol",
363
+ "Table": "Taula",
250
364
  "Text color for the cluster label": "Text color for the cluster label",
251
365
  "Text formatting": "Format del text",
366
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
367
+ "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
368
+ "The zoom and center have been modified.": "L'escala i el centre s'han modificat.",
369
+ "TMS format": "Format TMS",
252
370
  "To use if remote server doesn't allow cross domain (slower)": "To use if remote server doesn't allow cross domain (slower)",
253
371
  "To zoom": "A l'escala",
372
+ "Toggle edit mode (⇧+Click)": "Activa o desactiva el mode d'edició (⇧+clic)",
373
+ "Toggle edit mode": "Toggle edit mode",
254
374
  "Transfer shape to edited feature": "Transfer shape to edited feature",
255
375
  "Transform to lines": "Transforma a línies",
256
376
  "Transform to polygon": "Transforma a polígon",
377
+ "Type a place name or coordinates": "Type a place name or coordinates",
378
+ "Type char or paste emoji": "Type char or paste emoji",
257
379
  "Type of layer": "Tipus de capa",
258
380
  "Unable to detect format of file {filename}": "Unable to detect format of file {filename}",
259
381
  "Untitled layer": "Capa sense títol",
260
382
  "Untitled map": "Mapa sense títol",
261
- "Update permissions": "Actualitza els permisos",
262
383
  "Update permissions and editors": "Actualitza els permisos i editors",
384
+ "Update permissions": "Actualitza els permisos",
385
+ "Update who can see and edit the map": "Update who can see and edit the map",
263
386
  "Url": "URL",
387
+ "URL": "URL",
264
388
  "Use current bounds": "Usa els límits actuals",
265
389
  "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.",
266
390
  "User content credits": "Crèdits dels continguts de l'usuari",
267
391
  "User interface options": "Opcions de la interfície d'usuari",
392
+ "User location": "User location",
393
+ "Verify remote URL": "Verify remote URL",
268
394
  "Versions": "Versions",
269
395
  "View Fullscreen": "View Fullscreen",
396
+ "View": "View",
397
+ "Visibility: {status}": "Visibility: {status}",
398
+ "weight": "pes",
270
399
  "Where do we go from here?": "On anem des d'aquí?",
271
400
  "Whether to display or not polygons paths.": "Whether to display or not polygons paths.",
272
401
  "Whether to fill polygons with color.": "Whether to fill polygons with color.",
402
+ "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
273
403
  "Who can edit": "Qui pot editar",
274
404
  "Who can view": "Qui pot visualitzar",
405
+ "width": "amplada",
275
406
  "Will be displayed in the bottom right corner of the map": "Will be displayed in the bottom right corner of the map",
407
+ "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
276
408
  "Will be visible in the caption of the map": "Will be visible in the caption of the map",
277
409
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.",
410
+ "yes": "sí",
411
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "S'ha creat el vostre mapa! Com que no heu iniciat sessió, aquí teniu l'enllaç secret per a editar-lo. Conserveu-lo en un lloc segur:",
278
412
  "Zoom in": "Apropa't",
279
413
  "Zoom level for automatic zooms": "Zoom level for automatic zooms",
280
414
  "Zoom out": "Allunya't",
@@ -283,155 +417,37 @@ const locale = {
283
417
  "Zoom to the previous": "Zoom to the previous",
284
418
  "Zoom to this feature": "Fes zoom a aquesta característica",
285
419
  "Zoom to this place": "Zoom to this place",
286
- "attribution": "atribució",
287
- "by": "per",
288
- "display name": "mostra el nom",
289
- "height": "alçada",
290
- "licence": "llicència",
291
- "max East": "Est màxim",
292
- "max North": "Nord màxim",
293
- "max South": "Sud màxim",
294
- "max West": "Oest màxim",
295
- "max zoom": "escala màxima",
296
- "min zoom": "escala mínima",
297
- "next": "next",
298
- "previous": "previous",
299
- "width": "amplada",
300
- "{count} errors during import: {message}": "{count} errors during import: {message}",
301
- "Measure distances": "Mesura distàncies",
302
- "NM": "NM",
303
- "kilometers": "quilòmetres",
304
- "km": "km",
305
- "mi": "mi",
306
- "miles": "milles",
307
- "nautical miles": "miles nàutiques",
308
- "1 day": "1 dia",
309
- "1 hour": "1 hora",
310
- "5 min": "5 min",
311
- "Cache proxied request": "Petició proxy en memòria cau",
312
- "No cache": "Sense memòria cau",
313
- "Popup": "Finestra emergent",
314
- "Popup (large)": "Finestra emergent (gran)",
315
- "Popup content style": "Estil del contingut de la finestra emergent",
316
- "Popup shape": "Forma de la finestra emergent",
317
- "Skipping unknown geometry.type: {type}": "S'està ometent el tipus de geometria desconegut: {type}",
318
- "Optional.": "Opcional.",
319
- "Paste your data here": "Enganxeu les dades aquí",
320
- "Please save the map first": "Abans deseu el mapa",
321
- "Feature identifier key": "Feature identifier key",
322
- "Open current feature on load": "Open current feature on load",
323
- "Permalink": "Permalink",
324
- "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
325
- "Do you want to display caption menus?": "Do you want to display caption menus?",
326
- "Example: key1,key2,key3": "Example: key1,key2,key3",
327
- "Invalid latitude or longitude": "Invalid latitude or longitude",
328
- "Invalide property name: {name}": "Invalide property name: {name}",
329
- "Permanent credits": "Permanent credits",
330
- "Permanent credits background": "Permanent credits background",
331
- "Select data": "Select data",
332
- "Will be permanently visible in the bottom left corner of the map": "Will be permanently visible in the bottom left corner of the map",
333
420
  "{area} acres": "{area} acres",
334
421
  "{area} ha": "{area} ha",
335
422
  "{area} m²": "{area} m²",
336
423
  "{area} mi²": "{area} mi²",
337
424
  "{area} yd²": "{area} yd²",
338
- "{distance} NM": "{distance} NM",
425
+ "{count} errors during import: {message}": "{count} errors during import: {message}",
426
+ "{delay} seconds": "{delay} seconds",
339
427
  "{distance} km": "{distance} km",
340
428
  "{distance} m": "{distance} m",
341
429
  "{distance} miles": "{distance} milles",
430
+ "{distance} NM": "{distance} NM",
342
431
  "{distance} yd": "{distance} yd",
343
- " (area: {measure})": "(area: {measure})",
344
- " (length: {measure})": "(length: {measure})",
345
- "Animated transitions": "Transicions animades",
346
- "Background overlay url": "URL de superposició del fons",
347
- "Custom overlay": "Superposició personalitzada",
348
- "Display the star map button": "Mostra el botó per a destacar el mapa",
349
- "Error in the overlay URL": "S'ha produït un error en l'URL de superposició",
350
- "Map has been starred": "El mapa s'ha destacat",
351
- "Map has been unstarred": "El mapa ja no està destacat",
352
- "Opacity": "Opacitat",
353
- "Star this map": "Destaca aquest mapa",
354
- "Symbol can be either a unicode character or an URL. You can use feature properties as variables: ex.: with \"http://myserver.org/images/{name}.png\", the {name} variable will be replaced by the \"name\" value of each marker.": "El símbol pot ser qualsevol caràcter Unicode o un URL. Podeu usar propietats de característiques com a variables. P. ex: amb \"http://elmeuservidor.org/imatges/{nom}.png\", la variable {nom} se substituirà amb el valor de \"nom\" de cada marcador.",
355
- "Direct link": "Enllaç directe",
356
- "The zoom and center have been modified.": "L'escala i el centre s'han modificat.",
357
- "Congratulations, your map has been created!": "Enhorabona, s'ha creat el mapa!",
358
- "Copy link": "Copia l'enllaç",
359
- "Email": "Envia per correu electrònic",
360
- "Secret edit link copied to clipboard!": "L'enllaç secret s'ha copiat al porta-retalls!",
361
- "Send me the link": "Envia'm aquest enllaç",
362
- "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "S'ha creat el vostre mapa! Com que no heu iniciat sessió, aquí teniu l'enllaç secret per a editar-lo. Conserveu-lo en un lloc segur:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Llista separada per comes de les propietats a usar per a les característiques d'ordenació. Per a invertir l'ordre, afegiu un signe menys (-) abans. P. ex. lamevaclau, -unaslatraclau",
364
- "Toggle edit mode (⇧+Click)": "Activa o desactiva el mode d'edició (⇧+clic)",
365
- "icon opacity": "opacitat de la icona",
366
- "*single star for italic*": "*single star for italic*",
367
- "--- for a horizontal rule": "--- for a horizontal rule",
368
- "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")",
369
- "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key)",
370
- "Default view": "Default view",
371
- "Facet keys": "Facet keys",
372
- "Facet search": "Facet search",
373
- "Feature properties": "Feature properties",
374
- "Latest feature": "Latest feature",
375
- "No results for these facets": "No results for these facets",
376
- "Saved center and zoom": "Saved center and zoom",
377
- "User location": "User location",
378
- "Visibility: {status}": "Visibility: {status}",
379
- "Fit all data": "Fit all data",
380
- "Verify remote URL": "Verify remote URL",
381
- "Add": "Add",
382
- "Change": "Change",
383
- "Powered by uMap": "Powered by uMap",
384
- "Search": "Search",
385
- "Datalayers": "Datalayers",
386
- "Secret edit link:": "Secret edit link:",
387
- "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
388
- "Choropleth": "Choropleth",
389
- "Choropleth breakpoints": "Choropleth breakpoints",
390
- "Choropleth classes": "Choropleth classes",
391
- "Choropleth color palette": "Choropleth color palette",
392
- "Choropleth mode": "Choropleth mode",
393
- "Choropleth property value": "Choropleth property value",
394
- "Comma separated list of numbers, including min and max values.": "Comma separated list of numbers, including min and max values.",
395
- "Equidistant": "Equidistant",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "K-means",
398
- "Manual": "Manual",
399
- "Number of desired classes (default 5)": "Number of desired classes (default 5)",
400
- "Quantiles": "Quantiles",
401
- "Show this layer in the caption": "Show this layer in the caption",
402
- "Back to preview": "Back to preview",
403
- "Drawing": "Drawing",
404
- "Edit the title of the map": "Edit the title of the map",
405
- "Go to the homepage": "Go to the homepage",
406
- "Switch to edit mode": "Switch to edit mode",
407
- "Update who can see and edit the map": "Update who can see and edit the map",
408
- "View": "View",
409
- "Add image URL": "Add image URL",
410
- "Emoji & Character": "Emoji & Character",
411
- "Generic": "Generic",
412
- "Symbol": "Symbol",
413
- "Type char or paste emoji": "Type char or paste emoji",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "If false, the polygon or line will act as a part of the underlying map.",
416
- "Save map": "Save map",
417
- "Toggle edit mode": "Toggle edit mode",
418
- "All data and settings of the map": "All data and settings of the map",
419
- "Embed and link options": "Embed and link options",
420
- "Go to \"{coords}\"": "Go to \"{coords}\"",
421
- "Link to view the map": "Link to view the map",
422
- "No.": "No.",
423
- "Only visible layers' data": "Only visible layers' data",
424
- "Open share & download panel": "Open share & download panel",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "See on OpenStreetMap",
427
- "Share and download": "Share and download",
428
- "Share this link to open a customized map view": "Share this link to open a customized map view",
429
- "Short link": "Short link",
430
- "Street": "Street",
431
- "Type a place name or coordinates": "Type a place name or coordinates",
432
- "copy": "copy",
433
- "full backup": "full backup",
434
- "settings": "settings"
432
+ "Edit map name and caption": "Edit map name and caption",
433
+ "Map advanced properties": "Map advanced properties",
434
+ "Edit map details": "Edit map details",
435
+ "Back to browser": "Back to browser",
436
+ "Toggle size": "Toggle size",
437
+ "Layers": "Layers",
438
+ "Display the caption control": "Display the caption control",
439
+ "Comma separated list of properties to use for facet search (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 facet search (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.",
440
+ "<empty value>": "<empty value>",
441
+ "Min": "Min",
442
+ "Max": "Max",
443
+ "From": "From",
444
+ "Until": "Until",
445
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
446
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
447
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
448
+ "Back to layers": "Back to layers",
449
+ "Data": "Data",
450
+ "Filters": "Filters"
435
451
  }
436
452
  L.registerLocale("ca", locale)
437
453
  L.setLocale("ca")