mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-04 00:36:45 +00:00
69 lines
1.6 KiB
JavaScript
Executable File
69 lines
1.6 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, 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'
|
|
},
|
|
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',
|
|
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',
|
|
type: 'Tipo',
|
|
typeText: 'Texto',
|
|
typePass: 'Contraseña',
|
|
typeEmail: 'Correo electrónico',
|
|
typeSearch: 'Buscar',
|
|
typeTel: 'Número de teléfono',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|