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
|
/*
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'forms', 'es', {
button: {
title: 'Propiedades de Botón',
text: 'Texto (Valor)',
type: 'Tipo',
typeBtn: 'Boton',
typeSbm: 'Enviar',
typeRst: 'Reestablecer'
},
checkboxAndRadio: {
checkboxTitle: 'Propiedades de Casilla',
radioTitle: 'Propiedades de Botón de Radio',
value: 'Valor',
selected: 'Seleccionado',
required: 'Required' // MISSING
},
form: {
title: 'Propiedades de Formulario',
menu: 'Propiedades de Formulario',
action: 'Acción',
method: 'Método',
encoding: 'Codificación'
},
hidden: {
title: 'Propiedades de Campo Oculto',
name: 'Nombre',
value: 'Valor'
},
select: {
title: 'Propiedades de Campo de Selección',
selectInfo: 'Información',
opAvail: 'Opciones disponibles',
value: 'Valor',
size: 'Tamaño',
lines: 'Lineas',
chkMulti: 'Permitir múltiple selección',
required: 'Required', // MISSING
opText: 'Texto',
opValue: 'Valor',
btnAdd: 'Agregar',
btnModify: 'Modificar',
btnUp: 'Subir',
btnDown: 'Bajar',
btnSetValue: 'Establecer como predeterminado',
btnDelete: 'Eliminar'
},
textarea: {
title: 'Propiedades de Area de Texto',
cols: 'Columnas',
rows: 'Filas'
},
textfield: {
title: 'Propiedades de Campo de Texto',
name: 'Nombre',
value: 'Valor',
charWidth: 'Caracteres de ancho',
maxChars: 'Máximo caracteres',
required: 'Required', // MISSING
type: 'Tipo',
typeText: 'Texto',
typePass: 'Contraseña',
typeEmail: 'Correo electrónico',
typeSearch: 'Buscar',
typeTel: 'Número de teléfono',
typeUrl: 'URL'
}
} );
|