/* -------------------------------------------------------------------------- */
/*
   (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 "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 = "ADSL2+ Ethernet/USB Router Kullanım Kılavuzu";


// N.B.: All filenames must be in lowercase here.

var menuHome = new Array(
									new MenuItem("index.html",				"Giriş",		"Router'a giriş"),
									new MenuItem("warranty.html",			"Garanti",			"Sınırlı garanti"),
									new MenuItem("copyright.html",			"Telif Hakkı",		"Telif Hakkı bilgileri"),
									new MenuItem("regulatory.html",			"Yasal bilgiler",		"Yasal bilgiler")
								);

var menuInstall = new Array(
									new MenuItem("install.htm",			"Kurulum",			"Router'ın kurulumu"),
									new MenuItem("paramnl.htm",		"Ülke ya da İSS Listede Yok",	"Parametre Ayarları - Listede Yer Almayan Ülke veya İSS")
								);


var menuUtility = new Array(
									new MenuItem("config-1.htm",				"Oturum Açmak",			"Router konfigürasyonu hakkındaki bilgiler"),
									new MenuItem("setup_wizard.htm",			"SETUP WIZARD (KURULUM SİHİRBAZI)",			"Kurulum Sihirbazının kullanımı hakkında bilgiler"),
									new MenuItem("config.htm",				"Advanced Setup (Gelişmiş Kurulum)",			"Router konfigürasyonu hakkındaki bilgiler"),
									new MenuItem("status.htm",				"STATUS (DURUM)",			"Router'ın Durum sayfasındaki bilgiler"),
									new MenuItem("system.htm",				"SYSTEM",			"Router cihazının Sistem ayarları hakkında bilgiler"),
									new MenuItem("wan.htm",				"WAN",				"Router cihazının WAN ayarları hakkında bilgiler"),
									new MenuItem("lan.htm",					"LAN",				"Router cihazının LAN ayarları hakkında bilgiler"),
									new MenuItem("nat.htm",					"NAT",				"Router cihazının NAT ayarları hakkında bilgiler"),
									new MenuItem("routing.htm",				"ROUTING (YÖNLENDİRME)",			"Router cihazının Yönlendirme ayarları hakkında bilgiler"),
									new MenuItem("firewall.htm",			"FIREWALL (GÜVENLİK DUVARI)",			"Router cihazının Güvenlik Duvarı ayarları hakkında bilgiler"),
									new MenuItem("upnp.htm",				"UPnP",				"Router cihazının UPnP ayarları hakkında bilgiler"),
									new MenuItem("adsl.htm",				"ADSL",				"Router cihazının ADSL ayarları hakkında bilgiler"),
									new MenuItem("ddns.htm",				"DDNS",				"Router cihazının DDNS ayarları hakkında bilgiler"),
									new MenuItem("tools.htm",				"TOOLS (ARAÇLAR)",			"Router cihazının Araçlar ayarları hakkında bilgiler")
								);

var menuHelp = new Array(
									new MenuItem("troubleshooting.htm",	"Sorun Giderme",	"Sorunların çözülmesi hakkında bilgiler"),
									new MenuItem("faq.html",				"SSS",				"Sık sorulan sorular"),
									new MenuItem("support.html",			"Destek",			"Teknik destek")
								);

var menuMain = new Array(
									new MenuItem("index.html",				"Ana Sayfa",				"Ürün bilgilerini görüntüleme",			menuHome),
									new MenuItem("install.htm",			"Kurulum",		"Router'ın kurulumu",		menuInstall),
									new MenuItem("config-1.htm",				"Konfigürasyon",	"Router'ın konfigürasyonu",		menuUtility),
									new MenuItem("troubleshooting.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.
*/
