Skip to content

Commit

Permalink
Merge pull request #111 from vagonzalez/spanish-translation
Browse files Browse the repository at this point in the history
Impelmented spanish translation
  • Loading branch information
pylixm authored Jul 23, 2020
2 parents 276d7a4 + f1716e7 commit b49eff5
Show file tree
Hide file tree
Showing 2 changed files with 131 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ MDEDITOR_CONFIGS = {
    'sequence': True, # Whether to open the sequence diagram function
'watch': True, # Live preview
'lineWrapping': False, # lineWrapping
'lineNumbers': False # lineNumbers
'lineNumbers': False, # lineNumbers
'languaje': 'zh' # zh / en / es
}

}
Expand Down
129 changes: 129 additions & 0 deletions mdeditor/static/mdeditor/languages/es.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
(function(){
var factory = function (exports) {
var lang = {
name : "ex",
description : "Open source online Markdown editor.",
tocTitle : "Índice",
toolbar : {
undo : "Deshacer (Ctrl+Z)",
redo : "Rehacer (Ctrl+Y)",
bold : "Bold",
del : "Tachado",
italic : "Cursiva",
quote : "Citar",
ucwords : "Primera letra de las en mayúsculas",
uppercase : "Convertir la selección a mayúsculas",
lowercase : "Convertir la selección a minúsculas",
h1 : "Título 1",
h2 : "Título 2",
h3 : "Título 3",
h4 : "Título 4",
h5 : "Título 5",
h6 : "Título 6",
"list-ul" : "Lista no ordenada",
"list-ol" : "Lista ordenada",
hr : "Línea horizontal",
link : "Enlace",
"reference-link" : "Referencia a enlace",
image : "Imagen",
code : "Código",
"preformatted-text" : "Texto preformateado / Bloque de código (Indentado por Tab)",
"code-block" : "Bloque de código (Multi-lenguaje)",
table : "Tables",
datetime : "Datetime",
emoji : "Emoji",
"html-entities" : "Entidades HTML",
pagebreak : "Salto de página",
watch : "Unwatch",
unwatch : "Watch",
preview : "Vista previa HTML (Shift + ESC para salir)",
fullscreen : "Pantalla completa (ESC para salir)",
clear : "Borrar",
search : "Buscar",
help : "Ayuda",
info : "Sobre " + exports.title
},
buttons : {
enter : "Intro",
cancel : "Cancelar",
close : "Cerrar"
},
dialog : {
link : {
title : "Enlace",
url : "Dirección",
urlTitle : "Título",
urlEmpty : "Error: Introduzca la dirección del enlace."
},
referenceLink : {
title : "Referencia a enlace",
name : "Nombre",
url : "Dirección",
urlId : "ID",
urlTitle : "Título",
nameEmpty: "Error: El nombre no puede estar vacío.",
idEmpty : "Error: Introduzca un ID.",
urlEmpty : "Error: Introduzca una dirección URL."
},
image : {
title : "Imagen",
url : "Dirección",
link : "Enlace",
alt : "Título",
uploadButton : "Cargar",
imageURLEmpty : "Error: La dirección URL de la imagen no pueder estar vacia.",
uploadFileEmpty : "Error: upload pictures cannot be empty!",
formatNotAllowed : "Error: Sólo se pueden cargar ficheros de imagen, los formatos permitidos son:"
},
preformattedText : {
title : "Texto preformateado / Código",
emptyAlert : "Error: Introduzca el texto preformateado o el código.",
placeholder : "Código...."
},
codeBlock : {
title : "Bloque de código",
selectLabel : "Lenguajes: ",
selectDefaultText : "Selecciona un lenguaje...",
otherLanguage : "Otros",
unselectedLanguageAlert : "Error: Selecciona un lenguaje.",
codeEmptyAlert : "Error: Introduce el código.",
placeholder : "Código...."
},
htmlEntities : {
title : "Entidades HTML"
},
help : {
title : "Ayuda"
}
}
};

exports.defaults.lang = lang;
};

// CommonJS/Node.js
if (typeof require === "function" && typeof exports === "object" && typeof module === "object")
{
module.exports = factory;
}
else if (typeof define === "function") // AMD/CMD/Sea.js
{
if (define.amd) { // for Require.js

define(["editormd"], function(editormd) {
factory(editormd);
});

} else { // for Sea.js
define(function(require) {
var editormd = require("../editormd");
factory(editormd);
});
}
}
else
{
factory(window.editormd);
}

})();

0 comments on commit b49eff5

Please sign in to comment.