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
|
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-06-25 19:21+0000\n"
"Last-Translator: \"Džiugas Jan.\" <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsbanip/lt/>\n"
"Language: lt\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%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Weblate 5.6-rc\n"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:78
msgid "-- Set Selection --"
msgstr "-- Nustatyti pasirinkimą --"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:328
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:350
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:361
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:419
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:449
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:463
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:477
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:493
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:502
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:579
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:608
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:768
msgid "-- default --"
msgstr "-- numatytas/-a --"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:711
msgid "AFRINIC - serving Africa and the Indian Ocean region"
msgstr "„AFRINIC“ – teikia Afrikos ir Indijos vandenyno regioną"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:712
msgid "APNIC - serving the Asia Pacific region"
msgstr "„APNIC“ – teikia Azijos, Ramiojo vandenyno regioną"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:713
msgid "ARIN - serving Canada and the United States"
msgstr "„ARIN“ – teikia Kanadą ir JAV"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:719
msgid "ASNs"
msgstr "Autonominės sistemos („ASNs“)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:181
msgid "Active Devices"
msgstr "Aktyvūs įrenginiai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:177
msgid "Active Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:185
msgid "Active Uplink"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:316
msgid "Additional trigger delay in seconds during interface reload and boot."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:247
msgid "Advanced Settings"
msgstr "Pažangūs nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424
msgid "Allow Protocol/Ports"
msgstr "Leisti protokolą/prievadus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:428
msgid "Allow VLAN Forwards"
msgstr "Leisti „VLAN“ persiuntimus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:728
msgid "Allowlist Feed URLs"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:792
msgid "Allowlist Only"
msgstr "Tik leidžiamas sąrašas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:19
msgid ""
"Allowlist modifications have been saved, start the Domain Lookup or restart "
"banIP that changes take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:424
msgid ""
"Always allow a protocol (tcp/udp) with certain ports or port ranges in WAN-"
"Input and WAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:428
msgid "Always allow certain VLAN forwards."
msgstr "Visada leisti kai kuriuos „VLAN“ persiuntimus."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
msgid "Always block certain VLAN forwards."
msgstr "Visada blokuoti kai kuriuos „VLAN“ persiuntimus."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:762
msgid "Auto Allow Uplink"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:758
msgid "Auto Allowlist"
msgstr "Automatiškas leidžiamas sąrašas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:777
msgid "Auto Block Subnet"
msgstr "Automatiškai blokuoti potinklį/-ius"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:773
msgid "Auto Blocklist"
msgstr "Automatiškas blokavimo sąrašas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:263
msgid "Auto Detection"
msgstr "Automatinis patikrinimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:777
msgid ""
"Automatically add entire subnets to the blocklist Set based on an additional "
"RDAP request with the suspicious IP."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:773
msgid ""
"Automatically add resolved domains and suspicious IPs to the local banIP "
"blocklist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:758
msgid ""
"Automatically add resolved domains and uplink IPs to the local banIP "
"allowlist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Backup Directory"
msgstr "Atsarginės kopijos katalogas/vietovė"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "Base Directory"
msgstr "Bazinis katalogas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:385
msgid "Base working directory while banIP processing."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
msgid "Block Type"
msgstr "Blokavimo tipas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:434
msgid "Block VLAN Forwards"
msgstr "Blokuoti „VLAN“ persiuntimus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:677
msgid "Blocklist Feed"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:782
msgid "Blocklist Set Expiry"
msgstr "Nustatyti blokavimo sąrašo galiojimo laiką"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:19
msgid ""
"Blocklist modifications have been saved, start the Domain Lookup or restart "
"banIP that changes take effect."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid ""
"By default each feed is active in all supported chains. Limit the default "
"block policy to a certain chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
msgid "CPU Cores"
msgstr "Procesoriaus branduoliai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:39
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:109
msgid "Cancel"
msgstr "Atšaukti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
msgid "Chain Priority"
msgstr "Grandinės prioritetas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:341
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:410
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:487
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:567
msgid "Changes on this tab needs a banIP service restart to take effect."
msgstr ""
"Pakeitimai, kuriuos šiame skirtuke atlikote, reikalauja tarnybos paleidimo "
"iš naujo, kad būtų pritaikyti „banIP“ tarnybai."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:287
msgid "Clear Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:40
msgid ""
"Configuration of the banIP package to ban incoming and outgoing IPs via "
"named nftables Sets. For further information please check the <a "
"style=\"color:#37c;font-weight:bold;\" href=\"https://github.com/openwrt/"
"packages/blob/master/net/banip/files/README.md\" target=\"_blank\" "
"rel=\"noreferrer noopener\" >online documentation</a>"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:691
msgid "Countries"
msgstr "Šalys"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
msgid "Custom Feed Editor"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:397
msgid ""
"Deduplicate IP addresses across all active Sets and tidy up the local "
"blocklist."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:397
msgid "Deduplicate IPs"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:507
msgid "Default Block Policy"
msgstr "Numatyta blokavimo politika"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:229
msgid "Description"
msgstr "Aprašas/-ymas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:263
msgid ""
"Detect relevant network devices, interfaces, subnets, protocols and "
"utilities automatically."
msgstr ""
"Aptikti aktualius/reikšmingus tinklo įrenginius, sąsajas ir sietuvus, "
"potinklius, protokolus ir įrankius automatiškai."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:764
msgid "Disable"
msgstr "Išjungti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:214
msgid "Domain Lookup"
msgstr "Domeno-Srities paieška"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
msgid "Don't check SSL server certificates during download."
msgstr "Netikrinti „SSL“ serverio sertifikatus, kol siunčiasi."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:260
msgid "Download Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:333
msgid "Download Insecure"
msgstr "Atsisiuntimas nesaugus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306
msgid "Download Parameters"
msgstr "Atsisiuntimo parametrai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
msgid "Download Retries"
msgstr "Atsisiuntimo atkartojimai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:297
msgid "Download Utility"
msgstr "Atsisiuntimo įrankis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:498
msgid ""
"Drop packets silently or actively reject the traffic on WAN-Input and WAN-"
"Forward chains."
msgstr ""
"Išmesti paketus tyliai arba aktyviai neleisti srautą ant grandinių – „WAN-"
"įvestis“ ir „WAN-persiuntimas“."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:649
msgid "E-Mail Notification"
msgstr "El. pašto pranešimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:664
msgid "E-Mail Profile"
msgstr "El. pašto profilis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
msgid "E-Mail Receiver Address"
msgstr "El. pašto gavėjo adresas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:656
msgid "E-Mail Sender Address"
msgstr "El. pašto siuntėjo adresas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:251
msgid "E-Mail Settings"
msgstr "El. pašto nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:660
msgid "E-Mail Topic"
msgstr "El. pašto tema"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:36
msgid "Edit Allowlist"
msgstr "Redaguoti leidžiamąjį sąrašą"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:44
msgid "Edit Blocklist"
msgstr "Redaguoti blokavimo sąrašą"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:52
msgid "Edit Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:173
msgid "Element Count"
msgstr "Elementų kiekis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:161
msgid "Elements"
msgstr "Elementai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:195
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:233
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:632
msgid "Empty field not allowed"
msgstr "Tuščia įvestis yra neleidžiama"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:622
msgid "Enable Remote Logging"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:257
msgid "Enable the banIP service."
msgstr "Įjungti „banIP“ tarnybą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:622
msgid "Enable the cgi interface to receive remote logging events."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:260
msgid "Enable verbose debug logging in case of processing errors."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:257
msgid "Enabled"
msgstr "Įjungta/Įgalinta (-as/-i)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:266
msgid "Enables IPv4 support."
msgstr "Įgalina IPv4 palaikymą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
msgid "Enables IPv6 support."
msgstr "Įgalina IPv6 palaikymą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:782
msgid "Expiry time for auto added blocklist Set members."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:726
msgid "External Allowlist Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:674
msgid "External Blocklist Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:190
msgid "Feed Name"
msgstr "Padavimo pavadinimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:252
msgid "Feed Selection"
msgstr "Padavimo pasirinkimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:249
msgid "Feed/Set Settings"
msgstr "Padavimo/Rinkinio nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:278
msgid "Fill Custom Feeds"
msgstr "Užpildyti pasirinktinius padavimus"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:68
msgid "Firewall Log"
msgstr "Užkardos žurnalas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:238
msgid "Flag"
msgstr "Vėliava"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:244
msgid "Flag not supported"
msgstr "Vėliava nepalaikoma"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:246
msgid "General Settings"
msgstr "Bendri nustatymai"
#: applications/luci-app-banip/root/usr/share/rpcd/acl.d/luci-app-banip.json:3
msgid "Grant access to LuCI app banIP"
msgstr "Duoti prieigą prie „LuCI-app-banIP“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:345
msgid "High Priority"
msgstr "Aukšto prioriteto"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:344
msgid "Highest Priority"
msgstr "Aukščiausio prioriteto"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:440
msgid "ICMP-Threshold"
msgstr "„ICMP-slenkstis“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:440
msgid ""
"ICMP-Threshold in packets per second to prevent WAN-DDoS attacks. To disable "
"this safeguard set it to '0'."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:766
msgid "IP"
msgstr "IP"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:11
msgid "IP Search"
msgstr "IP paieška"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:245
msgid "IP Search..."
msgstr "IP paieška..."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:283
msgid "IPv4 Network Interfaces"
msgstr "IPv4 tinklo sąsajos ir sietuvai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:266
msgid "IPv4 Support"
msgstr "IPv4 palaikymas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290
msgid "IPv6 Network Interfaces"
msgstr "IPv6 tinklo sąsajos ir sietuvai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:271
msgid "IPv6 Support"
msgstr "IPv6 palaikymas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
msgid ""
"Increase the maximal number of open files, e.g. to handle the amount of "
"temporary split files while loading the Sets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:163
msgid "Information"
msgstr "Informacija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:198
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:635
msgid "Invalid characters"
msgstr "Negalimi simboliai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:119
msgid "Invalid input values, unable to save modifications."
msgstr "Negalimos įvesties reikšmės, nepavyko išsaugoti pakeitimų."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:714
msgid "LACNIC - serving the Latin American and Caribbean region"
msgstr "„LACNIC“ – teikia Lotynų Amerikos ir Karibų regioną"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:164
msgid "LAN-Forward (packets)"
msgstr "„LAN-Persiuntimas“ (paketai)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:510
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:551
msgid "LAN-Forward Chain"
msgstr "„LAN-Persiuntimo grandinė“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:201
msgid "Last Run"
msgstr "Paskutinį kartą vykdytą"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:348
msgid "Least Priority"
msgstr "Mažiausias prioritetas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:347
msgid "Less Priority"
msgstr "Mažiau prioriteto"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:551
msgid "Limit certain feeds to the LAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "Limit certain feeds to the WAN-Forward chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "Limit certain feeds to the WAN-Input chain."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:366
msgid "Limit the cpu cores used by banIP to save RAM."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:762
msgid "Limit the uplink autoallow function."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
msgid ""
"List Set elements in the status and report, disable this to reduce the CPU "
"load."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:311
msgid "List of available reload trigger interface(s)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:85
msgid "List the elements of a specific banIP-related Set."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:756
msgid "Local Feed Settings"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596
msgid ""
"Location for parsing the log file, e.g. via syslog-ng, to deactivate the "
"standard parsing via logread."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid "Log Count"
msgstr "Žurnalo kiekis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:593
msgid "Log LAN-Forward"
msgstr "Žurnalas/-inti – „LAN-Persiuntimas“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid "Log Limit"
msgstr "Žurnalo limitas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
msgid "Log Prerouting"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:250
msgid "Log Settings"
msgstr "Žurnalo nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:618
msgid "Log Terms"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
msgid "Log WAN-Forward"
msgstr "Žurnalas/-inti – „WAN-Persiuntimas“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587
msgid "Log WAN-Input"
msgstr "Žurnalas/-inti – „WAN-Įvestis“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:584
msgid "Log suspicious Prerouting packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:593
msgid "Log suspicious forwarded LAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:590
msgid "Log suspicious forwarded WAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:587
msgid "Log suspicious incoming WAN packets."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:596
msgid "Logfile Location"
msgstr "Žurnalo failo vietovė"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:355
msgid "Max Open Files"
msgstr "Maksimalus atidarytų failų kiekis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:189
msgid "NFT Information"
msgstr "„NFT“ informacija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569
msgid "NFT Log Level"
msgstr "„NFT“ žurnalo lygis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276
msgid "Network Devices"
msgstr "Tinklo įrenginiai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "Nice Level"
msgstr "Lygis – „Nice“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:53
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:122
msgid "No Search results!"
msgstr "Nėra paieškos rezultatų!"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:346
msgid "Normal Priority"
msgstr "Normalus prioritetas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:321
msgid ""
"Number of download attempts in case of an error (not supported by uclient-"
"fetch)."
msgstr ""
"Atsisiuntimų bandymų skaičius atsiradus klaidai (nepalaikomas „uclient-"
"fetch“)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:613
msgid ""
"Number of failed login attempts of the same IP in the log before blocking."
msgstr ""
"Nepavykusių prisijungimų skaičius to pačio IP, kuris randamas žurnale prieš "
"blokavimą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:306
msgid ""
"Override the pre-configured download options for the selected download "
"utility."
msgstr ""
"Perrašyti jau sukonfigūruotus atsisiuntimo parinktis, pasirinktam "
"atsisiuntimo įrankiui."
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:28
msgid "Overview"
msgstr "Apžiūra"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:600
msgid ""
"Parse only the last stated number of log entries for suspicious events. To "
"disable the log monitor at all set it to '0'."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:165
msgid "Port/Protocol Limit"
msgstr "Prievado/Protokolo limitas"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:76
msgid "Processing Log"
msgstr "Apdorojamas žurnalas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:664
msgid "Profile used by 'msmtp' for banIP notification E-Mails."
msgstr ""
"Profilis kurį naudoja „msmtp“, skirta „banIP“ pranešimams per el. paštą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:209
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:222
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:749
msgid "Protocol/URL format not supported"
msgstr "Protokolo/„URL“ – Saito formatas yra nepalaikomas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:715
msgid "RIPE - serving Europe, Middle East and Central Asia"
msgstr "„RIPE“ – teikia Europos, Vidurinių rytų ir centrinės Azijos regionus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:649
msgid "Receive E-Mail notifications with every banIP run."
msgstr "Gauti el. pašto pranešimus su kiekvienu „banIP“ paleidimu."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:652
msgid ""
"Receiver address for banIP notification E-Mails, this information is "
"required to enable E-Mail functionality."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:252
msgid "Refresh"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:710
msgid "Regional Internet Registry"
msgstr "Regioninis interneto registras"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:228
msgid "Reload"
msgstr "Perleidimas/-sti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:311
msgid "Reload Trigger Interface"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627
msgid "Remote Token"
msgstr "Nuotolinis žetonas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "Report Directory"
msgstr "Atskaitos katalogas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:401
msgid "Report Elements"
msgstr "Atskaitos elementai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:235
msgid "Restart"
msgstr "Paleisti iš naujo"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:792
msgid "Restrict the internet access from/to a small number of secure IPs."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:26
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:96
msgid "Result"
msgstr "Rezultatas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:214
msgid "Rulev4"
msgstr "„Rulev4“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:227
msgid "Rulev6"
msgstr "„Rulev6“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:197
msgid "Run Flags"
msgstr "Vykdymo vėliavos"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:193
msgid "Run Information"
msgstr "Vykdymo informacija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid "SYN-Threshold"
msgstr "„SYN-slenkstis“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:454
msgid ""
"SYN-Threshold in packets per second to prevent WAN-DDoS attacks. To disable "
"this safeguard set it to '0'."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:296
msgid "Save Custom Feeds"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:60
msgid "Search"
msgstr "Paieška"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:12
msgid "Search the banIP-related Sets for a specific IP."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:297
msgid "Select one of the pre-configured download utilities."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:276
msgid "Select the WAN network device(s)."
msgstr "Pasirinkite „WAN“ tinklo įrenginį/-ius."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:283
msgid "Select the logical WAN IPv4 network interface(s)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:290
msgid "Select the logical WAN IPv6 network interface(s)."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:656
msgid "Sender address for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:88
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:160
msgid "Set"
msgstr "Nustatyti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Set Policy"
msgstr "Nustatyti politiką"
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:60
msgid "Set Reporting"
msgstr "Nustatyti atskaitavimą"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
msgid "Set Split Size"
msgstr "Nustatyti plyšio dydį"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:84
msgid "Set Survey"
msgstr "Nustatyti apklausą"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:238
msgid "Set Survey..."
msgstr "Nustatyti apklausą..."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:259
msgid "Set details"
msgstr "Nustatyti išsamesnę informaciją"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:412
msgid ""
"Set the nft chain priority within the banIP table, lower values means higher "
"priority."
msgstr ""
"Nustatyti „nft“ grandinės prioritetą „banIP“ lentelės viduje, žemesnės "
"reikšmės nurodo aukštesnį prioritetą."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:489
msgid "Set the nft policy for banIP-related Sets."
msgstr "Nustatyti „nft“ politiką, skirta „banIP“ susijusiems rinkiniams."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:569
msgid "Set the syslog level for NFT logging."
msgstr "Nustatyti „syslog“ lygį „NFT“ žurnalinimui."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:244
msgid "Settings"
msgstr "Nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:375
msgid "Split external Set loading after every n members to save RAM."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:165
msgid "Status"
msgstr "Būklė/Būsena"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:221
msgid "Stop"
msgstr "Stop"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:765
msgid "Subnet"
msgstr "Potinklis (numatytas/-a)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:129
msgid "Survey"
msgstr "Apklausa"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:205
msgid "System Information"
msgstr "Sistemos informacija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:248
msgid "Table/Chain Settings"
msgstr "Lentelės/Grandinės nustatymai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:393
msgid "Target directory for banIP-related report files."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:389
msgid "Target directory for compressed feed backups."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:28
msgid "The allowlist is too big, unable to save modifications."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:28
msgid "The blocklist is too big, unable to save modifications."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:618
msgid ""
"The default regular expressions are filtering suspicious ssh, LuCI, nginx "
"and asterisk traffic."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:343
msgid "The selected priority will be used for banIP background processing."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:32
msgid ""
"This is the local banIP allowlist that will permit certain MAC-, IP-"
"addresses or domain names.<br /> <em><b>Please note:</b></em> add only "
"exactly one MAC/IPv4/IPv6 address or domain name per line. Ranges in CIDR "
"notation and MAC/IP-bindings are allowed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:32
msgid ""
"This is the local banIP blocklist that will prevent certain MAC-, IP-"
"addresses or domain names.<br /> <em><b>Please note:</b></em> add only "
"exactly one MAC/IPv4/IPv6 address or domain name per line. Ranges in CIDR "
"notation and MAC/IP-bindings are allowed."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:196
msgid ""
"This tab shows the last generated Set Report, press the 'Refresh' button to "
"get a new one."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:199
msgid "Timestamp"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:647
msgid ""
"To enable email notifications, set up the 'msmtp' package and specify a "
"vaild E-Mail receiver address."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:627
msgid "Token to communicate with the cgi interface."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:660
msgid "Topic for banIP notification E-Mails."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:316
msgid "Trigger Delay"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:468
msgid "UDP-Threshold"
msgstr "„UDP-slenkstis“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:468
msgid ""
"UDP-Threshold in packets per second to prevent WAN-DDoS attacks. To disable "
"this safeguard set it to '0'."
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:203
msgid "URLv4"
msgstr "„URLv4“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:216
msgid "URLv6"
msgstr "„URLv6“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:701
msgid "Unable to parse the countries file!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:520
msgid "Unable to parse the custom feed file!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:527
msgid "Unable to parse the default feed file!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:152
msgid "Unable to parse the report file!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:73
msgid "Unable to parse the ruleset file!"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/allowlist.js:22
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/blocklist.js:22
msgid "Unable to save modifications: %s"
msgstr "Nepavyko išsaugoti pakeitimų/redagavimų: %s"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:269
msgid "Upload Custom Feeds"
msgstr "Įkelti pasirinktinius padavimus"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:72
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:78
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:85
msgid "Upload of the custom feed file failed."
msgstr "Pasirinktinio padavimo failo įkėlimas nepavyko."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:260
msgid "Verbose Debug Logging"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:169
msgid "Version"
msgstr "Versija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:163
msgid "WAN-Forward (packets)"
msgstr "„WAN-Persiuntimas“ (paketai)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:509
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:541
msgid "WAN-Forward Chain"
msgstr "„WAN-Persiuntimo“ grandinė"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:162
msgid "WAN-Input (packets)"
msgstr "„WAN-Įvestis“ (paketai)"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:508
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:531
msgid "WAN-Input Chain"
msgstr "„WAN-Įvesties“ grandinė"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/feeds.js:174
msgid ""
"With this editor you can upload your local custom feed file or fill up an "
"initial one (a 1:1 copy of the version shipped with the package). The file "
"is located at '/etc/banip/banip.custom.feeds'. Then you can edit this file, "
"delete entries, add new ones or make a local backup. To go back to the "
"maintainers version just empty the custom feed file again (do not delete "
"it!)."
msgstr ""
"Su šiuo redaktoriumi, Jūs galite įkelti savo vietinį pasirinktinį padavimo "
"failą, arba užpildyti pradinį (1:1 kopija šio paketo įtraukiamos versijos). "
"Šis failas yra randamas – „/etc/banip/banip.custom.feeds“. Tada Jūs galite "
"redaguoti šį failą, ištrinti jo įvestis, pridėti naujas arba sukurti vietinę "
"atsarginę kopiją. Norint sugrįžti atgal į laikomąją versiją, tiesiog "
"ištuštinkite pasirinktinį padavimo failą iš naujo (neištrinkite jo!)."
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:571
msgid "alert"
msgstr "įspėjimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:225
msgid "auto-added IPs to allowlist"
msgstr ""
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:229
msgid "auto-added IPs to blocklist"
msgstr ""
#: applications/luci-app-banip/root/usr/share/luci/menu.d/luci-app-banip.json:3
msgid "banIP"
msgstr "„banIP“"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:212
msgid "blocked icmp-flood packets"
msgstr "blokuoti „icmp-flood“ paketai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:216
msgid "blocked invalid ct packets"
msgstr "blokuoti negalimi „ct“ paketai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:220
msgid "blocked invalid tcp packets"
msgstr "blokuoti negalimi „tcp“ paketai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:204
msgid "blocked syn-flood packets"
msgstr "blokuoti „syn-flood“ paketai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/setreport.js:208
msgid "blocked udp-flood packets"
msgstr "blokuoti „udp-flood“ paketai"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:572
msgid "crit"
msgstr "kritinė"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:577
msgid "debug"
msgstr "derinimas/trukdžių šalinimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:499
msgid "drop"
msgstr "mesti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:570
msgid "emerg"
msgstr "kritinė būklė/avarinis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:573
msgid "err"
msgstr "klaida"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:576
msgid "info"
msgstr "informacija"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:532
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:542
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:552
msgid "local allowlist"
msgstr "vietinis leidžiamasis sąrašas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:533
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:543
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:553
msgid "local blocklist"
msgstr "vietinis blokavimo sąrašas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:490
msgid "memory"
msgstr "atmintis"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:575
msgid "notice"
msgstr "pranešimas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:491
msgid "performance"
msgstr "našumas"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:500
msgid "reject"
msgstr "atmesti"
#: applications/luci-app-banip/htdocs/luci-static/resources/view/banip/overview.js:574
msgid "warn"
msgstr "įspėti"
#~ msgid "Apply & Restart"
#~ msgstr "Paleisti iš naujo"
#~ msgid "No banIP related firewall logs yet!"
#~ msgstr "Nėra „banIP“ susijusių užkardos žurnalų (kol kas)!"
#~ msgid "Chain/Set Settings"
#~ msgstr "Grandinė/Nustatyti nustatymus"
#~ msgid "NFT Chain Priority"
#~ msgstr "„NFT“ grandinės prioritetas"
#~ msgid "NFT Set Policy"
#~ msgstr "Nustatyti „NTF“ politiką"
#~ msgid "auto-added to allowlist today"
#~ msgstr "šiandien automatiškai pridėtas prie leidžiamojo sąrašo"
#~ msgid "auto-added to blocklist today"
#~ msgstr "šiandien automatiškai pridėtas prie blokavimo sąrašo"
|