Project

General

Profile

1 4 ryan
// I18N constants
2
3
// LANG: "he", ENCODING: UTF-8
4
// Author: Liron Newman, <plastish@ultinet.org>
5
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14
15
HTMLArea.I18N = {
16
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "he",
20
21
	tooltips: {
22
		bold:           "מודגש",
23
		italic:         "נטוי",
24
		underline:      "קו תחתי",
25
		strikethrough:  "קו אמצע",
26
		subscript:      "כתב עילי",
27
		superscript:    "כתב תחתי",
28
		justifyleft:    " ישור לשמאל",
29
		justifycenter:  "ישור למרכז",
30
		justifyright:   "ישור לימין",
31
		justifyfull:    "יישור לשורה מלאה",
32
		orderedlist:    "רשימה ממוספרת",
33
		unorderedlist:  "רשימה לא ממוספרת",
34
		outdent:        "הקטן כניסה",
35
		indent:         "הגדל כניסה",
36
		forecolor:      "צבע גופן",
37
		hilitecolor:    "צבע רקע",
38
		horizontalrule: "קו אנכי",
39
		createlink:     "הכנס היפר-קישור",
40
		insertimage:    "הכנס תמונה",
41
		inserttable:    "הכנס טבלה",
42
		htmlmode:       "שנה מצב קוד HTML",
43
		popupeditor:    "הגדל את העורך",
44
		about:          "אודות עורך זה",
45
		showhelp:       "עזרה לשימוש בעורך",
46
		textindicator:  "סגנון נוכחי",
47
		undo:           "מבטל את פעולתך האחרונה",
48
		redo:           "מבצע מחדש את הפעולה האחרונה שביטלת",
49
		cut:            "גזור בחירה",
50
		copy:           "העתק בחירה",
51
		paste:          "הדבק מהלוח"
52
	},
53
54
	buttons: {
55
		"ok":           "OK",
56
		"cancel":       "ביטול"
57
	},
58
59
	msg: {
60
		"Path":         "נתיב עיצוב",
61
		"TEXT_MODE":    "אתה במצב טקסט נקי (קוד). השתמש בכפתור [<>] כדי לחזור למצב WYSIWYG (תצוגת עיצוב)."
62
	}
63
};