// ** I18N

// Calendar PT language

// full day names
Redicom.Calendar._DN = new Array
("Domingo",
 "Segunda",
 "Terca",
 "Quarta",
 "Quinta",
 "Sexta",
 "Sabado",
 "Domingo");

// Please note that the following array of short day names (and the same goes
// for short month names, _SMN) isn't absolutely necessary.  We give it here
// for exemplification on how one can customize the short day names, but if
// they are simply the first N letters of the full name you can simply say:
//
//   Redicom.Calendar._SDN_len = N; // short day name length
//   Redicom.Calendar._SMN_len = N; // short month name length
//
// If N = 3 then this is not needed either since we assume a value of 3 if not
// present, to be compatible with translation files that were written before
// this feature.

// short day names
Redicom.Calendar._SDN = new Array
("Dom",
 "Seg",
 "Ter",
 "Qua",
 "Qui",
 "Sex",
 "Sab",
 "Dom");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Redicom.Calendar._FD = 0;

// full month names
Redicom.Calendar._MN = new Array
("Janeiro",
 "Fevereiro",
 "Marco",
 "Abril",
 "Maio",
 "Junho",
 "Julho",
 "Agosto",
 "Setembro",
 "Outubro",
 "Novembro",
 "Dezembro");

// short month names
Redicom.Calendar._SMN = new Array
("Jan",
 "Fev",
 "Mar",
 "Abr",
 "Mai",
 "Jun",
 "Jul",
 "Ago",
 "Set",
 "Out",
 "Nov",
 "Dez");

// tooltips
Redicom.Calendar._TT_en = Redicom.Calendar._TT = {};
Redicom.Calendar._TT["INFO"] = "Redicom DHTML Data/Hora";

Redicom.Calendar._TT["ABOUT"] =
"DHTML Data/Hora Redicom\n" +
"(c) redicom.com 2004-2005\n\n Visite o site: http://www.redicom.pt/";

Redicom.Calendar._TT["ABOUT_TIME"] = " ";

Redicom.Calendar._TT["PREV_YEAR"] = "Ano Anterior";
Redicom.Calendar._TT["PREV_MONTH"] = "Mes Anterior";
Redicom.Calendar._TT["GO_TODAY"] = "Ver Hoje";
Redicom.Calendar._TT["NEXT_MONTH"] = "Proximo Mes";
Redicom.Calendar._TT["NEXT_YEAR"] = "Proximo Ano";
Redicom.Calendar._TT["SEL_DATE"] = "Selecione uma data";
Redicom.Calendar._TT["DRAG_TO_MOVE"] = "Pressione para mover";
Redicom.Calendar._TT["PART_TODAY"] = " (Hoje)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Redicom.Calendar._TT["DAY_FIRST"] = "Display %s first";

// 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.
Redicom.Calendar._TT["WEEKEND"] = "0,6";

Redicom.Calendar._TT["CLOSE"] = "Fechar";
Redicom.Calendar._TT["TODAY"] = "Hoje";
Redicom.Calendar._TT["TIME_PART"] = "(Shift-)Pressione para mudar o valor";

// date formats
Redicom.Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Redicom.Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Redicom.Calendar._TT["WK"] = " ";
Redicom.Calendar._TT["TIME"] = "Hora:";

Redicom.Calendar._TT["E_RANGE"] = "Fora do Limite";

/* Preserve data */
	if(Redicom.Calendar._DN) Redicom.Calendar._TT._DN = Redicom.Calendar._DN;
	if(Redicom.Calendar._SDN) Redicom.Calendar._TT._SDN = Redicom.Calendar._SDN;
	if(Redicom.Calendar._SDN_len) Redicom.Calendar._TT._SDN_len = Redicom.Calendar._SDN_len;
	if(Redicom.Calendar._MN) Redicom.Calendar._TT._MN = Redicom.Calendar._MN;
	if(Redicom.Calendar._SMN) Redicom.Calendar._TT._SMN = Redicom.Calendar._SMN;
	if(Redicom.Calendar._SMN_len) Redicom.Calendar._TT._SMN_len = Redicom.Calendar._SMN_len;
	Redicom.Calendar._DN = Redicom.Calendar._SDN = Redicom.Calendar._SDN_len = Redicom.Calendar._MN = Redicom.Calendar._SMN = Redicom.Calendar._SMN_len = null