You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
103 lines
2.9 KiB
103 lines
2.9 KiB
(function ($) { |
|
$.extend($.summernote.lang, { |
|
'es-ES': { |
|
font: { |
|
name:'Fuente', |
|
bold: 'Negrita', |
|
italic: 'Itálica', |
|
underline: 'Subrayado', |
|
strikethrough: 'Tachado', |
|
clear: 'Quitar estilo de fuente', |
|
height: 'Altura de línea', |
|
size: 'Tamaño de la fuente' |
|
}, |
|
image: { |
|
image: 'Imagen', |
|
insert: 'Insertar imagen', |
|
resizeFull: 'Redimensionar a tamaño completo', |
|
resizeHalf: 'Redimensionar a la mitad', |
|
resizeQuarter: 'Redimensionar a un cuarto', |
|
floatLeft: 'Flotar a la izquierda', |
|
floatRight: 'Flotar a la derecha', |
|
floatNone: 'No flotar', |
|
dragImageHere: 'Arrastrar una imagen aquí', |
|
selectFromFiles: 'Seleccionar desde los archivos', |
|
url: 'URL de la imagen' |
|
}, |
|
link: { |
|
link: 'Link', |
|
insert: 'Insertar link', |
|
unlink: 'Quitar link', |
|
edit: 'Editar', |
|
textToDisplay: 'Texto para mostrar', |
|
url: 'Hacia que URL lleva el link?', |
|
openInNewWindow: 'Abrir en una nueva ventana' |
|
}, |
|
video: { |
|
video: 'Video', |
|
videoLink: 'Link del video', |
|
insert: 'Insertar video', |
|
url: 'URL del video?', |
|
providers: '(YouTube, Vimeo, Vine, Instagram, o DailyMotion)' |
|
}, |
|
table: { |
|
table: 'Tabla' |
|
}, |
|
hr: { |
|
insert: 'Insertar línea horizontal' |
|
}, |
|
style: { |
|
style: 'Estilo', |
|
normal: 'Normal', |
|
blockquote: 'Cita', |
|
pre: 'Código', |
|
h1: 'Título 1', |
|
h2: 'Título 2', |
|
h3: 'Título 3', |
|
h4: 'Título 4', |
|
h5: 'Título 5', |
|
h6: 'Título 6' |
|
}, |
|
lists: { |
|
unordered: 'Lista desordenada', |
|
ordered: 'Lista ordenada' |
|
}, |
|
options: { |
|
help: 'Ayuda', |
|
fullscreen: 'Pantalla completa', |
|
codeview: 'Ver código fuente' |
|
}, |
|
paragraph: { |
|
paragraph: 'Párrafo', |
|
outdent: 'Menos tabulación', |
|
indent: 'Más tabulación', |
|
left: 'Alinear a la izquierda', |
|
center: 'Alinear al centro', |
|
right: 'Alinear a la derecha', |
|
justify: 'Justificar' |
|
}, |
|
color: { |
|
recent: 'Último color', |
|
more: 'Más colores', |
|
background: 'Color de fondo', |
|
foreground: 'Color de fuente', |
|
transparent: 'Transparente', |
|
setTransparent: 'Establecer transparente', |
|
reset: 'Restaurar', |
|
resetToDefault: 'Restaurar por defecto' |
|
}, |
|
shortcut: { |
|
shortcuts: 'Atajos de teclado', |
|
close: 'Cerrar', |
|
textFormatting: 'Formato de texto', |
|
action: 'Acción', |
|
paragraphFormatting: 'Formato de párrafo', |
|
documentStyle: 'Estilo de documento' |
|
}, |
|
history: { |
|
undo: 'Deshacer', |
|
redo: 'Rehacer' |
|
} |
|
} |
|
}); |
|
})(jQuery);
|
|
|