forked from extern/egroupware
a3a85a862d
eGW code to use it, is in phpgwapi/inc/class.html.inc.php the translations (via eGW standard translation system) are in phpgwapi/inc/htmlarea-lang.php
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
// I18N constants
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "it",
|
|
|
|
tooltips: {
|
|
bold: "Grassetto",
|
|
italic: "Corsivo",
|
|
underline: "Sottolineato",
|
|
strikethrough: "Barrato",
|
|
subscript: "Pedice",
|
|
superscript: "Apice",
|
|
justifyleft: "Allinea a sinistra",
|
|
justifycenter: "Centra",
|
|
justifyright: "Allinea a destra",
|
|
justifyfull: "Giustifica",
|
|
orderedlist: "Elenco numerato",
|
|
unorderedlist: "Elenco puntato",
|
|
outdent: "Riduci rientro",
|
|
indent: "Aumenta rientro",
|
|
forecolor: "Colore carattere",
|
|
backcolor: "Colore di sfondo",
|
|
horizontalrule: "Linea orizzontale",
|
|
createlink: "Inserisci collegamento ipertestuale",
|
|
insertimage: "Inserisci immagine",
|
|
inserttable: "Inserisci tabella",
|
|
htmlmode: "Passa alla visualizzazione HTML",
|
|
popupeditor: "Ingrandisci editor",
|
|
about: "Info",
|
|
help: "Aiuto",
|
|
textindicator: "Stile utilizzato"
|
|
}
|
|
};
|