| 1 |
lars |
1 |
// I18N constants
|
|
|
2 |
|
|
|
3 |
// LANG: "it", ENCODING: UTF-8 | ISO-8859-1
|
|
|
4 |
// Author: Fabio Rotondo <fabio@rotondo.it>
|
|
|
5 |
|
|
|
6 |
HTMLArea.I18N = {
|
|
|
7 |
|
|
|
8 |
// the following should be the filename without .js extension
|
|
|
9 |
// it will be used for automatically load plugin language.
|
|
|
10 |
lang: "it",
|
|
|
11 |
|
|
|
12 |
tooltips: {
|
|
|
13 |
bold: "Grassetto",
|
|
|
14 |
italic: "Italico",
|
|
|
15 |
underline: "Sottolineato",
|
|
|
16 |
strikethrough: "Barrato",
|
|
|
17 |
subscript: "Pedice",
|
|
|
18 |
superscript: "Apice",
|
|
|
19 |
justifyleft: "Giustifica a Sinistra",
|
|
|
20 |
justifycenter: "Giustifica in Centro",
|
|
|
21 |
justifyright: "Giustifica a Destra",
|
|
|
22 |
justifyfull: "Giustifica Completamente",
|
|
|
23 |
orderedlist: "Lista Ordinata",
|
|
|
24 |
unorderedlist: "Lista Puntata",
|
|
|
25 |
outdent: "Decrementa Indentazione",
|
|
|
26 |
indent: "Incrementa Indentazione",
|
|
|
27 |
forecolor: "Colore del Carattere",
|
|
|
28 |
hilitecolor: "Colore di Sfondo",
|
|
|
29 |
horizontalrule: "Linea Orizzontale",
|
|
|
30 |
createlink: "Inserisci un Link",
|
|
|
31 |
insertimage: "Inserisci un'Immagine",
|
|
|
32 |
inserttable: "Inserisci una Tabella",
|
|
|
33 |
htmlmode: "Attiva il codice HTML",
|
|
|
34 |
popupeditor: "Allarga l'editor",
|
|
|
35 |
about: "Info sull'editor",
|
|
|
36 |
showhelp: "Aiuto sull'editor",
|
|
|
37 |
textindicator: "Stile Attuale",
|
|
|
38 |
undo: "Elimina l'ultima modifica",
|
|
|
39 |
redo: "Ripristina l'ultima modifica",
|
|
|
40 |
cut: "Taglia l'area selezionata",
|
|
|
41 |
copy: "Copia l'area selezionata",
|
|
|
42 |
paste: "Incolla dalla memoria"
|
|
|
43 |
},
|
|
|
44 |
|
|
|
45 |
buttons: {
|
|
|
46 |
"ok": "OK",
|
|
|
47 |
"cancel": "Annulla"
|
|
|
48 |
},
|
|
|
49 |
|
|
|
50 |
msg: {
|
|
|
51 |
"Path": "Percorso",
|
|
|
52 |
"TEXT_MODE": "Sei in MODALITA' TESTO. Usa il bottone [<>] per tornare alla modalità WYSIWYG."
|
|
|
53 |
}
|
|
|
54 |
};
|