	/******************************************************************
	JsWebGets - Web User Interface Library
	Copyright (C) 2006  Pablo Santiago Sánchez
	
	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License as published by the Free Software Foundation; either
	version 2.1 of the License, or (at your option) any later version.
	
	This library is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
	Lesser General Public License for more details.
	
	You should have received a copy of the GNU Lesser General Public
	License along with this library; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
	******************************************************************/	
	/********************************************************************************
	
	This has an array for the translation of widgets terms, like month or week days
	
	Currently supported languages are:
	"pt" = Português
	"en" = English
	"es" = Español
	
	If you wish to translate this to any other language, please send you contribution
	ro phackwer@gmail.com, so I include it in the default distribution
	
	********************************************************************************/

	translation = new Array();
	//Suporte para o Português, claro!
	translation["pt"] = new Array();
	translation["pt"]["month"] = new Array();
	translation["pt"]["month"][0] = "Janeiro";
	translation["pt"]["month"][1] = "Fevereiro";
	translation["pt"]["month"][2] = "Março";
	translation["pt"]["month"][3] = "Abril";
	translation["pt"]["month"][4] = "Maio";
	translation["pt"]["month"][5] = "Junho";
	translation["pt"]["month"][6] = "Julho";
	translation["pt"]["month"][7] = "Agosto";
	translation["pt"]["month"][8] = "Setembro";
	translation["pt"]["month"][9] = "Outubro";
	translation["pt"]["month"][10] = "Novembro";
	translation["pt"]["month"][11] = "Dezembro";

	translation["pt"]["week"] = new Array();
	translation["pt"]["week"][0] = "Domingo";
	translation["pt"]["week"][1] = "Segunda";
	translation["pt"]["week"][2] = "Terça";
	translation["pt"]["week"][3] = "Quarta";
	translation["pt"]["week"][4] = "Quinta";
	translation["pt"]["week"][5] = "Sexta";
	translation["pt"]["week"][6] = "Sábado";

	translation["pt"]["week_abreviation"] = new Array();
	translation["pt"]["week_abreviation"][0] = "D";
	translation["pt"]["week_abreviation"][1] = "S";
	translation["pt"]["week_abreviation"][2] = "T";
	translation["pt"]["week_abreviation"][3] = "Q";
	translation["pt"]["week_abreviation"][4] = "Q";
	translation["pt"]["week_abreviation"][5] = "S";
	translation["pt"]["week_abreviation"][6] = "S";
	
	translation["pt"]["error"] = new Array();
	translation["pt"]["error"][0] = "Houve um erro ao tentar recuperar os dados XML:";
	translation["pt"]["error"][1] = "CNPJ Inválido";
	translation["pt"]["error"][2] = "CPF Inválido";
	translation["pt"]["error"][3] = "Data Inválida";
	translation["pt"]["error"][4] = "IP Inválido";
	translation["pt"]["error"][5] = "Largura menor que o mínimo possivel para este tipo de objeto";
	translation["pt"]["error"][6] = "Atributos inválidos";
	translation["pt"]["error"][7] = "URL vazia";
	translation["pt"]["error"][8] = "Hora Inválida";
	translation["pt"]["error"][9] = "Atenção! Enviando arquivo. Esta operação pode demorar\nalguns instantes, dependendo do tamanho do arquivo.";
	translation["pt"]["error"][10] = "Já existe um objeto com o nome: ";
	translation["pt"]["error"][11] = "Você não pode soltar este(s) objeto(s) aqui.";
	translation["pt"]["error"][12] = "Houve um erro ao tentar recuperar os dados Javascript:";
	
	translation["pt"]["richtexteditor"] = new Array();
	translation["pt"]["richtexteditor"][0] = "[Estilo]";
	translation["pt"]["richtexteditor"][1] = "Parágrafo";
	translation["pt"]["richtexteditor"][2] = "Cabeçalho 1";
	translation["pt"]["richtexteditor"][3] = "Cabeçalho 2";
	translation["pt"]["richtexteditor"][4] = "Cabeçalho 3";
	translation["pt"]["richtexteditor"][5] = "Cabeçalho 4";
	translation["pt"]["richtexteditor"][6] = "Cabeçalho 5";
	translation["pt"]["richtexteditor"][7] = "Cabeçalho 6";
	translation["pt"]["richtexteditor"][8] = "Endereço";
	translation["pt"]["richtexteditor"][9] = "Formatado";
	translation["pt"]["richtexteditor"][10] = "[Tipo de Fonte]";
	translation["pt"]["richtexteditor"][11] = "[Tamanho da Fonte]";
	translation["pt"]["richtexteditor"][12] = "Cancelar";
	translation["pt"]["richtexteditor"][13] = "Construtor de Links";
	translation["pt"]["richtexteditor"][14] = "URL:";
	translation["pt"]["richtexteditor"][15] = "Texto:";
	translation["pt"]["richtexteditor"][16] = "Construtor de Tabelas";
	translation["pt"]["richtexteditor"][17] = "Largura:";
	translation["pt"]["richtexteditor"][18] = "Borda:";
	translation["pt"]["richtexteditor"][19] = "Linhas:";
	translation["pt"]["richtexteditor"][20] = "Colunas:";
	translation["pt"]["richtexteditor"][21] = "Padding:";
	translation["pt"]["richtexteditor"][22] = "Spacing:";

	//Suporte para el español
	translation["es"] = new Array();
	translation["es"]["month"] = new Array();
	translation["es"]["month"][0] = "Enero";
	translation["es"]["month"][1] = "Febrero";
	translation["es"]["month"][2] = "Marzo";
	translation["es"]["month"][3] = "Abril";
	translation["es"]["month"][4] = "Mayo";
	translation["es"]["month"][5] = "Juño";
	translation["es"]["month"][6] = "Julio";
	translation["es"]["month"][7] = "Agosto";
	translation["es"]["month"][8] = "Septiembre";
	translation["es"]["month"][9] = "Octubre";
	translation["es"]["month"][10] = "Noviembre";
	translation["es"]["month"][11] = "Diciembre";

	translation["es"]["week"] = new Array();
	translation["es"]["week"][0] = "Domingo";
	translation["es"]["week"][1] = "Lunes";
	translation["es"]["week"][2] = "Martes";
	translation["es"]["week"][3] = "Miercoles";
	translation["es"]["week"][4] = "Jueves";
	translation["es"]["week"][5] = "Viernes";
	translation["es"]["week"][6] = "Sabado";

	translation["es"]["week_abreviation"] = new Array();
	translation["es"]["week_abreviation"][0] = "D";
	translation["es"]["week_abreviation"][1] = "L";
	translation["es"]["week_abreviation"][2] = "M";
	translation["es"]["week_abreviation"][3] = "M";
	translation["es"]["week_abreviation"][4] = "J";
	translation["es"]["week_abreviation"][5] = "V";
	translation["es"]["week_abreviation"][6] = "S";
	
	translation["es"]["error"] = new Array();
	translation["es"]["error"][0] = "Ocurrio un error al tentar leer los datos XML:";
	translation["es"]["error"][1] = "CNPJ Inválido";
	translation["es"]["error"][2] = "CPF Inválido";
	translation["es"]["error"][3] = "Fecha Inválida";
	translation["es"]["error"][4] = "IP Inválido";
	translation["es"]["error"][5] = "Largura menor que lo mínimo possible para este tipo de objeto";
	translation["es"]["error"][6] = "Atributos inválidos";
	translation["es"]["error"][7] = "URL vazia";
	translation["es"]["error"][8] = "Hora Inválida";
	translation["es"]["error"][9] = "Atención! Enviando fichero. Esta operación puede llevar algunos instantes.";
	translation["es"]["error"][10] = "Ya existe um objecto com el nombre: ";
	translation["es"]["error"][11] = "No podes soltar este(s) objecto(s) aqui.";
	translation["es"]["error"][12] = "Ocurrio un error al tentar leer los datos Javascript:";
	
	translation["es"]["richtexteditor"] = new Array();
	translation["es"]["richtexteditor"][0] = "[Estilo]";
	translation["es"]["richtexteditor"][1] = "Parágrafo";
	translation["es"]["richtexteditor"][2] = "Cabeza 1";
	translation["es"]["richtexteditor"][3] = "Cabeza 2";
	translation["es"]["richtexteditor"][4] = "Cabeza 3";
	translation["es"]["richtexteditor"][5] = "Cabeza 4";
	translation["es"]["richtexteditor"][6] = "Cabeza 5";
	translation["es"]["richtexteditor"][7] = "Cabeza 6";
	translation["es"]["richtexteditor"][8] = "Dirección";
	translation["es"]["richtexteditor"][9] = "Formatado";
	translation["es"]["richtexteditor"][10] = "[Tipo de Fuente]";
	translation["es"]["richtexteditor"][11] = "[Tamaño da Fuente]";
	translation["es"]["richtexteditor"][12] = "Cancelar";
	translation["es"]["richtexteditor"][13] = "Constructor de Links";
	translation["es"]["richtexteditor"][14] = "URL:";
	translation["es"]["richtexteditor"][15] = "Texto:";
	translation["es"]["richtexteditor"][16] = "Constructor de Tabelas";
	translation["es"]["richtexteditor"][17] = "Largura:";
	translation["es"]["richtexteditor"][18] = "Borde:";
	translation["es"]["richtexteditor"][19] = "Líneas:";
	translation["es"]["richtexteditor"][20] = "Columnas:";
	translation["es"]["richtexteditor"][21] = "Padding:";
	translation["es"]["richtexteditor"][22] = "Spacing:";

	//Now, bloody english just because more people know it than the above >:-/

	translation["en"] = new Array();
	translation["en"]["month"] = new Array();
	translation["en"]["month"][0] = "January";
	translation["en"]["month"][1] = "February";
	translation["en"]["month"][2] = "March";
	translation["en"]["month"][3] = "April";
	translation["en"]["month"][4] = "May";
	translation["en"]["month"][5] = "June";
	translation["en"]["month"][6] = "July";
	translation["en"]["month"][7] = "August";
	translation["en"]["month"][8] = "September";
	translation["en"]["month"][9] = "October";
	translation["en"]["month"][10] = "November";
	translation["en"]["month"][11] = "December";

	translation["en"]["week"] = new Array();
	translation["en"]["week"][0] = "Sunday";
	translation["en"]["week"][1] = "Monday";
	translation["en"]["week"][2] = "Tuesday";
	translation["en"]["week"][3] = "Wednesday";
	translation["en"]["week"][4] = "Thursday";
	translation["en"]["week"][5] = "Friday";
	translation["en"]["week"][6] = "Saturday";

	translation["en"]["week_abreviation"] = new Array();
	translation["en"]["week_abreviation"][0] = "S";
	translation["en"]["week_abreviation"][1] = "M";
	translation["en"]["week_abreviation"][2] = "T";
	translation["en"]["week_abreviation"][3] = "W";
	translation["en"]["week_abreviation"][4] = "T";
	translation["en"]["week_abreviation"][5] = "F";
	translation["en"]["week_abreviation"][6] = "S";
	
	translation["en"]["error"] = new Array();
	translation["en"]["error"][0] = "There was a problem retrieving the XML data:";
	translation["en"]["error"][1] = "Invalid CNPJ";
	translation["en"]["error"][2] = "Invalid CPF";
	translation["en"]["error"][3] = "Invalid date";
	translation["en"]["error"][4] = "Invalid IP";
	translation["en"]["error"][5] = "Width smaller than the minimum allowed for this kind of object";
	translation["en"]["error"][6] = "Invalid attributes";
	translation["en"]["error"][7] = "Empty URL";
	translation["en"]["error"][8] = "Invalid Time";
	translation["en"]["error"][9] = "Atention! Sending file. This operation may take some time.";
	translation["en"]["error"][10] = "There is already an object named: ";
	translation["en"]["error"][11] = "You can't drop it here.";
	translation["en"]["error"][12] = "There was a problem retrieving the Javascript data:";
	
	translation["en"]["richtexteditor"] = new Array();
	translation["en"]["richtexteditor"][0] = "[Font Style]";
	translation["en"]["richtexteditor"][1] = "Paragraph";
	translation["en"]["richtexteditor"][2] = "Heading 1";
	translation["en"]["richtexteditor"][3] = "Heading 2";
	translation["en"]["richtexteditor"][4] = "Heading 3";
	translation["en"]["richtexteditor"][5] = "Heading 4";
	translation["en"]["richtexteditor"][6] = "Heading 5";
	translation["en"]["richtexteditor"][7] = "Heading 6";
	translation["en"]["richtexteditor"][8] = "Address";
	translation["en"]["richtexteditor"][9] = "Formatted";
	translation["en"]["richtexteditor"][10] = "[Font Type]";
	translation["en"]["richtexteditor"][11] = "[Font Size]";
	translation["en"]["richtexteditor"][12] = "Cancel";
	translation["en"]["richtexteditor"][13] = "Link Builder";
	translation["en"]["richtexteditor"][14] = "URL:";
	translation["en"]["richtexteditor"][15] = "Text:";
	translation["en"]["richtexteditor"][16] = "Table Builder";
	translation["en"]["richtexteditor"][17] = "Width(px):";
	translation["en"]["richtexteditor"][18] = "Border:";
	translation["en"]["richtexteditor"][19] = "Rows:";
	translation["en"]["richtexteditor"][20] = "Columns:";
	translation["en"]["richtexteditor"][21] = "Padding:";
	translation["en"]["richtexteditor"][22] = "Spacing:";
