mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-20 06:53:34 +01:00
64 lines
2.1 KiB
JavaScript
64 lines
2.1 KiB
JavaScript
// I18N constants
|
|
|
|
// LANG: "he", ENCODING: UTF-8
|
|
// Author: Liron Newman, <plastish@ultinet.org>
|
|
|
|
// 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: "he",
|
|
|
|
tooltips: {
|
|
bold: "מודגש",
|
|
italic: "נטוי",
|
|
underline: "קו תחתי",
|
|
strikethrough: "קו אמצע",
|
|
subscript: "כתב עילי",
|
|
superscript: "כתב תחתי",
|
|
justifyleft: " ישור לשמאל",
|
|
justifycenter: "ישור למרכז",
|
|
justifyright: "ישור לימין",
|
|
justifyfull: "יישור לשורה מלאה",
|
|
orderedlist: "רשימה ממוספרת",
|
|
unorderedlist: "רשימה לא ממוספרת",
|
|
outdent: "הקטן כניסה",
|
|
indent: "הגדל כניסה",
|
|
forecolor: "צבע גופן",
|
|
hilitecolor: "צבע רקע",
|
|
horizontalrule: "קו אנכי",
|
|
createlink: "הכנס היפר-קישור",
|
|
insertimage: "הכנס תמונה",
|
|
inserttable: "הכנס טבלה",
|
|
htmlmode: "שנה מצב קוד HTML",
|
|
popupeditor: "הגדל את העורך",
|
|
about: "אודות עורך זה",
|
|
showhelp: "עזרה לשימוש בעורך",
|
|
textindicator: "סגנון נוכחי",
|
|
undo: "מבטל את פעולתך האחרונה",
|
|
redo: "מבצע מחדש את הפעולה האחרונה שביטלת",
|
|
cut: "גזור בחירה",
|
|
copy: "העתק בחירה",
|
|
paste: "הדבק מהלוח"
|
|
},
|
|
|
|
buttons: {
|
|
"ok": "OK",
|
|
"cancel": "ביטול"
|
|
},
|
|
|
|
msg: {
|
|
"Path": "נתיב עיצוב",
|
|
"TEXT_MODE": "אתה במצב טקסט נקי (קוד). השתמש בכפתור [<>] כדי לחזור למצב WYSIWYG (תצוגת עיצוב)."
|
|
}
|
|
};
|