-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathstrings.xml
More file actions
1838 lines (1838 loc) · 157 KB
/
strings.xml
File metadata and controls
1838 lines (1838 loc) · 157 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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="id_1030_minutes">~ 10-30 Minutes</string>
<string name="id_12_confirmations">1/2 confirmations</string>
<string name="id_12_months_51840_blocks">12 months (51840 blocks)</string>
<string name="id_12_words">12 words</string>
<string name="id_15_months_65535_blocks">15 months (65535 blocks)</string>
<string name="id_1_double_check_all_of_your">1. Double check all of your recovery phrase word by word, are all words correct?\n2. The order of words is important! Make sure you've typed the words in the correct order.\n\nIf neither of these tips have helped you, or if you don't have a 12, 24 or 27 words recovery phrase please check our help center.</string>
<string name="id_1d_2s_ago">%1$d %2$s ago</string>
<string name="id_1d_minutes">%1$d minutes</string>
<string name="id_1s_blocks_left_2d">%1$s blocks left %2$d</string>
<string name="id_1s_twofactor_setup">%1$s Two-Factor setup</string>
<string name="id_24_words">24 words</string>
<string name="id_2_hours">~ 2 Hours</string>
<string name="id_2fa_account">2FA Account</string>
<string name="id_2fa_call_is_now_enabled">2FA Call is now enabled</string>
<string name="id_2fa_dispute_in_progress">2FA Dispute in Progress</string>
<string name="id_2fa_expired">2FA Expired</string>
<string name="id_2fa_expiry">2FA Expiry</string>
<string name="id_2fa_isnt_set_up_yetnnyou_can">2FA isn't set up yet.\n\nYou can choose your favourite 2FA method among an authenticator app, email, SMS or a call.</string>
<string name="id_2fa_methods">2FA Methods</string>
<string name="id_2fa_protected">2FA Protected</string>
<string name="id_2fa_protected_accounts_are_2of2">2FA Protected accounts are 2-of-2 wallets needing the user's key and Blockstream's 2FA signature. After a ~1-year timelock, they become 1-of-1, disabling 2FA, to ultimately keep you in control. Redeposit your coins to reactivate 2FA protection.</string>
<string name="id_2fa_reactivated">2FA Reactivated!</string>
<string name="id_2fa_reset_in_progress">2FA Reset in Progress</string>
<string name="id_2fa_shield">2FA Shield</string>
<string name="id_2fa_shield_account">2FA Shield Account</string>
<string name="id_2fa_threshold">2FA Threshold</string>
<string name="id_2of2">2of2</string>
<string name="id_2of3">2of3</string>
<string name="id_2of3_account">2of3 Account</string>
<string name="id_2of3_with_2fa">2of3 with 2FA</string>
<string name="id_2of3_with_2fa_shield">2of3 with 2FA Shield</string>
<string name="id_4_hours">~ 4 Hours</string>
<string name="id_5_seconds_minimum">5 seconds minimum</string>
<string name="id_6_months_25920_blocks">6 months (25920 blocks)</string>
<string name="id_a_2of3_account_requires_two_out">A 2of3 account requires two out of three signatures to spend coins. The third signature is from a backup key known only to you. This gives you the security benefits of a standard account, while still allowing you to move your coins independently at any point in time.</string>
<string name="id_a_bitcoin_account_is_required">A bitcoin account is required</string>
<string name="id_a_fully_airgapped_workflow_no">A fully air-gapped workflow, no USB or Bluetooth required</string>
<string name="id_a_funding_fee_of_s_is_applied">A funding fee of %1$s is applied when receiving amounts above your current receive capacity of %2$s</string>
<string name="id_a_funding_fee_of_s_minimum_s_is">A funding fee of %1$s (minimum %2$s) is applied when receiving amounts above your current receive capacity of %3$s</string>
<string name="id_a_funding_fee_of_s_s_is_applied">A funding fee of %1$s (%2$s) is applied when receiving amounts above your current receive capacity %3$s (%4$s)</string>
<string name="id_a_liquid_account_is_required">A liquid account is required</string>
<string name="id_a_new_device_has_been_detected">A new device has been detected, please set it up to start using it.</string>
<string name="id_a_new_transaction_has_just">A new transaction has just arrived in your wallet.</string>
<string name="id_a_newer_version_of_blockstream">A newer version of Blockstream is now available</string>
<string name="id_a_powerful_hardware_wallet_for">A powerful hardware wallet for securing your Bitcoin.</string>
<string name="id_a_screen_lock_must_be_enabled">A screen lock must be enabled from Android settings</string>
<string name="id_a_set_up_funding_fee_of_s_s">A set up funding fee of %1$s (%2$s) will be applied to the received amount.</string>
<string name="id_a_wallet_is_detected_on_this">A wallet is detected on this device:</string>
<string name="id_about">About</string>
<string name="id_accept">Accept</string>
<string name="id_access">Access</string>
<string name="id_access_method_not_supported">Access method not supported</string>
<string name="id_access_wallet_on_a_new_device">Access wallet on a new device</string>
<string name="id_access_your_wallet_to_check">Access your wallet to check your wallet balance and transactions.\n\nSign transactions offline using your Jade.</string>
<string name="id_account">Account</string>
<string name="id_account__asset">Account & Asset</string>
<string name="id_account_address">Account Address</string>
<string name="id_account_archived">Account archived</string>
<string name="id_account_balance">Account Balance</string>
<string name="id_account_extended_public_keys">Account Extended Public Keys</string>
<string name="id_account_for_special_assets">Account for special assets, monitored or authorized by the asset issuer.</string>
<string name="id_account_has_been_archived">Account has been archived</string>
<string name="id_account_has_been_removed">Account has been removed</string>
<string name="id_account_id">Account ID</string>
<string name="id_account_name">Account Name</string>
<string name="id_account_selector">Account selector</string>
<string name="id_account_settings">Account Settings</string>
<string name="id_account_transfer">Account Transfer</string>
<string name="id_account_type">Account Type</string>
<string name="id_accounts">Accounts</string>
<string name="id_accounts_summary">Accounts summary</string>
<string name="id_action_canceled">Action canceled</string>
<string name="id_actions">Actions</string>
<string name="id_add_2fa_account">Add 2FA Account</string>
<string name="id_add_a_note_only_you_can_see_it">Add a note (only you can see it).</string>
<string name="id_add_a_pgp_public_key_to_receive">Add a PGP public key to receive encrypted email and keep your privacy</string>
<string name="id_add_amount">Add Amount</string>
<string name="id_add_amount_optional">Add amount (optional)</string>
<string name="id_add_an_amp_wallet">Add an AMP wallet</string>
<string name="id_add_another_wallet">Add another wallet</string>
<string name="id_add_custom_network_by_qr_code">Add custom network by QR Code</string>
<string name="id_add_custom_network_by_url">Add custom network by URL</string>
<string name="id_add_lightning_shortcut">Add lightning shortcut</string>
<string name="id_add_new_account">Add New Account</string>
<string name="id_add_note">Add Note</string>
<string name="id_add_recipient">Add Recipient</string>
<string name="id_add_wallet">Add Wallet</string>
<string name="id_added_already">Added Already!</string>
<string name="id_adding_a_2fa">adding a 2FA</string>
<string name="id_additional_networks">Additional Networks</string>
<string name="id_additional_security">Additional Security</string>
<string name="id_address">Address</string>
<string name="id_address_1s">Address: %1$s</string>
<string name="id_address_copied_to_clipboard">Address copied to clipboard</string>
<string name="id_address_to_receive">Address to Receive</string>
<string name="id_address_type">Address Type</string>
<string name="id_address_verified">Address verified!</string>
<string name="id_address_was_filled_by_a_payment">Address was filled by a Payment URI</string>
<string name="id_addresses">Addresses</string>
<string name="id_advanced">Advanced</string>
<string name="id_advanced_network_settings">Advanced network settings</string>
<string name="id_advanced_options">Advanced options</string>
<string name="id_advanced_options_for_your_third">Advanced options for your third recovery key</string>
<string name="id_after_2fa_expires_you_can_send">After 2FA expires, you can send funds without your 2FA method or utilize or open source recovery tool.</string>
<string name="id_all">All</string>
<string name="id_all_assets">All Assets</string>
<string name="id_all_coins">(All coins)</string>
<string name="id_all_networks">All networks</string>
<string name="id_all_of_the_accounts_in_your">All of the accounts in your wallet need to be empty before deleting it.</string>
<string name="id_all_the_coins_received_or">All the coins received or created as change.</string>
<string name="id_all_wallets">All wallets</string>
<string name="id_allow_collection">Allow collection</string>
<string name="id_allow_data_collection">Allow data collection</string>
<string name="id_allow_nondefault_connection">Allow Non-Default Connection</string>
<string name="id_allows_you_to_quickly_check">Allows you to quickly check your balance, receive funds or sweep a paper wallet. You can't send funds in watch-only mode.</string>
<string name="id_allows_you_to_sign_transactions">Allows you to sign transactions and validate addresses using Jade's camera</string>
<string name="id_always">Always</string>
<string name="id_always_ask">Always ask</string>
<string name="id_amount">Amount</string>
<string name="id_amount_above_maximum_allowed">Amount above maximum allowed value</string>
<string name="id_amount_below_minimum_allowed">Amount below minimum allowed value</string>
<string name="id_amount_below_the_dust_threshold">Amount below the dust threshold</string>
<string name="id_amount_in_s">Amount in %1$s</string>
<string name="id_amount_must_be_at_least_s">Amount must be at least %1$s</string>
<string name="id_amount_must_be_at_most_s">Amount must be at most %1$s</string>
<string name="id_amount_to_be_refunded">Amount to be refunded</string>
<string name="id_amount_to_receive">Amount to Receive</string>
<string name="id_amp">AMP</string>
<string name="id_amp_account">AMP Account</string>
<string name="id_amp_accounts_allow_you_to_send">AMP accounts allow you to send, receive, and store managed assets issued on the Liquid Network.</string>
<string name="id_amp_accounts_are_only_available">AMP accounts are only available on Liquid wallets. You may be required to provide your account ID to issuers to receive an AMP Asset.</string>
<string name="id_amp_id">AMP ID</string>
<string name="id_amp_wallet">AMP Wallet</string>
<string name="id_an_unidentified_error_occured">An unidentified error occured. The following error log can help you identify the issue:</string>
<string name="id_an_unidentified_error_occurred">An unidentified error occurred. The following error log can help you identify the issue:\n\n%1$s</string>
<string name="id_another_2fa_method_is_already">Another 2FA method is already active. Confirm via 2FA that you authorize this change.</string>
<string name="id_any_wallet_found_will_be">Any wallet found will be displayed here.</string>
<string name="id_app_access">APP ACCESS</string>
<string name="id_app_settings">App Settings</string>
<string name="id_archive">Archive</string>
<string name="id_archive_account">Archive account</string>
<string name="id_archived">Archived</string>
<string name="id_archived_account">Archived Account</string>
<string name="id_archived_accounts">Archived Accounts</string>
<string name="id_archiving">Archiving</string>
<string name="id_are_you_not_receiving_your_2fa">Are you not receiving your 2FA code?</string>
<string name="id_are_you_sure_you_want_to_delete">Are you sure you want to delete the recipient?</string>
<string name="id_are_you_sure_you_want_to_remove">Are you sure you want to remove your Lightning account?</string>
<string name="id_are_you_sure_you_want_to_view">Are you sure you want to view the transaction using %1$s?</string>
<string name="id_as_easy_as_snapping_a_photo">As easy as snapping a photo with your phone. If you have an existing wallet, scan your recovery phrase from settings.</string>
<string name="id_asset">Asset</string>
<string name="id_asset_details">Asset Details</string>
<string name="id_asset_icons_are_missing_try">Asset icons are missing, try reloading them.</string>
<string name="id_asset_id">Asset ID</string>
<string name="id_asset_name">Asset Name</string>
<string name="id_asset_to_buy">Asset to buy</string>
<string name="id_asset_to_sell">Asset to sell</string>
<string name="id_assets">Assets</string>
<string name="id_assets_cannot_be_used_on_bitcoin">Assets cannot be used on Bitcoin</string>
<string name="id_at_least_8_characters_required">At least 8 characters required</string>
<string name="id_attempts_remaining_d">Attempts remaining: %1$d</string>
<string name="id_auth_not_supported">Auth not supported</string>
<string name="id_authenticate">Authenticate</string>
<string name="id_authenticate_address">Authenticate address</string>
<string name="id_authenticate_to_view_the">Authenticate to view the recovery phrase</string>
<string name="id_authenticate_your_jade">Authenticate your Jade</string>
<string name="id_authentication_error_s">Authentication error: %1$s</string>
<string name="id_authentication_failed">Authentication failed</string>
<string name="id_authentication_successful">Authentication Successful</string>
<string name="id_authenticator_app">Authenticator app</string>
<string name="id_authenticator_qr_code">Authenticator QR Code</string>
<string name="id_authenticator_secret_key">Authenticator secret key</string>
<string name="id_auto_logout_timeout">Auto Logout Timeout</string>
<string name="id_auto_logout_timeout_expired">Auto logout timeout expired</string>
<string name="id_autolock_after">Autolock After</string>
<string name="id_available">Available</string>
<string name="id_available_funds_s">Available funds %1$s</string>
<string name="id_back">Back</string>
<string name="id_back_up_now">Back Up Now</string>
<string name="id_back_up_recovery_phrase">Back Up Recovery Phrase</string>
<string name="id_back_up_the_recovery_mnemonic">Back Up the recovery mnemonic and recovery xpub to recover funds from your 2of3 account.</string>
<string name="id_back_up_your_mnemonic_before">Back Up your mnemonic before removing the wallet from this device.</string>
<string name="id_back_up_your_wallet">Back Up Your Wallet</string>
<string name="id_back_up_your_wallet_now">Back Up Your Wallet Now</string>
<string name="id_backup">Backup</string>
<string name="id_be_aware_other_apps_can_read_or">Be aware, other apps can read or change the clipboard</string>
<string name="id_be_sure_your_recovery_phrase_is">Be sure your recovery phrase is backed up before removing this wallet.</string>
<string name="id_before_you_back_up">Before You Back Up</string>
<string name="id_best_price">Best Price</string>
<string name="id_biometric_login_is_disabled">Biometric Login is Disabled</string>
<string name="id_biometric_login_is_enabled">Biometric Login is Enabled</string>
<string name="id_biometrics">Biometrics</string>
<string name="id_biometrics_authentication">Biometrics Authentication</string>
<string name="id_bip39_passphrase">BIP39 Passphrase</string>
<string name="id_bip39_passphrase_login">BIP39 Passphrase login</string>
<string name="id_bip49_accounts_allow_you_to">BIP49 accounts allow you to segregate funds, and to receive on wrapped segwit addresses, thus ensuring the highest backwards compatibility when receiving funds from anyone on the network.</string>
<string name="id_bip84_accounts_allow_you_to">BIP84 accounts allow you to segregate your funds, and to receive on bech32 native segwit addresses. This account type ensures cheaper transactions when sending funds, but not all services support bech32 addresses yet.</string>
<string name="id_bitcoin_and_liquid">Bitcoin and Liquid</string>
<string name="id_bitcoin_denomination">Bitcoin denomination</string>
<string name="id_bitcoin_electrum_server">Bitcoin Electrum server</string>
<string name="id_bitcoin_is_the_worlds_leading">Bitcoin is the world's leading P2P cryptocurrency network. Select to send and receive bitcoin.</string>
<string name="id_bitcoin_price">Bitcoin Price</string>
<string name="id_bitcoin_testnet_and_liquid">Bitcoin Testnet and Liquid Testnet</string>
<string name="id_bitcoin_wallet">Bitcoin wallet.</string>
<string name="id_bitcoin_wallets">Bitcoin wallets</string>
<string name="id_block">block</string>
<string name="id_block_d">Block %1$d</string>
<string name="id_block_height">Block Height</string>
<string name="id_block_height_1d">Block height: %1$d</string>
<string name="id_blocks">blocks</string>
<string name="id_blocks_confirmed">blocks confirmed</string>
<string name="id_blockstream_devices">Blockstream Devices</string>
<string name="id_blockstream_does_not_have">Blockstream does not have access to your wallet backup and will not be able to help you in case you lose it</string>
<string name="id_blockstream_greennsimple_and">Blockstream Green:\nSimple and Secure</string>
<string name="id_blockstream_is_a_noncustodial">Blockstream is a non-custodial wallet</string>
<string name="id_blockstream_needs_access_to">Blockstream needs access to Bluetooth in order to connect to hardware wallets. Location data is not used or kept by Blockstream.</string>
<string name="id_blockstream_store">Blockstream Store</string>
<string name="id_blockstream_supports_both">Blockstream supports both Bitcoin and the Liquid Network.</string>
<string name="id_blockstream_uses_biometric">Blockstream uses biometric authentication to allow easy access to the wallet</string>
<string name="id_blockstream_uses_bluetooth_for">Blockstream uses Bluetooth for communication with hardware wallets</string>
<string name="id_blockstream_uses_bluetooth_to">Blockstream uses Bluetooth to connect to hardware wallets</string>
<string name="id_blockstream_uses_multisig_with">Blockstream uses multisig with one signature generated by your device, and one by Blockstream's servers. Setting up your Two-Factor Authentication enables an extra layer of security for the server-side signature.</string>
<string name="id_bluetooth">Bluetooth</string>
<string name="id_btchip_is_not_set_up_please_set">BTChip is not set up. Please set it up using a desktop client to be able to use it.</string>
<string name="id_buy__sell">Buy / Sell</string>
<string name="id_buy_bitcoin">Buy Bitcoin</string>
<string name="id_buy_btc">Buy BTC</string>
<string name="id_buy_now">Buy Now</string>
<string name="id_buy_s">Buy %1$s</string>
<string name="id_buy_with_s">Buy with %1$s</string>
<string name="id_by_continuing_you_agree_to">By continuing you agree to Blockstream's Terms Of Service and Privacy Policy</string>
<string name="id_by_proceeding_to_the_next_steps">By proceeding to the next steps you agree to the %1$s</string>
<string name="id_by_using_the_blockstream_app">By using the Blockstream app, you agree to the Terms & Conditions and Privacy Policy.</string>
<string name="id_cable">Cable</string>
<string name="id_call">Call</string>
<string name="id_camera_problem">Camera problem</string>
<string name="id_cancel">Cancel</string>
<string name="id_cancel_2fa_reset">Cancel 2FA reset</string>
<string name="id_cancel_a_reset_to_unlock_your">Cancel a reset to unlock your wallet if you recovered access to an old Two-Factor Authentication method.</string>
<string name="id_cancel_twofactor_reset">Cancel Two-Factor reset</string>
<string name="id_cannot_remove_enabled_network">Cannot remove enabled network, please disable it first</string>
<string name="id_cant_connect_to_this_url">Can't connect to this URL</string>
<string name="id_change">Change</string>
<string name="id_change_address">Change address</string>
<string name="id_change_exchange">Change Exchange</string>
<string name="id_change_language_to">Change Language to</string>
<string name="id_change_pin">Change PIN</string>
<string name="id_change_speed">Change speed</string>
<string name="id_changing_reference_exchange">Changing reference exchange rate will reset your 2FA threshold to 0. Remember to adjust the 2FA threshold after spending.</string>
<string name="id_channel_closure_initiated_you">Channel closure initiated. You can sweep your funds after the transaction is confirmed</string>
<string name="id_cheaper_and_more_private">Cheaper and more private singlesig option. Addresses are Bech32m.</string>
<string name="id_cheaper_singlesig_option">Cheaper singlesig option. Addresses are Native SegWit Bech32.</string>
<string name="id_check_device">Check Device</string>
<string name="id_check_for_updates">Check for updates</string>
<string name="id_check_for_updates_on_startup">Check for updates on startup</string>
<string name="id_check_our_6_easy_steps_to_be">Check our 6 easy steps to be able to send and receive AMP assets.</string>
<string name="id_check_our_store">Check our store</string>
<string name="id_check_transaction_details">Check transaction Details</string>
<string name="id_check_your_backup">Check your backup</string>
<string name="id_check_your_device">Check your device</string>
<string name="id_choose">Choose</string>
<string name="id_choose_a_name_for_your_new">Choose a name for your new Blockstream Green wallet.</string>
<string name="id_choose_a_name_for_your_wallet">Choose a name for your wallet</string>
<string name="id_choose_a_swap_option">Choose a Swap Option</string>
<string name="id_choose_a_usb_or_bluetooth">Choose a USB or Bluetooth connection on Jade after verifying your recovery phrase</string>
<string name="id_choose_bluetooth_connection_on">Choose Bluetooth connection on Jade after verifying your recovery phrase</string>
<string name="id_choose_method_to_authorize_the">Choose method to authorize the action</string>
<string name="id_choose_recovery_phrase_length">Choose recovery phrase length</string>
<string name="id_choose_security_policy">Choose Security Policy</string>
<string name="id_choose_the_electrum_servers_you">Choose the Electrum servers you trust</string>
<string name="id_choose_the_security_policy_that">Choose the security policy that matches your wallet.</string>
<string name="id_choose_the_security_policy_you">Choose the security policy you want to restore this wallet on.</string>
<string name="id_choose_this_version_to_connect">Choose this version to connect to your Blockstream Jade with both a usb cable and wireless</string>
<string name="id_choose_this_version_to_disable">Choose this version to disable all radio connections on your Blockstream Jade. This will make your Blockstream Jade incompatible with iOS devices</string>
<string name="id_choose_twofactor_authentication">Choose Two-Factor authentication method</string>
<string name="id_choose_watchonly">Choose Watch-Only</string>
<string name="id_choose_which_account_you_want">Choose which account you want to receive funds in.</string>
<string name="id_choose_your_network">Choose Your Network</string>
<string name="id_clear">Clear</string>
<string name="id_clear_cache">Clear cache</string>
<string name="id_click_to_copy">Click to copy</string>
<string name="id_click_to_receive_an_email_with">Click to receive an email with your encrypted recovery data.</string>
<string name="id_close">Close</string>
<string name="id_close_channel">Close Channel</string>
<string name="id_closed_channel">Closed Channel</string>
<string name="id_closing_transaction_id">Closing Transaction ID</string>
<string name="id_code">Code</string>
<string name="id_coin">Coin</string>
<string name="id_coins">Coins</string>
<string name="id_coins_for_which_2fa_protection">Coins for which 2FA protection is expired.</string>
<string name="id_coins_locked">Coins locked</string>
<string name="id_coins_protected_by_the_legacy">Coins protected by the legacy script recoverable with your nlocktimes.zip file.</string>
<string name="id_coins_protected_by_the_new">Coins protected by the new script with embedded 2FA expiry through CheckSequenceVerify.</string>
<string name="id_coins_received_or_created">Coins received or created before SegWit was activated.</string>
<string name="id_coins_unlocked">Coins unlocked</string>
<string name="id_coins_whose_asset_and_amount">Coins whose asset and amount are publicly visible.</string>
<string name="id_coins_with_a_value_lower_than">Coins with a value lower than 1092 satoshis that are uneconomic to spend; these coins can be generated by your wallet as change or sent to you by third parties trying to spam or deanonymize your wallet.</string>
<string name="id_collapse_sidebar">Collapse sidebar</string>
<string name="id_coming_soon">Coming Soon!</string>
<string name="id_comment">Comment</string>
<string name="id_communication_timed_out_make">Communication timed out. Make sure the device is powered on and try again.</string>
<string name="id_compare_security_levels">Compare Security Levels</string>
<string name="id_completed">Completed</string>
<string name="id_confidential">Confidential</string>
<string name="id_confidential_transaction">Confidential Transaction</string>
<string name="id_confirm">Confirm</string>
<string name="id_confirm_action">Confirm action</string>
<string name="id_confirm_by_typing_the_wallet">Confirm by typing the wallet name</string>
<string name="id_confirm_code">Confirm Code</string>
<string name="id_confirm_coin_selection">Confirm Coin Selection</string>
<string name="id_confirm_on_your_device">Confirm on your device</string>
<string name="id_confirm_on_your_jade">Confirm on your Jade</string>
<string name="id_confirm_passphrase">Confirm passphrase</string>
<string name="id_confirm_refund">Confirm Refund</string>
<string name="id_confirm_swap">Confirm swap</string>
<string name="id_confirm_transaction">Confirm transaction</string>
<string name="id_confirm_transaction_details_on">Confirm transaction details on your hardware wallet</string>
<string name="id_confirm_update_on_your_jade">Confirm update on your Jade</string>
<string name="id_confirm_version_on_jade">Confirm version on Jade</string>
<string name="id_confirm_via_2fa_that_you">Confirm via 2FA that you authorize this change.</string>
<string name="id_confirm_your_new_pin">Confirm your new PIN</string>
<string name="id_confirmation_in_d_blocks">Confirmation in %1$d blocks</string>
<string name="id_confirmation_time">Confirmation Time</string>
<string name="id_confirmations">Confirmations</string>
<string name="id_confirming_your_transaction">Confirming your transaction</string>
<string name="id_congratulations">Congratulations!</string>
<string name="id_connect_a_different_hardware">Connect a different Hardware Device</string>
<string name="id_connect_hardware_wallet">Connect hardware wallet</string>
<string name="id_connect_jade">Connect Jade</string>
<string name="id_connect_jade_with_a_usb_cable">Connect Jade with a USB cable to download the latest firmware update</string>
<string name="id_connect_through_a_proxy">Connect Through a Proxy</string>
<string name="id_connect_usb_cable_or_enable">Connect USB cable or enable Bluetooth</string>
<string name="id_connect_using_usb_or_bluetooth">Connect using USB or Bluetooth</string>
<string name="id_connect_via_qr">Connect via QR</string>
<string name="id_connect_with_bluetooth">Connect with Bluetooth</string>
<string name="id_connect_with_tor">Connect with Tor</string>
<string name="id_connect_your_jade_to_use_it">Connect your Jade to use it with Blockstream</string>
<string name="id_connect_your_ledger_to_use_it">Connect your Ledger to use it in Blockstream</string>
<string name="id_connected_peers">Connected Peers</string>
<string name="id_connected_to_jade">Connected to Jade</string>
<string name="id_connected_wallets">Connected wallets</string>
<string name="id_connecting">Connecting…</string>
<string name="id_connecting_through_tor">Connecting through Tor</string>
<string name="id_connecting_to_1d">Connecting to %1$d</string>
<string name="id_connecting_to_a_trusted_node">Connecting to a trusted node through Tor requires enabling proxy settings in the app before logging in and a Socks5 proxy (Orbot app for Android)</string>
<string name="id_connecting_to_peers">Connecting to peers...</string>
<string name="id_connecting_to_tor_onion_nodes">Connecting to Tor (.onion) nodes allows maximum privacy and security. Press "OK" to continue.</string>
<string name="id_connecting_to_your_device">Connecting to your device</string>
<string name="id_connection">Connection</string>
<string name="id_connection_attempt_to_s">Connection attempt to: %1$s</string>
<string name="id_connection_blocked">Connection Blocked</string>
<string name="id_connection_failed">Connection failed</string>
<string name="id_connection_to_device_failed">Connection to device failed! Move closer to the device and try again.</string>
<string name="id_contact_support">Contact Support</string>
<string name="id_contact_support_at_s_or_visit_s">Contact support at %1$s or visit %2$s</string>
<string name="id_contact_us">Contact Us</string>
<string name="id_continue">Continue</string>
<string name="id_continue_as_diy">Continue as DIY</string>
<string name="id_continue_with_1s">Continue with %1$s</string>
<string name="id_continue_with_jade">Continue with Jade</string>
<string name="id_convenient_spending">Convenient spending</string>
<string name="id_copied_to_clipboard">Copied to clipboard</string>
<string name="id_copy">Copy</string>
<string name="id_copy_address">Copy address</string>
<string name="id_copy_amp_id">Copy AMP ID</string>
<string name="id_copy_details">Copy details</string>
<string name="id_copy_device_id">Copy Device ID</string>
<string name="id_copy_id">Copy ID</string>
<string name="id_copy_raw_transaction">Copy raw transaction</string>
<string name="id_copy_signature">Copy Signature</string>
<string name="id_copy_support_id">Copy support ID</string>
<string name="id_copy_swap_proposal">Copy Swap Proposal</string>
<string name="id_copy_to_clipboard">Copy To Clipboard</string>
<string name="id_copy_transaction_id">Copy transaction ID</string>
<string name="id_copy_unblinded_link">Copy unblinded link</string>
<string name="id_copy_unblinding_data">Copy unblinding data</string>
<string name="id_copy_uri">Copy URI</string>
<string name="id_copy_url">Copy URL</string>
<string name="id_copy_xpub">Copy xpub</string>
<string name="id_copying">Copying...</string>
<string name="id_correct_order">correct order</string>
<string name="id_could_not_recognized_qr_code">Could not recognized QR code</string>
<string name="id_could_not_recognized_the_uri">Could not recognized the URI</string>
<string name="id_country">Country</string>
<string name="id_create">Create</string>
<string name="id_create_a_bitcoin_2fa_protected">Create a Bitcoin 2FA protected account</string>
<string name="id_create_a_liquid_2fa_protected">Create a Liquid 2FA protected account if you need to secure more assets, other than Bitcoin.</string>
<string name="id_create_a_new_proposal">Create a New Proposal</string>
<string name="id_create_a_new_swap">Create a New Swap</string>
<string name="id_create_a_new_wallet_to_begin">Create a new wallet to begin your bitcoin journey.</string>
<string name="id_create_a_pin">Create a PIN</string>
<string name="id_create_a_pin_to_access_your">Create a PIN to access your wallet</string>
<string name="id_create_a_wallet_for_bitcoin">Create a wallet for Bitcoin, Liquid or Testnet</string>
<string name="id_create_account">Create Account</string>
<string name="id_create_an_amp_account">Create an AMP Account</string>
<string name="id_create_invoice">Create Invoice</string>
<string name="id_create_new_account">Create New Account</string>
<string name="id_create_new_wallet">Create New Wallet</string>
<string name="id_create_temporary_wallet">Create temporary wallet</string>
<string name="id_create_wallet">Create Wallet</string>
<string name="id_create_your_first_account_to">Create your first account to receive funds.</string>
<string name="id_creating_wallet">Creating wallet…</string>
<string name="id_creating_your_s_account">Creating your %1$s account...</string>
<string name="id_csv">Csv</string>
<string name="id_currency">Currency</string>
<string name="id_current_language">Current language</string>
<string name="id_current_version">Current version</string>
<string name="id_custom">Custom</string>
<string name="id_custom_network_added_enable_it">Custom network added, enable it in the network settings</string>
<string name="id_custom_network_not_found">Custom network not found</string>
<string name="id_custom_network_with_this_name">Custom network with this name already present</string>
<string name="id_custom_server_settings">Custom Server Settings</string>
<string name="id_custom_servers_and_validation">Custom servers and validation</string>
<string name="id_customize_2fa_expiration_of">Customize 2FA expiration of your coins</string>
<string name="id_d6_confirmations">%1$d/6 confirmations</string>
<string name="id_d_asset_in_this_account">%1$d asset in this account</string>
<string name="id_d_assets">%1$d assets</string>
<string name="id_d_assets_in_this_account">%1$d assets in this account</string>
<string name="id_d_assets_in_total">%1$d assets in total</string>
<string name="id_d_coins_selected">(%1$d coins selected)</string>
<string name="id_d_words">%1$d words</string>
<string name="id_data_directory">Data directory</string>
<string name="id_data_not_available">Data not available</string>
<string name="id_date">Date</string>
<string name="id_day">day</string>
<string name="id_days">days</string>
<string name="id_days_remaining_s">Days remaining: %1$s</string>
<string name="id_decoding_error_try_again_by">Decoding error: try again by scanning the QR code with Jade</string>
<string name="id_default_custom_fee_rate">Default custom fee rate</string>
<string name="id_default_transaction_priority">Default transaction priority</string>
<string name="id_delete">Delete</string>
<string name="id_delete_credentials">Delete credentials</string>
<string name="id_delete_permanently_your_wallet">Delete permanently your wallet from the Blockstream database. You will never be able to log in to it thereafter.</string>
<string name="id_delete_s_twofactor">Delete %1$s Two-Factor</string>
<string name="id_delete_wallet">Delete Wallet</string>
<string name="id_deleting_your_pin_will_remove">Deleting your PIN will remove wallet access permanently unless you have your mnemonic available. Press "OK" to continue.</string>
<string name="id_denomination">Denomination</string>
<string name="id_denomination__exchange_rate">Denomination & Exchange Rate</string>
<string name="id_deposit">Deposit</string>
<string name="id_description">Description</string>
<string name="id_descriptor">Descriptor</string>
<string name="id_destination_public_key">Destination Public Key</string>
<string name="id_details">Details</string>
<string name="id_device">Device</string>
<string name="id_device_access_using_faceid">Device access using FaceID.</string>
<string name="id_device_access_using_touchid">Device access using TouchID.</string>
<string name="id_devices">Devices</string>
<string name="id_different_passphrases_generate">Different passphrases generate new wallets!\n\nRemember you can only restore this wallet with both your recovery phrase and the passphrase.</string>
<string name="id_digital_wallets">Digital Wallets</string>
<string name="id_disable">Disable</string>
<string name="id_disable_authenticator">Disable Authenticator</string>
<string name="id_disable_lightning">Disable Lightning</string>
<string name="id_disable_notifications">Disable Notifications</string>
<string name="id_disable_pin_access">Disable PIN access</string>
<string name="id_disable_pin_access_for_this">Disable PIN access for this wallet on all devices</string>
<string name="id_disable_s_twofactor">Disable %1$s Two-Factor Authentication</string>
<string name="id_disabled">Disabled</string>
<string name="id_disabling">Disabling...</string>
<string name="id_disconnect">Disconnect</string>
<string name="id_display_values_in_s_and">Display values in %1$s and exchange rate in %2$s using %3$s</string>
<string name="id_displays_the_progress_of_spv">Displays the progress of SPV synchronization</string>
<string name="id_dispute_twofactor_reset">Dispute Two-Factor reset</string>
<string name="id_disputed">Disputed</string>
<string name="id_distributed_under_the_s_see">Distributed under the %1$s, see LICENSE for more information or visit %2$s</string>
<string name="id_do_you_have_the_backup">Do you have the backup?</string>
<string name="id_do_you_want_to_enable_tor_to">Do you want to enable Tor to connect to the PIN oracle server?</string>
<string name="id_domain">Domain</string>
<string name="id_done">Done</string>
<string name="id_dont_ask_me_again">Don't ask me again</string>
<string name="id_dont_ask_me_again_for_this">Don't ask me again for this oracle</string>
<string name="id_dont_collect_data">Don't collect data</string>
<string name="id_dont_have_a_jade">Don't have a Jade?</string>
<string name="id_dont_have_a_jade_check_our_store">Don't have a Jade? Check our store</string>
<string name="id_dont_have_one_buy_a_jade">Don't have one? Buy a Jade</string>
<string name="id_dont_lose_access_to_your_funds">Don't lose access to your funds.</string>
<string name="id_dont_show_this_again">Don't show this again</string>
<string name="id_dont_store_your_recovery_phrase">Don't store your recovery phrase on your phone, computer, or any online services.</string>
<string name="id_dont_take_screenshots_of_your">Don't take screenshots of your recovery phrase!</string>
<string name="id_double_check_spv_with_other">Double check SPV with other servers</string>
<string name="id_double_spend">double spend</string>
<string name="id_double_spend_by">Double spend by</string>
<string name="id_download_finished">Download finished</string>
<string name="id_dust">Dust</string>
<string name="id_edit">Edit</string>
<string name="id_edit_fee">Edit Fee</string>
<string name="id_edit_note">Edit Note</string>
<string name="id_electrum_server_gap_limit">Electrum Server Gap Limit</string>
<string name="id_email">Email</string>
<string name="id_email_address">email address</string>
<string name="id_emergency_recovery_phrase">Emergency Recovery Phrase Restore</string>
<string name="id_empty">Empty</string>
<string name="id_empty_lightning_account">Empty Lightning Account</string>
<string name="id_enable">Enable</string>
<string name="id_enable_2fa">Enable 2FA</string>
<string name="id_enable_2fa_call_method">Enable 2FA Call method</string>
<string name="id_enable_an_extra_layer_of">Enable an extra layer of security when accessing your watch-only.</string>
<string name="id_enable_background_payment">Enable background payment</string>
<string name="id_enable_bluetooth">Enable Bluetooth</string>
<string name="id_enable_bluetooth_from_ios">Enable Bluetooth from iOS settings to continue</string>
<string name="id_enable_bluetooth_from_system">Enable bluetooth from system settings</string>
<string name="id_enable_custom_networks_debug">Enable custom networks debug options</string>
<string name="id_enable_email_notifications_to">Enable email notifications to change nlocktime</string>
<string name="id_enable_experimental_features">Enable Experimental Features</string>
<string name="id_enable_face_id">Enable Face ID</string>
<string name="id_enable_faceid">Enable FaceID</string>
<string name="id_enable_lightning">Enable Lightning</string>
<string name="id_enable_limited_usage_data">Enable limited usage data collection</string>
<string name="id_enable_location_services">Enable location services</string>
<string name="id_enable_notifications">Enable Notifications</string>
<string name="id_enable_or_change_your_pin_to">Enable or change your PIN to quickly access your wallet</string>
<string name="id_enable_pin_before_disabling_s">Enable PIN before disabling %1$s</string>
<string name="id_enable_pin_to_protect_your">Enable PIN to protect your wallet</string>
<string name="id_enable_push_notifications_for">Enable push notifications for seamless lightning payments. No need to keep your app open to receive.</string>
<string name="id_enable_spv">Enable SPV</string>
<string name="id_enable_spv_and_modify_spv">Enable SPV and modify SPV settings</string>
<string name="id_enable_testnet">Enable Testnet</string>
<string name="id_enable_testnet_in_app_settings">Enable testnet in app settings to use Jade</string>
<string name="id_enable_tls">Enable TLS</string>
<string name="id_enable_tls_connection">Enable TLS connection</string>
<string name="id_enable_tor">Enable Tor</string>
<string name="id_enable_touch_id">Enable Touch ID</string>
<string name="id_enable_touchid">Enable TouchID</string>
<string name="id_enable_twofactor_authentication">Enable Two-Factor Authentication to protect your wallet from unauthorized transactions or changes to critical security settings</string>
<string name="id_enabled">Enabled</string>
<string name="id_enabled_1s">Enabled: %1$s</string>
<string name="id_enabling">Enabling...</string>
<string name="id_encryption_passphrase">Encryption passphrase</string>
<string name="id_enhance_security">Enhance Security</string>
<string name="id_enhanced_privacy">Enhanced Privacy</string>
<string name="id_ensure_your_app_is_up_to_date">Ensure your app is up to date.</string>
<string name="id_enter">Enter</string>
<string name="id_enter_a_pgp_public_key_to_have">Enter a PGP public key to have emails encrypted for better privacy.</string>
<string name="id_enter_a_private_key_to_sweep">Enter a private key to sweep into this wallet</string>
<string name="id_enter_a_valid_onion_or_ip">Enter a valid .onion or IP address (.onion preferred)</string>
<string name="id_enter_a_valid_username">Enter a valid username</string>
<string name="id_enter_amount_in">Enter amount in</string>
<string name="id_enter_an_address">Enter an address</string>
<string name="id_enter_an_address_or_invoice">Enter an address or invoice</string>
<string name="id_enter_an_address_or_sweep_paper">Enter an address or sweep paper wallet</string>
<string name="id_enter_and_confirm_a_unique_pin">Enter and confirm a unique PIN that will be entered to unlock Jade.</string>
<string name="id_enter_new_email">Enter new email</string>
<string name="id_enter_phone_number">Enter phone number</string>
<string name="id_enter_pin">Enter PIN</string>
<string name="id_enter_pin_on_jade">Enter PIN on Jade</string>
<string name="id_enter_the_email_for_which_you">Enter the email for which you want to delete a dispute request</string>
<string name="id_enter_the_matching_words">Enter The Matching Words</string>
<string name="id_enter_the_pin_for_your_hardware">Enter the PIN for your hardware wallet</string>
<string name="id_enter_your_12_24_or_27_words">Enter your 12, 24 or 27 words recovery phrase</string>
<string name="id_enter_your_24_or_27_words">Enter your 24 or 27 words recovery phrase</string>
<string name="id_enter_your_27_words_recovery">Enter your 27 words recovery phrase</string>
<string name="id_enter_your_6digit_pin_to_access">Enter your 6-digit PIN to Access your Wallet</string>
<string name="id_enter_your_code">Enter your code</string>
<string name="id_enter_your_email_address">Enter your email address</string>
<string name="id_enter_your_pin">Enter Your PIN</string>
<string name="id_enter_your_pin_on_jade_to_unlock">Enter your PIN on Jade to Unlock</string>
<string name="id_enter_your_recovery_phrase">Enter your recovery phrase</string>
<string name="id_enter_your_s_wallet_mnemonic">Enter your %1$s wallet mnemonic</string>
<string name="id_enter_your_wallet_mnemonic">Enter your wallet mnemonic</string>
<string name="id_enter_your_xpub">Enter your xpub</string>
<string name="id_enter_your_xpub_to_add_a">Enter your xPub to add a watch-only wallet where you can receive funds and check your balance without importing your private keys.</string>
<string name="id_enter_yournrecovery_phrase">Enter your\nRecovery Phrase</string>
<string name="id_entity">Entity</string>
<string name="id_ephemeral_wallets">Ephemeral wallets</string>
<string name="id_error">Error</string>
<string name="id_error_logging_in_with_hardware">Error logging in with Hardware Wallet</string>
<string name="id_error_nfc_tag_not_writable">Error: NFC tag not writable</string>
<string name="id_error_nfc_tag_too_small">Error: NFC tag too small</string>
<string name="id_error_passphrases_do_not_match">Error: passphrases do not match</string>
<string name="id_error_setting_fee_rate">Error setting Fee Rate</string>
<string name="id_establishing_session">Establishing session</string>
<string name="id_estimated_blocks_until">Estimated blocks until confirmation: %1$d</string>
<string name="id_everything_you_need_to_take">Everything you need to take control of your bitcoin.</string>
<string name="id_example_89014283334011612858333">Example: 8.90.14.2:8333,40.116.12.85:8333</string>
<string name="id_exchange">Exchange</string>
<string name="id_exchange_rate">Exchange Rate</string>
<string name="id_existing_recovery_phrase">Existing recovery phrase</string>
<string name="id_existing_wallets">Existing Wallets</string>
<string name="id_exit_guide">Exit Guide</string>
<string name="id_expand_sidebar">Expand sidebar</string>
<string name="id_experimental">Experimental</string>
<string name="id_experimental_feature">Experimental Feature</string>
<string name="id_experimental_features_might">Experimental features might change, break, or be discontinued at any time, so you agree to use them at your own risk.</string>
<string name="id_expiration">Expiration</string>
<string name="id_explore_your_wallet">Explore Your Wallet</string>
<string name="id_export">Export</string>
<string name="id_export_lightning_key">Export Lightning Key</string>
<string name="id_export_lightning_key_to">Export Lightning Key to Blockstream</string>
<string name="id_export_transactions_to_csv_file">Export transactions to CSV file</string>
<string name="id_export_xpub">Export Xpub</string>
<string name="id_exports_an_accounts_extended">Exports an account's extended public key (xPub/yPub/zPub) to view as a watch-only</string>
<string name="id_extended_public_key">Extended Public Key</string>
<string name="id_extended_public_keys">Extended Public Keys</string>
<string name="id_face_id">Face ID</string>
<string name="id_faceid">FaceID</string>
<string name="id_failed">Failed</string>
<string name="id_failed_to_load_asset_icons">Failed to load asset icons</string>
<string name="id_failed_to_load_asset_registry">Failed to Load Asset Registry</string>
<string name="id_fast">Fast</string>
<string name="id_fast_transactions_on_the">Fast transactions on the Lightning Network, powered by Greenlight.</string>
<string name="id_faster_more_confidential">Faster, more confidential Bitcoin transactions</string>
<string name="id_fastest">Fastest</string>
<string name="id_feature_unavailable_for_liquid">Feature unavailable for Liquid accounts.</string>
<string name="id_feature_unavailable_in_the_uk">Feature unavailable in the UK. Coming soon.</string>
<string name="id_fee">Fee</string>
<string name="id_fee_amount_size_fee_rate">Fee Amount, Size, Fee Rate</string>
<string name="id_fee_rate">Fee rate</string>
<string name="id_fee_rate_is_above_maximum">Fee rate is above maximum accepted fee rate.</string>
<string name="id_fee_rate_is_below_minimum">Fee rate is below minimum accepted fee rate</string>
<string name="id_fee_rate_must_be_at_least_s">Fee rate must be at least %1$s satoshi/vbyte.</string>
<string name="id_fee_rate_must_be_at_most_s">Fee rate must be at most %1$s satoshi/vbyte.</string>
<string name="id_fee_rate_s">Fee rate: %1$s</string>
<string name="id_fee_s__s">Fee: %1$s / %2$s</string>
<string name="id_feedback">Feedback</string>
<string name="id_fees_are_collected_by_bitcoin">Fees are collected by bitcoin miners, not Blockstream.</string>
<string name="id_fees_are_not_collected_by">Fees are not collected by Blockstream, but by Bitcoin miners, Liquid functionaries, and Lightning nodes, who include or secure transactions onto the blockchain, granting 24/7 worldwide service availability.\n\nBecause blockchain space, or lightning network liquidity, is limited, network operators will give priority to transactions paying higher fees, especially in periods of intense traffic.</string>
<string name="id_fees_are_too_low">Fees are too low</string>
<string name="id_fetching_new_firmware">Fetching new firmware</string>
<string name="id_filters">Filters</string>
<string name="id_finishing_up">Finishing Up</string>
<string name="id_firmware">Firmware</string>
<string name="id_firmware_up_to_date">Firmware up to date</string>
<string name="id_firmware_update">Firmware Update</string>
<string name="id_firmware_update_completed">Firmware update completed</string>
<string name="id_firmware_update_failed">Firmware update failed</string>
<string name="id_firmware_upgrade">Firmware Upgrade</string>
<string name="id_firmware_version_s">Firmware Version: %1$s</string>
<string name="id_follow_the_instructions_of_your">Follow the instructions of your hardware wallet before continuing.</string>
<string name="id_follow_the_instructions_on_jade">Follow the instructions on Jade</string>
<string name="id_follow_the_instructions_on_your">Follow the instructions on your device.</string>
<string name="id_for_ease_of_use">For Ease of Use</string>
<string name="id_for_help_visit">For help visit help.blockstream.com\nTo unsubscribe turn off SMS 2FA from the app.\nStandard messages and data rates may apply.</string>
<string name="id_for_higher_security">For Higher Security</string>
<string name="id_for_investors">For investors</string>
<string name="id_for_long_term_storage">For long term storage</string>
<string name="id_for_more_information">For more information,</string>
<string name="id_for_more_information_read_more">For more information, Read More</string>
<string name="id_for_most_users">For most users</string>
<string name="id_format_is_not_supported_or_no">Format is not supported or no data was found.</string>
<string name="id_found_via_bluetooth">Found via Bluetooth</string>
<string name="id_from">From</string>
<string name="id_fully_airgapped_with_qr">Fully air-gapped with QR</string>
<string name="id_funding_transaction_id">Funding Transaction Id</string>
<string name="id_funds_received">Funds Received!</string>
<string name="id_funds_received_in_this">Funds received in this transaction are not confidential.</string>
<string name="id_general">General</string>
<string name="id_generate">Generate</string>
<string name="id_generate_a_new_recovery_phrase">Generate a new recovery phrase as your third recovery key.</string>
<string name="id_generate_amp_id">Generate AMP ID</string>
<string name="id_generate_new_address">Generate New Address</string>
<string name="id_genuine_check">Genuine Check</string>
<string name="id_genuine_check_canceled">Genuine check canceled</string>
<string name="id_genuine_check_is_mandatory_for">Genuine Check is mandatory for first time Jade connection. This way we make sure that you have a safe Jade.</string>
<string name="id_get_code">Get Code</string>
<string name="id_get_id">Get ID</string>
<string name="id_get_jade">Get Jade</string>
<string name="id_get_started">Get Started</string>
<string name="id_get_support">Get Support</string>
<string name="id_get_watchonly_info_from_jade">Get watch-only info from Jade</string>
<string name="id_get_watchonly_information_from">Get watch-only information from hardware signer</string>
<string name="id_give_bluetooth_permissions">Give Bluetooth Permissions</string>
<string name="id_give_us_your_feedback">Give us your feedback</string>
<string name="id_go_to_account">Go to Account</string>
<string name="id_go_to_receive_to_get_your">Go to Receive to get your Account ID.</string>
<string name="id_go_to_wallet">Go to Wallet</string>
<string name="id_got_it_written_down_great_you">Got it written down? Great. You can enter it here. Don't lose it, it'll stay the same.</string>
<string name="id_grant_blockstream_bluetooth">Grant Blockstream Bluetooth permission</string>
<string name="id_great_you_successfully_backed">Great! You successfully backed up your recovery phrase.</string>
<string name="id_green_is_now_the_blockstream_app">Green is now the Blockstream app</string>
<string name="id_green_is_now_thenblockstream_app">Green is now the\nBlockstream app</string>
<string name="id_green_logo">Green Logo</string>
<string name="id_green_mnemonic_qr_code">Green Mnemonic QR Code</string>
<string name="id_green_needs_the_master_blinding">Green needs the master blinding key from Jade</string>
<string name="id_green_only_supports_one_pin_for">Green only supports one PIN for each network. New wallets will require a mnemonic every time you log in.</string>
<string name="id_green_only_supports_one_pin_per">Green only supports one PIN per network. To set a PIN for this wallet, disable the PIN on your original wallet first.</string>
<string name="id_hardware">Hardware</string>
<string name="id_hardware_devices">Hardware Devices</string>
<string name="id_hardware_security">Hardware Security</string>
<string name="id_hardware_wallet">Hardware wallet</string>
<string name="id_hardware_wallet_support_for">Hardware wallet support for Confidential Transactions coming soon.</string>
<string name="id_hardware_wallets">Hardware wallets</string>
<string name="id_hash">Hash</string>
<string name="id_hash_s">Hash: %1$s</string>
<string name="id_help">Help</string>
<string name="id_help_us_improve">Help Us Improve</string>
<string name="id_helpblockstreamcom">help.blockstream.com</string>
<string name="id_here">here</string>
<string name="id_heres_the_proof_of_ownership_of">Here's the proof of ownership of the address</string>
<string name="id_hex">HEX</string>
<string name="id_hide_advanced_options">Hide advanced options</string>
<string name="id_hide_amounts">Hide amounts</string>
<string name="id_hide_assets">Hide assets</string>
<string name="id_hide_details">Hide details</string>
<string name="id_high">High</string>
<string name="id_hold_button_to_send">Hold button to Send</string>
<string name="id_hold_the_button_on_the_bottom">Hold the button on the bottom of Jade until it boots up</string>
<string name="id_hold_the_green_button_on_the">Hold the green button on the bottom of Jade until it boots up</string>
<string name="id_hold_your_nfc_tag_close_to_the">Hold your NFC tag close to the device</string>
<string name="id_home">Home</string>
<string name="id_hour">hour</string>
<string name="id_hours">hours</string>
<string name="id_how_do_you_want_to_secure_your">How do you want to secure your funds?</string>
<string name="id_how_to_stop_this_reset">How to Stop This Reset</string>
<string name="id_i_agree_to_the">I agree to the</string>
<string name="id_i_agree_to_the_terms_of_service">I agree to the Terms of Service and Privacy Policy</string>
<string name="id_i_confirm_i_have_read_and">I confirm I have read and understood the above message</string>
<string name="id_i_confirm_i_want_to_delete_this">I confirm I want to delete this wallet</string>
<string name="id_i_confirm_i_want_to_disable_pin">I confirm I want to disable PIN access on all my devices.</string>
<string name="id_i_forgot_my_password">I forgot my password</string>
<string name="id_i_fund_via_an_onchain_bitcoin">(i) Fund via an onchain bitcoin transaction</string>
<string name="id_i_lost_my_2fa">I lost my 2FA</string>
<string name="id_i_lost_my_2fa_method">I lost my 2FA method</string>
<string name="id_i_secured_the_mnemonic_and_i">I secured the mnemonic and I have read the ToS</string>
<string name="id_i_typed_all_my_recovery_phrase">I typed all my recovery phrase why can't I continue?</string>
<string name="id_i_understand_amounts_could_be">I understand amounts could be incorrect</string>
<string name="id_i_understand_that_asking_for">I understand that asking for support through Tor will reduce my anonymity</string>
<string name="id_id">ID</string>
<string name="id_ideal_for_longterm_bitcoin">Ideal for long-term bitcoin storage</string>
<string name="id_ideal_for_small_amounts_of">Ideal for small amounts of bitcoin</string>
<string name="id_if_for_any_reason_you_cant">If for any reason you can't login into your wallet, you can recover your recovery phrase using your PIN/Biometrics.</string>
<string name="id_if_jade_is_already_set_up">If Jade is already set up, choose QR Mode > QR PIN Unlock > Continue > Enter your PIN</string>
<string name="id_if_you_agree_blockstream_will">If you agree, Blockstream will collect limited usage data to optimize the user experience. No sensitive user or wallet info is collected.</string>
<string name="id_if_you_are_the_rightful_owner">If you are the rightful owner of this wallet, and you still possess one of its active 2FA methods, cancel the reset to be able to spend and empty this wallet.</string>
<string name="id_if_you_did_not_change_your">If you did not change your oracle settings on Jade, do not proceed and contact Blockstream support.</string>
<string name="id_if_you_did_not_request_the">If you did not request the reset, but you cannot cancel the reset process because you can't access any existing Two-Factor Authorization methods, dispute this 2FA reset. This will permanently block your wallet, but you can undo this action.</string>
<string name="id_if_you_forget_it_or_lose_it">If you forget it or lose it, your funds are going to be lost as well.</string>
<string name="id_if_you_forget_your_pin_you_will">If you forget your PIN, you will need to restore with your recovery phrase</string>
<string name="id_if_you_have_access_to_a">If you have access to a Two-Factor method for this wallet, cancel the reset to be able to spend and receive immediately, or wait %1$d days.</string>
<string name="id_if_you_have_some_coins_on_the">If you have some coins on the legacy address type, and you won't spend them shortly, you might need to setup an email and receive your recovery transactions to be sure you are always in control of your funds.</string>
<string name="id_if_you_initiated_the_2fa_reset">If you initiated the 2FA reset dispute by mistake, you can undo it and set the wallet back to 2FA reset state.</string>
<string name="id_import">Import</string>
<string name="id_import_a_multisig_shield_wallet">Import a Multisig Shield wallet created on Blockstream Green.</string>
<string name="id_import_a_wallet_created_on">Import a wallet created on Blockstream Green.</string>
<string name="id_import_a_wallet_created_with">Import a wallet created with other apps. This option only works with singlesig wallets using BIP39 mnemonics, and following the BIP44, BIP49, or BIP84 derivations.</string>
<string name="id_import_from_file">Import from file</string>
<string name="id_import_pubkey">Import PubKey</string>
<string name="id_import_signed_transaction">Import signed transaction</string>
<string name="id_in_a_watchonly_wallet_your">In a watch-only wallet, your private keys remain offline for maximum security. This allows you to safely monitor your balance, history and create addresses on the go. To send, transactions are signed with your offline keys.</string>
<string name="id_in_progress">In Progress</string>
<string name="id_inbound_liquidity">Inbound Liquidity</string>
<string name="id_incoming">Incoming</string>
<string name="id_inconsistent_data_provided_for">Inconsistent data provided for enabling Authenticator 2FA</string>
<string name="id_increase_fee">Increase fee</string>
<string name="id_increase_inbound_capacity_now">Increase inbound capacity now</string>
<string name="id_increase_qr_size">Increase QR Size</string>
<string name="id_increase_security">Increase Security</string>
<string name="id_increase_the_security_of_your">Increase the security of your funds by adding a 2FA</string>
<string name="id_information_not_available">Information not available.</string>
<string name="id_initialize_and_create_wallet">Initialize and Create wallet</string>
<string name="id_initialize_jade_for_testnet">Initialize Jade for testnet</string>
<string name="id_initialized">Initialized</string>
<string name="id_initializing_tor">Initializing Tor…</string>
<string name="id_initiate_oracle_communication">Initiate oracle communication</string>
<string name="id_initiate_refund">Initiate Refund</string>
<string name="id_insert_your_email_to_receive">Insert your email to receive 2FA codes to authorize transfers and other operations.</string>
<string name="id_insert_your_phone_number_to">Insert your phone number to receive 2FA codes to authorize transfers and other operations.</string>
<string name="id_install_version_s">Install version: %1$s?</string>
<string name="id_instant">Instant</string>
<string name="id_instant_recovery">Instant recovery</string>
<string name="id_insufficient_funds">Insufficient funds</string>
<string name="id_insufficient_lbtc_for_fees">Insufficient LBTC for fees</string>
<string name="id_insufficient_lbtc_to_send_a">Insufficient LBTC to send a transaction. In Liquid, LBTC are needed to pay transaction fees. Generate an address to receive LBTC</string>
<string name="id_invalid_address">Invalid address</string>
<string name="id_invalid_amount">Invalid amount</string>
<string name="id_invalid_asset_id">Invalid Asset ID</string>
<string name="id_invalid_clipboard_contents">Invalid clipboard contents</string>
<string name="id_invalid_merkle_proof">Invalid Merkle proof</string>
<string name="id_invalid_mnemonic">Invalid mnemonic</string>
<string name="id_invalid_mnemonic_continue">Invalid mnemonic. Continue typing or ask for help</string>
<string name="id_invalid_mnemonic_must_be_24_or">Invalid mnemonic (must be 24 or 27 words)</string>
<string name="id_invalid_network_configuration">Invalid network configuration</string>
<string name="id_invalid_payment_request_assetid">Invalid payment request, AssetID has to be specified</string>
<string name="id_invalid_pgp_key">Invalid PGP key</string>
<string name="id_invalid_phone_number_format">Invalid phone number format</string>
<string name="id_invalid_pin">Invalid PIN</string>
<string name="id_invalid_pin_remaining_attempts">Invalid PIN. Remaining attempts: %1$d.</string>
<string name="id_invalid_pin_you_dont_have_any">Invalid PIN, you don't have any attempts left. Please log in using your mnemonic.</string>
<string name="id_invalid_pin_you_have_1d">Invalid PIN, you have %1$d attempts left</string>
<string name="id_invalid_private_key">Invalid private key</string>
<string name="id_invalid_psbt">Invalid psbt</string>
<string name="id_invalid_recovery_phrase">Invalid recovery phrase</string>
<string name="id_invalid_replacement_fee_rate">Invalid replacement fee rate</string>
<string name="id_invalid_session">Invalid session</string>
<string name="id_invalid_spv">Invalid SPV</string>
<string name="id_invalid_status_check_that_your">Invalid status. Check that your device is unlocked and try again.</string>
<string name="id_invalid_subaccount">Invalid subaccount</string>
<string name="id_invalid_swap_proposal">Invalid swap proposal</string>
<string name="id_invalid_twofactor_code">Invalid Two-Factor code</string>
<string name="id_invalid_url">Invalid URL</string>
<string name="id_invalid_xpub">Invalid xpub</string>
<string name="id_invoice">Invoice</string>
<string name="id_invoice_description">Invoice Description</string>
<string name="id_invoice_expired">Invoice expired</string>
<string name="id_invoices">Invoices</string>
<string name="id_is_a_noncustodial">is a non-custodial</string>
<string name="id_issue_description">Issue description</string>
<string name="id_issuer">Issuer</string>
<string name="id_issuer_domain_s">Issuer Domain: %1$s</string>
<string name="id_it_looks_like_you_have_no">It looks like you have no wallets. Click below to add one.</string>
<string name="id_jade_already_unlocked">Jade already unlocked</string>
<string name="id_jade_is_a_specialized_device">Jade is a specialized device designed to securely store the keys needed to spend your bitcoin.</string>
<string name="id_jade_is_an_isolated_device_not">Jade is an isolated device not connected to the internet, which means your funds are protected from a hacked or compromised phone.</string>
<string name="id_jade_is_an_opensource_hardware">Jade is an open-source hardware wallet for Bitcoin and Liquid assets.</string>
<string name="id_jade_is_trying_to_connect_to_a">Jade is trying to connect to a non-default blind PIN oracle. Contact support immediately for further information.</string>
<string name="id_jade_unlocked">Jade unlocked</string>
<string name="id_jade_was_initialized_for_testnet">Jade was initialized for testnet</string>
<string name="id_jade_will_securely_create_and">Jade will securely create and transfer a new key to your Green app. Jade will not be needed to authorize lightning transactions, because Green will use this new key for your lightning transactions.\n\nDon't worry about any new backups, your existing recovery phrase backup will be sufficient to restore both your funds onchain and on lightning.</string>
<string name="id_just_a_few_more_steps_to_get">Just a few more steps to get you set up.</string>
<string name="id_keep_your_keys_encrypted_on">Keep your keys encrypted on Jade, easily accessible with PIN</string>
<string name="id_keep_your_recovery_phrase_fully">Keep your recovery phrase fully offline and stored somewhere secret. Anyone with a copy of these words can steal your funds.</string>
<string name="id_keys_stored_on_mobile_device">Keys stored on mobile device</string>
<string name="id_keys_stored_on_specialized">Keys stored on specialized device</string>
<string name="id_label">Label</string>
<string name="id_language">Language</string>
<string name="id_last_attempt_if_failed_you_will">Last attempt: if failed, you will have to restore your wallet with your recovery phrase.</string>
<string name="id_last_ping_1d_ms">Last ping: %1$d ms</string>
<string name="id_later">LATER</string>
<string name="id_latest_transactions">Latest transactions</string>
<string name="id_lbtc_has_no_issuer_and_is">LBTC has no issuer and is instead created on the network via a peg-in.</string>
<string name="id_learn_more">Learn more</string>
<string name="id_learn_more_about_amp_the_assets">Learn more about AMP, the assets and your eligibility</string>
<string name="id_learn_more_about_s">Learn more about %1$s.</string>
<string name="id_learn_more_about_using_qr_mode">Learn more about using QR Mode with Jade</string>
<string name="id_ledger_bitcoin_app_detected">Ledger Bitcoin app detected, please open the Bitcoin Legacy app to access.</string>
<string name="id_ledger_dashboard_detected">Ledger Dashboard detected, please open the correct app to access.</string>
<string name="id_ledger_devices">Ledger devices</string>
<string name="id_ledger_supports_a_limited_set">Ledger supports a limited set of assets: tap here to check the list.</string>
<string name="id_legacy">Legacy</string>
<string name="id_legacy_account">Legacy Account</string>
<string name="id_legacy_bip44">Legacy (BIP44)</string>
<string name="id_legacy_script_coins">Legacy script coins</string>
<string name="id_legacy_segwit">Legacy SegWit</string>
<string name="id_legacy_segwit_account">Legacy SegWit Account</string>
<string name="id_legacy_segwit_bip49">Legacy SegWit (BIP49)</string>
<string name="id_lets_get_you_set_up">Let's get you set up.</string>
<string name="id_lightning">Lightning</string>
<string name="id_lightning_account">Lightning Account</string>
<string name="id_lightning_account_shortcut">Lightning Account Shortcut</string>
<string name="id_lightning_disabled_successfully">Lightning disabled successfully</string>
<string name="id_lightning_invoice">Lightning Invoice</string>
<string name="id_lightning_invoice__lnurl">Lightning Invoice / LNURL</string>
<string name="id_lightning_invoice_is_expired">Lightning invoice is expired</string>
<string name="id_lightning_network">Lightning Network</string>
<string name="id_lightning_network_account">Lightning Network account powered by Greenlight. Portable onto your own CLN node.</string>
<string name="id_lightning_network_not_enabled">Lightning Network not enabled</string>
<string name="id_lightning_notifications">Lightning Notifications</string>
<string name="id_lightning_service_is_undergoing">Lightning service is undergoing maintenance, but it will be back soon.</string>
<string name="id_lightning_shortcut">Lightning shortcut</string>
<string name="id_lightning_shortcut_activated">Lightning Shortcut Activated</string>
<string name="id_limits_s__s">Limits: %1$s - %2$s</string>
<string name="id_liquid_electrum_server">Liquid Electrum server</string>
<string name="id_liquid_is_a_sidechainbased">Liquid is a sidechain-based settlement network for traders and exchanges, enabling faster, more confidential Bitcoin transactions and the issuance of digital assets.</string>
<string name="id_liquid_securities">Liquid Securities</string>
<string name="id_liquid_testnet_electrum_server">Liquid Testnet Electrum server</string>
<string name="id_liquid_testnet_wallets">Liquid testnet wallets</string>
<string name="id_liquid_wallet">Liquid Wallet</string>
<string name="id_liquid_wallets">Liquid wallets</string>
<string name="id_list_of_addresses">List of Addresses</string>
<string name="id_loading">Loading</string>
<string name="id_loading_accounts">Loading accounts…</string>
<string name="id_loading_assets">Loading assets…</string>
<string name="id_loading_transactions">Loading transactions…</string>
<string name="id_loading_wallet">Loading wallet…</string>
<string name="id_location_services_are_disabled">Location services are disabled, do you want to enable them?</string>
<string name="id_lock">Lock</string>
<string name="id_lock_after_1_minute">Lock after 1 minute</string>
<string name="id_lock_immediately">Lock immediately</string>
<string name="id_locked">Locked</string>
<string name="id_locked_coins_will_not_be_spent">Locked coins will not be spent nor included in your balance.</string>
<string name="id_locking_coins">Locking coins</string>
<string name="id_locking_coins_can_help_protect">Locking coins can help protect your privacy and save on transaction fees. Locked coins are deducted from your balance and are not used when sending transactions. You can only lock coins labeled as dust and unlock them later at any time.</string>
<string name="id_log_file">Log file</string>
<string name="id_log_in">Log In</string>
<string name="id_log_in_into_your_s_wallet">Log in into your %1$s wallet</string>
<string name="id_log_in_to_your_multisig_shield">Log in to your Multisig Shield watch-only wallet with a username and password. You can create your watch-only credentials after logging into your Multisig Shield wallet.</string>
<string name="id_log_in_using_mnemonic">Log in using mnemonic</string>
<string name="id_log_in_via_watchonly_to_receive">Log in via Watch-only to receive funds and check balance.</string>
<string name="id_log_in_with_biometrics">Log In with Biometrics</string>
<string name="id_log_in_with_bip39_passphrase">Log In with BIP39 Passphrase</string>
<string name="id_log_out">Log Out</string>
<string name="id_logged_in_wallets">Logged in wallets</string>
<string name="id_logging_in">Logging in…</string>
<string name="id_login_failed">Login Failed</string>
<string name="id_login_options">Login options</string>
<string name="id_logout">Logout</string>
<string name="id_logout_and_switch">Logout and Switch</string>
<string name="id_look_at_the_device_for_the">Look at the device for the number positions</string>
<string name="id_looking_for_device">Looking for device...</string>
<string name="id_looking_for_wallets">Looking for wallets…</string>
<string name="id_looks_like_you_havent_used_a">Looks like you haven't used a wallet yet. Try creating a new one.</string>
<string name="id_low">Low</string>
<string name="id_main_account">Main Account</string>
<string name="id_make_sure_to_be_in_a_private">Make sure to be in a private and safe space</string>
<string name="id_make_sure_you_are_alone_and_no">Make sure you are alone and no camera is recording you or the screen.</string>
<string name="id_make_sure_you_got_everything">Make sure you got everything right.</string>
<string name="id_make_sure_you_have_enabled_otg">Make sure you have enabled OTG option in Android Settings</string>
<string name="id_make_sure_you_made_a_proper">Make sure you made a proper backup of your wallet mnemonic.</string>
<string name="id_malleated">malleated</string>
<string name="id_managed_assets">Managed Assets</string>
<string name="id_managed_assets_account">Managed Assets Account</string>
<string name="id_managed_assets_accounts_are">Managed assets accounts are only available on Liquid wallets. You may be required to provide your account ID to issuers to receive a Managed Asset.</string>
<string name="id_manual_backup">Manual Backup</string>
<string name="id_manual_coin_selection">Manual coin selection</string>
<string name="id_manual_restore">Manual Restore</string>
<string name="id_market">Market</string>
<string name="id_max_limit_s">Max Limit: %1$s</string>
<string name="id_max_payable_amount">Max Payable Amount</string>
<string name="id_max_payment_amount">Max Payment Amount</string>
<string name="id_max_receivable_amount">Max Receivable Amount</string>
<string name="id_max_single_payment_amount">Max Single Payment Amount</string>
<string name="id_maybe_later">Maybe later</string>
<string name="id_medium">Medium</string>
<string name="id_memo">Memo</string>
<string name="id_message">Message</string>
<string name="id_message_frequency_varies">Message frequency varies according to the number of 2FA SMS requests you make.</string>
<string name="id_message_from_recipient_s">Message from recipient: %1$s</string>
<string name="id_message_hash">Message hash</string>
<string name="id_migrate_another_wallet">Migrate Another Wallet</string>
<string name="id_migrating_to_blockstream_green">Migrating to Blockstream Green? Have an existing Blockstream Green wallet you'd like to import? Let's go!</string>
<string name="id_minimum">Minimum</string>
<string name="id_minute">minute</string>
<string name="id_minutes">minutes</string>
<string name="id_mitigates_common_attacks_risks">Mitigates common attacks risks</string>
<string name="id_mnemonic">Mnemonic</string>
<string name="id_mnemonic_not_available">Mnemonic not available</string>
<string name="id_mobile">Mobile</string>
<string name="id_mobile_wallet">Mobile Wallet</string>
<string name="id_model">Model</string>
<string name="id_month">month</string>
<string name="id_months">months</string>
<string name="id_more_actions">More actions</string>
<string name="id_more_details">More Details</string>
<string name="id_more_info">More Info</string>
<string name="id_more_options">More Options</string>
<string name="id_move_across_accounts">Move across accounts</string>
<string name="id_move_to_2fa_protected">Move to 2FA Protected</string>
<string name="id_multi_server_validation">Multi Server Validation</string>
<string name="id_multiple_addresses">Multiple addresses</string>
<string name="id_multiple_assets">Multiple Assets</string>
<string name="id_multisig">Multisig</string>
<string name="id_multisig__s">Multisig / %1$s</string>
<string name="id_multisig_shield">Multisig Shield</string>
<string name="id_my_assets">My Assets</string>
<string name="id_my_notes">MY NOTES</string>
<string name="id_my_wallets">My Wallets</string>
<string name="id_name">Name</string>
<string name="id_native_segwit">Native SegWit</string>
<string name="id_navigate_on_your_hardware">Navigate on your hardware device and export the the singlesig xpub with derivation path m/84'/0'/0' for your Native Segwit account</string>
<string name="id_navigate_on_your_jade_to">Navigate on your Jade to Options > Wallet > Export Xpub (ensure the derivation path is m/84'/0'/0')</string>
<string name="id_need_help">Need help?</string>
<string name="id_network">Network</string>
<string name="id_network_configuration">Network Configuration</string>
<string name="id_network_fee">Network Fee</string>
<string name="id_network_fees">Network fees</string>
<string name="id_network_monitor">Network Monitor</string>
<string name="id_networks">Networks</string>
<string name="id_new_account_created">New account created</string>
<string name="id_new_accounts_functionality">New accounts functionality coming soon!</string>
<string name="id_new_fee">New fee</string>
<string name="id_new_incoming_transaction_in">New incoming transaction in account %1$s (%2$s).</string>
<string name="id_new_jade_firmware_available">New Jade Firmware Available</string>
<string name="id_new_jade_firmware_required">New Jade Firmware Required</string>
<string name="id_new_jade_plus_connected">New Jade Plus Connected</string>
<string name="id_new_outgoing_transaction_from">New outgoing transaction from account %1$s (%2$s).</string>
<string name="id_new_recovery_phrase">New recovery phrase</string>
<string name="id_new_s_transaction_of_s_in">New %1$s transaction of %2$s in account %3$s.</string>
<string name="id_new_transaction">New transaction</string>
<string name="id_new_transaction_involving">New transaction involving accounts %1$s.</string>
<string name="id_new_version">New version</string>
<string name="id_new_wallet">New Wallet</string>
<string name="id_next">Next</string>
<string name="id_nfc_logo">NFC Logo</string>
<string name="id_nfc_tags_written">NFC TAGs Written:</string>
<string name="id_no_addresses">No addresses</string>
<string name="id_no_amount_specified">No amount specified</string>
<string name="id_no_archived_accounts">No archived accounts</string>
<string name="id_no_asset_in_this_account">No asset in this account</string>
<string name="id_no_attempts_remaining">No attempts remaining</string>
<string name="id_no_available_accounts">No available accounts</string>
<string name="id_no_coins_selected">(No coins selected)</string>
<string name="id_no_data_available_try_again">No data available, try again</string>
<string name="id_no_device_connected">No device connected</string>
<string name="id_no_existing_wallet_could_be">No existing wallet could be found.\nTry manually restoring your wallet.</string>
<string name="id_no_ill_repeat_the_setup">No, I'll repeat the setup</string>
<string name="id_no_lsp_connected">No LSP connected</string>
<string name="id_no_more_assets">No more assets.</string>
<string name="id_no_multisig_shield_wallet">No multisig shield wallet exists for this recovery phrase.</string>
<string name="id_no_peers_connected">No Peers Connected</string>
<string name="id_no_personal_data_will_be_shared">No personal data will be shared with this service.</string>
<string name="id_no_pin_provided_exiting">No PIN provided, exiting.</string>
<string name="id_no_quotes_available_for_this">No quotes available for this amount</string>
<string name="id_no_recipients">No recipients</string>
<string name="id_no_registered_name_for_this">No registered name for this asset.</string>
<string name="id_no_registered_ticker_for_this">No registered ticker for this asset.</string>
<string name="id_no_utxos_found">No UTXOs found</string>
<string name="id_node_info">Node Info</string>
<string name="id_non_confidential">Non Confidential</string>
<string name="id_non_confidential_transaction">Non Confidential Transaction</string>
<string name="id_nonconfidential_addresses_not">Non-confidential addresses not supported</string>