Chris@909
|
1 // ** I18N
|
Chris@909
|
2
|
Chris@909
|
3 // full day names
|
Chris@909
|
4 Calendar._DN = new Array
|
Chris@909
|
5 ("Söndag",
|
Chris@909
|
6 "Måndag",
|
Chris@909
|
7 "Tisdag",
|
Chris@909
|
8 "Onsdag",
|
Chris@909
|
9 "Torsdag",
|
Chris@909
|
10 "Fredag",
|
Chris@909
|
11 "Lördag",
|
Chris@909
|
12 "Söndag");
|
Chris@909
|
13
|
Chris@909
|
14 Calendar._SDN_len = 3; // short day name length
|
Chris@909
|
15 Calendar._SMN_len = 3; // short month name length
|
Chris@909
|
16
|
Chris@909
|
17
|
Chris@909
|
18 // First day of the week. "0" means display Sunday first, "1" means display
|
Chris@909
|
19 // Monday first, etc.
|
Chris@909
|
20 Calendar._FD = 1;
|
Chris@909
|
21
|
Chris@909
|
22 // full month names
|
Chris@909
|
23 Calendar._MN = new Array
|
Chris@909
|
24 ("Januari",
|
Chris@909
|
25 "Februari",
|
Chris@909
|
26 "Mars",
|
Chris@909
|
27 "April",
|
Chris@909
|
28 "Maj",
|
Chris@909
|
29 "Juni",
|
Chris@909
|
30 "Juli",
|
Chris@909
|
31 "Augusti",
|
Chris@909
|
32 "September",
|
Chris@909
|
33 "Oktober",
|
Chris@909
|
34 "November",
|
Chris@909
|
35 "December");
|
Chris@909
|
36
|
Chris@909
|
37 // tooltips
|
Chris@909
|
38 Calendar._TT = {};
|
Chris@909
|
39 Calendar._TT["INFO"] = "Om kalendern";
|
Chris@909
|
40
|
Chris@909
|
41 Calendar._TT["ABOUT"] =
|
Chris@909
|
42 "DHTML Datum/Tid-väljare\n" +
|
Chris@909
|
43 "(c) dynarch.com 2002-2005 / Upphovsman: Mihai Bazon\n" + // don't translate this this ;-)
|
Chris@909
|
44 "För senaste version besök: http://www.dynarch.com/projects/calendar/\n" +
|
Chris@909
|
45 "Distribueras under GNU LGPL. Se http://gnu.org/licenses/lgpl.html för detaljer." +
|
Chris@909
|
46 "\n\n" +
|
Chris@909
|
47 "Välja datum:\n" +
|
Chris@909
|
48 "- Använd \xab, \xbb knapparna för att välja år\n" +
|
Chris@909
|
49 "- Använd " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " knapparna för att välja månad\n" +
|
Chris@909
|
50 "- Håll nere musknappen på någon av ovanstående knappar för att se snabbval.";
|
Chris@909
|
51 Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
Chris@909
|
52 "Välja tid:\n" +
|
Chris@909
|
53 "- Klicka på något av tidsfälten för att öka\n" +
|
Chris@909
|
54 "- eller Skift-klicka för att minska\n" +
|
Chris@909
|
55 "- eller klicka och dra för att välja snabbare.";
|
Chris@909
|
56
|
Chris@909
|
57 Calendar._TT["PREV_YEAR"] = "Föreg. år (håll nere för lista)";
|
Chris@909
|
58 Calendar._TT["PREV_MONTH"] = "Föreg. månad (håll nere för lista)";
|
Chris@909
|
59 Calendar._TT["GO_TODAY"] = "Gå till Idag";
|
Chris@909
|
60 Calendar._TT["NEXT_MONTH"] = "Nästa månad (håll nere för lista)";
|
Chris@909
|
61 Calendar._TT["NEXT_YEAR"] = "Nästa år (håll nere för lista)";
|
Chris@909
|
62 Calendar._TT["SEL_DATE"] = "Välj datum";
|
Chris@909
|
63 Calendar._TT["DRAG_TO_MOVE"] = "Dra för att flytta";
|
Chris@909
|
64 Calendar._TT["PART_TODAY"] = " (idag)";
|
Chris@909
|
65
|
Chris@909
|
66 // the following is to inform that "%s" is to be the first day of week
|
Chris@909
|
67 // %s will be replaced with the day name.
|
Chris@909
|
68 Calendar._TT["DAY_FIRST"] = "Visa %s först";
|
Chris@909
|
69
|
Chris@909
|
70 // This may be locale-dependent. It specifies the week-end days, as an array
|
Chris@909
|
71 // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
Chris@909
|
72 // means Monday, etc.
|
Chris@909
|
73 Calendar._TT["WEEKEND"] = "0,6";
|
Chris@909
|
74
|
Chris@909
|
75 Calendar._TT["CLOSE"] = "Stäng";
|
Chris@909
|
76 Calendar._TT["TODAY"] = "Idag";
|
Chris@909
|
77 Calendar._TT["TIME_PART"] = "(Skift-)klicka eller dra för att ändra värde";
|
Chris@909
|
78
|
Chris@909
|
79 // date formats
|
Chris@909
|
80 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
|
Chris@909
|
81 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
Chris@909
|
82
|
Chris@909
|
83 Calendar._TT["WK"] = "v.";
|
Chris@909
|
84 Calendar._TT["TIME"] = "Tid:";
|