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
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
|
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
"PO-Revision-Date: 2022-12-27 13:49+0000\n"
"Last-Translator: somni <me@somni.one>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscoovachilli/ko/>\n"
"Language: ko\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.15.1-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 "Admin password"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
msgid "Admin user"
msgstr "Admin user"
#: 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 "DHCP interface"
#: 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 "Default idle timeout"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
msgid "Default interim interval"
msgstr "Default interim interval"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
msgid "Default session timeout"
msgstr "Default 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
msgid "Directory where embedded local web content is placed"
msgstr "Directory where embedded local web content is placed"
#: 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
msgid "Do not do any WISPr XML, assume the back-end is doing this instead"
msgstr "Do not do any WISPr XML, assume the back-end is doing this instead"
#: 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
msgid ""
"Do not return to UAM server on login success, just redirect to original URL"
msgstr ""
"Do not return to UAM server on login success, just redirect to original URL"
#: 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 "luci-app-coovachilli에 UCI 접근 권한 허용"
#: 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 "네트워크 설정"
#: 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
msgid "Password used when performing MAC authentication"
msgstr "Password used when performing MAC authentication"
#: 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 "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 "State directory"
#: 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
msgid "TCP port to bind to for only serving embedded content"
msgstr "TCP port to bind to for only serving embedded content"
#: 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 "UAM 및 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
msgid "URL of homepage to redirect unauthenticated users to"
msgstr "URL of homepage to redirect unauthenticated users to"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:117
msgid "URL of web server to use for authenticating clients"
msgstr "URL of web server to use for authenticating clients"
#: 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 "Use status file"
#: 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 Location ID"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
msgid "WISPr Location Name"
msgstr "WISPr Location Name"
#: 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 "Do not check the source IP address of radius disconnect requests"
#~ msgid "UDP Port to listen to for accepting radius requests"
#~ msgstr "UDP Port to listen to for accepting radius requests"
#~ msgid "UDP port to listen to for accepting radius disconnect requests"
#~ msgstr "UDP port to listen to for accepting radius disconnect requests"
#, fuzzy
#~ msgid "General configuration"
#~ msgstr "General configuration"
#~ msgid "General CoovaChilli settings"
#~ msgstr "General CoovaChilli settings"
#~ msgid "Command socket"
#~ msgstr "Command socket"
#~ msgid "UNIX socket used for communication with chilli_query"
#~ msgstr "UNIX socket used for communication with 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 ""
#~ "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. "
#~ msgid "Pid file"
#~ msgstr "Pid file"
#~ msgid "Filename to put the process id"
#~ msgstr "Filename to put the process id"
#~ msgid "Directory of non-volatile data"
#~ msgstr "Directory of non-volatile data"
#~ msgid "TUN/TAP configuration"
#~ msgstr "TUN/TAP configuration"
#~ msgid "Network/Tun configuration"
#~ msgstr "Network/Tun configuration"
#~ msgid "Network down script"
#~ msgstr "Network down script"
#~ msgid ""
#~ "Script executed after a session has moved from authorized state to "
#~ "unauthorized"
#~ msgstr ""
#~ "Script executed after a session has moved from authorized state to "
#~ "unauthorized"
#~ msgid "Network up script"
#~ msgstr "Network up script"
#~ msgid "Script executed after the tun network interface has been brought up"
#~ msgstr "Script executed after the tun network interface has been brought up"
#~ msgid "Primary DNS Server"
#~ msgstr "Primary DNS Server"
#~ msgid "Secondary DNS Server"
#~ msgstr "Secondary DNS Server"
#~ msgid "Domain name"
#~ msgstr "Domain name"
#~ msgid ""
#~ "Is used to inform the client about the domain name to use for DNS lookups"
#~ msgstr ""
#~ "Is used to inform the client about the domain name to use for DNS lookups"
#~ msgid "Dynamic IP address pool"
#~ msgstr "Dynamic IP address pool"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Specifies a pool of dynamic IP addresses"
#~ msgid "Script executed after the tun network interface has been taken down"
#~ msgstr "Script executed after the tun network interface has been taken down"
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgid "Uplink subnet"
#~ msgstr "Uplink subnet"
#~ msgid "Network address of the uplink interface (CIDR notation)"
#~ msgstr "Network address of the uplink interface (CIDR notation)"
#~ msgid "Static IP address pool"
#~ msgstr "Static IP address pool"
#~ msgid "Specifies a pool of static IP addresses"
#~ msgstr "Specifies a 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 "The specific device to use for the TUN/TAP interface"
#~ msgid "TX queue length"
#~ msgstr "TX queue length"
#~ msgid "The TX queue length to set on the TUN/TAP interface"
#~ msgstr "The TX queue length to set on the TUN/TAP interface"
#~ msgid "Use TAP device"
#~ msgstr "Use TAP device"
#~ msgid "Use the TAP interface instead of TUN"
#~ msgstr "Use the TAP interface instead of TUN"
#~ msgid "DHCP configuration"
#~ msgstr "DHCP configuration"
#~ msgid "Set DHCP options for connecting clients"
#~ msgstr "Set DHCP options for connecting clients"
#~ msgid "DHCP end number"
#~ msgstr "DHCP end number"
#~ msgid "Where to stop assigning IP addresses (default 254)"
#~ msgstr "Where to stop assigning IP addresses (default 254)"
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet interface to listen to for the downlink interface"
#~ msgid "Listen MAC address"
#~ msgstr "Listen MAC address"
#~ msgid ""
#~ "MAC address to listen to. If not specified the MAC address of the "
#~ "interface will be used"
#~ msgstr ""
#~ "MAC address to listen to. If not specified the MAC address of the "
#~ "interface will be used"
#~ msgid "DHCP start number"
#~ msgstr "DHCP start number"
#~ msgid "Where to start assigning IP addresses (default 10)"
#~ msgstr "Where to start assigning IP addresses (default 10)"
#~ msgid "Enable IEEE 802.1x"
#~ msgstr "Enable IEEE 802.1x"
#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests"
#~ msgstr "Enable IEEE 802.1x authentication and listen for EAP requests"
#~ msgid "Leasetime"
#~ msgstr "Leasetime"
#~ msgid "Use a DHCP lease of seconds (default 600)"
#~ msgstr "Use a DHCP lease of seconds (default 600)"
#~ msgid "Allow session update through RADIUS"
#~ msgstr "Allow session update through RADIUS"
#~ msgid ""
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
#~ msgstr ""
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgstr ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" 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 to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Do not check disconnection requests"
#~ msgid "RADIUS disconnect port"
#~ msgstr "RADIUS disconnect port"
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgid "Allow OpenID authentication"
#~ msgstr "Allow OpenID authentication"
#~ msgid ""
#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-"
#~ "openidauth in RADIUS Access-Requests"
#~ msgstr ""
#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-"
#~ "openidauth in RADIUS Access-Requests"
#~ msgid "RADIUS accounting port"
#~ msgstr "RADIUS accounting port"
#~ msgid ""
#~ "The UDP port number to use for radius accounting requests (default 1813)"
#~ msgstr ""
#~ "The UDP port number to use for radius accounting requests (default 1813)"
#~ msgid "RADIUS authentication port"
#~ msgstr "RADIUS authentication port"
#~ msgid ""
#~ "The UDP port number to use for radius authentication requests (default "
#~ "1812)"
#~ msgstr ""
#~ "The UDP port number to use for radius authentication requests (default "
#~ "1812)"
#~ msgid "Option radiuscalled"
#~ msgstr "Option radiuscalled"
#~ msgid "RADIUS listen address"
#~ msgstr "RADIUS listen address"
#~ msgid "Local interface IP address to use for the radius interface"
#~ msgstr "Local interface IP address to use for the radius interface"
#~ msgid "RADIUS location ID"
#~ msgstr "RADIUS location ID"
#~ msgid "RADIUS location name"
#~ msgstr "RADIUS location name"
#~ msgid "Network access server identifier"
#~ msgstr "Network access server identifier"
#~ msgid "Option radiusnasip"
#~ msgstr "Option radiusnasip"
#~ msgid "NAS port type"
#~ msgstr "NAS port type"
#~ msgid ""
#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)"
#~ msgstr ""
#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)"
#~ msgid "Send RADIUS VSA"
#~ msgstr "Send RADIUS VSA"
#~ msgid "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request"
#~ msgstr "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request"
#~ msgid "RADIUS secret"
#~ msgstr "RADIUS secret"
#~ msgid "Radius shared secret for both servers"
#~ msgstr "Radius shared secret for both servers"
#~ msgid "RADIUS server 1"
#~ msgstr "RADIUS server 1"
#~ msgid "The IP address of radius server 1"
#~ msgstr "The IP address of radius server 1"
#~ msgid "RADIUS server 2"
#~ msgstr "RADIUS server 2"
#~ msgid "The IP address of radius server 2"
#~ msgstr "The IP address of 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 ""
#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related "
#~ "to RADIUS attribtues"
#~ msgid "Allow WPA guests"
#~ msgstr "Allow WPA guests"
#~ msgid ""
#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-"
#~ "guests in RADIUS Access-Requests"
#~ msgstr ""
#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-"
#~ "guests in RADIUS Access-Requests"
#~ 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 ""
#~ "IP address from which radius requests are accepted. If omitted the server "
#~ "will not accept radius requests"
#~ msgid "Proxy listen address"
#~ msgstr "Proxy listen address"
#~ msgid "Local interface IP address to use for accepting radius requests"
#~ msgstr "Local interface IP address to use for accepting radius requests"
#~ msgid "Proxy port"
#~ msgstr "Proxy port"
#~ msgid "Proxy secret"
#~ msgstr "Proxy secret"
#~ msgid "Radius shared secret for clients"
#~ msgstr "Radius shared secret for clients"
#~ msgid "UAM configuration"
#~ msgstr "UAM configuration"
#~ msgid "Unified Configuration Method settings"
#~ msgstr "Unified Configuration Method settings"
#~ msgid "Use Chilli XML"
#~ msgstr "Use Chilli XML"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Return the so-called Chilli XML along with WISPr XML"
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgid ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Default interim-interval for RADIUS accounting unless otherwise set by "
#~ "RADIUS (defaults to 0)"
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgid "Inspect DNS traffic"
#~ msgstr "Inspect DNS traffic"
#~ msgid ""
#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
#~ "records to prevent dns tunnels (experimental)"
#~ msgstr ""
#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
#~ "records to prevent dns tunnels (experimental)"
#~ msgid "Local users file"
#~ msgstr "Local users file"
#~ msgid ""
#~ "A colon separated file containing usernames and passwords of locally "
#~ "authenticated users"
#~ msgstr ""
#~ "A colon separated file containing usernames and passwords of locally "
#~ "authenticated users"
#~ msgid "Location name"
#~ msgstr "Location name"
#~ msgid "Human readable location name used in JSON interface"
#~ msgstr "Human readable location name used in JSON interface"
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Do not redirect to UAM server"
#~ msgid "Do not do WISPr"
#~ msgstr "Do not do WISPr"
#~ msgid "Post auth proxy"
#~ msgstr "Post auth proxy"
#~ msgid ""
#~ "Used with postauthproxyport to define a post authentication HTTP proxy "
#~ "server"
#~ msgstr ""
#~ "Used with postauthproxyport to define a post authentication HTTP proxy "
#~ "server"
#~ msgid "Post auth proxy port"
#~ msgstr "Post auth proxy port"
#~ msgid ""
#~ "Used with postauthproxy to define a post authentication HTTP proxy server"
#~ msgstr ""
#~ "Used with postauthproxy to define a post authentication HTTP proxy server"
#~ msgid "Allowed resources"
#~ msgstr "Allowed resources"
#~ msgid "List of resources the client can access without first authenticating"
#~ msgstr ""
#~ "List of resources the client can access without first authenticating"
#~ msgid "Allow any DNS server"
#~ msgstr "Allow any DNS server"
#~ msgid "Allow any DNS server for unauthenticated clients"
#~ msgstr "Allow any DNS server for unauthenticated clients"
#~ msgid "Allow any IP address"
#~ msgstr "Allow any IP address"
#~ msgid ""
#~ "Allow clients to use any IP settings they wish by spoofing ARP "
#~ "(experimental)"
#~ msgstr ""
#~ "Allow clients to use any IP settings they wish by spoofing ARP "
#~ "(experimental)"
#~ msgid "Allowed domains"
#~ msgstr "Allowed domains"
#~ msgid ""
#~ "Defines a list of domain names to automatically add to the walled garden"
#~ msgstr ""
#~ "Defines a list of domain names to automatically add to the walled garden"
#~ msgid "UAM homepage"
#~ msgstr "UAM homepage"
#~ msgid "UAM static content port"
#~ msgstr "UAM static content port"
#~ msgid "UAM listening address"
#~ msgstr "UAM listening address"
#~ msgid "IP address to listen to for authentication of clients"
#~ msgstr "IP address to listen to for authentication of clients"
#~ msgid "UAM logout IP"
#~ msgstr "UAM logout IP"
#~ msgid ""
#~ "Use this IP address to instantly logout a client accessing it (defaults "
#~ "to 1.1.1.1)"
#~ msgstr ""
#~ "Use this IP address to instantly logout a client accessing it (defaults "
#~ "to 1.1.1.1)"
#~ msgid "UAM listening port"
#~ msgstr "UAM listening port"
#~ msgid "TCP port to bind to for authenticating clients (default 3990)"
#~ msgstr "TCP port to bind to for authenticating clients (default 3990)"
#~ msgid "UAM secret"
#~ msgstr "UAM secret"
#~ msgid "Shared secret between uamserver and chilli"
#~ msgstr "Shared secret between uamserver and chilli"
#~ msgid "UAM server"
#~ msgstr "UAM server"
#~ msgid "UAM user interface"
#~ msgstr "UAM user interface"
#~ msgid ""
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
#~ msgstr ""
#~ "An init.d style program to handle local content on the uamuiport web "
#~ "server"
#~ msgid ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgstr ""
#~ "Write the status of clients in a non-volatile state file (experimental)"
#~ msgid "WISPr login url"
#~ msgstr "WISPr login url"
#~ msgid "Specific URL to be given in WISPr XML LoginURL"
#~ msgstr "Specific URL to be given in WISPr XML LoginURL"
#~ msgid "CGI program"
#~ msgstr "CGI program"
#~ msgid ""
#~ "Executable to run as a CGI type program (like haserl) for URLs with "
#~ "extension .chi"
#~ msgstr ""
#~ "Executable to run as a CGI type program (like haserl) for URLs with "
#~ "extension .chi"
#~ msgid "Web content directory"
#~ msgstr "Web content directory"
#~ msgid "MAC configuration"
#~ msgstr "MAC configuration"
#~ msgid "Configure MAC authentication"
#~ msgstr "Configure MAC authentication"
#~ msgid "Allowed MAC addresses"
#~ msgstr "Allowed MAC addresses"
#~ msgid "List of MAC addresses for which MAC authentication will be performed"
#~ msgstr ""
#~ "List of MAC addresses for which MAC authentication will be performed"
#~ msgid "Authenticate locally allowed MACs"
#~ msgstr "Authenticate locally allowed MACs"
#~ msgid "Authenticate allowed MAC addresses without the use of RADIUS"
#~ msgstr "Authenticate allowed MAC addresses without the use of RADIUS"
#~ msgid "Enable MAC authentification"
#~ msgstr "Enable MAC authentification"
#~ msgid "Try to authenticate all users based on their mac address alone"
#~ msgstr "Try to authenticate all users based on their mac address alone"
#~ msgid "Password"
#~ msgstr "Password"
#~ msgid "Suffix"
#~ msgstr "Suffix"
#~ msgid "coovachilli_macauth_macsuffix_desc"
#~ msgstr ""
#~ "Suffix to add to the MAC address in order to form the User-Name, which is "
#~ "sent to the radius server"
|