Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added italian language #823

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@ examples/uploads/**/*
*.sh
.project
.url
css/*.map
css/*.map
*.DS_Store
/.idea/
14 changes: 9 additions & 5 deletions examples/multi-languages.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ <h1>多语言支持(l18n)</h1>
<select id="lang-select">
<option selected="selected">Languages</option>
<option value="en">English (en)</option>
<option value="it">Italiano (it)</option>
<option value="zh-tw">繁體中文 (zh-tw)</option>
<option value="zh-cn">简体中文 (zh-cn)</option>
</select>
Expand All @@ -29,6 +30,9 @@ <h1>多语言支持(l18n)</h1>
&lt;!-- English --&gt;
&lt;script src="../dist/js/languages/en.js"&gt;&lt;/script&gt;

&lt;!-- Italiano --&gt;
&lt;script src="../dist/js/languages/it.js"&gt;&lt;/script&gt;

&lt;!-- 繁體中文 --&gt;
&lt;script src="../dist/js/languages/zh-tw.js"&gt;&lt;/script&gt;
```
Expand Down Expand Up @@ -72,11 +76,11 @@ <h1>多语言支持(l18n)</h1>
testEditor.recreate();

// 整个编辑器重建,预览HTML会重新生成,出现闪动
//testEditor = editormd("test-editormd", {
//width: "90%",
//height: 640,
//path : '../lib/'
//});
testEditor = editormd("test-editormd", {
width: "90%",
height: 640,
path : '../lib/'
});

lang = value;
console.log(lang, value, editormd.defaults.lang);
Expand Down
129 changes: 129 additions & 0 deletions languages/it.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
(function(){
var factory = function (exports) {
var lang = {
name : "it",
description : "Editor Markdown Open Source.",
tocTitle : "Sommario",
toolbar : {
undo : "Annulla(Ctrl+Z)",
redo : "Riapplica(Ctrl+Y)",
bold : "Grassetto",
del : "Sbarrato",
italic : "Italico",
quote : "Quotato",
ucwords : "Converti a prima lettera miuscola resto minuscolo",
uppercase : "Converti a tutto maiuscolo",
lowercase : "Converti a tutto minuscolo",
h1 : "Titolo 1",
h2 : "Titolo 2",
h3 : "Titolo 3",
h4 : "Titolo 4",
h5 : "Titolo 5",
h6 : "Titolo 6",
"list-ul" : "Lista",
"list-ol" : "Lista numerica",
hr : "Linea orizzontale",
link : "Link",
"reference-link" : "Ancora",
image : "Immagine",
code : "Codice in linea",
"preformatted-text" : "Testo pre-formattato / Blocco di codice sorgente (indentazione con Tab)",
"code-block" : "Blocco di codice sorgente (Linguaggi multipli)",
table : "Tabella",
datetime : "Data ora",
emoji : "Emoji",
"html-entities" : "Entità HTML",
pagebreak : "Interruzione di pagina",
watch : "Disattiva anteprima",
unwatch : "Attiva anteprima",
preview : "Anteprima HTML (Per uscire premi Shif+ESC)",
fullscreen : "Schermo intero (Per uscire premi ESC)",
clear : "Cancella",
search : "Cerca",
help : "Aiuto",
info : "Informazioni " + exports.title
},
buttons : {
enter : "Salva",
cancel : "Annulla",
close : "Chiudi"
},
dialog : {
link : {
title : "Link",
url : "Indirizzo",
urlTitle : "Titolo",
urlEmpty : "Errore: per favore inserisci l'indirizzo del link."
},
referenceLink : {
title : "Ancora",
name : "Nome",
url : "Indirizzo",
urlId : "ID",
urlTitle : "Titolo",
nameEmpty: "Errore: il riferimento non può essere vuoto.",
idEmpty : "Errore: per favore inserisci l'ID del riferimento del link.",
urlEmpty : "Errore: per favore inserisci l'indirizzo del link."
},
image : {
title : "Immagine",
url : "Indirizzo",
link : "Link",
alt : "Titolo",
uploadButton : "Upload",
imageURLEmpty : "Errore: l'url dell'immagine non può essere vuoto.",
uploadFileEmpty : "Errore: le immagini caricate non possono essere vuote!",
formatNotAllowed : "Errore: è supportato unicamente il caricamento di file immagine, i formati di file immagine supportati sono:"
},
preformattedText : {
title : "Testo pre-formattato / Codice",
emptyAlert : "Errore: perfavore inserisci il testo pre-formtatto o il codice sorgente.",
placeholder : "scrivi qui il codice sorgente...."
},
codeBlock : {
title : "Blocco di codice sorgente",
selectLabel : "Linguaggi: ",
selectDefaultText : "scegli un liguaggio...",
otherLanguage : "Altri liguaggi",
unselectedLanguageAlert : "Errore: perfavore scegli un linguaggio.",
codeEmptyAlert : "Error: perfavore inserisci il codice sorgente.",
placeholder : "scrivi qui il codice sorgente...."
},
htmlEntities : {
title : "Entità HTML"
},
help : {
title : "Aiuto"
}
}
};

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);
}

})();