ï»¿// ** I18N

// Calendar SR language
// Author: Ivan Krstiæ, <ivan@riznica.net> <www.riznica.net>
// Encoding: any
// Distributed under the same terms as the calendar itself.

// full day names
Calendar._DN = new Array
("Nedelja",
 "Ponedeljak",
 "Utorak",
 "Sreda",
 "ÄŒetvrtak",
 "Petak",
 "Subota",
 "Nedelja");

// short day names
Calendar._SDN = new Array
("Ned",
 "Pon",
 "Uto",
 "Sri",
 "ÄŒet",
 "Pet",
 "Sub",
 "Ned");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Calendar._FD = 1;

// full month names
Calendar._MN = new Array
("januar",
 "februar",
 "mart",
 "april",
 "maj",
 "jun",
 "jul",
 "avgust",
 "septembar",
 "oktobar",
 "novembar",
 "decembar");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "Maj",
 "Jun",
 "Jul",
 "Avg",
 "Sep",
 "Okt",
 "Nov",
 "dec");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Info";

Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
"Za poslednju verziju posetite: http://www.dynarch.com/projects/calendar/\n" +
"Distribucija pod GNU LGPL.  Pogledajte http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Odabir datuma:\n" +
"- Koristite dugmad \xab, \xbb  da odaberete godinu\n" +
"- Koristite dugmad " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " za odabir meseca\n" +
"- Držite taster miša iznad bilo kojeg dugmeta iznad za brži odabir.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Odabir vremena:\n" +
"- Kliknite na bilo koji dio vremena da ga poveæate\n" +
"- ili Shift i klik da ga smanjite\n" +
"- ili kliknite i vucite za brÅ¾i izbor.";

Calendar._TT["PREV_YEAR"] = "Prethodna godina (drÅ¾ite za izbornik)";
Calendar._TT["PREV_MONTH"] = "Prethodni mesec (drÅ¾ite za izbornik)";
Calendar._TT["GO_TODAY"] = "Na Danas";
Calendar._TT["NEXT_MONTH"] = "SledeÄ‡e mesec (drÅ¾ite za izbornik)";
Calendar._TT["NEXT_YEAR"] = "SledeÄ‡a godina (drÅ¾ite za izbornik)";
Calendar._TT["SEL_DATE"] = "Odabir datuma";
Calendar._TT["DRAG_TO_MOVE"] = "Povucite na drugo mesto";
Calendar._TT["PART_TODAY"] = " (danas)";

// 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"] = "Prvo %s";

// 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["CLOSE"] = "Zatvori";
Calendar._TT["TODAY"] = "Danas";
Calendar._TT["TIME_PART"] = "(Shift-)klik ili vucite da promenite vrednost";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "Nd";
Calendar._TT["TIME"] = "Vreme:";

