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
|
//>>built
define(
"dojox/editor/plugins/nls/sv/TableDialog", //begin v1.x content
({
insertTableTitle: "Infoga tabell",
modifyTableTitle: "Ändra tabell",
rows: "Rader:",
columns: "Kolumner:",
align: "Justera:",
cellPadding: "Cellutfyllnad:",
cellSpacing: "Cellavstånd:",
tableWidth: "Tabellbredd:",
backgroundColor: "Bakgrundsfärg:",
borderColor: "Ramfärg:",
borderThickness: "Ramtjocklek",
percent: "%",
pixels: "bildpunkter",
"default": "standard",
left: "vänsterjustera",
center: "centrera",
right: "högerjustera",
buttonSet: "Ange", // translated elsewhere?
buttonInsert: "Infoga",
buttonCancel: "Avbryt",
selectTableLabel: "Välj tabell",
insertTableRowBeforeLabel: "Lägg till rad före",
insertTableRowAfterLabel: "Lägg till rad efter",
insertTableColumnBeforeLabel: "Lägg till kolumn före",
insertTableColumnAfterLabel: "Lägg till kolumn efter",
deleteTableRowLabel: "Ta bort rad",
deleteTableColumnLabel: "Ta bort kolumn"
})
//end v1.x content
);
|