id.js 1.8 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', 'id', {
  6. button: {
  7. title: 'Button Properties', // MISSING
  8. text: 'Teks (Nilai)',
  9. type: 'Tipe',
  10. typeBtn: 'Tombol',
  11. typeSbm: 'Menyerahkan',
  12. typeRst: 'Reset' // MISSING
  13. },
  14. checkboxAndRadio: {
  15. checkboxTitle: 'Checkbox Properties', // MISSING
  16. radioTitle: 'Radio Button Properties', // MISSING
  17. value: 'Nilai',
  18. selected: 'Terpilih',
  19. required: 'Required' // MISSING
  20. },
  21. form: {
  22. title: 'Form Properties', // MISSING
  23. menu: 'Form Properties', // MISSING
  24. action: 'Aksi',
  25. method: 'Metode',
  26. encoding: 'Encoding' // MISSING
  27. },
  28. hidden: {
  29. title: 'Hidden Field Properties', // MISSING
  30. name: 'Nama',
  31. value: 'Nilai'
  32. },
  33. select: {
  34. title: 'Selection Field Properties', // MISSING
  35. selectInfo: 'Select Info', // MISSING
  36. opAvail: 'Available Options', // MISSING
  37. value: 'Nilai',
  38. size: 'Ukuran',
  39. lines: 'garis',
  40. chkMulti: 'Izinkan pemilihan ganda',
  41. required: 'Required', // MISSING
  42. opText: 'Teks',
  43. opValue: 'Nilai',
  44. btnAdd: 'Tambah',
  45. btnModify: 'Modifikasi',
  46. btnUp: 'Atas',
  47. btnDown: 'Bawah',
  48. btnSetValue: 'Set as selected value', // MISSING
  49. btnDelete: 'Hapus'
  50. },
  51. textarea: {
  52. title: 'Textarea Properties', // MISSING
  53. cols: 'Kolom',
  54. rows: 'Baris'
  55. },
  56. textfield: {
  57. title: 'Text Field Properties', // MISSING
  58. name: 'Name',
  59. value: 'Nilai',
  60. charWidth: 'Character Width', // MISSING
  61. maxChars: 'Maximum Characters', // MISSING
  62. required: 'Required', // MISSING
  63. type: 'Tipe',
  64. typeText: 'Teks',
  65. typePass: 'Kata kunci',
  66. typeEmail: 'Surel',
  67. typeSearch: 'Cari',
  68. typeTel: 'Nomor Telepon',
  69. typeUrl: 'URL'
  70. }
  71. } );