// ** I18N

// full day names
Calendar._DN = new Array
("S\u00f8ndag",
 "Mandag",
 "Tirsdag",
 "Onsdag",
 "Torsdag",
 "Fredag",
 "L\u00f8rdag",
 "S\u00f8ndag");

// short day names
Calendar._SDN = new Array
("S\u00f8n",
 "Man",
 "Tir",
 "Ons",
 "Tor",
 "Fre",
 "L\u00f8r",
 "S\u00f8n");

// full month names
Calendar._MN = new Array
("Januar",
 "Februar",
 "Mars",
 "April",
 "Mai",
 "Juni",
 "Juli",
 "August",
 "September",
 "Oktober",
 "November",
 "Desember");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "Mai",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Okt",
 "Nov",
 "Des");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Om kalenderen";

// Calendar._TT["ABOUT"] =
// "DHTML Dato/Tid Velger\n" +
// "(c) e-vita as 2002-2003\n" + // don't translate this this ;-)
// "For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
// "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
// "\n\n" +
// "Date selection:\n" +
// "- Use the \xab, \xbb buttons to select year\n" +
// "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
// "- Hold mouse button on any of the above buttons for faster selection.";

Calendar._TT["ABOUT"] =
"Dato utvelgelse:\n" +
"- Bruk \xab \xbb knappene til \u00e5 velge \u00e5r\n" +
"- Bruk " + String.fromCharCode(0x2039) + "  " + String.fromCharCode(0x203a) + " knappene for \u00e5 velge m\u00f8ned\n" +
"- Hvis du holder mus tasten nede p\u00e5 knappene, kan du velge raskere mellom \u00e5r og m\u00e5ned.";

Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";

Calendar._TT["TOGGLE"] = "Skift f\u00f8rste ukedag";
Calendar._TT["PREV_YEAR"] = "Et \u00e5r tilbake (hold for meny)";
Calendar._TT["PREV_MONTH"] = "En m\u00e5ned tilbake (hold for meny)";
Calendar._TT["GO_TODAY"] = "G\u00e5 til i dag";
Calendar._TT["NEXT_MONTH"] = "En m\u00e5ned fram (hold for meny)";
Calendar._TT["NEXT_YEAR"] = "Et \u00e5r fram (hold for meny)";
Calendar._TT["SEL_DATE"] = "Velg dag";
Calendar._TT["DRAG_TO_MOVE"] = "Dra vinduet";
Calendar._TT["PART_TODAY"] = " (i dag)";
Calendar._TT["MON_FIRST"] = "Vis mandag f\u00f8rst";
Calendar._TT["SUN_FIRST"] = "Vis s\u00f8ndag f\u00f8rst";
Calendar._TT["CLOSE"] = "Lukk vinduet";
Calendar._TT["TODAY"] = "I dag";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Calendar._TT["DAY_FIRST"] = "Vis %s f\u00f8rst";

// This may be locale-dependent.  It specifies the week-end days, as an array
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
// means Monday, etc.
Calendar._TT["WEEKEND"] = "0,6";

Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%y-%m-%d";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "uke";
Calendar._TT["TIME"] = "Tid:";

