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
992 B
JavaScript
37 lines
992 B
JavaScript
// I18N constants -- Chinese Big-5
|
|
// by Dave Lo -- dlo@interactivetools.com
|
|
HTMLArea.I18N = {
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "b5",
|
|
|
|
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: "關於 HTMLArea",
|
|
help: "說明",
|
|
textindicator: "字體例子"
|
|
}
|
|
};
|