summaryrefslogtreecommitdiffhomepage
path: root/ios/Assets/Localizable.xcstrings
blob: c6f014e8455ccc4620e840f81547696d3ea5d664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
{
  "sourceLanguage" : "en",
  "strings" : {
    "“%@ Local network sharing” requires restarting the VPN connection, which will disconnect you and briefly expose your traffic.\nTo prevent this, manually enable Airplane Mode and turn off Wi-Fi before continuing.\nWould you like to continue to enable “Local network sharing”?" : {

    },
    "**Attention: This increases network traffic and will also negatively affect speed, latency, and battery usage. Use with caution on limited plans.**" : {

    },
    "**Tap here** to see what’s new" : {

    },
    "%@" : {

    },
    "%@ (%@) hides patterns in your encrypted VPN traffic." : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "%1$@ (%2$@) hides patterns in your encrypted VPN traffic."
          }
        }
      }
    },
    "%@ cannot be empty." : {

    },
    "%@ does this by carefully adding network noise and making all network packets the same size." : {

    },
    "%@ left on this account" : {

    },
    "%@ via %@" : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "%1$@ via %2$@"
          }
        }
      }
    },
    "%@ was added to your account." : {

    },
    "%@-enabled" : {

    },
    "%@, %@" : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "%1$@, %2$@"
          }
        }
      }
    },
    "%d more..." : {

    },
    "%lld more..." : {

    },
    "About %@ method..." : {

    },
    "About API access…" : {

    },
    "About Server IP override..." : {

    },
    "Account" : {

    },
    "Account created" : {

    },
    "Account credit expires soon" : {

    },
    "Account credit has expired" : {

    },
    "Account deletion" : {

    },
    "Account number" : {

    },
    "Active features" : {

    },
    "Add" : {

    },
    "Add 30 days time (%@)" : {

    },
    "Add 90 days time (%@)" : {

    },
    "Add a server" : {

    },
    "Add method" : {

    },
    "Add time" : {

    },
    "Ads" : {

    },
    "Adult content" : {

    },
    "Agree and continue" : {

    },
    "All" : {

    },
    "All locations" : {

    },
    "All providers" : {

    },
    "Any" : {

    },
    "API access" : {

    },
    "API reachable" : {

    },
    "API unreachable" : {

    },
    "API unreachable, save method anyway?" : {

    },
    "App logs" : {

    },
    "AppStore receipt is not found on disk." : {

    },
    "Are you sure you want to log %@ out?" : {

    },
    "At least one method needs to be enabled." : {

    },
    "Attention: this setting cannot be used in combination with **%@**" : {

    },
    "Attention: toggling “Local network sharing” requires restarting the VPN connection." : {

    },
    "Authentication" : {

    },
    "Automatic" : {

    },
    "BLOCKED CONNECTION" : {

    },
    "BLOCKING INTERNET" : {

    },
    "Blocking internet: Your time on this account has expired. To continue using the internet, please add more time or disconnect the VPN." : {

    },
    "By enabling “%@” you will have to manually select a server that is %@-enabled. %@ won't automatically be used to enable DAITA with any server." : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "By enabling “%1$@” you will have to manually select a server that is %2$@-enabled. %3$@ won't automatically be used to enable DAITA with any server."
          }
        }
      }
    },
    "By using sophisticated AI it’s possible to analyze the traffic of data packets going in and out of your device (even if the traffic is encrypted)." : {

    },
    "Cancel" : {

    },
    "Cannot complete the purchase" : {

    },
    "Cannot read the AppStore receipt from disk" : {

    },
    "Cannot refresh the AppStore receipt: %@" : {

    },
    "Cannot restore purchases" : {

    },
    "Checking account number" : {

    },
    "Cipher" : {

    },
    "Clear" : {

    },
    "Clear all overrides" : {

    },
    "Clear all overrides?" : {

    },
    "Clearing the imported overrides changes the server IPs, in the Select location view, back to default." : {

    },
    "Client is not allowed to issue the request." : {

    },
    "Collapse %@" : {

    },
    "Collapses this location." : {

    },
    "Congrats!" : {

    },
    "Connect" : {

    },
    "CONNECTED" : {

    },
    "Connected to %@" : {

    },
    "Connecting to %@" : {

    },
    "CONNECTING..." : {

    },
    "Connection details" : {

    },
    "Continue with login" : {

    },
    "Copied Mullvad account number to pasteboard" : {

    },
    "Create" : {

    },
    "Create account" : {

    },
    "Create new account" : {

    },
    "Create new list" : {

    },
    "Created: %@" : {

    },
    "Creating account..." : {

    },
    "Current device" : {

    },
    "Custom" : {

    },
    "Custom DNS" : {

    },
    "Custom lists" : {

    },
    "DAITA" : {

    },
    "DAITA isn't available at the currently selected location. After enabling, please go to the \"Select location\" view and select a location that supports DAITA." : {

    },
    "DAITA isn't available on the current entry server. After enabling, please go to the \"Select location\" view and select an entry location that supports DAITA." : {

    },
    "Delete" : {

    },
    "Delete %@?" : {

    },
    "Delete account" : {

    },
    "Delete list" : {

    },
    "Delete method" : {

    },
    "Deleting account..." : {

    },
    "Device is inactive" : {

    },
    "Device name" : {

    },
    "Device name: %@" : {

    },
    "Direct only" : {

    },
    "Disable all \"%@\" above to activate this setting." : {

    },
    "Disabling" : {

    },
    "Discard changes" : {

    },
    "Disconnect" : {

    },
    "DISCONNECTED" : {

    },
    "DISCONNECTING..." : {

    },
    "DNS content blockers" : {

    },
    "DNS settings" : {

    },
    "Do you agree to remaining anonymous?" : {

    },
    "Do you want to create a new account?" : {

    },
    "Do you want to delete the list **%@**?" : {

    },
    "Don’t have an account number?" : {

    },
    "Done" : {

    },
    "Edit custom list" : {

    },
    "Edit custom lists" : {

    },
    "Edit message" : {

    },
    "Edit method" : {

    },
    "Either buy credit on our website or make an in-app purchase via the **Add time** button below." : {

    },
    "Either buy credit on our website or redeem a voucher." : {

    },
    "Enable" : {

    },
    "Enable method" : {

    },
    "Enabling" : {

    },
    "Enter IP" : {

    },
    "Enter voucher code" : {

    },
    "Enter your account number" : {

    },
    "Entry" : {

    },
    "Exit" : {

    },
    "Expand %@" : {

    },
    "Expands this location." : {

    },
    "Failed to load products, please try again" : {

    },
    "Failed to send" : {

    },
    "Failed to send the receipt to server: %@" : {

    },
    "Failed to start the tunnel: %@." : {

    },
    "Failed to start the tunnel." : {

    },
    "Failed to stop the tunnel: %@." : {

    },
    "Failed to stop the tunnel." : {

    },
    "FAQs & Guides" : {

    },
    "Fetching devices..." : {

    },
    "Filter" : {

    },
    "Filtered:" : {

    },
    "Gambling" : {

    },
    "Go ahead and start using the app to begin reclaiming your online privacy." : {

    },
    "Go to login" : {

    },
    "Going to login will unblock the Internet on this device." : {

    },
    "Got it!" : {

    },
    "Here’s your account number. Save it!" : {

    },
    "Hide account number" : {

    },
    "If an observer monitors these data packets, %@ makes it significantly harder for them to identify which websites you are visiting or with whom you are communicating." : {

    },
    "If needed we will contact you at %@" : {

    },
    "If you are having issues connecting to VPN servers, please contact support." : {

    },
    "If you are not connected to our VPN, then the Encrypted DNS proxy will use your own non-VPN IP when connecting. The DoH servers are hosted by one of the following providers: Quad9 or CloudFlare." : {

    },
    "If you disconnect now, you won’t be able to secure your connection until the device is online." : {

    },
    "If you exit the form and try again later, the information you already entered will still be here." : {

    },
    "If you haven’t received additional VPN time after purchasing" : {

    },
    "If you log out, the device and the device name is removed. When you log back in again, the device will get a new name." : {

    },
    "If you still experience issues you can email our support directly at **%@**. Please attach your app log to your email." : {

    },
    "Import" : {

    },
    "Import file" : {

    },
    "Import files or text with new IP addresses for the servers in the Select location view." : {

    },
    "Import of %@ was successful, overrides are now active." : {

    },
    "Import of %@ was unsuccessful, please try again." : {

    },
    "Import of text was successful, overrides are now active." : {

    },
    "Import of text was unsuccessful, please try again." : {

    },
    "IMPORT SUCCESSFUL" : {

    },
    "Import via text" : {

    },
    "In" : {

    },
    "In use" : {

    },
    "Include all networks" : {

    },
    "Internal error occurred. Settings will be reset to defaults and device logged out." : {

    },
    "Internal error." : {

    },
    "Invalid account number" : {

    },
    "Invalid account number: %@" : {

    },
    "Invalid device state." : {

    },
    "Invalid purchase identifier." : {

    },
    "It does this by performing an extra key exchange using a quantum safe algorithm and mixing the result into WireGuard’s regular encryption. This extra step uses approximately 500 kiB of traffic every time a new tunnel is established." : {

    },
    "It looks like you’ve entered an account number instead of a voucher code. If you would like to change the active account, please log out first." : {

    },
    "Language" : {

    },
    "Last four digits of the account number are incorrect" : {

    },
    "Last used account" : {

    },
    "Learn about privacy" : {

    },
    "Less than a day" : {

    },
    "Local network sharing" : {

    },
    "Locations" : {

    },
    "Log out" : {

    },
    "Logged in" : {

    },
    "Logging in..." : {

    },
    "Logging out..." : {

    },
    "Login" : {

    },
    "Login failed" : {

    },
    "Make a purchase with StoreKit2" : {

    },
    "Malware" : {

    },
    "Manage and add custom methods to access the Mullvad API." : {

    },
    "Manage devices" : {

    },
    "Mullvad owned only" : {

    },
    "multihop" : {

    },
    "Multihop" : {

    },
    "Multihop is being used to enable DAITA for your selected location." : {

    },
    "Multihop routes your traffic into one WireGuard server and out another, making it harder to trace. This results in increased latency but increases anonymity online." : {

    },
    "Name" : {

    },
    "Name is already taken." : {

    },
    "Name should be no longer than %i characters." : {

    },
    "Network error: %@" : {

    },
    "NETWORK ISSUES" : {

    },
    "NEW DEVICE CREATED" : {

    },
    "NEW VERSION INSTALLED" : {

    },
    "Next" : {

    },
    "No DAITA compatible servers match your location settings. Try changing location." : {

    },
    "No matching relays found, check your filter settings." : {

    },
    "No matching servers found." : {

    },
    "NO NETWORK" : {

    },
    "NO OVERRIDES IMPORTED" : {

    },
    "No servers match your location filter. Try changing filter settings." : {

    },
    "No servers match your obfuscation settings. Try changing location or obfuscation method." : {

    },
    "No servers match your settings, try changing server or other settings." : {

    },
    "Not all our servers are %@-enabled. Therefore, we use multihop automatically to enable %@ with any server." : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "Not all our servers are %1$@-enabled. Therefore, we use multihop automatically to enable %2$@ with any server."
          }
        }
      }
    },
    "Obfuscation" : {

    },
    "Obfuscation hides the WireGuard traffic inside another protocol. It can be used to help circumvent censorship and other types of filtering, where a plain WireGuard connection would be blocked." : {

    },
    "Obscured" : {

    },
    "Off" : {

    },
    "On" : {

    },
    "On some networks, where various types of censorship are being used, our server IP addresses are sometimes blocked." : {

    },
    "On some networks, where various types of censorship are being used, the API servers might not be directly reachable." : {

    },
    "Open %@ settings" : {

    },
    "Optional" : {

    },
    "Out IPv4" : {

    },
    "Out IPv6" : {

    },
    "Out of time" : {

    },
    "OUT OF TIME" : {

    },
    "OVERRIDES ACTIVE" : {

    },
    "Ownership" : {

    },
    "Paid until" : {

    },
    "Password" : {

    },
    "Performs a connection test to a Mullvad API server via this access method." : {

    },
    "Please enter a valid IPv4 or IPv6 address." : {

    },
    "Please enter a valid remote server port." : {

    },
    "Please log out of at least one by removing it from the list below. You can find the corresponding device name under the device’s Account settings." : {

    },
    "Please retry by using the \"Restore purchases\" button." : {

    },
    "Port" : {

    },
    "Port: %@" : {

    },
    "Previous" : {

    },
    "Providers" : {

    },
    "Providers: %d" : {

    },
    "Quantum resistance" : {

    },
    "Quantum-resistant tunnel" : {

    },
    "QUIC" : {

    },
    "RECONNECTING" : {

    },
    "Reconnecting to %@" : {

    },
    "Redeem" : {

    },
    "Redeem voucher" : {

    },
    "Refund last purchase with StoreKit2" : {

    },
    "Refund successful" : {

    },
    "Remove" : {

    },
    "Remove %@?" : {

    },
    "Remove last used account" : {

    },
    "Removing the saved account number from this device cannot be undone.\nDo you want to remove the saved account number?" : {

    },
    "Rented only" : {

    },
    "Report a problem" : {

    },
    "Required" : {

    },
    "Restore purchases" : {

    },
    "Save" : {

    },
    "Saving changes..." : {

    },
    "Search for..." : {

    },
    "Select location" : {

    },
    "Selected" : {

    },
    "Send" : {

    },
    "Send anyway" : {

    },
    "Sending..." : {

    },
    "Sent" : {

    },
    "Server" : {

    },
    "Server details" : {

    },
    "Server IP override" : {

    },
    "Setting: %@" : {

    },
    "Settings" : {

    },
    "Settings migration error" : {

    },
    "Shadowsocks" : {

    },
    "Show account number" : {

    },
    "Social media" : {

    },
    "Socks5" : {

    },
    "Start using the app" : {

    },
    "Super!" : {

    },
    "Switch location" : {

    },
    "Tap **Edit** to add at least one DNS server." : {

    },
    "TCP" : {

    },
    "Test method" : {

    },
    "Testing..." : {

    },
    "Thanks for your purchase" : {

    },
    "Thanks!" : {

    },
    "The app communicates with a Mullvad API server directly." : {

    },
    "The app communicates with a Mullvad API server via a Mullvad bridge server." : {

    },
    "The app communicates with a Mullvad API server via a proxy address." : {

    },
    "The app needs to communicate with a Mullvad API server to log you in, fetch server lists, and other critical operations." : {

    },
    "The app will test the method before saving." : {

    },
    "The automatic setting will randomly choose from the valid port ranges shown below." : {

    },
    "The custom port can be any value inside the valid ranges: %@." : {

    },
    "The device will be removed from the list and logged out." : {

    },
    "The entry and exit servers cannot be the same. Try changing one to a new server or location." : {

    },
    "The entry server for %@ is currently overridden by %@. To select an entry server, please first enable “%@” or disable “%@“ in the settings." : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "The entry server for %1$@ is currently overridden by %2$@. To select an entry server, please first enable “%3$@” or disable “%4$@“ in the settings."
          }
        }
      }
    },
    "The payment request was cancelled." : {

    },
    "The selected WireGuard port is not supported, please change it under **VPN settings**." : {

    },
    "The version of settings stored on device is unrecognized.Settings will be reset to defaults and the device will be logged out." : {

    },
    "This can be useful if the API is censored but Mullvad’s bridge servers are not." : {

    },
    "This can be useful when you are not affected by censorship." : {

    },
    "This device is not allowed to make the payment." : {

    },
    "This device is now named **%@**. See more under \"Manage devices\" in Account." : {

    },
    "This feature allows access to other devices on the local network, such as for sharing, printing, streaming, etc." : {

    },
    "This feature allows you to circumvent that censorship by adding custom ways to access the API via proxies and similar methods." : {

    },
    "This feature makes the WireGuard tunnel resistant to potential attacks from quantum computers." : {

    },
    "This is the name assigned to the device. Each device logged in on a Mullvad account gets a unique name that helps you identify it when you manage your devices in the app or on the website." : {

    },
    "This logs out all devices using this account and all VPN access will be denied even if there is time left on the account. Enter the last 4 digits of the account number and hit \"Delete account\" if you really want to delete the account:" : {

    },
    "This might cause issues on certain websites, services, and apps." : {

    },
    "Time left: %@" : {

    },
    "To add more, you will need to disconnect and access the Internet with an unsecure connection." : {

    },
    "To assist you better, please write in English or Swedish and include which country you are connecting from." : {

    },
    "To circumvent this you can import a file or a text, provided by our support team, with new IP addresses that override the default addresses of the servers in the Select location view." : {

    },
    "To continue your journey as a privacy ninja, visit our website to pick up other privacy-friendly habits and tools." : {

    },
    "To create a custom list, tap on \"...\" " : {

    },
    "To enable this setting, add at least one server." : {

    },
    "To help you more effectively, your app’s log file will be attached to this message. Your data will remain secure and private, as it is anonymised before being sent over an encrypted channel." : {

    },
    "To start using the app, you first need to add time to your account." : {

    },
    "Too many devices" : {

    },
    "Trackers" : {

    },
    "Try again" : {

    },
    "TUNNEL ERROR" : {

    },
    "Tunnel is unset." : {

    },
    "Type" : {

    },
    "UDP" : {

    },
    "UDP-over-TCP" : {

    },
    "Unable to authenticate account. Please log out and log back in." : {

    },
    "Unable to start tunnel connection after update. Please disconnect and reconnect." : {

    },
    "Unable to start tunnel connection. Please send a problem report." : {

    },
    "Unexpected server response: %1$@ (HTTP status: %2$d)" : {

    },
    "Unexpected server response: %d" : {

    },
    "Unknown error." : {

    },
    "Use custom DNS server" : {

    },
    "Username" : {

    },
    "Valid account number" : {

    },
    "Valid range: %d - %d" : {
      "localizations" : {
        "en" : {
          "stringUnit" : {
            "state" : "new",
            "value" : "Valid range: %1$d - %2$d"
          }
        }
      }
    },
    "value" : {

    },
    "Verifying voucher..." : {

    },
    "View and manage all your logged in devices. You can have up to 5 devices on one account at a time. Each device gets a name when logged in to help you tell them apart easily." : {

    },
    "View app logs" : {

    },
    "Voucher code has already been used." : {

    },
    "Voucher code is invalid." : {

    },
    "Voucher was successfully redeemed." : {

    },
    "VPN settings" : {

    },
    "Warning: The malware blocker is not an anti-virus and should not be treated as such, this is just an extra layer of protection." : {

    },
    "We are having some issues, please try again later" : {

    },
    "We will look into this." : {

    },
    "What’s new" : {

    },
    "When this feature is enabled it stops the device from contacting certain domains or websites known for distributing ads, malware, trackers and more." : {

    },
    "When using DAITA, one provider with DAITA-enabled servers is required." : {

    },
    "Which TCP port the UDP-over-TCP obfuscation protocol should connect to on the VPN server." : {

    },
    "WireGuard obfuscation" : {

    },
    "WireGuard port" : {

    },
    "With the “Direct” method, the app communicates with a Mullvad API server directly without any intermediate proxies." : {

    },
    "With the “Encrypted DNS proxy” method, the app will communicate with our Mullvad API through a proxy address. It does this by retrieving an address from a DNS over HTTPS (DoH) server and then using that to reach our API servers." : {

    },
    "With the “Mullvad bridges” method, the app communicates with a Mullvad API server via a Mullvad bridge server. It does this by sending the traffic obfuscated by Shadowsocks." : {

    },
    "Yes, continue" : {

    },
    "Yes, log out device" : {

    },
    "You already have a saved account number, by creating a new account the saved account number will be removed from this device. This cannot be undone." : {

    },
    "You are about to send the problem report without a way for us to get back to you. If you want an answer to your report you will have to enter an email address." : {

    },
    "You are logged in with an invalid account number. Please log out and try another one." : {

    },
    "You can add more time via the account view or website to continue using the VPN." : {

    },
    "You can have up to 5 devices logged in on one Mullvad account." : {

    },
    "You can now continue logging in on this device." : {

    },
    "You can use the \"restore purchases\" function to check for any in-app payments made via Apple services. If there is a payment that has not been credited, it will add the time to the currently logged in Mullvad account." : {

    },
    "You have %@ left on this account." : {

    },
    "You have a right to privacy. That’s why we never store activity logs, don’t ask for personal information, and encourage anonymous payments.\n\nIn some situations, as outlined in our privacy policy, we might process personal data that you choose to send, for example if you email us.\n\nWe strongly believe in retaining as little data as possible because we want you to remain anonymous." : {

    },
    "You have no more VPN time left on this account. " : {

    },
    "You have one day left on this account. Please add more time to continue using the VPN." : {

    },
    "You have removed this device. To connect again, you will need to log back in." : {

    },
    "You have unsaved changes." : {

    },
    "You’re all set!" : {

    },
    "Your device is offline. The tunnel will automatically connect once your device is back online." : {

    },
    "Your device is offline. Try connecting again when the device has access to Internet." : {

    },
    "Your email (optional)" : {

    },
    "Your previous purchases have already been added to this account." : {

    },
    "Your purchase was successfully refunded." : {

    }
  },
  "version" : "1.0"
}