umap-project 2.1.3__py3-none-any.whl → 2.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of umap-project might be problematic. Click here for more details.

Files changed (200) hide show
  1. umap/__init__.py +1 -1
  2. umap/context_processors.py +1 -0
  3. umap/locale/br/LC_MESSAGES/django.mo +0 -0
  4. umap/locale/en/LC_MESSAGES/django.po +32 -32
  5. umap/locale/hu/LC_MESSAGES/django.mo +0 -0
  6. umap/locale/it/LC_MESSAGES/django.mo +0 -0
  7. umap/locale/ms/LC_MESSAGES/django.mo +0 -0
  8. umap/migrations/0020_alter_tilelayer_url_template.py +19 -0
  9. umap/migrations/0021_remove_map_description.py +16 -0
  10. umap/models.py +8 -6
  11. umap/settings/base.py +1 -0
  12. umap/static/umap/base.css +43 -156
  13. umap/static/umap/content.css +7 -25
  14. umap/static/umap/css/icon.css +112 -0
  15. umap/static/umap/css/panel.css +140 -0
  16. umap/static/umap/img/16-white.svg +5 -1
  17. umap/static/umap/img/16.svg +7 -4
  18. umap/static/umap/img/24-white.svg +3 -1
  19. umap/static/umap/img/24.svg +3 -4
  20. umap/static/umap/img/source/16-white.svg +176 -940
  21. umap/static/umap/img/source/16.svg +8 -5
  22. umap/static/umap/img/source/24-white.svg +5 -3
  23. umap/static/umap/img/source/24.svg +6 -7
  24. umap/static/umap/js/modules/browser.js +97 -73
  25. umap/static/umap/js/modules/dompurify.js +12 -0
  26. umap/static/umap/js/modules/facets.js +149 -0
  27. umap/static/umap/js/modules/global.js +9 -1
  28. umap/static/umap/js/modules/i18n.js +7 -0
  29. umap/static/umap/js/modules/orderable.js +84 -0
  30. umap/static/umap/js/modules/panel.js +76 -0
  31. umap/static/umap/js/modules/request.js +0 -1
  32. umap/static/umap/js/modules/schema.js +324 -223
  33. umap/static/umap/js/modules/urls.js +1 -16
  34. umap/static/umap/js/modules/utils.js +340 -0
  35. umap/static/umap/js/umap.autocomplete.js +40 -25
  36. umap/static/umap/js/umap.controls.js +227 -369
  37. umap/static/umap/js/umap.core.js +77 -366
  38. umap/static/umap/js/umap.datalayer.permissions.js +1 -1
  39. umap/static/umap/js/umap.features.js +62 -42
  40. umap/static/umap/js/umap.forms.js +128 -36
  41. umap/static/umap/js/umap.icon.js +11 -4
  42. umap/static/umap/js/umap.importer.js +78 -57
  43. umap/static/umap/js/umap.js +179 -156
  44. umap/static/umap/js/umap.layer.js +79 -40
  45. umap/static/umap/js/umap.permissions.js +13 -9
  46. umap/static/umap/js/umap.popup.js +26 -30
  47. umap/static/umap/js/umap.share.js +12 -9
  48. umap/static/umap/js/umap.tableeditor.js +4 -6
  49. umap/static/umap/js/umap.ui.js +10 -60
  50. umap/static/umap/locale/am_ET.js +243 -227
  51. umap/static/umap/locale/am_ET.json +21 -9
  52. umap/static/umap/locale/ar.js +243 -227
  53. umap/static/umap/locale/ar.json +21 -9
  54. umap/static/umap/locale/ast.js +243 -227
  55. umap/static/umap/locale/ast.json +21 -9
  56. umap/static/umap/locale/bg.js +243 -227
  57. umap/static/umap/locale/bg.json +21 -9
  58. umap/static/umap/locale/br.js +253 -237
  59. umap/static/umap/locale/br.json +25 -13
  60. umap/static/umap/locale/ca.js +243 -227
  61. umap/static/umap/locale/ca.json +21 -9
  62. umap/static/umap/locale/cs_CZ.js +243 -227
  63. umap/static/umap/locale/cs_CZ.json +21 -9
  64. umap/static/umap/locale/da.js +243 -227
  65. umap/static/umap/locale/da.json +21 -9
  66. umap/static/umap/locale/de.js +243 -227
  67. umap/static/umap/locale/de.json +21 -9
  68. umap/static/umap/locale/el.js +243 -227
  69. umap/static/umap/locale/el.json +21 -9
  70. umap/static/umap/locale/en.js +243 -234
  71. umap/static/umap/locale/en.json +22 -10
  72. umap/static/umap/locale/en_US.json +21 -9
  73. umap/static/umap/locale/es.js +243 -227
  74. umap/static/umap/locale/es.json +21 -9
  75. umap/static/umap/locale/et.js +243 -227
  76. umap/static/umap/locale/et.json +21 -9
  77. umap/static/umap/locale/eu.js +227 -199
  78. umap/static/umap/locale/eu.json +1 -1
  79. umap/static/umap/locale/fa_IR.js +243 -227
  80. umap/static/umap/locale/fa_IR.json +21 -9
  81. umap/static/umap/locale/fi.js +243 -227
  82. umap/static/umap/locale/fi.json +21 -9
  83. umap/static/umap/locale/fr.js +243 -234
  84. umap/static/umap/locale/fr.json +21 -9
  85. umap/static/umap/locale/gl.js +243 -227
  86. umap/static/umap/locale/gl.json +21 -9
  87. umap/static/umap/locale/he.js +243 -227
  88. umap/static/umap/locale/he.json +21 -9
  89. umap/static/umap/locale/hr.js +243 -227
  90. umap/static/umap/locale/hr.json +21 -9
  91. umap/static/umap/locale/hu.js +243 -234
  92. umap/static/umap/locale/hu.json +21 -9
  93. umap/static/umap/locale/id.js +243 -227
  94. umap/static/umap/locale/id.json +21 -9
  95. umap/static/umap/locale/is.js +243 -227
  96. umap/static/umap/locale/is.json +21 -9
  97. umap/static/umap/locale/it.js +243 -234
  98. umap/static/umap/locale/it.json +21 -9
  99. umap/static/umap/locale/ja.js +243 -227
  100. umap/static/umap/locale/ja.json +21 -9
  101. umap/static/umap/locale/ko.js +243 -227
  102. umap/static/umap/locale/ko.json +21 -9
  103. umap/static/umap/locale/lt.js +243 -227
  104. umap/static/umap/locale/lt.json +21 -9
  105. umap/static/umap/locale/ms.js +243 -234
  106. umap/static/umap/locale/ms.json +22 -10
  107. umap/static/umap/locale/nl.js +246 -230
  108. umap/static/umap/locale/nl.json +21 -9
  109. umap/static/umap/locale/no.js +243 -227
  110. umap/static/umap/locale/no.json +21 -9
  111. umap/static/umap/locale/pl.js +243 -227
  112. umap/static/umap/locale/pl.json +21 -9
  113. umap/static/umap/locale/pl_PL.json +21 -9
  114. umap/static/umap/locale/pt.js +243 -227
  115. umap/static/umap/locale/pt.json +21 -9
  116. umap/static/umap/locale/pt_BR.js +243 -227
  117. umap/static/umap/locale/pt_BR.json +21 -9
  118. umap/static/umap/locale/pt_PT.js +243 -227
  119. umap/static/umap/locale/pt_PT.json +21 -9
  120. umap/static/umap/locale/ro.js +243 -227
  121. umap/static/umap/locale/ro.json +21 -9
  122. umap/static/umap/locale/ru.js +243 -227
  123. umap/static/umap/locale/ru.json +21 -9
  124. umap/static/umap/locale/si.js +1 -1
  125. umap/static/umap/locale/si.json +1 -1
  126. umap/static/umap/locale/sk_SK.js +243 -227
  127. umap/static/umap/locale/sk_SK.json +21 -9
  128. umap/static/umap/locale/sl.js +243 -227
  129. umap/static/umap/locale/sl.json +21 -9
  130. umap/static/umap/locale/sr.js +243 -227
  131. umap/static/umap/locale/sr.json +21 -9
  132. umap/static/umap/locale/sv.js +243 -227
  133. umap/static/umap/locale/sv.json +21 -9
  134. umap/static/umap/locale/th_TH.js +243 -227
  135. umap/static/umap/locale/th_TH.json +21 -9
  136. umap/static/umap/locale/tr.js +243 -227
  137. umap/static/umap/locale/tr.json +21 -9
  138. umap/static/umap/locale/uk_UA.js +243 -227
  139. umap/static/umap/locale/uk_UA.json +21 -9
  140. umap/static/umap/locale/vi.js +243 -227
  141. umap/static/umap/locale/vi.json +21 -9
  142. umap/static/umap/locale/vi_VN.json +21 -9
  143. umap/static/umap/locale/zh.js +243 -227
  144. umap/static/umap/locale/zh.json +21 -9
  145. umap/static/umap/locale/zh_CN.json +21 -9
  146. umap/static/umap/locale/zh_TW.Big5.json +21 -9
  147. umap/static/umap/locale/zh_TW.js +243 -234
  148. umap/static/umap/locale/zh_TW.json +21 -9
  149. umap/static/umap/map.css +124 -264
  150. umap/static/umap/test/DataLayer.js +463 -0
  151. umap/static/umap/test/Feature.js +0 -226
  152. umap/static/umap/test/TableEditor.js +104 -0
  153. umap/static/umap/test/Util.js +0 -521
  154. umap/static/umap/test/index.html +0 -1
  155. umap/static/umap/unittests/URLs.js +1 -1
  156. umap/static/umap/unittests/utils.js +610 -0
  157. umap/static/umap/vars.css +9 -0
  158. umap/static/umap/vendors/dompurify/purify.es.mjs +1525 -0
  159. umap/static/umap/vendors/formbuilder/Leaflet.FormBuilder.js +1 -0
  160. umap/static/umap/vendors/iconlayers/iconLayers.js +1 -1
  161. umap/templates/umap/css.html +2 -0
  162. umap/templates/umap/js.html +0 -1
  163. umap/templates/umap/map_detail.html +4 -0
  164. umap/templates/umap/map_table.html +12 -10
  165. umap/templatetags/umap_tags.py +5 -0
  166. umap/tests/integration/conftest.py +12 -1
  167. umap/tests/integration/test_anonymous_owned_map.py +27 -5
  168. umap/tests/integration/test_basics.py +21 -0
  169. umap/tests/integration/test_browser.py +12 -25
  170. umap/tests/integration/test_choropleth.py +1 -1
  171. umap/tests/integration/test_dashboard.py +10 -0
  172. umap/tests/integration/test_datalayer.py +8 -6
  173. umap/tests/integration/test_edit_datalayer.py +24 -19
  174. umap/tests/integration/test_edit_map.py +189 -2
  175. umap/tests/integration/test_edit_marker.py +120 -0
  176. umap/tests/integration/test_edit_polygon.py +122 -0
  177. umap/tests/integration/test_facets_browser.py +104 -14
  178. umap/tests/integration/test_import.py +72 -20
  179. umap/tests/integration/test_map.py +19 -17
  180. umap/tests/integration/test_map_list.py +28 -0
  181. umap/tests/integration/test_owned_map.py +10 -10
  182. umap/tests/integration/test_picto.py +5 -5
  183. umap/tests/integration/test_querystring.py +9 -15
  184. umap/tests/integration/test_slideshow.py +0 -5
  185. umap/tests/integration/test_statics.py +3 -2
  186. umap/tests/integration/test_tableeditor.py +1 -5
  187. umap/tests/integration/test_tilelayer.py +10 -0
  188. umap/tests/integration/test_view_marker.py +64 -0
  189. umap/tests/integration/test_view_polygon.py +59 -0
  190. umap/tests/integration/test_view_polyline.py +51 -0
  191. umap/tests/test_map_views.py +13 -0
  192. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/METADATA +12 -12
  193. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/RECORD +198 -182
  194. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/WHEEL +1 -1
  195. umap/static/umap/vendors/dompurify/purify.min.js +0 -3
  196. umap/static/umap/vendors/dompurify/purify.min.js.map +0 -1
  197. /umap/tests/integration/{test_polygon.py → test_draw_polygon.py} +0 -0
  198. /umap/tests/integration/{test_polyline.py → test_draw_polyline.py} +0 -0
  199. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/entry_points.txt +0 -0
  200. {umap_project-2.1.3.dist-info → umap_project-2.2.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,92 +1,33 @@
1
1
  const locale = {
2
- "Allow scroll wheel zoom?": "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",
2
+ " (area: {measure})": "(kawasan: {measure})",
3
+ " (length: {measure})": "(panjang: {measure})",
75
4
  "# one hash for main heading": "# satu tanda pagar untuk tajuk utama",
76
5
  "## two hashes for second heading": "## dua tanda pagar untuk tajuk kedua",
77
6
  "### three hashes for third heading": "### tiga tanda pagar untuk tajuk ketiga",
78
7
  "**double star for bold**": "**bintang berganda untuk tulisan tebal**",
8
+ "*single star for italic*": "*bintang tunggal untuk tulisan condong*",
9
+ "--- for a horizontal rule": "--- untuk garis melintang",
10
+ "1 day": "1 hari",
11
+ "1 hour": "1 jam",
12
+ "5 min": "5 minit",
79
13
  "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
14
  "About": "Perihalan",
15
+ "Action not allowed :(": "Tindakan tidak dibenarkan :(",
81
16
  "Activate slideshow mode": "Aktifkan mod persembahan slaid",
82
17
  "Add a layer": "Tambah lapisan",
83
18
  "Add a line to the current multi": "Tambah garisan ke multi semasa",
84
19
  "Add a new property": "Tambah ciri-ciri baharu",
85
20
  "Add a polygon to the current multi": "Tambah poligon ke multi semasa",
21
+ "Add image URL": "Tambah URL imej",
22
+ "Add": "Tambah",
86
23
  "Advanced actions": "Tindakan lanjutan",
87
24
  "Advanced properties": "Ciri-ciri lanjutan",
25
+ "All data and settings of the map": "Semua data dan tetapan peta",
88
26
  "All properties are imported.": "Semua ciri-ciri telah diimport.",
89
27
  "Allow interactions": "Benarkan interaksi",
28
+ "Allow scroll wheel zoom?": "Benarkan zum dengan roda tatal?",
29
+ "always": "sentiasa",
30
+ "Animated transitions": "Transisi beranimasi",
90
31
  "Are you sure you want to cancel your changes?": "Adakah anda ingin membatalkan perubahan anda?",
91
32
  "Are you sure you want to clone this map and all its datalayers?": "Adakah anda ingin klon peta ini serta semua lapisan datanya?",
92
33
  "Are you sure you want to delete the feature?": "Adakah anda ingin memadamkan sifat-sifat dipilih?",
@@ -95,186 +36,379 @@ const locale = {
95
36
  "Are you sure you want to delete this property on all the features?": "Adakah anda ingin memadamkan ciri-ciri ini di kesemua sifat-sifat?",
96
37
  "Are you sure you want to restore this version?": "Adakah anda ingin memulihkan versi ini?",
97
38
  "Attach the map to my account": "Lampirkan peta ke akaun saya",
39
+ "attribution": "atribusi",
98
40
  "Auto": "Auto",
41
+ "Automatic": "Automatik",
99
42
  "Autostart when map is loaded": "Automula apabila peta dimuatkan",
43
+ "Back to preview": "Kembali ke pralihat",
44
+ "Background overlay url": "URL tindihan atas latar belakang",
45
+ "Ball": "Bola",
46
+ "Bring feature to center": "Bawa sifat ke tengah",
100
47
  "Browse data": "Layari data",
48
+ "by": "oleh",
49
+ "Cache proxied request": "Cache permintaan diproksi",
101
50
  "Cancel edits": "Batalkan suntingan",
51
+ "Cancel": "Batal",
52
+ "Caption": "Keterangan",
102
53
  "Center map on your location": "Ketengahkan peta ke kedudukan anda",
103
54
  "Change map background": "Tukar latar belakang peta",
104
55
  "Change tilelayers": "Tukar lapisan jubin",
56
+ "Change": "Tukar",
105
57
  "Choose a preset": "Pilih pratetapan",
58
+ "Choose the data format": "Pilih format data",
106
59
  "Choose the format of the data to import": "Pilih format data yang ingin diimport",
107
60
  "Choose the layer to import in": "Pilih lapisan untuk diimport",
61
+ "Choropleth breakpoints": "Titik putus koroplet",
62
+ "Choropleth classes": "Kelas koroplet",
63
+ "Choropleth color palette": "Palet warna koroplet",
64
+ "Choropleth mode": "Mod koroplet",
65
+ "Choropleth property value": "Nilai ciri koroplet",
66
+ "Choropleth": "Koroplet",
67
+ "Circle": "Bulatan",
68
+ "clear": "kosongkan",
108
69
  "Click last point to finish shape": "Klik titik akhir untuk lengkapkan bentuk",
109
70
  "Click to add a marker": "Klik untuk tambahkan penanda",
110
71
  "Click to continue drawing": "Klik untuk terus melukis",
111
72
  "Click to edit": "Klik untuk menyunting",
112
73
  "Click to start drawing a line": "Klik untuk mula melukis garisan",
113
74
  "Click to start drawing a polygon": "Klik untuk mula melukis poligon",
114
- "Clone": "Klon",
115
75
  "Clone of {name}": "Klon {name}",
116
76
  "Clone this feature": "Klon sifat ini",
117
77
  "Clone this map": "Klon peta ini",
78
+ "Clone": "Klon",
118
79
  "Close": "Tutup",
80
+ "Clustered": "Berkelompok",
119
81
  "Clustering radius": "Jejari kelompok",
82
+ "collapsed": "dijatuhkan",
83
+ "color": "warna",
84
+ "Comma separated list of numbers, including min and max values.": "Senarai nombor, dipisahkan dengan koma, termasuk nilai minimum dan maksimum.",
85
+ "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.",
120
86
  "Comma separated list of properties to use when filtering features": "Senarai berpisahkan koma bagi ciri-ciri untuk digunakan ketika menapis sifat",
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.": "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.",
88
+ "Congratulations, your map has been created!": "Tahniah, peta anda telah berjaya dicipta!",
122
89
  "Continue line": "Garis sambung",
123
- "Continue line (Ctrl+Click)": "Garis sambung (Ctrl+Klik)",
124
90
  "Coordinates": "Koordinat",
91
+ "Copy link": "Salin pautan",
92
+ "copy": "salin",
125
93
  "Credits": "Penghargaan",
94
+ "Current map view": "Paparan peta semasa",
126
95
  "Current view instead of default map view?": "Paparan semasa menggantikan paparan peta lalai?",
127
96
  "Custom background": "Latar belakang tersuai",
97
+ "Custom overlay": "Tindihan atas tersuai",
98
+ "dash array": "tatasusunan sengkang",
99
+ "Data browser": "Pelayar data",
128
100
  "Data is browsable": "Data boleh layar",
101
+ "Datalayers": "Lapisan data",
129
102
  "Default interaction options": "Pilihan interaksi lalai",
130
103
  "Default properties": "Ciri-ciri lalai",
131
104
  "Default shape properties": "Ciri-ciri bentuk lalai",
105
+ "Default view": "Paparan lalai",
106
+ "Default zoom level": "Tahap zum lalai",
107
+ "Default": "Lalai",
108
+ "Default: name": "Lalai: nama",
132
109
  "Define link to open in a new window on polygon click.": "Tetapkan pautan untuk buka dalam tetingkap baharu apabila poligon diklik",
110
+ "define": "takrif",
133
111
  "Delay between two transitions when in play mode": "Lengah di antara dua transisi apabila dalam mod main",
134
- "Delete": "Padam",
135
112
  "Delete all layers": "Padam semua lapisan",
136
113
  "Delete layer": "Padam lapisan",
137
114
  "Delete this feature": "Padam sifat ini",
138
115
  "Delete this property on all the features": "Padam ciri-ciri ini di kesemua sifat-sifat",
139
116
  "Delete this shape": "Padam bentuk ini",
140
117
  "Delete this vertex (Alt+Click)": "Padam bucu ini (Alt+Klik)",
118
+ "Delete": "Padam",
119
+ "description": "keterangan",
120
+ "Direct link": "Pautan terus",
141
121
  "Directions from here": "Arah dari sini",
122
+ "Display label": "Label paparan",
142
123
  "Display measure": "Paparkan ukuran",
124
+ "display name": "nama paparan",
143
125
  "Display on load": "Paparkan semasa dimuatkan",
126
+ "Display the control to open OpenStreetMap editor": "Paparkan kawalan untuk buka penyunting OpenStreetMap",
127
+ "Display the data layers control": "Paparkan kawalan lapisan data",
128
+ "Display the embed control": "Paparkan kawalan benaman",
129
+ "Display the fullscreen control": "Paparkan kawalan skrin penuh",
130
+ "Display the locate control": "Paparkan kawalan kesan kedudukan",
131
+ "Display the measure control": "Paparkan kawalan pengukuran",
132
+ "Display the search control": "Paparkan kawalan carian",
133
+ "Display the star map button": "Paparkan butang tanda bintang peta",
134
+ "Display the tile layers control": "Paparkan kawalan lapisan jubin",
135
+ "Display the zoom control": "Paparkan kawalan zum",
136
+ "Do you want to display a caption bar?": "Adakah anda ingin paparkan bar keterangan?",
137
+ "Do you want to display a minimap?": "Adakah anda ingin paparkan peta mini?",
138
+ "Do you want to display a panel on load?": "Adakah anda ingin paparkan panel ketika dimuatkan?",
139
+ "Do you want to display caption menus?": "Adakah anda ingin paparkan menu keterangan?",
140
+ "Do you want to display popup footer?": "Adakah anda ingin paparkan pengaki timbul?",
141
+ "Do you want to display the scale control?": "Adakah anda ingin paparkan kawalan skala?",
142
+ "Do you want to display the «more» control?": "Adakah anda ingin paparkan kawalan «lebih lagi»?",
144
143
  "Download": "Muat turun",
145
144
  "Drag to reorder": "Seret untuk susun semula",
146
145
  "Draw a marker": "Lukis penanda",
147
146
  "Draw a polygon": "Lukis poligon",
148
147
  "Draw a polyline": "Lukis poligaris",
149
- "Dynamic": "Dinamik",
148
+ "Drawing": "Lukisan",
149
+ "Drop": "Jatuhkan",
150
150
  "Dynamic properties": "Ciri-ciri dinamik",
151
- "Edit": "Sunting",
151
+ "Dynamic": "Dinamik",
152
152
  "Edit feature's layer": "Sunting lapisan sifat",
153
- "Edit map properties": "Sunting ciri-ciri peta",
154
153
  "Edit properties in a table": "Sunting ciri-ciri dalam jadual",
154
+ "Edit the title of the map": "Sunting tajuk peta",
155
155
  "Edit this feature": "Sunting sifat ini",
156
+ "Edit": "Sunting",
157
+ "Email": "E-mel",
158
+ "Embed and link options": "Pilihan benaman dan pautan",
156
159
  "Embed the map": "Benamkan peta",
160
+ "Emoji & Character": "Emoji & Aksara",
157
161
  "Empty": "Kosongkan",
162
+ "Equidistant": "Sama jarak",
163
+ "Error in the overlay URL": "Ralat dalam URL tindihan atas",
158
164
  "Error in the tilelayer URL": "Ralat dalam URL lapisan jubin",
159
165
  "Exit Fullscreen": "Keluar Skrin Penuh",
166
+ "expanded": "dikembangkan",
160
167
  "Extract shape to separate feature": "Sarikan bentuk untuk memisahkan sifat",
168
+ "Facet keys": "Kekunci faset",
169
+ "Facet search": "Gelintaran faset",
170
+ "Feature identifier key": "Kekunci pengenalpastian sifat",
171
+ "Feature properties": "Ciri-ciri sifat",
161
172
  "Fetch data each time map view changes.": "Ambil data setiap kali paparan peta berubah.",
173
+ "fill color": "warna isian",
174
+ "fill opacity": "kelegapan isian",
175
+ "fill": "diisi",
162
176
  "Filter keys": "Kekunci tapisan",
177
+ "Filter": "Tapis",
178
+ "Fit all data": "Sesuaikan semua data",
163
179
  "Format": "Format",
164
180
  "From zoom": "Dari zum",
181
+ "full backup": "sandaran penuh",
182
+ "Generic": "Generik",
183
+ "GeoRSS (only link)": "GeoRSS (pautan sahaja)",
184
+ "GeoRSS (title + image)": "GeoRSS (tajuk + imej)",
185
+ "Go to \"{coords}\"": "Pergi ke \"{coords}\"",
186
+ "Go to the homepage": "Pergi ke halaman utama",
165
187
  "Go to «{feature}»": "Pergi ke «{feature}»",
166
188
  "Heatmap intensity property": "Ciri-ciri keamatan peta tompokan",
167
189
  "Heatmap radius": "Jejari peta tompokan",
190
+ "Heatmap": "Peta tompokan",
191
+ "height": "tinggi",
168
192
  "Help": "Bantuan",
193
+ "hidden": "disembunyikan",
169
194
  "Hide controls": "Sembunyikan kawalan",
170
195
  "Home": "Laman utama",
171
196
  "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)",
197
+ "icon opacity": "kelegapan ikon",
198
+ "Icon shape": "Bentuk ikon",
199
+ "Icon symbol": "Simbol ikon",
200
+ "If false, the polygon or line will act as a part of the underlying map.": "Jika tetapkan ke 'false', poligon atau garisan akan bertindak sebagai sebahagian daripada peta di bawah.",
172
201
  "Iframe with custom height (in px): {{{http://iframe.url.com|height}}}": "Iframe dengan tinggi tersuai (dalam px): {{{http://iframe.url.com|height}}}",
173
202
  "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}}}",
203
+ "iframe": "iframe",
174
204
  "Iframe: {{{http://iframe.url.com}}}": "Iframe: {{{http://iframe.url.com}}}",
175
205
  "Image with custom width (in px): {{http://image.url.com|width}}": "Imej dengan lebar tersuai (dalam px): {{http://image.url.com|width}}",
176
206
  "Image: {{http://image.url.com}}": "Imej: {{http://image.url.com}}",
177
- "Import": "Import",
178
207
  "Import data": "Import data",
179
208
  "Import in a new layer": "Import ke lapisan baharu",
209
+ "Import": "Import",
180
210
  "Imports all umap data, including layers and settings.": "Import semua data umap, termasuk lapisan dan tetapan.",
181
211
  "Include full screen link?": "Sertakan pautan skrin penuh?",
212
+ "Inherit": "Warisi",
213
+ "inherit": "warisi",
182
214
  "Interaction options": "Pilihan interaksi",
183
- "Invalid umap data": "Data umap tidak sah",
215
+ "Invalid latitude or longitude": "Latitud atau longitud tidak sah",
184
216
  "Invalid umap data in {filename}": "Data umap tidak sah dalam {filename}",
217
+ "Invalid umap data": "Data umap tidak sah",
218
+ "Invalide property name: {name}": "Nama ciri tidak sah: {name}",
219
+ "Jenks-Fisher": "Jenks-Fisher",
220
+ "K-means": "Cara K",
185
221
  "Keep current visible layers": "Kekalkan lapisan yang kelihatan sekarang",
222
+ "kilometers": "kilometer",
223
+ "km": "km",
224
+ "Label direction": "Arah label",
225
+ "Label key": "Kekunci label",
226
+ "Labels are clickable": "Label boleh diklik",
227
+ "Latest feature": "Sifat terbaru",
186
228
  "Latitude": "Latitud",
187
- "Layer": "Lapisan",
188
229
  "Layer properties": "Ciri-ciri lapisan",
230
+ "Layer": "Lapisan",
189
231
  "Licence": "Lesen",
232
+ "licence": "lesen",
190
233
  "Limit bounds": "Had batas",
234
+ "Link to view the map": "Pautan untuk melihat peta",
191
235
  "Link to…": "Pautkan ke…",
192
236
  "Link with text: [[http://example.com|text of the link]]": "Pautkan dengan tulisan: [[http://example.com|tulisan pautan]]",
193
237
  "Long credits": "Penghargaan penuh",
194
238
  "Longitude": "Longitud",
195
239
  "Make main shape": "Buatkan bentuk utama",
196
240
  "Manage layers": "Urus lapisan",
241
+ "Manual": "Manual",
197
242
  "Map background credits": "Penghargaan latar belakang peta",
198
243
  "Map has been attached to your account": "Peta telah dilampirkan ke akaun anda",
199
244
  "Map has been saved!": "Peta telah disimpan!",
245
+ "Map has been starred": "Peta telah ditandai bintang",
246
+ "Map has been unstarred": "Peta telah dinyahtandai bintang",
200
247
  "Map user content has been published under licence": "Kandungan pengguna peta telah diterbitkan di bawah lesen",
201
248
  "Map's editors": "Penyunting peta",
202
249
  "Map's owner": "Pemilik peta",
250
+ "max East": "Timur maksimum",
251
+ "max North": "Utara maksimum",
252
+ "max South": "Selatan maksimum",
253
+ "max West": "Barat maksimum",
254
+ "max zoom": "zum maksimum",
255
+ "Measure distances": "Ukur jarak",
203
256
  "Merge lines": "Gabungkan garisan",
257
+ "mi": "bt",
258
+ "miles": "batu",
259
+ "min zoom": "zum minimum",
204
260
  "More controls": "Lebih banyak kawalan",
205
261
  "Must be a valid CSS value (eg.: DarkBlue or #123456)": "Mestilah nilai CSS yang sah (cth.: DarkBlue atau #123456)",
262
+ "name": "nama",
263
+ "nautical miles": "batu nautika",
264
+ "never": "tidak pernah",
265
+ "new window": "tetingkap baharu",
266
+ "next": "seterusnya",
267
+ "NM": "NM",
268
+ "No cache": "Tiada cache",
206
269
  "No licence has been set": "Tiada lesen ditetapkan",
270
+ "No results for these facets": "Tiada hasil bagi faset ini",
207
271
  "No results": "Tiada hasil",
272
+ "no": "tidak",
273
+ "No.": "No.",
274
+ "None": "Tiada",
275
+ "Number of desired classes (default 5)": "Jumlah kelas yang diingini (lalainya 5)",
276
+ "On the bottom": "Di bawah",
277
+ "On the left": "Di kiri",
278
+ "On the right": "Di kanan",
279
+ "On the top": "Di atas",
280
+ "Only visible layers' data": "Data lapisan yang kelihatan sahaja",
281
+ "opacity": "kelegapan",
282
+ "Opacity": "Kelegapan",
283
+ "Open current feature on load": "Buka sifat semasa ketika dimuatkan",
208
284
  "Open link in…": "Buka pautan dalam…",
285
+ "Open share & download panel": "Buka panel kongsi & muat turun",
209
286
  "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",
287
+ "OpenStreetMap": "OpenStreetMap",
210
288
  "Optional intensity property for heatmap": "Ciri-ciri keamatan pilihan untuk peta tompokan",
211
289
  "Optional. Same as color if not set.": "Pilihan. Sama seperti warna jika tidak ditetapkan.",
290
+ "Optional.": "Pilihan.",
212
291
  "Override clustering radius (default 80)": "Menggantikan jejari kelompok (nilai lalai 80)",
213
292
  "Override heatmap radius (default 25)": "Menggantikan jejari peta tompokan (nilai lalai 25)",
293
+ "parent window": "tetingkap induk",
294
+ "Paste your data here": "Tampalkan data anda di sini",
295
+ "Permalink": "Pautan kekal",
296
+ "Permanent credits background": "Latar penghargaan kekal",
297
+ "Permanent credits": "Penghargaan kekal",
214
298
  "Please be sure the licence is compliant with your use.": "Sila pastikan lesen menurut kegunaan anda.",
215
299
  "Please choose a format": "Sila pilih format",
216
300
  "Please enter the name of the property": "Sila masukkan nama ciri-ciri",
217
301
  "Please enter the new name of this property": "Sila masukkan nama baharu bagi ciri-ciri ini",
302
+ "Please save the map first": "Sila simpan peta terlebih dahulu",
303
+ "Popup (large)": "Tetingkap timbul (besar)",
304
+ "Popup content style": "Gaya kandungan tetingkap timbul",
305
+ "Popup content template": "Templat kandungan tetingkap timbul",
306
+ "Popup shape": "Bentuk tetingkap timbul",
307
+ "Popup": "Tetingkap timbul",
308
+ "Powered by uMap": "Dikuasakan oleh uMap",
309
+ "previous": "sebelumnya",
310
+ "Problem in the response": "Masalah dalam tindak balas",
218
311
  "Properties imported:": "Ciri-ciri diimport:",
219
312
  "Provide an URL here": "Sediakan URL di sini",
220
313
  "Proxy request": "Permintaan proksi",
314
+ "Quantiles": "Kuantil",
315
+ "Recent": "Terbaru",
221
316
  "Remote data": "Data jarak jauh",
222
317
  "Remove shape from the multi": "Buang bentuk daripada multi",
223
318
  "Rename this property on all the features": "Namakan semula ciri-ciri ini di kesemua sifat-sifat",
224
319
  "Replace layer content": "Gantikan kandungan lapisan",
225
320
  "Restore this version": "Pulihkan versi ini",
226
- "Save": "Simpan",
227
321
  "Save anyway": "Simpan juga apa pun",
228
322
  "Save current edits": "Simpan suntingan semasa",
323
+ "Save map": "Simpan peta",
229
324
  "Save this center and zoom": "Simpan kedudukan tengah dan zum ini",
230
325
  "Save this location as new feature": "Simpan kedudukan ini sebagai sifat baharu",
326
+ "Save": "Simpan",
327
+ "Saved center and zoom": "Kedudukan tengah dan zum telah disimpan",
231
328
  "Search location": "Kedudukan carian",
232
- "See all": "Lihat semua",
233
- "See data layers": "Lihat lapisan data",
329
+ "Search": "Cari",
330
+ "Secret edit link copied to clipboard!": "Pautan suntingan rahsia telah disalin ke papan keratan!",
331
+ "Secret edit link:": "Pautan suntingan rahsia:",
332
+ "See layers": "Lihat lapisan",
234
333
  "See full screen": "Lihat skrin penuh",
334
+ "See on OpenStreetMap": "Lihat di OpenStreetMap",
335
+ "Select data": "Pilih data",
336
+ "Send me the link": "Hantarkan pautan kepada saya",
235
337
  "Set it to false to hide this layer from the slideshow, the data browser, the popup navigation…": "Tetapkan ke 'false' untuk menyembunyikan lapisan ini daripada persembahan slaid, pelayar data, navigasi timbul…",
338
+ "settings": "tetapan",
236
339
  "Shape properties": "Ciri-ciri bentuk",
340
+ "Share and download": "Kongsi dan muat turun",
341
+ "Share this link to open a customized map view": "Kongsi pautan ini untuk buka paparan peta tersuai",
237
342
  "Short credits": "Penghargaan pendek",
343
+ "Short link": "Pautan pendek",
344
+ "Show this layer in the caption": "Tunjuk lapisan ini dalam keterangan",
238
345
  "Show/hide layer": "Tunjuk/sembunyi lapisan",
346
+ "Side panel": "Panel sisi",
239
347
  "Simple link: [[http://example.com]]": "Pautan ringkas: [[http://example.com]]",
348
+ "Simplify": "Permudahkan",
349
+ "Skipping unknown geometry.type: {type}": "Melangkau jenis geometri tidak diketahui: {type}",
240
350
  "Slideshow": "Persembahan slaid",
241
351
  "Sort key": "Kekunci isihan",
242
352
  "Split line": "Garisan pemisah",
353
+ "Star this map": "Tandai bintang peta ini",
243
354
  "Start a hole here": "Mulakan lubang di sini",
244
355
  "Start slideshow": "Mulakan persembahan slaid",
245
356
  "Stop editing": "Berhenti menyunting",
246
357
  "Stop slideshow": "Berhenti persembahan slaid",
358
+ "Street": "Jalan",
359
+ "stroke": "lejang",
247
360
  "Supported scheme": "Skema disokong",
248
361
  "Supported variables that will be dynamically replaced": "Pemboleh ubah disokong yang akan digantikan secara dinamik",
249
- "TMS format": "Format TMS",
362
+ "Symbol": "Simbol",
363
+ "Table": "Meja",
250
364
  "Text color for the cluster label": "Warna tulisan label kelompok",
251
365
  "Text formatting": "Format tulisan",
366
+ "The name of the property to use as feature label (eg.: \"nom\"). You can also use properties inside brackets to use more than one or mix with static content (eg.: \"{name} in {place}\")": "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}\")",
367
+ "The name of the property to use as feature unique identifier.": "Nama ciri-ciri untuk digunakan sebagai pengenalpastian unik sifat.",
368
+ "The zoom and center have been modified.": "Zum dan kedudukan tengah telah diubah suai.",
369
+ "TMS format": "Format TMS",
252
370
  "To use if remote server doesn't allow cross domain (slower)": "Untuk digunakan jika pelayan jarak jauh tidak benarkan rentang domain (lebih perlahan)",
253
371
  "To zoom": "Untuk zum",
372
+ "Toggle edit mode (⇧+Click)": "Togol mod suntingan (⇧+Klik)",
373
+ "Toggle edit mode": "Togol mod suntingan",
254
374
  "Transfer shape to edited feature": "Pindah bentuk ke sifat yang disunting",
255
375
  "Transform to lines": "Jelmakan menjadi garisan",
256
376
  "Transform to polygon": "Jelmakan menjadi poligon",
377
+ "Type a place name or coordinates": "Taip koordinat atau nama tempat",
378
+ "Type char or paste emoji": "Taip aksara atau tampal emoji",
257
379
  "Type of layer": "Jenis lapisan",
258
380
  "Unable to detect format of file {filename}": "Tidak mampu mengesan format fail {filename}",
259
381
  "Untitled layer": "Lapisan tanpa tajuk",
260
382
  "Untitled map": "Peta tanpa tajuk",
261
- "Update permissions": "Kemas kini kebenaran",
262
383
  "Update permissions and editors": "Kemas kini kebenaran dan penyunting",
384
+ "Update permissions": "Kemas kini kebenaran",
385
+ "Update who can see and edit the map": "Kemas kini siapa boleh lihat dan sunting peta",
263
386
  "Url": "Url",
387
+ "URL": "URL",
264
388
  "Use current bounds": "Guna batas semasa",
265
389
  "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.",
266
390
  "User content credits": "Penghargaan kandungan pengguna",
267
391
  "User interface options": "Pilihan antara muka pengguna",
392
+ "User location": "Kedudukan pengguna",
393
+ "Verify remote URL": "Sahkan URL jarak jauh",
268
394
  "Versions": "Versi",
269
395
  "View Fullscreen": "Lihat Skrin Penuh",
396
+ "View": "Lihat",
397
+ "Visibility: {status}": "Kebolehlihatan: {status}",
398
+ "weight": "tebal",
270
399
  "Where do we go from here?": "Ke mana kita pergi dari sini?",
271
400
  "Whether to display or not polygons paths.": "Sama ada ingin paparkan laluan poligon ataupun tidak.",
272
401
  "Whether to fill polygons with color.": "Sama ada ingin isikan poligon dengan warna.",
402
+ "Who can edit \"{layer}\"": "Siapa boleh sunting \"{layer}\"",
273
403
  "Who can edit": "Siapa boleh sunting",
274
404
  "Who can view": "Siapa boleh lihat",
405
+ "width": "lebar",
275
406
  "Will be displayed in the bottom right corner of the map": "Akan dipaparkan di bucu kanan bawah peta",
407
+ "Will be permanently visible in the bottom left corner of the map": "Akan dipaparkan secara kekal di bucu kiri bawah peta",
276
408
  "Will be visible in the caption of the map": "Akan kelihatan dalam keterangan peta",
277
409
  "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.",
410
+ "yes": "ya",
411
+ "Your map has been created! As you are not logged in, here is your secret link to edit the map, please keep it safe:": "Peta anda telah berjaya dicipta! Memandangkan anda tidak log masuk, ini pautan rahsia anda untuk menyunting peta, sila simpannya dengan selamat:",
278
412
  "Zoom in": "Zum masuk",
279
413
  "Zoom level for automatic zooms": "Tahap zum bagi zum automatik",
280
414
  "Zoom out": "Zum keluar",
@@ -283,162 +417,37 @@ const locale = {
283
417
  "Zoom to the previous": "Zum ke sebelumnya",
284
418
  "Zoom to this feature": "Zum ke sifat ini",
285
419
  "Zoom to this place": "Zum ke tempat ini",
286
- "attribution": "atribusi",
287
- "by": "oleh",
288
- "display name": "nama paparan",
289
- "height": "tinggi",
290
- "licence": "lesen",
291
- "max East": "Timur maksimum",
292
- "max North": "Utara maksimum",
293
- "max South": "Selatan maksimum",
294
- "max West": "Barat maksimum",
295
- "max zoom": "zum maksimum",
296
- "min zoom": "zum minimum",
297
- "next": "seterusnya",
298
- "previous": "sebelumnya",
299
- "width": "lebar",
300
- "{count} errors during import: {message}": "{count} ralat ketika import: {message}",
301
- "Measure distances": "Ukur jarak",
302
- "NM": "NM",
303
- "kilometers": "kilometer",
304
- "km": "km",
305
- "mi": "bt",
306
- "miles": "batu",
307
- "nautical miles": "batu nautika",
308
- "1 day": "1 hari",
309
- "1 hour": "1 jam",
310
- "5 min": "5 minit",
311
- "Cache proxied request": "Cache permintaan diproksi",
312
- "No cache": "Tiada cache",
313
- "Popup": "Tetingkap timbul",
314
- "Popup (large)": "Tetingkap timbul (besar)",
315
- "Popup content style": "Gaya kandungan tetingkap timbul",
316
- "Popup shape": "Bentuk tetingkap timbul",
317
- "Skipping unknown geometry.type: {type}": "Melangkau jenis geometri tidak diketahui: {type}",
318
- "Optional.": "Pilihan.",
319
- "Paste your data here": "Tampalkan data anda di sini",
320
- "Please save the map first": "Sila simpan peta terlebih dahulu",
321
- "Feature identifier key": "Kekunci pengenalpastian sifat",
322
- "Open current feature on load": "Buka sifat semasa ketika dimuatkan",
323
- "Permalink": "Pautan kekal",
324
- "The name of the property to use as feature unique identifier.": "Nama ciri-ciri untuk digunakan sebagai pengenalpastian unik sifat.",
325
- "Do you want to display caption menus?": "Adakah anda ingin paparkan menu keterangan?",
326
- "Example: key1,key2,key3": "Contoh: kekunci1,kekunci2,kekunci3",
327
- "Invalid latitude or longitude": "Latitud atau longitud tidak sah",
328
- "Invalide property name: {name}": "Nama ciri tidak sah: {name}",
329
- "Permanent credits": "Penghargaan kekal",
330
- "Permanent credits background": "Latar penghargaan kekal",
331
- "Select data": "Pilih data",
332
- "Will be permanently visible in the bottom left corner of the map": "Akan dipaparkan secara kekal di bucu kiri bawah peta",
333
420
  "{area} acres": "{area} ekar",
334
421
  "{area} ha": "{area} hektar",
335
422
  "{area} m²": "{area} meter²",
336
423
  "{area} mi²": "{area} batu²",
337
424
  "{area} yd²": "{area} ela²",
338
- "{distance} NM": "{distance} batu nautika",
425
+ "{count} errors during import: {message}": "{count} ralat ketika import: {message}",
426
+ "{delay} seconds": "{delay} saat",
339
427
  "{distance} km": "{distance} kilometer",
340
428
  "{distance} m": "{distance} meter",
341
429
  "{distance} miles": "{distance} batu",
430
+ "{distance} NM": "{distance} batu nautika",
342
431
  "{distance} yd": "{distance} ela",
343
- " (area: {measure})": "(kawasan: {measure})",
344
- " (length: {measure})": "(panjang: {measure})",
345
- "Animated transitions": "Transisi beranimasi",
346
- "Background overlay url": "URL tindihan atas latar belakang",
347
- "Custom overlay": "Tindihan atas tersuai",
348
- "Display the star map button": "Paparkan butang tanda bintang peta",
349
- "Error in the overlay URL": "Ralat dalam URL tindihan atas",
350
- "Map has been starred": "Peta telah ditandai bintang",
351
- "Map has been unstarred": "Peta telah dinyahtandai bintang",
352
- "Opacity": "Kelegapan",
353
- "Star this map": "Tandai bintang peta ini",
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.": "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.",
355
- "Direct link": "Pautan terus",
356
- "The zoom and center have been modified.": "Zum dan kedudukan tengah telah diubah suai.",
357
- "Congratulations, your map has been created!": "Tahniah, peta anda telah berjaya dicipta!",
358
- "Copy link": "Salin pautan",
359
- "Email": "E-mel",
360
- "Secret edit link copied to clipboard!": "Pautan suntingan rahsia telah disalin ke papan keratan!",
361
- "Send me the link": "Hantarkan pautan kepada saya",
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:": "Peta anda telah berjaya dicipta! Memandangkan anda tidak log masuk, ini pautan rahsia anda untuk menyunting peta, sila simpannya dengan selamat:",
363
- "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.",
364
- "Toggle edit mode (⇧+Click)": "Togol mod suntingan (⇧+Klik)",
365
- "icon opacity": "kelegapan ikon",
366
- "*single star for italic*": "*bintang tunggal untuk tulisan condong*",
367
- "--- for a horizontal rule": "--- untuk garis melintang",
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}\")": "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}\")",
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)": "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)",
370
- "Default view": "Paparan lalai",
371
- "Facet keys": "Kekunci faset",
372
- "Facet search": "Gelintaran faset",
373
- "Feature properties": "Ciri-ciri sifat",
374
- "Latest feature": "Sifat terbaru",
375
- "No results for these facets": "Tiada hasil bagi faset ini",
376
- "Saved center and zoom": "Kedudukan tengah dan zum telah disimpan",
377
- "User location": "Kedudukan pengguna",
378
- "Visibility: {status}": "Kebolehlihatan: {status}",
379
- "Fit all data": "Sesuaikan semua data",
380
- "Verify remote URL": "Sahkan URL jarak jauh",
381
- "Add": "Tambah",
382
- "Change": "Tukar",
383
- "Powered by uMap": "Dikuasakan oleh uMap",
384
- "Search": "Cari",
385
- "Datalayers": "Lapisan data",
386
- "Secret edit link:": "Pautan suntingan rahsia:",
387
- "Who can edit \"{layer}\"": "Siapa boleh sunting \"{layer}\"",
388
- "Choropleth": "Koroplet",
389
- "Choropleth breakpoints": "Titik putus koroplet",
390
- "Choropleth classes": "Kelas koroplet",
391
- "Choropleth color palette": "Palet warna koroplet",
392
- "Choropleth mode": "Mod koroplet",
393
- "Choropleth property value": "Nilai ciri koroplet",
394
- "Comma separated list of numbers, including min and max values.": "Senarai nombor, dipisahkan dengan koma, termasuk nilai minimum dan maksimum.",
395
- "Equidistant": "Sama jarak",
396
- "Jenks-Fisher": "Jenks-Fisher",
397
- "K-means": "Cara K",
398
- "Manual": "Manual",
399
- "Number of desired classes (default 5)": "Jumlah kelas yang diingini (lalainya 5)",
400
- "Quantiles": "Kuantil",
401
- "Show this layer in the caption": "Tunjuk lapisan ini dalam keterangan",
402
- "Back to preview": "Kembali ke pralihat",
403
- "Drawing": "Lukisan",
404
- "Edit the title of the map": "Sunting tajuk peta",
405
- "Go to the homepage": "Pergi ke halaman utama",
406
- "Switch to edit mode": "Tukar ke mod suntingan",
407
- "Update who can see and edit the map": "Kemas kini siapa boleh lihat dan sunting peta",
408
- "View": "Lihat",
409
- "Add image URL": "Tambah URL imej",
410
- "Emoji & Character": "Emoji & Aksara",
411
- "Generic": "Generik",
412
- "Symbol": "Simbol",
413
- "Type char or paste emoji": "Taip aksara atau tampal emoji",
414
- "URL": "URL",
415
- "If false, the polygon or line will act as a part of the underlying map.": "Jika tetapkan ke 'false', poligon atau garisan akan bertindak sebagai sebahagian daripada peta di bawah.",
416
- "Save map": "Simpan peta",
417
- "Toggle edit mode": "Togol mod suntingan",
418
- "All data and settings of the map": "Semua data dan tetapan peta",
419
- "Embed and link options": "Pilihan benaman dan pautan",
420
- "Go to \"{coords}\"": "Pergi ke \"{coords}\"",
421
- "Link to view the map": "Pautan untuk melihat peta",
422
- "No.": "No.",
423
- "Only visible layers' data": "Data lapisan yang kelihatan sahaja",
424
- "Open share & download panel": "Buka panel kongsi & muat turun",
425
- "OpenStreetMap": "OpenStreetMap",
426
- "See on OpenStreetMap": "Lihat di OpenStreetMap",
427
- "Share and download": "Kongsi dan muat turun",
428
- "Share this link to open a customized map view": "Kongsi pautan ini untuk buka paparan peta tersuai",
429
- "Short link": "Pautan pendek",
430
- "Street": "Jalan",
431
- "Type a place name or coordinates": "Taip koordinat atau nama tempat",
432
- "copy": "salin",
433
- "full backup": "sandaran penuh",
434
- "settings": "tetapan",
435
- "Action not allowed :(": "Tindakan tidak dibenarkan :(",
436
- "Bring feature to center": "Bawa sifat ke tengah",
437
- "Current map view": "Paparan peta semasa",
438
- "Features in this layer: {count}": "Sifat dalam lapisan ini: {count}",
439
- "Filter": "Tapis",
440
- "Problem in the response": "Masalah dalam tindak balas",
441
- "Recent": "Terbaru"
432
+ "Edit map name and caption": "Sunting nama dan kererangan peta",
433
+ "Map advanced properties": "Ciri-ciri lanjutan peta",
434
+ "Edit map details": "Sunting maklumat peta",
435
+ "Back to browser": "Kembali ke pelayar",
436
+ "Toggle size": "Togol saiz",
437
+ "Layers": "Lapisan",
438
+ "Display the caption control": "Paparkan kawalan keterangan",
439
+ "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.": "Comma separated list of properties to use for facet search (eg.: mykey,otherkey). To control label, add it after a | (eg.: mykey|My Key,otherkey|Other Key). To control input field type, add it after another | (eg.: mykey|My Key|checkbox,otherkey|Other Key|datetime). Allowed values for the input field type are checkbox (default), radio, number, date and datetime.",
440
+ "<empty value>": "<empty value>",
441
+ "Min": "Min",
442
+ "Max": "Max",
443
+ "From": "From",
444
+ "Until": "Until",
445
+ "Example: key1,key2|Label 2,key3|Label 3|checkbox": "Example: key1,key2|Label 2,key3|Label 3|checkbox",
446
+ "Edit in OpenStreetMap": "Edit in OpenStreetMap",
447
+ "Cannot determine latitude and longitude columns.": "Cannot determine latitude and longitude columns.",
448
+ "Back to layers": "Back to layers",
449
+ "Data": "Data",
450
+ "Filters": "Filters"
442
451
  }
443
452
  L.registerLocale("ms", locale)
444
453
  L.setLocale("ms")