ms.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
  7. * Malay language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'ms' ] = {
  18. // ARIA description.
  19. editor: 'Rich Text Editor', // MISSING
  20. editorPanel: 'Rich Text Editor panel', // MISSING
  21. // Common messages and labels.
  22. common: {
  23. // Screenreader titles. Please note that screenreaders are not always capable
  24. // of reading non-English words. So be careful while translating it.
  25. editorHelp: 'Press ALT 0 for help', // MISSING
  26. browseServer: 'Browse Server',
  27. url: 'URL',
  28. protocol: 'Protokol',
  29. upload: 'Muat Naik',
  30. uploadSubmit: 'Hantar ke Server',
  31. image: 'Gambar',
  32. flash: 'Flash', // MISSING
  33. form: 'Borang',
  34. checkbox: 'Checkbox',
  35. radio: 'Butang Radio',
  36. textField: 'Text Field',
  37. textarea: 'Textarea',
  38. hiddenField: 'Field Tersembunyi',
  39. button: 'Butang',
  40. select: 'Field Pilihan',
  41. imageButton: 'Butang Bergambar',
  42. notSet: '<tidak di set>',
  43. id: 'Id',
  44. name: 'Nama',
  45. langDir: 'Arah Tulisan',
  46. langDirLtr: 'Kiri ke Kanan (LTR)',
  47. langDirRtl: 'Kanan ke Kiri (RTL)',
  48. langCode: 'Kod Bahasa',
  49. longDescr: 'Butiran Panjang URL',
  50. cssClass: 'Kelas-kelas Stylesheet',
  51. advisoryTitle: 'Tajuk Makluman',
  52. cssStyle: 'Stail',
  53. ok: 'OK',
  54. cancel: 'Batal',
  55. close: 'Tutup',
  56. preview: 'Prebiu',
  57. resize: 'Resize', // MISSING
  58. generalTab: 'Umum',
  59. advancedTab: 'Advanced',
  60. validateNumberFailed: 'This value is not a number.', // MISSING
  61. confirmNewPage: 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
  62. confirmCancel: 'You have changed some options. Are you sure you want to close the dialog window?', // MISSING
  63. options: 'Options', // MISSING
  64. target: 'Sasaran',
  65. targetNew: 'New Window (_blank)', // MISSING
  66. targetTop: 'Topmost Window (_top)', // MISSING
  67. targetSelf: 'Same Window (_self)', // MISSING
  68. targetParent: 'Parent Window (_parent)', // MISSING
  69. langDirLTR: 'Kiri ke Kanan (LTR)',
  70. langDirRTL: 'Kanan ke Kiri (RTL)',
  71. styles: 'Stail',
  72. cssClasses: 'Kelas-kelas Stylesheet',
  73. width: 'Lebar',
  74. height: 'Tinggi',
  75. align: 'Jajaran',
  76. alignLeft: 'Kiri',
  77. alignRight: 'Kanan',
  78. alignCenter: 'Tengah',
  79. alignJustify: 'Jajaran Blok',
  80. alignTop: 'Atas',
  81. alignMiddle: 'Pertengahan',
  82. alignBottom: 'Bawah',
  83. alignNone: 'None', // MISSING
  84. invalidValue : 'Nilai tidak sah.',
  85. invalidHeight: 'Height must be a number.', // MISSING
  86. invalidWidth: 'Width must be a number.', // MISSING
  87. invalidCssLength: '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).', // MISSING
  88. invalidHtmlLength: 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
  89. invalidInlineStyle: 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING
  90. cssLengthTooltip: '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).', // MISSING
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
  93. }
  94. };