// JavaScript Document
Zapatec.Calendar._DN = new Array
("nedelja",
 "ponedeljek",
 "torek",
 "sreda",
 "četrtek",
 "petek",
 "sobota",
 "nedelja");

// short day names
Zapatec.Calendar._SDN = new Array
("ned",
 "pon",
 "tor",
 "sre",
 "čet",
 "pet",
 "sob",
 "ned");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Zapatec.Calendar._FD = 0;

// full month names
Zapatec.Calendar._MN = new Array
("januar",
 "februar",
 "marec",
 "april",
 "maj",
 "junij",
 "julij",
 "avgust",
 "september",
 "oktober",
 "november",
 "december");

// short month names
Zapatec.Calendar._SMN = new Array
("jan",
 "feb",
 "mar",
 "apr",
 "maj",
 "jun",
 "jul",
 "avg",
 "sep",
 "okt",
 "nov",
 "dec");

// tooltips
Zapatec.Calendar._TT_en = Zapatec.Calendar._TT = {};
Zapatec.Calendar._TT["INFO"] = "o koledarju";

/*Zapatec.Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) zapatec.com 2002-2007\n" + // don't translate this this ;-)
"For latest version visit: http://www.zapatec.com/\n" +
"\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.";
Zapatec.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.";
*/

Zapatec.Calendar._TT["PREV_YEAR"] = "prejšnje leto (držite za meni)";
Zapatec.Calendar._TT["PREV_MONTH"] = "prejšnji mesec (držite za meni)";
Zapatec.Calendar._TT["GO_TODAY"] = "danes";
Zapatec.Calendar._TT["NEXT_MONTH"] = "naslednji mesec (držite za meni)";
Zapatec.Calendar._TT["NEXT_YEAR"] = "naslednje leto (držite za meni)";
Zapatec.Calendar._TT["SEL_DATE"] = "izberite datum";
Zapatec.Calendar._TT["DRAG_TO_MOVE"] = "označite in premaknite ";
Zapatec.Calendar._TT["PART_TODAY"] = " (danes)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Zapatec.Calendar._TT["DAY_FIRST"] = "pokaži %s najprej";

// 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.
Zapatec.Calendar._TT["WEEKEND"] = "0,6";

Zapatec.Calendar._TT["CLOSE"] = "zapri";
Zapatec.Calendar._TT["TODAY"] = "danes";
Zapatec.Calendar._TT["TIME_PART"] = "(Shift-)klikni ali povleci za spremembo vrednosti";

// date formats
Zapatec.Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Zapatec.Calendar._TT["TT_DATE_FORMAT"] = "%A, %e. %B";

Zapatec.Calendar._TT["WK"] = "td";
Zapatec.Calendar._TT["TIME"] = "čas:";

Zapatec.Calendar._TT["E_RANGE"] = "izven obsega";

Zapatec.Calendar._TT._AMPM = {am : "am", pm : "pm"};

/* Preserve data */
if(Zapatec.Calendar._DN) Zapatec.Calendar._TT._DN = Zapatec.Calendar._DN;
if(Zapatec.Calendar._SDN) Zapatec.Calendar._TT._SDN = Zapatec.Calendar._SDN;
if(Zapatec.Calendar._SDN_len) Zapatec.Calendar._TT._SDN_len = Zapatec.Calendar._SDN_len;
if(Zapatec.Calendar._MN) Zapatec.Calendar._TT._MN = Zapatec.Calendar._MN;
if(Zapatec.Calendar._SMN) Zapatec.Calendar._TT._SMN = Zapatec.Calendar._SMN;
if(Zapatec.Calendar._SMN_len) Zapatec.Calendar._TT._SMN_len = Zapatec.Calendar._SMN_len;
Zapatec.Calendar._DN = Zapatec.Calendar._SDN = Zapatec.Calendar._SDN_len = Zapatec.Calendar._MN = Zapatec.Calendar._SMN = Zapatec.Calendar._SMN_len = null
