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

Files changed (196) 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 +29 -151
  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 +82 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +148 -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.controls.js +183 -330
  36. umap/static/umap/js/umap.core.js +60 -364
  37. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  38. umap/static/umap/js/umap.features.js +60 -40
  39. umap/static/umap/js/umap.forms.js +111 -25
  40. umap/static/umap/js/umap.icon.js +11 -4
  41. umap/static/umap/js/umap.importer.js +24 -17
  42. umap/static/umap/js/umap.js +170 -145
  43. umap/static/umap/js/umap.layer.js +71 -40
  44. umap/static/umap/js/umap.permissions.js +9 -11
  45. umap/static/umap/js/umap.popup.js +10 -21
  46. umap/static/umap/js/umap.share.js +11 -8
  47. umap/static/umap/js/umap.tableeditor.js +4 -6
  48. umap/static/umap/js/umap.ui.js +0 -51
  49. umap/static/umap/locale/am_ET.js +242 -227
  50. umap/static/umap/locale/am_ET.json +18 -7
  51. umap/static/umap/locale/ar.js +242 -227
  52. umap/static/umap/locale/ar.json +18 -7
  53. umap/static/umap/locale/ast.js +242 -227
  54. umap/static/umap/locale/ast.json +18 -7
  55. umap/static/umap/locale/bg.js +242 -227
  56. umap/static/umap/locale/bg.json +18 -7
  57. umap/static/umap/locale/br.js +252 -237
  58. umap/static/umap/locale/br.json +22 -11
  59. umap/static/umap/locale/ca.js +242 -227
  60. umap/static/umap/locale/ca.json +18 -7
  61. umap/static/umap/locale/cs_CZ.js +242 -227
  62. umap/static/umap/locale/cs_CZ.json +18 -7
  63. umap/static/umap/locale/da.js +242 -227
  64. umap/static/umap/locale/da.json +18 -7
  65. umap/static/umap/locale/de.js +242 -227
  66. umap/static/umap/locale/de.json +18 -7
  67. umap/static/umap/locale/el.js +242 -227
  68. umap/static/umap/locale/el.json +18 -7
  69. umap/static/umap/locale/en.js +242 -234
  70. umap/static/umap/locale/en.json +19 -8
  71. umap/static/umap/locale/en_US.json +18 -7
  72. umap/static/umap/locale/es.js +242 -227
  73. umap/static/umap/locale/es.json +18 -7
  74. umap/static/umap/locale/et.js +242 -227
  75. umap/static/umap/locale/et.json +18 -7
  76. umap/static/umap/locale/eu.js +227 -199
  77. umap/static/umap/locale/eu.json +1 -1
  78. umap/static/umap/locale/fa_IR.js +242 -227
  79. umap/static/umap/locale/fa_IR.json +18 -7
  80. umap/static/umap/locale/fi.js +242 -227
  81. umap/static/umap/locale/fi.json +18 -7
  82. umap/static/umap/locale/fr.js +242 -234
  83. umap/static/umap/locale/fr.json +18 -7
  84. umap/static/umap/locale/gl.js +242 -227
  85. umap/static/umap/locale/gl.json +18 -7
  86. umap/static/umap/locale/he.js +242 -227
  87. umap/static/umap/locale/he.json +18 -7
  88. umap/static/umap/locale/hr.js +242 -227
  89. umap/static/umap/locale/hr.json +18 -7
  90. umap/static/umap/locale/hu.js +242 -234
  91. umap/static/umap/locale/hu.json +18 -7
  92. umap/static/umap/locale/id.js +242 -227
  93. umap/static/umap/locale/id.json +18 -7
  94. umap/static/umap/locale/is.js +242 -227
  95. umap/static/umap/locale/is.json +18 -7
  96. umap/static/umap/locale/it.js +242 -234
  97. umap/static/umap/locale/it.json +18 -7
  98. umap/static/umap/locale/ja.js +242 -227
  99. umap/static/umap/locale/ja.json +18 -7
  100. umap/static/umap/locale/ko.js +242 -227
  101. umap/static/umap/locale/ko.json +18 -7
  102. umap/static/umap/locale/lt.js +242 -227
  103. umap/static/umap/locale/lt.json +18 -7
  104. umap/static/umap/locale/ms.js +242 -234
  105. umap/static/umap/locale/ms.json +19 -8
  106. umap/static/umap/locale/nl.js +245 -230
  107. umap/static/umap/locale/nl.json +18 -7
  108. umap/static/umap/locale/no.js +242 -227
  109. umap/static/umap/locale/no.json +18 -7
  110. umap/static/umap/locale/pl.js +242 -227
  111. umap/static/umap/locale/pl.json +18 -7
  112. umap/static/umap/locale/pl_PL.json +18 -7
  113. umap/static/umap/locale/pt.js +242 -227
  114. umap/static/umap/locale/pt.json +18 -7
  115. umap/static/umap/locale/pt_BR.js +242 -227
  116. umap/static/umap/locale/pt_BR.json +18 -7
  117. umap/static/umap/locale/pt_PT.js +242 -227
  118. umap/static/umap/locale/pt_PT.json +18 -7
  119. umap/static/umap/locale/ro.js +242 -227
  120. umap/static/umap/locale/ro.json +18 -7
  121. umap/static/umap/locale/ru.js +242 -227
  122. umap/static/umap/locale/ru.json +18 -7
  123. umap/static/umap/locale/si.js +1 -1
  124. umap/static/umap/locale/si.json +1 -1
  125. umap/static/umap/locale/sk_SK.js +242 -227
  126. umap/static/umap/locale/sk_SK.json +18 -7
  127. umap/static/umap/locale/sl.js +242 -227
  128. umap/static/umap/locale/sl.json +18 -7
  129. umap/static/umap/locale/sr.js +242 -227
  130. umap/static/umap/locale/sr.json +18 -7
  131. umap/static/umap/locale/sv.js +242 -227
  132. umap/static/umap/locale/sv.json +18 -7
  133. umap/static/umap/locale/th_TH.js +242 -227
  134. umap/static/umap/locale/th_TH.json +18 -7
  135. umap/static/umap/locale/tr.js +242 -227
  136. umap/static/umap/locale/tr.json +18 -7
  137. umap/static/umap/locale/uk_UA.js +242 -227
  138. umap/static/umap/locale/uk_UA.json +18 -7
  139. umap/static/umap/locale/vi.js +242 -227
  140. umap/static/umap/locale/vi.json +18 -7
  141. umap/static/umap/locale/vi_VN.json +18 -7
  142. umap/static/umap/locale/zh.js +242 -227
  143. umap/static/umap/locale/zh.json +18 -7
  144. umap/static/umap/locale/zh_CN.json +18 -7
  145. umap/static/umap/locale/zh_TW.Big5.json +18 -7
  146. umap/static/umap/locale/zh_TW.js +242 -234
  147. umap/static/umap/locale/zh_TW.json +18 -7
  148. umap/static/umap/map.css +114 -265
  149. umap/static/umap/test/DataLayer.js +463 -0
  150. umap/static/umap/test/Feature.js +0 -226
  151. umap/static/umap/test/TableEditor.js +104 -0
  152. umap/static/umap/test/Util.js +0 -521
  153. umap/static/umap/test/index.html +0 -1
  154. umap/static/umap/unittests/URLs.js +1 -1
  155. umap/static/umap/unittests/utils.js +610 -0
  156. umap/static/umap/vars.css +9 -0
  157. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  158. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  159. umap/templates/umap/css.html +2 -0
  160. umap/templates/umap/js.html +0 -1
  161. umap/templates/umap/map_detail.html +4 -0
  162. umap/templates/umap/map_table.html +12 -10
  163. umap/templatetags/umap_tags.py +5 -0
  164. umap/tests/integration/conftest.py +12 -1
  165. umap/tests/integration/test_anonymous_owned_map.py +6 -5
  166. umap/tests/integration/test_browser.py +12 -25
  167. umap/tests/integration/test_choropleth.py +1 -1
  168. umap/tests/integration/test_dashboard.py +10 -0
  169. umap/tests/integration/test_datalayer.py +8 -6
  170. umap/tests/integration/test_edit_datalayer.py +24 -19
  171. umap/tests/integration/test_edit_map.py +182 -2
  172. umap/tests/integration/test_edit_marker.py +120 -0
  173. umap/tests/integration/test_edit_polygon.py +122 -0
  174. umap/tests/integration/test_facets_browser.py +104 -14
  175. umap/tests/integration/test_import.py +70 -20
  176. umap/tests/integration/test_map.py +19 -17
  177. umap/tests/integration/test_map_list.py +28 -0
  178. umap/tests/integration/test_owned_map.py +10 -10
  179. umap/tests/integration/test_picto.py +5 -5
  180. umap/tests/integration/test_querystring.py +9 -15
  181. umap/tests/integration/test_slideshow.py +0 -5
  182. umap/tests/integration/test_statics.py +3 -2
  183. umap/tests/integration/test_tableeditor.py +1 -5
  184. umap/tests/integration/test_view_marker.py +64 -0
  185. umap/tests/integration/test_view_polygon.py +59 -0
  186. umap/tests/integration/test_view_polyline.py +51 -0
  187. umap/tests/test_map_views.py +13 -0
  188. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/METADATA +8 -8
  189. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/RECORD +194 -178
  190. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  191. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  192. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  193. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/WHEEL +0 -0
  195. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/entry_points.txt +0 -0
  196. {umap_project-2.1.3.dist-info → umap_project-2.2.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "לאפשר תקריב עם גלגלת העכבר?",
3
- "Automatic": "אוטומטי",
4
- "Ball": "כדור",
5
- "Cancel": "ביטול",
6
- "Caption": "כותרת",
7
- "Choose the data format": "נא לבחור את מבנה הנתונים",
8
- "Choose the layer of the feature": "נא לבחור את שכבת התכונה",
9
- "Circle": "עיגול",
10
- "Clustered": "בקבוצה",
11
- "Data browser": "דפדפן נתונים",
12
- "Default": "בררת מחדל",
13
- "Default zoom level": "רמת תקריב כבררת מחדל",
14
- "Default: name": "בררת מחדל: שם",
15
- "Display label": "הצגת תווית",
16
- "Display the control to open OpenStreetMap editor": "יש להציג את הפקד לפתיחת העורך של OpenStreetMap",
17
- "Display the data layers control": "הצגת פקד שכבות הנתונים",
18
- "Display the embed control": "הצגת פקד ההטמעה",
19
- "Display the fullscreen control": "הצגת פקד מסך מלא",
20
- "Display the locate control": "הצגת פקד האיתור",
21
- "Display the measure control": "הצגת פקד המדידה",
22
- "Display the search control": "הצגת פקד החיפוש",
23
- "Display the tile layers control": "הצגת פקד שכבת האריחים",
24
- "Display the zoom control": "הצגת פקד התקריב",
25
- "Do you want to display a caption bar?": "להציג פס כותרת?",
26
- "Do you want to display a minimap?": "להציג מפה ממוזערת?",
27
- "Do you want to display a panel on load?": "להציג לוח צד בטעינה?",
28
- "Do you want to display popup footer?": "להציג כותרת תחתונה קופצת?",
29
- "Do you want to display the scale control?": "להציג את פקד קנה המידה?",
30
- "Do you want to display the «more» control?": "להציג את הפקד „עוד”?",
31
- "Drop": "נעץ",
32
- "GeoRSS (only link)": "GeoRSS (קישור בלבד)",
33
- "GeoRSS (title + image)": "GeoRSS (כותרת + תמונה)",
34
- "Heatmap": "מפת חום",
35
- "Icon shape": "צורת סמל",
36
- "Icon symbol": "סמן סמל",
37
- "Inherit": "ירושה",
38
- "Label direction": "כיוון התווית",
39
- "Label key": "מפתח תווית",
40
- "Labels are clickable": "התוויות זמינות ללחיצה",
41
- "None": "ללא",
42
- "On the bottom": "בתחתית",
43
- "On the left": "משמאל",
44
- "On the right": "מימין",
45
- "On the top": "מלמעלה",
46
- "Popup content template": "תבנית תוכן מוקפצת",
47
- "Side panel": "לוח צד",
48
- "Simplify": "פישוט",
49
- "Table": "טבלה",
50
- "always": "תמיד",
51
- "clear": "למחוק",
52
- "collapsed": "מצומצם",
53
- "color": "צבע",
54
- "dash array": "סדרה של מקפים",
55
- "define": "הגדרה",
56
- "description": "תיאור",
57
- "expanded": "מורחב",
58
- "fill": "מילוי",
59
- "fill color": "צבע מילוי",
60
- "fill opacity": "אטימות מילוי",
61
- "hidden": "מוסתר",
62
- "iframe": "מסגרת פנימית",
63
- "inherit": "ירושה",
64
- "name": "שם",
65
- "never": "מעולם לא",
66
- "new window": "חלון חדש",
67
- "no": "לא",
68
- "on hover": "בריחוף מעל",
69
- "opacity": "אטימות",
70
- "parent window": "חלון הורה",
71
- "stroke": "לוכסן",
72
- "weight": "משקל",
73
- "yes": "כן",
74
- "{delay} seconds": "{delay} שניות",
2
+ " (area: {measure})": "(area: {measure})",
3
+ " (length: {measure})": "(length: {measure})",
75
4
  "# one hash for main heading": "# סולמית אחת לכותרת ראשית",
76
5
  "## two hashes for second heading": "## שתי סולמיות לכותרת מסדר שני",
77
6
  "### three hashes for third heading": "### שלוש סולמיות לכותרת מסדר שלישי",
78
7
  "**double star for bold**": "**כוכבית כפולה להדגשה**",
8
+ "*single star for italic*": "*single star for italic*",
9
+ "--- for a horizontal rule": "--- for a horizontal rule",
10
+ "1 day": "יום",
11
+ "1 hour": "שעה",
12
+ "5 min": "5 דקות",
79
13
  "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "רשימה מופרדת בפסיקים של מספרים שמגדירים את תבנית הלוכסנים והמקפים. למשל: „5, 10, 15”.",
80
14
  "About": "על אודות",
15
+ "Action not allowed :(": "Action not allowed :(",
81
16
  "Activate slideshow mode": "הפעלת מצב מצגת",
82
17
  "Add a layer": "הוספת שכבה",
83
18
  "Add a line to the current multi": "הוספת קו לרב המצולעים הנוכחי",
84
19
  "Add a new property": "הוספת מאפיין חדש",
85
20
  "Add a polygon to the current multi": "הוספת מצולע לרב המצולעים הנוכחי",
21
+ "Add image URL": "Add image URL",
22
+ "Add": "Add",
86
23
  "Advanced actions": "פעולות מתקדמות",
87
24
  "Advanced properties": "מאפיינים מתקדמים",
25
+ "All data and settings of the map": "All data and settings of the map",
88
26
  "All properties are imported.": "כל המאפיינים ייובאו.",
89
27
  "Allow interactions": "לאפשר אינטראקציות",
28
+ "Allow scroll wheel zoom?": "לאפשר תקריב עם גלגלת העכבר?",
29
+ "always": "תמיד",
30
+ "Animated transitions": "Animated transitions",
90
31
  "Are you sure you want to cancel your changes?": "לבטל את השינויים שלך?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "לשכפל את המפה הזאת ואת כל שכבות הנתונים שלה?",
92
33
  "Are you sure you want to delete the feature?": "למחוק את התכונה הזו?",
@@ -95,186 +36,381 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "למחוק את המאפיין הזה מכל התכונות?",
96
37
  "Are you sure you want to restore this version?": "לשחזר את הגרסה הזו?",
97
38
  "Attach the map to my account": "הצמדת מפה לחשבון שלי",
39
+ "attribution": "ייחוס",
98
40
  "Auto": "אוטומטית",
41
+ "Automatic": "אוטומטי",
99
42
  "Autostart when map is loaded": "להתחיל אוטומטית עם טעינת המפה",
43
+ "Back to preview": "Back to preview",
44
+ "Background overlay url": "Background overlay url",
45
+ "Ball": "כדור",
46
+ "Bring feature to center": "Bring feature to center",
100
47
  "Browse data": "עיון בנתונים",
48
+ "by": "מאת",
49
+ "Cache proxied request": "שמירת בקשות שעברו דרך המתווך במטמון",
101
50
  "Cancel edits": "ביטול עריכות",
51
+ "Cancel": "ביטול",
52
+ "Caption": "כותרת",
102
53
  "Center map on your location": "מרכוז המפה על המיקום שלך",
103
54
  "Change map background": "החלפת רקע המפה",
104
55
  "Change tilelayers": "החלפת שכבות אריחים",
56
+ "Change": "Change",
105
57
  "Choose a preset": "נא לבחור ערכה",
58
+ "Choose the data format": "נא לבחור את מבנה הנתונים",
106
59
  "Choose the format of the data to import": "נא לבחור את תצורת הנתונים לייבוא",
107
60
  "Choose the layer to import in": "נא לבחור את השכבה אליה יתבצע הייבוא",
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": "עיגול",
68
+ "clear": "למחוק",
108
69
  "Click last point to finish shape": "יש ללחוץ על הנקודה האחרונה כדי לסיים את הצורה",
109
70
  "Click to add a marker": "יש ללחוץ כדי להוסיף סמן",
110
71
  "Click to continue drawing": "יש ללחוץ כדי להמשיך בציור",
111
72
  "Click to edit": "יש ללחוץ כדי לערוך",
112
73
  "Click to start drawing a line": "יש ללחוץ כדי להתחיל לצייר קו",
113
74
  "Click to start drawing a polygon": "יש ללחוץ כדי להתחיל לצייר מצולע",
114
- "Clone": "שכפול",
115
75
  "Clone of {name}": "שכפול של {name}",
116
76
  "Clone this feature": "שכפול התכונה הזו",
117
77
  "Clone this map": "שכפול המפה הזו",
78
+ "Clone": "שכפול",
118
79
  "Close": "סגירה",
80
+ "Clustered": "בקבוצה",
119
81
  "Clustering radius": "רדיוס קיבוץ",
82
+ "collapsed": "מצומצם",
83
+ "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.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
120
86
  "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.": "ערכים מופרדים בפסיקים, טאבים או נקודה פסיק. עם רמיזה ל־SRS WGS84. רק גואמטריית נקודות מייובאת. הייבוא יסתכל על כותרות העמודות לאיתור אזכורים של „lat” (קו רוחב) ו־„lon” (קו אורך) בתחילת הכותרת, לא משנה אותיות קטנות/גדולות. כל שאר העמודות ייובאו כמאפיינים.",
122
- "Continue line": "להמשיך את הקו",
88
+ "Congratulations, your map has been created!": "Congratulations, your map has been created!",
123
89
  "Continue line (Ctrl+Click)": "להמשיך את הקו ‪(Ctrl+לחיצה)",
90
+ "Continue line": "להמשיך את הקו",
124
91
  "Coordinates": "נקודות ציון",
92
+ "Copy link": "Copy link",
93
+ "copy": "copy",
125
94
  "Credits": "תודות",
95
+ "Current map view": "Current map view",
126
96
  "Current view instead of default map view?": "התצוגה הנוכחית במקום תצוגת בררת המחדל של המפה?",
127
97
  "Custom background": "רקע בהתאמה אישית",
98
+ "Custom overlay": "Custom overlay",
99
+ "dash array": "סדרה של מקפים",
100
+ "Data browser": "דפדפן נתונים",
128
101
  "Data is browsable": "הנתונים זמינים לעיון",
102
+ "Datalayers": "Datalayers",
129
103
  "Default interaction options": "אפשרויות אינטראקציה כבררת מחדל",
130
104
  "Default properties": "מאפיינים כבררת מחדל",
131
105
  "Default shape properties": "מאפייני צורה כבררת מחדל",
106
+ "Default view": "Default view",
107
+ "Default zoom level": "רמת תקריב כבררת מחדל",
108
+ "Default": "בררת מחדל",
109
+ "Default: name": "בררת מחדל: שם",
132
110
  "Define link to open in a new window on polygon click.": "יש להגדיר קישור לפתיחה בחלון חדש עם לחיצה על מצולע.",
111
+ "define": "הגדרה",
133
112
  "Delay between two transitions when in play mode": "השהיה בין שתי העברות כשמדובר במצב משחק",
134
- "Delete": "מחיקה",
135
113
  "Delete all layers": "מחיקת כל השכבות",
136
114
  "Delete layer": "מחיקת שכבה",
137
115
  "Delete this feature": "מחיקת התכונה הזו",
138
116
  "Delete this property on all the features": "מחיקת המאפיין הזה מכל התכונות",
139
117
  "Delete this shape": "מחיקת הצורה הזו",
140
118
  "Delete this vertex (Alt+Click)": "מחיקת הקודקוד הזה ‪(Alt+לחיצה)",
119
+ "Delete": "מחיקה",
120
+ "description": "תיאור",
121
+ "Direct link": "Direct link",
141
122
  "Directions from here": "הכוונה מכאן",
123
+ "Display label": "הצגת תווית",
142
124
  "Display measure": "הצגת מדידה",
125
+ "display name": "שם תצוגה",
143
126
  "Display on load": "הצגה עם הטעינה",
127
+ "Display the control to open OpenStreetMap editor": "יש להציג את הפקד לפתיחת העורך של OpenStreetMap",
128
+ "Display the data layers control": "הצגת פקד שכבות הנתונים",
129
+ "Display the embed control": "הצגת פקד ההטמעה",
130
+ "Display the fullscreen control": "הצגת פקד מסך מלא",
131
+ "Display the locate control": "הצגת פקד האיתור",
132
+ "Display the measure control": "הצגת פקד המדידה",
133
+ "Display the search control": "הצגת פקד החיפוש",
134
+ "Display the star map button": "Display the star map button",
135
+ "Display the tile layers control": "הצגת פקד שכבת האריחים",
136
+ "Display the zoom control": "הצגת פקד התקריב",
137
+ "Do you want to display a caption bar?": "להציג פס כותרת?",
138
+ "Do you want to display a minimap?": "להציג מפה ממוזערת?",
139
+ "Do you want to display a panel on load?": "להציג לוח צד בטעינה?",
140
+ "Do you want to display caption menus?": "Do you want to display caption menus?",
141
+ "Do you want to display popup footer?": "להציג כותרת תחתונה קופצת?",
142
+ "Do you want to display the scale control?": "להציג את פקד קנה המידה?",
143
+ "Do you want to display the «more» control?": "להציג את הפקד „עוד”?",
144
144
  "Download": "הורדה",
145
145
  "Drag to reorder": "יש לגרור כדי לסדר מחדש",
146
146
  "Draw a marker": "ציור סמן",
147
147
  "Draw a polygon": "ציור מצולע",
148
148
  "Draw a polyline": "ציור קו שבור",
149
- "Dynamic": "דינמי",
149
+ "Drawing": "Drawing",
150
+ "Drop": "נעץ",
150
151
  "Dynamic properties": "מאפיינים דינמיים",
151
- "Edit": "עריכה",
152
+ "Dynamic": "דינמי",
152
153
  "Edit feature's layer": "עריכת שכבת התכונה",
153
- "Edit map properties": "עריכת מאפייני מפה",
154
154
  "Edit properties in a table": "עריכת מאפיינים בטבלה",
155
+ "Edit the title of the map": "Edit the title of the map",
155
156
  "Edit this feature": "עריכת תכונה זו",
157
+ "Edit": "עריכה",
158
+ "Email": "Email",
159
+ "Embed and link options": "Embed and link options",
156
160
  "Embed the map": "הטמעת המפה",
161
+ "Emoji & Character": "Emoji & Character",
157
162
  "Empty": "לרוקן",
163
+ "Equidistant": "Equidistant",
164
+ "Error in the overlay URL": "Error in the overlay URL",
158
165
  "Error in the tilelayer URL": "שגיאה בכתובת שכבת האריחים",
159
166
  "Exit Fullscreen": "יציאה ממסך מלא",
167
+ "expanded": "מורחב",
160
168
  "Extract shape to separate feature": "יש לחלץ צורה כדי להפריד תכונה",
169
+ "Facet keys": "Facet keys",
170
+ "Facet search": "Facet search",
171
+ "Feature identifier key": "Feature identifier key",
172
+ "Feature properties": "Feature properties",
161
173
  "Fetch data each time map view changes.": "לקבל נתונים בכל פעם שתצוגת המפה משתנה.",
174
+ "fill color": "צבע מילוי",
175
+ "fill opacity": "אטימות מילוי",
176
+ "fill": "מילוי",
162
177
  "Filter keys": "סינון מפתחות",
178
+ "Filter": "Filter",
179
+ "Fit all data": "Fit all data",
163
180
  "Format": "תצורה",
164
181
  "From zoom": "מרמת תקריב",
182
+ "full backup": "full backup",
183
+ "Generic": "Generic",
184
+ "GeoRSS (only link)": "GeoRSS (קישור בלבד)",
185
+ "GeoRSS (title + image)": "GeoRSS (כותרת + תמונה)",
186
+ "Go to \"{coords}\"": "Go to \"{coords}\"",
187
+ "Go to the homepage": "Go to the homepage",
165
188
  "Go to «{feature}»": "מעבר אל «{feature}»",
166
189
  "Heatmap intensity property": "מאפיין עצמת מפת חום",
167
190
  "Heatmap radius": "רדיוס מפת חום",
191
+ "Heatmap": "מפת חום",
192
+ "height": "גובה",
168
193
  "Help": "עזרה",
194
+ "hidden": "מוסתר",
169
195
  "Hide controls": "הסתרת פקדים",
170
196
  "Home": "בית",
171
197
  "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "כמה לפשט את הקו השבור בכל רמת תקריב (יותר = ביצועים משופרים ומראה חלק יותר, פחות = דיוק גבוה יותר)",
198
+ "icon opacity": "icon opacity",
199
+ "Icon shape": "צורת סמל",
200
+ "Icon symbol": "סמן סמל",
201
+ "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
202
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "מסגרת פנימית עם גובה מותאם (בפיקסלים): {{{http://iframe.url.com|גובה}}}",
173
203
  "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "מסגרת פנימית עם גובה ורוחב מותאמים (בפיקסלים): {{{http://iframe.url.com|גובה*רוחב}}}",
204
+ "iframe": "מסגרת פנימית",
174
205
  "Iframe: {{{http://iframe.url.com}}}": "מסגרת פנימית: {{{http://iframe.url.com}}}",
175
206
  "Image with custom width (in px): {{http://image.url.com|width}}": "תמונה עם רוחב מותאם (בפיקסלים): {{http://image.url.com|רוחב}}",
176
207
  "Image: {{http://image.url.com}}": "תמונה: {{http://image.url.com}}",
177
- "Import": "ייבוא",
178
208
  "Import data": "ייבוא נתונים",
179
209
  "Import in a new layer": "ייבוא לשכבה חדשה",
210
+ "Import": "ייבוא",
180
211
  "Imports all umap data, including layers and settings.": "יבוצע ייבוא של כל הנתונים של umap לרבות שכבות והגדרות.",
181
212
  "Include full screen link?": "לכלול קישור למסך מלא?",
213
+ "Inherit": "ירושה",
214
+ "inherit": "ירושה",
182
215
  "Interaction options": "אפשרויות אינטראקציה",
183
- "Invalid umap data": "נתוני umap שגויים",
216
+ "Invalid latitude or longitude": "Invalid latitude or longitude",
184
217
  "Invalid umap data in {filename}": "נתוני umap שגויים בתוך {filename}",
218
+ "Invalid umap data": "נתוני umap שגויים",
219
+ "Invalide property name: {name}": "Invalide property name: {name}",
220
+ "Jenks-Fisher": "Jenks-Fisher",
221
+ "K-means": "K-means",
185
222
  "Keep current visible layers": "להשאיר את השכבות שגלויות כרגע",
223
+ "kilometers": "קילומטרים",
224
+ "km": "ק״מ",
225
+ "Label direction": "כיוון התווית",
226
+ "Label key": "מפתח תווית",
227
+ "Labels are clickable": "התוויות זמינות ללחיצה",
228
+ "Latest feature": "Latest feature",
186
229
  "Latitude": "קו רוחב",
187
- "Layer": "שכבה",
188
230
  "Layer properties": "מאפייני שכבה",
231
+ "Layer": "שכבה",
189
232
  "Licence": "רישיון",
233
+ "licence": "רישיון",
190
234
  "Limit bounds": "גבולות חוסמים",
235
+ "Link to view the map": "Link to view the map",
191
236
  "Link to…": "קישור אל…",
192
237
  "Link with text: [[http://example.com|text of the link]]": "קישור עם טקסט: [[http://example.com|הטקסט של הקישור]]",
193
238
  "Long credits": "תודות ארוכות",
194
239
  "Longitude": "קו אורך",
195
240
  "Make main shape": "להפוך לצורה עיקרית",
196
241
  "Manage layers": "ניהול שכבות",
242
+ "Manual": "Manual",
197
243
  "Map background credits": "תודות על רקע המפה",
198
244
  "Map has been attached to your account": "המפה הוצמדה לחשבון שלך",
199
245
  "Map has been saved!": "המפה נשמרה!",
246
+ "Map has been starred": "Map has been starred",
247
+ "Map has been unstarred": "Map has been unstarred",
200
248
  "Map user content has been published under licence": "תוכן המשתמש של המפה פורסם תחת רישיון",
201
249
  "Map's editors": "עורכי המפה",
202
250
  "Map's owner": "בעלי המפה",
251
+ "max East": "מזרח מרבי",
252
+ "max North": "צפון מרבי",
253
+ "max South": "דרום מרבי",
254
+ "max West": "מערב מרבי",
255
+ "max zoom": "תקריב מרבי",
256
+ "Measure distances": "מדידת מרחקים",
203
257
  "Merge lines": "מיזוג קווים",
258
+ "mi": "מייל",
259
+ "miles": "מיילים",
260
+ "min zoom": "תקריב מזערי",
204
261
  "More controls": "פקדים נוספים",
205
262
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "חייב להיות ערך CSS תקני (למשל: DarkBlue או #123456)",
263
+ "name": "שם",
264
+ "nautical miles": "מיילים ימיים",
265
+ "never": "מעולם לא",
266
+ "new window": "חלון חדש",
267
+ "next": "הבא",
268
+ "NM": "מיילים ימיים",
269
+ "No cache": "אין מטמון",
206
270
  "No licence has been set": "לא הוגדר רישיון",
271
+ "No results for these facets": "No results for these facets",
207
272
  "No results": "אין תוצאות",
273
+ "no": "לא",
274
+ "No.": "No.",
275
+ "None": "ללא",
276
+ "Number of desired classes (default 5)": "Number of desired classes (default 5)",
277
+ "On the bottom": "בתחתית",
278
+ "On the left": "משמאל",
279
+ "On the right": "מימין",
280
+ "On the top": "מלמעלה",
281
+ "Only visible layers' data": "Only visible layers' data",
282
+ "opacity": "אטימות",
283
+ "Opacity": "Opacity",
284
+ "Open current feature on load": "Open current feature on load",
208
285
  "Open link in…": "פתיחת קישור עם…",
286
+ "Open share & download panel": "Open share & download panel",
209
287
  "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "פתיחת היקף מפה זו בעורך מפות כדי לספק נתונים מדויקים יותר ל־OpenStreetMap",
288
+ "OpenStreetMap": "OpenStreetMap",
210
289
  "Optional intensity property for heatmap": "מאפיין עצמה כרשות למפת חום",
211
290
  "Optional. Same as color if not set.": "רשות. כנ״ל לגבי צבע אם לא הוגדר.",
291
+ "Optional.": "רשות.",
212
292
  "Override clustering radius (default 80)": "דריסת רדיוס הקבוצה (בררת המחדל היא 80)",
213
293
  "Override heatmap radius (default 25)": "דריסת רדיוס מפת החום (בררת המחדל היא 25)",
294
+ "parent window": "חלון הורה",
295
+ "Paste your data here": "נא להדביק את הנתונים שלך כאן",
296
+ "Permalink": "Permalink",
297
+ "Permanent credits background": "Permanent credits background",
298
+ "Permanent credits": "Permanent credits",
214
299
  "Please be sure the licence is compliant with your use.": "נא לוודא שהרישיון תואם לשימוש שלך.",
215
300
  "Please choose a format": "נא לבחור תבנית",
216
301
  "Please enter the name of the property": "נא למלא את שם המאפיין",
217
302
  "Please enter the new name of this property": "נא למלא את השם החדש של המאפיין הזה",
303
+ "Please save the map first": "נא לשמור את המפה קודם",
304
+ "Popup (large)": "חלונית מוקפצת (גדולה)",
305
+ "Popup content style": "סגנון תוכן חלונית מוקפצת",
306
+ "Popup content template": "תבנית תוכן מוקפצת",
307
+ "Popup shape": "צורת חלונית מוקפצת",
308
+ "Popup": "חלונית מוקפצת",
309
+ "Powered by uMap": "Powered by uMap",
310
+ "previous": "הקודם",
311
+ "Problem in the response": "Problem in the response",
218
312
  "Properties imported:": "יובאו מאפיינים:",
219
313
  "Provide an URL here": "נא לספק כאן כתובת",
220
314
  "Proxy request": "בקשת מתווך",
315
+ "Quantiles": "Quantiles",
316
+ "Recent": "Recent",
221
317
  "Remote data": "נתונים מרוחקים",
222
318
  "Remove shape from the multi": "הסרת צורת מרב מצולעים",
223
319
  "Rename this property on all the features": "לשנות את המאפיין הזה בכל התכונות",
224
320
  "Replace layer content": "החלפת תוכן השכבה",
225
321
  "Restore this version": "שחזור הגרסה הזו",
226
- "Save": "לשמור",
227
322
  "Save anyway": "לשמור בכל זאת",
228
323
  "Save current edits": "לשמור את העריכות הנוכחיות",
324
+ "Save map": "Save map",
229
325
  "Save this center and zoom": "לשמור את המרכז הזה ולהתקרב",
230
326
  "Save this location as new feature": "לשמור את המיקום הזה כתכונה חדשה",
327
+ "Save": "לשמור",
328
+ "Saved center and zoom": "Saved center and zoom",
231
329
  "Search location": "חיפוש מיקום",
232
- "See all": "להציג הכול",
233
- "See data layers": "להציג שכבות נתונים",
330
+ "Search": "Search",
331
+ "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
332
+ "Secret edit link:": "Secret edit link:",
333
+ "See layers": "See layers",
234
334
  "See full screen": "הצגת מסך מלא",
335
+ "See on OpenStreetMap": "See on OpenStreetMap",
336
+ "Select data": "Select data",
337
+ "Send me the link": "Send me the link",
235
338
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "יש להגדיר לשקר כדי להסתיר את השכבה הזאת מהמצגת, דפדפן הנתונים, הניווט המוקפץ…",
339
+ "settings": "settings",
236
340
  "Shape properties": "מאפייני צורה",
341
+ "Share and download": "Share and download",
342
+ "Share this link to open a customized map view": "Share this link to open a customized map view",
237
343
  "Short credits": "תודות מקוצרות",
344
+ "Short link": "Short link",
345
+ "Show this layer in the caption": "Show this layer in the caption",
238
346
  "Show/hide layer": "הצגת/הסתרת שכבה",
347
+ "Side panel": "לוח צד",
239
348
  "Simple link: [[http://example.com]]": "קישור פשוט: [[http://example.com]]",
349
+ "Simplify": "פישוט",
350
+ "Skipping unknown geometry.type: {type}": "יתבצע דילוג על geometry.type לא ידוע: {type}",
240
351
  "Slideshow": "מצגת",
241
352
  "Sort key": "מפתח סידור",
242
353
  "Split line": "פיצול קו",
354
+ "Star this map": "Star this map",
243
355
  "Start a hole here": "להתחיל חור מכאן",
244
356
  "Start slideshow": "התחלת מצגת",
245
357
  "Stop editing": "הפסקת עריכה",
246
358
  "Stop slideshow": "הפסקת מצגת",
359
+ "Street": "Street",
360
+ "stroke": "לוכסן",
247
361
  "Supported scheme": "סכמה נתמכת",
248
362
  "Supported variables that will be dynamically replaced": "משתנים נתמכים שיוחלפו באופן דינמי",
249
- "TMS format": "מבנה TMS",
363
+ "Switch to edit mode": "Switch to edit mode",
364
+ "Symbol": "Symbol",
365
+ "Table": "טבלה",
250
366
  "Text color for the cluster label": "צבע טקסט לתווית הקבוצה",
251
367
  "Text formatting": "עיצוב טקסט",
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
+ "The name of the property to use as feature unique identifier.": "The name of the property to use as feature unique identifier.",
370
+ "The zoom and center have been modified.": "The zoom and center have been modified.",
371
+ "TMS format": "מבנה TMS",
252
372
  "To use if remote server doesn't allow cross domain (slower)": "יש להשתמש אם השרת המרוחק לא מאפשר קישור בין שמות תחומים (Cross Origin - אטי יותר)",
253
373
  "To zoom": "לתקריב",
374
+ "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
375
+ "Toggle edit mode": "Toggle edit mode",
254
376
  "Transfer shape to edited feature": "המרת צורה לתכונה לעריכה",
255
377
  "Transform to lines": "המרה לקווים",
256
378
  "Transform to polygon": "המרה למצולע",
379
+ "Type a place name or coordinates": "Type a place name or coordinates",
380
+ "Type char or paste emoji": "Type char or paste emoji",
257
381
  "Type of layer": "סוג שכבה",
258
382
  "Unable to detect format of file {filename}": "לא ניתן לזהות את מבנה הקובץ {filename}",
259
383
  "Untitled layer": "שכבה ללא שם",
260
384
  "Untitled map": "מפה ללא שם",
261
- "Update permissions": "עדכון הרשאות",
262
385
  "Update permissions and editors": "עדכון הרשאות ועורכים",
386
+ "Update permissions": "עדכון הרשאות",
387
+ "Update who can see and edit the map": "Update who can see and edit the map",
263
388
  "Url": "כתובת",
389
+ "URL": "URL",
264
390
  "Use current bounds": "להשתמש בגבולות הנוכחיים",
265
391
  "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "ניתן להשתמש בממלאי מקום למאפייני תכונות בתוך סוגריים, למשל: {name}, הם יוחלפו דינמית בערכים המתאימים.",
266
392
  "User content credits": "תודות על תוכן המשתמש",
267
393
  "User interface options": "אפשרויות מנשק משתמש",
394
+ "User location": "User location",
395
+ "Verify remote URL": "Verify remote URL",
268
396
  "Versions": "גרסאות",
269
397
  "View Fullscreen": "הצגה במסך מלא",
398
+ "View": "View",
399
+ "Visibility: {status}": "Visibility: {status}",
400
+ "weight": "משקל",
270
401
  "Where do we go from here?": "לאן מתקדמים מכאן?",
271
402
  "Whether to display or not polygons paths.": "האם להציג נתיבי מצולעים או לא.",
272
403
  "Whether to fill polygons with color.": "האם למלא מצולעים בצבע.",
404
+ "Who can edit \"{layer}\"": "Who can edit \"{layer}\"",
273
405
  "Who can edit": "למי יש אפשרות לערוך",
274
406
  "Who can view": "למי יש אפשרות לצפות",
407
+ "width": "רוחב",
275
408
  "Will be displayed in the bottom right corner of the map": "יוצג בפינה הימנית התחתונה של המפה",
409
+ "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
410
  "Will be visible in the caption of the map": "יופיע בכותרת המפה",
277
411
  "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "אופסי! מישהו ערך את הנתונים שלך. עדיין ניתן לשמור אבל זה עשוי למחוק את השינויים שאחרים עשו.",
412
+ "yes": "כן",
413
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
278
414
  "Zoom in": "התקרבות",
279
415
  "Zoom level for automatic zooms": "רמת תקריב לתקריבים אוטומטיים",
280
416
  "Zoom out": "התרחקות",
@@ -283,155 +419,34 @@ const locale = {
283
419
  "Zoom to the previous": "התמקדות על הקודם",
284
420
  "Zoom to this feature": "התמקדות על תכונה זו",
285
421
  "Zoom to this place": "התמקדות על המקום הזה",
286
- "attribution": "ייחוס",
287
- "by": "מאת",
288
- "display name": "שם תצוגה",
289
- "height": "גובה",
290
- "licence": "רישיון",
291
- "max East": "מזרח מרבי",
292
- "max North": "צפון מרבי",
293
- "max South": "דרום מרבי",
294
- "max West": "מערב מרבי",
295
- "max zoom": "תקריב מרבי",
296
- "min zoom": "תקריב מזערי",
297
- "next": "הבא",
298
- "previous": "הקודם",
299
- "width": "רוחב",
300
- "{count} errors during import: {message}": "{count} שגיאות במהלך הייבוא: {message}",
301
- "Measure distances": "מדידת מרחקים",
302
- "NM": "מיילים ימיים",
303
- "kilometers": "קילומטרים",
304
- "km": "ק״מ",
305
- "mi": "מייל",
306
- "miles": "מיילים",
307
- "nautical miles": "מיילים ימיים",
308
- "1 day": "יום",
309
- "1 hour": "שעה",
310
- "5 min": "5 דקות",
311
- "Cache proxied request": "שמירת בקשות שעברו דרך המתווך במטמון",
312
- "No cache": "אין מטמון",
313
- "Popup": "חלונית מוקפצת",
314
- "Popup (large)": "חלונית מוקפצת (גדולה)",
315
- "Popup content style": "סגנון תוכן חלונית מוקפצת",
316
- "Popup shape": "צורת חלונית מוקפצת",
317
- "Skipping unknown geometry.type: {type}": "יתבצע דילוג על geometry.type לא ידוע: {type}",
318
- "Optional.": "רשות.",
319
- "Paste your data here": "נא להדביק את הנתונים שלך כאן",
320
- "Please save the map first": "נא לשמור את המפה קודם",
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
422
  "{area} acres": "{area} acres",
334
423
  "{area} ha": "{area} ha",
335
424
  "{area} m²": "{area} m²",
336
425
  "{area} mi²": "{area} mi²",
337
426
  "{area} yd²": "{area} yd²",
338
- "{distance} NM": "{distance} NM",
427
+ "{count} errors during import: {message}": "{count} שגיאות במהלך הייבוא: {message}",
428
+ "{delay} seconds": "{delay} שניות",
339
429
  "{distance} km": "{distance} km",
340
430
  "{distance} m": "{distance} m",
341
431
  "{distance} miles": "{distance} miles",
432
+ "{distance} NM": "{distance} NM",
342
433
  "{distance} yd": "{distance} yd",
343
- " (area: {measure})": "(area: {measure})",
344
- " (length: {measure})": "(length: {measure})",
345
- "Animated transitions": "Animated transitions",
346
- "Background overlay url": "Background overlay url",
347
- "Custom overlay": "Custom overlay",
348
- "Display the star map button": "Display the star map button",
349
- "Error in the overlay URL": "Error in the overlay URL",
350
- "Map has been starred": "Map has been starred",
351
- "Map has been unstarred": "Map has been unstarred",
352
- "Opacity": "Opacity",
353
- "Star this map": "Star this map",
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.": "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.",
355
- "Direct link": "Direct link",
356
- "The zoom and center have been modified.": "The zoom and center have been modified.",
357
- "Congratulations, your map has been created!": "Congratulations, your map has been created!",
358
- "Copy link": "Copy link",
359
- "Email": "Email",
360
- "Secret edit link copied to clipboard!": "Secret edit link copied to clipboard!",
361
- "Send me the link": "Send me the link",
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:": "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:",
363
- "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.",
364
- "Toggle edit mode (⇧+Click)": "Toggle edit mode (⇧+Click)",
365
- "icon opacity": "icon opacity",
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"
434
+ "Edit map name and caption": "Edit map name and caption",
435
+ "Map advanced properties": "Map advanced properties",
436
+ "Edit map details": "Edit map details",
437
+ "Back to browser": "Back to browser",
438
+ "Toggle size": "Toggle size",
439
+ "Layers": "Layers",
440
+ "Display the caption control": "Display the caption control",
441
+ "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.",
442
+ "<empty value>": "<empty value>",
443
+ "Min": "Min",
444
+ "Max": "Max",
445
+ "From": "From",
446
+ "Until": "Until",
447
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
448
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
449
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns."
435
450
  }
436
451
  L.registerLocale("he", locale)
437
452
  L.setLocale("he")