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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2020-04-13 14:11+0000\n"
"Last-Translator: Danut Vornicu <ovisadang@yahoo.com>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock/ro/>\n"
"Language: ro\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.0-dev\n"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:257
msgid "Action"
msgstr "Actiune"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:216
msgid "Active Sources"
msgstr "Surse Active"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:6
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:3
msgid "Adblock"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:36
msgid "Adblock action"
msgstr "Acțiune Adblock"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:11
msgid "Add Blacklist Domain"
msgstr "Adăugare Listă Domenii Interzise"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:46
msgid "Add Whitelist Domain"
msgstr "Adăugare Listă Domenii Admise"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:12
msgid "Add this (sub-)domain to your local blacklist."
msgstr "Adăugați acest (sub) domeniu în lista locală de interzise."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:47
msgid "Add this (sub-)domain to your local whitelist."
msgstr "Adăugați acest (sub) domeniu la lista locală de admise."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:416
msgid "Additional Jail Blocklist"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:269
msgid "Additional Settings"
msgstr "Setări Suplimentare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Additional trigger delay in seconds before adblock processing begins."
msgstr ""
"Întârziere adițională înainte ca procesarea adblock-ului să înceapă (în "
"secunde)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:270
msgid "Advanced DNS Settings"
msgstr "Setări Avansate DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:272
msgid "Advanced E-Mail Settings"
msgstr "Setări Avansate E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid "Advanced Report Settings"
msgstr "Setări Avansate Raport"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:256
msgid "Answer"
msgstr "Răspuns"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:364
msgid "Backup Directory"
msgstr "Director copie de siguranţă"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355
msgid "Base Temp Directory"
msgstr "Director Temporar de Bază"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:355
msgid ""
"Base Temp Directory for all adblock related runtime operations, e.g. "
"downloading, sorting, merging etc."
msgstr ""
"Director Temporar de Bază pentru toate operațiunile funcționale legate de "
"adblock, ex. descărcare, sortare, unire etc."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:15
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:34
msgid ""
"Blacklist changes have been saved. Refresh your adblock lists that changes "
"take effect."
msgstr ""
"Schimbările la Lista de Interzise au fost salvate. Reîmprospătați lista "
"adblock pentru ca schimbările să aibă efect."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:281
msgid "Blacklist..."
msgstr "Lista de Interzise..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:210
msgid "Blocked Domain"
msgstr "Domeniu blocat"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:213
msgid "Blocked Domains"
msgstr "Domenii Blocate"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:360
msgid "Blocklist Backup"
msgstr "Copie de Rezervă Pentru Lista de Blocate"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:81
msgid "Blocklist Query"
msgstr "Interogare Lista de Blocare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:317
msgid "Blocklist Query..."
msgstr "Interogare Lista de Blocare..."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid "Blocklist Sources"
msgstr "Surse de blocare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:416
msgid ""
"Builds an additional DNS blocklist to block access to all domains except "
"those listed in the whitelist. Please note: You can use this restrictive "
"blocklist e.g. for guest wifi or kidsafe configurations."
msgstr ""
"Creează o listă de blocare DNS suplimentară pentru a bloca accesul la toate "
"domeniile, cu excepția celor enumerate în lista de admise. Vă rugăm să "
"rețineți: puteți utiliza această listă de blocare restrictivă, de ex. pentru "
"wifi-ul oaspeților sau configurațiile pentru copii."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:22
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:57
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:108
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:162
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:59
msgid "Cancel"
msgstr "Renunțare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:271
msgid ""
"Changes on this tab needs a full adblock service restart to take effect.<br /"
"><p> </p>"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:254
msgid "Client"
msgstr "Client"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:128
msgid ""
"Configuration of the adblock package to block ad/abuse domains by using DNS. "
"For further information <a href=\"https://github.com/openwrt/packages/blob/"
"master/net/adblock/files/README.md\" target=\"_blank\" rel=\"noreferrer "
"noopener\" >check the online documentation</a>"
msgstr ""
"Configurarea pachetului adblock pentru a bloca reclamele/domeniile abuzive "
"prin utilizarea DNS. Pentru informații suplimentare <a href=\"https://github."
"com/openwrt/packages/blob/master/net/adblock/files/README.md\" target="
"\"_blank\" rel=\"noreferrer noopener\" >verificați documentația online</a>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:205
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:207
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:209
msgid "Count"
msgstr "Număr"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:360
msgid ""
"Create compressed blocklist backups, they will be used in case of download "
"errors or during startup."
msgstr ""
"Creare copii de rezervă comprimate a listei de blocate, acestea vor fi "
"utilizate în cazul erorilor de descărcare sau în timpul pornirii."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:219
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid "DNS Backend"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
msgid "DNS Directory"
msgstr "Director DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:406
msgid "DNS File Reset"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:8
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:27
msgid "DNS Report"
msgstr "Raport DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:309
msgid "DNS Requests (blocked)"
msgstr "Cereri DNS (blocate)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:306
msgid "DNS Requests (total)"
msgstr "Cereri DNS (total)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "DNS Restart Timeout"
msgstr "Timp Repornire DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:252
msgid "Date"
msgstr "Data"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:413
msgid "Disable DNS Allow"
msgstr "Dezactivare Permite DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425
msgid "Disable DNS Restarts"
msgstr "Dezactivare Repornire DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:425
msgid ""
"Disable adblock triggered restarts for dns backends with autoload/inotify "
"functions."
msgstr ""
"Dezactivează repornirile declanșate de adblock pentru backend-urile dns cu "
"funcții de autoîncărcare /notificare."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:413
msgid "Disable selective DNS whitelisting (RPZ pass through)."
msgstr "Dezactivați lista selectivă pentru DNS permise (trecere prin RPZ)."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:208
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:255
msgid "Domain"
msgstr "Domeniu"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377
msgid "Download Parameters"
msgstr "Descărcare Parametri"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid "Download Queue"
msgstr "Coadă de Descărcare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
msgid "Download Utility"
msgstr "Utilitar descărcare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid "E-Mail Notification"
msgstr "Notificare e-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid "E-Mail Notification Count"
msgstr "Număr de Notificări pe E-mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467
msgid "E-Mail Profile"
msgstr "Profil E-Mail"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "E-Mail Receiver Address"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459
msgid "E-Mail Sender Address"
msgstr "Adresa E-Mail Expeditor"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "E-Mail Topic"
msgstr "Subiect E-Mail"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:9
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:35
msgid "Edit Blacklist"
msgstr "Editare listă neagră"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:10
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:43
msgid "Edit Whitelist"
msgstr "Editare listă albă"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid "Enable SafeSearch"
msgstr "Activare Căutare Sigură"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Enable moderate SafeSearch filters for youtube."
msgstr "Activare filtre moderate SafeSearch pentru YouTube."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "Enable the adblock service."
msgstr "Activare serviciu adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333
msgid "Enable verbose debug logging in case of any processing errors."
msgstr ""
"Activare înregistrare detaliată de depanare în cazul unor erori de procesare."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:284
msgid "Enabled"
msgstr "Activat"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:303
msgid "End Date"
msgstr "Data sfârşit"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:301
msgid ""
"Enforcing SafeSearch for google, bing, duckduckgo, yandex, youtube and "
"pixabay."
msgstr ""
"Forțare căutare sigură pentru google, bing, duckduckgo, yandex, youtube și "
"pixbay."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:18
msgid "Existing job(s)"
msgstr "Activitate(ăți) existentă(e)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
msgid "External DNS Lookup Domain"
msgstr "Domeniul de căutare DNS extern"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:401
msgid ""
"External domain to check for a successful DNS backend restart. Please note: "
"To disable this check set this option to 'false'."
msgstr ""
"Domeniu extern pentru a verifica dacă a fost repornit cu succes un DNS. Vă "
"rugăm să rețineți: pentru a dezactiva această verificare, setați această "
"opțiune pe „falsă”."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:156
msgid "Filter criteria like date, domain or client (optional)"
msgstr "Criterii de filtrare precum dată, domeniu sau client (opțional)"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:410
msgid "Flush DNS Cache"
msgstr "Eliberează cache-ul DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:410
msgid "Flush the DNS Cache before adblock processing as well."
msgstr "Spălare memoria cache DNS înainte de procesarea adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293
msgid "Force Local DNS"
msgstr "Forţează DNS Local"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:317
msgid ""
"Gather DNS related network traffic via tcpdump and provide a DNS Report on "
"demand. Please note: this needs additional 'tcpdump-mini' package "
"installation and a full adblock service restart to take effect."
msgstr ""
"Adunare trafic de rețea aferent DNS prin tcpdump și realizare raport DNS la "
"cerere. Vă rugăm să rețineți: aceasta necesită instalare suplimentară a "
"pachetului „tcpdump-mini” și o repornire completă a serviciului de blocare, "
"pentru a avea efect."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:268
msgid "General Settings"
msgstr "Setări generale"
#: applications/luci-app-adblock/root/usr/share/rpcd/acl.d/luci-app-adblock.json:3
msgid "Grant access to LuCI app adblock"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:208
msgid "Information"
msgstr "Informare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420
msgid "Jail Directory"
msgstr "Director Închisoare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:234
msgid "Last Run"
msgstr "Ultima rulare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:336
msgid "Latest DNS Requests"
msgstr "Ultimele Cereri DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:304
msgid "Limit SafeSearch to certain providers."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:432
msgid "List of available network devices used by tcpdump."
msgstr "Lista dispozitivelor de rețea utilizate de tcpdump."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid ""
"List of available network interfaces to trigger the adblock start. Choose "
"'unspecified' to use a classic startup timeout instead of a network trigger."
msgstr ""
"Lista interfețelor de rețea disponibile pentru a declanșa pornirea adblock. "
"Alegeți „nespecificat” pentru a utiliza un interval de timp de pornire "
"clasic în loc de declanșarea rețelei."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:383
msgid ""
"List of supported DNS backends with their default list directory. To "
"overwrite the default path use the 'DNS Directory' option."
msgstr ""
"Lista DNS-urilor acceptate cu directorul lor al listelor implicite. Pentru a "
"rescrie calea implicită, utilizați opțiunea „Director DNS”."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:273
msgid ""
"List of supported and fully pre-configured adblock sources, already active "
"sources are pre-selected.<br /> <b><em>To avoid OOM errors, please do not "
"select too many lists!</em></b><br /> List size information with the "
"respective domain ranges as follows:<br /> • <b>S</b> (-10k), "
"<b>M</b> (10k-30k) and <b>L</b> (30k-80k) should work for 128 MByte devices,"
"<br /> • <b>XL</b> (80k-200k) should work for 256-512 MByte "
"devices,<br /> • <b>XXL</b> (200k-) needs more RAM and Multicore "
"support, e.g. x86 or raspberry devices.<br /> <p> </p>"
msgstr ""
"Lista surselor acceptate și complet pre-configurate ale abdlock, surse deja "
"active sunt preselectate.<br /> <b><em>Pentru a evita erorile OOM, nu "
"selectați prea multe liste!</em></b><br /> Mărimea listei cu informații "
"despre domeniul respectiv variază astfel:<br /> • <b>S</b> "
"(-10k), <b>M</b> (10k-30k) și <b>L</b> (30k-80k) ar trebui să funcționeze "
"pentru dispozitive de 128 MByte,<br /> • <b>XL</b> (80k-200k) ar "
"trebui să funcționeze pentru dispozitivele de 256-512 MByte,<br /> •"
" <b>XXL</b> (200k-) au nevoie de dispozitive cu mai mult RAM și suport "
"Multicore, ex. x86 sau raspberry.<br /> <p> </p>"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:370
msgid "List of supported and fully pre-configured download utilities."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid "Local DNS Ports"
msgstr "Porturi DNS Locale"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:11
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:51
msgid "Log View"
msgstr "Vizualizare Jurnal"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid "Low Priority Service"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:206
msgid "Name / IP Address"
msgstr "Nume / Adresă IP"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:123
msgid "No Query results!"
msgstr "Nu există rezultate de interogare!"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:21
msgid "No adblock related logs yet!"
msgstr "Nu există încă jurnale adblock!"
#: applications/luci-app-adblock/luasrc/controller/adblock.lua:7
#: applications/luci-app-adblock/root/usr/share/luci/menu.d/luci-app-adblock.json:19
msgid "Overview"
msgstr "Prezentare generală"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:467
msgid "Profile used by 'msmtp' for adblock notification E-Mails."
msgstr "Profil utilizat de „msmtp” pentru e-mailurile de notificare adblock."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:131
msgid "Query"
msgstr "Interogare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:82
msgid "Query active blocklists and backups for a specific domain."
msgstr ""
"Interogare listă de blocări active și copii de rezervă pentru un anumit "
"domeniu."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:471
msgid ""
"Raise the notification count, to get E-Mails if the overall blocklist count "
"is less or equal to the given limit."
msgstr ""
"Creșteți numărul de notificări pentru a primi e-mailuri dacă numărul total "
"de blocări este mai mic sau egal cu limita dată."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:325
msgid "Receiver address for adblock notification e-mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:293
msgid ""
"Redirect all DNS queries from 'lan' zone to the local DNS resolver, applies "
"to UDP and TCP protocol."
msgstr ""
"Redirecționare toate interogările DNS din zona „lan” către procesatorul DNS "
"local, se aplică protocolului UDP și TCP."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:336
msgid ""
"Reduce the priority of the adblock background processing to take fewer "
"resources from the system. Please note: This change requires a full adblock "
"service restart to take effect."
msgstr ""
"Reducere prioritatea procesării adblock în fundal, pentru a consuma mai "
"puține resurse din sistem. Vă rugăm să rețineți: această modificare necesită "
"o repornire completă a serviciului de blocare pentru a avea efect."
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:183
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:257
msgid "Refresh"
msgstr "Reîmprospătare"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:138
msgid "Refresh DNS Report"
msgstr "Actualizare Raport DNS"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:15
msgid "Refresh Timer"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:242
msgid "Refresh Timer..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:324
msgid "Refresh..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:313
msgid "Relax SafeSearch"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:442
msgid "Report Chunk Count"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447
msgid "Report Chunk Size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid "Report Directory"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:432
msgid "Report Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452
msgid "Report Ports"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:442
msgid "Report chunk count used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:447
msgid "Report chunk size used by tcpdump in MByte."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:406
msgid ""
"Resets the final DNS blocklist 'adb_list.overall' after DNS backend loading. "
"Please note: This option starts a small ubus/adblock monitor in the "
"background."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:95
msgid "Result"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:228
msgid "Run Directories"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:231
msgid "Run Flags"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:225
msgid "Run Interfaces"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:222
msgid "Run Utils"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:39
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:74
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:83
msgid "Save"
msgstr "Salvează"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:321
msgid ""
"Send adblock related notification e-mails. Please note: this needs "
"additional 'msmtp' package installation."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:459
msgid "Sender address for adblock notification E-Mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:29
msgid "Set/Replace a new adblock job"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:266
msgid "Settings"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:346
msgid ""
"Size of the download queue for download processing (incl. sorting, merging "
"etc.) in parallel."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:479
msgid "Sources (Size, Focus)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:296
msgid ""
"Space separated list of DNS-related firewall ports which should be forced "
"locally."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:452
msgid "Space separated list of ports used by tcpdump."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:377
msgid "Special config options for the selected download utility."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:300
msgid "Start Date"
msgstr "Data de început"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:287
msgid "Startup Trigger Interface"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:210
msgid "Status / Version"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:250
msgid "Suspend"
msgstr "Suspendă"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:437
msgid ""
"Target directory for DNS related report files. Default is '/tmp', please use "
"preferably an usb stick or another local disk."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:364
msgid ""
"Target directory for blocklist backups. Default is '/tmp', please use "
"preferably an usb stick or another local disk."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:392
msgid "Target directory for the generated blocklist 'adb_list.overall'."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:420
msgid "Target directory for the generated jail blocklist 'adb_list.jail'."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:72
msgid "The Refresh Timer could not been updated."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:74
msgid "The Refresh Timer has been updated."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:52
msgid "The day of the week (opt., values: 1-7 possibly sep. by , or -)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:42
msgid "The hours portition (req., range: 0-23)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:47
msgid "The minutes portion (opt., range: 0-59)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/logread.js:28
msgid "The syslog output, pre-filtered for adblock related messages only."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:23
msgid ""
"This is the local adblock blacklist to always-deny certain (sub) domains."
"<br /> Please note: add only one domain per line. Comments introduced with "
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:23
msgid ""
"This is the local adblock whitelist to always allow certain (sub) domains."
"<br /> Please note: add only one domain per line. Comments introduced with "
"'#' are allowed - ip addresses, wildcards and regex are not."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:297
msgid ""
"This shows the last generated DNS Report, press the refresh button to get a "
"current one."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:253
msgid "Time"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:396
msgid "Timeout to wait for a successful DNS backend restart."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:16
msgid ""
"To keep your adblock lists up-to-date, you should setup an automatic update "
"job for these lists."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:329
msgid "Top 10 Statistics"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:463
msgid "Topic for adblock notification E-Mails."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:341
msgid "Trigger Delay"
msgstr "Intârzierea declanșării"
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/blacklist.js:17
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:17
msgid "Unable to save changes: %s"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:333
msgid "Verbose Debug Logging"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:69
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/whitelist.js:15
msgid ""
"Whitelist changes have been saved. Refresh your adblock lists that changes "
"take effect."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:273
msgid "Whitelist..."
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:385
msgid "dnsmasq (/tmp/dnsmasq.d)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:388
msgid "kresd (/etc/kresd)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/dnsreport.js:149
msgid "max. result set size"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:387
msgid "named (/var/lib/bind)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:389
msgid "raw (/tmp)"
msgstr ""
#: applications/luci-app-adblock/htdocs/luci-static/resources/view/adblock/overview.js:386
msgid "unbound (/var/lib/unbound)"
msgstr ""
#~ msgid ""
#~ "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less "
#~ "than 64 MB free RAM, please only select a few of them!"
#~ msgstr ""
#~ "<b>Atenție:</b> Pentru a preveni excepțiile OOM (Out-of-memory=consumarea "
#~ "RAM-ului), pe dispozitive cu mai puțin de 64 MB RAM, vă rugăm selectați "
#~ "doar puține dintre liste!"
#~ msgid "Adblock Status"
#~ msgstr "Statusul Adblock-ului"
#~ msgid "Adblock Version"
#~ msgstr "Versiune Adblock"
#~ msgid "Advanced"
#~ msgstr "Avansat"
#~ msgid "Archive Categories"
#~ msgstr "Categorii arhivă"
#~ msgid "Blacklist"
#~ msgstr "Listă neagră"
#~ msgid "Blacklist File"
#~ msgstr "Fișier Blacklist"
#~ msgid "Blocked DNS Queries"
#~ msgstr "Cereri DNS Blocate"
#~ msgid "Blocklist not found!"
#~ msgstr "Sursa de blocare nu a fost găsită!"
#~ msgid "Collecting data..."
#~ msgstr "Colectare date..."
#~ msgid "DNS Query Report"
#~ msgstr "Raport interogare DNS"
#~ msgid "Description"
#~ msgstr "Descriere"
#~ msgid "E-mail Profile"
#~ msgstr "Profil e-mail"
#~ msgid "E-mail Sender Address"
#~ msgstr "Adresa e-mail expeditor"
#~ msgid "E-mail Topic"
#~ msgstr "Subiect e-mail"
#~ msgid "Edit Configuration"
#~ msgstr "Editare configuraţie"
#~ msgid "Enable Adblock"
#~ msgstr "Activare Adblock"
#~ msgid "Extra Options"
#~ msgstr "Opțiuni suplimentare"
#~ msgid "Filter"
#~ msgstr "Filtru"
#~ msgid "Input file not found, please check your configuration."
#~ msgstr ""
#~ "Fișierul de intrare nu a fost găsit, vă rugăm verificaţi configuraţia."
#~ msgid "Latest DNS Queries"
#~ msgstr "Ultimele interogări DNS"
#~ msgid "Loading"
#~ msgstr "Încărcare"
#~ msgid "Name / IP-Address"
#~ msgstr "Nume / Adresă IP"
#~ msgid "No"
#~ msgstr "Nu"
#~ msgid "Please edit this file directly in a terminal session."
#~ msgstr "Vă rugăm editaţi acest fişier intr-o sesiune de terminal."
#~ msgid "Query domains"
#~ msgstr "Interogare domenii"
#~ msgid "Refresh Blocklist Sources"
#~ msgstr "Reîmprospătează sursele de blocare"
#~ msgid "Resume"
#~ msgstr "Reia"
#~ msgid ""
#~ "Set the nice level to 'low priority' and the adblock background "
#~ "processing will take fewer resources from the system."
#~ msgstr ""
#~ "Setează nivelul priorității la 'prioritate scăzută', iar procesarea în "
#~ "fundal al adblock-ului va consuma mai puține resurse."
#~ msgid "Startup Trigger"
#~ msgstr "Declanșator la pornire"
#~ msgid "Suspend / Resume Adblock"
#~ msgstr "Suspendarea / Reluarea Adblock-ului"
#~ msgid "Total DNS Queries"
#~ msgstr "Număr total interogări DNS"
#~ msgid "Waiting for command to complete..."
#~ msgstr "În așteptarea finalizării comenzii..."
#~ msgid "Whitelist"
#~ msgstr "Lista albă"
#~ msgid "Whitelist File"
#~ msgstr "Fișier lista albă"
#~ msgid "Yes"
#~ msgstr "Da"
|