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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
|
# coovachilli.pot
# generated from ./applications/luci-coovachilli/luasrc/i18n/coovachilli.en.lua
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-08-16 06:59+0200\n"
"PO-Revision-Date: 2023-02-20 15:36+0000\n"
"Last-Translator: tictactoe <phandinhminh@protonmail.ch>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscoovachilli/vi/>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.16-dev\n"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
msgid "0 means unlimited"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
msgid "802.1Q"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
msgid "802.1Q only"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
msgid "A specific URL to be given in WISPr XML LoginURL"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:403
msgid "Accounting port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:451
msgid "Accounting update"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:443
msgid "Admin password"
msgstr "Mật mã quản trị "
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
msgid "Admin user"
msgstr "Người quản trị "
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:236
msgid "Allow Local MAC"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
msgid "Allow all sessions when RADIUS is not available"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:452
msgid "Allow all, absent RADIUS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
msgid "Allow client to use any IP Address"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
msgid "Allow unauthenticated users access to any DNS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:161
msgid "Allowed"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:237
msgid "Allowed MACs"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
msgid "Always respond to DHCP to the broadcast IP, when no relay."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:123
msgid "Any DNS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:129
msgid "Any IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:398
msgid "Authentication port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:391
msgid "Auxiliary server"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
msgid "Be strict about MAC Auth (no DHCP reply until we get RADIUS reply)"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:371
msgid "Broadcast Answer"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
msgid "COA Port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
msgid "COA no IP check"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
msgid "Chilli XML"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
msgid ""
"ChilliSpot will try to authenticate all users based on their mac address "
"alone"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
msgid "Connection down script"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
msgid "Connection up script"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:59
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
msgid "Coova Chilli"
msgstr ""
#: applications/luci-app-coovachilli/root/usr/share/luci/menu.d/luci-app-coovachilli.json:3
msgid "CoovaChilli"
msgstr "CoovaChilli"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:355
msgid "DHCP End"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:360
msgid "DHCP Gateway IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:365
msgid "DHCP Gateway Port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:350
msgid "DHCP Start"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:338
msgid "DHCP interface"
msgstr "Giao diện DHCP"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:306
msgid "DNS Auxiliary"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:301
msgid "DNS Primary"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:83
msgid "Debug"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
msgid ""
"Default bandwidth max down set in bps, same as WISPr-Bandwidth-Max-Down."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
msgid "Default bandwidth max up set in bps, same as WISPr-Bandwidth-Max-Up."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:173
msgid "Default idle timeout"
msgstr "Mặc định idle timeout"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
msgid "Default interim interval"
msgstr "Mặc định interim interval"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
msgid "Default session timeout"
msgstr "Mặc định session timeout"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
msgid "Deny MAC authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:234
msgid "Deny access (even UAM) to MAC addresses given Access-Reject"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
#, fuzzy
msgid "Directory where embedded local web content is placed"
msgstr "Thống nhất cấu hình phương pháp cài đặt"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:458
msgid "Do not check the source IP address of RADIUS disconnect requests"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
#, fuzzy
msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
msgstr "Thống nhất cấu hình phương pháp cài đặt"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
msgid "Do not offer WISPr 1.0 XML"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
msgid "Do not offer WISPr 2.0 XML"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
#, fuzzy
msgid ""
"Do not return to UAM server on login success, just redirect to original URL"
msgstr "Thống nhất cấu hình phương pháp cài đặt"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:311
msgid "Domain"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:152
msgid "Domain suffixes"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
msgid "Dynamic IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
msgid "Enable EAPOL"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:75
msgid "Enabled"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
msgid "Executable to run as a CGI type program"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:328
msgid ""
"Executed after a session has moved from authorized state to unauthorized"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:324
msgid "Executed after a session is authorized"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
msgid "Executed after the TUN/TAP network interface has been brought up"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
msgid "Executed after the TUN/TAP network interface has been taken down"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:65
msgid "General"
msgstr ""
#: applications/luci-app-coovachilli/root/usr/share/rpcd/acl.d/luci-app-coovachilli.json:3
msgid "Grant UCI access for luci-app-coovachilli"
msgstr "Cấp quyền truy cập UCI cho luci-app-coovachilli"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
msgid "Homepage"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:370
msgid "IEEE 802.1x authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
msgid "IP address from which RADIUS requests are accepted"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:320
msgid "IP down script"
msgstr "IP down script"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
msgid "IP up script"
msgstr "IP up script"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:261
msgid "IPv6 mode"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:124
msgid "Ignore Success"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
msgid ""
"Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
"records"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
msgid "Lease time"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:140
msgid "Listen"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:213
msgid "Local users"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:223
msgid "Location Name"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:156
msgid "Logout IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:232
msgid "MAC authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
msgid "MAC password"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
msgid "MAC re-authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:245
msgid "MAC suffix"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:279
msgid "Max clients"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:183
msgid "Max download bandwidth"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:188
msgid "Max upload bandwidth"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
msgid "NAS ID"
msgstr "NAS ID"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
msgid "NAS IP"
msgstr "NAS IP "
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
msgid "NAS MAC"
msgstr "NAS MAC"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:423
msgid "NAS-Identifier"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:436
msgid "NAS-Port-Type"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
msgid "Net"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:67
msgid "Network Configuration"
msgstr "Cấu hình Mạng"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:287
msgid "Network address of the uplink interface"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:125
msgid "No WISPr"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:126
msgid "No WISPr 1 XML"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:127
msgid "No WISPr 2 XML"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:449
msgid "Open ID Auth"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:462
msgid "Options for RADIUS proxy"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:253
msgid "Options for TUN"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
msgid "Original URL"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:241
#, fuzzy
msgid "Password used when performing MAC authentication"
msgstr "Cấu hình RADIUS"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
msgid "Port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:215
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
msgid "Post authentication proxy"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:387
msgid "Primary server"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
msgid "Program in inetd style to handle all uam requests"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:477
msgid "Proxy Client"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:466
msgid "Proxy Listen"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
msgid "Proxy Port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:482
msgid "Proxy Secret"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:68
msgid "RADIUS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:378
msgid "RADIUS configuration"
msgstr "Cấu hình RADIUS"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:235
msgid "Re-Authenticate based on MAC address for every initial URL redirection"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
msgid "Re-read configuration file at this interval"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:85
msgid "Re-read interval"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:413
msgid "Retries"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:418
msgid "Retry seconds"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:128
msgid "Return the so-called Chilli XML along with WISPr XML."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
msgid "SSID"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:120
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:395
msgid "Secret"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:447
msgid "Send CoovaChilli-OriginalURL in Access-Request"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:382
msgid "Send IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
msgid "Server"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:62
msgid "Settings"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:334
msgid "Special options for DHCP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:228
msgid "Special options for MAC authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:292
msgid ""
"Specifies a pool of dynamic IP addresses. If this option is omitted the "
"network address specified by the Net option is used"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
msgid ""
"Specifies a pool of static IP addresses. With static address allocation the "
"IP address of the client can be specified by the RADIUS server."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:107
msgid "State directory"
msgstr "Dạnh bạ vùng"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:297
msgid "Static IP"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:131
msgid "Strict DNS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:233
msgid "Strict MAC authentication"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:373
msgid "Support 802.1Q VLAN tagged traffic only"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:372
msgid "Support for 802.1Q/VLAN network"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
msgid "Swap Octets"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:448
msgid "Swap the meaning of input and output octets"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:88
msgid "Syslog facility"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:274
msgid "TCP MSS"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:269
msgid "TCP Window"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:144
msgid "TCP port to bind to for authenticating clients"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
#, fuzzy
msgid "TCP port to bind to for only serving embedded content"
msgstr "Thống nhất cấu hình phương pháp cài đặt"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:266
msgid "TUN device"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:284
msgid "TX Q length"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:408
msgid "Timeout"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:66
msgid "UAM and MAC Authentication"
msgstr "Xác thực UAM và MAC"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:472
msgid "UDP Port to listen to for accepting RADIUS requests"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:454
msgid "UDP port to listen to for accepting RADIUS disconnect requests"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:210
msgid "UI"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:136
#, fuzzy
msgid "URL of homepage to redirect unauthenticated users to"
msgstr ""
"Được sử dụng để thông báo cho khách hàng về tên miền để dùng cho các tra cứu "
"DNS"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
#, fuzzy
msgid "URL of web server to use for authenticating clients"
msgstr "Thống nhất cấu hình phương pháp cài đặt"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
msgid "Unique IP address of the NAS (nas-ip-address)"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
msgid "Unique MAC address of the NAS (called-station-id)"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:113
msgid "Universal access method"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:259
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
msgid "Use IPv6"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:133
msgid "Use status file"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
msgid "VLAN"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:428
msgid "WISPr Location ID"
msgstr "WISPr vị trí ID"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
msgid "WISPr Location Name"
msgstr "Tên vị trí WISPr"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:165
msgid "WISPr Login"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:450
msgid "WPA guests"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:60
msgid "access controller for WLAN."
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:345
msgid "in seconds"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:148
msgid "iport"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:260
msgid "only"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:193
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:195
msgid "passed on to the UAM server in the initial redirect URL"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:219
msgid "port"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:207
msgid "www binary"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:205
msgid "www directory"
msgstr ""
#~ msgid "Do not check the source IP address of radius disconnect requests"
#~ msgstr ""
#~ "Không tên kiểm tra nguồn địa chỉ IP trong bán kính yêu cầu ngừng kết nối"
#~ msgid "UDP Port to listen to for accepting radius requests"
#~ msgstr "Cổng UDP để listen để chấp nhận yêu cầu radius"
#~ msgid "UDP port to listen to for accepting radius disconnect requests"
#~ msgstr "Cửa UDP để nghe khi chấp nhận một yêu cầu ngừng kết nối"
#~ msgid "General configuration"
#~ msgstr "Cấu hình tổng quát"
#~ msgid "General CoovaChilli settings"
#~ msgstr "Các cài đặt CoovaChilli tổng quát"
#~ msgid "Command socket"
#~ msgstr "Command socket"
#~ msgid "UNIX socket used for communication with chilli_query"
#~ msgstr "UNIX socket dùng để giao tiếp với chilli_query"
#~ msgid "Config refresh interval"
#~ msgstr "Config refresh interval"
#~ msgid ""
#~ "Re-read configuration file and do DNS lookups every interval seconds. "
#~ "This has the same effect as sending the HUP signal. If interval is 0 "
#~ "(zero) this feature is disabled. "
#~ msgstr ""
#~ "Đọc lại tập tin cấu hình và tra cưứ DNS mỗi giây. Cái này có ảnh hưởng "
#~ "giống như đang gửi một tín hiệu HUP. Nếu interval là 0, tính năng này sẽ "
#~ "bị vô hiệu hóa. <span class=\"translation-space\"> </span> "
#~ msgid "Pid file"
#~ msgstr "Tập tin Pid"
#~ msgid "Filename to put the process id"
#~ msgstr "Tên tập tin để đặt làm ID xử lý"
#~ msgid "Directory of non-volatile data"
#~ msgstr "Thư mục của những dữ liệu cố định"
#~ msgid "TUN/TAP configuration"
#~ msgstr "Cấu hình TUN/TAP"
#~ msgid "Network/Tun configuration"
#~ msgstr "Mạng lưới/ Cấu hình TUN"
#~ msgid "Network down script"
#~ msgstr "Network down script"
#~ msgid ""
#~ "Script executed after a session has moved from authorized state to "
#~ "unauthorized"
#~ msgstr ""
#~ "Script đã thực hiện sau khi một section đã di chuyển từ nơi có thẩm quyền "
#~ "đến nơi không"
#~ msgid "Network up script"
#~ msgstr "Network up script"
#~ msgid "Script executed after the tun network interface has been brought up"
#~ msgstr "Script thi hành sau khi giao diện mạng tun được đưa lên"
#~ msgid "Primary DNS Server"
#~ msgstr "Primary DNS Server"
#~ msgid "Secondary DNS Server"
#~ msgstr "Secondary DNS Server"
#~ msgid "Domain name"
#~ msgstr "Tên miền"
#~ msgid ""
#~ "Is used to inform the client about the domain name to use for DNS lookups"
#~ msgstr ""
#~ "Được sử dụng để thông báo cho khách hàng về tên miền để dùng cho các tra "
#~ "cứu DNS"
#~ msgid "Dynamic IP address pool"
#~ msgstr "Dynamic IP address pool"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Chỉ định một pool of dynamic IP addresses"
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script thực hiện sau khi giao diện mạng tun bị lấy xuống"
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr "Script thực hiện sau khi giao diện mạng TUN/TAP đã được đưa lên"
#~ msgid "Uplink subnet"
#~ msgstr "Uplink subnet"
#~ msgid "Network address of the uplink interface (CIDR notation)"
#~ msgstr "Địa chỉ mạng của giao diện uplink (CIDR chú thích)"
#~ msgid "Static IP address pool"
#~ msgstr "Static IP address pool"
#~ msgid "Specifies a pool of static IP addresses"
#~ msgstr "Chỉ định một pool of static IP addresses"
#~ msgid "TUN/TAP device"
#~ msgstr "TUN/TAP device"
#~ msgid "The specific device to use for the TUN/TAP interface"
#~ msgstr "Thiết bị cụ thể để dùng cho giao diện TUN/TAP"
#~ msgid "TX queue length"
#~ msgstr "Độ dài của TX queue"
#~ msgid "The TX queue length to set on the TUN/TAP interface"
#~ msgstr "Độ dài TX queue để đặt trên giao diện TUN/TAP "
#~ msgid "Use TAP device"
#~ msgstr "Dùng dụng cụ TAP"
#~ msgid "Use the TAP interface instead of TUN"
#~ msgstr "Dùng giao diện TAP thay cho TUN"
#~ msgid "DHCP configuration"
#~ msgstr "Cấu hình DHCP"
#~ msgid "Set DHCP options for connecting clients"
#~ msgstr "Đặt lựa chọn DHCP cho đối tượng kết nối"
#~ msgid "DHCP end number"
#~ msgstr "Số cuối DHCP"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Chỗ để stop những gán IP (mặc định 254)"
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Giao diện Ethernet để listen cho những giao diện downlink "
#~ msgid "Listen MAC address"
#~ msgstr "Nghe địa chỉ MAC"
#~ msgid ""
#~ "MAC address to listen to. If not specified the MAC address of the "
#~ "interface will be used"
#~ msgstr ""
#~ "Địa chỉ MAC để nghe. Nếu địa chỉ MAC chỉ định của giao diện sẽ được sử "
#~ "dụng "
#~ msgid "DHCP start number"
#~ msgstr "Số DHCP bắt đầu "
#~ msgid "Where to start assigning IP addresses (default 10)"
#~ msgstr "Chỗ để bắt đầu gán địa chỉ IP (mặc định 10)"
#~ msgid "Enable IEEE 802.1x"
#~ msgstr "Kích hoạt IEEE 802.1x"
#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests"
#~ msgstr "Kích hoạt quá trình xác thực IEEE 802.1x và lắng nghe yêu cầu EAP"
#~ msgid "Leasetime"
#~ msgstr "Leasetime"
#~ msgid "Use a DHCP lease of seconds (default 600)"
#~ msgstr "Dùng một DHCP lease ở giây (600)"
#~ msgid "Allow session update through RADIUS"
#~ msgstr "Cho phép phiên cập nhật thông qua RADIUS"
#~ msgid ""
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
#~ msgstr ""
#~ "Cho phép phiên cập nhật tham số phiên với RADIUS được gửi trong "
#~ "Accounting-Response"
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgstr ""
#~ "Mật mã dùng để xác thực chế độ quản trị để pick up cấu hình chilli và "
#~ "thành lập một công cụ &quot;system&quot; session"
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgstr ""
#~ "User name dùng để xác thực chế độ quản trị để pick up cấu hình chilli và "
#~ "thành lập một công cụ &quot;system&quot; session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Không kiểm tra yêu cầu ngừng kết nối"
#~ msgid "RADIUS disconnect port"
#~ msgstr "Cửa ngừng kết nối RADIUS"
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Giá trị để dùng trong RADIUS NAS-IP-Address attribute"
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr ""
#~ "Giá trị địa chỉ MAC để dùng trong RADIUS Called-Station-ID attribute"
#~ msgid "Allow OpenID authentication"
#~ msgstr "Cho phép xác thực OpenID "
#~ msgid ""
#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-"
#~ "openidauth in RADIUS Access-Requests"
#~ msgstr ""
#~ "Cho phép xác thực OpenID bằng cách gửi ChilliSpot-Config=allow-openidauth "
#~ "in RADIUS Access-Requests"
#~ msgid "RADIUS accounting port"
#~ msgstr "Cổng RADIUS accounting"
#~ msgid ""
#~ "The UDP port number to use for radius accounting requests (default 1813)"
#~ msgstr "Số của cổng UDP dùng cho yêu cầu radius accounting (mặcđịnh 1813)"
#~ msgid "RADIUS authentication port"
#~ msgstr "Cổng xác thực RADIUS"
#~ msgid ""
#~ "The UDP port number to use for radius authentication requests (default "
#~ "1812)"
#~ msgstr "Số của cổng UDP để yêu cầu xác thực radius (default 1812)"
#~ msgid "Option radiuscalled"
#~ msgstr "Tùy chọn radiuscalled"
#~ msgid "RADIUS listen address"
#~ msgstr "Địa chỉ nghe RADIUS"
#~ msgid "Local interface IP address to use for the radius interface"
#~ msgstr "Địa chỉ IP giao diện địa phương để dùng cho giao diện radius"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS vị tri ID"
#~ msgid "RADIUS location name"
#~ msgstr "Tên vị trí RADIUS"
#~ msgid "Network access server identifier"
#~ msgstr "Network truy cập server identifier"
#~ msgid "Option radiusnasip"
#~ msgstr "Lựa chọn radiusnasip"
#~ msgid "NAS port type"
#~ msgstr "Loại cổng NAS"
#~ msgid ""
#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)"
#~ msgstr ""
#~ "Giá trị của NAS-Port-Type attribute. Mặc định tới 19 (Wireless-"
#~ "IEEE-802.11)"
#~ msgid "Send RADIUS VSA"
#~ msgstr "Gửi RADIUS VSA"
#~ msgid "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request"
#~ msgstr "Gửi ChilliSpot-OriginalURL RADIUS VSA trong yêu cầu truy cập"
#~ msgid "RADIUS secret"
#~ msgstr "RADIUS bí mật"
#~ msgid "Radius shared secret for both servers"
#~ msgstr "Radius chia sẻ bí mật cho cả 2 servers"
#~ msgid "RADIUS server 1"
#~ msgstr "RADIUS server 1"
#~ msgid "The IP address of radius server 1"
#~ msgstr "Địa chỉ IP của radius server 1"
#~ msgid "RADIUS server 2"
#~ msgstr "RADIUS server 2"
#~ msgid "The IP address of radius server 2"
#~ msgstr "Địa chỉ IP của radius server 2"
#~ msgid "Swap octets"
#~ msgstr "Swap octets"
#~ msgid ""
#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related "
#~ "to RADIUS attribtues"
#~ msgstr ""
#~ "Hoán ý nghĩa của &quot;input octets&quot; và &quot;output "
#~ "octets&quot; khi nó liên quan tới RADIUS attribtues"
#~ msgid "Allow WPA guests"
#~ msgstr "Cho phép WPA guests"
#~ msgid ""
#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-"
#~ "guests in RADIUS Access-Requests"
#~ msgstr ""
#~ "Cho phép xác thực WPA Guest bằng cách gửi ChilliSpot-Config=allow-wpa-"
#~ "guests trong RADIUS yêu cầu truy cập"
#~ msgid "Proxy client"
#~ msgstr "Proxy client"
#~ msgid ""
#~ "IP address from which radius requests are accepted. If omitted the server "
#~ "will not accept radius requests"
#~ msgstr ""
#~ "Địa chỉ IP mà yêu cầu radius được chấp nhận. Nếu bỏ qua server sẽ không "
#~ "chấp nhận yêu cầu radius."
#~ msgid "Proxy listen address"
#~ msgstr "Proxy listen address"
#~ msgid "Local interface IP address to use for accepting radius requests"
#~ msgstr "Địa chỉ giao diện IP địa phương dùng để chấp nhận yêu cầu radius"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
#~ msgid "Proxy secret"
#~ msgstr "Proxy bí mật"
#~ msgid "Radius shared secret for clients"
#~ msgstr "Radius chia sẻ bí mật cho các client"
#~ msgid "UAM configuration"
#~ msgstr "Cấu hình UAM"
#~ msgid "Unified Configuration Method settings"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#~ msgid "Use Chilli XML"
#~ msgstr "Dùng Chilli XML"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Trở về cái gọi là Chilli XML cùng với WISPr XML"
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Mặc định idle timeout trừ khi đặt bởi RADIUS (mặc định tới 0)"
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Mặc định interim-interval cho RADIUS accounting trừ khi đặt bởi RADIUS "
#~ "(defaults tới 0)"
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Mặc định session timeout trừ khi đặt bởi RADIUS (mặc định tới 0)"
#~ msgid "Inspect DNS traffic"
#~ msgstr "Kiểm tra lưu thông DNS"
#, fuzzy
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Do not do WISPr"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "List of resources the client can access without first authenticating"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Allow any DNS server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Allow any DNS server for unauthenticated clients"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Allow any IP address"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid ""
#~ "Allow clients to use any IP settings they wish by spoofing ARP "
#~ "(experimental)"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Allowed domains"
#~ msgstr "Tên miền"
#, fuzzy
#~ msgid ""
#~ "Defines a list of domain names to automatically add to the walled garden"
#~ msgstr ""
#~ "Được sử dụng để thông báo cho khách hàng về tên miền để dùng cho các tra "
#~ "cứu DNS"
#, fuzzy
#~ msgid "UAM homepage"
#~ msgstr "Tên miền"
#, fuzzy
#~ msgid "UAM static content port"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM listening address"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "IP address to listen to for authentication of clients"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM logout IP"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid ""
#~ "Use this IP address to instantly logout a client accessing it (defaults "
#~ "to 1.1.1.1)"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM listening port"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "TCP port to bind to for authenticating clients (default 3990)"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM secret"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Shared secret between uamserver and chilli"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "UAM user interface"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid ""
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "CGI program"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid ""
#~ "Executable to run as a CGI type program (like haserl) for URLs with "
#~ "extension .chi"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "Web content directory"
#~ msgstr "Thống nhất cấu hình phương pháp cài đặt"
#, fuzzy
#~ msgid "MAC configuration"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Configure MAC authentication"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Allowed MAC addresses"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "List of MAC addresses for which MAC authentication will be performed"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Authenticate allowed MAC addresses without the use of RADIUS"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Enable MAC authentification"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Try to authenticate all users based on their mac address alone"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Password"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "Suffix"
#~ msgstr "Cấu hình RADIUS"
#, fuzzy
#~ msgid "coovachilli_macauth_macsuffix_desc"
#~ msgstr "Cấu hình RADIUS"
|