/* -------------------------------------------------------------------------- */
/*
   (c) 2006 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 "Wireless <i>MAX<\/i>g Template" 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 = "Wireless Router Bedienungsanleitung";


// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",				"Einführung",		"Einführung in den Router"),
									new MenuItem("features.html",			"Merkmale",			"Merkmale des Routers"),
									new MenuItem("warranty.html",			"Garantie",			"Begrenzte Garantie"),
									new MenuItem("copyright.html",			"Copyright",		"Copyright-Informationen"),
									new MenuItem("regulatory.html",			"Vorschriften",		"Informationen zu Vorschriften")
								);

var menuConfig = new Array(
									new MenuItem("con_intro.html",			"Einführung&nbsp;",				"Einführung in die Web-Benutzeroberfläche"),
									new MenuItem("con_wizard.html",			"Setup-Assistent&nbsp;",				"Verwenden des Setup Wizard (Setup-Assistent)"),
									new MenuItem("con_network.html",		"Einstellungen für das Heimnetzwerk&nbsp;",		"Einrichten des Netzwerks"),
									new MenuItem("con_security.html",		"Sicherheit&nbsp;",					"Einstellen und Gewährleisten der Sicherheit"),
									new MenuItem("con_advanced.html",		"Erweiterte Einstellungen&nbsp;",			"Advanced Settings (Erweiterte Einstellungen)")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.html",	"Fehlerbehebung",	"Tipps zur Fehlerbehebung"),
									new MenuItem("faq.html",				"FAQ",				"Häufig gestellte Fragen"),
									new MenuItem("support.html",			"Support",			"Technischer Support")
								);

var menuMain = new Array(
									new MenuItem("index.html",				"Startseite",				"Produktinformationen anzeigen",			menuHome),
									new MenuItem("install.html",			"Installation",		"Installation des Routers"			),
									new MenuItem("con_intro.html",			"Konfiguration",	"Konfigurieren des Routers",		menuConfig),
									new MenuItem("troubleshooting.html",	"Hilfe",				"Tipps zur Fehlerbehebung und häufig gestellte Fragen",	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.
*/
