ms.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. CKEDITOR.plugins.setLang( 'forms', 'ms', {
  6. button: {
  7. title: 'Ciri-ciri Butang',
  8. text: 'Teks (Nilai)',
  9. type: 'Jenis',
  10. typeBtn: 'Button',
  11. typeSbm: 'Submit',
  12. typeRst: 'Reset'
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Ciri-ciri Checkbox',
  16. radioTitle: 'Ciri-ciri Butang Radio',
  17. value: 'Nilai',
  18. selected: 'Dipilih',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Ciri-ciri Borang',
  23. menu: 'Ciri-ciri Borang',
  24. action: 'Tindakan borang',
  25. method: 'Cara borang dihantar',
  26. encoding: 'Encoding'
  27. },
  28. hidden: {
  29. title: 'Ciri-ciri Field Tersembunyi',
  30. name: 'Nama',
  31. value: 'Nilai'
  32. },
  33. select: {
  34. title: 'Ciri-ciri Selection Field',
  35. selectInfo: 'Select Info',
  36. opAvail: 'Pilihan sediada',
  37. value: 'Nilai',
  38. size: 'Saiz',
  39. lines: 'garisan',
  40. chkMulti: 'Benarkan pilihan pelbagai',
  41. required: 'Required', // MISSING
  42. opText: 'Teks',
  43. opValue: 'Nilai',
  44. btnAdd: 'Tambah Pilihan',
  45. btnModify: 'Ubah Pilihan',
  46. btnUp: 'Naik ke atas',
  47. btnDown: 'Turun ke bawah',
  48. btnSetValue: 'Set sebagai nilai terpilih',
  49. btnDelete: 'Padam'
  50. },
  51. textarea: {
  52. title: 'Ciri-ciri Textarea',
  53. cols: 'Lajur',
  54. rows: 'Baris'
  55. },
  56. textfield: {
  57. title: 'Ciri-ciri Text Field',
  58. name: 'Nama',
  59. value: 'Nilai',
  60. charWidth: 'Lebar isian',
  61. maxChars: 'Isian Maksimum',
  62. required: 'Required', // MISSING
  63. type: 'Jenis',
  64. typeText: 'Teks',
  65. typePass: 'Kata Laluan',
  66. typeEmail: 'Email', // MISSING
  67. typeSearch: 'Search', // MISSING
  68. typeTel: 'Telephone Number', // MISSING
  69. typeUrl: 'URL'
  70. }
  71. } );