/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2005 U.S. Robotics Corporation.
*/
/* -------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------

	Define the information for a single menu item (both main bar and sub-menu).
	Each menu item has an associated filename, title, and description.
	The title and description are translated, but not the filename.

*/

function MenuItem(strFilename, strTitle, strDescription, menuSub)
{
	this.strFilename = strFilename;
	this.strTitle = strTitle;
	this.strDescription = strDescription;
	this.menuSub = menuSub;
}


/* --------------------------------------------------------------------------

	These represent the various menus. There is a main menu bar and some sub-menus.

	The second and third strings in each item need to be translated.
	The first string is a filename and does not need to be translated.

	This is the only section that contains text to be translated.

	The tag below must not be modified. It is used by
	Translation to extract the text to be translated.
	*** TRANSLATION START -->
*/

/*
	The value of this variable is the title of each page, output by the script below.
	The product name "MAXg ADSL Gateway" is not translated,
	but the text "User Guide" is, and the arrangement of that text
	can be changed to suit the target language's grammar.
*/
var strTitle = "Manual do Utilizador do Wireless <i>MAX</i>g ADSL Gateway";

// N.B.: All filenames must be in lowercase here.

// IMPORTANT NOTE: In each of these array declarations, the last (non-commented) entry MUST NOT
// be followed by a comma. If the last one has a comma, none of the menus display.

var menuHome = new Array(
									new MenuItem("index.htm",				"Introdução",		"Introdução ao router"),
									new MenuItem("features.htm",			"Características",			"Funcionalidades do router"),
									new MenuItem("warranty.htm",			"Garantia",			"A garantia limitada"),
									new MenuItem("copyright.htm",			"Copyright",		"Informações sobre copyright"),
									new MenuItem("regulatory.htm",			"Regulamentos",		"Informação regulamentar")
								);

var menuInstall = new Array(
									new MenuItem("install.htm",				"Router",			"Procedimento de instalação do Dispositivo"),
									new MenuItem("install_printer.htm",		"Impressora",			"Instalar e partilhar uma impressora"),
									new MenuItem("connections.htm",			"Painel posterior",				"Ligações dos cabos"),
									new MenuItem("leds.htm",				"Frente",			"Descrições dos LEDs")
								);

var menuEC = new Array(
									new MenuItem("upgrade.htm",				"Actualizar",			"Como actualizar o EasyConfigurator"),
									new MenuItem("password.htm",			"Palabra-passe",			"Como mudar palavras-passe de conta"),
									new MenuItem("uninstal.htm",			"Desinstalar",		"Como desinstalar o EasyConfigurator")
								);

var menuWUI = new Array(
									new MenuItem("wui_login.htm",			"Iniciar sessão",			"Como iniciar a sessão na interface do Utilizador da Internet"),
									new MenuItem("quicksetup.htm",			"Configuração Rápida",		"Configurar o dispositivo"),
									new MenuItem("wui_status.htm",			"Estado",			"Informações sobre as páginas de estado do router"),
									new MenuItem("wui_internet.htm",		"Internet",			"Informações sobre as definições da Internet"),
									new MenuItem("wui_lan.htm",				"LAN",				"Informações sobre as definições da rede local"),
									new MenuItem("wui_wireless.htm",		"Sem fios",			"Informações sobre as definições de comunicação sem fios"),
									new MenuItem("wui_security.htm",		"Segurança",			"Informações sobre as definições de segurança"),
									new MenuItem("wui_device.htm",			"Dispositivo",			"Informações sobre as definições do dispositivo"),
									new MenuItem("appendix.htm",			"Apêndice",			"Informações sobre NAPT")
								);

var menuHelp = new Array(
									new MenuItem("tutorials.htm",			"Manuais",		"Como alcançar os seus objectivos"),
									new MenuItem("trouble.htm",				"Resolução de problemas",	"Informações sobre a resolução de problemas"),
									new MenuItem("support.htm",				"Suporte",			"Suporte técnico"),
									new MenuItem("glossary.htm",			"Glossário",			"Definições de termos")
								);

var menuMain = new Array(
									new MenuItem("index.htm",				"Página inicial",				"Ver informações sobre o produto",			menuHome),
									new MenuItem("install.htm",				"Instalação",		"Como instalar o router",		menuInstall),
									new MenuItem("upgrade.htm",				"EasyConfigurator",	"Utilizar o Utilitário EasyConfigurator",		menuEC),
									new MenuItem("wui_login.htm",			"Interface do Utilizador da Internet", "Utilizar a interface do Utilizador da Internet",	menuWUI),
									new MenuItem("tutorials.htm",			"Ajuda",				"Sugestões para a resolução de problemas e perguntas mais frequentes",	menuHelp)
								);

/*
	<-- TRANSLATION END ***
	Nothing after this needs to be translated.
	The above tag must not be modified. It is used by
	Translation to extract the text to be translated.
*/
