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