th.js 3.0 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', 'th', {
  6. border: 'ขนาดเส้นขอบ',
  7. caption: 'หัวเรื่องของตาราง',
  8. cell: {
  9. menu: 'ช่องตาราง',
  10. insertBefore: 'Insert Cell Before',
  11. insertAfter: 'Insert Cell After',
  12. deleteCell: 'ลบช่อง',
  13. merge: 'ผสานช่อง',
  14. mergeRight: 'Merge Right',
  15. mergeDown: 'Merge Down',
  16. splitHorizontal: 'Split Cell Horizontally',
  17. splitVertical: 'Split Cell Vertically',
  18. title: 'Cell Properties',
  19. cellType: 'Cell Type',
  20. rowSpan: 'Rows Span',
  21. colSpan: 'Columns Span',
  22. wordWrap: 'Word Wrap',
  23. hAlign: 'Horizontal Alignment',
  24. vAlign: 'Vertical Alignment',
  25. alignBaseline: 'Baseline',
  26. bgColor: 'Background Color',
  27. borderColor: 'Border Color',
  28. data: 'Data',
  29. header: 'Header',
  30. yes: 'Yes',
  31. no: 'No',
  32. invalidWidth: 'Cell width must be a number.',
  33. invalidHeight: 'Cell height must be a number.',
  34. invalidRowSpan: 'Rows span must be a whole number.',
  35. invalidColSpan: 'Columns span must be a whole number.',
  36. chooseColor: 'Choose'
  37. },
  38. cellPad: 'ระยะแนวตั้ง',
  39. cellSpace: 'ระยะแนวนอนน',
  40. column: {
  41. menu: 'คอลัมน์',
  42. insertBefore: 'Insert Column Before',
  43. insertAfter: 'Insert Column After',
  44. deleteColumn: 'ลบสดมน์'
  45. },
  46. columns: 'สดมน์',
  47. deleteTable: 'ลบตาราง',
  48. headers: 'ส่วนหัว',
  49. headersBoth: 'ทั้งสองอย่าง',
  50. headersColumn: 'คอลัมน์แรก',
  51. headersNone: 'None',
  52. headersRow: 'แถวแรก',
  53. invalidBorder: 'ขนาดเส้นกรอบต้องเป็นจำนวนตัวเลข',
  54. invalidCellPadding: 'ช่องว่างภายในเซลล์ต้องเลขจำนวนบวก',
  55. invalidCellSpacing: 'ช่องว่างภายในเซลล์ต้องเป็นเลขจำนวนบวก',
  56. invalidCols: 'จำนวนคอลัมน์ต้องเป็นจำนวนมากกว่า 0',
  57. invalidHeight: 'ส่วนสูงของตารางต้องเป็นตัวเลข',
  58. invalidRows: 'จำนวนของแถวต้องเป็นจำนวนมากกว่า 0',
  59. invalidWidth: 'ความกว้างตารางต้องเป็นตัวเลข',
  60. menu: 'คุณสมบัติของ ตาราง',
  61. row: {
  62. menu: 'แถว',
  63. insertBefore: 'Insert Row Before',
  64. insertAfter: 'Insert Row After',
  65. deleteRow: 'ลบแถว'
  66. },
  67. rows: 'แถว',
  68. summary: 'สรุปความ',
  69. title: 'คุณสมบัติของ ตาราง',
  70. toolbar: 'ตาราง',
  71. widthPc: 'เปอร์เซ็น',
  72. widthPx: 'จุดสี',
  73. widthUnit: 'หน่วยความกว้าง'
  74. } );