mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
34 lines
No EOL
861 B
JavaScript
34 lines
No EOL
861 B
JavaScript
/**
|
|
* Uruguayan spanish translation for bootstrap-wysihtml5
|
|
*/
|
|
(function($){
|
|
$.fn.wysihtml5.locale["es-ES"] = {
|
|
font_styles: {
|
|
normal: "Texto normal",
|
|
h1: "Título 1",
|
|
h2: "Título 2"
|
|
},
|
|
emphasis: {
|
|
bold: "Negrita",
|
|
italic: "Itálica",
|
|
underline: "Subrayado"
|
|
},
|
|
lists: {
|
|
unordered: "Lista desordenada",
|
|
ordered: "Lista ordenada",
|
|
outdent: "Eliminar sangría",
|
|
indent: "Agregar sangría"
|
|
},
|
|
link: {
|
|
insert: "Insertar link",
|
|
cancel: "Cancelar"
|
|
},
|
|
image: {
|
|
insert: "Insertar imagen",
|
|
cancel: "Cancelar"
|
|
},
|
|
html: {
|
|
edit: "Editar HTML"
|
|
}
|
|
};
|
|
}(jQuery)); |