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', 'gl', {
border: 'Tamaño do Borde',
caption: 'Título',
cell: {
menu: 'Cela',
insertBefore: 'Insert Cell Before',
insertAfter: 'Insert Cell After',
deleteCell: 'Borrar Cela',
merge: 'Unir Celas',
mergeRight: 'Merge Right',
mergeDown: 'Merge Down',
splitHorizontal: 'Split Cell Horizontally',
splitVertical: 'Split Cell Vertically',
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: 'Marxe interior',
cellSpace: 'Marxe entre Celas',
column: {
menu: 'Columna',
insertBefore: 'Insert Column Before',
insertAfter: 'Insert Column After',
deleteColumn: 'Borrar Columnas'
},
columns: 'Columnas',
deleteTable: 'Borrar Táboa',
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: 'Propiedades da Táboa',
row: {
menu: 'Fila',
insertBefore: 'Insert Row Before',
insertAfter: 'Insert Row After',
deleteRow: 'Borrar Filas'
},
rows: 'Filas',
summary: 'Sumario',
title: 'Propiedades da Táboa',
toolbar: 'Tabla',
widthPc: 'percent',
widthPx: 'pixels',
widthUnit: 'width unit' // MISSING
});
|