17 |
17 |
|
18 |
18 |
// First day of the week. "0" means display Sunday first, "1" means display
|
19 |
19 |
// Monday first, etc.
|
20 |
|
Calendar._FD = 0;
|
|
20 |
Calendar._FD = 1;
|
21 |
21 |
|
22 |
22 |
// full month names
|
23 |
23 |
Calendar._MN = new Array
|
... | ... | |
36 |
36 |
|
37 |
37 |
// tooltips
|
38 |
38 |
Calendar._TT = {};
|
39 |
|
Calendar._TT["INFO"] = "About the calendar";
|
|
39 |
Calendar._TT["INFO"] = "Om kalendern";
|
40 |
40 |
|
41 |
41 |
Calendar._TT["ABOUT"] =
|
42 |
|
"DHTML Date/Time Selector\n" +
|
43 |
|
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
44 |
|
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
45 |
|
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
|
42 |
"DHTML Datum/Tid-väljare\n" +
|
|
43 |
"(c) dynarch.com 2002-2005 / Upphovsman: Mihai Bazon\n" + // don't translate this this ;-)
|
|
44 |
"För senaste version besök: http://www.dynarch.com/projects/calendar/\n" +
|
|
45 |
"Distribueras under GNU LGPL. Se http://gnu.org/licenses/lgpl.html för detaljer." +
|
46 |
46 |
"\n\n" +
|
47 |
|
"Date selection:\n" +
|
48 |
|
"- Use the \xab, \xbb buttons to select year\n" +
|
49 |
|
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
|
50 |
|
"- Hold mouse button on any of the above buttons for faster selection.";
|
|
47 |
"Välja datum:\n" +
|
|
48 |
"- Använd \xab, \xbb knapparna för att välja år\n" +
|
|
49 |
"- Använd " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " knapparna för att välja månad\n" +
|
|
50 |
"- Håll nere musknappen på någon av ovanstående knappar för att se snabbval.";
|
51 |
51 |
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
52 |
|
"Time selection:\n" +
|
53 |
|
"- Click on any of the time parts to increase it\n" +
|
54 |
|
"- or Shift-click to decrease it\n" +
|
55 |
|
"- or click and drag for faster selection.";
|
|
52 |
"Välja tid:\n" +
|
|
53 |
"- Klicka på något av tidsfälten för att öka\n" +
|
|
54 |
"- eller Skift-klicka för att minska\n" +
|
|
55 |
"- eller klicka och dra för att välja snabbare.";
|
56 |
56 |
|
57 |
|
Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)";
|
58 |
|
Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)";
|
59 |
|
Calendar._TT["GO_TODAY"] = "Go Today";
|
60 |
|
Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)";
|
61 |
|
Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)";
|
62 |
|
Calendar._TT["SEL_DATE"] = "Select date";
|
63 |
|
Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
|
64 |
|
Calendar._TT["PART_TODAY"] = " (today)";
|
|
57 |
Calendar._TT["PREV_YEAR"] = "Föreg. år (håll nere för lista)";
|
|
58 |
Calendar._TT["PREV_MONTH"] = "Föreg. månad (håll nere för lista)";
|
|
59 |
Calendar._TT["GO_TODAY"] = "Gå till Idag";
|
|
60 |
Calendar._TT["NEXT_MONTH"] = "Nästa månad (håll nere för lista)";
|
|
61 |
Calendar._TT["NEXT_YEAR"] = "Nästa år (håll nere för lista)";
|
|
62 |
Calendar._TT["SEL_DATE"] = "Välj datum";
|
|
63 |
Calendar._TT["DRAG_TO_MOVE"] = "Dra för att flytta";
|
|
64 |
Calendar._TT["PART_TODAY"] = " (idag)";
|
65 |
65 |
|
66 |
66 |
// the following is to inform that "%s" is to be the first day of week
|
67 |
67 |
// %s will be replaced with the day name.
|
68 |
|
Calendar._TT["DAY_FIRST"] = "Display %s first";
|
|
68 |
Calendar._TT["DAY_FIRST"] = "Visa %s först";
|
69 |
69 |
|
70 |
70 |
// This may be locale-dependent. It specifies the week-end days, as an array
|
71 |
71 |
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
72 |
72 |
// means Monday, etc.
|
73 |
73 |
Calendar._TT["WEEKEND"] = "0,6";
|
74 |
74 |
|
75 |
|
Calendar._TT["CLOSE"] = "Close";
|
76 |
|
Calendar._TT["TODAY"] = "Today";
|
77 |
|
Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
|
|
75 |
Calendar._TT["CLOSE"] = "Stäng";
|
|
76 |
Calendar._TT["TODAY"] = "Idag";
|
|
77 |
Calendar._TT["TIME_PART"] = "(Skift-)klicka eller dra för att ändra värde";
|
78 |
78 |
|
79 |
79 |
// date formats
|
80 |
80 |
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
|
81 |
81 |
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
|
82 |
82 |
|
83 |
|
Calendar._TT["WK"] = "wk";
|
84 |
|
Calendar._TT["TIME"] = "Time:";
|
|
83 |
Calendar._TT["WK"] = "v.";
|
|
84 |
Calendar._TT["TIME"] = "Tid:";
|