1
|
// ** I18N
|
2
|
|
3
|
// Calendar NO language (Norwegian/Norsk bokmål)
|
4
|
// Author: Kai Olav Fredriksen <k@i.fredriksen.net>
|
5
|
|
6
|
// full day names
|
7
|
Calendar._DN = new Array
|
8
|
("Søndag",
|
9
|
"Mandag",
|
10
|
"Tirsdag",
|
11
|
"Onsdag",
|
12
|
"Torsdag",
|
13
|
"Fredag",
|
14
|
"Lørdag",
|
15
|
"Søndag");
|
16
|
|
17
|
Calendar._SDN_len = 3; // short day name length
|
18
|
Calendar._SMN_len = 3; // short month name length
|
19
|
|
20
|
// First day of the week. "0" means display Sunday first, "1" means display
|
21
|
// Monday first, etc.
|
22
|
Calendar._FD = 1;
|
23
|
|
24
|
// full month names
|
25
|
Calendar._MN = new Array
|
26
|
("Januar",
|
27
|
"Februar",
|
28
|
"Mars",
|
29
|
"April",
|
30
|
"Mai",
|
31
|
"Juni",
|
32
|
"Juli",
|
33
|
"August",
|
34
|
"September",
|
35
|
"Oktober",
|
36
|
"November",
|
37
|
"Desember");
|
38
|
|
39
|
// tooltips
|
40
|
Calendar._TT = {};
|
41
|
Calendar._TT["INFO"] = "Om kalenderen";
|
42
|
|
43
|
Calendar._TT["ABOUT"] =
|
44
|
"DHTML Date/Time Selector\n" +
|
45
|
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
46
|
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
47
|
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
48
|
"\n\n" +
|
49
|
"Date selection:\n" +
|
50
|
"- Use the \xab, \xbb buttons to select year\n" +
|
51
|
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
|
52
|
"- Hold mouse button on any of the above buttons for faster selection.";
|
53
|
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
54
|
"Time selection:\n" +
|
55
|
"- Click on any of the time parts to increase it\n" +
|
56
|
"- or Shift-click to decrease it\n" +
|
57
|
"- or click and drag for faster selection.";
|
58
|
|
59
|
Calendar._TT["PREV_YEAR"] = "Forrige år (hold for meny)";
|
60
|
Calendar._TT["PREV_MONTH"] = "Forrige måned (hold for meny)";
|
61
|
Calendar._TT["GO_TODAY"] = "Gå til idag";
|
62
|
Calendar._TT["NEXT_MONTH"] = "Neste måned (hold for meny)";
|
63
|
Calendar._TT["NEXT_YEAR"] = "Neste år (hold for meny)";
|
64
|
Calendar._TT["SEL_DATE"] = "Velg dato";
|
65
|
Calendar._TT["DRAG_TO_MOVE"] = "Dra for å flytte";
|
66
|
Calendar._TT["PART_TODAY"] = " (idag)";
|
67
|
|
68
|
// the following is to inform that "%s" is to be the first day of week
|
69
|
// %s will be replaced with the day name.
|
70
|
Calendar._TT["DAY_FIRST"] = "Vis %s først";
|
71
|
|
72
|
// This may be locale-dependent. It specifies the week-end days, as an array
|
73
|
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
74
|
// means Monday, etc.
|
75
|
Calendar._TT["WEEKEND"] = "6,0";
|
76
|
|
77
|
Calendar._TT["CLOSE"] = "Lukk";
|
78
|
Calendar._TT["TODAY"] = "Idag";
|
79
|
Calendar._TT["TIME_PART"] = "(Shift-)Klikk eller dra for å endre verdi";
|
80
|
|
81
|
// date formats
|
82
|
Calendar._TT["DEF_DATE_FORMAT"] = "%%d.%m.%Y";
|
83
|
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
84
|
|
85
|
Calendar._TT["WK"] = "uke";
|
86
|
Calendar._TT["TIME"] = "Tid:";
|