Project

General

Profile

1
// I18N constants
2

    
3
// LANG: "ro", ENCODING: UTF-8
4
// Author: Mihai Bazon, http://dynarch.com/mishoo
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: "ro",
20

    
21
	tooltips: {
22
		bold:           "Îngroşat",
23
		italic:         "Italic",
24
		underline:      "Subliniat",
25
		strikethrough:  "Tăiat",
26
		subscript:      "Indice jos",
27
		superscript:    "Indice sus",
28
		justifyleft:    "Aliniere la stânga",
29
		justifycenter:  "Aliniere pe centru",
30
		justifyright:   "Aliniere la dreapta",
31
		justifyfull:    "Aliniere în ambele părţi",
32
		orderedlist:    "Listă ordonată",
33
		unorderedlist:  "Listă marcată",
34
		outdent:        "Micşorează alineatul",
35
		indent:         "Măreşte alineatul",
36
		forecolor:      "Culoarea textului",
37
		hilitecolor:    "Culoare de fundal",
38
		horizontalrule: "Linie orizontală",
39
		createlink:     "Inserează/modifică link",
40
		insertimage:    "Inserează/modifică imagine",
41
		inserttable:    "Inserează un tabel",
42
		htmlmode:       "Sursa HTML / WYSIWYG",
43
		popupeditor:    "Maximizează editorul",
44
		about:          "Despre editor",
45
		showhelp:       "Documentaţie (devel)",
46
		textindicator:  "Stilul curent",
47
		undo:           "Anulează ultima acţiune",
48
		redo:           "Reface ultima acţiune anulată",
49
		cut:            "Taie în clipboard",
50
		copy:           "Copie în clipboard",
51
		paste:          "Aduce din clipboard",
52
		lefttoright:    "Direcţia de scriere: stânga - dreapta",
53
		righttoleft:    "Direcţia de scriere: dreapta - stânga"
54
	},
55

    
56
	buttons: {
57
		"ok":           "OK",
58
		"cancel":       "Anulează"
59
	},
60

    
61
	msg: {
62
		"Path":         "Calea",
63
		"TEXT_MODE":    "Eşti în modul TEXT.  Apasă butonul [<>] pentru a te întoarce în modul WYSIWYG."
64
	},
65

    
66
	dialogs: {
67
		"Cancel"                                            : "Renunţă",
68
		"Insert/Modify Link"                                : "Inserează/modifcă link",
69
		"New window (_blank)"                               : "Fereastră nouă (_blank)",
70
		"None (use implicit)"                               : "Nimic (foloseşte ce-i implicit)",
71
		"OK"                                                : "Acceptă",
72
		"Other"                                             : "Alt target",
73
		"Same frame (_self)"                                : "Aceeaşi fereastră (_self)",
74
		"Target:"                                           : "Ţinta:",
75
		"Title (tooltip):"                                  : "Titlul (tooltip):",
76
		"Top frame (_top)"                                  : "Fereastra principală (_top)",
77
		"URL:"                                              : "URL:",
78
		"You must enter the URL where this link points to"  : "Trebuie să introduceţi un URL"
79
	}
80
};
(26-26/30)