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?": "Benarkan zum dengan roda tatal?",
3
+ "Automatic": "Automatik",
4
+ "Ball": "Bola",
5
+ "Cancel": "Batal",
6
+ "Caption": "Keterangan",
7
+ "Choose the data format": "Pilih format data",
8
+ "Choose the layer of the feature": "Pilih lapisan bagi sifat",
9
+ "Circle": "Bulatan",
10
+ "Clustered": "Berkelompok",
11
+ "Data browser": "Pelayar data",
12
+ "Default": "Lalai",
13
+ "Default zoom level": "Tahap zum lalai",
14
+ "Default: name": "Lalai: nama",
15
+ "Display label": "Label paparan",
16
+ "Display the control to open OpenStreetMap editor": "Paparkan kawalan untuk buka penyunting OpenStreetMap",
17
+ "Display the data layers control": "Paparkan kawalan lapisan data",
18
+ "Display the embed control": "Paparkan kawalan benaman",
19
+ "Display the fullscreen control": "Paparkan kawalan skrin penuh",
20
+ "Display the locate control": "Paparkan kawalan kesan kedudukan",
21
+ "Display the measure control": "Paparkan kawalan pengukuran",
22
+ "Display the search control": "Paparkan kawalan carian",
23
+ "Display the tile layers control": "Paparkan kawalan lapisan jubin",
24
+ "Display the zoom control": "Paparkan kawalan zum",
25
+ "Do you want to display a caption bar?": "Adakah anda ingin paparkan bar keterangan?",
26
+ "Do you want to display a minimap?": "Adakah anda ingin paparkan peta mini?",
27
+ "Do you want to display a panel on load?": "Adakah anda ingin paparkan panel ketika dimuatkan?",
28
+ "Do you want to display popup footer?": "Adakah anda ingin paparkan pengaki timbul?",
29
+ "Do you want to display the scale control?": "Adakah anda ingin paparkan kawalan skala?",
30
+ "Do you want to display the «more» control?": "Adakah anda ingin paparkan kawalan «lebih lagi»?",
31
+ "Drop": "Jatuhkan",
32
+ "GeoRSS (only link)": "GeoRSS (pautan sahaja)",
33
+ "GeoRSS (title + image)": "GeoRSS (tajuk + imej)",
34
+ "Heatmap": "Peta tompokan",
35
+ "Icon shape": "Bentuk ikon",
36
+ "Icon symbol": "Simbol ikon",
37
+ "Inherit": "Warisi",
38
+ "Label direction": "Arah label",
39
+ "Label key": "Kekunci label",
40
+ "Labels are clickable": "Label boleh diklik",
41
+ "None": "Tiada",
42
+ "On the bottom": "Di bawah",
43
+ "On the left": "Di kiri",
44
+ "On the right": "Di kanan",
45
+ "On the top": "Di atas",
46
+ "Popup content template": "Templat kandungan tetingkap timbul",
47
+ "Side panel": "Panel sisi",
48
+ "Simplify": "Permudahkan",
49
+ "Table": "Meja",
50
+ "always": "sentiasa",
51
+ "clear": "kosongkan",
52
+ "collapsed": "dijatuhkan",
53
+ "color": "warna",
54
+ "dash array": "tatasusunan sengkang",
55
+ "define": "takrif",
56
+ "description": "keterangan",
57
+ "expanded": "dikembangkan",
58
+ "fill": "diisi",
59
+ "fill color": "warna isian",
60
+ "fill opacity": "kelegapan isian",
61
+ "hidden": "disembunyikan",
62
+ "iframe": "iframe",
63
+ "inherit": "warisi",
64
+ "name": "nama",
65
+ "never": "tidak pernah",
66
+ "new window": "tetingkap baharu",
67
+ "no": "tidak",
68
+ "on hover": "ketika dilalukan tetikus",
69
+ "opacity": "kelegapan",
70
+ "parent window": "tetingkap induk",
71
+ "stroke": "lejang",
72
+ "weight": "tebal",
73
+ "yes": "ya",
74
+ "{delay} seconds": "{delay} saat",
75
+ "# one hash for main heading": "# satu tanda pagar untuk tajuk utama",
76
+ "## two hashes for second heading": "## dua tanda pagar untuk tajuk kedua",
77
+ "### three hashes for third heading": "### tiga tanda pagar untuk tajuk ketiga",
78
+ "**double star for bold**": "**bintang berganda untuk tulisan tebal**",
79
+ "A comma separated list of numbers that defines the stroke dash pattern. Ex.: \"5, 10, 15\".": "Senarai berpisahkan koma bagi nombor yang menentukan corak sengkang lejang. Cth.: \"5, 10, 15\".",
80
+ "About": "Perihalan",
81
+ "Action not allowed :(": "Tindakan tidak dibenarkan :(",
82
+ "Activate slideshow mode": "Aktifkan mod persembahan slaid",
83
+ "Add a layer": "Tambah lapisan",
84
+ "Add a line to the current multi": "Tambah garisan ke multi semasa",
85
+ "Add a new property": "Tambah ciri-ciri baharu",
86
+ "Add a polygon to the current multi": "Tambah poligon ke multi semasa",
87
+ "Advanced actions": "Tindakan lanjutan",
88
+ "Advanced properties": "Ciri-ciri lanjutan",
89
+ "All properties are imported.": "Semua ciri-ciri telah diimport.",
90
+ "Allow interactions": "Benarkan interaksi",
91
+ "An error occured": "Telah berlakunya ralat",
92
+ "Are you sure you want to cancel your changes?": "Adakah anda ingin membatalkan perubahan anda?",
93
+ "Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
94
+ "Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
95
+ "Are you sure you want to delete this layer?": "Adakah anda ingin memadamkan lapisan ini?",
96
+ "Are you sure you want to delete this map?": "Adakah anda ingin memadamkan peta ini?",
97
+ "Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
98
+ "Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
99
+ "Attach the map to my account": "Lampirkan peta ke akaun saya",
100
+ "Auto": "Auto",
101
+ "Autostart when map is loaded": "Automula apabila peta dimuatkan",
102
+ "Bring feature to center": "Bawa sifat ke tengah",
103
+ "Browse data": "Layari data",
104
+ "Cancel edits": "Batalkan suntingan",
105
+ "Center map on your location": "Ketengahkan peta ke kedudukan anda",
106
+ "Change map background": "Tukar latar belakang peta",
107
+ "Change tilelayers": "Tukar lapisan jubin",
108
+ "Choose a preset": "Pilih pratetapan",
109
+ "Choose the format of the data to import": "Pilih format data yang ingin diimport",
110
+ "Choose the layer to import in": "Pilih lapisan untuk diimport",
111
+ "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk",
112
+ "Click to add a marker": "Klik untuk tambahkan penanda",
113
+ "Click to continue drawing": "Klik untuk terus melukis",
114
+ "Click to edit": "Klik untuk menyunting",
115
+ "Click to start drawing a line": "Klik untuk mula melukis garisan",
116
+ "Click to start drawing a polygon": "Klik untuk mula melukis poligon",
117
+ "Clone": "Klon",
118
+ "Clone of {name}": "Klon {name}",
119
+ "Clone this feature": "Klon sifat ini",
120
+ "Clone this map": "Klon peta ini",
121
+ "Close": "Tutup",
122
+ "Clustering radius": "Jejari kelompok",
123
+ "Comma separated list of properties to use when filtering features": "Senarai berpisahkan koma bagi ciri-ciri untuk digunakan ketika menapis sifat",
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.": "Nilai dipisahkan dengan koma, tab atau koma bertitik. SRS WGS84 diimplikasikan. Hanya geometri Titik diimport. Import akan lihat pada kepala lajur untuk sebarang sebutan «lat» dan «lon» di bahagian permulaan pengepala, tak peka besar huruf. Kesemua lajur lain diimport sebagai ciri-ciri.",
125
+ "Continue line": "Garis sambung",
126
+ "Continue line (Ctrl+Click)": "Garis sambung (Ctrl+Klik)",
127
+ "Coordinates": "Koordinat",
128
+ "Credits": "Penghargaan",
129
+ "Current view instead of default map view?": "Pandangan semasa menggantikan pandangan peta lalai?",
130
+ "Custom background": "Latar belakang tersuai",
131
+ "Data is browsable": "Data boleh layar",
132
+ "Default interaction options": "Pilihan interaksi lalai",
133
+ "Default properties": "Ciri-ciri lalai",
134
+ "Default shape properties": "Ciri-ciri bentuk lalai",
135
+ "Define link to open in a new window on polygon click.": "Tetapkan pautan untuk buka dalam tetingkap baharu apabila poligon diklik",
136
+ "Delay between two transitions when in play mode": "Lengah di antara dua transisi apabila dalam mod main",
137
+ "Delete": "Padam",
138
+ "Delete all layers": "Padam semua lapisan",
139
+ "Delete layer": "Padam lapisan",
140
+ "Delete this feature": "Padam sifat ini",
141
+ "Delete this property on all the features": "Padam ciri-ciri ini di kesemua sifat-sifat",
142
+ "Delete this shape": "Padam bentuk ini",
143
+ "Delete this vertex (Alt+Click)": "Padam bucu ini (Alt+Klik)",
144
+ "Directions from here": "Arah dari sini",
145
+ "Display measure": "Paparkan ukuran",
146
+ "Display on load": "Paparkan semasa dimuatkan",
147
+ "Download": "Muat turun",
148
+ "Drag to reorder": "Seret untuk susun semula",
149
+ "Draw a marker": "Lukis penanda",
150
+ "Draw a polygon": "Lukis poligon",
151
+ "Draw a polyline": "Lukis poligaris",
152
+ "Dynamic": "Dinamik",
153
+ "Dynamic properties": "Ciri-ciri dinamik",
154
+ "Edit": "Sunting",
155
+ "Edit feature's layer": "Sunting lapisan sifat",
156
+ "Edit map properties": "Sunting ciri-ciri peta",
157
+ "Edit properties in a table": "Sunting ciri-ciri dalam jadual",
158
+ "Edit this feature": "Sunting sifat ini",
159
+ "Embed the map": "Benamkan peta",
160
+ "Empty": "Kosongkan",
161
+ "Error in the tilelayer URL": "Ralat dalam URL lapisan jubin",
162
+ "Error while fetching {url}": "Ralat ketika mengambil {url}",
163
+ "Exit Fullscreen": "Keluar Skrin Penuh",
164
+ "Extract shape to separate feature": "Sarikan bentuk untuk memisahkan sifat",
165
+ "Fetch data each time map view changes.": "Ambil data setiap kali pandangan peta berubah.",
166
+ "Filter keys": "Kekunci tapisan",
167
+ "Format": "Format",
168
+ "From zoom": "Dari zum",
169
+ "Go to «{feature}»": "Pergi ke «{feature}»",
170
+ "Heatmap intensity property": "Ciri-ciri keamatan peta tompokan",
171
+ "Heatmap radius": "Jejari peta tompokan",
172
+ "Help": "Bantuan",
173
+ "Hide controls": "Sembunyikan kawalan",
174
+ "Home": "Laman utama",
175
+ "How much to simplify the polyline on each zoom level (more = better performance and smoother look, less = more accurate)": "Berapa banyak untuk dipermudahkan bagi poligaris di setiap tahap zum (lebih banyak = lebih tinggi prestasi dan rupa lebih halus, lebih sedikit = lebih tepat)",
176
+ "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe dengan tinggi tersuai (dalam px): {{{http://iframe.url.com|height}}}",
177
+ "Iframe with custom height and width (in px): {{{http://iframe.url.com|height*width}}}": "Iframe dengan tinggi dan lebar tersuai (dalam px): {{{http://iframe.url.com|height*width}}}",
178
+ "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
179
+ "Image with custom width (in px): {{http://image.url.com|width}}": "Imej dengan lebar tersuai (dalam px): {{http://image.url.com|width}}",
180
+ "Image: {{http://image.url.com}}": "Imej: {{http://image.url.com}}",
181
+ "Import": "Import",
182
+ "Import data": "Import data",
183
+ "Import in a new layer": "Import ke lapisan baharu",
184
+ "Imports all umap data, including layers and settings.": "Import semua data umap, termasuk lapisan dan tetapan.",
185
+ "Include full screen link?": "Sertakan pautan skrin penuh?",
186
+ "Interaction options": "Pilihan interaksi",
187
+ "Invalid umap data": "Data umap tidak sah",
188
+ "Invalid umap data in {filename}": "Data umap tidak sah dalam {filename}",
189
+ "Keep current visible layers": "Kekalkan lapisan yang kelihatan sekarang",
190
+ "Latitude": "Latitud",
191
+ "Layer": "Lapisan",
192
+ "Layer properties": "Ciri-ciri lapisan",
193
+ "Licence": "Lesen",
194
+ "Limit bounds": "Had batas",
195
+ "Link to…": "Pautkan ke…",
196
+ "Link with text: [[http://example.com|text of the link]]": "Pautkan dengan tulisan: [[http://example.com|tulisan pautan]]",
197
+ "Long credits": "Penghargaan penuh",
198
+ "Longitude": "Longitud",
199
+ "Make main shape": "Buatkan bentuk utama",
200
+ "Manage layers": "Urus lapisan",
201
+ "Map background credits": "Penghargaan latar belakang peta",
202
+ "Map has been attached to your account": "Peta telah dilampirkan ke akaun anda",
203
+ "Map has been saved!": "Peta telah disimpan!",
204
+ "Map user content has been published under licence": "Kandungan pengguna peta telah diterbitkan di bawah lesen",
205
+ "Map's editors": "Penyunting peta",
206
+ "Map's owner": "Pemilik peta",
207
+ "Merge lines": "Gabungkan garisan",
208
+ "More controls": "Lebih banyak kawalan",
209
+ "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Mestilah nilai CSS yang sah (cth.: DarkBlue atau #123456)",
210
+ "No licence has been set": "Tiada lesen ditetapkan",
211
+ "No results": "Tiada hasil",
212
+ "Open link in…": "Buka pautan dalam…",
213
+ "Open this map extent in a map editor to provide more accurate data to OpenStreetMap": "Buka takat peta ini dalam penyunting peta untuk menyediakan data yang lebih tepat ke OpenStreetMap",
214
+ "Optional intensity property for heatmap": "Ciri-ciri keamatan pilihan untuk peta tompokan",
215
+ "Optional. Same as color if not set.": "Pilihan. Sama seperti warna jika tidak ditetapkan.",
216
+ "Override clustering radius (default 80)": "Menggantikan jejari kelompok (nilai lalai 80)",
217
+ "Override heatmap radius (default 25)": "Menggantikan jejari peta tompokan (nilai lalai 25)",
218
+ "Please be sure the licence is compliant with your use.": "Sila pastikan lesen menurut kegunaan anda.",
219
+ "Please choose a format": "Sila pilih format",
220
+ "Please enter the name of the property": "Sila masukkan nama ciri-ciri",
221
+ "Please enter the new name of this property": "Sila masukkan nama baharu bagi ciri-ciri ini",
222
+ "Problem in the response": "Masalah dalam tindak balas",
223
+ "Problem in the response format": "Masalah dalam format tindak balas",
224
+ "Properties imported:": "Ciri-ciri diimport:",
225
+ "Provide an URL here": "Sediakan URL di sini",
226
+ "Proxy request": "Permintaan proksi",
227
+ "Remote data": "Data jarak jauh",
228
+ "Remove shape from the multi": "Buang bentuk daripada multi",
229
+ "Rename this property on all the features": "Namakan semula ciri-ciri ini di kesemua sifat-sifat",
230
+ "Replace layer content": "Gantikan kandungan lapisan",
231
+ "Restore this version": "Pulihkan versi ini",
232
+ "Save": "Simpan",
233
+ "Save anyway": "Simpan juga apa pun",
234
+ "Save current edits": "Simpan suntingan semasa",
235
+ "Save this center and zoom": "Simpan kedudukan tengah dan zum ini",
236
+ "Save this location as new feature": "Simpan kedudukan ini sebagai sifat baharu",
237
+ "Search location": "Kedudukan carian",
238
+ "See all": "Lihat semua",
239
+ "See data layers": "Lihat lapisan data",
240
+ "See full screen": "Lihat skrin penuh",
241
+ "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Tetapkan ke salah untuk menyembunyikan lapisan ini daripada persembahan slaid, pelayar data, navigasi timbul…",
242
+ "Shape properties": "Ciri-ciri bentuk",
243
+ "Short credits": "Penghargaan pendek",
244
+ "Show/hide layer": "Tunjuk/sembunyi lapisan",
245
+ "Simple link: [[http://example.com]]": "Pautan ringkas: [[http://example.com]]",
246
+ "Slideshow": "Persembahan slaid",
247
+ "Sort key": "Kekunci isihan",
248
+ "Split line": "Garisan pemisah",
249
+ "Start a hole here": "Mulakan lubang di sini",
250
+ "Start slideshow": "Mulakan persembahan slaid",
251
+ "Stop editing": "Berhenti menyunting",
252
+ "Stop slideshow": "Berhenti persembahan slaid",
253
+ "Supported scheme": "Skema disokong",
254
+ "Supported variables that will be dynamically replaced": "Pemboleh ubah disokong yang akan digantikan secara dinamik",
255
+ "TMS format": "Format TMS",
256
+ "Text color for the cluster label": "Warna tulisan label kelompok",
257
+ "Text formatting": "Format tulisan",
258
+ "To use if remote server doesn't allow cross domain (slower)": "Untuk digunakan jika pelayan jarak jauh tidak benarkan rentang domain (lebih perlahan)",
259
+ "To zoom": "Untuk zum",
260
+ "Transfer shape to edited feature": "Pindah bentuk ke sifat yang disunting",
261
+ "Transform to lines": "Jelmakan menjadi garisan",
262
+ "Transform to polygon": "Jelmakan menjadi poligon",
263
+ "Type of layer": "Jenis lapisan",
264
+ "Unable to detect format of file {filename}": "Tidak mampu mengesan format fail {filename}",
265
+ "Untitled layer": "Lapisan tanpa tajuk",
266
+ "Untitled map": "Peta tanpa tajuk",
267
+ "Update permissions": "Kemas kini kebenaran",
268
+ "Update permissions and editors": "Kemas kini kebenaran dan penyunting",
269
+ "Url": "Url",
270
+ "Use current bounds": "Guna batas semasa",
271
+ "Use placeholders with feature properties between brackets, eg. {name}, they will be dynamically replaced by the corresponding values.": "Guna pemegang tempat dengan ciri-ciri sifat di antara tanda kurung dakap, spt. {name}, mereka akan digantikan dengan nilai yang berkenaan secara dinamiknya.",
272
+ "User content credits": "Penghargaan kandungan pengguna",
273
+ "User interface options": "Pilihan antara muka pengguna",
274
+ "Versions": "Versi",
275
+ "View Fullscreen": "Lihat Skrin Penuh",
276
+ "Where do we go from here?": "Ke mana kita pergi dari sini?",
277
+ "Whether to display or not polygons paths.": "Sama ada ingin paparkan laluan poligon ataupun tidak.",
278
+ "Whether to fill polygons with color.": "Sama ada ingin isikan poligon dengan warna.",
279
+ "Who can edit": "Siapa boleh sunting",
280
+ "Who can view": "Siapa boleh lihat",
281
+ "Will be displayed in the bottom right corner of the map": "Akan dipaparkan di bucu kanan bawah peta",
282
+ "Will be visible in the caption of the map": "Akan kelihatan dalam keterangan peta",
283
+ "Woops! Someone else seems to have edited the data. You can save anyway, but this will erase the changes made by others.": "Alamak! Nampaknya orang lain telah menyunting data. Anda boleh simpan juga, tetapi ini akan memadam perubahan yang dibuat oleh orang lain.",
284
+ "Zoom in": "Zum masuk",
285
+ "Zoom level for automatic zooms": "Tahap zum bagi zum automatik",
286
+ "Zoom out": "Zum keluar",
287
+ "Zoom to layer extent": "Zum ke batas lapisan",
288
+ "Zoom to the next": "Zum ke seterusnya",
289
+ "Zoom to the previous": "Zum ke sebelumnya",
290
+ "Zoom to this feature": "Zum ke sifat ini",
291
+ "Zoom to this place": "Zum ke tempat ini",
292
+ "attribution": "atribusi",
293
+ "by": "oleh",
294
+ "display name": "nama paparan",
295
+ "height": "tinggi",
296
+ "licence": "lesen",
297
+ "max East": "Timur maksimum",
298
+ "max North": "Utara maksimum",
299
+ "max South": "Selatan maksimum",
300
+ "max West": "Barat maksimum",
301
+ "max zoom": "zum maksimum",
302
+ "min zoom": "zum minimum",
303
+ "next": "seterusnya",
304
+ "previous": "sebelumnya",
305
+ "width": "lebar",
306
+ "{count} errors during import: {message}": "{count} ralat ketika import: {message}",
307
+ "Measure distances": "Ukur jarak",
308
+ "NM": "NM",
309
+ "kilometers": "kilometer",
310
+ "km": "km",
311
+ "mi": "bt",
312
+ "miles": "batu",
313
+ "nautical miles": "batu nautika",
314
+ "1 day": "1 hari",
315
+ "1 hour": "1 jam",
316
+ "5 min": "5 minit",
317
+ "Cache proxied request": "Cache permintaan diproksi",
318
+ "No cache": "Tiada cache",
319
+ "Popup": "Tetingkap timbul",
320
+ "Popup (large)": "Tetingkap timbul (besar)",
321
+ "Popup content style": "Gaya kandungan tetingkap timbul",
322
+ "Popup shape": "Bentuk tetingkap timbul",
323
+ "Skipping unknown geometry.type: {type}": "Melangkau jenis geometri tidak diketahui: {type}",
324
+ "Optional.": "Pilihan.",
325
+ "Paste your data here": "Tampalkan data anda di sini",
326
+ "Please save the map first": "Sila simpan peta terlebih dahulu",
327
+ "Feature identifier key": "Kekunci pengenalpastian sifat",
328
+ "Open current feature on load": "Buka sifat semasa ketika dimuatkan",
329
+ "Permalink": "Pautan kekal",
330
+ "The name of the property to use as feature unique identifier.": "Nama ciri-ciri untuk digunakan sebagai pengenalpastian unik sifat.",
331
+ "Do you want to display caption menus?": "Adakah anda ingin paparkan menu keterangan?",
332
+ "Example: key1,key2,key3": "Contoh: kekunci1,kekunci2,kekunci3",
333
+ "Invalid latitude or longitude": "Latitud atau longitud tidak sah",
334
+ "Invalide property name: {name}": "Nama ciri tidak sah: {name}",
335
+ "Permanent credits": "Penghargaan kekal",
336
+ "Permanent credits background": "Latar penghargaan kekal",
337
+ "Select data": "Pilih data",
338
+ "Will be permanently visible in the bottom left corner of the map": "Akan dipaparkan secara kekal di bucu kiri bawah peta",
339
+ "{area} acres": "{area} ekar",
340
+ "{area} ha": "{area} hektar",
341
+ "{area} m²": "{area} meter²",
342
+ "{area} mi²": "{area} batu²",
343
+ "{area} yd²": "{area} ela²",
344
+ "{distance} NM": "{distance} batu nautika",
345
+ "{distance} km": "{distance} kilometer",
346
+ "{distance} m": "{distance} meter",
347
+ "{distance} miles": "{distance} batu",
348
+ "{distance} yd": "{distance} ela",
349
+ " (area: {measure})": "(kawasan: {measure})",
350
+ " (length: {measure})": "(panjang: {measure})",
351
+ "Animated transitions": "Transisi beranimasi",
352
+ "Background overlay url": "URL tindihan atas latar belakang",
353
+ "Custom overlay": "Tindihan atas tersuai",
354
+ "Display the star map button": "Paparkan butang tanda bintang peta",
355
+ "Error in the overlay URL": "Ralat dalam URL tindihan atas",
356
+ "Map has been starred": "Peta telah ditandai bintang",
357
+ "Map has been unstarred": "Peta telah dinyahtandai bintang",
358
+ "Opacity": "Kelegapan",
359
+ "Star this map": "Tandai bintang peta ini",
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.": "Simbol boleh jadi aksara unicode atau URL. Anda boleh gunakan ciri-ciri sifat sebagai pemboleh ubah: cth.: dengan \"http://myserver.org/images/{name}.png\", pemboleh ubah {name} akan digantikan dengan nilai \"name\" bagi setiap penanda.",
361
+ "Direct link": "Pautan terus",
362
+ "The zoom and center have been modified.": "Zum dan kedudukan tengah telah diubah suai.",
363
+ "Congratulations, your map has been created!": "Tahniah, peta anda telah berjaya dicipta!",
364
+ "Copy link": "Salin pautan",
365
+ "Email": "E-mel",
366
+ "Secret edit link copied to clipboard!": "Pautan suntingan rahsia telah disalin ke papan keratan!",
367
+ "Send me the link": "Hantarkan pautan kepada saya",
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:": "Peta anda telah berjaya dicipta! Memandangkan anda tidak log masuk, ini pautan rahsia anda untuk menyunting peta, sila simpannya dengan selamat:",
369
+ "Comma separated list of properties to use for sorting features. To reverse the sort, put a minus sign (-) before. Eg. mykey,-otherkey.": "Senarai ciri-ciri untuk digunakan bagi sifat isihan, dipisahkan dengan koma. Untuk mengundur isihan, letak tanda tolak (-) sebelumnya. Cth. kekuncisaya,-kekuncilain.",
370
+ "Toggle edit mode (⇧+Click)": "Togol mod suntingan (⇧+Klik)",
371
+ "icon opacity": "kelegapan ikon",
372
+ "*single star for italic*": "*bintang tunggal untuk tulisan condong*",
373
+ "--- for a horizontal rule": "--- untuk garis melintang",
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}\")": "Nama bagi ciri untuk digunakan sebagai label sifat (cth.: \"nom\"). Anda juga boleh gunakan ciri-ciri dalam kurungan dakap untuk guna lebih daripada satu ciri atau untuk gabung dengan kandungan statik (cth.: \"{name} di {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)": "Senarai berpisahkan koma bagi ciri-ciri untuk digunakan ketika menggelintar faset (cth.: kekuncisaya,kekuncilain). Untuk mengawal label, tambahkannya selepas tanda | (cth.: kekuncisaya|Kekunci Saya,kekuncilain|Kekunci Lain)",
376
+ "Default view": "Paparan lalai",
377
+ "Facet keys": "Kekunci faset",
378
+ "Facet search": "Gelintaran faset",
379
+ "Feature properties": "Ciri-ciri sifat",
380
+ "Issue reaching that URL (network problem or CORS protection): {url}": "Ada isu ketika mencapai URL tersebut (masalah rangkaian atau perlindungan CORS): {url}",
381
+ "Latest feature": "Sifat terbaru",
382
+ "No results for these facets": "Tiada hasil bagi faset ini",
383
+ "Saved center and zoom": "Kedudukan tengah dan zum telah disimpan",
384
+ "User location": "Kedudukan pengguna",
385
+ "Visibility: {status}": "Kebolehlihatan: {status}",
386
+ "Fit all data": "Sesuaikan semua data",
387
+ "Verify remote URL": "Sahkan URL jarak jauh",
388
+ "Add": "Tambah",
389
+ "Change": "Tukar",
390
+ "Powered by uMap": "Dikuasakan oleh uMap",
391
+ "Search": "Cari",
392
+ "Datalayers": "Lapisan data",
393
+ "Secret edit link:": "Pautan suntingan rahsia:",
394
+ "Who can edit \"{layer}\"": "Siapa boleh sunting \"{layer}\"",
395
+ "Current map view": "Paparan peta semasa",
396
+ "Filter": "Tapis",
397
+ "Choropleth": "Koroplet",
398
+ "Choropleth breakpoints": "Titik putus koroplet",
399
+ "Choropleth classes": "Kelas koroplet",
400
+ "Choropleth color palette": "Palet warna koroplet",
401
+ "Choropleth mode": "Mod koroplet",
402
+ "Choropleth property value": "Nilai ciri koroplet",
403
+ "Comma separated list of numbers, including min and max values.": "Senarai nombor, dipisahkan dengan koma, termasuk nilai minimum dan maksimum.",
404
+ "Equidistant": "Sama jarak",
405
+ "Jenks-Fisher": "Jenks-Fisher",
406
+ "K-means": "Cara K",
407
+ "Manual": "Manual",
408
+ "Number of desired classes (default 5)": "Jumlah kelas yang diingini (lalainya 5)",
409
+ "Quantiles": "Kuantil",
410
+ "Show this layer in the caption": "Tunjuk lapisan ini dalam keterangan",
411
+ "Back to preview": "Kembali ke pralihat",
412
+ "Drawing": "Lukisan",
413
+ "Edit the title of the map": "Sunting tajuk peta",
414
+ "Go to the homepage": "Pergi ke halaman utama",
415
+ "Switch to edit mode": "Tukar ke mod suntingan",
416
+ "Update who can see and edit the map": "Kemas kini siapa boleh lihat dan sunting peta",
417
+ "View": "Lihat",
418
+ "Add image URL": "Tambah URL imej",
419
+ "Emoji & Character": "Emoji & Aksara",
420
+ "Generic": "Generik",
421
+ "Symbol": "Simbol",
422
+ "Type char or paste emoji": "Taip aksara atau tampal 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("ms", locale)
447
+ L.setLocale("ms")