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
|
msgid ""
msgstr ""
"PO-Revision-Date: 2024-10-09 17:39+0000\n"
"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsadblock-fast/tr/>\n"
"Language: tr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.8-dev\n"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:245
msgid "%s is currently disabled"
msgstr "%s şu anda devre dışı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:117
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:39
msgid "%s is not installed or not found"
msgstr "%s yüklenmemiş ya da bulunamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89
msgid "-"
msgstr "-"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506
msgid "Action"
msgstr "Aksiyon"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:127
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:49
msgid "Active"
msgstr "Aktif"
#: 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:186
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:250
msgid "AdBlock on all instances"
msgstr "Tüm örneklerde AdBlock"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:187
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:251
msgid "AdBlock on select instances"
msgstr "Seçili örneklerde Reklam Engelleme"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:10
msgid "AdBlock-Fast"
msgstr "AdBlock-Hızlı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:457
msgid "AdBlock-Fast - Allowed and Blocked Domains"
msgstr "AdBlock-Fast - İzin Verilen ve Engellenen Alan Adları"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:481
msgid "AdBlock-Fast - Allowed and Blocked Lists URLs"
msgstr "AdBlock-Fast - İzin Verilen ve Engellenen URL'leri Listeler"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:46
msgid "AdBlock-Fast - Configuration"
msgstr "AdBlock-Fast - Yapılandırma"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:130
msgid "AdBlock-Fast - Status"
msgstr "AdBlock-Fast - Durum"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:359
msgid "Add IPv6 entries"
msgstr "IPv6 girişleri ekle"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:356
msgid "Add IPv6 entries to block-list."
msgstr "Engelleme listesine IPv6 girişleri ekle."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:50
msgid "Advanced Configuration"
msgstr "Gelişmiş Yapılandırma"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:507
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512
msgid "Allow"
msgstr "İzin ver"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:465
msgid "Allowed Domains"
msgstr "İzin Verilen Alanlar"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420
msgid ""
"Attempt to create a compressed cache of block-list in the persistent memory."
msgstr ""
"Kalıcı bellekte sıkıştırılmış bir blok liste önbelleği oluşturmaya çalış."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344
msgid "Automatic Config Update"
msgstr "Otomatik Yapılandırma Güncellemesi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:49
msgid "Basic Configuration"
msgstr "Temel Yapılandırma"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:508
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512
msgid "Block"
msgstr "Engelle"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:473
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:75
msgid "Blocked Domains"
msgstr "Engellenen Alan Adları"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:143
msgid "Blocking %s domains (with %s)."
msgstr "%s alanı (%s ile) engelleniyor."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:76
msgid "Cache"
msgstr "Önbellek"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54
msgid "Cache file"
msgstr "Önbellek dosyası"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:169
msgid "Cache file found."
msgstr "Önbellek dosyası bulundu."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:212
msgid "Can't detect free RAM"
msgstr "Boş RAM algılanamıyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56
msgid "Compressed cache"
msgstr "Sıkıştırılmış önbellek"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:148
msgid "Compressed cache file created."
msgstr "Sıkıştırılmış önbellek dosyası oluşturuldu."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:171
msgid "Compressed cache file found."
msgstr "Sıkıştırılmış önbellek dosyası bulundu."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:243
msgid "Config (%s) validation failure!"
msgstr "Yapılandırma (%s) doğrulama hatası!"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:317
msgid "Controls system log and console output verbosity."
msgstr "Sistem günlüğünü ve konsol çıktı ayrıntı düzeyini kontrol eder."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393
msgid "Curl download retry"
msgstr "Curl indirmeyi yeniden dene"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:380
msgid "Curl maximum file size (in bytes)"
msgstr "Curl azami dosya boyutu (bayt cinsinden)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:131
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:74
msgid "DNS Service"
msgstr "DNS Hizmeti"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:53
msgid "DNS resolution option, see the %sREADME%s for details."
msgstr "DNS çözümleme seçeneği, ayrıntılar için %sREADME%s bakın."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431
msgid "Directory for compressed cache file"
msgstr "Sıkıştırılmış önbellek dosyası dizini"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433
msgid ""
"Directory for compressed cache file of block-list in the persistent memory."
msgstr ""
"Kalıcı bellekteki blok listesinin sıkıştırılmış önbellek dosyası için dizin."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:446
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347
msgid "Disable"
msgstr "Devre dışı bırak"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:449
msgid "Disable Debugging"
msgstr "Hata Ayıklamayı Devre Dışı Bırak"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:165
msgid "Disabled"
msgstr "Devre dışı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:440
msgid "Disabling %s service"
msgstr "%s hizmeti devre dışı bırakılıyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:163
msgid "Dnsmasq Config File URL"
msgstr "Dnsmasq Yapılandırma Dosyası URL'si"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358
msgid "Do not add IPv6 entries"
msgstr "IPv6 girişleri ekleme"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423
msgid "Do not store compressed cache"
msgstr "Sıkıştırılmış önbelleği saklama"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:410
msgid "Do not use simultaneous processing"
msgstr "Eşzamanlı işlemeyi kullanma"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:370
msgid "Download time-out (in seconds)"
msgstr "İndirme zaman aşımı (saniye cinsinden)"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:125
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:45
msgid "Downloading lists"
msgstr "Listeler indiriliyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:427
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:348
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502
msgid "Enable"
msgstr "Etkinleştir"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:450
msgid "Enable Debugging"
msgstr "Hata ayıklamayı etkinleştir"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:447
msgid "Enables debug output to /tmp/adblock-fast.log."
msgstr "/tmp/adblock-fast.log dosyasına hata ayıklama çıktısını etkinleştirir."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:421
msgid "Enabling %s service"
msgstr "%s hizmeti etkinleştiriliyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:46
msgid "Error"
msgstr "Hata"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:320
msgid "Errors encountered, please check the %sREADME%s"
msgstr "Hatalarla karşılaşıldı, lütfen %sREADME%s dosyasını kontrol edin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:48
msgid "Fail"
msgstr "Başarısız"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:268
msgid "Failed to access shared memory"
msgstr "Paylaşılan belleğe erişilemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264
msgid "Failed to create '%s' file"
msgstr "'%s' dosyası oluşturulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:286
msgid "Failed to create block-list or restart DNS resolver"
msgstr ""
"Engellenenler listesi oluşturulamadı veya DNS çözümleyici yeniden "
"başlatılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277
msgid "Failed to create compressed cache"
msgstr "Sıkıştırılmış önbellek oluşturulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263
msgid "Failed to create directory for %s file"
msgstr "%s dosyası için dizin oluşturulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:298
msgid "Failed to create output/cache/gzip file directory"
msgstr "Çıktı/önbellek/gzip dosya dizini oluşturulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:300
msgid "Failed to detect format %s"
msgstr "%s biçimi algılanamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:293
msgid "Failed to download %s"
msgstr "%s indirilemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:291
msgid "Failed to download Config Update file"
msgstr "Yapılandırma Güncelleme dosyası indirilemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272
msgid "Failed to format data file"
msgstr "Veri dosyası biçimlendirilemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281
msgid "Failed to move '%s' to '%s'"
msgstr "'%s', '%s' konumuna taşınamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274
msgid "Failed to move temporary data file to '%s'"
msgstr "Geçici veri dosyası '%s' dizinine taşınamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:270
msgid "Failed to optimize data file"
msgstr "Veri dosyası optimize edilemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:295
msgid "Failed to parse %s"
msgstr "%s ayrıştırılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294
msgid "Failed to parse Config Update file"
msgstr "Yapılandırma Güncelleme dosyası ayrıştırılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271
msgid "Failed to process allow-list"
msgstr "İzin verilenler listesi işlenemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:289
msgid "Failed to reload/restart DNS resolver"
msgstr "DNS çözümleyici yeniden yüklenemedi/yeniden başlatılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279
msgid "Failed to remove temporary files"
msgstr "Geçici dosyalar kaldırılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:267
msgid "Failed to restart/reload DNS resolver"
msgstr "DNS çözümleyici yeniden başlatılamadı/yeniden yüklenemedi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269
msgid "Failed to sort data file"
msgstr "Veri dosyası sıralanamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126
msgid "Failed to start"
msgstr "Başlatılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288
msgid "Failed to stop %s"
msgstr "%s durdurulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:280
msgid "Failed to unpack compressed cache"
msgstr "Sıkıştırılmış önbellek paketi açılamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:77
msgid "Force DNS Ports"
msgstr "DNS Bağlantı Noktalarını Zorla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:151
msgid "Force DNS ports:"
msgstr "DNS bağlantı noktalarını zorla:"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:124
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:44
msgid "Force Reloading"
msgstr "Yeniden Yüklemeye Zorla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:305
msgid "Force Router DNS"
msgstr "Yönlendirici DNS'sini Zorla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:309
msgid "Force Router DNS server to all local devices"
msgstr "Yönlendirici DNS sunucusunu tüm yerel cihazlara zorla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:368
msgid "Force redownloading %s block lists"
msgstr "%s blok listelerini yeniden indirmeye zorla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:306
msgid "Forces Router DNS use on local devices, also known as DNS Hijacking."
msgstr ""
"Yönlendirici DNS'sini zorla, yerel cihazlarda, DNS Hijacking olarak da "
"bilinir."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:305
msgid "Free ram (%s) is not enough to process all enabled block-lists"
msgstr ""
"Boş ram (%s) etkinleştirilmiş tüm blok listelerini işlemek için yeterli değil"
#: 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 "Luci-app-adblock-fast için UCI ve dosya erişimi yetkisi verin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:355
msgid "IPv6 Support"
msgstr "IPv6 Desteği"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:382
msgid ""
"If curl is installed and detected, it would not download files bigger than "
"this."
msgstr ""
"curl kuruluysa ve algılanırsa, bundan daha büyük dosyaları indirmeyecektir."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395
msgid ""
"If curl is installed and detected, it would retry download this many times "
"on timeout/fail."
msgstr ""
"Curl kurulur ve algılanırsa, zaman aşımı/başarısızlık durumunda bunu birçok "
"kez indirmeyi deneyecektir."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:466
msgid "Individual domains to be allowed."
msgstr "İzin verilecek bireysel alanlar."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:474
msgid "Individual domains to be blocked."
msgstr "Engellenecek bireysel alanlar."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:210
msgid "Invalid compressed cache directory '%s'"
msgstr "Geçersiz sıkıştırılmış ön bellek dizini '%s'"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329
msgid "LED to indicate status"
msgstr "Durumu göstermek için LED"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:407
msgid ""
"Launch all lists downloads and processing simultaneously, reducing service "
"start time."
msgstr ""
"Tüm liste indirmelerini ve işlemeyi aynı anda başlatarak hizmetin başlama "
"zamanını azaltın."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:308
msgid "Let local devices use their own DNS servers if set"
msgstr ""
"Ayarlanmışsa, yerel cihazların kendi DNS sunucularını kullanmasına izin verin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:524
msgid "Name"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515
msgid "Name/URL"
msgstr ""
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:252
msgid "No AdBlock on SmartDNS"
msgstr "SmartDNS'de AdBlock yok"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:188
msgid "No AdBlock on dnsmasq"
msgstr "dnsmasq'ta AdBlock yok"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:296
msgid "No HTTPS/SSL support on device"
msgstr "Cihazda HTTPS/SSL desteği yok"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:302
msgid "No blocked list URLs nor blocked-domains enabled"
msgstr "Engellenen liste URL'si veya engellenen alan adı etkin değil"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:185
msgid "Not installed or not found"
msgstr "Yüklü değil veya bulunamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:316
msgid "Output Verbosity Setting"
msgstr "Çıktı Ayrıntı Ayarı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:389
msgid "Pause"
msgstr "Duraklat"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:384
msgid "Pausing %s"
msgstr "Duraklatılıyor %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:345
msgid "Perform config update before downloading the block/allow-lists."
msgstr ""
"Engelleme / izin listelerini indirmeden önce yapılandırma güncellemesini "
"gerçekleştirin."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:331
msgid "Pick the LED not already used in %sSystem LED Configuration%s."
msgstr "%sSystem LED Configuration%s kullanılmayan LED'i seçin."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:280
msgid "Pick the SmartDNS instance(s) for AdBlocking"
msgstr "Reklam Engelleme için SmartDNS örnek(ler)ini seçin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:217
msgid "Pick the dnsmasq instance(s) for AdBlocking"
msgstr "AdBlocking için dnsmasq örnek(ler)ini seçin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:61
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:71
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:76
#: 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:90
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:99
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:106
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:113
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:122
msgid "Please note that %s is not supported on this system."
msgstr "Lütfen %s 'nin bu sistemde desteklenmediğini unutmayın."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:122
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:42
msgid "Processing lists"
msgstr "Listeler işleniyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:374
msgid "Redownload"
msgstr "Yeniden İndir"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:43
msgid "Restarting"
msgstr "Yeniden başlatılıyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:487
msgid "Service Control"
msgstr "Hizmet Kontrolü"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:311
msgid "Service Errors"
msgstr "Hizmet Hataları"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:134
msgid "Service Status"
msgstr "Hizmet Durumu"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:217
msgid "Service Warnings"
msgstr "Hizmet Uyarıları"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:405
msgid "Simultaneous processing"
msgstr "Eşzamanlı işleme"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:489
msgid "Size"
msgstr "Boyut"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:499
msgid "Size: %s"
msgstr "Boyut: %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:320
msgid "Some output"
msgstr "Biraz çıktı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:201
msgid "Some recommended packages are missing"
msgstr "Önerilen paketlerden bazıları eksik"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:355
msgid "Start"
msgstr "Başlat"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:121
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:41
msgid "Starting"
msgstr "Başlıyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:349
msgid "Starting %s service"
msgstr "%s hizmeti başlatılıyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:72
msgid "Status"
msgstr "Durum"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:408
msgid "Stop"
msgstr "Dur"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371
msgid "Stop the download if it is stalled for set number of seconds."
msgstr "Ayarlanan saniye kadar inmezse indirmeyi durdurun."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:120
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:40
msgid "Stopped"
msgstr "Durduruldu"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:402
msgid "Stopping %s service"
msgstr "%s hizmeti durduruluyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424
msgid "Store compressed cache"
msgstr "Sıkıştırılmış önbelleği depola"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418
msgid "Store compressed cache file on router"
msgstr "Sıkıştırılmış önbellek dosyasını yönlendiricide sakla"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319
msgid "Suppress output"
msgstr "Çıkışı bastır"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:261
msgid "The %s failed to discover WAN gateway"
msgstr "%s WAN ağ geçidini bulamadı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:204
msgid ""
"The WebUI application (luci-app-adblock-fast) is outdated, please update it"
msgstr ""
"Web kullanıcı arayüzü uygulaması (luci-app-adblock-fast) güncel değil, "
"lütfen güncelleyin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:249
msgid ""
"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
"installed dnsmasq does not support ipset"
msgstr ""
"Dnsmasq ipset desteği etkin, ancak dnsmasq yüklü değil veya yüklü dnsmasq "
"ipset'i desteklemiyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252
msgid ""
"The dnsmasq ipset support is enabled, but ipset is either not installed or "
"installed ipset does not support '%s' type"
msgstr ""
"Dnsmasq ipset desteği etkin, ancak ipset ya kurulu değil ya da kurulu ipset "
"'%s' tipini desteklemiyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255
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 desteği etkin, ancak dnsmasq yüklü değil veya yüklü dnsmasq "
"nft setini desteklemiyor"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:258
msgid "The dnsmasq nft sets support is enabled, but nft is not installed"
msgstr "Dnsmasq nft setleri desteği etkin ancak nft yüklü değil"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:207
msgid "The principal package (adblock-fast) is outdated, please update it"
msgstr "Ana paket (adblock-fast) güncel değil, lütfen güncelleyin"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528
msgid "URL"
msgstr "URL"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:165
msgid ""
"URL to the external dnsmasq config file, see the %sREADME%s for details."
msgstr ""
"Harici dnsmasq yapılandırma dosyasının URL'si, ayrıntılar için %sREADME%s "
"bakın."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:482
msgid "URLs to file(s) containing lists to be allowed or blocked."
msgstr ""
"İzin verilecek veya engellenecek listeleri içeren dosya(lar)ın URL'leri."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:493
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:83
msgid "Unknown"
msgstr "Bilinmeyen"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:318
msgid "Unknown error"
msgstr "Bilinmeyen hata"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:225
msgid "Unknown warning"
msgstr "Bilinmeyen uyarı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:242
msgid "Use AdBlocking on the SmartDNS instance(s)"
msgstr "SmartDNS örneklerinde AdBlocking'i kullan"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178
msgid "Use AdBlocking on the dnsmasq instance(s)"
msgstr "Şu dnsmasq örneklerinde AdBlocking kullan"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:198
msgid ""
"Use of external dnsmasq config file detected, please set '%s' option to '%s'"
msgstr ""
"Harici dnsmasq yapılandırma dosyası kullanımı algılandı, lütfen '%s' "
"seçeneğini '%s' olarak ayarlayın"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:411
msgid "Use simultaneous processing"
msgstr "Eşzamanlı işlemeyi kullan"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321
msgid "Verbose output"
msgstr "Ayrıntılı çıktı"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:73
msgid "Version"
msgstr "Versiyon"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137
msgid "Version %s"
msgstr "Versiyon %s"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:47
msgid "Warning"
msgstr "Dikkat"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:244
msgid ""
"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore "
"information%s)."
msgstr ""
"Reklam Engellemeyi belirli SmartDNS örnekleriyle (%sdaha fazla bilgi%s) "
"sınırlandırabilirsiniz."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:180
msgid ""
"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore "
"information%s)."
msgstr ""
"Reklam Engellemeyi belirli dnsmasq örnekleriyle (%sdaha fazla bilgi%s) "
"sınırlandırabilirsiniz."
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135
msgid "dnsmasq additional hosts"
msgstr "dnsmasq ek ana makineleri"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:136
msgid "dnsmasq config"
msgstr "dnsmasq yapılandırması"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:138
msgid "dnsmasq ipset"
msgstr "dnsmasq ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:141
msgid "dnsmasq nft set"
msgstr "dnsmasq nft kümesi"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:143
msgid "dnsmasq servers file"
msgstr "dnsmasq sunucular dosyası"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334
msgid "none"
msgstr "hiçbiri"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:146
msgid "smartdns domain set"
msgstr "smartdns alan adı seti"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148
msgid "smartdns ipset"
msgstr "smartdns ipset"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151
msgid "smartdns nft set"
msgstr "smartdns nft seti"
#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:155
msgid "unbound adblock list"
msgstr "unbound reklam engelleme listesi"
#~ msgid "AdBlock on %s only"
#~ msgstr "Yalnızca %s'de AdBlock"
#~ msgid ""
#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore "
#~ "information%s)."
#~ msgstr ""
#~ "Reklam Engellemeyi belirli bir dnsmasq örneğiyle (%sdaha fazla bilgi%s) "
#~ "sınırlandırabilirsiniz."
#~ msgid "Force Re-Download"
#~ msgstr "Yeniden İndirmeye Zorla"
#~ msgid "Force re-downloading %s block lists"
#~ msgstr "%s engelleme listelerini yeniden indirmeye zorla"
#~ msgid "Allowed Domain URLs"
#~ msgstr "İzin Verilen Alan URL'leri"
#~ msgid "Allowed and Blocked Lists Management"
#~ msgstr "İzin Verilen ve Engellenen Listeler Yönetimi"
#~ msgid "Blocked Domain URLs"
#~ msgstr "Engellenen Alan URL'leri"
#~ msgid "Blocked Hosts URLs"
#~ msgstr "Engellenen Barındırma URL'leri"
#~ msgid "Enables debug output to /tmp/simple-adblock.log."
#~ msgstr "/tmp/simple-adblock.log için hata ayıklama çıktısını etkinleştirir."
#~ msgid "Grant UCI and file access for luci-app-simple-adblock"
#~ msgstr "luci-app-simple-adblock için UCI ve dosya erişimi verin"
#~ msgid "Simple AdBlock"
#~ msgstr "Simple AdBlock"
#~ msgid "Simple AdBlock - Configuration"
#~ msgstr "Basit Reklam Engelleyici - Yapılandırma"
#~ msgid "Simple AdBlock - Status"
#~ msgstr "Basit Reklam Engelleyici - Durum"
#~ msgid "URLs to lists of domains to be allowed."
#~ msgstr "İzin verilecek alan listelerinin URL'leri."
#~ msgid "URLs to lists of domains to be blocked."
#~ msgstr "Engellenecek alan listelerinin URL'leri."
#~ msgid "URLs to lists of hosts to be blocked."
#~ msgstr "Engellenecek ana bilgisayar listelerinin URL'leri."
#~ msgid "disabled"
#~ msgstr "devre dışı"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or "
#~ "installed dnsmasq does not support ipset"
#~ msgstr ""
#~ "dnsmasq ipset desteği etkinleştirildi, ancak dnsmasq kurulu değil veya "
#~ "kurulu dnsmasq ipset desteklemiyor"
#~ msgid ""
#~ "dnsmasq ipset support is enabled, but ipset is either not installed or "
#~ "installed ipset does not support '%s' type"
#~ msgstr ""
#~ "dnsmasq ipset desteği etkinleştirildi, ancak ipset kurulu değil veya "
#~ "kurulu ipset '%s' türünü desteklemiyor"
#~ msgid ""
#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed "
#~ "or installed dnsmasq does not support nft set"
#~ msgstr ""
#~ "dnsmasq nft kümesi desteği etkinleştirildi, ancak dnsmasq kurulu değil "
#~ "veya kurulu dnsmasq nft kümesini desteklemiyor"
#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed"
#~ msgstr ""
#~ "dnsmasq nft kümeleri desteği etkinleştirildi, ancak nft kurulu değil"
#~ msgid "failed to access shared memory"
#~ msgstr "paylaşılan belleğe erişilemedi"
#~ msgid "failed to create '%s' file"
#~ msgstr "'%s' dosyası oluşturulamadı"
#~ msgid "failed to create block-list or restart DNS resolver"
#~ msgstr ""
#~ "engelleme listesi oluşturulamadı veya DNS çözümleyiciyi yeniden "
#~ "başlatamadı"
#~ msgid "failed to create compressed cache"
#~ msgstr "sıkıştırılmış önbellek oluşturulamadı"
#~ msgid "failed to create directory for %s file"
#~ msgstr "%s dosyası için dizin oluşturulamadı"
#~ msgid "failed to create output/cache/gzip file directory"
#~ msgstr "çıktı/önbellek/gzip dosya dizini oluşturulamadı"
#~ msgid "failed to download"
#~ msgstr "indirme başarısız"
#~ msgid "failed to download Config Update file"
#~ msgstr "Yapılandırma Güncelleme dosyası indirilemedi"
#~ msgid "failed to format data file"
#~ msgstr "veri dosyası biçimlendirilemedi"
#~ msgid "failed to move '%s' to '%s'"
#~ msgstr "'%s' , '%s' konumuna taşınamadı"
#~ msgid "failed to move temporary data file to '%s'"
#~ msgstr "geçici veri dosyası '%s' konumuna taşınamadı"
#~ msgid "failed to optimize data file"
#~ msgstr "veri dosyası optimize edilemedi"
#~ msgid "failed to parse"
#~ msgstr "ayrıştırılamadı"
#~ msgid "failed to parse Config Update file"
#~ msgstr "Yapılandırma Güncelleme dosyası ayrıştırılamadı"
#~ msgid "failed to process allow-list"
#~ msgstr "izin listesi işlenemedi"
#~ msgid "failed to reload/restart DNS resolver"
#~ msgstr "DNS çözümleyicisi yeniden yüklenemedi/yeniden başlatılamadı"
#~ msgid "failed to remove temporary files"
#~ msgstr "geçici dosyalar kaldırılamadı"
#~ msgid "failed to restart/reload DNS resolver"
#~ msgstr "DNS çözümleyicisi yeniden başlatılamadı/yeniden yüklenemedi"
#~ msgid "failed to sort data file"
#~ msgstr "veri dosyası sıralanamadı"
#~ msgid "failed to stop %s"
#~ msgstr "%s durdurulamadı"
#~ msgid "failed to unpack compressed cache"
#~ msgstr "sıkıştırılmış önbelleği açma başarısız oldu"
#~ msgid "no HTTPS/SSL support on device"
#~ msgstr "cihazda HTTPS/SSL desteği yok"
#~ msgid "some recommended packages are missing"
#~ msgstr "tavsiye edilen bazı paketler eksik"
#~ msgid ""
#~ "use of external dnsmasq config file detected, please set '%s' option to "
#~ "'%s'"
#~ msgstr ""
#~ "harici dnsmasq yapılandırma dosyası kullanımı algılandı, lütfen '%s' "
#~ "seçeneğini '%s' olarak ayarlayın"
#~ msgid "Version: %s"
#~ msgstr "Sürüm: %s"
#~ msgid "The %s service failed to discover WAN gateway!"
#~ msgstr "%s hizmeti WAN ağ geçidini bulamadı!"
#~ msgid "Unable to create directory for '%s'"
#~ msgstr "'%s' için dizin oluşturulamıyor"
#~ msgid "Downloading"
#~ msgstr "İndiriliyor"
#~ msgid "%s Error: %s"
#~ msgstr "%s Hata: %s"
#~ msgid "%s Error: %s %s"
#~ msgstr "%s Hata: %s %s"
#~ msgid "Cache file containing %s domains found."
#~ msgstr "%s etki alanını içeren önbellek dosyası bulundu."
#~ msgid "Collected Errors"
#~ msgstr "Toplanan Hatalar"
#~ msgid "Configuration"
#~ msgstr "Yapılandırma"
#~ msgid "DNSMASQ Additional Hosts"
#~ msgstr "DNSMASQ Ek Ana Bilgisayarlar"
#~ msgid "DNSMASQ Config"
#~ msgstr "DNSMASQ Yapılandırması"
#~ msgid "DNSMASQ Ipset"
#~ msgstr "DNSMASQ Ipset"
#~ msgid "DNSMASQ Nft Set"
#~ msgstr "DNSMASQ Nft Set"
#~ msgid "DNSMASQ Servers File"
#~ msgstr "DNSMASQ Sunucuları Dosyası"
#~ msgid "Delay (in seconds) for on-boot start"
#~ msgstr "Açılışta başlatma için gecikme (saniye cinsinden)"
#~ msgid "Info"
#~ msgstr "Bilgi"
#~ msgid "Loading"
#~ msgstr "Yükleniyor"
#~ msgid "Message"
#~ msgstr "İleti"
#~ msgid ""
#~ "Pick the DNS resolution option to create the adblock list for, see the "
#~ "%sREADME%s for details."
#~ msgstr ""
#~ "Adblock listesini oluşturmak için DNS çözümleme seçeneğini seçin, "
#~ "ayrıntılar için %sREADME%s bakın."
#~ msgid "Run service after set delay on boot."
#~ msgstr "Önyüklemede gecikme ayarlandıktan sonra hizmeti çalıştırın."
#~ msgid "Service Status [%s %s]"
#~ msgstr "Hizmet Durumu [%s %s]"
#~ msgid "Simple AdBlock Settings"
#~ msgstr "Simple AdBlock Ayarları"
#~ msgid "Success"
#~ msgstr "Başarılı"
#~ msgid "Task"
#~ msgstr "Görev"
#~ msgid "Unbound AdBlock List"
#~ msgstr "Unbound AdBlock Listesi"
#~ msgid "DNSMASQ IP Set"
#~ msgstr "DNSMASQ IP Seti"
#~ msgid "DNSMASQ NFT Set"
#~ msgstr "DNSMASQ NFT Seti"
|