/* -------------------------------------------------------------------------- */
/*
   (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 = "Wireless <i>MAX</i>g ADSL Gateway Kullanıcı Kılavuzu";

// 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",				"Giriş",		"Router'a giriş"),
									new MenuItem("features.htm",			"Özellikler",			"Router'ın özelliklerir"),
									new MenuItem("warranty.htm",			"Garanti",			"Sınırlı garanti"),
									new MenuItem("copyright.htm",			"Telif hakkı",		"Telif hakkı bilgileri"),
									new MenuItem("regulatory.htm",			"Yasal bilgiler",		"Yasal bilgiler")
								);

var menuInstall = new Array(
									new MenuItem("install.htm",				"Router",			"Cihaz kurulum yordamı"),
									new MenuItem("install_printer.htm",		"Yazıcı",			"Bir yazıcının kurulması ve paylaştırılması"),
									new MenuItem("connections.htm",			"Arka",				"Kablo bağlantıları"),
									new MenuItem("leds.htm",				"Ön",			"LED'ler hakkında açıklamalar")
								);

var menuEC = new Array(
									new MenuItem("upgrade.htm",				"Güncelleme",			"EasyConfigurator nasıl güncellenir"),
									new MenuItem("password.htm",			"Şifre",			"Hesap parolaları nasıl değiştirilir"),
									new MenuItem("uninstal.htm",			"Kurulumun kaldırılması",		"EasyConfigurator kurulumu nasıl kaldırılır")
								);

var menuWUI = new Array(
									new MenuItem("wui_login.htm",			"Oturum Açmak",			"İnternet Kullanıcı arayüzüne nasıl oturum açılır"),
									new MenuItem("quicksetup.htm",			"Hızlı Kurulum",		"Cihazın ayarlanması"),
									new MenuItem("wui_status.htm",			"Durum",			"Router durum sayfaları hakkında bilgiler"),
									new MenuItem("wui_internet.htm",		"İnternet",			"İnternet ayarları hakkında bilgiler"),
									new MenuItem("wui_lan.htm",				"LAN",				"Yerel ağ ayarları hakkında bilgiler"),
									new MenuItem("wui_wireless.htm",		"Kablosuz",			"Kablosuz iletişim ayarları hakkında bilgiler"),
									new MenuItem("wui_security.htm",		"Güvenlik",			"Güvenlik ayarları hakkında bilgiler"),
									new MenuItem("wui_device.htm",			"Cihaz",			"Cihaz ayarları hakkında bilgiler"),
									new MenuItem("appendix.htm",			"Ek",			"NAPT bilgileri")
								);

var menuHelp = new Array(
									new MenuItem("tutorials.htm",			"Kılavuzlar",		"Hedeflere ulaşmak"),
									new MenuItem("trouble.htm",				"Sorun Giderme",	"Sorunların çözümü hakkında bilgiler"),
									new MenuItem("support.htm",				"Destek",			"Teknik destek"),
									new MenuItem("glossary.htm",			"Sözlük",			"Terimlerin açıklamaları")
								);

var menuMain = new Array(
									new MenuItem("index.htm",				"Ana sayfa",				"Ürün bilgilerini görüntüle",			menuHome),
									new MenuItem("install.htm",				"Kurulum",		"Router'ın kurulumur",		menuInstall),
									new MenuItem("upgrade.htm",				"EasyConfigurator",	"EasyConfigurator yardımcı programının kullanılması",		menuEC),
									new MenuItem("wui_login.htm",			"İnternet Kullanıcı arayüzü", "İnternet Kullanıcı Arayüzünün kullanılması",	menuWUI),
									new MenuItem("tutorials.htm",			"Yardım",				"Sorun giderme ipuçları ve SSS",	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.
*/
