id.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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( 'table', 'id', {
  6. border: 'Ukuran batas',
  7. caption: 'Judul halaman',
  8. cell: {
  9. menu: 'Sel',
  10. insertBefore: 'Sisip Sel Sebelum',
  11. insertAfter: 'Sisip Sel Setelah',
  12. deleteCell: 'Hapus Sel',
  13. merge: 'Gabungkan Sel',
  14. mergeRight: 'Gabungkan ke Kanan',
  15. mergeDown: 'Gabungkan ke Bawah',
  16. splitHorizontal: 'Pisahkan Sel Secara Horisontal',
  17. splitVertical: 'Pisahkan Sel Secara Vertikal',
  18. title: 'Properti Sel',
  19. cellType: 'Tipe Sel',
  20. rowSpan: 'Rentang antar baris',
  21. colSpan: 'Rentang antar kolom',
  22. wordWrap: 'Word Wrap',
  23. hAlign: 'Jajaran Horisontal',
  24. vAlign: 'Jajaran Vertikal',
  25. alignBaseline: 'Dasar',
  26. bgColor: 'Warna Latar Belakang',
  27. borderColor: 'Warna Batasan',
  28. data: 'Data',
  29. header: 'Header',
  30. yes: 'Ya',
  31. no: 'Tidak',
  32. invalidWidth: 'Lebar sel harus sebuah angka.',
  33. invalidHeight: 'Tinggi sel harus sebuah angka',
  34. invalidRowSpan: 'Rentang antar baris harus angka seluruhnya.',
  35. invalidColSpan: 'Rentang antar kolom harus angka seluruhnya',
  36. chooseColor: 'Pilih'
  37. },
  38. cellPad: 'Sel spasi dalam',
  39. cellSpace: 'Spasi antar sel',
  40. column: {
  41. menu: 'Kolom',
  42. insertBefore: 'Sisip Kolom Sebelum',
  43. insertAfter: 'Sisip Kolom Sesudah',
  44. deleteColumn: 'Hapus Kolom'
  45. },
  46. columns: 'Kolom',
  47. deleteTable: 'Hapus Tabel',
  48. headers: 'Headers',
  49. headersBoth: 'Keduanya',
  50. headersColumn: 'Kolom pertama',
  51. headersNone: 'Tidak ada',
  52. headersRow: 'Baris Pertama',
  53. invalidBorder: 'Ukuran batasan harus sebuah angka',
  54. invalidCellPadding: '\'Spasi dalam\' sel harus angka positif.',
  55. invalidCellSpacing: 'Spasi antar sel harus angka positif.',
  56. invalidCols: 'Jumlah kolom harus sebuah angka lebih besar dari 0',
  57. invalidHeight: 'Tinggi tabel harus sebuah angka.',
  58. invalidRows: 'Jumlah barus harus sebuah angka dan lebih besar dari 0.',
  59. invalidWidth: 'Lebar tabel harus sebuah angka.',
  60. menu: 'Properti Tabel',
  61. row: {
  62. menu: 'Baris',
  63. insertBefore: 'Sisip Baris Sebelum',
  64. insertAfter: 'Sisip Baris Sesudah',
  65. deleteRow: 'Hapus Baris'
  66. },
  67. rows: 'Baris',
  68. summary: 'Intisari',
  69. title: 'Properti Tabel',
  70. toolbar: 'Tabe',
  71. widthPc: 'persen',
  72. widthPx: 'piksel',
  73. widthUnit: 'lebar satuan'
  74. } );