/** * List compiled by mystix on the extjs.com forums. * Thank you Mystix! * * English Translations * updated to 2.2 by Condor (8 Aug 2008) */ Ext.onReady(function() { var cm = Ext.ClassManager, exists = Ext.Function.bind(cm.get, cm); if (Ext.Updater) { Ext.Updater.defaults.indicatorText = '
Loading...
'; } if (exists('Ext.data.Types')) { Ext.data.Types.stripRe = /[\$,%]/g; } Ext.define("Ext.locale.en.view.View", { override: "Ext.view.View", emptyText: "" }); Ext.define("Ext.locale.en.grid.plugin.DragDrop", { override: "Ext.grid.plugin.DragDrop", dragText: "{0} selected row{1}" }); // changing the msg text below will affect the LoadMask Ext.define("Ext.locale.en.view.AbstractView", { override: "Ext.view.AbstractView", msg: "Loading...", loadingText: "Loading..." }); if (Ext.Date) { Ext.Date.monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; Ext.Date.getShortMonthName = function(month) { return Ext.Date.monthNames[month].substring(0, 3); }; Ext.Date.monthNumbers = { Jan: 0, Feb: 1, Mar: 2, Apr: 3, May: 4, Jun: 5, Jul: 6, Aug: 7, Sep: 8, Oct: 9, Nov: 10, Dec: 11 }; Ext.Date.getMonthNumber = function(name) { return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()]; }; Ext.Date.dayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; Ext.Date.getShortDayName = function(day) { return Ext.Date.dayNames[day].substring(0, 3); }; Ext.Date.parseCodes.S.s = "(?:st|nd|rd|th)"; } if (Ext.MessageBox) { Ext.MessageBox.buttonText = { ok: "OK", cancel: "Cancel", yes: "Yes", no: "No" }; } if (exists('Ext.util.Format')) { Ext.apply(Ext.util.Format, { thousandSeparator: ',', decimalSeparator: '.', currencySign: '$', dateFormat: 'm/d/Y' }); } Ext.define("Ext.locale.en.picker.Date", { override: "Ext.picker.Date", todayText: "Today", minText: "This date is before the minimum date", maxText: "This date is after the maximum date", disabledDaysText: "", disabledDatesText: "", monthNames: Ext.Date.monthNames, dayNames: Ext.Date.dayNames, nextText: 'Next Month (Control+Right)', prevText: 'Previous Month (Control+Left)', monthYearText: 'Choose a month (Control+Up/Down to move years)', todayTip: "{0} (Spacebar)", format: "m/d/y", startDay: 0 }); Ext.define("Ext.locale.en.picker.Month", { override: "Ext.picker.Month", okText: " OK ", cancelText: "Cancel" }); Ext.define("Ext.locale.en.toolbar.Paging", { override: "Ext.PagingToolbar", beforePageText: "Page", afterPageText: "of {0}", firstText: "First Page", prevText: "Previous Page", nextText: "Next Page", lastText: "Last Page", refreshText: "Refresh", displayMsg: "Displaying {0} - {1} of {2}", emptyMsg: 'No data to display' }); Ext.define("Ext.locale.en.form.Basic", { override: "Ext.form.Basic", waitTitle: "Please Wait..." }); Ext.define("Ext.locale.en.form.field.Base", { override: "Ext.form.field.Base", invalidText: "The value in this field is invalid" }); Ext.define("Ext.locale.en.form.field.Text", { override: "Ext.form.field.Text", minLengthText: "The minimum length for this field is {0}", maxLengthText: "The maximum length for this field is {0}", blankText: "This field is required", regexText: "", emptyText: null }); Ext.define("Ext.locale.en.form.field.Number", { override: "Ext.form.field.Number", decimalSeparator: ".", decimalPrecision: 2, minText: "The minimum value for this field is {0}", maxText: "The maximum value for this field is {0}", nanText: "{0} is not a valid number" }); Ext.define("Ext.locale.en.form.field.Date", { override: "Ext.form.field.Date", disabledDaysText: "Disabled", disabledDatesText: "Disabled", minText: "The date in this field must be after {0}", maxText: "The date in this field must be before {0}", invalidText: "{0} is not a valid date - it must be in the format {1}", format: "m/d/y", altFormats: "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d" }); Ext.define("Ext.locale.en.form.field.ComboBox", { override: "Ext.form.field.ComboBox", valueNotFoundText: undefined }, function() { Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, { loadingText: "Loading..." }); }); if (exists('Ext.form.field.VTypes')) { Ext.apply(Ext.form.field.VTypes, { emailText: 'This field should be an e-mail address in the format "user@example.com"', urlText: 'This field should be a URL in the format "http:/' + '/www.example.com"', alphaText: 'This field should only contain letters and _', alphanumText: 'This field should only contain letters, numbers and _' }); } Ext.define("Ext.locale.en.form.field.HtmlEditor", { override: "Ext.form.field.HtmlEditor", createLinkText: 'Please enter the URL for the link:' }, function() { Ext.apply(Ext.form.field.HtmlEditor.prototype, { buttonTips: { bold: { title: 'Bold (Ctrl+B)', text: 'Make the selected text bold.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, italic: { title: 'Italic (Ctrl+I)', text: 'Make the selected text italic.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, underline: { title: 'Underline (Ctrl+U)', text: 'Underline the selected text.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, increasefontsize: { title: 'Grow Text', text: 'Increase the font size.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, decreasefontsize: { title: 'Shrink Text', text: 'Decrease the font size.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, backcolor: { title: 'Text Highlight Color', text: 'Change the background color of the selected text.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, forecolor: { title: 'Font Color', text: 'Change the color of the selected text.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, justifyleft: { title: 'Align Text Left', text: 'Align text to the left.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, justifycenter: { title: 'Center Text', text: 'Center text in the editor.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, justifyright: { title: 'Align Text Right', text: 'Align text to the right.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, insertunorderedlist: { title: 'Bullet List', text: 'Start a bulleted list.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, insertorderedlist: { title: 'Numbered List', text: 'Start a numbered list.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, createlink: { title: 'Hyperlink', text: 'Make the selected text a hyperlink.', cls: Ext.baseCSSPrefix + 'html-editor-tip' }, sourceedit: { title: 'Source Edit', text: 'Switch to source editing mode.', cls: Ext.baseCSSPrefix + 'html-editor-tip' } } }); }); Ext.define("Ext.locale.en.grid.header.Container", { override: "Ext.grid.header.Container", sortAscText: "Sort Ascending", sortDescText: "Sort Descending", columnsText: "Columns" }); Ext.define("Ext.locale.en.grid.GroupingFeature", { override: "Ext.grid.GroupingFeature", emptyGroupText: '(None)', groupByText: 'Group By This Field', showGroupsText: 'Show in Groups' }); Ext.define("Ext.locale.en.grid.PropertyColumnModel", { override: "Ext.grid.PropertyColumnModel", nameText: "Name", valueText: "Value", dateFormat: "m/j/Y", trueText: "true", falseText: "false" }); Ext.define("Ext.locale.en.grid.BooleanColumn", { override: "Ext.grid.BooleanColumn", trueText: "true", falseText: "false", undefinedText: ' ' }); Ext.define("Ext.locale.en.grid.NumberColumn", { override: "Ext.grid.NumberColumn", format: '0,000.00' }); Ext.define("Ext.locale.en.grid.DateColumn", { override: "Ext.grid.DateColumn", format: 'm/d/Y' }); Ext.define("Ext.locale.en.form.field.Time", { override: "Ext.form.field.Time", minText: "The time in this field must be equal to or after {0}", maxText: "The time in this field must be equal to or before {0}", invalidText: "{0} is not a valid time", format: "g:i A", altFormats: "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H" }); Ext.define("Ext.locale.en.form.CheckboxGroup", { override: "Ext.form.CheckboxGroup", blankText: "You must select at least one item in this group" }); Ext.define("Ext.locale.en.form.RadioGroup", { override: "Ext.form.RadioGroup", blankText: "You must select one item in this group" }); Ext.ns("smb.charset"); smb.charset = { status: { disabled: ' Disable', enabled: 'Enable', yes : 'Yes', no : 'No' }, units : { MHz : 'MHz', Mbps : 'Mbps', Kbps : 'Kbps', dBm : 'dBm', dB : 'dB', km : 'km' }, tab: { sysStatus: 'Status', management: 'Management', tpNetwork: 'Network', system: 'System', wireless: 'Wireless', quickset_tab : "QUICK SETUP", status_tab : "STATUS", network_tab : "NETWORK", wireless_tab : "WIRELESS", management_tab : "MANAGEMENT", system_tab : "SYSTEM" }, mode: { accessPoint: 'Access Point', apRouter: 'AP Router', apClientRouter: 'AP Client Router', bridgeWithAP: 'Bridge', client: 'Client', wdsRepeater: 'Repeater' }, module: { lan: 'LAN', accessControl: 'Access Control', apModeLanSet: 'AP Mode LAN Setting', apModeWirelessSet: 'AP Mode Wireless Setting', apRouterModeType: 'AP Router Mode Connection Type', apRouterModeLan: 'AP Router Mode LAN Settings', apRouterModeWl: 'AP Router Mode Wireless Settings', apClientRouter: 'AP Client Router', apClientrouterDes: 'AP Client Router - Description', // apClientRouterLan: 'AP Client Router Mode LAN Setting', // apClientRouterWan: 'AP Client Router WAN Connection Type', bandwidthControl: 'Bandwidth Control', blockedDosHostList: 'Blocked DoS Host List', bridgeLanSet: 'Bridge Mode LAN Setting', changePwd: 'Change Password', clientModeLanSet: 'Client Mode LAN Settings', clientModeWlSet: 'Client Mode Wireless Settings', configuration: 'Configuration', daylightSavingTime: 'Daylight Saving Time', ddns: 'Dynamic DNS', device: 'Device', deviceInfo: 'Device Information', dhcpStatus: 'DHCP Status', failure: 'Failure', finish: 'Finish', firmware: 'Firmware Update', forwarding: 'Forwarding', info: 'Info', ipMacBinding: 'IP&MAC Binding', l2tpStatus: 'L2TP Status', log: 'System Log', login: 'Login', location: 'Location', lan: 'LAN', lanSettings: 'LAN Settings', miscellaneous: 'Miscellaneous', multiSsid: 'Multi-SSID', nat: 'NAT', operationMode: 'Operation Mode', ping: 'Ping Watch Dog', pingTool: 'Ping', pptpStatus: 'PPTP Status', pppoeStatus: 'PPPoE Status', reboot: 'Reboot', repeaterModeNtSet: 'Repeater Mode Network Settings', repeaterModeWlSet: 'Repeater Mode Wireless Settings', rssiLedThresholds: 'RSSI LED Thresholds', security: 'Security', snmp: 'SNMP Agent', speedTest: 'Speed Test', sshServer: 'SSH Server', staticRouting: 'Static Routing', systemLog: 'System Log', spectrumAnalysis : 'Spectrum Analysis', survey: 'Survey', tdma: 'Wireless Basic Settings', time: 'Time Setting', tool: 'System Tool', traceroute: 'Traceroute', userAccount:'User Account', wan: 'WAN', wanSettings: 'WAN Settings', wanConnType: 'WAN Connection Type', webserver: 'Web Server', wirelessAdv: 'Wireless Advanced Settings', wirelessApSet: 'Wireless AP Settings', wirelessBridgeSet: 'Wireless Bridge Setting', wireMacFilter: 'Wireless MAC Filtering', wirelessClientSettings: 'Wireless Client Settings', wirelessApSettings: 'Wireless AP Settings', wirelessRepeaterSettings: 'Wireless Repeater Settings', wirelessBridgeSettings: 'Wireless Bridge Setting 000' }, button: { add: 'Add', accept:'Accept', addPcMac: 'Add PC\'s MAC', back: 'Back', backup : 'Backup', browse: 'Browse...', blockedDosList: 'Blocked DoS Host List', cancel: 'Cancel', cloneFromPcsMacAddress: "Clone PC's MAC", connect : 'Connect', clear: 'Clear', continueBtn: 'Continue', "delete": 'Delete', disable: 'Disable', disconnect : 'Disconnect', download: 'Download', enable: 'Enable', exit: 'Exit', factoryMac: 'Restore Factory MAC', finish: 'Finish', getGmt: 'Get GMT', quickSet:'Quick Setup', keep: 'Keep', lockToAp: 'Lock to AP', login: 'Login', logOut: 'Logout', logout: 'Log Out', modify: 'Modify', next: 'Next', obtain: 'Obtain', ok: 'OK', open: 'Open', ping : 'Ping', reboot : 'Reboot', release: 'Release', reset : 'Reset', restore : 'Restore', refresh: 'Refresh', retrieve: 'find', save: 'Apply', saveToFlash: 'Save Changes', scanning: 'Scanning', setting: 'Setting', survey: 'Survey', speedTest : 'Speed Test', spectrumAnalysis : 'Spectrum Analysis', startStop: 'Start/Stop', start: 'Start', stop: 'Stop', submit: 'Apply', synchronizeClock: 'Synchronize PC\'s Clock', traceroute : 'Traceroute', update: 'Update', updateKeep: 'Update the firmware and keep the configuration', updateReset: 'Update the firmware but reset the configuration', upload: 'Upload', Upgrade : 'Upgrade' }, delimiter: ', ', label:{ about: 'About', accessControl: 'Access Control', accessControlList: 'Access Control List', accessPoint: 'Access Point', accessPointDes: 'In this mode, the AP will act as a central hub for different wireless LAN clients. Multi-SSID is also available in this mode, which supports up to 4 different SSIDs and passwords.', acctServer: 'Accounting Server', acctServerIp: 'Acct Server IP', acctServerPort: 'Acct Server Port', acctServerPwd: 'Acct Server Key', ackRange: '(0-200)km', autoNote: '(Only works within ', autoRange: '0-27.9km)', ackTimeout:'Distance', acName : 'AC Name', addrReservation: 'Address Reservation', advancedSettings: 'Advanced Settings', advancedSecurity: 'Advanced Security', advancedSettingsPppoe: 'PPPoE', advancedSettingsDynamic: 'Dynamic', alg: 'ALG', allow: 'Allow', allowMacFiltering: 'Allow the stations specified by any enabled entries in the list to access.', allowPackets: 'Allow the packets specified by any enabled access control policy to pass through the Device', anterna: 'Anterna', antennaGain: 'Antenna Gain', antennaGainDbm: '(0-30)dBi', authentication: 'Authentication', authentication2: 'Phase 2 Auth', authType: 'Auth Type', auto: 'Auto', autoMailSet: 'Auto Mail Setting', automatic: 'Automatic', autoRefresh: 'Auto Refresh', australia: 'Australia', ap: 'AP', apCount: 'AP Count', apModeLanSet: 'AP Mode LAN Setting', apModeWirelessSet: 'AP Mode Wireless Setting', apIsolation: 'AP Isolation', apRouter: 'AP Router', aprouterDes: 'In this mode, the device enables multi users to share Internet. The wireless port share the same IP to ISP through Ethernet WAN port. The Wireless port acts the same as a LAN port while at AP Router mode.', apRouterModeType: 'AP Router Mode Connection Type', apRouterModeLan: 'AP Router Mode LAN Settings', apRouterModeWl: 'AP Router Mode Wireless Settings', apClientRouter: 'AP Client Router', apClientRouterName: 'AP Client Router(WISP Client)', apClientrouterDes: 'In this mode, the device enables multi users to share Internet from WISP. The LAN port devices share the same IP from WISP through Wireless port. While connecting to WISP, the Wireless port works as a WAN port at AP Client Router mode. The Ethernet port acts as a LAN port.', apWirelessRadio: 'AP Wireless Radio', // apWirelessPara: 'AP Wireless Parameter:', arpTable: 'ARP Table', at: 'at', average: 'average', basic: 'Basic', backupConfig: 'Backup Configuration', bandWidthControl: 'Bandwidth Control', bandWidthControlList: 'Bandwidth Control List', beaconInterval: 'Beacon Interval', bidirectional: 'bidirectional', bridge: 'Bridge', bridgeLanSet: 'Bridge Mode LAN Setting', bridgeTable:'Bridge Table', bridgeDes: 'Bridge mode borrows existing wireless Internet and broadcasts it using a different SSID and password. In this mode, you setup a wireless client to connect with root AP and a wireless AP for local wireless coverage.', bridgeWlPara: 'Bridge Wireless Parameters:', channal: 'Channal', channelFrequency: 'Channel/Frequency', channelWidth: 'Channel Width', channel: 'Channel', client: 'Client', copyright: 'Copyright © 2015 TP-LINK Technologies Co., Ltd. All rights reserved.', speedTestClient: 'Client', clientDes: 'With client mode, the device can connect to a wired device and works as a wireless adapter to receive wireless signal from your wireless network.', // clientWlPara: 'Client Wireless Parameters:', connected: 'Connected', connecting: 'Connecting...', connectionMode: 'Connection Mode', connectionTime: 'Connection Time', confirmNewPwd: 'Confirm New Password', // confirmConfig: 'Confirm the configuration:', confirmPassword: 'Confirm Password', connectedStations: 'Connected Stations', connStatus: 'Connection Status', connType: 'Connection Type', connUptime: 'Connection Uptime', cpu:'CPU', current: 'current', curPassword: 'Current Password', curUserName: 'Current User Name', curWanConnStatic: 'Current WAN Connection Type is static.', date: 'Date', dateMode: 'Date Mode', daylight: 'Daylight Saving', daylightSavingTime: 'Daylight Saving Time', days: 'days', dbm: 'dBm', direction: 'Direction', disconnected: 'Disconnected', discovery: 'Discovery', CDP: 'CDP', ddns: 'Dynamic DNS', defaultPolicy: 'Default Policy', destinationIp: 'Destination IP', destinationIpDomain: 'Destination IP/Domain', destinationHost: 'Destination Host', detectInterval: 'Detect Interval', deny: 'Deny', denyMacFiltering: 'Deny the stations specified by any enabled entries in the list to access.', denyPackets: 'Deny the packets specified by any enabled access control policy to pass through the Device', deviceInfo: 'Device Information', deviceName: 'Device Name', deviceLocation: 'Device Location', deviceModel: 'Device Model', defaultGateway: 'Default Gateway', defaultDomain: 'Default Domain', dhcpClientsList: 'DHCP Clients', dhcpFallBackIp: 'DHCP Fallback IP', dhcpFallBackMask: 'DHCP Fallback Mask', disable: 'Disable', disabled: 'Disabled', distanceSetting: 'Distance Setting', dnsServer: 'DNS Server', domainName: 'Domain Name', done: 'Done', download: 'Download to PC', dtimInterval: 'DTIM Interval', dfs: 'DFS', dhcpLeaseTime: 'Lease Time', dhcpServer: 'DHCP Server', dosProtection: 'DoS Protection', dmz: 'DMZ', dmzIp: 'DMZ IP', dns: 'DNS', dstStatus: 'DST Status', dynamicIpDes: 'Dynamic IP - Your ISP uses a DHCP service to assign your Router an IP address when connecting to the Internet.', dynamicIp : 'Dynamic IP', dynamicWan: 'Dynamic WAN', enable: 'Enable', enabled: 'Enabled', enableAutoMail: 'Auto Mail Feature', enableWmm: 'Wi-Fi MultiMedia (WMM)', enableAQos: 'QoS', enableShortGi: 'Short GI', enableTxbf: 'Transmit Beamforming', enableWireless: 'Enable Wireless Radio', enableWirelessRadio: 'Enable Wireless Radio', enableWirelessBridge: 'Enable Wireless Bridge', enableSSID: 'Enable SSID Broadcast', enableSecurity: 'Enable Security', enableTdma: 'MAXtream', encryption: 'Encryption', endIpAddress: 'End IP Address', endTime: 'End Time', eth0Rx:'eth0-Rx:5Kbps', eth0Tx:'eth0-TX:5Kbps', european: 'European', extensionChan: 'Extension Channel', failure: 'Failure', // fallbackToStatic: 'Fallback to static IP if failed', fallbackIp: 'Fallback IP', firewall: 'Firewall', filteringRules: 'Filtering Rules', filteringPolicy: 'Filtering Policy', firmwareVersion : 'Firmware Version', firmwareUpgrade : 'Upload Firmware', firmVersion: 'Firmware Version', fragmentationThreshold: 'Fragmentation Threshold', frequencyRange: 'Frequency Range', frequencyTitle: 'Frequency(MHz)', from: 'From', fromHhMm: 'From(HH:MM)', ftpAlg: 'FTP ALG', gateway: 'Gateway IP', getCommunity: 'Get Community', getSource: 'Get Source', groupKeyUpdatePeriod: 'Group Key Update Period', hasLogFrom: 'has logged on from', hardVersion: 'Hardware Version', hostName: 'Host Name', h323Alg: 'H323 ALG', language: 'Language', languageType: 'English', lanIpAddr: 'LAN IP Address', lanNetMask: 'LAN Subnet Mask', lanInfo: 'LAN', lanParameter: 'LAN Parameter:', lanPingForBid: 'LAN Ping Forbidden', icmpFlood: 'ICMP_FLOOD Attack Filter', igmpProxy: 'IGMP Proxy', inWord: 'in', interface: 'Interface', interfaces:'Interfaces', ipAddress: 'IP Address', ipAddrToPing: 'IP Address To Ping', ipmacBinding: 'IP&MAC Binding', ipMacBindingList: 'IP MAC Binding List', ipsecPassthrough: 'IPSec Passthrough', ispSpecifiedIp: 'ISP-Specified IP', kbps: 'kbps', keyOne: 'Key 1', keyTwo: 'Key 2', keyThree: 'Key 3', keyFour: 'Key 4', keyFormat: 'Key Format', keySelected: 'Key Selected', keyType: 'Key Type', latitude: 'Latitude', led1: 'LED1', led2: 'LED2', led3: 'LED3', led4: 'LED4', loading : 'loading', localIpAddr: 'Local IP Address', lockToAp: 'Lock to AP', logOut: 'Log Out', longitude: 'Longitude', l2tp: 'L2TP', l2tpDes: 'L2TP - Des', l2tpPassthrough: 'L2TP Passthrough', macAddr: 'MAC Address', macAp: 'MAC of AP', macOfRemoteAp: 'MAC Of Remote AP', manual: 'Manual', maxIdleTime: 'Idle Time', maxTxRate: 'Max TX Rate', mac: 'MAC', macAuth: 'MAC Authentication', mailAccount: 'Auto Mail Setting', mac1: 'MAC1', mac2: 'MAC2', mac3: 'MAC3', mac4: 'MAC4', memory: 'Memory', minutes: 'minutes', mtuSize: 'MTU Size', mode:'Mode', modeChangeConfirmTitle: 'Mode Change', modeChangeConfirmStr: 'Are you sure to switch Operation Mode to', modeIeee: 'IEEE802.11 Mode', mode80211Mixed: 'Mixed', mode80211AOnly: 'A Only', mode80211BOnly: 'B Only', mode80211GOnly: 'G Only', mode80211NOnly: 'N Only', monitor:'Monitor', multiSsid: 'Multi-SSID', multiSsidList: 'Multi-SSID List', na: 'N/A', netmask: 'Netmask', newUserName: 'New User Name', newPwd: 'New Password', newZealand: 'New Zealand', noiseStrength:'Noise Strength', ntpServer1: 'NTP Server 1', ntpServer2: 'NTP Server 2', offed: 'OFF', oned: 'ON', onDemand: 'On Demand', oneToTwenty: '(1-20)', operationMode: 'Operation Mode', oriUserName: 'Ori User Name', openSysLog: 'Open System Log', outputPower:'Output Power', optional : '(optional)', password: 'Password', packetPerSec: 'packets/second', packetsInterval: 'Packets Statistics Interval', packetSize: 'Packet Size', packetSizeTip: '(4-1472) bytes', packetNum: 'Packet Num', packetCount: 'Packet Count', parallel: 'Parallel', peak: 'peak', ping: 'Ping', pingWatchDog: 'Ping Watch Dog', pingInterval: 'Ping Interval', pingIntervalTip: '(10-300)seconds', pingResults: 'Ping Results', pingTimeout: 'Ping Timeout', pingTimeoutTip: '(100-2000) milliseconds', pleaseSltMode: 'Please select the proper operation mode according to your needs', predefinedMode: 'Predefined Mode', pressContinue: 'press "Continue" to login', priDns: 'Primary DNS', primaryDns: 'Primary DNS', pskPassword: 'PSK Password', poePassthrough: 'PoE Passthrough', port: 'Port', port0: 'Port0', port1: 'Port1', portTrigger: 'Port Trigger', portTriggeringList: 'Port Triggering List', portRange: 'port range', portUnplugged: 'Unplugged', portFullDuplex: 'FD', portHalfDuplex: 'HD', powerTitle: 'Power(dBm)', pppoe: 'PPPoE', pppoeDes: 'PPPoE - For this connection, you will need your account name and password from your ISP.', pptp: 'PPTP', pptpDes: 'PPTP - Des', pptpPassthrough: 'PPTP Passthrough', pwdAuth: 'Password Authentication', qosSettings: 'QoS Settings', radioStatus: 'Radio Status', radiusMacAuth: 'RADIUS MAC Authentication', radiusServerIp: 'Auth Server IP', radiusPort: 'Auth Server Port', radiusPassword: 'Auth Server Key', repeater: 'Repeater', region: 'Region', rebootDevice: 'Reboot Device', rebootCount: 'Fail Count To Reboot', rebootCountTip: '(1-65535)', rebooting: 'Rebooting', remoteMng: 'Remote Management', repeaterName: 'Repeater(Range Extender)', repeaterDes: 'In this mode, the device can copy and reinforce the existing wireless signal to extend the coverage of the signal, especially for a large space to eliminate signal-blind corners.', repeaterModeWlSet: 'Repeater Mode Wireless Settings', repeaterModeNtSet: 'Repeater Mode Network Settings', recurringMode: 'Recurring Mode', resetConfig: 'Reset to Factory Default', resetting: 'Resetting', remoteIpAddr: 'Remote IP Address', remoteLog: 'Remote Log', remoteLogin: 'Remote Login', remoteIp: 'Remote Login IP Address', remotePort: 'Remote Log Port', remoteReset: 'Remote Reset Button', restoring: 'Restoring', result: 'Result', rootApIp: 'Root AP IP', rootApBssid: 'Root AP BSSID', rootApSsid: 'Root AP SSID', routes:'Routes', rssi: 'RSSI', rtsThreshold: 'RTS Threshold', rtspAlg: 'RTSP ALG', rx: 'RX', rxRate: 'RX Rate', secondConn: 'Second Connection', secureConn : 'Secure Connection(HTTPS)', secureServerPort: 'Secure Server Port', server: 'Server', serverPort: 'Server Port', serverProvider: 'Service Provider', seconds: 'seconds', seconds0: 'seconds, 0 means no update', secondConn: 'Second Connection', secondarayConn: 'Secondary Connection', secondaryDns: 'Secondary DNS', security: 'Security', security01: 'Security01', security02: 'Security02', security03: 'Security03', security04: 'Security04', securitySetting: 'Security Settings', securityMode: 'Security Mode', secDns: 'Secondary DNS', selectWanType: 'Please select the connection type of WAN port according to your needs', serviceName : 'Service Name', setCommunity: 'Set Community', setSource: 'Set Source', settingChanged: 'Setting Changed', sessionTimeout: 'Session Timeout', serverIp: 'Server IP', serverIpName: 'Server IP/Name', serverIpDomain: 'Server IP/Domain Name', show: 'Show', showAdvSetting: 'Show Advanced Settings', smtpSvr: 'SMTP Server', snr: 'SNR', snmp: 'SNMP Agent', signalQuality: 'Wireless Signal Quality', signalStrength: 'Signal Strength', stations:'Stations', status: 'Status', start: 'Start', startIpAddress: 'Start IP Address', startTime: 'Start Time', startUpDelay: 'Startup Delay', startUpDelayTip: '(60-300)seconds', staticIp : 'Static IP', staticIpDes: 'Static IP - This type of connection uses a permanent, fixed (static) IP address that your ISP assigned.', staticRouting: 'Static Routing', staticRoutingList: 'Static Routing List', spiFirewall: 'SPI Firewall', sshServer: 'SSH Server', sshLogin: 'SSH Login', ssid: 'SSID', ssid01: 'SSID1', ssid02: 'SSID2', ssid03: 'SSID3', ssid04: 'SSID4', ssidOfAp: 'SSID of AP', ssidOfRemoteAp: 'SSID of Remote AP', subnetMask: 'Subnet Mask', support: 'Support', sysContact: 'SysContact', sysName: 'SysName', sysLocation: 'SysLocation', sysTime: 'System Time', sysRunTime: 'System Running Time', tcpSynFlood: 'TCP_SYN_FLOOD Attack Filter', tdma: 'MAXtream', tdmaPriority: 'MAXtream Station Mode', testing: 'Testing:', testResult: 'Test Result', tftpAlg: 'TFTP ALG', threshold: 'Threshold', thresholdDbm: 'Thresholds(dBm)', throughput:'Throughput', timeBased: 'Time-based', time: 'Time', timeZone: 'Time Zone', timeOffset: 'Time Offset', to: 'To', total: 'Total', totalIngressBandwidth: 'Total Ingress Bandwidth', totalEgressBandwidth: 'Total Egress Bandwidth', toHhMm: 'To(HH:MM)', tracerouteMaxTtl: 'Traceroute Max TTL', tracerouteResults: 'Traceroute Results', transmitCcq:'Transmit CCQ', transPower: 'Transmit Power', tx: 'TX', txRate: 'TX Rate', txPower: 'TX Power', //macAp: 'MAC of AP', udpFlood: 'UDP_FLOOD Attack Filter', unidirectional: 'unidirectional', usa: 'USA', user: 'User', userIspIp: 'Use ISP-Specified IP', userDnsServer: 'Use These DNS Servers', username: 'User Name', updateConfig: 'Upload Configuration', updateDone: 'Upgrade Done', updating: 'Updating', uploadingFile: 'Uploading file...', upnp: 'UPnP', uptime: 'Uptime', version: 'Version', vlanId: 'VLAN ID', virtualSvr: 'Virtual Server', virtualServersList: 'Virtual Servers List', vpn: 'VPN', waiting : 'waiting', wan: 'WAN', wanMacClone: 'WAN MAC Clone', wanMacAddr: 'WAN MAC Address', wds: 'WDS', wanConnType: 'WAN Connection Type', wanConnectionType: 'Connection Type', wepKey: 'WEP Key', wanInfo:'WAN', // wanPara: 'WAN Parameters:', wanPingForbid: 'WAN Ping Forbidden', wirelessMacFiltering: 'Wireless MAC Filtering', wirelessBridgeSet: 'Wireless Bridge Setting', wirelessAp: 'Wireless AP', wirelessApSet: 'Wireless AP Setting', wirelessClient: 'Wireless Client', wirelessClientSet: 'Wireless Client Setting', wirelessMode: 'Wireless Mode', wirelessSSID: 'Wireless - MultiSSID', wirelessInfo:'Wireless', wirelessSetting: 'Wireless Settings', // wirelessMacFiltering: 'Wireless Mac Filtering List', wirelessLocalApSet: 'Wireless Local AP Setting', wirelessRadio: 'Wireless Radio', wlan0Rx:'wlan0-Rx:60Kbps', wlan0Tx:'wlan0-TX:60Kbps', wpaUserName:'WPA User Name', wpaUserPwd:'WPA User Password', yourPcMac: 'Your PC\'s MAC Address', tip0: 'Ping %pingIP% [%dstIP%] with %size% bytes of data:', tip8: 'Error IP address.', tip9: 'Some other task is running.Please wait for a moment and try again.', tip53: 'Ping request could not find host.Please check the name and try again.', tip100: 'Some wrong happened.' }, region: { c8: 'Albania', c12: 'Algeria', c32: 'Argentina', c533: 'Aruba', c51: 'Armenia', c36: 'Australia', c40: 'Austria', c31: 'Azerbaijan', c44: 'Bahamas', c48: 'Bahrain', c50: 'Bangladesh', c52: 'Barbados', c112: 'Belarus', c56: 'Belgium', c84: 'Belize', c60: 'Berumuda', c68: 'Bolivia', c70: 'Bosnia and Herzegowina', c76: 'Brazil', c96: 'Brunei Darussalam', c100: 'Bulgaria', c116: 'Cambodia', c124: 'Canada', c152: 'Chile', c156: 'China', c170: 'Colombia', c188: 'Costa Rica', c191: 'Croatia', c196: 'Cyprus', c203: 'Czech Republic', c208: 'Denmark', c214: 'Dominican Republic', c218: 'Ecuador', c818: 'Egypt', c222: 'El Salvador', c233: 'Estonia', c234: 'Faeroe Islands', c246: 'Finland', c250: 'France', c268: 'Georgia', c276: 'Germany', c300: 'Greece', c304: 'Greenland', c308: 'Grenada', c316: 'Guam', c320: 'Guatemala', c332: 'Haiti', c340: 'Honduras', c344: 'Hong Kong', c348: 'Hungary', c352: 'Iceland', c356: 'India', c360: 'Indonesia', c364: 'Iran', c368: 'Iraq', c372: 'Ireland', c376: 'Israel', c380: 'Italy', c388: 'Jamaica', c392: 'Japan', c400: 'Jordan', c398: 'Kazakhstan', c404: 'Kenya', c408: 'Korea North', c410: 'Korea Republic', c412: 'Korea Republic3', c414: 'Kuwait', c428: 'Latvia', c422: 'Lebanon', c434: 'Libya', c438: 'Liechtenstein', c440: 'Lithuania', c442: 'Luxembourg', c446: 'Macau SAR', c807: 'Macedonia', c458: 'Malaysia', c462: 'Maldives', c470: 'Malta', c480: 'Mauritius', c484: 'Mexico', c492: 'Monaco', c499: 'Montenegro', c504: 'Morocco', c524: 'Nepal', c528: 'Netherlands', c530: 'Netherlands-Antilles', c554: 'New Zealand', c558: 'Nicaragua', c578: 'Norway', c511: 'Test_Mode', c512: 'Oman', c586: 'Pakistan', c591: 'Panama', c598: 'Papua New Guinea', c600: 'Paraguay', c604: 'Peru', c608: 'Philippines', c616: 'Poland', c620: 'Portugal', c630: 'Puerto Rico', c634: 'Qatar', c642: 'Romania', c643: 'Russia', c646: 'Rwanda', c682: 'Saudi Arabia', c688: 'Serbia', c702: 'Singapore', c703: 'Slovak Republic', c705: 'Slovenia', c710: 'South Africa', c724: 'Spain', c144: 'Sri Lanka', c752: 'Sweden', c756: 'Switzerland', c760: 'Syria', c158: 'Taiwan', c834: 'Tanzania', c764: 'Thailand', c780: 'Trinidad & Tobago', c788: 'Tunisia', c792: 'Turkey', c784: 'U.A.E.', c800: 'Uganda', c804: 'Ukraine', c826: 'United Kingdom', c840: 'United States', c858: 'Uruguay', c860: 'Uzbekistan', c862: 'Venezuela', c704: 'Viet Nam', c887: 'Yemen', c131: 'Zimbabwe' }, validation:{ acName: 'Invalid AC Name', adminPwd: 'Please input another password other than "admin".', biggerThanNext: 'The value should be less than the next value', broadcastIp: 'Can not be broadcast IP', decimalOverflow: 'Decimal overflow', deviceNameInvalid: 'Devicename should only contain A~z or 0~9 or "-" or "_"', domainFormat: 'Invalid domain', egressCompare: 'the number can\'t be smaller than the minvalue', endTimeWrong: 'End Time should be later than Start Time', enableOneKey: 'Please enable at least one key', fieldRequired: 'this field is required', fileEmpty: 'choose file', fileUnmatch: 'the type of file does not match', fileNameOver: 'the length of file\'s name is too long', hostMacExist: 'The MAC exists, do not add again.', illegalPwd: 'invalid password with illegal characters', ingressCompare: 'the number can\'t be less than the minvalue', integerInvalid: 'Invalid integer', invalidNumber: 'Invalid Number', ipAllZero: '0.0.0.0 is invalid', ipFormat: 'Invalid IP Format', ipEClass: 'Can not be E-class IP', ipMask : 'Invalid IP or mask, the network is invalid', ipMaskUnion : 'Invalid IP/mask format', ipRange : 'The ending IP must be greater than start IP', ipRangeConflict: 'IP Range Conflict with LAN', ipRangeNum: 'invalid format of IP range', invalidPortRange: 'Invalid format of port range', invalidChar: 'Invalid charset', invalidIpOrDomain: 'Invalid IP or Domain', loopIp: 'Can not be loop IP(127.X.X.X)', macFormat: 'Invalid MAC format', macFull: 'The list is full, no more MAC can be added.', macBroadcast: 'Can not be a broadcast MAC', macMulti: 'Can not be a multicast MAC', macConflict: 'MAC conflict with other MAC', macCftWithHost: 'MAC conflict with host MAC', mailInvalid: 'Invalid email address', maxValue: 'The maximum value for this field is {0}', maxMillion: 'The maximum value for this field is 1000000', maskFormat: 'Invalid mask format', maskInValid: 'Invalid mask', maskIpNet : 'Network address can not be 0.0.0.0', maxLen: 'The maximum length for this field is {0}', minLen: 'The minimum length for this field is {0}', minThirty: 'The minimum value for this field is 30', minValue: 'The minimum value for this field is {0}', numberRange90: 'Number must be between -90 and 90', numberRange180: 'Number must be between -180 and 180', oneIsRequired: 'At least one of SSID of AP or MAC of AP field is required.', passwordFormat: 'Invalid password', passwordLength: 'Invalid length of password', portInput: 'Port is not complete', portNum: 'The most port number is 5', portRangeFormat: 'Invalid format', portRangeOut: 'Out of range', portRangeInvalid: 'PortRange must be like 12 or 12-34', portRangeErr: 'The ending port must be greater than start port', portStartErr: 'Start port must be greater than 0', portEndErr: 'Ending port must be less than 65536', pwdNotEqual: 'Password is not equal', sessionTimeout: 'Session timeout, please log in again', serviceName: 'Invalid Service Name', startYearWrong: 'End Time should be later than Start Time', startEndYearRangeWrong: 'The range between End Time and Start Time should be less than a year', startSpaceIsNotAllow: 'Invalid input', theMaxLength5: 'The length for this field is 5', theMaxLength13: 'The length for this field is 13', theMaxLength16: 'The length for this field is 16', theMaxLength10: 'The length for this field is 10', theMaxLength26: 'The length for this field is 26', theMaxLength32: 'The length for this field is 32', timeFormat: 'Invalid time format', timeStart: 'Invalid start time', timeEnd: 'Invalid end time', timeRange: 'TimeEnd must be greater than timeStart', timeText: 'Not a valid time. Must be in the format "12:34 PM".', tooLongPwd: 'too long length of password', tooShortPwd: 'too short length of password', username: 'Invalid user name', usernamePwdError: 'User Name or Password is incorrect' }, tbar: { add: 'Add', clear: 'Clear', delet: 'Delete', edit: 'Edit', impor: 'Import', refresh: 'Refresh', unlock: 'Unlock' }, tip:{ dataFailure: 'Data communication failed', failGetGmt: 'Failed to get GMT,make sure you are connected to the network.', formInvalid: 'Form fields may not be submitted with invalid values', loading: 'system is loading, please wait...', webBrowser: 'TIPS: It is recommended to use the latest version of Chrome/Safari/Firefox for better experience.', quickSetFin: 'Quick setup is finished. Please wait for changes taking effect.', areYouSureToUpgrade: '.
Do you want to keep your configurations or restore to factory default after the upgrade?', confirmVersion: 'Are you sure upgrate to version 88.0.0 Build 20130308 Rel. 54892', confirmReset: 'Are you sure to reset ?', confirmRestore: 'Are you sure to restore ?', confirmReboot: 'Are you sure to reboot ?', cookieDisabled: 'Please make sure that your cookie is enabled', doNotPowerOff: ' DO NOT POWER OFF ', error: 'Error', everydayMail: 'Everyday, mail the log at', failToSaveChange: 'Fail to save changes!', mailTheLog: 'Mail the log every', noSetAtSameTime1: 'When Security Mode is WEP or encryption is TKIP, the mode can not be set as 802.11n!', noSetAtSameTime2: 'When the mode is 802.11n, security can not be set as WEP!', noSetAtSameTime3: 'When the mode is 802.11n, encryption can not be set as TKIP!', help: 'Show Help', hour: 'hour', ddns0: 'Not launching!', ddns1: 'Connecting...', ddns2: 'Succeeded!', ddns3: 'User Name or Password error!', ddns4: 'Domain Name error!', ddns5: 'Request is too frequent!', ddns6: '---', isLowerBrowser: 'It\'s recommended to use IE8 or higher version of Firefox or Chrome for better browse.', loginingIn: 'Logining in, please wait a moment.', loginInputErr: 'User Name or Password is incorrect.', loginTimeout: 'Session timeout.', loginSessionlimit: 'The login session reached the limit, couldn\'t accept new session.', multiSsidConfirmTitle:'Confirm', multiSsidConfirm:'MAXtream is not available while Multi-SSID function is turned on, are you sure to enable Multi-SSID?', noDhcpClients: 'No DHCP Clients', noAssociatedStations: 'No Associated Stations', saveSuccess: 'Save success', saveChangesTip: 'You have unsaved changes, would you like to save now?', spectrumInWireless: 'Spectrum Analysis is not allowed for wireless access!', spectrumNotInWireless: 'All wireless connections will be lost during spectrum analysis, are you sure to start?', submitWaitTitle:'Submitting your data', submitWaitMsg:'Submitting your data msg', requestTimeout: 'Request time out.', regionConfirmUser: '

TERMS OF USE

', regionConfirmUserTitle: 'TERMS OF USE', regionConfirmContent: '

This TP-LINK wireless device must be installed by a certified professional. Properly installed shielded Ethernet cable and earth grounding must be used in compliance with this product\'s warranty. Installers must abide by local rules and regulations in terms of legal frequency channels, output power, and Dynamic Frequency Selection (DFS) requirements. The End User accepts responsibility for maintaining the product in accordance with these rules and regulations. For further information, please visit www.tp-link.com.

', regionConfirmContentUs: '

This TP-LINK wireless device must be installed by a certified professional. Properly installed shielded Ethernet cable and earth grounding must be used in compliance with this product\'s warranty. Installers must abide by United States rules and regulations in terms of legal frequency channels and output power requirements. The End User accepts responsibility for maintaining the product in accordance with these rules and regulations. For further information, please visit www.tp-link.com.

', regionConfirmContentEu: '

This TP-LINK wireless device must be installed by a certified professional. Properly installed shielded Ethernet cable and earth grounding must be used in compliance with this product\'s warranty. Installers must abide by European rules and regulations in terms of legal frequency channels, output power, and Dynamic Frequency Selection (DFS) requirements. The End User accepts responsibility for maintaining the product in accordance with these rules and regulations. For further information, please visit www.tp-link.com.

', regionConfirmAgree: 'I agree to these terms of use', changeDefaultPwd: '

It is recommended to change the device user name and password from its default settings.

', aboutContent: 'PharOS is the web management platform applicable for all PharOS series products. It features easy-to-use user interface, versatile software configurations and powerful system tools, satisfying various kinds of users and applications. More..', takeTimeGrade: 'This might take several minutes. Please ', theDevice: 'the device!', theVersionIs: 'The new firmware version is ', wepEncryptionTip: 'We do not recommend using the WEP encryption, you can go to WIRELESS page to set it.' }, help:{ accessControl: 'The Device, providing convenient and strong internet access control function, can control the internet activities of hosts in the LAN.
Protocol - Here are four options, IP, TCP, UDP, and ICMP. Select one of them from the drop-down list for the target.
Host IP - Enter the IP address or address range of the host in dotted-decimal format, for example 192.168.0.23-192.168.0.27.
Target IP - Enter the IP address or address range of the target in dotted-decimal format, for example 192.168.3.23-192.168.3.27.
Target Port - Specify the port or port range for the target when Protocol is TCP or UDP.
Days of a week - Select the certain day (days).
Time - Enter the time in HH:MM-HH:MM format, the default value is 00:00-24:00.', acctServer: 'Enable this function if you want to keep accounts on users on your RADIUS accounting server.', alg: 'It is recommended to enable Application Layer Gateway (ALG) because ALG allows customized Network Address Translation (NAT) traversal filters to be plugged into the gateway to support address and port translation for certain application layer "control/data" protocols such as FTP, TFTP, H323 etc.
- FTP ALG: To allow FTP clients and servers to transfer data across NAT, click Enable.
- TFTP ALG: To allow TFTP clients and servers to transfer data across NAT, click Enable.
- H323 ALG: To allow Microsoft NetMeeting clients to communicate across NAT, click Enable.
- RTSP ALG: To allow some media player clients to communicate with some streaming media servers across NAT, click Enable.', channel: 'Supported Channels are shown below. Please note that available channels may vary in different countries or regions. When Auto is selected, the device will choose the channel with best performance among available channels.
- 5.150-5.250GHz
- 5.250-5.350GHz (Support Dynamic Frequency Selection)
- 5.470-5.725GHz (Support Dynamic Frequency Selection)
- 5.725-5.825GHz
* We highly recommended using Spectrum Analysis tool to plan your network during selection of channel and channel width.', channelFixed: 'When Auto is selected, the device will choose the channel with best performance among available channels.
* We highly recommended using Spectrum Analysis tool to plan your network during selection of channel and channel width.', channelWidth: 'According to IEEE 802.11n standard, using a Channel Width of 40MHz can increase wireless throughput. However, users may choose lower bandwidth due to following reasons:
- Increase the available number of channels with limited total bandwidth.
- To avoid interference from overlapping channels occupied by other devices in the environment.
- Lower bandwidth can concentrate more transmit power, increasing stability of wireless links over long distances.
- Subject to the channel width of root AP, only in Client/Bridge/Repeater/Client Router operation modes.
* We highly recommended using Spectrum Analysis tool to plan your network during selection of channel and channel width.', discovery: 'Enable the function to let TP-LINK PharOS Control software discover the device.', CDP: 'Enable the function to support the CDP Protocol.', distanceSetting: 'This is a critical feature required for stabilizing outdoor links over long distances. Distance values will be transferred to ACK timeout values.
ACK timeout value will be calculated using the distance value set manually. It is recommended setting the value to 110% of the real distance.', dmz: 'The DMZ host feature allows one local host to be exposed to the Internet for a special-purpose service such as Internet gaming or video conferencing. The Device forwards packets of all services to the DMZ host. Any PC that is set to be DMZ host must have its DHCP client function disabled and should have a new static IP address assigned to it because its IP Address may change when using the DHCP function.', poePassThrough: 'Enable PoE Passthrough if you want to power other passive PoE device by LAN1. Please note that the input voltage of powered device must be 24V.', radiusMacAuth: 'Enable this function if you want to authenticate clients by their MAC addresses on your RADIUS authentication server. Do not forget to log into the server and create authentication entries whose username and password are both the access-enabled clients MAC address (for MAC address 11-22-33-AA-bb-Cc, create an authentication entry whose username and password are both 112233aabbcc on the RADIUS server).', region: 'Available channels and maximum Transmit Power will determined by the region selected according to local laws and regulations.', remoteHelp: 'Only available for the AP Router/AP Client Router mode.', remoteMng: 'Enable the function to let TP-LINK PharOS Control software manage the device remotely.', security: 'Stateful Packet Inspection (SPI) helps to prevent cyber attacks by tracking more state per session. It validates that the traffic passing through the session conforms to the protocol. SPI Firewall is enabled by factory default. If you want all the computers on the LAN exposed to the outside world, you can disable it. ', tdmaEnable:'MAXtream: MAXtream is a proprietary technology of TP-LINK for WiFi system. It is based on TDMA(Time Division Multiple Access) so that data streams are transmitted in strict order.
MAXtream aims to maximize throughput and minimize latency especially in a multi-STAs circumstance. "Hidden nodes" problem can also be eliminated with MAXtream enabled. We highly recommend you to turn on MAXtream in a large scale wireless deployment to achieve better performance.

MAXtream Station Mode: For client devices connected to a remote AP with MAXtream enabled, you can choose "Latency First" or "Throughput First" mode to better fit your application. Specific mode can do optimization when it communicates with AP. Please choose "Auto Adjust" if you are not sure or you have no special requirements.

Note: MAXtream Technology is only compatible with PharOS series products. You can not connect other WiFi devices to an AP with MAXtream enabled.' , transmitPower: 'Maximum Transmit Power may vary among different countries or regions.', transmitPowerFixed: 'Maximum Transmit Power allowed.', upnp: 'The Universal Plug and Play (UPnP) feature allows the devices, such as Internet computers, to access the local host resources or devices as needed. UPnP devices can be automatically discovered by the UPnP service application on the LAN.
This table displays the current UPnP information.
App Description - The description about the application which initiates the UPnP request.
External Port - External port, which the Device opened for the application.
Internal Port - Internal port, which the Device opened for local host.
Protocol - Which type of protocol is opened.
IP Address - The IP address of the local host which initiates the UPnP request.
Status - Either Enabled or Disabled, "Enabled" means that port is still active, otherwise, the port is inactive.', virtualServer: 'Virtual Server can be used for setting up public services on your LAN. A virtual server is defined as a service port, and all requests from Internet to this service port will be redirected to the computer specified by the server IP. Any PC that was used for a virtual server must have a static or reserved IP address because its IP address may change when using the DHCP function.
IP - The IP address of the PC running the service application.
Internal Port - The Internal Service Port number of the PC running the service application. You can leave it blank if the Internal Port is the same as the Service Port, or enter a specific port number when Service Port is a single one.
Service Port - The numbers of External Service Ports. You can enter a service port or a range of service ports (the format is XXX - YYY, XXX is Start port, YYY is End port).
Protocol - The protocol used for this application, either TCP, UDP, or TCP/UDP.' }, comboBox:{ aes: 'AES', albania: 'Albania', all: 'TCP/UDP', allow: 'Allow', ascii: 'ASCII', auto: 'Auto', autoAdjust: 'Auto Adjust', bit64: '64bit', bit128: '128bit', bit152: '152bit', extensionLower: 'Lower Channel', extensionNone: 'None', extensionUpper: 'Upper Channel', comexe: 'Comexe(www.comexe.net)', deny: 'Deny', disabled: 'Disabled', disable: 'Disable', dynamic: 'Dynamic', dynDns: 'Dyndns (www.dyndns.com)', enable: 'Enable', english: 'English', chinese: '中文(简体)', russia : 'Русский', spanish: 'Español', "false": 'false', fri: 'Fri', first: 'First', fourth: 'Fourth', gmt0: '(GMT-12:00) Eniwetok, Kwajalein', gmt1: '(GMT-11:00) Midway Island, Samoa', gmt2: '(GMT-10:00) Hawaii', gmt3: '(GMT-09:00) Alaska', gmt4: '(GMT-08:00) Pacific Time (U.S. & Canada); Tijuana', gmt5: '(GMT-07:00) Mountain Time (U.S. & Canada); Arizona', gmt6: '(GMT-06:00) Central Time (U.S. & Canada); Central America', gmt7: '(GMT-05:00) Eastern Time (U.S. & Canada); Bogota, Lima', gmt33: '(GMT-04:30) Caracas', gmt8: '(GMT-04:00) Atlantic Time (Canada); Santiago', gmt9: '(GMT-03:30) Newfoundland', gmt10: '(GMT-03:00) Brasilia, Buenos Aires, Georgetown', gmt11: '(GMT-02:00) Mid-Atlantic', gmt12: '(GMT-01:00) Cape Verde Islands, Azores', gmt13: '(GMT)GMT; Dublin, Edinburgh, London, Lisbon', gmt14: '(GMT+01:00) Amsterdam, Berlin, Rome, Paris', gmt15: '(GMT+02:00) Cairo, Athens, Istanbul, Minsk', gmt16: '(GMT+03:00) Baghdad, Kuwait, Riyadh, Moscow', gmt17: '(GMT+03:30) Tehran', gmt18: '(GMT+04:00) Abu Dhabi, Muscat, Baku, Tbilisi', gmt19: '(GMT+04:30) Kabul', gmt20: '(GMT+05:00) Ye Ka Jielin Fort, Islamabad, Karachi, Tashkent', gmt21: '(GMT+05:30) Madras, Calcutta, Mumbai, New Delhi', gmt22: '(GMT+05:45) Kathmandu', gmt23: '(GMT+06:00) Almaty, Novosibirsk, Astana, Dhaka', gmt24: '(GMT+06:30) Yangon', gmt25: '(GMT+07:00) Bangkok, Jakarta, Hanoi', gmt26: '(GMT+08:00) Beijing, Urumqi, Hong Kong, Taipei', gmt27: '(GMT+09:00) Tokyo, Osaka, Sapporo, Seoul, Yakutsk', gmt28: '(GMT+09:30) Darwin, Adelaide', gmt29: '(GMT+10:00) Brisbane, Guam, Canberra, Melbourne, Sydney', gmt30: '(GMT+11:00) Magadan, Solomon Islands, New Caledonia', gmt31: '(GMT+12:00) Fuji, Kamchatka, Marshall Islands, Wellington', gmt32: '(GMT+13:00) Nuku\'alofa', hex: 'Hex', high: 'High', highPerformance: 'Throughput First', icmp: 'ICMP', ip: 'IP', last: 'Last', low: 'Low', l2tp: 'L2TP', lowLatency: 'Latency First', manual: 'Manual', middle: 'Middle', mon: 'Mon', mschapv2: 'MSCHAPV2', noChange: 'No Change', noIp: 'No-IP (www.no-ip.com)', none: 'None', openSys: 'Open System', peanutHull: 'PeanutHull (www.oray.com)', peap: 'EAP-PEAP', ping: 'Ping', pppoe: 'PPPoE', pptp: 'PPTP', sat: 'Sat', second: 'Second', sharedKey: 'Shared Key', slt: 'please select', staticConn: 'Static', sun: 'Sun', survey: 'Survey', speedTest: 'Speed Test', spectrumAnalysis: 'Spectrum Analysis', tcp: 'TCP', third: 'Third', thu: 'Thu', tkip: 'TKIP', "true": 'true', traceRoute: 'Traceroute', tue: 'Tue', ttls: 'EAP-TTLS', tools: 'Tools', udp: 'UDP', uLowerBandUS: '5180-5240 (MHz)', uUpperBandUS: '5745-5825 (MHz)', uLowerBandEU: '5500-5700 (MHz)', uLowerBand: '4920-5300 (MHz)', uMiddleBand: '5300-5700 (MHz)', uUpperBand: '5700-6080 (MHz)', wed: 'Wed', wpaPsk: 'WPA-PSK', wpa: 'WPA', wep: 'WEP', wpa1: 'WPA1', wpa2: 'WPA2', wpaPsk12: 'WPA-PSK / WPA2-PSK', lan0: 'LAN0', lan1: 'LAN1', wired: 'LAN0+LAN1', wlan0: 'WLAN0', wlan1: 'WLAN1', wlan2: 'WLAN2', wlan3: 'WLAN3', wlan7: 'WLAN7', wireless: 'ALL_WLAN', bridge: 'BRIDGE', wan: 'LAN0(WAN)', wwan: 'WWAN', monday: 'Monday', tuesday: 'Tuesday', wednesday: 'Wednesday', thursday: 'Thursday', friday: 'Friday', saturday: 'Saturday', sunday: 'Sunday', january: 'January', february: 'February', march: 'March', april: 'April', may: 'May', june: 'June', july: 'July', august: 'August', september: 'September', october: 'October', november: 'November', december: 'December' }, column: { apIsolation: 'AP Isolation', appDescription: 'App Description', assignedIp: 'Assigned IP', associatedSsid: 'Associated SSID', attackType: 'Attack Type', bssid: 'BSSID', ccq: 'CCQ(%)', clientName: 'Client Name', comment: 'Comment', connTime:'Connection Time', deviceName: 'Device Name', destination: 'Destination', distance: 'Distance', egressMin: 'Egress Min(kbps)', egressMax: 'Egress Max(kbps)', enable: 'Enable', externalPort: 'External Port', frequencyChannel: 'Channel', gatewayIp: 'Gateway IP', gateway: 'Gateway', host: 'Host', hostIp: 'Host IP', hostMac: 'Host MAC', index: 'Index', internalPort: 'Internal Port', interfaces:'Interfaces', interface:'Interface', incomingPort: 'Incoming Port', ingressMin: 'Ingress Min(kbps)', ingressMax: 'Ingress Max(kbps)', ip: 'IP', ipAddr:'IP Address', ipRange: 'IP Range', leaseTime: 'Lease Time', level: 'Level', msg: 'Message', netmask: 'Netmask', mac: 'MAC', macAddr: 'MAC Address', mtu:'MTU', protocal: 'Protocal', protocol: 'Protocol', portRange: 'Port Range', policy: 'Policy', response: 'response', reservedIpAddr: 'Reserved IP Address', rate: 'Rate(Mbps)', rxRate: 'Rate RX', rxRateKbps: 'RX(kbps)', rxPacket: 'RX packets', rxBytes: 'RX Bytes', servicePort: 'Service Port', security: 'Security', signalNoise: 'Signal/Noise(dBm)', snrPure: 'SNR', snr: 'SNR(dB)', ssid: 'SSID', ssidBroadcast: 'SSID Broadcast', status: 'Status', subnetMask:'SubnetMask', targetIp: 'Target IP', targetPort: 'Target Port', targetNetworkIp: 'Target Network IP', tdma: 'MAXtream', time: 'Time', triggerPort: 'Trigger Port', ttl: 'TTL', txRate: 'Rate TX', txRateKbps: 'TX(kbps)', txPacket: 'TX packets', txBytes: 'TX Bytes', type: 'Type', weekdays: 'Days of a week', wirelessVlan: 'VLAN' }, alert: { failGetData: 'Fail to get data', failLoadData: 'Fail to load data!', failLoadGmt: 'Fail to load GMT', webBrowserVer: 'It is recommended to use the latest version of Chrome/Safari/Firefox for better experience. \n\nIf you are not satisfied or have problem with the Web UI, please kindly tell us via support@tp-link.com.' }, webSite: { support: 'http://www.tp-link.com/en/support/' }, errCode: { eDefault: 'Operation failed.', e404: 'Operation failed.', e1000: 'The table is full, no more item can be added.', e1001: 'The item is in conflict with the existing one.', e1002: 'The item does not exist, operation failed.', e21000: 'WAN IP address error.', e21001: 'WAN subnet mask error.', e21002: 'WAN primary DNS error.', e21003: 'WAN secondary DNS error.', e21004: 'WAN gateway address error.', e21005: 'WAN IP and LAN IP conflicts.', e21006: 'MTU size error.', e21007: 'Server IP error.', e21008: 'WAN MAC address error.', e21009: 'WAN MAC address duplicate.', e21010: 'WAN MAC is same as LAN MAC.', e21100: 'PPPoE ISP-specified IP error.', e21101: 'PPPoE time setting error.', e21102: 'PPPoE username or password too long.', e21103: 'PPPoE user name too long.', e21104: 'PPPoE password too long.', e21105: 'PPPoE idle time error.', e21106: 'PPPoE MTU size error.', e21107: 'PPPoE detect interval error.', e22000: 'LAN IP address error.', e22001: 'LAN subnet mask error.', e22100: 'DHCP server address pool should be in the same subnet of LAN except for subnetwork address and broadcast address.', e22101: 'DHCP server gateway address error.', e22102: 'DHCP server primary DNS error.', e22103: 'DHCP server secondary DNS error.', e22104: 'DHCP server lease time error.', e22105: 'DHCP server start IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e22106: 'DHCP server end IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e22107: 'DHCP server start IP is greater than end IP.', e22108: 'DHCP server address range is too large.', e22200: 'DHCP server reserved IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e22201: 'DHCP server reserved IP should not be LAN IP.', e22202: 'DHCP server reserved IP is in conflict with the existing one.', e22203: 'DHCP server reserved MAC is in conflict with the existing one.', e23000: 'DMZ IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e23001: 'Virtual server IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e23002: 'Virtual server service port is in conflict with web server port.', e23003: 'Trigger port must be unique.', e23004: 'Virtual server internal port should be a value or a range same as service port.', e23005: 'Virtual server service port is in conflict with web secure server port.', e23006: 'Virtual server service port is in conflict with SSH server port.', e23007: 'Virtual server service port is in conflict with SNMP server port.', e23008: 'Virtual server service port is invalid.', e23009: 'Port trigger incoming port is in conflict with web server port.', e23010: 'Port trigger incoming port is in conflict with web secure server port.', e23011: 'Port trigger incoming port is in conflict with SSH server port.', e23012: 'Port trigger incoming port is in conflict with SNMP server port.', e23013: 'Port trigger incoming port is invalid.', e25000: 'Host IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e26004: 'The destination IP is in conflict with LAN setting.', e26005: 'The destination IP is in conflict with WAN setting.', e26006: 'The IP is not correct.', e26007: 'The IP does not match the subnet mask.', e26008: 'The subnet mask is not correct.', e27001: 'The TX value is too large.', e27002: 'TThe RX value is too large.', e27003: 'The input total TX value is less than the sum of the entry used.', e27004: 'The input total RX value is less than the sum of the entry used.', e27006: 'The input entry is in conflict with the existing one.', e27007: 'The entry\'s IP is not in the same subnet of LAN.', e27008: 'The TX min value is too large, there\'s no enough bandwidth to allocate.', e27009: 'The RX min value is too large, there\'s no enough bandwidth to allocate.', e28001: 'The MAC address is invalid.', e28005: 'The entry IP should be in the same subnet of LAN except for subnetwork address and broadcast address.', e28006: 'The IP and MAC address is same as LAN setting.', e30001: 'RADIUS IP is not legal.', e30002: 'RADIUS IP is in conflict with LAN setting.', e30003: 'SSID of AP is in conflict with Multi-SSID.', e30004: 'If both Client Settings and AP Settings use WEP as security mode, you should make sure the auth type,key format,key index and key content are the same. Please reset the Client security settings.', e30005: 'If both Client settings and AP Settings use WEP as security mode, you should make sure the auth type,key format,key index and key content are the same. Please reset the AP security settings.', e30006: 'Scan range is invalid.', e30007: 'Scan range is include no channel, you should make sure at least one channel is in the range.', e30008: 'To config the scan range, you should select Test_Mode region first.', e30009: 'Accounting Server IP is not legal.', e30010: 'Accounting Server IP is in conflict with LAN setting.', e31000: 'The length of SSID string is too long.', e31001: 'The VLAN should be set between 1 and 4094.', e40001: 'The remote IP should not be in the same subnet of LAN.', e40002: 'Server port should be set to 80 or in the range of 1024 - 65535.', e40003: 'Secure server port should be set to 443 or in the range of 1024 - 65535.', e40004: 'Fail to set server port, suggest to use 80 or another port number in the range of 1024 - 65535, except 5001, 6001 and 20003.', e40005: 'Fail to set secure server port, suggest to use 443 or another port number in the range of 1024 - 65535, except 5001, 6001 and 20003.', e40006: 'Fail to set web server timeout.', e40008: 'Server port and secure server port conflicts.', e40009: 'Server port or secure server port is in conflict with SSH server port.', e40010: 'Server port and virtual server items conflicts.', e40011: 'Server port and port trigger items conflicts.', e40012: 'Secure server port and virtual server items conflicts.', e40013: 'Secure server port and port trigger items conflicts.', e41001: 'Wrong user name.', e41002: 'Wrong password.', e42001: 'Date is outside the valid range, year should be set between 1970 and 2037.', e42007: 'Fail to set system time.', e43001: 'Fail to set SSH server port, suggest to use 22 or another port number in the range of 1024 - 65535, except 5001, 6001 and 20003.', e43002: 'SSH server port and web server port conflicts.', e43003: 'SSH server port and web secure server port conflicts.', e43004: 'SSH server port should be set to 22 or in the range of 1024 - 65535.', e43006: 'SSH server port and virtual server items conflicts.', e43007: 'SSH server port and port trigger items conflicts.', e44001: 'The length of sysLocation string is too long.', e44002: 'The length of sysName string is too long.', e44003: 'The length of sysContact string is too long.', e44004: 'The length of getCommunity string is too long.', e44005: 'The length of setCommunity string is too long.', e50001: 'The uploaded file is not correct.', e50002: 'The firmware version is not supported.', e50003: 'The hardware version is not supported.', e50004: 'Failed to open file, please try again.', e50005: 'The version of configuration is not supported.', e51201: 'The destination host is unreachable.', e51202: 'The destination host does not start the speedtest server.', e51204: 'The operation is timeout.', e51206: 'It is running, please try again later.', e52001: 'Spectrum analysis is already started.', e52002: 'Failed to start spectrum analysis.', e52003: 'Spectrum analysis is already stopped.', e52004: 'Request is too frequent, please wait for a moment and try again.', e60101: 'Fail to configure Operation Mode.', e60201: 'Fail to configure WAN.', e60301: 'Fail to configure WLAN.', e60302: 'The length of SSID string is too long.', e60501: 'Fail to configure LAN.' } } });