-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Spanish translation
- Loading branch information
Showing
1 changed file
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
>> Credits | ||
>> Author: SrAcosta | ||
>> Contact Link: Aco#7598 (Discord Tag) | ||
*/ | ||
(function($) { | ||
$.extend($.editor_lang, { | ||
'es-ES': { | ||
font: { | ||
bold: 'Negrita', | ||
italic: 'Cursiva', | ||
underline: 'Subrayada', | ||
strikethrough: 'Tachado', | ||
supperscript: 'Sobrescrita', | ||
subscript: 'Subíndice', | ||
font_name: 'Familia tipográfica', | ||
font_size: 'Tamaño de fuente', | ||
color: { | ||
button: 'Color', | ||
modal: 'Selector de color' | ||
} | ||
}, | ||
text: { | ||
unordered_list: 'Lista desordenada', | ||
ordered_list: 'Lista ordenada', | ||
align: { | ||
button: 'Alineación', | ||
left: 'Izquierda', | ||
center: 'Centro', | ||
right: 'Derecha' | ||
} | ||
}, | ||
inserts: { | ||
link: { | ||
button: 'Link', | ||
modal: 'Inserta Link', | ||
text: 'Inserte Texto', | ||
insert: 'Inserte URL' | ||
}, | ||
image: { | ||
button: 'Imagen', | ||
site: 'Si está buscando un sitio web donde pueda cargar imágenes, insértelas aquí, haga click en <a href="https://imgur.com/" class="alert-link" target="_blank">here</a>.', | ||
modal: 'Insertar Image', | ||
url: 'Url', | ||
insert_url: 'Inserte Url', | ||
upload: 'Subir', | ||
choose_file: 'Seleccionar Archivo' | ||
}, | ||
media: { | ||
button: 'Media', | ||
modal: 'Insertar Media' | ||
insert_url: 'Inserte Media Url' | ||
}, | ||
misc: { | ||
button: 'Miscelánea', | ||
modal: 'Miscelánea', | ||
}, | ||
advcode: { | ||
button: 'Código avanzado', | ||
modal: 'Código avanzado' | ||
}, | ||
table: { | ||
button: 'Tabla', | ||
modal: 'Insertar Tabla', | ||
rows: 'Filas de Tabla', | ||
cols: 'Columnas de Tabla' | ||
} | ||
}, | ||
preview: { | ||
button: 'Avance', | ||
modal: 'Avance' | ||
}, | ||
others: { | ||
blockquote: 'Blockquote', | ||
code: 'Código simple', | ||
spoiler: 'Spoiler', | ||
linebreak: 'Linebreak', | ||
created_by: 'Editor creado por' | ||
}, | ||
insert: 'Insertar', | ||
other: 'Otro', | ||
errors: { | ||
selector: 'Por favor especifica un selector', | ||
invalid_value: "Valor invalido para la opcion '{option}'!", | ||
lang: 'Por favor especifique un lenguaje para el editor!', | ||
icons: 'Por favor seleccione un Icono para el editor', | ||
height: 'Por favor especifique la altura para el editor', | ||
} | ||
} | ||
}); | ||
})(jQuery); |