Project

General

Profile

1
// I18N constants
2

    
3
// LANG: "hu", ENCODING: UTF-8
4
// Author: Miklós Somogyi, <somogyine@vnet.hu>
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: "hu",
20

    
21
	tooltips: {
22
		bold:           "Félkövér",
23
		italic:         "Dőlt",
24
		underline:      "Aláhúzott",
25
		strikethrough:  "Áthúzott",
26
		subscript:      "Alsó index",
27
		superscript:    "Felső index",
28
		justifyleft:    "Balra zárt",
29
		justifycenter:  "Középre zárt",
30
		justifyright:   "Jobbra zárt",
31
		justifyfull:    "Sorkizárt",
32
		orderedlist:    "Számozott lista",
33
		unorderedlist:  "Számozatlan lista",
34
		outdent:        "Behúzás csökkentése",
35
		indent:         "Behúzás növelése",
36
		forecolor:      "Karakterszín",
37
		hilitecolor:    "Háttérszín",
38
		horizontalrule: "Elválasztó vonal",
39
		createlink:     "Hiperhivatkozás beszúrása",
40
		insertimage:    "Kép beszúrása",
41
		inserttable:    "Táblázat beszúrása",
42
		htmlmode:       "HTML forrás be/ki",
43
		popupeditor:    "Szerkesztő külön ablakban",
44
		about:          "Névjegy",
45
		showhelp:       "Súgó",
46
		textindicator:  "Aktuális stílus",
47
		undo:           "Visszavonás",
48
		redo:           "Újra végrehajtás",
49
		cut:            "Kivágás",
50
		copy:           "Másolás",
51
		paste:          "Beillesztés"
52
	},
53

    
54
	buttons: {
55
		"ok":           "Rendben",
56
		"cancel":       "Mégsem"
57
	},
58

    
59
	msg: {
60
		"Path":         "Hierarchia",
61
		"TEXT_MODE":    "Forrás mód. Visszaváltás [<>] gomb"
62
	}
63
};
(13-13/30)