ms.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/license
  4. */
  5. CKEDITOR.lang["ms"] = {
  6. editor: "Rich Text Editor",
  7. editorPanel: "Rich Text Editor panel",
  8. common: {
  9. editorHelp: "Press ALT 0 for help",
  10. browseServer: "Browse Server",
  11. url: "URL",
  12. protocol: "Protokol",
  13. upload: "Muat Naik",
  14. uploadSubmit: "Hantar ke Server",
  15. image: "Gambar",
  16. flash: "Flash",
  17. form: "Borang",
  18. checkbox: "Checkbox",
  19. radio: "Butang Radio",
  20. textField: "Text Field",
  21. textarea: "Textarea",
  22. hiddenField: "Field Tersembunyi",
  23. button: "Butang",
  24. select: "Field Pilihan",
  25. imageButton: "Butang Bergambar",
  26. notSet: "<tidak di set>",
  27. id: "Id",
  28. name: "Nama",
  29. langDir: "Arah Tulisan",
  30. langDirLtr: "Kiri ke Kanan (LTR)",
  31. langDirRtl: "Kanan ke Kiri (RTL)",
  32. langCode: "Kod Bahasa",
  33. longDescr: "Butiran Panjang URL",
  34. cssClass: "Kelas-kelas Stylesheet",
  35. advisoryTitle: "Tajuk Makluman",
  36. cssStyle: "Stail",
  37. ok: "OK",
  38. cancel: "Batal",
  39. close: "Tutup",
  40. preview: "Prebiu",
  41. resize: "Resize",
  42. generalTab: "Umum",
  43. advancedTab: "Advanced",
  44. validateNumberFailed: "This value is not a number.",
  45. confirmNewPage:
  46. "Any unsaved changes to this content will be lost. Are you sure you want to load new page?",
  47. confirmCancel:
  48. "You have changed some options. Are you sure you want to close the dialog window?",
  49. options: "Options",
  50. target: "Sasaran",
  51. targetNew: "New Window (_blank)",
  52. targetTop: "Topmost Window (_top)",
  53. targetSelf: "Same Window (_self)",
  54. targetParent: "Parent Window (_parent)",
  55. langDirLTR: "Kiri ke Kanan (LTR)",
  56. langDirRTL: "Kanan ke Kiri (RTL)",
  57. styles: "Stail",
  58. cssClasses: "Kelas-kelas Stylesheet",
  59. width: "Lebar",
  60. height: "Tinggi",
  61. align: "Jajaran",
  62. left: "Kiri",
  63. right: "Kanan",
  64. center: "Tengah",
  65. justify: "Jajaran Blok",
  66. alignLeft: "Jajaran Kiri",
  67. alignRight: "Jajaran Kanan",
  68. alignCenter: "Align Center",
  69. alignTop: "Atas",
  70. alignMiddle: "Pertengahan",
  71. alignBottom: "Bawah",
  72. alignNone: "None",
  73. invalidValue: "Nilai tidak sah.",
  74. invalidHeight: "Height must be a number.",
  75. invalidWidth: "Width must be a number.",
  76. invalidLength:
  77. 'Value specified for the "%1" field must be a positive number with or without a valid measurement unit (%2).',
  78. invalidCssLength:
  79. 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).',
  80. invalidHtmlLength:
  81. 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).',
  82. invalidInlineStyle:
  83. 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.',
  84. cssLengthTooltip:
  85. "Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).",
  86. unavailable: '%1<span class="cke_accessibility">, unavailable</span>',
  87. keyboard: {
  88. "8": "Backspace",
  89. "13": "Enter",
  90. "16": "Shift",
  91. "17": "Ctrl",
  92. "18": "Alt",
  93. "32": "Space",
  94. "35": "End",
  95. "36": "Home",
  96. "46": "Delete",
  97. "112": "F1",
  98. "113": "F2",
  99. "114": "F3",
  100. "115": "F4",
  101. "116": "F5",
  102. "117": "F6",
  103. "118": "F7",
  104. "119": "F8",
  105. "120": "F9",
  106. "121": "F10",
  107. "122": "F11",
  108. "123": "F12",
  109. "124": "F13",
  110. "125": "F14",
  111. "126": "F15",
  112. "127": "F16",
  113. "128": "F17",
  114. "129": "F18",
  115. "130": "F19",
  116. "131": "F20",
  117. "132": "F21",
  118. "133": "F22",
  119. "134": "F23",
  120. "135": "F24",
  121. "224": "Command"
  122. },
  123. keyboardShortcut: "Keyboard shortcut",
  124. optionDefault: "Default"
  125. },
  126. about: {
  127. copy: "Copyright &copy; $1. All rights reserved.",
  128. dlgTitle: "About CKEditor 4",
  129. moreInfo: "For licensing information please visit our web site:"
  130. },
  131. basicstyles: {
  132. bold: "Bold",
  133. italic: "Italic",
  134. strike: "Strike Through",
  135. subscript: "Subscript",
  136. superscript: "Superscript",
  137. underline: "Underline"
  138. },
  139. bidi: {
  140. ltr: "Text direction from left to right",
  141. rtl: "Text direction from right to left"
  142. },
  143. blockquote: { toolbar: "Block Quote" },
  144. notification: { closed: "Notification closed." },
  145. toolbar: {
  146. toolbarCollapse: "Collapse Toolbar",
  147. toolbarExpand: "Expand Toolbar",
  148. toolbarGroups: {
  149. document: "Document",
  150. clipboard: "Clipboard/Undo",
  151. editing: "Editing",
  152. forms: "Forms",
  153. basicstyles: "Basic Styles",
  154. paragraph: "Paragraph",
  155. links: "Links",
  156. insert: "Insert",
  157. styles: "Styles",
  158. colors: "Colors",
  159. tools: "Tools"
  160. },
  161. toolbars: "Editor toolbars"
  162. },
  163. clipboard: {
  164. copy: "Salin",
  165. copyError:
  166. "Keselamatan perisian browser anda tidak membenarkan operasi salinan text/imej. Sila gunakan papan kekunci (Ctrl/Cmd+C).",
  167. cut: "Potong",
  168. cutError:
  169. "Keselamatan perisian browser anda tidak membenarkan operasi suntingan text/imej. Sila gunakan papan kekunci (Ctrl/Cmd+X).",
  170. paste: "Tampal",
  171. pasteNotification:
  172. "Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
  173. pasteArea: "Paste Area",
  174. pasteMsg: "Paste your content inside the area below and press OK."
  175. },
  176. colorbutton: {
  177. auto: "Otomatik",
  178. bgColorTitle: "Warna Latarbelakang",
  179. colors: {
  180. "000": "Black",
  181. "800000": "Maroon",
  182. "8B4513": "Saddle Brown",
  183. "2F4F4F": "Dark Slate Gray",
  184. "008080": "Teal",
  185. "000080": "Navy",
  186. "4B0082": "Indigo",
  187. "696969": "Dark Gray",
  188. B22222: "Fire Brick",
  189. A52A2A: "Brown",
  190. DAA520: "Golden Rod",
  191. "006400": "Dark Green",
  192. "40E0D0": "Turquoise",
  193. "0000CD": "Medium Blue",
  194. "800080": "Purple",
  195. "808080": "Gray",
  196. F00: "Red",
  197. FF8C00: "Dark Orange",
  198. FFD700: "Gold",
  199. "008000": "Green",
  200. "0FF": "Cyan",
  201. "00F": "Blue",
  202. EE82EE: "Violet",
  203. A9A9A9: "Dim Gray",
  204. FFA07A: "Light Salmon",
  205. FFA500: "Orange",
  206. FFFF00: "Yellow",
  207. "00FF00": "Lime",
  208. AFEEEE: "Pale Turquoise",
  209. ADD8E6: "Light Blue",
  210. DDA0DD: "Plum",
  211. D3D3D3: "Light Grey",
  212. FFF0F5: "Lavender Blush",
  213. FAEBD7: "Antique White",
  214. FFFFE0: "Light Yellow",
  215. F0FFF0: "Honeydew",
  216. F0FFFF: "Azure",
  217. F0F8FF: "Alice Blue",
  218. E6E6FA: "Lavender",
  219. FFF: "White",
  220. "1ABC9C": "Strong Cyan",
  221. "2ECC71": "Emerald",
  222. "3498DB": "Bright Blue",
  223. "9B59B6": "Amethyst",
  224. "4E5F70": "Grayish Blue",
  225. F1C40F: "Vivid Yellow",
  226. "16A085": "Dark Cyan",
  227. "27AE60": "Dark Emerald",
  228. "2980B9": "Strong Blue",
  229. "8E44AD": "Dark Violet",
  230. "2C3E50": "Desaturated Blue",
  231. F39C12: "Orange",
  232. E67E22: "Carrot",
  233. E74C3C: "Pale Red",
  234. ECF0F1: "Bright Silver",
  235. "95A5A6": "Light Grayish Cyan",
  236. DDD: "Light Gray",
  237. D35400: "Pumpkin",
  238. C0392B: "Strong Red",
  239. BDC3C7: "Silver",
  240. "7F8C8D": "Grayish Cyan",
  241. "999": "Dark Gray"
  242. },
  243. more: "Warna lain-lain...",
  244. panelTitle: "Colors",
  245. textColorTitle: "Warna Text"
  246. },
  247. colordialog: {
  248. clear: "Clear",
  249. highlight: "Highlight",
  250. options: "Color Options",
  251. selected: "Selected Color",
  252. title: "Select color"
  253. },
  254. templates: {
  255. button: "Templat",
  256. emptyListMsg: "(Tiada Templat Disimpan)",
  257. insertOption: "Replace actual contents",
  258. options: "Template Options",
  259. selectPromptMsg:
  260. "Sila pilih templat untuk dibuka oleh editor<br>(kandungan sebenar akan hilang):",
  261. title: "Templat Kandungan"
  262. },
  263. contextmenu: { options: "Context Menu Options" },
  264. copyformatting: {
  265. label: "Copy Formatting",
  266. notification: {
  267. copied: "Formatting copied",
  268. applied: "Formatting applied",
  269. canceled: "Formatting canceled",
  270. failed:
  271. "Formatting failed. You cannot apply styles without copying them first."
  272. }
  273. },
  274. div: {
  275. IdInputLabel: "Id",
  276. advisoryTitleInputLabel: "Advisory Title",
  277. cssClassInputLabel: "Stylesheet Classes",
  278. edit: "Edit Div",
  279. inlineStyleInputLabel: "Inline Style",
  280. langDirLTRLabel: "Left to Right (LTR)",
  281. langDirLabel: "Language Direction",
  282. langDirRTLLabel: "Right to Left (RTL)",
  283. languageCodeInputLabel: " Language Code",
  284. remove: "Remove Div",
  285. styleSelectLabel: "Style",
  286. title: "Create Div Container",
  287. toolbar: "Create Div Container"
  288. },
  289. elementspath: { eleLabel: "Elements path", eleTitle: "%1 element" },
  290. filetools: {
  291. loadError: "Error occurred during file read.",
  292. networkError: "Network error occurred during file upload.",
  293. httpError404:
  294. "HTTP error occurred during file upload (404: File not found).",
  295. httpError403: "HTTP error occurred during file upload (403: Forbidden).",
  296. httpError: "HTTP error occurred during file upload (error status: %1).",
  297. noUrlError: "Upload URL is not defined.",
  298. responseError: "Incorrect server response."
  299. },
  300. find: {
  301. find: "Cari",
  302. findOptions: "Find Options",
  303. findWhat: "Perkataan yang dicari:",
  304. matchCase: "Padanan case huruf",
  305. matchCyclic: "Match cyclic",
  306. matchWord: "Padana Keseluruhan perkataan",
  307. notFoundMsg: "Text yang dicari tidak dijumpai.",
  308. replace: "Ganti",
  309. replaceAll: "Ganti semua",
  310. replaceSuccessMsg: "%1 occurrence(s) replaced.",
  311. replaceWith: "Diganti dengan:",
  312. title: "Find and Replace"
  313. },
  314. fakeobjects: {
  315. anchor: "Anchor",
  316. flash: "Flash Animation",
  317. hiddenfield: "Hidden Field",
  318. iframe: "IFrame",
  319. unknown: "Unknown Object"
  320. },
  321. flash: {
  322. access: "Script Access",
  323. accessAlways: "Always",
  324. accessNever: "Never",
  325. accessSameDomain: "Same domain",
  326. alignAbsBottom: "Bawah Mutlak",
  327. alignAbsMiddle: "Pertengahan Mutlak",
  328. alignBaseline: "Garis Dasar",
  329. alignTextTop: "Atas Text",
  330. bgcolor: "Warna Latarbelakang",
  331. chkFull: "Allow Fullscreen",
  332. chkLoop: "Loop",
  333. chkMenu: "Enable Flash Menu",
  334. chkPlay: "Auto Play",
  335. flashvars: "Variables for Flash",
  336. hSpace: "Ruang Melintang",
  337. properties: "Flash Properties",
  338. propertiesTab: "Properties",
  339. quality: "Quality",
  340. qualityAutoHigh: "Auto High",
  341. qualityAutoLow: "Auto Low",
  342. qualityBest: "Best",
  343. qualityHigh: "High",
  344. qualityLow: "Low",
  345. qualityMedium: "Medium",
  346. scale: "Scale",
  347. scaleAll: "Show all",
  348. scaleFit: "Exact Fit",
  349. scaleNoBorder: "No Border",
  350. title: "Flash Properties",
  351. vSpace: "Ruang Menegak",
  352. validateHSpace: "HSpace must be a number.",
  353. validateSrc: "Sila taip sambungan URL",
  354. validateVSpace: "VSpace must be a number.",
  355. windowMode: "Window mode",
  356. windowModeOpaque: "Opaque",
  357. windowModeTransparent: "Transparent",
  358. windowModeWindow: "Window"
  359. },
  360. font: {
  361. fontSize: { label: "Saiz", voiceLabel: "Font Size", panelTitle: "Saiz" },
  362. label: "Font",
  363. panelTitle: "Font",
  364. voiceLabel: "Font"
  365. },
  366. forms: {
  367. button: {
  368. title: "Ciri-ciri Butang",
  369. text: "Teks (Nilai)",
  370. type: "Jenis",
  371. typeBtn: "Button",
  372. typeSbm: "Submit",
  373. typeRst: "Reset"
  374. },
  375. checkboxAndRadio: {
  376. checkboxTitle: "Ciri-ciri Checkbox",
  377. radioTitle: "Ciri-ciri Butang Radio",
  378. value: "Nilai",
  379. selected: "Dipilih",
  380. required: "Required"
  381. },
  382. form: {
  383. title: "Ciri-ciri Borang",
  384. menu: "Ciri-ciri Borang",
  385. action: "Tindakan borang",
  386. method: "Cara borang dihantar",
  387. encoding: "Encoding"
  388. },
  389. hidden: {
  390. title: "Ciri-ciri Field Tersembunyi",
  391. name: "Nama",
  392. value: "Nilai"
  393. },
  394. select: {
  395. title: "Ciri-ciri Selection Field",
  396. selectInfo: "Select Info",
  397. opAvail: "Pilihan sediada",
  398. value: "Nilai",
  399. size: "Saiz",
  400. lines: "garisan",
  401. chkMulti: "Benarkan pilihan pelbagai",
  402. required: "Required",
  403. opText: "Teks",
  404. opValue: "Nilai",
  405. btnAdd: "Tambah Pilihan",
  406. btnModify: "Ubah Pilihan",
  407. btnUp: "Naik ke atas",
  408. btnDown: "Turun ke bawah",
  409. btnSetValue: "Set sebagai nilai terpilih",
  410. btnDelete: "Padam"
  411. },
  412. textarea: { title: "Ciri-ciri Textarea", cols: "Lajur", rows: "Baris" },
  413. textfield: {
  414. title: "Ciri-ciri Text Field",
  415. name: "Nama",
  416. value: "Nilai",
  417. charWidth: "Lebar isian",
  418. maxChars: "Isian Maksimum",
  419. required: "Required",
  420. type: "Jenis",
  421. typeText: "Teks",
  422. typePass: "Kata Laluan",
  423. typeEmail: "Email",
  424. typeSearch: "Search",
  425. typeTel: "Telephone Number",
  426. typeUrl: "URL"
  427. }
  428. },
  429. format: {
  430. label: "Format",
  431. panelTitle: "Format",
  432. tag_address: "Alamat",
  433. tag_div: "Perenggan (DIV)",
  434. tag_h1: "Heading 1",
  435. tag_h2: "Heading 2",
  436. tag_h3: "Heading 3",
  437. tag_h4: "Heading 4",
  438. tag_h5: "Heading 5",
  439. tag_h6: "Heading 6",
  440. tag_p: "Normal",
  441. tag_pre: "Telah Diformat"
  442. },
  443. horizontalrule: { toolbar: "Masukkan Garisan Membujur" },
  444. iframe: {
  445. border: "Show frame border",
  446. noUrl: "Please type the iframe URL",
  447. scrolling: "Enable scrollbars",
  448. title: "IFrame Properties",
  449. toolbar: "IFrame"
  450. },
  451. image: {
  452. alt: "Text Alternatif",
  453. border: "Border",
  454. btnUpload: "Hantar ke Server",
  455. button2Img:
  456. "Do you want to transform the selected image button on a simple image?",
  457. hSpace: "Ruang Melintang",
  458. img2Button:
  459. "Do you want to transform the selected image on a image button?",
  460. infoTab: "Info Imej",
  461. linkTab: "Sambungan",
  462. lockRatio: "Tetapkan Nisbah",
  463. menu: "Ciri-ciri Imej",
  464. resetSize: "Saiz Set Semula",
  465. title: "Ciri-ciri Imej",
  466. titleButton: "Ciri-ciri Butang Bergambar",
  467. upload: "Muat Naik",
  468. urlMissing: "Image source URL is missing.",
  469. vSpace: "Ruang Menegak",
  470. validateBorder: "Border must be a whole number.",
  471. validateHSpace: "HSpace must be a whole number.",
  472. validateVSpace: "VSpace must be a whole number."
  473. },
  474. indent: { indent: "Tambahkan Inden", outdent: "Kurangkan Inden" },
  475. smiley: {
  476. options: "Smiley Options",
  477. title: "Masukkan Smiley",
  478. toolbar: "Smiley"
  479. },
  480. language: { button: "Set language", remove: "Remove language" },
  481. link: {
  482. acccessKey: "Kunci Akses",
  483. advanced: "Advanced",
  484. advisoryContentType: "Jenis Kandungan Makluman",
  485. advisoryTitle: "Tajuk Makluman",
  486. anchor: {
  487. toolbar: "Masukkan/Sunting Pautan",
  488. menu: "Ciri-ciri Pautan",
  489. title: "Ciri-ciri Pautan",
  490. name: "Nama Pautan",
  491. errorName: "Sila taip nama pautan",
  492. remove: "Remove Anchor"
  493. },
  494. anchorId: "dengan menggunakan ID elemen",
  495. anchorName: "dengan menggunakan nama pautan",
  496. charset: "Linked Resource Charset",
  497. cssClasses: "Kelas-kelas Stylesheet",
  498. download: "Force Download",
  499. displayText: "Display Text",
  500. emailAddress: "Alamat E-Mail",
  501. emailBody: "Isi Kandungan Mesej",
  502. emailSubject: "Subjek Mesej",
  503. id: "Id",
  504. info: "Butiran Sambungan",
  505. langCode: "Arah Tulisan",
  506. langDir: "Arah Tulisan",
  507. langDirLTR: "Kiri ke Kanan (LTR)",
  508. langDirRTL: "Kanan ke Kiri (RTL)",
  509. menu: "Sunting Sambungan",
  510. name: "Nama",
  511. noAnchors: "(Tiada pautan terdapat dalam dokumen ini)",
  512. noEmail: "Sila taip alamat e-mail",
  513. noUrl: "Sila taip sambungan URL",
  514. noTel: "Please type the phone number",
  515. other: "<lain>",
  516. phoneNumber: "Phone number",
  517. popupDependent: "Bergantungan (Netscape)",
  518. popupFeatures: "Ciri Tetingkap Popup",
  519. popupFullScreen: "Skrin Penuh (IE)",
  520. popupLeft: "Posisi Kiri",
  521. popupLocationBar: "Bar Lokasi",
  522. popupMenuBar: "Bar Menu",
  523. popupResizable: "Resizable",
  524. popupScrollBars: "Bar-bar skrol",
  525. popupStatusBar: "Bar Status",
  526. popupToolbar: "Toolbar",
  527. popupTop: "Posisi Atas",
  528. rel: "Relationship",
  529. selectAnchor: "Sila pilih pautan",
  530. styles: "Stail",
  531. tabIndex: "Indeks Tab ",
  532. target: "Sasaran",
  533. targetFrame: "<bingkai>",
  534. targetFrameName: "Nama Bingkai Sasaran",
  535. targetPopup: "<tetingkap popup>",
  536. targetPopupName: "Nama Tetingkap Popup",
  537. title: "Sambungan",
  538. toAnchor: "Pautan dalam muka surat ini",
  539. toEmail: "E-Mail",
  540. toUrl: "URL",
  541. toPhone: "Phone",
  542. toolbar: "Masukkan/Sunting Sambungan",
  543. type: "Jenis Sambungan",
  544. unlink: "Buang Sambungan",
  545. upload: "Muat Naik"
  546. },
  547. list: {
  548. bulletedlist: "Senarai tidak bernombor",
  549. numberedlist: "Senarai bernombor"
  550. },
  551. liststyle: {
  552. bulletedTitle: "Bulleted List Properties",
  553. circle: "Circle",
  554. decimal: "Decimal (1, 2, 3, etc.)",
  555. disc: "Disc",
  556. lowerAlpha: "Lower Alpha (a, b, c, d, e, etc.)",
  557. lowerRoman: "Lower Roman (i, ii, iii, iv, v, etc.)",
  558. none: "None",
  559. notset: "<not set>",
  560. numberedTitle: "Numbered List Properties",
  561. square: "Square",
  562. start: "Start",
  563. type: "Type",
  564. upperAlpha: "Upper Alpha (A, B, C, D, E, etc.)",
  565. upperRoman: "Upper Roman (I, II, III, IV, V, etc.)",
  566. validateStartNumber: "List start number must be a whole number."
  567. },
  568. magicline: { title: "Insert paragraph here" },
  569. maximize: { maximize: "Maximize", minimize: "Minimize" },
  570. newpage: { toolbar: "Helaian Baru" },
  571. pagebreak: { alt: "Page Break", toolbar: "Insert Page Break for Printing" },
  572. pastetext: {
  573. button: "Tampal sebagai text biasa",
  574. pasteNotification:
  575. "Press %1 to paste. Your browser doesn‘t support pasting with the toolbar button or context menu option.",
  576. title: "Tampal sebagai text biasa"
  577. },
  578. pastefromword: {
  579. confirmCleanup:
  580. "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?",
  581. error:
  582. "It was not possible to clean up the pasted data due to an internal error",
  583. title: "Tampal dari Word",
  584. toolbar: "Tampal dari Word"
  585. },
  586. preview: { preview: "Prebiu" },
  587. print: { toolbar: "Cetak" },
  588. removeformat: { toolbar: "Buang Format" },
  589. save: { toolbar: "Simpan" },
  590. selectall: { toolbar: "Pilih Semua" },
  591. showblocks: { toolbar: "Show Blocks" },
  592. sourcearea: { toolbar: "Sumber" },
  593. specialchar: {
  594. options: "Special Character Options",
  595. title: "Sila pilih huruf istimewa",
  596. toolbar: "Masukkan Huruf Istimewa"
  597. },
  598. scayt: {
  599. btn_about: "About SCAYT",
  600. btn_dictionaries: "Dictionaries",
  601. btn_disable: "Disable SCAYT",
  602. btn_enable: "Enable SCAYT",
  603. btn_langs: "Languages",
  604. btn_options: "Options",
  605. text_title: "Spell Check As You Type"
  606. },
  607. stylescombo: {
  608. label: "Stail",
  609. panelTitle: "Formatting Styles",
  610. panelTitle1: "Block Styles",
  611. panelTitle2: "Inline Styles",
  612. panelTitle3: "Object Styles"
  613. },
  614. table: {
  615. border: "Saiz Border",
  616. caption: "Keterangan",
  617. cell: {
  618. menu: "Cell",
  619. insertBefore: "Insert Cell Before",
  620. insertAfter: "Insert Cell After",
  621. deleteCell: "Buangkan Sel-sel",
  622. merge: "Cantumkan Sel-sel",
  623. mergeRight: "Merge Right",
  624. mergeDown: "Merge Down",
  625. splitHorizontal: "Split Cell Horizontally",
  626. splitVertical: "Split Cell Vertically",
  627. title: "Cell Properties",
  628. cellType: "Cell Type",
  629. rowSpan: "Rows Span",
  630. colSpan: "Columns Span",
  631. wordWrap: "Word Wrap",
  632. hAlign: "Horizontal Alignment",
  633. vAlign: "Vertical Alignment",
  634. alignBaseline: "Baseline",
  635. bgColor: "Background Color",
  636. borderColor: "Border Color",
  637. data: "Data",
  638. header: "Header",
  639. yes: "Yes",
  640. no: "No",
  641. invalidWidth: "Cell width must be a number.",
  642. invalidHeight: "Cell height must be a number.",
  643. invalidRowSpan: "Rows span must be a whole number.",
  644. invalidColSpan: "Columns span must be a whole number.",
  645. chooseColor: "Choose"
  646. },
  647. cellPad: "Tambahan Ruang Sel",
  648. cellSpace: "Ruangan Antara Sel",
  649. column: {
  650. menu: "Column",
  651. insertBefore: "Insert Column Before",
  652. insertAfter: "Insert Column After",
  653. deleteColumn: "Buangkan Lajur"
  654. },
  655. columns: "Jaluran",
  656. deleteTable: "Delete Table",
  657. headers: "Headers",
  658. headersBoth: "Both",
  659. headersColumn: "First column",
  660. headersNone: "None",
  661. headersRow: "First Row",
  662. heightUnit: "height unit",
  663. invalidBorder: "Border size must be a number.",
  664. invalidCellPadding: "Cell padding must be a positive number.",
  665. invalidCellSpacing: "Cell spacing must be a positive number.",
  666. invalidCols: "Number of columns must be a number greater than 0.",
  667. invalidHeight: "Table height must be a number.",
  668. invalidRows: "Number of rows must be a number greater than 0.",
  669. invalidWidth: "Table width must be a number.",
  670. menu: "Ciri-ciri Jadual",
  671. row: {
  672. menu: "Row",
  673. insertBefore: "Insert Row Before",
  674. insertAfter: "Insert Row After",
  675. deleteRow: "Buangkan Baris"
  676. },
  677. rows: "Barisan",
  678. summary: "Summary",
  679. title: "Ciri-ciri Jadual",
  680. toolbar: "Jadual",
  681. widthPc: "peratus",
  682. widthPx: "piksel-piksel",
  683. widthUnit: "width unit"
  684. },
  685. undo: { redo: "Ulangkan", undo: "Batalkan" },
  686. widget: { move: "Click and drag to move", label: "%1 widget" },
  687. uploadwidget: {
  688. abort: "Upload aborted by the user.",
  689. doneOne: "File successfully uploaded.",
  690. doneMany: "Successfully uploaded %1 files.",
  691. uploadOne: "Uploading file ({percentage}%)...",
  692. uploadMany: "Uploading files, {current} of {max} done ({percentage}%)..."
  693. },
  694. wsc: {
  695. btnIgnore: "Biar",
  696. btnIgnoreAll: "Biarkan semua",
  697. btnReplace: "Ganti",
  698. btnReplaceAll: "Gantikan Semua",
  699. btnUndo: "Batalkan",
  700. changeTo: "Tukarkan kepada",
  701. errorLoading: "Error loading application service host: %s.",
  702. ieSpellDownload:
  703. "Pemeriksa ejaan tidak dipasang. Adakah anda mahu muat turun sekarang?",
  704. manyChanges: "Pemeriksaan ejaan siap: %1 perkataan diubah",
  705. noChanges: "Pemeriksaan ejaan siap: Tiada perkataan diubah",
  706. noMispell: "Pemeriksaan ejaan siap: Tiada salah ejaan",
  707. noSuggestions: "- Tiada cadangan -",
  708. notAvailable: "Sorry, but service is unavailable now.",
  709. notInDic: "Tidak terdapat didalam kamus",
  710. oneChange: "Pemeriksaan ejaan siap: Satu perkataan telah diubah",
  711. progress: "Pemeriksaan ejaan sedang diproses...",
  712. title: "Spell Checker",
  713. toolbar: "Semak Ejaan"
  714. }
  715. };