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
|
msgid ""
msgstr ""
"Project-Id-Version: LuCI: coovachilli\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-05-19 19:36+0200\n"
"PO-Revision-Date: 2020-06-07 15:48+0000\n"
"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationscoovachilli/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n"
"X-Poedit-SourceCharset: UTF-8\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 "Пароль администратора"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:441
msgid "Admin user"
msgstr "Администратор"
#: 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 интерфейс"
#: 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 "Таймаут ожидания по умолчанию"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:178
msgid "Default interim interval"
msgstr ""
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:168
msgid "Default session timeout"
msgstr "Таймаут сессии (значение по умолчанию)"
#: 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 "Директория куда будет помещен встроенный Web-контент"
#: 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 "Не выполнять WISPr XML, предполагая выполнение в бэкенд'е"
#: 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 ""
"Не возвращаться на UAM сервер при удачном входе, перенаправить на исходный "
"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 "Предоставить UCI доступ для 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-адреса"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:316
msgid "IP up script"
msgstr "Скрипт установки IP-адреса"
#: 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"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:197
msgid "NAS IP"
msgstr "IP-адрес NAS"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:201
msgid "NAS MAC"
msgstr "MAC адрес NAS"
#: 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 "Пароль для MAC аутентификации"
#: 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 "Директория состояния"
#: 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 ""
#: 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 домашней страницы для перенаправления пользователей не прошедших "
"аутентификацию"
#: 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 или веб-сервер для аутентификации клиентов"
#: 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"
#: applications/luci-app-coovachilli/htdocs/luci-static/resources/view/coovachilli/coovachilli.js:432
msgid "WISPr Location Name"
msgstr "Имя расположения 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 "Не проверять IP-адрес запросов разъединения radius"
#~ msgid "UDP Port to listen to for accepting radius requests"
#~ msgstr "Порт UDP для запросов RADIUS"
#~ msgid "UDP port to listen to for accepting radius disconnect requests"
#~ msgstr "UDP порт для запросов разъединения RADIUS"
#~ msgid "General configuration"
#~ msgstr "Общие настройки"
#~ msgid "General CoovaChilli settings"
#~ msgstr "Общие настройки CoovaChilli"
#~ msgid "Command socket"
#~ msgstr "Сокет команд"
#~ msgid "UNIX socket used for communication with chilli_query"
#~ msgstr "UNIX сокет для связи с chilli_query"
#~ msgid "Config refresh interval"
#~ msgstr "Интервал обновления конфигурации"
#~ 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 ""
#~ "Считывание файла конфигурации и запуск DNS поиска раз в указанный "
#~ "интервал. Достигается тот же эффект что и при отсылке HUP сигнала. "
#~ "Значение интервала выражено в секундах. В случае указания нулевого "
#~ "значения интервала, данная функция становится неактивной."
#~ msgid "Pid file"
#~ msgstr "Pid файл"
#~ msgid "Filename to put the process id"
#~ msgstr "Имя файла, который будет содержать идентификатор процесса (PID)"
#~ msgid "TUN/TAP configuration"
#~ msgstr "TUN/TAP конфигурация"
#~ msgid "Network down script"
#~ msgstr "Скрипт выключения сети"
#~ msgid "Network up script"
#~ msgstr "Скрипт включения сети"
#~ msgid "Primary DNS Server"
#~ msgstr "Первичный DNS сервер"
#~ msgid "Secondary DNS Server"
#~ msgstr "Вторичный DNS сервер"
#~ msgid "Domain name"
#~ msgstr "Доменное имя"
#~ msgid ""
#~ "Is used to inform the client about the domain name to use for DNS lookups"
#~ msgstr "Используется, чтобы сообщить клиенту имя домена при DNS поисках"
#~ msgid "Dynamic IP address pool"
#~ msgstr "Диапазон динамических IP адресов"
#~ msgid "Specifies a pool of dynamic IP addresses"
#~ msgstr "Определяет диапазон динамических IP адресов"
#~ msgid ""
#~ "Script executed after the TUN/TAP network interface has been brought up"
#~ msgstr "Скрипт, выполняемый после включения сетевого интерфейса TUN/TAP"
#~ msgid "Uplink subnet"
#~ msgstr "Подсеть uplink'а"
#~ msgid "Network address of the uplink interface (CIDR notation)"
#~ msgstr "Сетевой адрес uplink-интерфейса (в нотации CIDR)"
#~ msgid "Static IP address pool"
#~ msgstr "Диапазон статических IP адресов"
#~ msgid "Specifies a pool of static IP addresses"
#~ msgstr "Определяет диапазон статических IP адресов"
#~ msgid "TUN/TAP device"
#~ msgstr "TUN/TAP устройство"
#~ msgid "The specific device to use for the TUN/TAP interface"
#~ msgstr "Устройство для TUN/TAP интерфейса"
#~ msgid "TX queue length"
#~ msgstr "Длина очереди TX"
#~ msgid "The TX queue length to set on the TUN/TAP interface"
#~ msgstr "Длина TX очереди TUN/TAP интерфейса"
#~ msgid "Use TAP device"
#~ msgstr "Использовать устройство TAP"
#~ msgid "Use the TAP interface instead of TUN"
#~ msgstr "Использовать интерфейс TAP вместо TUN"
#~ msgid "DHCP configuration"
#~ msgstr "Настройки DHCP"
#~ msgid "Set DHCP options for connecting clients"
#~ msgstr "Установите параметры DHCP для подключения клиентов"
#~ msgid "DHCP end number"
#~ msgstr "Конечное значение DHCP"
#~ msgid "Ethernet interface to listen to for the downlink interface"
#~ msgstr "Ethernet интерфейс для прослушивания downlink-интерфеса"
#~ msgid "Listen MAC address"
#~ msgstr "Прослушиваемые MAC адреса"
#~ msgid "DHCP start number"
#~ msgstr "Начальное значение DHCP"
#~ msgid "Where to start assigning IP addresses (default 10)"
#~ msgstr "Начать присвоения IP-адресов с (по умолчанию 10)"
#~ msgid "Enable IEEE 802.1x"
#~ msgstr "Включить IEEE 802.1x"
#~ msgid "Enable IEEE 802.1x authentication and listen for EAP requests"
#~ msgstr "Включить IEEE 802.1x аутентификацию и обработку запросов EAP"
#~ msgid "Leasetime"
#~ msgstr "Время аренды"
#~ msgid "Use a DHCP lease of seconds (default 600)"
#~ msgstr "Использовать DHCP аренду заданное время (секунды, 600 по умолчанию)"
#~ msgid "Allow session update through RADIUS"
#~ msgstr "Разрешить обновление сессии через RADIUS"
#~ msgid ""
#~ "Allow updating of session parameters with RADIUS attributes sent in "
#~ "Accounting-Response"
#~ msgstr ""
#~ "Разрешить обновление параметров сессии используя RADIUS атрибуты "
#~ "посланные через Accounting-Response"
#~ msgid ""
#~ "Password to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgstr ""
#~ "Пароль администратора для аутентификации пользователя и применения "
#~ "настроек chilli с созданием \"системной\" сессии устройства"
#~ msgid ""
#~ "User-name to use for Administrative-User authentication in order to pick "
#~ "up chilli configurations and establish a device \"system\" session"
#~ msgstr ""
#~ "Имя администратора для аутентификации пользователя и применения настроек "
#~ "chilli с созданием \"системной\" сессии устройства"
#~ msgid "Do not check disconnection requests"
#~ msgstr "Не проверять запросы на разъединение"
#~ msgid "RADIUS disconnect port"
#~ msgstr "Порт разъединения RADIUS"
#~ msgid "Value to use in RADIUS NAS-IP-Address attribute"
#~ msgstr "Значение RADIUS NAS-IP-Address атрибута"
#~ msgid "MAC address value to use in RADIUS Called-Station-ID attribute"
#~ msgstr "Значение MAC адреса RADIUS Called-Station-ID атрибута"
#~ msgid "Allow OpenID authentication"
#~ msgstr "Разрешить OpenID аутентификацию"
#~ msgid ""
#~ "Allows OpenID authentication by sending ChilliSpot-Config=allow-"
#~ "openidauth in RADIUS Access-Requests"
#~ msgstr ""
#~ "Разрешает аутентификацию OpenID, посылая ChilliSpot-Config=allow-"
#~ "openidauth в запросах доступа RADIUS."
#~ msgid "RADIUS accounting port"
#~ msgstr "Порт RADIUS Accounting"
#~ msgid ""
#~ "The UDP port number to use for radius accounting requests (default 1813)"
#~ msgstr "Порт UDP для запросов RADIUS Accounting (1813 по умолчанию)"
#~ msgid "RADIUS authentication port"
#~ msgstr "Порт аутентификации RADIUS"
#~ msgid ""
#~ "The UDP port number to use for radius authentication requests (default "
#~ "1812)"
#~ msgstr "UDP порт для запросов аутентификации radius (1812 по умолчанию)"
#~ msgid "RADIUS listen address"
#~ msgstr "Слушающий адрес RADIUS"
#~ msgid "Local interface IP address to use for the radius interface"
#~ msgstr "IP адрес локального интерфейса для интерфейса radius"
#~ msgid "RADIUS location ID"
#~ msgstr "Идентификатор расположения RADIUS"
#~ msgid "RADIUS location name"
#~ msgstr "Имя расположения RADIUS"
#~ msgid "Network access server identifier"
#~ msgstr "Идентификатор сервера доступа к сети (NAS)"
#~ msgid "Option radiusnasip"
#~ msgstr "Опция radiusnasip"
#~ msgid "NAS port type"
#~ msgstr "Тип порта NAS"
#~ msgid ""
#~ "Value of NAS-Port-Type attribute. Defaults to 19 (Wireless-IEEE-802.11)"
#~ msgstr "Значение аттрибута NAS-Port-Type. По умолчанию 19 (IEEE-802.11)"
#~ msgid "Send RADIUS VSA"
#~ msgstr "Отсылать RADIUS VSA"
#~ msgid "Send the ChilliSpot-OriginalURL RADIUS VSA in Access-Request"
#~ msgstr "Отсылать ChilliSpot-OriginalURL RADIUS VSA в запросах доступа"
#~ msgid "RADIUS secret"
#~ msgstr "Секрет RADIUS"
#~ msgid "Radius shared secret for both servers"
#~ msgstr "Общий секрет RADIUS для обоих серверов"
#~ msgid "RADIUS server 1"
#~ msgstr "RADIUS сервер 1"
#~ msgid "The IP address of radius server 1"
#~ msgstr "IP адрес RADIUS сервера 1"
#~ msgid "RADIUS server 2"
#~ msgstr "RADIUS сервер 2"
#~ msgid "The IP address of radius server 2"
#~ msgstr "IP адрес RADIUS сервера 2"
#~ msgid "Swap octets"
#~ msgstr "Переставлять октеты"
#~ msgid ""
#~ "Swap the meaning of \"input octets\" and \"output octets\" as it related "
#~ "to RADIUS attribtues"
#~ msgstr "Менять местами значения \"входной октет\" и \"выходной октет\""
#~ msgid "Allow WPA guests"
#~ msgstr "Разрешить гостевой WPA вход"
#~ msgid ""
#~ "Allows WPA Guest authentication by sending ChilliSpot-Config=allow-wpa-"
#~ "guests in RADIUS Access-Requests"
#~ msgstr ""
#~ "Разрешает гстевую WPA аутентификацию, отсылая ChilliSpot-Config=allow-wpa-"
#~ "guests в запросах доступа RADIUS"
#~ msgid "Proxy client"
#~ msgstr "Клиент прокси"
#~ msgid ""
#~ "IP address from which radius requests are accepted. If omitted the server "
#~ "will not accept radius requests"
#~ msgstr ""
#~ "IP адрес с которого запросы radius принимаются. Если не указан, то сервер "
#~ "не будет принимать запросы radius"
#~ msgid "Local interface IP address to use for accepting radius requests"
#~ msgstr "IP адрес локального интерфейса для приема запросов radius"
#~ msgid "Proxy port"
#~ msgstr "Порт прокси"
#~ msgid "Proxy secret"
#~ msgstr "Секрет прокси"
#~ msgid "Radius shared secret for clients"
#~ msgstr "Общий RADIUS секрет для клиентов"
#~ msgid "UAM configuration"
#~ msgstr "Конфигурация UAM"
#~ msgid "Unified Configuration Method settings"
#~ msgstr "Настройки UAM"
#~ msgid "Use Chilli XML"
#~ msgstr "Использовать Chilli XML"
#~ msgid "Return the so-called Chilli XML along with WISPr XML"
#~ msgstr "Возвращать так называемый Chilli XML вместе с WISPr XML"
#~ msgid "Default idle timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Таймаут ожидания по умолчанию если не установлен RADIUS'ом (0 по "
#~ "умолчанию)"
#~ msgid ""
#~ "Default session timeout unless otherwise set by RADIUS (defaults to 0)"
#~ msgstr ""
#~ "Таймаут сессии по умолчанию если не установлено RADIUS'ом (0 по умолчанию)"
#~ msgid "Inspect DNS traffic"
#~ msgstr "Инспектировать траффик DNS"
#~ msgid ""
#~ "Inspect DNS packets and drop responses with any non- A, CNAME, SOA, or MX "
#~ "records to prevent dns tunnels (experimental)"
#~ msgstr ""
#~ "Проверять DNS пакеты и отбрасывать ответы без A, CNAME, SOA, или MX "
#~ "записей для предотвращения DNS туннелей (экспериментальная ф-ция)."
#~ msgid "Local users file"
#~ msgstr "Локальный файл пользователей"
#~ msgid ""
#~ "A colon separated file containing usernames and passwords of locally "
#~ "authenticated users"
#~ msgstr ""
#~ "Файл, содержащий логины и пароли локально авторизованных пользователей "
#~ "(записи разделены двоеточием)"
#~ msgid "Location name"
#~ msgstr "Имя расположения"
#~ msgid "Human readable location name used in JSON interface"
#~ msgstr "Имя расположения, используемой в интерфейсе JSON"
#~ msgid "Do not redirect to UAM server"
#~ msgstr "Не перенаправлять на сервер UAM"
#~ msgid "Do not do WISPr"
#~ msgstr "Не выполнять WISPr"
#~ msgid "Post auth proxy"
#~ msgstr "Прокси пост-аутентификации"
#~ msgid ""
#~ "Used with postauthproxyport to define a post authentication HTTP proxy "
#~ "server"
#~ msgstr ""
#~ "Используется с портом прокси пост-аутентификации для определения HTTP "
#~ "прокси-сервера аутентификации"
#~ msgid "Post auth proxy port"
#~ msgstr "Порт прокси пост-аутентификации"
#~ msgid ""
#~ "Used with postauthproxy to define a post authentication HTTP proxy server"
#~ msgstr ""
#~ "Ипользуется с прокси пост-аутентификации для определения HTTP прокси-"
#~ "сервера пост-аутентификации"
#~ msgid "Allowed resources"
#~ msgstr "Разрешенные ресурсы"
#~ msgid "List of resources the client can access without first authenticating"
#~ msgstr ""
#~ "Список ресурсов к которым клиент может получить доступ без "
#~ "предварительной аутентификации"
#~ msgid "Allow any DNS server"
#~ msgstr "Разрешить любой DNS сервер"
#~ msgid "Allow any DNS server for unauthenticated clients"
#~ msgstr "Разрешить любой DNS сервер для клиентов не прошедших аутентификацию"
#~ msgid "Allow any IP address"
#~ msgstr "Разрешить любой IP-адрес"
#~ msgid ""
#~ "Allow clients to use any IP settings they wish by spoofing ARP "
#~ "(experimental)"
#~ msgstr ""
#~ "Разрешить клиентам использовать любые настройки IP за счет \"спуфинга\" "
#~ "ARP (экспериментальная ф-ция)"
#~ msgid "Allowed domains"
#~ msgstr "Разрешенные домены"
#~ msgid "UAM homepage"
#~ msgstr "Домашняя страница UAM"
#~ msgid "UAM static content port"
#~ msgstr "Порт UAM статического контента"
#~ msgid "UAM listening address"
#~ msgstr "Слашающий адрес UAM"
#~ msgid "IP address to listen to for authentication of clients"
#~ msgstr "IP адрес для приема аутентификации клиентов"
#~ msgid "UAM logout IP"
#~ msgstr "IP-адрес выхода UAM"
#~ msgid "UAM listening port"
#~ msgstr "Слушающий порт UAM"
#~ msgid "UAM secret"
#~ msgstr "Секрет UAM"
#~ msgid "Shared secret between uamserver and chilli"
#~ msgstr "Общий секрет для сервера UAM и Chilli"
#~ msgid "UAM server"
#~ msgstr "Сервер UAM"
#~ msgid "UAM user interface"
#~ msgstr "Интерфейс пользователя UAM"
#~ msgid "WISPr login url"
#~ msgstr "URL входа WISPr"
#~ msgid "Specific URL to be given in WISPr XML LoginURL"
#~ msgstr "Особый URL в WISPr XML LoginURL"
#~ msgid "CGI program"
#~ msgstr "Программа GCI"
#~ msgid "Web content directory"
#~ msgstr "Директория Web-контента"
#~ msgid "MAC configuration"
#~ msgstr "Настройка MAC"
#~ msgid "Configure MAC authentication"
#~ msgstr "Настройка аутентификации по MAC адресу"
#~ msgid "Allowed MAC addresses"
#~ msgstr "Разрешенные MAC адреса"
#~ msgid "List of MAC addresses for which MAC authentication will be performed"
#~ msgstr "Список MAC адресов для которых будет производиться аутентификация"
#~ msgid "Authenticate locally allowed MACs"
#~ msgstr "Аутентифицировать локально разрешенные MAC адреса"
#~ msgid "Authenticate allowed MAC addresses without the use of RADIUS"
#~ msgstr "Аутентифицировать разрешенные MAC адреса без использования RADIUS"
#~ msgid "Enable MAC authentification"
#~ msgstr "Разрешить MAC аутентификацию"
#~ msgid "Try to authenticate all users based on their mac address alone"
#~ msgstr ""
#~ "Пробовать аутентификацию всех пользователей только на основе их MAC "
#~ "адресов"
#~ msgid "Password"
#~ msgstr "Пароль"
#~ msgid "Suffix"
#~ msgstr "Суффикс"
#~ msgid ""
#~ "Suffix to add to the MAC address in order to form the User-Name, which is "
#~ "sent to the radius server"
#~ msgstr ""
#~ "Суффикс, добавляемый в MAC адрес, для формирования имени пользователя, "
#~ "которое посылается radius серверу"
|