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
|
msgid ""
msgstr ""
"Project-Id-Version: LuCI: simple-adblock\n"
"POT-Creation-Date: 2017-12-07 14:00+0300\n"
"PO-Revision-Date: 2023-12-09 18:04+0000\n"
"Last-Translator: st7105 <st7105@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock-fast/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 5.3-dev\n"
"Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:241
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:304
msgid "%s"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:225
msgid "%s is currently disabled"
msgstr "%s сейчас отключен"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51
msgid "%s is not installed or not found"
msgstr "%s не установлен или не найден"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101
msgid "-"
msgstr "-"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:514
msgid "Action"
msgstr "Действие"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61
msgid "Active"
msgstr "Активно"
#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3
msgid "AdBlock Fast"
msgstr "AdBlock Fast"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:198
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:260
msgid "AdBlock on all instances"
msgstr "AdBlock во всех случаях"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:261
msgid "AdBlock on select instances"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22
msgid "AdBlock-Fast"
msgstr "AdBlock-Fast"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:465
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr "AdBlock-Fast - Разрешенные и заблокированные домены"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:489
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr "AdBlock-Fast - Разрешенные и заблокированные списки URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59
msgid "AdBlock-Fast - Configuration"
msgstr "AdBlock-Fast - Конфигурация"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119
msgid "AdBlock-Fast - Status"
msgstr "AdBlock-Fast - Статус"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:367
msgid "Add IPv6 entries"
msgstr "Добавить записи IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:364
msgid "Add IPv6 entries to block-list."
msgstr "Добавление записей IPv6 в чёрный список."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62
msgid "Advanced Configuration"
msgstr "Расширенные настройки"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520
msgid "Allow"
msgstr "Разрешить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:473
msgid "Allowed Domains"
msgstr "Разрешённые домены"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:428
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr "Пытаться создавать сжатый кэш списка блокировок в постоянной памяти."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:352
msgid "Automatic Config Update"
msgstr "Автоматическое обновление конфигурации"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:61
msgid "Basic Configuration"
msgstr "Основная конфигурация"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:516
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520
msgid "Block"
msgstr "Блок"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:481
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87
msgid "Blocked Domains"
msgstr "Блокируемые домены"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132
msgid "Blocking %s domains (with %s)."
msgstr "Блокировка %s доменов (с %s)."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88
msgid "Cache"
msgstr "Кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66
msgid "Cache file"
msgstr "Кэш-файл"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158
msgid "Cache file found."
msgstr "Файл кеша найден."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195
msgid "Can't detect free RAM"
msgstr "Не удается обнаружить свободную оперативную память"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68
msgid "Compressed cache"
msgstr "Сжатый кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137
msgid "Compressed cache file created."
msgstr "Создан сжатый файл кеша."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160
msgid "Compressed cache file found."
msgstr "Найден сжатый кэш-файл."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:223
msgid "Config (%s) validation failure!"
msgstr "Конфигурация (%s) не прошла проверку!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:325
msgid "Controls system log and console output verbosity."
msgstr "Контроль вывода системного журнала и его информативности."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:401
msgid "Curl download retry"
msgstr "Попытки загрузки через Curl"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:388
msgid "Curl maximum file size (in bytes)"
msgstr "Максимальный размер файла Curl (в байтах)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:143
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86
msgid "DNS Service"
msgstr "Служба DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:65
msgid "DNS resolution option, see the %sREADME%s for details."
msgstr "Опция разрешения DNS, подробности см. в %sREADME%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:439
msgid "Directory for compressed cache file"
msgstr "Каталог для сжатого файла кэша"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:441
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr "Каталог для сжатого кэш-файла блок-листа в постоянной памяти."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:424
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:355
msgid "Disable"
msgstr "Отключить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:457
msgid "Disable Debugging"
msgstr "Отключить отладку"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154
msgid "Disabled"
msgstr "Отключено"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:418
msgid "Disabling %s service"
msgstr "Отключение службы %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:175
msgid "Dnsmasq Config File URL"
msgstr "URL-адрес файла конфигурации Dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:366
msgid "Do not add IPv6 entries"
msgstr "Не добавлять записи IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431
msgid "Do not store compressed cache"
msgstr "Не хранить сжатый кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418
msgid "Do not use simultaneous processing"
msgstr "Не использовать одновременную обработку"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:378
msgid "Download time-out (in seconds)"
msgstr "Время ожидания загрузки (в секундах)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57
msgid "Downloading lists"
msgstr "Загрузка списков"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:405
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:356
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:510
msgid "Enable"
msgstr "Включить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:454
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:458
msgid "Enable Debugging"
msgstr "Включить отладку"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:455
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr "Включает вывод отладки в файл /tmp/adblock-fast.log."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:399
msgid "Enabling %s service"
msgstr "Включение службы %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58
msgid "Error"
msgstr "Ошибка"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:298
msgid "Errors encountered, please check the %sREADME%s"
msgstr "Обнаружены ошибки, сверьтесь с %sREADME%s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60
msgid "Fail"
msgstr "Ошибка"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:248
msgid "Failed to access shared memory"
msgstr "Не удалось получить доступ к общей памяти"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244
msgid "Failed to create '%s' file"
msgstr "Не удалось создать файл '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:266
msgid "Failed to create block-list or restart DNS resolver"
msgstr "Не удалось создать блок-лист или перезапустить DNS-резольвер"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257
msgid "Failed to create compressed cache"
msgstr "Не удалось создать сжатый кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:243
msgid "Failed to create directory for %s file"
msgstr "Не удалось создать каталог для файла %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278
msgid "Failed to create output/cache/gzip file directory"
msgstr "Не удалось создать каталог output/cache/gzip"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:280
msgid "Failed to detect format %s"
msgstr "Не удалось определить формат %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:273
msgid "Failed to download %s"
msgstr "Не удалось загрузить %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to download Config Update file"
msgstr "Не удалось загрузить файл обновления конфигурации"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid "Failed to format data file"
msgstr "Не удалось отформатировать файл данных"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:261
msgid "Failed to move '%s' to '%s'"
msgstr "Не удалось переместить '%s' в '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254
msgid "Failed to move temporary data file to '%s'"
msgstr "Не удалось переместить временный файл данных в '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250
msgid "Failed to optimize data file"
msgstr "Не удалось оптимизировать файл данных"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:275
msgid "Failed to parse %s"
msgstr "Не удалось разобрать %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "Failed to parse Config Update file"
msgstr "Не удалось разобрать файл обновления конфигурации"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251
msgid "Failed to process allow-list"
msgstr "Не удалось обработать разрешающий список"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to reload/restart DNS resolver"
msgstr "Не удалось перезагрузить/перезапустить DNS-резольвер"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:259
msgid "Failed to remove temporary files"
msgstr "Не удалось удалить временные файлы"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247
msgid "Failed to restart/reload DNS resolver"
msgstr "Не удалось перезапустить/перезагрузить DNS-резольвер"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid "Failed to sort data file"
msgstr "Не удалось сортировать файл данных"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115
msgid "Failed to start"
msgstr "Не удалось запустить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:268
msgid "Failed to stop %s"
msgstr "Не удалось остановить %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260
msgid "Failed to unpack compressed cache"
msgstr "Не удалось распаковать сжатый кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89
msgid "Force DNS Ports"
msgstr "Принудительное использование портов DNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140
msgid "Force DNS ports:"
msgstr "Принудительное использование портов DNS:"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56
msgid "Force Reloading"
msgstr "Принудительная перезагрузка"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:313
msgid "Force Router DNS"
msgstr "Назначить DNS роутера"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:317
msgid "Force Router DNS server to all local devices"
msgstr "Назначить DNS роутера всем локальным устройствам"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:346
msgid "Force redownloading %s block lists"
msgstr "Принудительная повторная загрузка %s списков блоков"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:314
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr ""
"Принудительное использование DNS роутера на локальных устройствах, или "
"перехват DNS."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285
msgid "Free ram (%s) is not enough to process all enabled block-lists"
msgstr ""
"Свободной памяти (%s) недостаточно для обработки всех включенных блок-листов"
#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3
msgid "Grant UCI and file access for luci-app-adblock-fast"
msgstr "Предоставить UCI и доступ к файлам для luci-app-adblock-fast"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:363
msgid "IPv6 Support"
msgstr "Поддержка IPv6"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:390
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr ""
"Если curl установлен и обнаружен, он не будет загружать файлы большего "
"размера."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:403
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr ""
"Если curl установлен и обнаружен, данное значение устанавливает количество "
"повторных попыток загрузки в случае неудачи."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:474
msgid "Individual domains to be allowed."
msgstr "Отдельные домены, которые будут разрешены."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:482
msgid "Individual domains to be blocked."
msgstr "Отдельные домены, которые будут заблокированы."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193
msgid "Invalid compressed cache directory '%s'"
msgstr "Недопустимый каталог сжатого кэша '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:337
msgid "LED to indicate status"
msgstr "Светодиоды для индикации состояния"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:415
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr ""
"Запускает все загрузки и обработки списков одновременно, сокращая время "
"запуска службы."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:316
msgid "Let local devices use their own DNS servers if set"
msgstr ""
"Разрешить локальным устройствам использовать собственные DNS, если они "
"прописаны в настройках сети устройства"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:262
msgid "No AdBlock on SmartDNS"
msgstr "Отсутствие AdBlock на SmartDNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200
msgid "No AdBlock on dnsmasq"
msgstr "Отсутствие AdBlock на dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276
msgid "No HTTPS/SSL support on device"
msgstr "Отсутствие поддержки HTTPS/SSL на устройстве"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:282
msgid "No blocked list URLs nor blocked-domains enabled"
msgstr "Нет заблокированных URL-адресов и доменов"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174
msgid "Not installed or not found"
msgstr "Не установлен или не найден"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:324
msgid "Output Verbosity Setting"
msgstr "Настройка журнала"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367
msgid "Pause"
msgstr "Пауза"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:362
msgid "Pausing %s"
msgstr "Пауза %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:353
msgid "Perform config update before downloading the block/allow-lists."
msgstr ""
"Осуществлять обновление конфигурации перед загрузкой списков блокировок."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:339
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr "Выберите светодиод, не используемый в %sSystem LED Configuration%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:288
msgid "Pick the SmartDNS instance(s) for AdBlocking"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:227
msgid "Pick the dnsmasq instance(s) for AdBlocking"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:73
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:78
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:83
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:88
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:95
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:102
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:111
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:118
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:125
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:134
msgid "Please note that %s is not supported on this system."
msgstr "Обратите внимание: %s не поддерживается в этой системе."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54
msgid "Processing lists"
msgstr "Обработка списков"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:352
msgid "Redownload"
msgstr "Перезагрузить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55
msgid "Restarting"
msgstr "Перезапуск"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:465
msgid "Service Control"
msgstr "Управление службой"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:291
msgid "Service Errors"
msgstr "Ошибки службы"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123
msgid "Service Status"
msgstr "Статус службы"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200
msgid "Service Warnings"
msgstr "Предупреждения службы"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:413
msgid "Simultaneous processing"
msgstr "Одновременная обработка"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:497
msgid "Size"
msgstr "Размер"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:507
msgid "Size: %s"
msgstr "Размер: %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:328
msgid "Some output"
msgstr "Частичная запись"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190
msgid "Some recommended packages are missing"
msgstr "Некоторые рекомендуемые пакеты отсутствуют"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:333
msgid "Start"
msgstr "Запустить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53
msgid "Starting"
msgstr "Запуск"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:327
msgid "Starting %s service"
msgstr "Запуск службы %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84
msgid "Status"
msgstr "Состояние"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:386
msgid "Stop"
msgstr "Остановить"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:379
msgid "Stop the download if it is stalled for set number of seconds."
msgstr ""
"Остановка загрузки, если она задерживается на заданное количество секунд."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52
msgid "Stopped"
msgstr "Остановлена"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:380
msgid "Stopping %s service"
msgstr "Остановка службы %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:432
msgid "Store compressed cache"
msgstr "Хранить сжатый кэш"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:426
msgid "Store compressed cache file on router"
msgstr "Хранить сжатый файл кэша на роутере"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:327
msgid "Suppress output"
msgstr "Запрет записи"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241
msgid "The %s failed to discover WAN gateway"
msgstr "%s не удалось обнаружить WAN-шлюз"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:229
msgid ""
"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
"installed dnsmasq does not support ipset"
msgstr ""
"Поддержка dnsmasq ipset включена, но dnsmasq либо не установлен, либо "
"установленный dnsmasq не поддерживает ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232
msgid ""
"The dnsmasq ipset support is enabled, but ipset is either not installed or "
"installed ipset does not support '%s' type"
msgstr ""
"Поддержка dnsmasq ipset включена, но ipset либо не установлен, либо "
"установленный ipset не поддерживает тип '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235
msgid ""
"The dnsmasq nft set support is enabled, but dnsmasq is either not installed "
"or installed dnsmasq does not support nft set"
msgstr ""
"Поддержка dnsmasq nft set включена, но dnsmasq либо не установлен, либо "
"установленный dnsmasq не поддерживает nft set"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238
msgid "The dnsmasq nft sets support is enabled, but nft is not installed"
msgstr "Поддержка наборов dnsmasq nft включена, но nft не установлен"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:523
msgid "URL"
msgstr "URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:177
msgid ""
"URL to the external dnsmasq config file, see the %sREADME%s for details."
msgstr ""
"URL-адрес внешнего файла конфигурации dnsmasq, подробности см. в %sREADME%s."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:490
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
"URL-адреса файлов, содержащих списки, которые должны быть разрешены или "
"заблокированы."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:501
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95
msgid "Unknown"
msgstr "Неизвестный"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:252
msgid "Use AdBlocking on the SmartDNS instance(s)"
msgstr "Использовать AdBlocking на экземпляре(ах) SmartDNS"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:190
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr "Использовать блокировку рекламы на экземпляре(ах) dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187
msgid ""
"Use of external dnsmasq config file detected, please set '%s' option to '%s'"
msgstr ""
"Обнаружено использование внешнего файла конфигурации dnsmasq, пожалуйста, "
"установите опцию '%s' в значение '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:419
msgid "Use simultaneous processing"
msgstr "Использовать одновременную обработку"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329
msgid "Verbose output"
msgstr "Подробный вывод"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85
msgid "Version"
msgstr "Версия"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126
msgid "Version %s"
msgstr "Версия %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59
msgid "Warning"
msgstr "Внимание"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:254
msgid ""
"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:192
msgid ""
"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore "
"information%s)."
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:147
msgid "dnsmasq additional hosts"
msgstr "dnsmasq дополнительные хосты"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "dnsmasq config"
msgstr "конфигурация dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:150
msgid "dnsmasq ipset"
msgstr "IP-набор dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:153
msgid "dnsmasq nft set"
msgstr "dnsmasq nft-набор"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:155
msgid "dnsmasq servers file"
msgstr "файл серверов dnsmasq"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342
msgid "none"
msgstr "ничего"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:158
msgid "smartdns domain set"
msgstr "набор доменов smartdns"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:160
msgid "smartdns ipset"
msgstr "smartdns ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:163
msgid "smartdns nft set"
msgstr "smartdns nftset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:167
msgid "unbound adblock list"
msgstr "несвязанный список adblock"
#~ msgid "AdBlock on %s only"
#~ msgstr "AdBlock только в %s"
#~ msgid ""
#~ "You can limit the AdBlocking to a specific SmartDNS instance(s) (%smore "
#~ "information%s)."
#~ msgstr ""
#~ "Вы можете ограничить блокировку рекламы определенным экземпляром "
#~ "(экземплярами) SmartDNS (%sдополнительная информация%s)."
#~ msgid ""
#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore "
#~ "information%s)."
#~ msgstr ""
#~ "Вы можете ограничить AdBlocking определенным экземпляром (экземплярами) "
#~ "dnsmasq (%sдополнительная информация%s)."
#~ msgid "Force Re-Download"
#~ msgstr "Принудительно загрузить"
#~ msgid "Force re-downloading %s block lists"
#~ msgstr "Принудительная повторная загрузка блок-списков %s"
#~ msgid "Errors encountered, please check the %sREADME%s!"
#~ msgstr "Возникли ошибки, проверьте %sREADME%s!"
#~ msgid "Failed to parse"
#~ msgstr "Не удалось выполнить разбор"
#~ msgid "Allowed Domain URLs"
#~ msgstr "Разрешённые URL-адреса доменов"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "Управление списками разрешения и блокировки"
#~ msgid "Blocked AdBlockPlus-style URLs"
#~ msgstr "Заблокированные URL-адреса в стиле AdBlockPlus"
#~ msgid "Blocked Domain URLs"
#~ msgstr "URL-адреса блокируемых доменов"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "URL-адреса блокируемых хостов"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "Включает вывод отладочной информации в /tmp/simple-adblock.log."
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "Предоставить luci-app-simple-adblock доступ к UCI и файлам"
#~ msgid "Simple AdBlock"
#~ msgstr "Простой AdBlock"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "Simple AdBlock - Конфигурация"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "Simple AdBlock - Статус"
#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked."
#~ msgstr "URL-адреса списков блокируемых доменов в стиле AdBlockPlus."
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "URL списков разрешаемых доменов."
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "URL списков блокируемых доменов."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "URL списков блокируемых хостов."
#~ msgid "config (%s) validation failure!"
#~ msgstr "ошибка проверки конфигурации (%s)!"
#~ msgid "disabled"
#~ msgstr "отключено"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "поддержка dnsmasq ipset включена, но dnsmasq либо не установлен, либо "
#~ "установленный dnsmasq не поддерживает ipset"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "поддержка dnsmasq ipset включена, но ipset либо не установлен, либо "
#~ "установленный ipset не поддерживает тип '%s'"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "поддержка dnsmasq nft set включена, но dnsmasq либо не установлен, либо "
#~ "установленный dnsmasq не поддерживает nft set"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr "поддержка наборов dnsmasq nft включена, но nft не установлен"
#~ msgid "failed to access shared memory"
#~ msgstr "не удалось получить доступ к общей памяти"
#~ msgid "failed to create '%s' file"
#~ msgstr "не удалось создать файл '%s'"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr "не удалось создать чёрный список или перезапустить службу DNS"
#~ msgid "failed to create compressed cache"
#~ msgstr "не удалось создать сжатый кэш"
#~ msgid "failed to create directory for %s file"
#~ msgstr "не удалось создать каталог для файла %s"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "не удалось создать каталог файлов output/cache/gzip"
#~ msgid "failed to download"
#~ msgstr "не удалось загрузить"
#~ msgid "failed to download Config Update file"
#~ msgstr "не удалось загрузить файл обновления конфигурации"
#~ msgid "failed to format data file"
#~ msgstr "не удалось отформатировать файл данных"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "не удалось переместить '%s' в '%s'"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "не удалось переместить временный файл данных в '%s'"
#~ msgid "failed to optimize data file"
#~ msgstr "не удалось оптимизировать файл данных"
#~ msgid "failed to parse"
#~ msgstr "не удалось обработать"
#~ msgid "failed to parse Config Update file"
#~ msgstr "не удалось обработать файл обновления конфигурации"
#~ msgid "failed to process allow-list"
#~ msgstr "не удалось обработать список разрешения"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "не удалось перезапустить службу DNS"
#~ msgid "failed to remove temporary files"
#~ msgstr "не удалось удалить временные файлы"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "не удалось перезапустить службу DNS"
#~ msgid "failed to sort data file"
#~ msgstr "не удалось отсортировать файл данных"
#~ msgid "failed to stop %s"
#~ msgstr "не удалось остановить %s"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "не удалось распаковать сжатый кэш"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "нет поддержки HTTPS/SSL на устройстве"
#~ msgid "some recommended packages are missing"
#~ msgstr "некоторые рекомендуемые пакеты отсутствуют"
#~ msgid "the %s failed to discover WAN gateway"
#~ msgstr "%s не удалось обнаружить WAN-шлюз"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr ""
#~ "обнаружено использование внешнего файла конфигурации dnsmasq, пожалуйста, "
#~ "установите опцию '%s' на '%s'"
#~ msgid "Version: %s"
#~ msgstr "Версия: %s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "Службе %s не удалось обнаружить шлюз WAN!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "Не удалось создать каталог для '%s'"
#~ msgid "Downloading"
#~ msgstr "Скачивание"
#~ msgid "%s Error: %s"
#~ msgstr "%s Ошибка: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s Ошибка: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "Найден кэш-файл, содержащий %s доменов."
#~ msgid "Collected Errors"
#~ msgstr "Найденные ошибки"
#~ msgid "Configuration"
#~ msgstr "Конфигурация"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "Дополнительные хосты DNSMASQ"
#~ msgid "DNSMASQ Config"
#~ msgstr "Конфигурация DNSMASQ"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "Файл серверов DNSMASQ"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "Задержка (в секундах) запуска службы при загрузке"
#~ msgid "Info"
#~ msgstr "Информация"
#~ msgid "Loading"
#~ msgstr "Загрузка"
#~ msgid "Message"
#~ msgstr "Сообщение"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "Выбор службы DNS, для которой будет создан список блокировки. "
#~ "Дополнительная информация в %sREADME%s."
#~ msgid "Run service after set delay on boot."
#~ msgstr "Запуск службы при загрузке системы после установленной задержки."
#~ msgid "Service Status [%s %s]"
#~ msgstr "Статус службы [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "Настройки Simple AdBlock"
#~ msgid "Success"
#~ msgstr "Успех"
#~ msgid "Task"
#~ msgstr "Задача"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Список AdBlock Unbound"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "Установка IP DNSMASQ"
#~ msgid "%s is blocking %s domains (with %s)."
#~ msgstr "%s блокирует %s домены (с %s)."
#~ msgid "Blacklisted Domain URLs"
#~ msgstr "URL ссылки Черных<br />списков доменов"
#~ msgid "Blacklisted Domains"
#~ msgstr "Черный список доменов"
#~ msgid "Blacklisted Hosts URLs"
#~ msgstr "URL ссылки Черных<br />списков хостов"
#~ msgid "Individual domains to be blacklisted."
#~ msgstr "Отдельные домены должны быть в черном списке."
#~ msgid "Individual domains to be whitelisted."
#~ msgstr "Отдельные домены должны быть в белом списке."
#~ msgid "URLs to lists of domains to be blacklisted."
#~ msgstr "URL-адреса списков доменов, которые должны быть в черном списке."
#~ msgid "URLs to lists of domains to be whitelisted."
#~ msgstr "URL-адреса списков доменов, которые должны быть в белом списке."
#~ msgid "URLs to lists of hosts to be blacklisted."
#~ msgstr "URL-адреса списков хостов, которые должны быть в черном списке."
#~ msgid "Whitelist and Blocklist Management"
#~ msgstr "Белый и черный списки управления"
#~ msgid "Whitelisted Domain URLs"
#~ msgstr "URL ссылки Белых списков доменов"
#~ msgid "Whitelisted Domains"
#~ msgstr "Белый список доменов"
#~ msgid "Grant UCI access for luci-app-simple-adblock"
#~ msgstr "Предоставить UCI доступ для luci-app-simple-adblock"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the"
#~ msgstr ""
#~ "Выберите параметр разрешения DNS, для которого создается список adblock, "
#~ "см."
#~ msgid "Pick the LED not already used in"
#~ msgstr "Выберите LED не используется на странице"
#~ msgid "Please note that"
#~ msgstr "Обратите внимание, что"
#~ msgid "README"
#~ msgstr "Описание"
#~ msgid "System LED Configuration"
#~ msgstr "Настройка LED индикации системы."
#~ msgid "for details."
#~ msgstr "для деталей."
#~ msgid "is not supported on this system."
#~ msgstr "не поддерживается в этой системе."
#~ msgid "Enable/Start"
#~ msgstr "Включить/Старт"
#~ msgid "Reload"
#~ msgstr "Перезапустить"
#~ msgid "Service is disabled/stopped"
#~ msgstr "Сервис выключен/остановлен"
#~ msgid "Service is enabled/started"
#~ msgstr "Сервис включен/запущен"
#~ msgid "Service started with error"
#~ msgstr "Служба запущена с ошибкой"
#~ msgid "Stop/Disable"
#~ msgstr "Стоп/Отключить"
#~ msgid "Controls system log and console output verbosity"
#~ msgstr "Детальная настройка записи событий в системный журнал."
#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking"
#~ msgstr ""
#~ "Назначить DNS роутера всем локальным устройствам, методом DNS Hijacking."
#~ msgid "Individual domains to be blacklisted"
#~ msgstr "Домены добавленные пользователем в Черный список."
#~ msgid "Individual domains to be whitelisted"
#~ msgstr "Домены добавленные пользователем в Белый список."
#~ msgid "Start Simple Adblock service"
#~ msgstr "Запуск сервиса Simple Adblock"
#~ msgid "URLs to lists of domains to be blacklisted"
#~ msgstr "URL ссылки Черных списков доменов."
#~ msgid "URLs to lists of domains to be whitelisted"
#~ msgstr "URL ссылки Белых списков доменов."
#~ msgid "URLs to lists of hosts to be blacklisted"
#~ msgstr "URL ссылки Черных списков хостов."
|