1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
//>>built
define(
"dojox/editor/plugins/nls/sl/TableDialog", //begin v1.x content
({
insertTableTitle: "Vstavi tabelo",
modifyTableTitle: "Spremeni tabelo",
rows: "Vrstice:",
columns: "Stolpci:",
align: "Poravnaj:",
cellPadding: "Polnjenje celic:",
cellSpacing: "Razmik med celicami:",
tableWidth: "Širina tabele:",
backgroundColor: "Barva ozadja:",
borderColor: "Barva obrobe:",
borderThickness: "Debelina obrobe",
percent: "odstotkov",
pixels: "pikslov",
"default": "privzeto",
left: "levo",
center: "na sredini",
right: "desno",
buttonSet: "Nastavi", // translated elsewhere?
buttonInsert: "Vstavi",
buttonCancel: "Prekliči",
selectTableLabel: "Izberi tabelo",
insertTableRowBeforeLabel: "Dodaj vrstico pred",
insertTableRowAfterLabel: "Dodaj vrstico za",
insertTableColumnBeforeLabel: "Dodaj stolpec pred",
insertTableColumnAfterLabel: "Dodaj stolpec za",
deleteTableRowLabel: "Izbriši vrstico",
deleteTableColumnLabel: "Izbriši stolpec"
})
//end v1.x content
);
|