-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathEN.dict
1809 lines (1808 loc) · 104 KB
/
EN.dict
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[Language type]
LANG_EN=English
LANG_RU=English
DNS=DNS:
SSConfig_display1_sectiondesc=Set the Shadowsocks parameter, SS default DNS port 8053, transparent proxy port 1090, 1091, if you install other services, please make sure not to conflict with these 3 ports.
SSConfig_enable=switch
SSConfig_ServerIP_itemname=server address
SSConfig_ServerIP_itemdesc=This is the server IP of your Shadowsocks service provider. Please contact your service provider for this IP.
SSConfig_ServerPort_itemname=Server port
SSConfig_ServerPort_itemdesc=This is the server port of your Shadowsocks service provider. Please contact your service provider for this port.
SSConfig_LocalPort_itemname=Local proxy port
SSConfig_LocalPort_itemdesc=This is the Shadowsocks local service port on the route and generally does not need to be modified.
SSConfig_Key_itemname=Server password
SSConfig_Key_itemdesc=This is the service password for your S hadowsocks service provider.
SSConfig_Method_itemname=Encryption
SSConfig_Method_itemdesc=This depends on the encryption method preset by your Shadowsocks server. If it is misconfigured, it will not work properly.
SSConfig_DNS_Mode=DNS service mode
SSConfig_DNS_Mode_itemdesc=Choosing the way to resist DNS poisoning, the best mode is to use the SS port to forward DNS requests, but most SS service providers do not provide this mode. If you are a self-built SS server, this is the most efficient mode, using OpenDNS. It is also acceptable for SS service providers with servers in North America.
SSConfig_DNS_Auto=automatic detection
SSConfig_DNS_SS=UDP forwarding using SS
SSConfig_DNS_OpenDNS=Use OpenDNS
SSConfig_GFWList=Get the URL of GFWList
SSConfig_ss_upd_rules_itemdesc=Set a single IP or port number: 1 single IP [xxxx] multiple IP [192.168.123.10, 192.168.123.12] 2 port number mode [192.168.123.10 --dport 29000:31000] 3 network segment mode [1.1.1.0/28 】You can also bring the port number later (you can find the online subnet mask tool to calculate). [Leave blank] for all forwarding, to avoid dns failure, all 53 port UDP is not forwarded.
ext_dnspod_enable=Whether to enable DNSPOD's dynamic domain name service
ext_dnspod_display1_sectiondesc=DNSPOD dynamic domain name requires you to own a top-level domain name, so you can set your favorite dynamic domain name. Before using, please add an A record to the DNSPOD domain name management. The IP is free to fill in. When the service starts, it will automatically Update IP.
WLANConfig11b_Channel_itemonssid=Superior SSID:
PPP_AdaptiveLCP_echo=Do not send lcp-echo(off)
NFilterNatLoop=NAT Loopback
StorageRescan=scanning
Runscript0=Custom script 0 (functional configuration):
Runscript1=Custom script 1:
Runscript2=Custom script 2:
Runscript3=Custom script 3:
RunFastDick=Thunder fast bird script
Runrules=Adbyby custom filtering rules:
Runcrontabs=Custom Crontab Timed Task Configuration:
SwitchGreenEth=energy saving
SwitchEEE=Energy Efficient Ethernet (802.3az)
menu5_13=Extended function settings
menu5_2_6=Network wake up
menu5_13_1=Shadowsocks settings
MAC_Vendor=manufacturer
MAC_Wakeup=wake
BOP_ctype_title2=dial
BOP_ctype_title3=VPN
PPPConnection_x_AdditionalOptions_itsxplugin=Flash dialing plugin (plugin sxplugin.so)
PPPConnection_x_HostNameForISP_itemvci=Vendor identifier:
PASS_LANG=Select WebUI Language:
VPN_PPTP_Passthrough=PPTP Passthrough?
VPN_L2TP_Passthrough=L2TP Passthrough?
VPN_IPSec_Passthrough=IPSec Passthrough?
vpn_passthrough_itemname=VPN Passthrough
vpn_passthrough_desc=Enable VPN Passthrough to allow a VPN (Virtual Private Network) connection to passthrough the router to the network clients.
enable_noaccount_alert=If you try to share the files in your USB Disk without creating a shared account via AiDisk, problems will occur to the Samba Server.
wireless_router=Wireless Router
OP_switch_button_hint1=The operation mode switch is located at the bottom panel of the ZVMODELVZ.
OP_switch_button_hint2=Click here to view
OP_GW_item=Wireless Router Mode (Default)
OP_GW_desc1=ZVMODELVZ connects to the Internet via IPoE/PPPoE/PPTP/L2TP protocol and provides Internet sharing for Wired/Wireless clients.
OP_GW_desc2=In this mode, NAT, Firewall, UPnP, DHCP Server are available and enabled by default.
OP_AP_item=Access Point Mode (AP)
OP_AP_desc1=ZVMODELVZ connects to external Wired/Wireless router to establish Wireless signal sharing.
OP_AP_desc2=In this mode, NAT, Firewall and UPnP services are unavailable. The WAN port is direct connected to LAN ports.
OP_Modem=Modem
OP_WirelessClient=Wireless Client
OP_WirelessSignal=Existing Wireless Signal
IP6_proto=IPv6 Protocol
IP6_desc=Configure the IPv6 Internet Settings
IP6_hint=IPv6 protocol not supported on current firmware build!
IP6_hint_addr=is not valid IPv6 Address!
IP6_SVC=IPv6 Connection Type:
IP6_SIT_desc=Tunnel IPv6-IPv4 Setting (SIT)
IP6_SIT_6in4R=6in4 Remote Endpoint (IPv4):
IP6_SIT_6to4R=6to4 Anycast Relay (IPv4):
IP6_SIT_6rdR=6rd Border Relay (IPv4):
IP6_SIT_6rdM=6rd IPv4 Mask Length:
IP6_SIT_MTU=Tunnel MTU:
IP6_SIT_TTL=Tunnel TTL:
IP6_WAN_IF=Select WAN Interface for IPv6:
IP6_WAN_PPE=Hardware Offload Routing IPv6:
IP6_WAN_desc=WAN IPv6 Settings
IP6_6RD_DHCP=Get All 6rd Settings via DHCPv4?
IP6_WAN_DHCP=Get WAN IPv6 Address From Source:
IP6_WAN_Priv=Enable Privacy Extensions (RFC 4941)?
IP6_WAN_Both=From both sources
IP6_6RD_Addr=6rd IPv6 Prefix:
IP6_WAN_Addr=WAN IPv6 Address:
IP6_6RD_Pref=6rd Prefix Length:
IP6_WAN_Pref=WAN IPv6 Prefix Length:
IP6_WAN_Gate=WAN IPv6 Default Gateway:
IP6_DNS_desc=WAN DNSv6 Settings
IP6_DNS_Auto=Get DNSv6 Servers Automatically?
IP6_DNS_Addr=DNSv6 Server
IP6_LAN_desc=LAN IPv6 Settings
IP6_LAN_Auto=Get LAN IPv6 Address via DHCPv6 IA-PD?
IP6_LAN_Addr=LAN IPv6 Address:
IP6_LAN_Pref=LAN IPv6 Prefix Length:
IP6_LAN_RAdv=Enable LAN Router Advertisement?
IP6_LAN_DHCP=Enable LAN DHCPv6 Server?
IP6_LAN_Pool=Stateful LAN IPv6 Pool:
IP6_Addr=IPv6 Address
IP4_Addr=IPv4 Address
SI_LoadAvg=Load Avg:
SI_LoadCPU=CPU Load:
SI_FreeMem=Memory Free:
SI_Uptime=Uptime:
HSTOCK_RAM=RAM (MB)
HSTOCK_Bandwidth=Bandwidth (Mbps)
HSTOCK_Zoom=Period
WF_Sun=Sunday
WF_Mon=Monday
WF_Tue=Tuesday
WF_Wed=Wednesday
WF_Thu=Thursday
WF_Fri=Friday
WF_Sat=Saturday
MF_Jan=January
MF_Feb=February
MF_Mar=March
MF_Apr=April
MF_May=May
MF_Jun=June
MF_Jul=July
MF_Aug=August
MF_Sep=September
MF_Oct=October
MF_Nov=November
MF_Dec=December
MS_Jan=Jan
MS_Feb=Feb
MS_Mar=Mar
MS_Apr=Apr
MS_May=May
MS_Jun=Jun
MS_Jul=Jul
MS_Aug=Aug
MS_Sep=Sep
MS_Oct=Oct
MS_Nov=Nov
MS_Dec=Dec
MAN_PPPoE=PPPoE & MAN access:
Enable_NAT=Enable NAT?
UPnP_Enable=Enable IGD UPnP?
UPnP_Proto=Support Protocols:
UPnP_Secure=Restrict forwarding rules only to their IP?
UPnP_EPorts=Allow External Port Range:
UPnP_IPorts=Allow Internal Port Range:
UPnP_Clean_Int=Autoclean Rules Interval (sec):
UPnP_Clean_Min=Minimal Rules Before Autoclean:
VSAuto=Auto Port Forwarding (UPnP)
VSManual=Manual Port Forwarding
WIFIMacDesc=Wireless Client Description:
WIFIRegionCode=Region Code:
WIFIStreamTX=HT Spatial Streams TX:
WIFIStreamRX=HT Spatial Streams RX:
WIFIGreenAP=Enable Energy Saving Green AP?
WIFILDPC=Enable LDPC Codes Support?
WIFIRDG=Enable Reverse Direction Grant (RDG)?
WIFIAutoBA=Enable Auto Block Acknowledgment (AutoBA)?
WIFIVgaClamp=Clamp RX Gain to Reduce Impact Interference:
WIFIGuestEnable=Enable Guest AP?
WIFIGuestDate=Date to Active Guest AP (Workweek):
WIFIGuestTime=Time of Day to Active Guest AP (Workweek):
WIFIGuestDate2=Date to Active Guest AP (Weekend):
WIFIGuestTime2=Time of Day to Active Guest AP (Weekend):
WIFIGuestSSID=Guest SSID:
WIFIGuestMAC=Use MAC Address Filter Rules?
WIFIGuestIsolate=Isolation between Guest AP and Main AP?
WIFIGuestIsoLAN=Isolation between Guest AP and LAN?
WIFIGuestMCS=Fixed TX Rate Link Mode:
SATA_Storage=SATA Storage
SATA_Empty=No Connected Devices
USB_Devices=USB Devices
USB_Storage=USB Storage
USB_Modem=USB Modem
USB_Printer=USB Printer
USB_Modem_remove_confirm=Do you want to remove this USB Modem and Switch to wired WAN?
USB_Modem_unused=Modem is not used for WAN
USB_Hub_Empty=No connected compatible devices
WAN_Uptime=Session Uptime:
WAN_Bytes=Traffic During The Session:
WAN_BRate=Current Data Rate:
WAN_Lease=DHCP Lease Expires After:
WOL_MAC=Target Host MAC Address:
COM_Port_Node=Select Interface:
COM_User_AT=Custom AT-command:
ModemType=Modem Type:
ModemNets=Preferred Network:
ModemZCD=ZeroCD Switching Method:
ModemPrio=Internet Source Priority:
ModemPrioItem0=Broadband WAN or WISP, always
ModemPrioItem1=USB Modem, always
ModemPrioItem2=USB Modem, if no WAN link
ModemBase=USB Modem Base Settings
ModemAdv=USB Modem Advanced Settings
InetControl=Connection Control:
InetStateWISP=Wireless Connection to AP:
InetState0=Connected
InetState1=Ethernet cable is not attached
InetState2=No connection to WISP AP
InetState3=No connection to cellular BS
InetState4=Network interface is not ready
InetState5=Obtaining IP address...
InetState6=Waiting for PPP client connection...
InetState7=PPP connection is not active
InetState8=Default Gateway is not set
InetState9=WAN subnet conflicts with LAN subnet!
WdsDesc0=Bridge function allow your ZVMODELVZ to connect to an access point wirelessly.
WdsDesc1=To ensure the WDS bridge connection, please set the same channel and security authentication method between bridge's AP.
WdsDesc2=WDS bridge is not support [WPA-Auto-Personal], [WPA/WPA2 Enterprise] and [RADIUS] security authentication methods.
WdsDesc3=WDS bridge is guarantee works only with AP based on Ralink/MediaTek hardware.
WdsDesc4=To ensure the AP-Client connection, please set the same channel with remote AP.
WdsDesc5=AP-Client performs MAC-addresses translation through our MAC (MAT feature).
WdsDesc6=AP-Client can be designated to WAN interface role (WISP feature).
WdsMode0=AP (bridge is disabled)
WdsMode1=WDS bridge (AP is disabled)
WdsMode2=WDS repeater (bridge + AP)
WdsMode3=AP-Client (AP is disabled)
WdsMode4=AP-Client + AP
WdsLazy=Autoconnect to WDS peer
APCliRole=Wireless AP-Client Role:
APCliAuto=Autoseek
APChnAuto=Autoselect
APChnAbove=Above (+4)
APChnBelow=Below (-4)
IPConnection_VSList_ftpport=FTP Server Port:
CTL_Commit=Commit
Commit_confirm=Save Settings (NVRAM) Permanently?
Storage_upload_itemname=Restore Storage from a Backup file:
Storage_upload_itemdesc=Specify the path and name of Storage backup file. Then click [Upload] to write the file to router.
Adm_Setting_nvram=Router Settings (NVRAM)
Adm_Setting_store=Router Internal Storage (/etc/storage)
Adm_Setting_store_backup=Storage Backup:
Adm_Setting_store_hint=All files in the Storage are deleted and will be restored to default.\n
Adm_Setting_store_stats=Save Network Traffic History to Internal Storage?
Adm_Setting_store_stats_item1=Yes, w/o commit to flash
Adm_Setting_store_stats_item2=Auto-commit every month
Adm_Setting_store_stats_item3=Auto-commit every 2 weeks
Adm_Setting_store_stats_item4=Auto-commit every week
Adm_Setting_store_stats_item5=Auto-commit every 2 days
Adm_Setting_store_stats_item6=Auto-commit every day
Adm_Setting_store_stats_item7=Auto-commit every 12h
Adm_Setting_store_stime=Save Current System Time to Internal Storage?
Adm_Setting_store_now=Commit Internal Storage to Flash Memory Now:
Adm_Setting_commit_mode=NVRAM to Flash Memory Committing Mode:
Adm_Setting_commit_item0=Always after changes
Adm_Setting_commit_item1=Manual only
Adm_Setting_commit_now=Commit NVRAM Content to Flash Memory Now:
Adm_Setting_rwfs=Custom User R/W Partition on NAND Flash
Adm_Setting_rwfs_mount=Filesystem Mounted to R/W Partition:
Adm_System_desc=Base administration control.
Adm_System_ident=System Identification
Adm_System_admin=Administrator Login:
Adm_System_help=Enable Context Help?
Adm_System_logf=Enable Syslog Floating Toolbar?
Adm_System_logf_item2=Last 100 lines
Adm_System_zram=Enable ZRAM?
Adm_Svc_desc=Control of various system services.
Adm_Svc_wins=WINS Service?
Adm_Svc_napt66=Enable napt66?(After reboot)
Adm_Svc_tor=TOR proxy anonymizer?
Adm_Svc_privoxy=Privoxy filtering proxy?
Adm_Svc_dnscrypt=DNSCrypt proxy?
Adm_Svc_dnscrypt_desc=DNS traffic encryption and authentification. Prevents DNS spoofing. Compatible with DNSSEC.<br /><br />To enable DNSSEC for supported resolvers, add 'proxy-dnssec' option in Custom Configuration File 'dnsmasq.conf'.
Adm_Svc_dnscrypt_resolver=Resolver:
Adm_Svc_dnscrypt_ipaddr=Local IP address:
Adm_Svc_dnscrypt_port=Local port:
Adm_Svc_dnscrypt_force_dns=Redirect all DNS queries to DNSCrypt?
Adm_Svc_dnscrypt_force_dns_desc=Forcefully redirects all DNS queries to DNSCrypt. Prevents using of non-default DNS resolvers by some LAN clients applications.
Adm_Svc_dnscrypt_options=Additional options:
Adm_Svc_dnscrypt_options_desc=To get a list of all available options, execute dnscrypt-proxy with the '--help' param, or refer to the user manual.
Adm_Svc_dnscrypt_list=List
Adm_Svc_dnscrypt_all=All IP addresses
Adm_Svc_lltd=LLTD (Link Layer Topology Discovery)?
Adm_Svc_adsc=ASUS Info Discovery Service?
Adm_Svc_crond=Cron Daemon (Scheduler)?
Adm_Svc_crontabs=Scheduler tasks (Crontab)
Adm_System_webs=HTTP Web Server
Adm_System_term=Terminal Services
Adm_System_anon=Anonymity and content filtering
Adm_System_misc=Miscellaneous Services
Adm_System_telnetd=Enable Telnet Server?
Adm_System_sshd=Enable SSH Server?
Adm_System_sshd_acfp=Allow SSH GatewayPorts?
Adm_System_sshd_gp=Allow SSH GatewayPorts?
Adm_System_sshd_wopen=Access SSH Server from WAN?
Adm_System_sshd_wport=SSH Server Port from WAN:
Adm_System_sshd_wbfp=SSH Server Brute Force Protection:
Adm_System_sshd_keys=SSH Public Authorization Keys
Adm_System_ftpd_wopen=Access FTP Server from WAN?
Adm_System_ftpd_wport=FTP Server Port from WAN:
Adm_System_trmd_ropen=Access to Transmission RPC from WAN?
Adm_System_aria_ropen=Access to Aria2 RPC from WAN?
Adm_System_http_access=Restricting Web Access from LAN:
Adm_System_http_proto=Web Server Protocol:
Adm_System_http_lport=Port of Web Access from LAN:
Adm_System_https_lport=Port of HTTPS Web Access from LAN:
Adm_System_https_clist=List of Allowed SSL Ciphers for HTTPS:
Adm_System_https_wopen=Enable HTTPS Web Access from WAN?
Adm_System_https_wport=Port of HTTPS Web Access from WAN:
Adm_System_https_certs=Web Server HTTPS Certificates
Adm_System_https_query=Are you sure you want to create new certificates for HTTPS server?\n\nNote:\n- Old certificates will be overwritten.
Adm_System_udpxy_wopen=Access to UDP-HTTP Proxy (udpxy) from WAN?
Adm_System_udpxy_wport=UDP-HTTP Proxy (udpxy) Port from WAN:
Adm_System_ntpp=NTP Synchronization Period:
Adm_Access_WAN=Access to Router Services from WAN
LAN_STP=Enable Spanning Tree Protocol (STP)?
MAC_BlockHost=Block Access to Router Host?
MAC_Time=Time Interval:
MAC_Days=Days of the Week:
DAY_Sun=Su
DAY_Mon=Mo
DAY_Tue=Tu
DAY_Wed=We
DAY_Thu=Th
DAY_Fri=Fr
DAY_Sat=Sa
ItemNever=Never
ISP_Authentication_mode=Authentication:
ISP_Authentication_host=Authentication Server IP:
ISP_Authentication_user=Login:
ISP_Authentication_pass=Password:
PPP_L2TPD=L2TP Client Daemon:
PPP_AdaptiveLCP=Adaptive LCP Echo Interval:
PPP_DefaultGW=Use Default Gateway from VPN Tunnel?
MAN_VIPTV_desc=VLAN CPU (IPTV) MAN IP Settings
WAN_MAN_desc=MAN IP Settings
WAN_MAN_DHCP=Get the MAN IP Automatically?
WAN_Poller=ARP Ping Alive of Remote Gateway?
WAN_Source=WAN Cable is Attached to Port:
WAN_Bridge=Ports Isolation and VLAN Filtering
WAN_FilterVLAN=VLAN Tagged Traffic Filter?
WAN_TTL_Fix=Don't Decrement the TTL after Routing:
WAN_TTL_Item0=No, Always Decremented
WAN_TTL_Item1=For All Packets
WAN_TTL_Item2=For Multicast IPTV Packets
WAN_TTL_Value=TTL Value
WAN_TTL_Value_Item0=Default
WAN_TTL_Value_Item1=64(Unix)
WAN_TTL_Value_Item2=128(Windows)
DDNS_SVR=DDNS Server (FQDN or IP):
DDNS_URL=URL path for update:
DDNS_Second=Second DDNS Service
DDNS_Common=Common DDNS Settings
DDNS_SSL=Use Secure HTTPS Connection?
DDNS_Source=My Internet IPv4 Address Source:
DDNS_AddrExt=Autodetect External IP
DDNS_AddrWAN=Address from WAN Interface
DDNS_AddrMAN=Address from MAN Interface
DDNS_CheckIP=Server to Autodetect External IP:
DDNS_CheckIP_item0=Use default (from profile)
DDNS_Period=DDNS Update Period:
DDNS_Forced=DDNS Forced Update Period:
DDNS_Verbose=Syslog Verbose Level:
DHCP_Verbose=DHCP Server Verbose:
STB_Isolation=IPTV STB Port(s) Isolation:
STB_IsolationItem1=Isolation between Router CPU Port
STB_IsolationItem2=Isolation between WAN Bridge Ports
UntagVLAN=Untag
FirewallConfigSynFlood=Prevent SYN Flood Attack?
NFilter_desc=Main Linux Netfilter framework configuration.
NFilterConfig=Netfilter Settings
NFilterMaxConn=Maximum Connections:
NFilterNatType=NAT Type (UDP only):
NFilterALG=Application-Level Gateway (ALG)
HardwareNAT=Hardware Offload NAT/Routing IPv4:
WAN_SFE=Enable shortcut-fe?
VPNS_Desc=VPN Server
VPNS_Info=VPN Server allows secure access from the Internet to the LAN subnet or extends a private LAN subnets across the Internet (Site-to-Site).
VPNS_Enable=Enable VPN Server?
VPNS_Base=Server Settings
VPNS_Type=VPN Server Protocol:
VPNS_Auth=Authentication Algorithm:
VPNS_Ciph=Encryption Cipher Algorithm:
VPNS_Cast=Broadcast Traffic Relay:
VPNS_VUse=Allocate Subnet for VPN Tunnel?
VPNS_VUse_Item0=No (use LAN subnet)
VPNS_VUse_Item1=Yes, using routing
VPNS_VUse_Item2=Yes, using NAT to LAN
VPNS_VNet=Network to Use for the Tunnel:
VPNS_ACtl=Allow VPN Clients Access to:
VPNS_ACtl_Item0=Full access
VPNS_ACtl_Item1=LAN & Internet
VPNS_ACtl_Item2=LAN & router host
VPNS_ACtl_Item3=LAN only
VPNS_ACtl_Item4=Internet only
VPNS_CTun=VPN Tunnel Settings
VPNS_PInfo=VPN Addressing
VPNS_VAddr=VPN Server IP Address:
VPNS_LPool=LAN DHCP Clients IP Pool:
VPNS_VPool=VPN Clients IP Pool:
VPNS_Accnt=Clients Accounts
VPNS_Accnt_Info1=To connect a VPN client to the PPTP/L2TP server each client must have an account with username and password. The use of a static IP is not recommended.
VPNS_Accnt_Info2=To connect a VPN client to the OpenVPN server client must have account with username and password only to access the LAN network behind the client router (Site-to-Site).
VPNS_Accnt_Info3=The client's certificate Common Name (CN) must match the account username. Every client must have a static IP.
VPNS_Accnt_Info4=If a VPN client is a router, to access it's LAN network (Site-to-Site) this network must be added to the client account.
VPNS_CName=Username
VPNS_FixIP=Static IP:
VPNS_RNet=LAN Subnet behind VPN Client:
VPNS_RNet_itemdesc=If a LAN Subnet exists on the client side of the VPN, enter it here to enable routing from the VPN server to client.
VPNS_GenNew=Generate
VPNS_Query=Are you sure you want to create certificates for OpenVPN server?\n\nNote:\n- Old certificates will be overwritten.\n- Diffie-Hellman file creation may take a long time (up to 10 minutes).
VPNS_Export=Export client.ovpn
VPNC_Desc=VPN Client
VPNC_Info=Static VPN Client extends a private LAN subnets across the Internet (Site-to-Site).
VPNC_Enable=Enable VPN Client?
VPNC_Base=VPN Client Settings
VPNC_Type=VPN Client Protocol:
VPNC_Peer=Remote VPN Server (IP or DNS host):
VPNC_VPNS=Settings Depending on Remote VPN Server Role
VPNC_PDNS=Obtaining DNS from VPN Server:
VPNC_PDNS_Item1=Add to existing list
VPNC_PDNS_Item2=Replace all existing
VPNC_SFW=Restrict Access from VPN Server Site:
VPNC_SFW_Item0=No (Site-to-Site), using NAT translation
VPNC_SFW_Item1=Yes, block all connections (site is foreign)
VPNC_SFW_Item2=No (Site-to-Site), using routing only
VPNC_SFW_Item3=Yes, but follow Firewall & Port Forwarding rules
VPNC_DGW=Route All Traffic through the VPN interface?
VPNC_Route=Route to Remote LAN Subnet behind VPN Server
VPNC_RNet=Remote LAN Subnet/Mask:
OVPN_Mode=Encapsulation Layer:
OVPN_Topo=Topology for LAN Join:
OVPN_Topo1=Bridge (the same subnet)
OVPN_Topo2=NAT (different subnets)
OVPN_Prot=Transport:
OVPN_Port=Port:
OVPN_Auth=Authentication type:
OVPN_COMPRESS=Enable LZx for Data Compression:
OVPN_COMPRESS_Item1=No (but pull from server)
OVPN_COMPRESS_Item2=Yes, compress LZO
OVPN_COMPRESS_Item3=Yes, compress LZ4
OVPN_COMPRESS_Item4=Yes, compress LZ4-v2
OVPN_CLZO=Enable LZx for Data Compression:
OVPN_CLZO_Item1=No (but pull from server)
OVPN_CLZO_Item2=Yes, compress LZO
OVPN_CLZO_Item3=Yes, compress LZ4
OVPN_CLZO_Item4=Yes, compress LZ4-v2
OVPN_HMAC=HMAC Signature Check (TLS-Auth/TLS-Crypt)?
OVPN_HMAC_Item1=TLS-Auth (ta.key is required)
OVPN_HMAC_Item2=TLS-Crypt (ta.key is required)
OVPN_RdGw=Route All Client's Traffic through the VPN?
OVPN_Hint=SSL/TLS certificate(s) not found!
OVPN_User=OpenVPN Extended Configuration
OVPN_Cert=OpenVPN Certificates & Keys
StorageShare=Share Access Mode:
StorageShare1=Full access for everyone
StorageShare2=Access with account
StorageShare3=Anonymous only (Read Only)
StorageShare4=Access with account and anonymous
StorageShare5=Full access for everyone, root share
StorageAutoChkDsk=Auto Check Filesystem on Storage Plug-In?
StorageCacheReclaim=Automatic I/O RAM Caches Reclaim:
StorageSpindown=HDD Spindown Timeout:
StorageApmOff=HDD Disable APM (Head Parking)?
StorageU3Off=Disable USB3 Interface (USB2 only)?
StorageU3Desc=less 2.4GHz interference
StorageEnableDLNA=Enable UPnP/DLNA Media Server?
StorageNotifyDLNA=Notify Interval (sec):
StorageRootDLNA=Root Container for Client:
StorageSortDLNA=Force Sort Order for Client:
StorageSourceDLNA=Media Files Source Path:
StorageRescanDLNA=Rebuild Database Content on Start:
StorageRescanItem0=No rebuild
StorageRescanItem1=Append new media files
StorageRescanItem2=Force rebuild database
StorageLMB=Enable Master Browser:
StorageLog=Enable Output Events to Syslog?
StoragePasvPR=Ports Range for FTP Passive Mode:
StorageAnonMR=Anonymous Max Rate Limit (KiB/s):
StorageSMBFP=SMB Traffic Fastpath by skip Netfilter:
StorageSMBD=SMB Server (Windows Network Neighborhood)
StorageFTPD=FTP Server
StorageNFSD=NFS Server
StorageEnableNFSD=Enable NFS Server?
StorageAllowOptw=Allow Run Optware?
StorageFFly=iTunes Media Server (Firefly)
StorageEnableFFly=Enable iTunes Media Server?
StorageTorrent=Torrent Transmission
StorageTorrent_itemdesc=Please create directory [transmission] on the target partition before first start Transmission.
StorageEnableTRMD=Enable Transmission?
StoragePPortTRMD=Port for Incoming Peers:
StorageRPortTRMD=RPC Control Port:
StorageAria=Download manager Aria2
StorageAria_itemdesc=Please create directory [aria] on the target partition before first start Aria2.
StorageEnableAria=Enable Aria2?
Console_warn=Warning! Console emulator may be used only for commands which return result immediately. Commands such as [top], [ping], [traceroute], etc. will block the WebUI.
Scripts_desc=Flexible system configuration via Shell scripts that are called when certain events occur.
InetCheck_desc=Internet Detector monitors access to the Internet and allows to perform the required actions when the state of Internet access changes.
InetCheckMode=Internet Detector Poll Mode
InetCheckModeItem0=While WebUI is opened
InetCheckModeItem1=Continuous polling
InetCheckHosts=List of Internet Hosts for Check TCP Connection
InetCheckHostIP4=Remote Server Address and Port
InetCheckPoll=Internet Hosts Polling Settings
InetCheckPeriod=Poll Interval After Connection Success/Failed (s):
InetCheckTimeout=TCP Connection Timeout (s):
InetCheckEvents=Events when the State of Internet Access is Changed
InetCheckLostDelay=Delay Before Raise [Internet Lost] Event (s):
InetCheckLostAction=Perform Action on [Internet Lost] Event:
InetCheckReconPause=Pause Before Run New WAN Connection (s):
InetCheckLostItem0=No action
InetCheckLostItem1=Router reboot
InetCheckLostItem2=WAN reconnect
InetCheckLostItem3=Switch Ethernet WAN <=> USB Modem
Tweaks_desc=Customized button actions and LED events.
TweaksWPSAction=WPS Button Action
TweaksFN1Action=FN1 Button Action
TweaksFN2Action=FN2 Button Action
TweaksEventShort=Button Short Press (1 sec):
TweaksEventLong=Button Long Press (3 sec):
TweaksWPSItem00=No action
TweaksWPSItem01=Wi-Fi: radio activated/deactivated
TweaksWPSItem02=Wi-Fi: general enabled/disabled
TweaksWPSItem03=Wi-Fi: guest enabled/disabled
TweaksWPSItem10=USB: safe removal all devices
TweaksWPSItem11=USB: safe removal device from USB #1
TweaksWPSItem12=USB: safe removal device from USB #2
TweaksWPSItem14=LED: front LED show/hide
TweaksWPSItem20=WAN: disconnect
TweaksWPSItem21=WAN: reconnect
TweaksWPSItem22=WAN: connect/disconnect
TweaksWPSItem30=System: router reboot
TweaksWPSItem31=System: router shutdown
TweaksWPSItem32=System: run user script
TweaksWPSItem33=System: reset settings
TweaksLEDEvents=LED Events
TweaksLEDALL=Enable front LED?
TweaksLEDWAN=Front LED Internet:
TweaksLEDLAN=Front LED Ethernet:
TweaksLEDUSB=Front LED USB:
TweaksLEDWIF=Front LED Wireless:
TweaksLEDPWR=Front LED Power:
TweaksLEDItem00=Ethernet link WAN
TweaksLEDItem01=Ethernet link LAN
TweaksLEDItem02=Ethernet link LAN/WAN
TweaksLEDItem03=Connection to ISP
TweaksLEDItem04=Internet detected
TweaksLEDItem05=USB storage is mounted
TweaksLEDItem06=USB devices presents
TweaksLEDItem07=USB devices activity
TweaksLEDItem09=Wireless radio ON, activity
TweaksLEDItem11=buttons events
TweaksLEDEth0=Ethernet Ports Green LED:
TweaksLEDEth1=Ethernet Ports Yellow LED:
TweaksWdg=Hardware Watchdog Timer:
TweaksWdg_item=(force reboot after crash)
TweaksWdg_desc=Hardware watchdog timer reboot system during 15 seconds on CPU hung or after system crashed.
CustomConf=Custom Configuration File
UserScripts=Custom User Scripts
RunPreStart=Run Before Router Initialized:
RunPostStart=Run After Router Started:
RunShutdown=Run Before Router Shutdown:
RunPostWAN=Run After WAN Up/Down Events:
RunPostFWL=Run After Firewall Rules Restarted:
RunEzBtns=Run On Press WPS/FN Ez-Buttons:
RunPostVPNS=Run the Script After VPN Client Connected/Disconnected:
RunPostVPNC=Run the Script After Connected/Disconnected to VPN Server:
RunInetState=Run the Script When the State of Internet Access is Changed:
PrinterPortU2E=Enable USB-over-Ethernet Port?
PrinterPortLPR=Enable TCP/IP LPR Port?
PrinterPortRAW=Enable TCP/IP RAW Port?
IPTV_desc=Multicast Routing and IPTV
IPTVBase=IPTV Translation Control
IPTVProxy=IPTV Proxy Servers
IPTVQLeave=Quick Leave to Upstream on Channel Change?
IPTVMulticast=Multicast Traffic
IPTVXUA=eXtensible UPnP agent (xUPNPd), Web Port:
IPTVXExt=Use External udpxy for xUPNPd?
IPTVIGMP=Force IGMP Protocol Version:
Switch_desc=Physical WAN and LAN Ethernet Ports configuration on internal switch.
SwitchBase=Base Settings
SwitchJumbo=Accept Jumbo Frames Between Ports:
SwitchUport=Upstream IGMP Router Port:
SwitchIgmp=Enable IGMP/MLD Snooping?
SwitchFlow=Flow Control:
SwitchLink=Speed and Duplex:
SwitchState=Ethernet Link State:
SwitchStorm=Network storm constraint on Ethernet Ports
wps_start_btn=Start
USB_Application_account_alert=User's account cannot be [root], [Root], [ROOT], [admin], [Admin], [ADMIN], [family], [Family], [FAMILY]! Please enter a valid account.
BasicConfig_USBStorageWhiteist_itemdesc=The range for this field is hex 1 to FFFF. Enter 0 (zero) to disable this feature.
BasicConfig_USBStorageWhiteist_itemname=USB Storage Device VID White List
LANHostConfig_x_TimeZone_itemhint_2=The selected time zone setting is different from what the device has detected. Do you want change to the detected time zone?
RouterConfig_GWMulticast_Multicast_all_itemdesc=Enable this feature to control the network traffic and avoid a broadcast storm, which would result to a network slowdown or to an unusable network. The range for this field is 1 to 1000. Enter 0 (zero) to disable this feature.
RouterConfig_GWMulticast_unknownUni_itemname=Unknown Unicast Storm Control (Mbps):
RouterConfig_GWMulticast_unknownMul_itemname=Unknown Multicast Storm Control (Mbps):
RouterConfig_GWMulticast_Multicast_itemname=Multicast Storm Control (Mbps):
RouterConfig_GWMulticast_Broadcast_itemname=Broadcast Storm Control (Mbps):
JS_field_wanip_rule3=Please input the value between 1 - 2592000 (sec).
PrinterStatus_x_Monopoly_itemdesc=If your printer does not allow multi-user sharing support, click [Monopoly] mode on your router's user interface to manually set your printer to allow printer sharing. Do not do this when your printer is busy.
Switch_band=Switch Frequency
Current_band=Current Frequency
LANHostConfig_DomainName_itemdesc2=can only contain alphanumeric characters and the dash symbol.
RouterConfig_IPTV_itemname=UDP Multicast to HTTP Proxy Port
RHELP_desc9=Enter 0 (zero) to disable.
WLANConfig11b_TxPower_itemname=TX Power Adjustment (%):
WLANConfig11b_TxPower_itemdesc=Adjust antenna power to enhance the quality of trasmittion.
WLANConfig11b_KickStaRssiLow_itemname=KickStaRssiLow:
WLANConfig11b_KickStaRssiLow_itemdesc= auto disonnect sta if rssi low, default 0 (off)
WLANConfig11b_AssocReqRssiThres_itemname=AssocReqRssiThres:
WLANConfig11b_AssocReqRssiThres_itemdesc=reject assoc req due to weak signal, default 0 (off)
WLANConfig11b_Wireless_Speed_itemname_3=Uses 40 MHz coexistent bandwidth to maximize the wireless throughput. If you experience issues with wireless stability, please choose the default mode.
hwnat_desc=Enable Hardware Offload to offer Internet speed with maximum throughput over 900 Mbps when appropriately supported by you Internet Service Provider. But please note that enabling Hardware Offload may conflict with QoS/Shaper related functions.
Date=Date
Scale=Scale
Last30days=Last 30 Days
menu4_2=Traffic Monitor
menu4_2_1=Real Time
menu4_2_2=Last 24 Hours
menu4_2_3=Daily
menu4_2_4=Monthly
switchpage=Switch Pages:
Network=Network
Color=Color
Current=Current
Average=Average
Maximum=Maximum
Total=Total
Downlink=Downlink
Uplink=Uplink
LAN_IP_changed_suggedtion1=The LAN IP of ZVMODELVZ is
LAN_IP_changed_suggedtion2=If you can't back setting page later, please renew IP configuration of your computer.
WLANConfig11b_x_WPSband_itemname=Current Band
WLANConfig11b_x_WPSband_itemdesc=Select an operating band (2.4GHz or 5GHz) before using the WPS (Wi-Fi Protected Setup) function.
LANConfig_ChangedLANIP=The IP Address for your router has been changed. Please use the Device Discovery utility to search for your router's new IP Address.
BasicConfig_HWNAT_alert=The Hardware NAT function is in conflict with your router's current settings. Disable the Hardware NAT function from [Advanced Settings] / [WAN] / [Internet Connection] in the navigation menu.
BasicConfig_HWNAT_itemname=Enable HW NAT?
LANHostConfig_x_Password_itemdesc=Password cannot be greater than 32 characters.
CableStatus=Cable Status
HowToSharebyFTP5=Use an FTP Client application with UTF-8 support to display non-English characters such as Traditional or Simplified Chinese. Such FTP client application is <a href='http://filezilla-project.org/' target='_blank'>Filezilla</a>, in which you can modify character encoding in the Site Manager/Advanced option.
WLANConfig11n_band_steering=Enable Band Steering?
WLANConfig11n_mumimo=Enable MU-MIMO?
WLANConfig11n_txbf=Enable Transmit Beamforming?
WLANConfig11n_nmode_limition_hint=ZVMODELVZ will change WEP or TKIP encryption to AES in [n Only] mode to ensure that clients to get the proper connection.
WLANConfig11n_automode_limition_hint=Under [Mixed] mode with WEP or TKIP encryption, ZVMODELVZ supports the maximum transmission rate of 54 Mbps.
BM_desc_upload=EZQoS automatically detects your uplink speed to help you adjust your network bandwidth. If you can get the exact uplink speed through another way such as an online speed test, we recommend that you enter the speed value in <a href='Advanced_QOSUserSpec_Content.asp'>advanced settings page</a>
WhiteList=White List
BlackList=Black List
MSSID_profile=SSID Profile
mssid_guest=Guest
mssid_customize=Customize
mssid_network_access=Network Access
mssid_qos_priority=Bandwidth Priority
op_already_configured=ZVMODELVZ is already configured to this mode.
WLANConfig11n_PremblesType_itemname=Preamble Type:
WLANConfig11n_PremblesType_itemdesc=The Preamble Type defines the length of the CRC (Cyclic Redundancy Check) block, which is a technique for detecting data transmission errors among wireless devices. We recommend that you configure all wireless devices to the same preamble type. Use short preamble for wireless devices in high network traffic areas. Use long preamble for older wireless devices.
Layer3Forwarding_x_STB_itemdesc=Choose the LAN port to bridge to WAN port. If you have another device to connect to WAN but your ISP only provide one WAN link, you can specify some LAN port to receive packets from WAN port. For example, you can connect your IPTV Set-top box to the specified port and get the signal and IP Address from your ISP directly.
Port_format=For port range, you can either: a) enter a specific port, such as [95] or b) enter ports within a range, such as [103:315], [>100] or [<65535].
IP_format=For IP Address, you can: a) enter a specific IP Address, such as [192.168.122.1]; b) enter IP Addresses within one subnet or within the same IP pool, such as [192.168.123.*] or [192.168.*.*] or c) enter all IP Addresses as [*.*.*.*].
ShareNode_FTPLANG_itemdesc=Choose the correct language settings suitable for your file encoding.
FirewallConfig_DoSEnable_itemdesc=Allows you to enable or disable the DoS (Denial of Service) protection function.
ShareNode_Seeding_itemname=Seeding
ShareNode_Seeding_itemdesc=Allows you to enable or disable the seeding function. ZVMODELVZ remains open until downloading process is completed.
ShareNode_MaxUpload_itemname=Maximum Upload Rate
ShareNode_MaxUpload_itemdesc=Enter a value between 0 to 999. The default value is 0 (zero), which denotes that there is no upload limit.
HSDPAConfig_hsdpa_enable_hint1=After enabling USB Modem, your original WAN settings will be disabled.
HSDPAConfig_hsdpa_enable_hint2=If you want to change the connection type, please go to <a href="/Advanced_Modem_others.asp">USB Modem</a> to disable USB Adapter.
HSDPAConfig_USBAdapter_itemname=USB Adapter
HSDPAConfig_USBAdapter_itemdesc=After enabling USB Modem, select the adapter that ZVMODELVZ supports.
APSurvey_msg_connected=You already connected to this AP.
APSurvey_msg_connect_suggest1=We suggest you use Ethernet cable to connect to ZVMODELVZ for having stable configuration and better experience.
APSurvey_msg_connect_suggest2=Click [<span style="font-weight:bold; font-size:16px;">OK</span>] to keep configuring. During setting process, your PC may occur disconnection and we cannot ensure ZVMODELVZ is connecting to remote AP.
APSurvey_msg_connect_suggest3=Click [<span style="font-weight:bold; font-size:16px;">Logout</span>] to leave WebUI and use Ethernet cable to connect to ZVMODELVZ then login again.
APSurvey_action_search_again_hint1=Select another network
APSurvey_action_search_again_hint2=Change the network that ZVMODELVZ will connect to.
Browser_action_addfavorite_hint1=The ZVMODELVZ IP Address is changed to
Browser_action_addfavorite_hint2=Hence, we recommend that you add this URL to your Favorites list for quick access to the ZVMODELVZ.
Browser_action_addfavorite=Add to Favorites
Browser_action_not_support_addfavorite=Your browser does not support this function.
page_not_support_mode_hint=This function is disabled.
APSurvey_action_ConnectingStatus0=Connection failed. The network you are trying to connect to may not exist. Please select another network to connect to.
APSurvey_action_ConnectingStatus1=Connection failed. Please enter the security key again or click [Cancel] to select another network to connect to.
APSurvey_action_ConnectingStatus24=Successfully established the wireless connection.
APSurvey_action_ConnectingStatus35=Failed to authenticate the WPA key. Please enter the WPA key again.
APSurvey_action_renew_IP=ZVMODELVZ New IP Address Automatically Obtained from the DHCP Server is:
APSurvey_action_renewing=Updating the IP settings...
APSurvey_action_renew_success=Successfully updated the IP settings. You will be redirected to ZVMODELVZ.
APSurvey_action_searching_noresult=Failed to detect any networks.
APSurvey_action_hidden_key=Hide the network key
APSurvey_action_searching_AP=Searching for available networks, please wait...
APSurvey_msg_renew_fail=ZVMODELVZ failed to automatically obtain a new IP Address from the DHCP Server. Please try again.
APSurvey_msg_renew_fail_hint0=If you failed to establish the wireless connection, check the IP Address settings of your computer.
APSurvey_msg_renew_fail_hint1=If you failed to establish the wireless connection, check the IP Address settings of your computer. <br/>If you still fail to establish the wireless connection,
APSurvey_msg_renew_fail_hint2=Click here to go back to the Advanced Settings page.
APSurvey_msg_connect_open_wlan=You are trying connect to an unsecured network.\n The information transmitted in the network is not encrypted.
APSurvey_msg_renew_IP=The wireless router is renewing or resetting the IP Address. Please wait...
APSurvey_msg_ask_to_input1= required you entering
APSurvey_msg_ask_to_input2=SSID and
APSurvey_msg_waiting_to_connect=Please wait, the ZVMODELVZ is connecting to
APSurvey_Validate_ssid_blank=Please enter the valid wireless name.
APSurvey_Validate_key_blank=Please enter the valid network key.
APSurvey_main_title=Select the network and click [Connect].
Input_some_value=enter
Network_key=Network Key
Security=Security
Radio=Radio
AP_fail_get_IPaddr=Failed to get the IP information.
AP_Remote_IP=AP IP Address
AP_survey=Access Point Survey
statusTitle_AP=Access Point Status
HSDPAConfig_connection=Connection Setting
HSDPAConfig_pin_code_itemname=PIN Code
HSDPAConfig_pin_code_itemdesc=Please input the PIN Code of your SIM Card. It must be the 4 digits.
HSDPAConfig_private_apn_itemname=APN Service
HSDPAConfig_private_apn_itemdesc=If you do not know the APN Service name, please contact your ISP.
HSDPAConfig_hsdpa_mode_Backup=Backup
HSDPAConfig_hsdpa_mode_Equalweight=Equal Weight
HSDPAConfig_hsdpa_mode_Alwayshigh=Always High
HSDPAConfig_hsdpa_mode_Alwayslow=Always Low
HSDPAConfig_BaseStationType_itemname=Station Type
HSDPAConfig_BaseStationSignalStrength_itemname=Base Station Signal Strength
HSDPAConfig_ConnectionTime_itemname=Connection Time
HSDPAConfig_TransDataSize_itemname=Transmitted Data Size
HSDPAConfig_ReceviedDataSize_itemname=Received Data Size
HSDPAConfig_TotalDataSize_itemname=Total Data Size
HSDPAConfig_MTU_itemdesc=It means Maximum Transmission Unit (MTU) of USB Modem packet.
HSDPAConfig_MRU_itemdesc=It means Maximum Receive Unit (MRU) of USB Modem packet.
checkbox_Yes=Yes
checkbox_No=No
HSDPAConfig_basic=Basic Setting
HSDPAConfig_hsdpa_enable_itemname=Enable USB Modem?
HSDPAConfig_hsdpa_mode_itemname=USB Modem Mode
HSDPAConfig_ConnStatus_itemname=Connection Status
HSDPAConfig_Subnetmask_itemname=Subnet Mask
HSDPAConfig_DefGateway_itemname=Default Gateway
HSDPAConfig_DNSServers_itemname=DNS Server
AiDisk_Wizard_failedreson1=Aidisk Wizard worked exceptionally. Please try again later.
Full_Clients=Clients
PPPConnection_UserName_sectionname=PPP VPN Client Setting
PPPConnection_detail_sectionname=Account and Detailed Connection Setting
JS_fieldInputError=input error.
JS_field_fulfillSubmask=We will fulfill correct subnet mask.
JS_field_wanip_rule1=is kept for localhost address, please input value between 1 - 233.
JS_field_wanip_rule2=Please input the value between 1 - 233.
Device_Searching=Searching, please wait...
Device_type_01_PC=PC
Device_type_02_RT=Router
Device_type_03_AP=Access Point
Device_type_04_NS=NAS
Device_type_05_IC=IP Camera
Device_type_06_OD=Other Device
Device_type_07_PR=Printer
Device_type_08_XB=Game Console
Device_service_iTune=iTune Service:
Device_service_Printer=Printer Service:
Device_service_Wireless=Wireless:
ddnsname_computername=After applying the setting, the Device Name is also changed at the same time. Do you continue?
JS_storageright=It's the name of the ZVMODELVZ, and standard input characters include letters (A-Z,a-z), digits (0-9), spaces, underscores (_) and hyphens (-). The first and last character should not contain any spaces. Using a non-standard name will prevent other users from finding your computer on the network.
not_support_script=Your browser does not support JavaScript. Choose a browser that supports JavaScript or enable it to use the multi-functional router, ZVMODELVZ.
Help_of_Workgroup=It is the group name of the ZVMODELVZ in the Network Neighborhood, and standard input characters include letters (A-Z,a-z), digits (0-9), spaces, underscores (_), and hyphens (-). There should not be any space in the first and last character. Using a non-standard name results in other users cannot find your computer in LAN.
Help_of_Run_prog=You can save the script file in the first partition of your USB Disk and enter its file name here. ZVMODELVZ executes this script when the system mounts the USB Disk.
File_Pop_content_alert_desc1=Username cannot be blank.
File_Pop_content_alert_desc2=Username cannot be less than two characters.
File_Pop_content_alert_desc3=Username cannot be greater than 20 characters.
File_Pop_content_alert_desc4=Username can only contain alphanumeric characters and the dash symbol.
File_Pop_content_alert_desc5=This account already exists.\nPlease enter a different name.
File_Pop_content_alert_desc6=Password cannot be blank!
File_Pop_content_alert_desc7=Passwords should match!
File_Pop_content_alert_desc8=There should not be any spaces in the password.
File_Pop_content_alert_desc9=Password can only contain alphanumeric characters.
File_Pop_content_alert_desc10=The new password takes effect after rebooting or the next time you log into the system.
File_content_alert_desc1=If you want to share this disk, create at least one volume for this disk.
File_content_alert_desc2=If you want to share this volume, create at least one Shared Folder for this volume.
File_content_alert_desc3=Are you sure to delete the shared folder?
File_content_alert_desc4=Are you sure to rename the shared folder?
File_content_alert_desc5=Renaming a share with more than 12 characters may make it invisible in Windows version.\nDo you want to continue?
File_content_alert_desc6=Share name cannot be blank.
File_content_alert_desc7=Share name can only contain alphanumeric, dash, underscore, space characters.
File_content_alert_desc8=The share name already exists in this volume. \nPlease enter a different name!
File_content_alert_desc9=The system cannot create a share folder on it.
File_content_alert_desc10=Creating a share with more than 12 characters may make it invisible in some Windows version.\nDo you want to continue?
File_content_alert_desc11=MYSHARE1 is the system folder and cannot be edited.
File_content_alert_desc12=There is no volume in this device.
File_content_alert_desc13=There is no folder in this volume.
File_content_alert_desc14=You cannot delete this share or modify it's name. If you want to do so, please translate the file system of this hard drive to ReiserFS file system.
enableCIFS=Enable SMB Server?
enableFTP=Enable FTP Server?
Noaccount=No Account
account_overflow=Only 50 accounts allowed.
AddAccountTitle=Add new account
DelAccountTitle=Delete this account
ModAccountTitle=Modify this account
AddFolderTitle=Add new folder
DelFolderTitle=Delete this folder
ModFolderTitle=Rename this folder
AddAccountAlert=New account has read/write access rights.
DelAccountAlert=This account will be deleted with its access rights in the Network Neighborhood and FTP.<p>Are you sure you want to continue?</p>
ModAccountAlert=The account's access rights does not change after modifying its name and password. If you choose not to do any changes, the account values will remain the same.
Confirmpassword=Retype Password
ModAccountPassword=New Password
FolderName=Folder Name
in=in
DelFolderAlert1=Are you sure you want to delete the folder
DelFolderAlert2= \" and the rights related to the account? Are you sure you want to continue?
PoolName=Partition Name
NewFolderName=New Folder Name
AddFolderAlert=The default access rights for a new folder is read/write.
DelFolderAlert=Before deleting the folder, ensure that it is empty.<br><br>Are you sure you want to delete the folder?
ModFolderAlert=After renaming, the access rights for the folder and its sub-folder do not change.
SambaClose=Share via the Network Neighborhood is disabled.
FTPClose=Share via the FTP is disabled.
Clickhere=Click here
HowToSharebySamba1= to enter share space or click [Start] -> [Run] and key in
HowToSharebySamba2= then Click [OK] to enter share space.
HowToSharebySamba_notIE1=For example, in Microsoft Windows desktop, click [Start] -> [Run] and key in:
HowToSharebySamba_notIE2= then Click [OK] to enter share space in the Network Neighborhood.
HowToSharebyFTP1= to enter FTP share space.
HowToSharebyFTP3=Enable the DDNS service to allow access via the FTP, or click the following link:
HowToSharebyFTP4=(Only accessible in LAN).
menu1=Network Map
menu2=VPN Server
menu6=VPN Client
menu3=AiDisk
menu4=Network Traffic
menu5=Advanced Settings
menu5_title=Advanced Settings
menu5_1=Wireless
menu5_11=Wireless 2.4GHz
menu5_12=Wireless 5GHz
menu5_2=LAN
menu5_3=WAN
menu5_4=USB Application
menu5_5=Firewall
menu5_6=Administration
menu5_7=System Log
menu5_8=System Info
menu5_9=Wireless & Wired Info
menu5_10=Customization
menu5_1_1=General
menu5_1_2=Guest AP
menu5_1_3=Bridge
menu5_1_4=Wireless MAC Filter
menu5_1_5=RADIUS Settings
menu5_1_6=Professional
menu5_2_1=LAN IP
menu5_2_2=DHCP Server
menu5_2_3=Route
menu5_2_4=IPTV
menu5_2_5=Ethernet Switch
menu5_3_1=Internet Connection
menu5_3_2=QoS
menu5_3_3=IPv6 Protocol
menu5_3_4=Port Forwarding
menu5_3_5=DMZ
menu5_3_6=DDNS
menu5_4_1=Network Neighborhood Share
menu5_4_2=FTP Share
menu5_4_3=Common Setting
menu5_4_4=Modem
menu5_4_5=Printer
menu5_5_1=General
menu5_5_2=URL Filter
menu5_5_3=MAC Filter
menu5_5_4=Network Services Filter
menu5_5_5=Netfilter
menu5_6_1=Operation Mode
menu5_6_2=System
menu5_6_3=Firmware Upgrade
menu5_6_4=Settings
menu5_6_5=Services
menu5_6_6=Console
menu5_7_1=System Status
menu5_7_2=General Log
menu5_7_3=DHCP Leases
menu5_7_4=Wireless
menu5_7_5=Port Forwarding
menu5_7_6=Routing Table
menu5_7_7=VPN Clients
menu5_7_8=Connections
menu5_8_1=CPU Usage
menu5_8_2=Memory Usage
menu5_10_1=Buttons/LED
menu5_10_2=Scripts
menu5_10_3=Internet Detector
menu5_1_desc=Configure your Wireless Connection, Security and other Advanced Parameters.
menu5_2_desc=Configure LAN, DHCP and Route Settings.
menu5_3_desc=Configure the Internet Connection, QoS and Server setting.
menu5_4_desc=Configure the USB Device and share your files in LAN or WAN.
menu5_5_desc=Configure the Firewall and Filter mechanisms to protect your network.
menu5_6_desc=Configure the system and upgrade the firmware of ZVMODELVZ.
menu5_7_desc=Monitor the status and various system logs.
statusTitle_System=ZVMODELVZ
statusTitle_Internet=Internet Status
statusTitle_Intranet=Intranet Status
statusTitle_Client=Client Status
statusTitle_USB_Disk=USB Storage Status
statusTitle_Printer=USB Printer Status
statusTitle_Modem=USB Modem Status
statusTitle_Hub=USB Hub Ports Status
statusTitle_SATA=SATA Ports Status
statusTitle_Card=SD Card Status
Safelyremoveprinter_confirm=Are you sure you want to remove the chosen printer?
Security_Level=Security Level
Wired_Clients=Wired Clients
Wireless_Clients=Wireless Clients
Noclients=Disable Clients Status
OtherDevice=Other Device
NoDevice=No Device
wl_securitylevel_0=None
wl_securitylevel_1=Low
wl_securitylevel_2=Medium
wl_securitylevel_3=High
wl_securitylevel_4=Manually
DISK_UNMOUNTED=Unmounted
Availdisk=Available
Totaldisk=Total
Wireless_name=Wireless Name
Wireless_Radio=Wireless Radio
WEPKey=WEP Key
WPA-PSKKey=WPA-PSK Key:
LAN_IP=LAN IP
MAC_Address=MAC Address
ConnectionStatus=Connection Status:
WAN_IP=WAN IP
Connectiontype=Connection Type
Gateway=Gateway
Connected=Connected
Disconnected=Disconnected
PauseConnect=Pause
Connect=Reconnect
Disconnect=Disconnect
btn_go=Go
MoreConfig=More Config
Printing_status=Printing Status:
Printing_button_item=Monopoly Mode:
Computer_Name=Name
ConnectedClient=Client List
BlockedClient=Blocked Client List
Type=Type
Nodata=No Data
Block=Block
unBlock=Unblock
Priority=Priority
Priority_Level_1=High
Priority_Level_2=Normal
Priority_Level_3=Low
block_Comfirm1=Are you sure you want to block this client
block_Comfirm2=Blocked clients will not be able to connect to the Internet via ZVMODELVZ.
unblock_Comfirm1=Are you sure you want to remove the client
unblock_Comfirm2=from the blocked client list?
macfilter_alert_str1=have changed to be [Accept]. If you want to block clients, you need change it to [Reject].
Modelname=Model Name
Manufacturer=Manufacturer
Totalspace=Total Space
Availablespace=Available Space
DiskUsage=Disk Usage
UPnPMediaServer=UPnP/DLNA Media Server
UPnPMediaServer_Help=ZVMODELVZ supports UPnP standards. You can enable it and allow other UPnP devices, such as PS3 or a digital media player, to access the multimedia files in the USB Disk.
AiDiskWizard=AiDisk Wizard
Safelyremovedisk_title=Safely Remove Disk
Safelyremovedisk=Safe to Remove Disk
btn_remove=Remove
Safelyremovedisk_confirm=Do you really want to remove this disk?
underAPmode=Under the AP mode, ZVMODELVZ disables Internet function.
btn_Enable=Enable
btn_Disable=Disable
btn_Enabled=Enabled
btn_Disabled=Disabled
DigitalMediaServer=Digital Media Server
DigitalMediaPlayer=Digital Media Player
TV=TV
Bandwidth=Bandwidth
P2P_Priority=P2P Priority: Lower
P2P_Priority_desc=Priority of P2P packets is lower than application you choose.
P2P_Bandwidth1=P2P:
P2P_Bandwidth2=Available Bandwidth
P2P_Bandwidth2_desc=In default case, P2P will use all bandwidth.
Game=Game
Internet=Internet
Stream=Stream
EzQoS_helptitle=About EzQoS
EZQoSDesc1=EZQoS provides 4 types of popular Internet applications and enables you to easily configure your Quality of Service (QoS) settings. QoS ensures the performance of the Internet download speed and enables you to change its settings in different scenarios.<p>For example: Application you choose will remain the quality and will not lag even when you use P2P.</p><p>If your uplink speed has reached 40 Mb/s, we suggest you need not enable EzQoS for saving system resource.</p>
EZQoSDesc2=For more professional and detailed configuration, please enter
Day=days
Hour=hours
Minute=minutes
Second=seconds
AiDiskWelcome_title=Welcome to AiDisk Wizard
AiDiskWelcome_desp=AiDisk enables you to:
AiDiskWelcome_desp1=Share files in the USB Disk through the Internet.
AiDiskWelcome_desp2=Create your own domain name for the FTP Server.
AiDiskWelcome_set_again=Set again
Step1_desp=Decide how to share your folders.
Step2_desp=Create your domain name via the ASUS DDNS services.
Step3_desp=Configuration is successful.
AiDisk_Step1_helptitle=Creating the access rights
AiDisk_Step2_helptitle=Setting up the DDNS services
AiDisk_Step3_helptitle=Setting up the shared disk
AiDisk_Step1_help=ZVMODELVZ provides you with these three types of access rights to the shared resources:<p>a) limitless access rights, in which anyone can access your USB Disk in the FTP server.</p><p>b) limited access rights, in which access to your USB Disk is limited to those you have assigned access rights. For this type, the ZVMODELVZ creates the [admin/Family] accounts.</p><p>c) admin rights in which the ZVMODELVZ creates the [admin] account for full access rights.</p><p>Note: The permission settings will clear your original set of accounts.</p>
AiDisk_Step1_help2=Note: Account management function cannot work on NTFS partition.
AiDisk_Step2_help=ASUS DDNS creates a domain name with a dynamic IP Address.<p>If you need to configure other DDNS service settings, please refer to <a href='/Advanced_ASUSDDNS_Content.asp' target='_top'>Advanced DDNS</a></p>
AiDisk_Step3_help=<a href='../Advanced_AiDisk_samba.asp' target='_top'>Network Neighborhood Share</a>: You can operate the Samba server professionally. <br/><a href='../Advanced_AiDisk_ftp.asp' target='_top'>FTP Share</a>: You can operate the FTP server professionally.
Step2_method=My FTP server is shared.
Step2_method1=Limitless access rights
Step2_method2=Limited access rights
Step2_method3=Admin rights
AiDisk_Account=Account
AiDisk_Password=Password
AiDisk_Read=Read