/* -------------------------------------------------------------------------- */
/*
   (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 "Broadband Router with USB Print Server" 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 = "Broadband Router mit USB Print Server &ndash; Benutzerhandbuch";

// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("warranty.html",				"Garantie",			"Begrenzte Garantie"),
									new MenuItem("regulatory.html",				"Vorschriften",		"Informationen zu Vorschriften")
								);

var menuInstall = new Array(
									new MenuItem("broadband.html",				"Breitband-Modem",			"Installation des Routers"),
									new MenuItem("analog_isdn.html",			"Analog-&nbsp;oder&nbsp;ISDN-&nbsp;Modem",	"Installation des Routers"),
									new MenuItem("printer.html",				"Printer",					"Installation eines Netzwerk-USB-Druckers")
								);


var menuConfig = new Array(
									new MenuItem("configuration.html",			"Warum&nbsp;neu&nbsp;konfigurieren?",		"Gründe für die Neukonfiguration des Routers"),
									new MenuItem("login.html",					"Anmeldung",				"Anweisungen zum Starten und Anmelden"),
									new MenuItem("status.html",					"Status",				"Informationen zur Seite &quot;Status&quot; des Routers"),
									new MenuItem("basic_setting.html",			"Basic&nbsp;Setting (Grundeinstellung)",		"Informationen zur Seite &quot;Basic Setting&quot; (Grundeinstellung) des Routers"),
									new MenuItem("forwarding_rules.html",		"Forwarding&nbsp;Rules (Weiterleitungsregeln)",		"Informationen zur Seite &quot;Forwarding Rules&quot; (Weiterleitungsregeln) des Routers"),
									new MenuItem("security_setting.html",		"Security&nbsp;Setting (Sicherheitseinstellung)",		"Informationen zur Seite &quot;Security Setting&quot; (Sicherheitseinstellung) des Routers"),
									new MenuItem("advanced_setting.html",		"Advanced&nbsp;Setting (Erweiterte Einstellung)",		"Informationen zur Seite &quot;Advanced Setting&quot; (Erweiterte Einstellung) des Routers"),
									new MenuItem("toolbox.html",				"Toolbox (Tools)",				"Informationen zur Seite &quot;Toolbox&quot; (Tools) des Routers")
								);

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",					"Einführung",			"Produktinformationen anzeigen",			menuHome),
									new MenuItem("broadband.html",				"Installation",			"Installation des Routers",		menuInstall),
									new MenuItem("configuration.html",			"Konfiguration",		"Konfiguration 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.
*/
