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: "ru",
|
||
|
||
tooltips: {
|
||
bold: "Жирный",
|
||
italic: "Наклонный",
|
||
underline: "Подчеркнутый",
|
||
strikethrough: "Перечеркнутый",
|
||
subscript: "Нижний индекс",
|
||
superscript: "Верхний индекс",
|
||
justifyleft: "Выравнивание по левому краю",
|
||
justifycenter: "Выравнивание по центру",
|
||
justifyright: "Выравнивание по правому краю",
|
||
justifyfull: "Растянутый текст",
|
||
orderedlist: "Нумерованный список",
|
||
unorderedlist: "Маркированный список",
|
||
outdent: "Сдвиг в лево",
|
||
indent: "Сдвиг в право",
|
||
forecolor: "Цвет шрифта",
|
||
backcolor: "Цвет фона",
|
||
horizontalrule: "Горизонтальная линия",
|
||
createlink: "Вставить ссылку",
|
||
insertimage: "Вставить картинку",
|
||
inserttable: "Вставить таблицу",
|
||
htmlmode: "Видеть HTML код",
|
||
popupeditor: "Увеличить редактор",
|
||
about: "О редакторе",
|
||
help: "Помощь в использовании",
|
||
textindicator: "Данный стиль"
|
||
}
|
||
};
|