forked from celzero/rethink-app
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstrings.xml
More file actions
1643 lines (1300 loc) · 125 KB
/
strings.xml
File metadata and controls
1643 lines (1300 loc) · 125 KB
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
<resources>
<string name="app_name" translatable="false">Rethink</string>
<string name="app_name_small_case" translatable="false">rethink</string>
<string name="title_about" translatable="true">About</string>
<string name="title_settings" translatable="true">Settings</string>
<string name="title_statistics" translatable="true">Stats</string>
<string name="pause_title_desc" translatable="true">taking a nap…</string>
<string name="settings_title_desc" translatable="true">A highly customizable DNS and Firewall</string>
<string name="about_title_desc" translatable="true">Detect and block network security threats</string>
<string name="txt_home" translatable="true">Home</string>
<string name="accessibility_service_description" translatable="true">
Rethink uses accessibility service to detect and firewall background applications.
Rethink does not collect or sell any information.
</string>
<string name="next" translatable="true">Next</string>
<string name="skip" translatable="true">Skip</string>
<string name="finish" translatable="true">Finish</string>
<string name="lbl_cancel" translatable="true">Cancel</string>
<string name="lbl_apply" translatable="true">Apply</string>
<string name="lbl_dismiss" translatable="true">Dismiss</string>
<string name="lbl_all" translatable="true">All</string>
<string name="lbl_allowed" translatable="true">Allowed</string>
<string name="lbl_maybe_blocked" translatable="true">Maybe Blocked</string>
<string name="lbl_blocked" translatable="true">Blocked</string>
<string name="lbl_disabled" translatable="true">Disabled</string>
<string name="lbl_domain" translatable="true">Domain</string>
<string name="lbl_wildcard" translatable="true">Wildcard</string>
<string name="lbl_action_required" translatable="true">Action Required</string>
<string name="lbl_rules" translatable="true">rules</string>
<string name="lbl_configure" translatable="true">Configure</string>
<string name="lbl_logs" translatable="true">logs</string>
<string name="lbl_network" translatable="true">network</string>
<string name="lbl_create" translatable="true">Create</string>
<string name="lbl_qr_code" translatable="true">QR Code</string>
<string name="lbl_import" translatable="true">Import</string>
<string name="lbl_wireguard" translatable="true">WireGuard</string>
<string name="lbl_public_key" translatable="true">Public Key</string>
<string name="lbl_addresses" translatable="true">Addresses</string>
<string name="lbl_dns_servers" translatable="true">DNS Servers</string>
<string name="lbl_applications" translatable="true">Applications</string>
<string name="lbl_ip_rules" translatable="true">IP Rules</string>
<string name="lbl_domain_rules" translatable="true">Domain Rules</string>
<string name="lbl_delete" translatable="true">Delete</string>
<string name="lbl_proceed" translatable="true">Proceed</string>
<string name="lbl_private_key" translatable="true">Private key</string>
<string name="lbl_generated" translatable="true">(generated)</string>
<string name="lbl_random" translatable="true">(random)</string>
<string name="lbl_listen_port" translatable="true">Listen port</string>
<string name="lbl_mtu" translatable="true">MTU</string>
<string name="lbl_auto" translatable="true">(auto)</string>
<string name="lbl_include" translatable="true">Include</string>
<string name="lbl_select_all" translatable="true">select all</string>
<string name="lbl_active" translatable="true">Active</string>
<string name="lbl_inactive" translatable="true">Inactive</string>
<string name="lbl_socks5" translatable="true">SOCKS5</string>
<string name="lbl_http" translatable="true">HTTP</string>
<string name="lbl_http_socks5" translatable="true">HTTPS & SOCKS5</string>
<string name="lbl_fast" translatable="true">fast</string>
<string name="lbl_slow" translatable="true">slow</string>
<string name="lbl_very" translatable="true">very</string>
<string name="lbl_add" translatable="true">add</string>
<string name="lbl_app_wise" translatable="true">per app</string>
<string name="lbl_sec" translatable="true">sec</string>
<string name="lbl_min" translatable="true">min</string>
<string name="lbl_hour" translatable="true">hr</string>
<string name="lbl_day" translatable="true">day</string>
<string name="lbl_preshared_key" translatable="true">Preshared key</string>
<string name="lbl_insecure" translatable="true"> (insecure)</string>
<string name="lbl_optional" translatable="true">(optional)</string>
<string name="lbl_persistent_keepalive" translatable="true">Persistent keepalive</string>
<string name="lbl_allowed_ips" translatable="true">Allowed IPs</string>
<string name="lbl_save" translatable="true">save</string>
<string name="lbl_dot" translatable="false">DoT</string>
<string name="lbl_odoh" translatable="false">ODoH</string>
<string name="lbl_cache" translatable="true">Cache</string>
<string name="lbl_status" translatable="true">Status</string>
<string name="lbl_remove" translatable="true">Remove</string>
<string name="lbl_last" translatable="true">Last</string>
<string name="lbl_dot_abbr" translatable="false">DNS-over-TLS</string>
<string name="lbl_dc" translatable="false">DC</string>
<string name="lbl_dc_abbr" translatable="false">DNSCrypt</string>
<string name="lbl_dp" translatable="false">DNS 53</string>
<string name="lbl_dp_abbr" translatable="false">DNS Proxy</string>
<string name="lbl_odoh_abbr" translatable="false">Oblivious DNS-over-HTTPS</string>
<string name="lbl_rdns" translatable="false">RDNS</string>
<string name="lbl_starting" translatable="true">Starting</string>
<string name="lbl_overall" translatable="true">Overall</string>
<string name="lbl_stopped" translatable="true">Stopped</string>
<string name="lbl_idle" translatable="true">Idle</string>
<string name="lbl_private" translatable="true">private</string>
<string name="lbl_secure" translatable="true">secure</string>
<string name="lbl_anonymous" translatable="true">anonymous</string>
<string name="lbl_peer" translatable="true">Peer</string>
<string name="lbl_split" translatable="true">Split</string>
<string name="lbl_on_device" translatable="true">on-device</string>
<string name="lbl_ip" translatable="false">IP</string>
<string name="lbl_unselected" translatable="true">Unselected</string>
<string name="lbl_notification" translatable="true">notification</string>
<string name="lbl_mastodon" translatable="false">Mastodon</string>
<string name="lbl_matrix" translatable="false">Matrix</string>
<string name="lbl_reddit" translatable="false">Reddit</string>
<string name="lbl_test" translatable="true">test</string>
<string name="lbl_protos" translatable="true">protos</string>
<string name="memory_notification_text">Rethink is experiencing low memory. System actions may be limited.</string>
<string name="symbol_upload" translatable="false">%1$s 🔺</string>
<string name="symbol_download" translatable="false">%1$s 🔻</string>
<string name="single_argument" translatable="false">%1$s</string>
<string name="single_argument_parenthesis" translatable="false">(%1$s)</string>
<string name="two_argument_space" translatable="false">%1$s %2$s</string>
<string name="two_argument_colon" translatable="false">%1$s: %2$s</string>
<string name="two_argument" translatable="false">%1$s / %2$s</string>
<string name="three_argument" translatable="false">%1$s %2$s %3$s</string>
<string name="three_argument_colon" translatable="false">%1$s:%2$s:%3$s</string>
<string name="symbol_heavy" translatable="false">🐘</string>
<string name="symbol_turtle" translatable="false">🐢</string>
<string name="symbol_currency" translatable="false">💸</string>
<string name="symbol_green_circle" translatable="false">🟢</string>
<string name="symbol_red_circle" translatable="false">🔴</string>
<string name="symbol_key" translatable="false">🗝️</string>
<string name="symbol_global" translatable="false">🌐</string>
<string name="symbol_clock" translatable="false">🕒</string>
<string name="symbol_hyphen" translatable="false">-</string>
<string name="symbol_slash" translatable="false">/</string>
<string name="symbol_black_down" translatable="false">\u25be</string>
<string name="symbol_black_up" translatable="false">\u25b4</string>
<string name="symbol_lockdown" translatable="false">🔒</string>
<string name="symbol_lightening" translatable="false">⚡</string>
<string name="symbol_ps" translatable="false">%1$s/S</string>
<string name="symbol_mb" translatable="false">MB</string>
<string name="numeric_one" translatable="false">1</string>
<string name="numeric_twenty_four" translatable="false">24</string>
<string name="numeric_seven" translatable="false">7</string>
<string name="slide_2_title" translatable="true">Welcome</string>
<string name="slide_2_desc" translatable="true">Rethink is the easiest way to monitor network activity, bypass Internet censorship, and firewall apps on your Android device.</string>
<string name="slide_1_title" translatable="true">Free and Open Source</string>
<string name="slide_1_desc" translatable="true">Rethink is an open source software backed by Mozilla Builders MVP program.</string>
<string name="rdns_plus" translatable="false">RDNS Plus</string>
<string-array name="firewall_rules">
<item>Allow</item>
<item>Block</item>
<item>Block (unmetered)</item>
<item>Block (metered)</item>
<item>Isolate</item>
<item>Bypass DNS and Firewall</item>
<item>Bypass Universal</item>
<item>Exclude</item>
</string-array>
<string name="allow" translatable="true">allow</string>
<string name="block" translatable="true">block</string>
<string name="bypass_universal" translatable="true">bypass universal</string>
<string name="exclude" translatable="true">exclude</string>
<string name="isolate" translatable="true">isolate</string>
<string name="untracked" translatable="true">untracked</string>
<string name="bypass_dns_firewall" translatable="true">bypass dns & firewall</string>
<string name="warning_title" description="Status indicator text shown in a warning notification." translatable="true">
Warning: Rethink has been deactivated
</string>
<string name="notification_content" description="Indicates what will happen if the user taps the notification." translatable="true">
Tap to change protection setting
</string>
<string name="dns_mode_notification_title" translatable="true">
Protected! Connected to Fast and Secure DNS.
</string>
<string name="firewall_mode_notification_title" translatable="true">
Protected! Connected to Firewall.
</string>
<string name="hybrid_mode_notification_title" translatable="true">
Protected! Connected to DNS + Firewall.
</string>
<string name="hybrid_mode_with_proxy_notification_title" translatable="true">
Protected! Connected to DNS + Firewall + Proxy.
</string>
<string name="pause_mode_notification_title" translatable="true">Paused! Blocked apps will continue to be firewalled.</string>
<string name="status_waiting" description="This text appears during the connection process if Rethink needs user permission or the phone is offline." translatable="true">
waiting
</string>
<string name="status_failing" description="This text appears if the connection is currently not working correctly. [CHAR_LIMIT=NONE]" translatable="true">
failing
</string>
<string name="status_protected" description="This is a large message in a reassuring color. It indicates that DNS queries can't be surveilled or modified in transit." translatable="true">
protected
</string>
<string name="failed_using_default" translatable="true">Failed: using fallback DNS</string>
<string name="status_app_error" translatable="true">app error</string>
<string name="status_dns_error" translatable="true">dns error</string>
<string name="status_dns_server_down" translatable="true">dns server down</string>
<string name="status_no_internet" translatable="true">no internet</string>
<string name="status_protected_with_tor" translatable="true">protected with tor</string>
<string name="status_protected_with_private_dns" translatable="true">protected with private dns</string>
<string name="status_protected_with_tor_private_dns" translatable="true">protected with tor & private dns</string>
<string name="status_protected_with_proxy_private_dns" translatable="true">protected with proxy & private dns</string>
<string name="status_protected_with_socks5_private_dns" translatable="true">protected with socks5 & private dns</string>
<string name="status_protected_with_http_private_dns" translatable="true">protected with http proxy & private dns</string>
<string name="status_protected_with_socks5" translatable="true">protected with socks proxy</string>
<string name="status_protected_with_http" translatable="true">protected with http proxy</string>
<string name="status_protected_with_proxy" translatable="true">protected with proxy</string>
<string name="status_protected_with_wg" translatable="true">protected with wireguard</string>
<string name="status_protected_with_wg_private_dns" translatable="true">protected with wireguard & private dns</string>
<string name="status_strict" description="This is similar to dns_on, but the protection is being provided by the operating system, not by Rethink. It is not color-highlighted." translatable="true">
private dns is enabled
</string>
<string name="status_exposed" description="This is a large message in a scary color. It indicates that DNS queries can be surveilled or modified in transit." translatable="true">
not protected
</string>
<string name="dns_explanation_dns_connected" translatable="true">Connected to RethinkDNS</string>
<string name="dns_explanation_firewall_connected" translatable="true">Connected to Firewall</string>
<string name="dns_explanation_connected" description="The message will be shown when the DNS is connected" translatable="true">
Connected to RethinkDNS and Firewall
</string>
<string name="universal_firewall_explanation" translatable="true">Apply firewall rules on all applications based on device events, for example, firewall when the device is locked or when a particular app is not in use.
</string>
<string name="notification_action_resume_vpn" translatable="true">RESUME</string>
<string name="notification_action_pause_vpn" translatable="true">PAUSE</string>
<string name="notification_action_stop_vpn" translatable="true">STOP</string>
<string name="notification_action_dns_mode" translatable="true">DNS</string>
<string name="notification_action_dns_firewall_mode" translatable="true">DNS + Firewall</string>
<string name="dns_mode_info_title" translatable="true">DNS</string>
<string name="firewall_rules" translatable="true">Network Rules</string>
<string name="firewall_mode_info_title" translatable="true">Firewall</string>
<string name="firewall_mode_info_explanation_new" translatable="true">Monitor network activity and firewall any app or IP address.</string>
<string name="apps_info_title" translatable="true">Apps</string>
<string name="hybrid_mode_info_title" translatable="true">DNS + Firewall</string>
<string name="dns_mode_info_explanation_new" translatable="true">Monitor, block, and encrypt DNS requests.</string>
<string name="dns_firewall_mode_info_explanation_new" translatable="true">All of the above + bypass Internet censorship.</string>
<string name="alert_permission_accessibility" translatable="true">Permission - Accessibility</string>
<string name="alert_firewall_accessibility_explanation" translatable="true">Rethink uses accessibility service to track which apps are in-use (foreground) versus those that are not in-use (background).\n\nRethink does not collect any information or spy on you in any way.</string>
<string name="alert_firewall_accessibility_regrant_explanation" translatable="true">Rethink accessibility service has stopped or crashed. <i><b>Goto Settings and Force Stop</b></i> Rethink and start it again to use <i>Block any app not in use</i> feature.\n\nRethink uses accessibility service to track which apps are in-use (foreground) versus those that are not in-use (background).</string>
<string name="alert_firewall_accessibility_exception" translatable="true">Failure opening Accessibility Settings. Try again later!</string>
<string name="brave_dns_connect_mode_change_firewall" translatable="true">Choose Mode.</string>
<string name="brave_dns_connect_mode_change_dns" translatable="true">Choose Mode.</string>
<string name="default_dns_name" translatable="true">RDNS Default</string>
<string name="custom_url_error_invalid_url" translatable="true">Invalid URL</string>
<string name="conn_track_clear_logs_title" translatable="true">Delete all network logs?</string>
<string name="conn_track_clear_logs_message" translatable="true">This only deletes network logs but not firewall rules. This operation is not reversible. Do you want to proceed?</string>
<string name="dns_query_clear_logs_title" translatable="true">Delete all DNS logs?</string>
<string name="dns_query_clear_logs_message" translatable="true">This deletes on-device DNS logs. This operation is not reversible. Do you want to proceed?</string>
<string name="bsct_app_info" translatable="true">App Info</string>
<string name="bsct_block_ip" translatable="true">Block, trust <u>this IP</u> for <u>this app</u></string>
<string name="bsct_block_domain" translatable="true">Block, trust <u>domain(s)</u> for <u>this app</u></string>
<string name="bsct_block" translatable="true">Block, bypass, exclude, isolate <u>this app</u></string>
<string name="bsct_conn_block_desc" translatable="true">blocked %1$s by %2$s</string>
<string name="bsct_conn_block_desc_device" translatable="true">blocked %1$s on device</string>
<string name="bsct_conn_desc_allowed" translatable="true">allowed on %1$s %2$s</string>
<string name="bsct_conn_desc_blocked" translatable="true">blocked on %1$s %2$s</string>
<string name="bsct_conn_rule_explanation" translatable="true">
<u>#1</u>: Blocks an app from connecting to the Internet.
\n <u>#2</u>: Blocks any app from connecting to a particular IP.
\n <u>#3</u>: Blocks all connections when device locked (Universal Firewall).
\n <u>#4</u>: Blocks any app not in use (Universal Firewall).
\n <u>#5</u>: Blocks connections when source app unknown (Universal Firewall).
\n <u>#6</u>: Blocks all UDP traffic except DNS (Universal Firewall).
\n <u>#7</u>: Block connections when DNS is bypassed (Universal Firewall).
</string>
<string name="always_on_dialog_heading" translatable="true">Disable Always-on VPN</string>
<string name="always_on_dialog" translatable="true">\"Always-On VPN\" is enabled on this device. To start Rethink, please go to Settings app and disable \"Always-on VPN\".</string>
<string name="always_on_dialog_positive_btn" translatable="true">Go to Settings</string>
<string name="always_on_dialog_stop_heading" translatable="true">Always-on VPN</string>
<string name="always_on_dialog_stop_message" translatable="true">Always-on VPN is enabled for Rethink. Are you sure you want to stop Rethink anyway?</string>
<string name="always_on_dialog_lockdown_stop_message" translatable="true">Rethink is running VPN in <i>Lockdown</i> mode. Stopping it would result in loss of Internet connectivity on this user profile. Do you want to continue anyway?</string>
<string name="always_on_dialog_positive" translatable="true">Stop</string>
<string name="always_on_dialog_neutral" translatable="true">Settings</string>
<string name="private_dns_dialog_heading" translatable="true">Turn off Private DNS</string>
<string name="private_dns_dialog_desc" translatable="true">Rethink\'s DNS settings are overridden by Android\'s Private DNS.\n\nTo use Rethink\'s DNS go to Android Settings and turn off \"Private DNS\".</string>
<string name="private_dns_dialog_positive" translatable="true">Go to Settings</string>
<string name="firewall_act_universal_tab" translatable="true">universal</string>
<string name="firewall_act_network_monitor_tab" translatable="true">Network</string>
<string name="dns_act_configure_tab" translatable="true">Configure</string>
<string name="univ_firewall_dialog_title" translatable="true">Delete IP Rule?</string>
<string name="univ_firewall_dialog_message" translatable="true">Deleting this rule would allow any app to connect to this IP. Do you want to proceed?</string>
<string name="doh_custom_url_remove_dialog_title" translatable="true">Delete DoH endpoint?</string>
<string name="doh_custom_url_remove_dialog_message" translatable="true">Delete the DNS over Https endpoint from saved configuration.</string>
<string name="doh_custom_url_remove_success" translatable="true">Endpoint deleted.</string>
<string name="dot_custom_url_remove_dialog_title" translatable="true">Delete DoT endpoint?</string>
<string name="dot_custom_url_remove_dialog_message" translatable="true">Delete the DNS over TLS endpoint from saved configuration.</string>
<string name="dns_crypt_custom_url_remove_dialog_title" translatable="true">Delete DNSCrypt resolver?</string>
<string name="dns_crypt_url_remove_dialog_message" translatable="true">Delete the DNSCrypt resolver from saved configuration.</string>
<string name="dns_crypt_url_remove_success" translatable="true">DNSCrypt resolver deleted.</string>
<string name="dns_crypt_relay_remove_dialog_title" translatable="true">Delete DNSCrypt Relay?</string>
<string name="dns_crypt_relay_remove_dialog_message" translatable="true">Delete the DNSCrypt relay from saved configuration.</string>
<string name="dns_crypt_relay_remove_success" translatable="true">DNSCrypt Relay deleted.</string>
<string name="dns_proxy_remove_dialog_title" translatable="true">Delete DNS Proxy?</string>
<string name="dns_proxy_remove_dialog_message" translatable="true">Delete the DNS Proxy from saved configuration.</string>
<string name="dns_proxy_remove_success" translatable="true">DNS Proxy deleted.</string>
<string name="local_blocklist_download" translatable="true">Download Blocklists</string>
<string name="local_blocklist_download_desc" translatable="true">Download blocklists (around 60MB) to use this feature?</string>
<string name="local_blocklist_redownload" translatable="true">Up-to-date!</string>
<string name="local_blocklist_redownload_desc" translatable="true">On-device blocklists are already at the latest version v%1$s.</string>
<string name="blocklist_update_check_failure" translatable="true">Something went wrong. Try again later!</string>
<string name="blocklist_update_check_not_required" translatable="true">Blocklists are already at latest version.</string>
<string name="refresh_complete" translatable="true"><!-- use dc_refresh_toast --> App list re-sync complete.</string>
<string name="show_logs_disabled_network_message" translatable="true">Connection logging has been disabled. To re-enable, goto <i>Settings</i> and turn on <i>Enable on-device logging.</i></string>
<string name="show_logs_disabled_dns_message" translatable="true">DNS request logging has been disabled. To re-enable, goto <i>Settings</i> and turn on <i>Enable on-device logging.</i></string>
<string name="configure_dns_connected_doh_status" translatable="true">DNS over HTTPS</string>
<string name="configure_dns_connected_dns_crypt_status" translatable="true">DNSCrypt</string>
<string name="configure_dns_connected_dns_proxy_status" translatable="true">DNS Proxy</string>
<string name="configure_dns_connection_name" translatable="true">Connected to %1$s</string>
<string name="configure_dns_crypt" translatable="true">DNSCrypt: %1$s resolvers</string>
<string name="http_proxy_dialog_heading" translatable="true">Set HTTP(S) CONNECT Proxy</string>
<string name="http_proxy_dialog_desc" translatable="true">Setup URL of form, <protocol>://<username>:<password>@<domain-or-ip>:<port><path>. Example: http://proxy.example.com:8080/</string>
<string name="download_update_dialog_title" translatable="true">New Update!</string>
<string name="download_update_dialog_message" translatable="true">A new version of the app is available for download from the website. Do you want to proceed?</string>
<string name="download_update_dialog_message_ok_title" translatable="true">Up-to-date!</string>
<string name="download_update_dialog_message_ok" translatable="true">You are already on the latest version.</string>
<string name="download_update_dialog_message_success" translatable="true">Blocklist download successful.</string>
<string name="download_update_dialog_failure_title" translatable="true">Something went wrong!</string>
<string name="download_update_dialog_failure_message" translatable="true">Either our servers are down or connection could not be established. Please try again after sometime.</string>
<string name="download_update_dialog_trylater_title" translatable="true">Can\'t update right now</string>
<string name="download_update_dialog_trylater_message" translatable="true">The update cannot be executed right now, please try again later.</string>
<string name="search_firewall_network_log" translatable="true"><font size="12">Search apps, IPs, domains</font></string>
<string name="search_firewall_all_apps" translatable="true"><font size="12">Search apps by uid, name</font></string>
<string name="search_dns_logs" translatable="true"><font size="12">Search domain names or IPs</font></string>
<string name="search_universal_ips" translatable="true"><font size="12">Search IPs</font></string>
<string name="search_custom_domains" translatable="true"><font size="12">Search domain names</font></string>
<string name="search_rethinkplus_file_tag" translatable="true"><font size="12">Search blocklists</font></string>
<string name="search_proxy_add_apps" translatable="true">Search apps by name</string>
<string name="app_mode_dns_low_battery" translatable="true">DNS (battery saver)</string>
<string name="app_mode_dns" translatable="true">DNS</string>
<string name="app_mode_firewall" translatable="true">Firewall</string>
<string name="app_mode_dns_firewall" translatable="true">DNS and Firewall (default)</string>
<string name="app_mode_wireguard" translatable="true">VPN</string>
<string name="settings_vpn_heading" translatable="true">vpn</string>
<string name="info_dialog_copy_toast_msg" translatable="true">IP address copied.</string>
<string name="info_dialog_url_copy_toast_msg" translatable="true">URL copied</string>
<string name="public_key_copy_toast_msg" translatable="true">Public key copied.</string>
<string name="info_dialog_rethink_toast_msg" translatable="true">Copied as RDNS+ DNS-over-HTTPS URL</string>
<string name="settings_enable_logs_desc" translatable="true">Store DNS and Firewall logs locally on-device.</string>
<string name="settings_enable_logs" translatable="true">Enable on-device logging</string>
<string name="app_mode_choose" translatable="true">Choose mode</string>
<string name="whats_new_version_update" translatable="true"><![CDATA[<b>Don\'t Panic 2</b><br/><br/>
1. New: Capture network engine errors in user bug reports.<br/>
2. New: use System DNS for "undelegated" domain names iff Prevent DNS leaks is ON.<br/>
3. Improvement: Dual-stack (IPv4 + IPv6) WireGuard connectivity.<br/>
4. Improvement: Avoid blocking the UI elements when the network engine is unresponsive.<br/>
5. Fix: Connection timeouts with Advanced DNS filtering turned ON.<br/>
6. Fix: WireGuard peer endpoints with domain names hang on network changes.<br/><br/>
<a href="https://svc.rethinkdns.com/r/translate">Help translate this app</a>]]>
</string>
<string name="connection_http3" translatable="true">HTTP3</string>
<string name="relative_time_today" translatable="true">Today</string>
<string name="relative_time_yesterday" translatable="true">Yesterday</string>
<!-- Settings Fragment strings -->
<string name="settings_ip_network_heading" translatable="true">Choose IP version</string>
<string name="settings_ip_network_desc" translatable="true">Choose between Internet Protocol versions.</string>
<string name="settings_ptrans_heading" translatable="true">Force IPv4 egress</string>
<string name="settings_ptrans_desc" translatable="true">Translate outbound IPv6 traffic to IPv4 on-device. Enable if you are connected to an IPv4-only network.</string>
<string name="settings_connectivity_checks" translatable="true">Perform connectivity checks</string>
<string name="settings_connectivity_checks_desc" translatable="true">Connectivity checks are sent to ascertain reachability.</string>
<string name="settings_allow_lan_heading" translatable="true">Do not route Private IPs (experimental)</string>
<string name="settings_allow_lan_desc" translatable="true">Exclude LAN, loopback, multicast, link-local routes from Rethink\'s VPN tunnel.</string>
<string name="settings_exclude_proxy_apps_heading" translatable="true">Loopback proxy forwarder apps</string>
<string name="settings_exclude_proxy_apps_desc" translatable="true">When disabled, excludes proxy (SOCKS5, HTTP, DNS) forwarder apps from Rethink\'s VPN tunnel.</string>
<string name="settings_allow_bypass_heading" translatable="true">Enable network visibility</string>
<string name="settings_allow_bypass_desc" translatable="true">Allow requesting apps to access all available networks. These apps may bypass Rethink\'s VPN tunnel on-demand. Some audio/video conference apps like Zoom and Meet may require this to function properly.</string>
<string name="settings_lock_down_mode_desc" translatable="true">Certain options disabled when VPN is in lockdown mode. <u>See VPN settings</u>.</string>
<string name="settings_lock_down_proxy_desc" translatable="true">Cannot setup proxies when VPN is running in DNS only mode.</string>
<string name="settings_proxy_header" translatable="true">proxy</string>
<string name="settings_socks5_heading" translatable="true">Setup SOCKS5 Proxy</string>
<string name="settings_socks5_desc" translatable="true">Forward connections to SOCKS5 endpoint.</string>
<string name="settings_https_heading" translatable="true">Setup HTTP(S) CONNECT Proxy</string>
<string name="settings_https_desc" translatable="true">Forward connections to HTTP(S) CONNECT endpoint.</string>
<string name="orbot" translatable="true">Orbot</string>
<string name="orbot_socks5" translatable="true">TCP-only Proxy</string>
<string name="orbot_socks5_desc" translatable="true">Forwards all TCP connections to Orbot.</string>
<string name="orbot_http" translatable="true">HTTP Proxy</string>
<string name="orbot_http_desc" translatable="true">Establishes HTTP CONNECT tunnel to Orbot.</string>
<string name="orbot_both" translatable="true">TCP + HTTP Proxy</string>
<string name="orbot_both_desc" translatable="true">All of the above.</string>
<string name="orbot_none" translatable="true">None (default)</string>
<string name="orbot_none_desc" translatable="true">None of the above.</string>
<string name="orbot_bs_status_1" translatable="true">Forwarding %1$s connections to Orbot.</string>
<string name="orbot_bs_status_2" translatable="true">HTTP Proxy is set.</string>
<string name="orbot_bs_status_3" translatable="true">Forwarding %1$s to Orbot, HTTP Proxy also set.</string>
<string name="orbot_bs_status_4" translatable="true">One-click Tor-as-a-Proxy (Orbot) setup.</string>
<string name="orbot_status_arg_2" translatable="true">TCP</string>
<string name="orbot_status_arg_3" translatable="true">DNS and TCP</string>
<string name="orbot_app_issue" translatable="true">Could not launch Orbot. Is it installed?</string>
<string name="orbot_bs_status_trying_connect" translatable="true">Setting up Orbot…</string>
<string name="orbot_stop_dialog_title" translatable="true">Manual intervention required</string>
<string name="orbot_stop_dialog_message_combo" translatable="false">%1$s\n%2$s</string>
<string name="orbot_stop_dialog_message" translatable="true">Rethink has stopped forwarding connections to Orbot, but Orbot maybe running in the background.</string>
<string name="orbot_stop_dialog_dns_message" translatable="true">Rethink is setup to forward DNS queries to Orbot. Change as required.</string>
<string name="orbot_stop_dialog_negative" translatable="true">Stop Orbot</string>
<string name="orbot_stop_dialog_neutral" translatable="true">Change DNS</string>
<string name="orbot_title" translatable="true">Orbot and Proxies</string>
<string name="orbot_explanation" translatable="true">
Orbot is a free proxy app that empowers other apps to use the Internet more <u>securely</u>.
\nOrbot uses <u>Tor</u> to encrypt your Internet traffic which helps you <u>bypass censorship</u> and defend against forms of <u>network surveillance</u> that threaten personal freedom and privacy.
\n<u>TCP Proxy</u>: Rethink forwards only TCP connections of <i>included</i> apps to Orbot.
\n<u>HTTP Proxy</u>: Rethink <i>establishes</i> HTTP CONNECT tunnel to Orbot and forwards only TCP connections of <i>included</i> apps.</string>
<string name="orbot_install_dialog_title" translatable="true">Install Orbot?</string>
<string name="orbot_install_dialog_message" translatable="true">Orbot brings the features and functionality of Tor to Android.</string>
<string name="orbot_install_dialog_positive" translatable="true">Install</string>
<string name="orbot_install_dialog_neutral" translatable="true">website</string>
<string name="orbot_website_link" translatable="false">https://guardianproject.info/apps/org.torproject.android/</string>
<string name="orbot_download_link_website" translatable="false">https://github.com/guardianproject/orbot/releases</string>
<string name="orbot_install_activity_error" translatable="false">Something went wrong, try after sometime</string>
<string name="orbot_no_app_toast" translatable="true">Add at least one app to enable Orbot</string>
<string name="settings_orbot_heading" translatable="true">Setup Orbot</string>
<string name="settings_orbot_header" translatable="true">Orbot\t\u276F</string>
<string name="settings_orbot_desc" translatable="true">Orbot in non-vpn mode with HTTPS/SOCKS5.</string>
<string name="settings_orbot_install_desc" translatable="true">Tap here to install Orbot</string>
<string name="settings_socks5_disabled_error" translatable="true">Connected to %1$s. Turn it off to continue.</string>
<string name="settings_socks5_vpn_disabled_error" translatable="true">Start Rethink to proceed.</string>
<string name="settings_orbot_disabled_error" translatable="true">Turn off HTTP(S) and/or SOCKS5 proxy to continue with Tor-as-a-proxy setup.</string>
<string name="settings_https_disabled_error" translatable="true">Connected to %1$s. Turn it off to continue.</string>
<string name="settings_orbot_notification_content" translatable="true">Failure starting Tor-as-a-Proxy. Open the Orbot app to start it manually.</string>
<string name="settings_orbot_notification_action" translatable="true">Open Orbot</string>
<string name="settings_general_header" translatable="true">general</string>
<string name="settings_general_customize" translatable="true">customize</string>
<string name="settings_autostart_bootup_heading" translatable="true">Auto-start on power-up (experimental)</string>
<string name="settings_autostart_bootup_desc" translatable="true">On device power-up, start Rethink if it was running before shut down.</string>
<string name="settings_network_all_networks" translatable="true">Use all available networks (experimental)</string>
<string name="settings_network_all_networks_desc" translatable="true">When enabled, Rethink uses all available networks to connect to Internet. If not, it uses whichever network is deemed <i>active</i> by Android.</string>
<string name="settings_check_update_heading" translatable="true">Check for app updates</string>
<string name="settings_check_update_desc" translatable="true">Automatically check for app updates once a week.</string>
<string name="settings_custom_downloader_heading" translatable="true">Use in-app downloader</string>
<string name="settings_custom_downloader_desc" translatable="true">If disabled, Android\'s built-in <i>Download Manager</i> is used</string>
<string name="settings_import_export_heading" translatable="true">Backup & Restore</string>
<string name="settings_import_export_desc" translatable="true">Manually back up or restore app data and settings.</string>
<string name="settings_app_notification_a13_heading" translatable="true">App Notification</string>
<string name="settings_app_notification_a13_desc" translatable="true">Enable notification permission for the app</string>
<string name="settings_app_notification_persistent_heading" translatable="true">Persistent Notification</string>
<string name="settings_app_notification_persistent_desc" translatable="true">Make the notification persistent</string>
<string name="settings_theme_heading" translatable="true">Appearance</string>
<string name="settings_theme_desc" translatable="true">Dark/light theme</string>
<string name="settings_go_log_heading" translatable="true">Log level</string>
<string name="settings_go_log_desc" translatable="true">For debugging purposes</string>
<string name="settings_rinr_heading" translatable="true">Loopback (experimental)</string>
<string name="settings_rinr_desc_disabled" translatable="true">Route Rethink\'s own traffic, like blocklist downloads, connectivity checks, DNS connections, back into the tunnel.</string>
<string name="settings_rinr_desc_enabled" translatable="true">Routing Rethink\'s own traffic through the tunnel. Unless you know what you\'re doing, turn it off.</string>
<string name="settings_rinr_dialog_title" translatable="true">Loopback (experimental)</string>
<string name="settings_rinr_dialog_desc" translatable="true">Also enables<!--settings_network_all_networks--> %1$s setting. Do you want to proceed?</string>
<string name="settings_gologger_dialog_option_0" translatable="false">Very verbose</string>
<string name="settings_gologger_dialog_option_1" translatable="false">Verbose</string>
<string name="settings_gologger_dialog_option_2" translatable="false">Debug</string>
<string name="settings_gologger_dialog_option_3" translatable="false">Info (default)</string>
<string name="settings_gologger_dialog_option_4" translatable="false">Warn</string>
<string name="settings_gologger_dialog_option_5" translatable="false">Error</string>
<string name="settings_gologger_dialog_option_6" translatable="false">Stack trace</string>
<string name="settings_gologger_dialog_option_7" translatable="false">None</string>
<string name="settings_http_proxy_desc" translatable="true">Forwarding to %1$s</string>
<string name="settings_http_proxy_dialog_title" translatable="true">Custom Server URL</string>
<string name="settings_http_proxy_error_text1" translatable="true">Port range should be from 1024–65535</string>
<string name="settings_http_proxy_error_text2" translatable="true">Invalid port</string>
<string name="settings_http_proxy_error_text3" translatable="true">Hostname is empty</string>
<string name="settings_http_proxy_error_text4" translatable="true">Host connection failed. Try again.</string>
<string name="settings_http_proxy_toast_success" translatable="true">HTTP proxy is set</string>
<string name="settings_dns_proxy_dialog_header" translatable="true">Set SOCKS5 Proxy</string>
<string name="settings_dns_proxy_dialog_app" translatable="true">App</string>
<string name="settings_dns_proxy_dialog_hostname" translatable="true">Hostname</string>
<string name="settings_dns_proxy_dialog_port_number" translatable="true">Port Number</string>
<string name="settings_dns_proxy_dialog_username" translatable="true">Username</string>
<string name="settings_dns_proxy_dialog_password" translatable="true">Password</string>
<string name="settings_dns_proxy_dialog_positive_btn" translatable="true">set</string>
<string name="settings_dns_proxy_dialog_app_desc" translatable="false">The selected app will be excluded from the VPN to let it proxy connections on your behalf.</string>
<string name="settings_app_list_default_app" translatable="true">None</string>
<string name="settings_socks_forwarding_desc" translatable="true">Forwarding to %1$s:%2$s, %3$s</string>
<string name="settings_socks_forwarding_desc_no_app" translatable="true">Forwarding to %1$s:%2$s</string>
<string name="settings_socks_forwarding_default_desc" translatable="true">Forward connections to SOCKS5 endpoint.</string>
<string name="settings_socks5_dialog_hint_ip" translatable="true">IP Address</string>
<string name="settings_socks5_dialog_hint_port" translatable="true">Port</string>
<string name="settings_socks5_dialog_hint_username" translatable="true">Username (optional)</string>
<string name="settings_socks5_dialog_hint_password" translatable="true">Password (optional)</string>
<string name="settings_theme_dialog_title" translatable="true">Appearance</string>
<string name="settings_theme_dialog_themes_1" translatable="true">Set by System</string>
<string name="settings_theme_dialog_themes_2" translatable="true">Light</string>
<string name="settings_theme_dialog_themes_3" translatable="true">Dark</string>
<string name="settings_theme_dialog_themes_4" translatable="true">True Black</string>
<string name="settings_ip_dialog_title" translatable="true">Choose IP version</string>
<string name="settings_ip_dialog_ipv4" translatable="true">IPv4 (default)</string>
<string name="settings_ip_dialog_ipv6" translatable="true">IPv6 (experimental)</string>
<string name="settings_ip_dialog_ipv46" translatable="true">Auto (experimental)</string>
<string name="settings_ip_text_ipv4" translatable="true">IPv4</string>
<string name="settings_ip_text_ipv6" translatable="true">IPv6</string>
<string name="settings_ip_text_ipv46" translatable="true">Auto</string>
<string name="settings_selected_ip_desc" translatable="false">%1$s</string>
<string name="settings_notification_heading" translatable="true">Choose notification action</string>
<string name="settings_notification_desc" translatable="true">Action buttons to show with the Rethink notification: %1$s</string>
<string name="settings_notification_desc1" translatable="true">Pause / Stop (default)</string>
<string name="settings_notification_desc2" translatable="true">DNS / DNS + Firewall</string>
<string name="settings_notification_desc3" translatable="true">None</string>
<string name="settings_notification_dialog_title" translatable="true">Choose notification action</string>
<string name="settings_notification_dialog_option_1" translatable="true">\nPause / Stop (default):\nShows two buttons, to quickly pause and stop Rethink.</string>
<string name="settings_notification_dialog_option_2" translatable="true">\nDNS / DNS + Firewall:\nShows two buttons to quickly switch between the battery-saver DNS mode and the regular DNS + Firewall mode.</string>
<string name="settings_notification_dialog_option_3" translatable="true">\nNone:\nShows no button.\n</string>
<string name="settings_locale_heading" translatable="true">Change Language</string>
<string name="settings_locale_desc" translatable="true">Choose your preferred language</string>
<string name="settings_locale_dialog_title" translatable="true">Choose your preferred language</string>
<string name="settings_locale_dialog_neutral" translatable="true">Help translate this app</string>
<string name="settings_biometeric_heading" translatable="true">Enable app lock</string>
<string name="settings_biometric_desc" translatable="true">Secure this app using your screen lock</string>
<string name="settings_selected_theme" translatable="true">Current theme: %1$s</string>
<string name="settings_protocol_translation_dns_inactive" translatable="true">Switch to DNS/DNS+Firewall mode to enable this setting</string>
<string name="settings_default_dns_heading" translatable="true">Choose fallback DNS</string>
<string name="settings_default_dns_desc" translatable="true">In rare cases when user-preferred DNS could not be ascertained, fallback DNS is used.</string>
<string name="settings_pcap_heading" translatable="true">Packet capture</string>
<string name="settings_pcap_dialog_title" translatable="true">PCAP</string>
<string name="settings_pcap_dialog_option_1" translatable="true">Off (default)</string>
<string name="settings_pcap_dialog_option_2" translatable="true">Output to Logcat</string>
<string name="settings_pcap_dialog_option_3" translatable="true">Output to the Downloads folder</string>
<string name="pcap_failure_toast" translatable="true">Error creating pcap file, Try again!</string>
<!-- AppDetailActivity -->
<string name="apps_icon_content_desc" translatable="true">Application Icon</string>
<string name="firewall_status_allow" translatable="true">allowed</string>
<string name="firewall_status_excluded" translatable="true">excluded from dns and firewall</string>
<string name="firewall_status_isolate" translatable="true">isolated</string>
<string name="firewall_status_whitelisted" translatable="true">bypasses universal firewall rules</string>
<string name="firewall_status_bypass_dns_firewall" translatable="true">bypasses dns & firewall rules</string>
<string name="firewall_status_block_unmetered" translatable="true">blocked on unmetered (wifi) networks</string>
<string name="firewall_status_block_metered" translatable="true">blocked on metered (mobile) networks</string>
<string name="firewall_status_blocked" translatable="true">blocked</string>
<string name="firewall_status_unknown" translatable="true">unknown</string>
<!--Connection tracker bottom sheet -->
<string name="ct_bs_app_info_error" translatable="true">App Info not found</string>
<!-- Home screen activity -->
<string name="hs_biometeric_title" translatable="true">Unlock Rethink</string>
<string name="hs_biometeric_desc" translatable="true">Use biometric authentication to unlock Rethink</string>
<string name="hs_biometeric_feature_not_supported" translatable="true">Biometric authentication is not supported or disabled on this device</string>
<string name="hs_biometeric_failed" translatable="true">Biometric authentication failed</string>
<string name="hs_biometeric_error" translatable="true">Biometric authentication error</string>
<!-- Home screen -->
<string name="firewall_card_status_active" translatable="true">%1$s apps</string>
<string name="firewall_card_text_active" translatable="true">%1$s blocked\n%2$s bypassed\n%3$s excluded\n%4$s isolated</string>
<string name="firewall_card_text_inactive" translatable="true">Enable firewall mode.</string>
<string name="dns_card_latency_active" translatable="true">%1$sms</string>
<string name="dns_card_latency_inactive" translatable="true">Enable DNS mode.</string>
<string name="firewall_card_universal_rules" translatable="true">%1$s universal rule(s)</string>
<string name="rules_card_domain_count" translatable="true">%1$s domain rule(s)</string>
<string name="apps_card_ips_count" translatable="true">%1$s IP & Port rule(s)</string>
<string name="logs_card_network_count" translatable="true">%1$s connections</string>
<string name="logs_card_dns_count" translatable="true">%1$s queries</string>
<string name="hsf_start_btn_state" translatable="true">start</string>
<string name="hsf_stop_btn_state" translatable="true">stop</string>
<string name="hsf_uptime" translatable="false">(active %1$s; protos: %2$s; %3$s; mtu: %4$s)</string>
<string name="hsf_downtime" translatable="true">(inactive since %1$s)</string>
<string name="logs_card_duration" translatable="true">since %1$s</string>
<string name="hsf_vpn_dialog_header" translatable="true">Attention!</string>
<string name="hsf_vpn_dialog_message" translatable="true">Rethink needs permission to set up a local VPN to encrypt the device\'s DNS requests, implement a network monitor, and enforce firewall rules. \n\nRethink does not collect any information or spy on you in any way.</string>
<string name="hsf_vpn_prepare_failure" translatable="true">Either VPN permission missing, or another app is in Always-on VPN mode.</string>
<string name="hsf_notification_permission_failure" translatable="true">Enable notification permission from Settings screen</string>
<string name="hsf_start_dialog_header" translatable="true">Start %1$s</string>
<string name="hsf_start_dialog_message" translatable="true">You are one step away from safe and secure Android: Instantly see network activity, block websites, IPs, and badly behaving apps.</string>
<string name="hsf_start_dialog_positive" translatable="true">Start</string>
<string name="hsf_whats_new_chip_text" translatable="true">What\'s new</string>
<string name="hsf_proxy_chip_text" translatable="true">Proxy active</string>
<string name="hsf_packet_capture_chip_text" translatable="true">Packet capture active</string>
<string name="hsf_blocklist_chip_text_no_data" translatable="true">Enable RDNS+</string>
<string name="hsf_exclude_error" translatable="true">Exclude not possible in VPN lockdown mode</string>
<string name="hsf_proxy_chip_removed_toast" translatable="true">Proxy removed</string>
<string name="hsf_proxy_chip_remove_text" translatable="true">Stopping…</string>
<string name="hsf_packet_capture_chip_disabled_toast" translatable="true">Packet capture disabled</string>
<string name="hsf_whats_new_remove_text" translatable="true">Closing…</string>
<string name="hsf_blocklist_updating_text" translatable="true">Enabling…</string>
<string name="hsf_chip_appearance" translatable="true">Theme: %1$s</string>
<string name="hsf_pause_vpn_failure" translatable="true">Cannot pause: Rethink not active</string>
<string name="lbl_background_data" translatable="true">Restricting Background data</string>
<string name="lbl_battery_optimization" translatable="true">Battery optimization</string>
<string name="battery_optimization_dialog_heading" translatable="true">Disable %1$s</string>
<string name="restrict_dialog_message" translatable="true"><i>%1$s</i> may result in connectivity loss. Change setting to let Rethink use data and other resources when in background.</string>
<!-- DNS configure screen -->
<string name="dc_block_heading" translatable="true">rules</string>
<string name="dc_other_dns_heading" translatable="true">type</string>
<string name="dc_custom_dns_radio" translatable="true">Other DNS</string>
<string name="dc_rethink_dns_radio" translatable="true">Rethink DNS</string>
<string name="dc_entries" translatable="true">%1$s entries »</string>
<string name="dc_local_block_heading" translatable="true">On-device blocklists</string>
<string name="dc_local_block_desc_1" translatable="true">Choose from 195+ blocklists. Click here to download or configure blocklists.</string>
<string name="dc_custom_block_heading" translatable="true">Domain rules</string>
<string name="dc_dns_website_heading" translatable="true">Show website icon in DNS logs (experimental)</string>
<string name="dc_dns_website_desc" translatable="true">Fetches website icons from <i>nextdns.io</i> and <i>duckduckgo.com</i>. Consumes up to 350 mb in disk space</string>
<string name="dc_dns_leaks_heading" translatable="true">Prevent DNS leaks</string>
<string name="dc_dns_leaks_desc" translatable="true">When enabled, Rethink captures all packets on port 53 and forwards it to a user-set DNS endpoint</string>
<string name="dc_check_update_heading" translatable="true">Prompt on blocklist updates</string>
<string name="dc_check_update_desc" translatable="true">Check for blocklist updates once every <i>three</i> days</string>
<string name="dc_proxy_dns_heading" translatable="true">Never proxy DNS</string>
<string name="dc_proxy_dns_desc" translatable="true">Do not proxy DNS over Always-on WireGuard, SOCKS5, HTTP proxies.</string>
<!-- About fragment -->
<string name="about_bravedns_explantion" translatable="true">Rethink is the easiest way to monitor app activity, circumvent Internet censorship, and firewall apps on your Android device. </string>
<string name="about_bravedns_whoarewe" translatable="true">Rethink is a free and open-source project, led by ex-engineers from Amazon, IBM, and Scientific Games.</string>
<string name="about_bravedns_toreport_text" translatable="true">help & feedback</string>
<string name="about_bug_report_desc" translatable="true">email crash logs</string>
<string name="about_join_telegram" translatable="true">Telegram</string>
<string name="about_bug_report" translatable="true">Bug report</string>
<string name="about_bug_report_dialog_positive_btn" translatable="true">Send email</string>
<string name="about_bug_no_log_dialog_title" translatable="true">Bug report</string>
<string name="about_bug_no_log_dialog_message" translatable="true">Could not fetch crash logs. Do you want to manually report your bug?</string>
<string name="about_bug_no_log_dialog_positive_btn" translatable="true">Send email</string>
<string name="about_web" translatable="true">links</string>
<string name="about_website" translatable="true">Visit rethinkdns.com</string>
<string name="about_github" translatable="true">Contribute on GitHub</string>
<string name="about_faq" translatable="true">View FAQs</string>
<string name="about_docs" translatable="true">Read docs</string>
<string name="about_privacy_policy" translatable="true">Read privacy policy</string>
<string name="about_connect" translatable="true">contact</string>
<string name="about_sponsor_link_text" translatable="true">Sponsor</string>
<string name="about_app" translatable="true">app</string>
<string name="about_email" translatable="true">Email us</string>
<string name="about_settings" translatable="true">system</string>
<string name="about_settings_app_info" translatable="true">App Info</string>
<string name="about_settings_vpn_profile" translatable="true">VPN Profile</string>
<string name="about_settings_notification" translatable="true">Notification Settings</string>
<string name="about_whats_new" translatable="true">What\'s new in %1$s</string>
<string name="about_twitter" translatable="true">Follow us on Twitter</string>
<string name="about_mozilla" translatable="true">Rethink is supported by Mozilla Builders, FOSS United Foundation, OSOM Products Inc.</string>
<string name="about_app_update_check" translatable="true">Check for app updates</string>
<string name="about_app_contributors" translatable="true">Authors</string>
<string name="about_app_translate" translatable="true">Translate</string>
<string name="about_dialog_positive_button" translatable="true">Let\'s Go</string>
<string name="about_mail_to" translatable="true">hello@celzero.com</string>
<string name="about_mail_to_string" translatable="true">mailto:</string>
<string name="about_mail_subject" translatable="true">[Rethink]:</string>
<string name="about_mail_bugreport_subject" translatable="true">[Rethink]: Bug report</string>
<string name="about_mail_bugreport_text" translatable="true">Send this email to : hello@celzero.com</string>
<string name="about_mail_bugreport_share_title" translatable="true">Select email provider</string>
<string name="about_telegram_link" translatable="false">https://telegram.me/rethinkdns</string>
<string name="about_docs_link" translatable="false">https://docs.rethinkdns.com/</string>
<string name="about_faq_link" translatable="false">https://www.rethinkdns.com/faq</string>
<string name="about_github_link" translatable="false">https://github.com/celzero/rethink-app</string>
<string name="about_twitter_handle" translatable="false">https://x.com/rethinkdns</string>
<string name="about_website_link" translatable="false">https://www.rethinkdns.com/</string>
<string name="about_mozilla_alumni_link" translatable="false">https://builders.mozilla.community/old/alumni.html</string>
<string name="about_foss_link" translatable="false">https://fossunited.org/grants</string>
<string name="about_osom_link" translatable="false">https://www.osomprivacy.com</string>
<string name="about_translate_link" translatable="false">https://svc.rethinkdns.com/r/translate</string>
<string name="about_privacy_policy_link" translatable="false">https://www.rethinkdns.com/privacy</string>
<string name="about_mastodom_handle" translatable="false">https://mastodon.social/@rdns</string>
<string name="about_reddit_handle" translatable="false">https://www.reddit.com/r/rethinkdns</string>
<string name="about_matrix_handle" translatable="false">https://matrix.to/#/!jrTSpJiEkFNNBMhSaE:matrix.org</string>
<string name="about_version" translatable="false">%1$s</string> <!-- remove this string name="about_version" translatable="false">v%1$s</string> -->
<string name="about_version_install_source" translatable="false">%1$s (%2$s)</string>
<string name="about_dialog_neutral_button" translatable="true">Suggest features</string>
<string name="app_info_error" translatable="true">Could not launch App info.</string>
<string name="vpn_profile_error" translatable="true">Could not launch VPN profile.</string>
<string name="private_dns_error" translatable="true">Could not launch private dns screen.</string>
<string name="notification_screen_error" translatable="true">Could not launch App Notification screen.</string>
<string name="intent_launch_error" translatable="true">Count not launch %1$s</string>
<string name="no_browser_error" translatable="true">Cannot open webpage from browser.</string>
<string name="log_file_not_available" translatable="true">No crash report found</string>
<string name="error_loading_log_file" translatable="true">Error loading log file</string>
<string name="collecting_logs_progress_text" translatable="true">Capturing…</string>
<string name="logs_disclaimer" translatable="true">Showing first 20,000 characters</string>
<string name="contributors_dialog_title" translatable="true">Authors</string>
<string name="contributors_list" translatable="true"><![CDATA[The <i>Rethink Open Source Project</i> owes its existence to these volunteers who devote countless hours on its development.<br/>
<br/>🛡️ Android app <br/>
<a href="https://github.com/BayLee4">BayLee4</a><br/>
<a href="https://github.com/Ch4t4r">Ch4t4r</a><br/>
<a href="https://github.com/HrBDev">HrBDev</a><br/>
<a href="https://github.com/hussainmohd-a">hussainmohd-a</a><br/>
<a href="https://github.com/ignoramous">ignoramous</a><br/>
<a href="https://github.com/markwmuller">markwmuller</a><br/>
<a href="https://github.com/Mygod">Mygod</a><br/>
<a href="https://github.com/Uldiniad">Uldiniad</a><br/>
<a href="https://github.com/Poussinou">Poussinou</a><br/>
<a href="https://github.com/pjosingh">pjosingh</a><br/>
<a href="https://github.com/RohitSurwase">RohitSurwase</a><br/>
<br/>🚂 Network engine <br/>
<a href="https://github.com/alalamav">alalamav</a><br/>
<a href="https://github.com/bemasc">bemasc</a><br/>
<a href="https://github.com/dmcardle">dmcardle</a><br/>
<a href="https://github.com/fortuna">fortuna</a><br/>
<a href="https://github.com/ignoramous">ignoramous</a><br/>
<a href="https://github.com/Lanius-collaris">Lanius-collaris</a><br/>
<a href="https://github.com/PeterDaveHello">PeterDaveHello</a><br/>
<a href="https://github.com/santhosh-ponnusamy">santhosh-ponnusamy</a><br/>
<a href="https://github.com/SeanBurford">SeanBurford</a><br/>
<br/>📚 Resolver <br/>
<a href="https://github.com/ahmed-tasaly">ahmed-tasaly</a><br/>
<a href="https://github.com/amithm7">amithm7</a><br/>
<a href="https://github.com/arfshl">arfshl</a><br/>
<a href="https://github.com/badmojr">badmojr</a><br/>
<a href="https://github.com/bongochong">bongochong</a><br/>
<a href="https://github.com/elliotwutingfeng">elliotwutingfeng</a><br/>
<a href="https://github.com/georgyo">georgyo</a><br/>
<a href="https://github.com/GiddyGoatGaming">GiddyGoatGaming</a><br/>
<a href="https://github.com/Harish-Narayan">Harish-Narayan</a><br/>
<a href="https://github.com/ignoramous">ignoramous</a><br/>
<a href="https://github.com/JakeChampion">JakeChampion</a><br/>
<a href="https://github.com/MasterKia">MasterKia</a><br/>
<a href="https://github.com/mtxadmin">mtxadmin</a><br/>
<a href="https://github.com/neneeen">neneeen</a><br/>
<a href="https://github.com/PeterDaveHello">PeterDaveHello</a><br/>
<a href="https://github.com/santhosh-ponnusamy">santhosh-ponnusamy</a><br/>
<a href="https://github.com/shruuub">shruuub</a><br/>
<a href="https://github.com/shuvashish76">shuvashish76</a><br/>
<br/>⚜ Community mods <br/>
<a href="https://t.me/amithm7">amithm7</a><br/>
<a href="https://t.me/TronSlayer">Andersen</a><br/>
<a href="https://t.me/ppatra">ppatra</a><br/>
<a href="https://t.me/InFamous23">InFamous23</a><br/>
<a href="https://t.me/TheTr1ckst3r">TheTr1ckst3r</a><br/>
<a href="https://t.me/Ch4t4r">Ch4t4r</a><br/>
<a href="https://t.me/Billi_ance">Billi_ance</a><br/>
<a href="https://t.me/kaliangel">kaliangel</a><br/>
<a href="https://github.com/PoneyClairDeLune">PoneyClairDeLune</a><br/>
<br/>📌 Geo-IP <br/>
<a href="https://db-ip.com">db-ip.com</a><br/>
<br/>❇ Translations <br/>
<a href="https://weblate.org/en/">Weblate</a><br/>
<br/>🦆 Icons <br/>
<a href="https://github.com/celzero/rethink-app/issues/346">Icons</a><br/>
<br/>📦 Build servers <br/>
<a href="https://jitpack.io/">JitPack</a><br/>
<a href="https://github.com/">GitHub</a><br/>
]]></string>
<!-- Configure DNS Fragment string == cd -->
<string name="cd_dns_crypt_title" translatable="true">resolvers</string>
<string name="cd_custom_doh_dialog_title" translatable="true">Custom Server URL</string>
<string name="cd_custom_doh_url_name_default" translatable="true">DoH</string>
<string name="cd_custom_doh_url_name" translatable="true">DoH %1$s</string>
<string name="cd_custom_dns_proxy_title" translatable="true">Custom DNS Proxy</string>
<string name="cd_custom_dns_proxy_name_default" translatable="true">Proxy</string>
<string name="cd_custom_dns_proxy_name" translatable="true">Proxy %1$s</string>
<string name="cd_custom_dns_proxy_default_ip" translatable="false">127.0.0.1</string>
<string name="cd_custom_dns_proxy_default_app" translatable="true">None</string>
<string name="cd_dns_proxy_mode_internal" translatable="true">Internal</string>
<string name="cd_dns_proxy_mode_external" translatable="true">External</string>
<string name="cd_dns_proxy_error_text_1" translatable="true">Invalid IP address</string>
<string name="cd_dns_proxy_error_text_2" translatable="true">Port range should be from 1024–65535</string>
<string name="cd_dns_proxy_error_text_3" translatable="true">Invalid port</string>
<string name="cd_dns_crypt_dialog_title" translatable="true">Add DNSCrypt Resolver or Relay</string>
<string name="cd_dns_crypt_name_default" translatable="true">DNSCrypt</string>
<string name="cd_dns_crypt_name" translatable="true">DNSCrypt %1$s</string>
<string name="cd_dns_crypt_relay_name" translatable="true">DNSRelay %1$s</string>
<string name="cd_dns_crypt_dialog_heading" translatable="true">Add DNSCrypt Resolver or Relay</string>
<string name="cd_dns_crypt_resolver_heading" translatable="true">Resolver</string>
<string name="cd_dns_crypt_relay_heading" translatable="true">Relay</string>
<string name="cd_dns_crypt_dialog_name" translatable="true">Name</string>
<string name="cd_dns_crypt_dialog_stamp" translatable="true">Stamp</string>
<string name="cd_dns_crypt_dialog_desc" translatable="true">Description (optional)</string>
<string name="cd_dns_crypt_error_text_1" translatable="true">Stamp cannot be empty</string>
<string name="cd_doh_dialog_heading" translatable="true">Add DNS over HTTPS</string>
<string name="cd_doh_dialog_resolver_name" translatable="true">Resolver Name</string>
<string name="cd_doh_dialog_resolver_url" translatable="true">Resolver URL</string>
<string name="cd_doh_dialog_checkbox_desc" translatable="true">Do not validate server TLS certificates (enable only if you know what you are doing)</string>
<string name="cd_dnscrypt_relay_heading" translatable="true">Relays</string>
<string name="cd_dns_alg_heading" translatable="true">Advanced DNS filtering (experimental)</string>
<string name="cd_dns_alg_desc" translatable="true">Assign unique IP per DNS request</string>
<!-- Connection Tracker fragment string -->
<string name="ct_ip_details" translatable="false">%1$s (%2$s)</string>
<string name="ct_ip_port" translatable="false">%1$s:%2$s</string>
<!-- Connection tracker bottom sheet fragment string -->
<string name="ctbs_app_info_not_available_toast" translatable="true">App settings page not found</string>
<string name="ctbs_app_other_apps" translatable="true">%1$s + %2$s other app(s)</string>
<string name="ctbs_block_other_apps" translatable="true">Rules applied for %1$s will also be applicable for %2$s other apps</string>
<string name="ctbs_dialog_negative_btn" translatable="true">Go Back</string>
<!-- DNS Log fragment -->
<string name="dns_log_dialog_positive" translatable="true">Delete logs</string>
<string name="dns_btm_sheet_dialog_message" translatable="true">
<Data><![CDATA[ <h3><u><font size="8">%1$s</font></u>: %2$s blocklist(s)</h3>%3$s.<br/><br/>]]></Data>
</string>
<string name="dns_btm_sheet_dialog_ips" translatable="true">
<Data><![CDATA[ %1$s %2$s <br/>]]></Data>
</string>
<string name="dns_btm_sheet_chip" translatable="true">+%1$s Other IPs</string>
<string name="dns_btm_sheet_chip_no_answer" translatable="true">No Answer</string>
<!-- DNS log bottom sheet -->
<string name="dns_btm_resolved_crypt" translatable="true">resolved <u>anonymously</u> %1$s by %2$s via %3$s</string>
<string name="dns_btm_resolved_doh" translatable="true">resolved %1$s by %2$s</string>
<string name="dns_btm_resolved_doh_no_server" translatable="true">resolved %1$s</string>
<string name="dns_btm_latency_ms" translatable="true">%1$sms</string>
<string name="dns_btm_record_type" translatable="true">Query type: %1$s</string>
<!-- Home Screen activity -->
<string name="hs_download_positive_default" translatable="true">ok</string>
<string name="hs_download_positive_play_store" translatable="true">Complete Update</string>
<string name="hs_download_positive_website" translatable="true">Visit website</string>
<string name="hs_download_negative_default" translatable="true">Remind me later</string>
<!-- Universal Firewall-->
<string name="univ_firewall_rule_1" translatable="true">Block all apps when device is locked</string>
<string name="univ_firewall_rule_2" translatable="true">Block any app not in use</string>
<string name="univ_firewall_rule_3" translatable="true">Block when source app is unknown</string>
<string name="univ_firewall_rule_4" translatable="true">Block UDP except DNS and NTP</string>
<string name="univ_firewall_rule_5" translatable="true">Block when DNS is bypassed</string>
<string name="univ_firewall_rule_6" translatable="true">Block newly installed apps by default</string>
<string name="univ_firewall_rule_7" translatable="true">Block IPv4 in IPv6 (experimental)</string>
<string name="univ_firewall_rule_8" translatable="true">Block port 80 (insecure HTTP) traffic</string>
<string name="univ_firewall_rule_9" translatable="true">Block on metered (mobile) network</string>
<string name="univ_firewall_rule_10" translatable="true">Block all except bypassed apps and IPs</string>
<string name="univ_view_blocked_ip" translatable="true">IP & Port rules</string>
<string name="univ_view_blocked_ip_desc" translatable="true">Modify blocked or trusted Domain, IP / Port rules.</string>
<string name="univ_ip_delete_individual_toast" translatable="true">%1$s deleted.</string>
<string name="univ_ip_delete_dialog_positive" translatable="true">Delete all</string>
<string name="univ_ip_delete_toast_success" translatable="true">Deleted all IP rules.</string>
<string name="univ_delete_firewall_dialog_title" translatable="true">Delete all IP Rules?</string>
<string name="univ_delete_firewall_dialog_message" translatable="true">Deleting these rules would allow any application to connect to the currently blocked IPs.</string>
<string name="univ_accessibility_crash_dialog_positive" translatable="true">Goto Settings</string>
<string name="univ_accessibility_dialog_positive" translatable="true">Grant</string>
<string name="univ_accessibility_dialog_negative" translatable="true">Deny</string>
<string name="univ_firewall_heading" translatable="true">Universal firewall rules</string>
<string name="app_ip_domain_rules" translatable="true">Per app IP / Domain rules</string>
<string name="app_ip_domain_rules_desc" translatable="true">Modify per app IP / Domain rules.</string>
<!-- DNS adapters -->
<string name="dns_connected_rethink_plus" translatable="true">Connected. %1$s blocklists in-use</string>
<string name="dns_connected_no_count" translatable="true">Connected</string>
<string name="dns_connected" translatable="true">Connected</string>
<string name="dns_info_positive" translatable="true">Ok</string>
<string name="dns_info_neutral" translatable="true">Copy</string>
<string name="dns_crypt_relay_error_toast" translatable="true">No resolver selected</string>
<string name="dns_proxy_desc" translatable="false">%1$s:%2$s, %3$s</string>
<string name="dns_proxy_desc_no_app" translatable="false">%1$s:%2$s</string>
<string name="dns_proxy_dialog_message" translatable="true">App name: %1$s\n\nIP address: %2$s\n\nPort number: %3$s</string>