1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
/*
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'table', 'ko', {
border: '테두리 크기',
caption: '캡션',
cell: {
menu: '셀/칸(Cell)',
insertBefore: '앞에 셀/칸 삽입',
insertAfter: '뒤에 셀/칸 삽입',
deleteCell: '셀 삭제',
merge: '셀 합치기',
mergeRight: '오른쪽 뭉치기',
mergeDown: '왼쪽 뭉치기',
splitHorizontal: '수평 나누기',
splitVertical: '수직 나누기',
title: 'Cell Properties',
cellType: 'Cell Type',
rowSpan: 'Rows Span',
colSpan: 'Columns Span',
wordWrap: 'Word Wrap',
hAlign: 'Horizontal Alignment',
vAlign: 'Vertical Alignment',
alignBaseline: 'Baseline',
bgColor: 'Background Color',
borderColor: 'Border Color',
data: 'Data',
header: 'Header',
yes: 'Yes',
no: 'No',
invalidWidth: 'Cell width must be a number.',
invalidHeight: 'Cell height must be a number.',
invalidRowSpan: 'Rows span must be a whole number.',
invalidColSpan: 'Columns span must be a whole number.',
chooseColor: 'Choose'
},
cellPad: '셀 여백',
cellSpace: '셀 간격',
column: {
menu: '열(Column)',
insertBefore: '앞에 열 삽입',
insertAfter: '뒤에 열 삽입',
deleteColumn: '세로줄 삭제'
},
columns: '세로줄',
deleteTable: '표 삭제',
headers: 'Headers', // MISSING
headersBoth: 'Both', // MISSING
headersColumn: 'First column', // MISSING
headersNone: 'None',
headersRow: 'First Row', // MISSING
invalidBorder: 'Border size must be a number.', // MISSING
invalidCellPadding: 'Cell padding must be a positive number.', // MISSING
invalidCellSpacing: 'Cell spacing must be a positive number.', // MISSING
invalidCols: 'Number of columns must be a number greater than 0.', // MISSING
invalidHeight: 'Table height must be a number.', // MISSING
invalidRows: 'Number of rows must be a number greater than 0.', // MISSING
invalidWidth: 'Table width must be a number.', // MISSING
menu: '표 설정',
row: {
menu: '행(Row)',
insertBefore: '앞에 행 삽입',
insertAfter: '뒤에 행 삽입',
deleteRow: '가로줄 삭제'
},
rows: '가로줄',
summary: 'Summary', // MISSING
title: '표 설정',
toolbar: '표',
widthPc: '퍼센트',
widthPx: '픽셀',
widthUnit: 'width unit' // MISSING
});
|