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