/* -------------------------------------------------------------------------- */
/*
   (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 "ADSL 4-Port Router" 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 = "Guide de l'utilisateur du routeur ADSL 4-Port Router";

// 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",				"Introduction",		"Introduction au routeur"),
									new MenuItem("features.htm",			"Caractéristiques",			"Fonctionnalités du routeur"),
									new MenuItem("warranty.htm",			"Garantie",			"La garantie limitée"),
									new MenuItem("copyright.htm",			"Copyright",		"Informations sur le copyright"),
									new MenuItem("regulatory.htm",			"Réglementation",		"Informations légales")
								);

var menuInstall = new Array(
									new MenuItem("install.htm",				"Routeur",			"Procédure d'installation du routeur"),
									new MenuItem("install_printer.htm",		"Imprimante",			"Installation et partage d'une imprimante"),
									new MenuItem("connections.htm",			"Face arrière",				"Connexion des câbles"),
									new MenuItem("leds.htm",				"Face avant",			"Description des voyants DEL")
								);

var menuEC = new Array(
									new MenuItem("upgrade.htm",				"Mise à niveau",			"Comment mettre à jour EasyConfigurator"),
									new MenuItem("password.htm",			"Mot de passe",			"Comment modifier les mots de passe"),
									new MenuItem("uninstal.htm",			"Désinstallation",		"Comment désinstaller EasyConfigurator")
								);

var menuWUI = new Array(
									new MenuItem("wui_login.htm",			"Connexion",			"Comment se connecter à l'interface utilisateur Web"),
									new MenuItem("quicksetup.htm",			"Configuration rapide",		"Configuration du périphérique"),
									new MenuItem("wui_status.htm",			"Statut",			"Informations sur les pages de statut du routeur"),
									new MenuItem("wui_internet.htm",		"Internet",			"Informations sur les paramètres Internet"),
									new MenuItem("wui_lan.htm",				"LAN",				"Informations sur les paramètres du réseau local"),
									new MenuItem("wui_security.htm",		"Sécurité",			"Informations sur les paramètres de sécurité"),
									new MenuItem("wui_device.htm",			"Périphérique",			"Informations sur les paramètres du périphérique"),
									new MenuItem("appendix.htm",			"Annexe",			"Informations NAPT")
								);

var menuHelp = new Array(
									new MenuItem("tutorials.htm",			"Didacticiels",		"Comment atteindre vos objectifs"),
									new MenuItem("trouble.htm",				"Dépannage",	"Informations sur la résolution des problèmes"),
									new MenuItem("support.htm",				"Assistance",			"Assistance technique"),
									new MenuItem("glossary.htm",			"Glossaire",			"Définitions de termes")
								);

var menuMain = new Array(
									new MenuItem("index.htm",				"Accueil",				"Informations sur le produit",			menuHome),
									new MenuItem("install.htm",				"Installation",		"Comment installer le routeur",		menuInstall),
									new MenuItem("upgrade.htm",				"EasyConfigurator",	"Utilisation d'EasyConfigurator",		menuEC),
									new MenuItem("wui_login.htm",			"Interface utilisateur Web", "Utilisation de l'interface utilisateur Web",	menuWUI),
									new MenuItem("tutorials.htm",			"Aide",				"Conseils de dépannage et FAQ",	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.
*/
