mirror of
https://github.com/moodle/moodle.git
synced 2025-01-22 08:11:26 +01:00
64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
// I18N constants
|
|
|
|
// LANG: "en", ENCODING: UTF-8 | ISO-8859-1
|
|
// Author: Mihai Bazon, <mishoo@infoiasi.ro>
|
|
|
|
// FOR TRANSLATORS:
|
|
//
|
|
// 1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
|
|
// (at least a valid email address)
|
|
//
|
|
// 2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
|
|
// (if this is not possible, please include a comment
|
|
// that states what encoding is necessary.)
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "fi",
|
|
|
|
tooltips: {
|
|
bold: "Lihavointi",
|
|
italic: "Kursivointi",
|
|
underline: "Alleviivaus",
|
|
strikethrough: "Päälleviivaus",
|
|
subscript: "Alaindeksi",
|
|
superscript: "Yläindeksi",
|
|
justifyleft: "Tasaa vasemmat reunat",
|
|
justifycenter: "Keskitä",
|
|
justifyright: "Tasaa oikeat reunat",
|
|
justifyfull: "Tasaa molemmat reunat",
|
|
orderedlist: "Numerointi",
|
|
unorderedlist: "Luettelomerkit",
|
|
outdent: "Lisää sisennystä",
|
|
indent: "Vähennä sisennystä",
|
|
forecolor: "Tekstin väri",
|
|
hilitecolor: "Taustan väri",
|
|
horizontalrule: "Vaakaviiva",
|
|
createlink: "Lisää linkki",
|
|
insertimage: "Lisää kuva",
|
|
inserttable: "Lisää taulukko",
|
|
htmlmode: "Näytä HTML koodi",
|
|
popupeditor: "Suurenna editori",
|
|
about: "Tietoja editorista",
|
|
showhelp: "Ohje",
|
|
textindicator: "Nykyinen tyyli",
|
|
undo: "Peruuta viimeinen toiminto",
|
|
redo: "Palauta viimeinen toiminto",
|
|
cut: "Leikkaa",
|
|
copy: "Kopioi",
|
|
paste: "Liitä"
|
|
},
|
|
|
|
buttons: {
|
|
"ok": "OK",
|
|
"cancel": "Peruuta",
|
|
},
|
|
|
|
msg: {
|
|
"Path": "Polku",
|
|
"TEXT_MODE": "Olet tekstitilassa. Käytä [<>] painiketta palataksesi WYSIWIG -tilaan."
|
|
}
|
|
};
|