-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstrings.xml
More file actions
997 lines (997 loc) · 85.2 KB
/
Copy pathstrings.xml
File metadata and controls
997 lines (997 loc) · 85.2 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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="cards__backupSeedPhrase__description">Store your bitcoin</string>
<string name="cards__backupSeedPhrase__title">Back up</string>
<string name="cards__buyBitcoin__description">Buy some bitcoin</string>
<string name="cards__buyBitcoin__title">Buy</string>
<string name="cards__invite__description">Share Bitkit</string>
<string name="cards__invite__title">Invite</string>
<string name="cards__lightning__description">Instant payments</string>
<string name="cards__lightning__title">Spend</string>
<string name="cards__notifications__description">When Bitkit is closed</string>
<string name="cards__notifications__title">Get paid</string>
<string name="cards__pin__description">Set up a PIN code</string>
<string name="cards__pin__title">Secure</string>
<string name="cards__quickpay__description">Scan and pay</string>
<string name="cards__quickpay__title">QuickPay</string>
<string name="cards__shop__description">Shop with Bitcoin</string>
<string name="cards__shop__title">Shop</string>
<string name="cards__slashtagsProfile__description">Add your details</string>
<string name="cards__slashtagsProfile__title">Profile</string>
<string name="cards__suggestions">Suggestions</string>
<string name="cards__support__description">Get assistance</string>
<string name="cards__support__title">Support</string>
<string name="coming_soon__button">Wallet overview</string>
<string name="coming_soon__description">This feature is currently in development and will be available soon.</string>
<string name="coming_soon__headline">Coming\n<accent>soon</accent></string>
<string name="coming_soon__title">Coming soon</string>
<string name="common__advanced">Advanced</string>
<string name="common__announced">Announced</string>
<string name="common__are_you_sure">Are You Sure?</string>
<string name="common__back">Back</string>
<string name="common__cancel">Cancel</string>
<string name="common__close">Close</string>
<string name="common__confirmations">Confirmations</string>
<string name="common__connect">Connect</string>
<string name="common__continue">Continue</string>
<string name="common__copied">Copied To Clipboard</string>
<string name="common__copy">Copy</string>
<string name="common__default">Default</string>
<string name="common__delete">Delete</string>
<string name="common__delete_yes">Yes, Delete</string>
<string name="common__dialog_cancel">No, Cancel</string>
<string name="common__edit">Edit</string>
<string name="common__empty">Empty</string>
<string name="common__error">Error</string>
<string name="common__error_body">Unknown error</string>
<string name="common__later">Later</string>
<string name="common__learn_more">Learn More</string>
<string name="common__max">Max</string>
<string name="common__min">Min</string>
<string name="common__never">Never</string>
<string name="common__no">No</string>
<string name="common__ok">OK</string>
<string name="common__ok_random">Awesome!\nNice!\nCool!\nGreat!\nFantastic!\nSweet!\nExcellent!\nTerrific!</string>
<string name="common__preview">Preview</string>
<string name="common__ready">Ready</string>
<string name="common__reset">Reset</string>
<string name="common__retry">Retry</string>
<string name="common__sat_vbyte">₿ / vbyte</string>
<string name="common__save">Save</string>
<string name="common__search">Search</string>
<string name="common__share">Share</string>
<string name="common__skip">Skip</string>
<string name="common__success">Success</string>
<string name="common__try_again">Try Again</string>
<string name="common__understood">Understood</string>
<string name="common__usable">Usable</string>
<string name="common__yes">Yes</string>
<string name="common__yes_proceed">Yes, Proceed</string>
<string name="fee__custom__description">Depends on the fee</string>
<string name="fee__custom__shortDescription">Depends on the fee</string>
<string name="fee__custom__title">Custom</string>
<string name="fee__fast__description">±10-20 minutes</string>
<string name="fee__fast__shortDescription">±10m</string>
<string name="fee__fast__title">Fast</string>
<string name="fee__instant__title">Instant</string>
<string name="fee__minimum__description">+2 hours</string>
<string name="fee__minimum__shortDescription">+2h</string>
<string name="fee__minimum__title">Minimum</string>
<string name="fee__normal__description">±20-60 minutes</string>
<string name="fee__normal__shortDescription">±20m</string>
<string name="fee__normal__title">Normal</string>
<string name="fee__slow__description">±1-2 hours</string>
<string name="fee__slow__shortDescription">±1h</string>
<string name="fee__slow__title">Slow</string>
<string name="lightning__availability__text">Funds transfer to savings is usually instant, but settlement may take up to <accent>14 days</accent> under certain network conditions.</string>
<string name="lightning__availability__title">Funds\n<accent>availability</accent></string>
<string name="lightning__balance">Balance</string>
<string name="lightning__base_fee">Spending base fee</string>
<string name="lightning__block_height">Block Height</string>
<string name="lightning__channel_id">Channel ID</string>
<string name="lightning__channel_node_id">Peer ID</string>
<string name="lightning__channel_opened_msg">You can now pay anyone, anywhere, instantly.</string>
<string name="lightning__channel_opened_title">Spending Balance Ready</string>
<string name="lightning__channel_point">Channel point</string>
<string name="lightning__close_button">Close</string>
<string name="lightning__close_conn">Close Connection</string>
<string name="lightning__close_error">Transfer Failed</string>
<string name="lightning__close_error_msg">Unable to transfer your funds back to savings. Please try again.</string>
<string name="lightning__close_success_msg">Your funds are being transferred back to your savings.</string>
<string name="lightning__close_success_title">Transfer Initiated</string>
<string name="lightning__close_text">The fee to close this Lightning Connection and transfer your funds back to your savings depends on network conditions.\n\nFunds transfer to savings is usually instant, but settlement may take up to <accent>14 days</accent> under certain network conditions.</string>
<string name="lightning__closed_on">Closed on</string>
<string name="lightning__closure_reason">Closure reason</string>
<string name="lightning__conn_button_add">Add Connection</string>
<string name="lightning__conn_button_export_logs">Export Logs</string>
<string name="lightning__conn_closed">Closed connections</string>
<string name="lightning__conn_closed_hide">Hide Closed & Failed</string>
<string name="lightning__conn_closed_show">Show Closed & Failed</string>
<string name="lightning__conn_failed">Failed connections</string>
<string name="lightning__conn_open">Open connections</string>
<string name="lightning__conn_pending">Pending connections</string>
<string name="lightning__connection">Connection</string>
<string name="lightning__connections">Lightning Connections</string>
<string name="lightning__created_on">Created on</string>
<string name="lightning__error_add">Bitkit could not add the Lightning peer.</string>
<string name="lightning__error_add_title">Unable To Add Lightning Peer</string>
<string name="lightning__error_add_uri">The URI appears to be invalid.</string>
<string name="lightning__error_channel_purchase">Instant Payments Setup Failed</string>
<string name="lightning__error_channel_setup_msg">An error occurred when setting up your instant balance. {raw}</string>
<string name="lightning__error_logs">Log Export Failed</string>
<string name="lightning__error_logs_description">Bitkit was not able to export the LDK logs.</string>
<string name="lightning__export_logs">Export Lightning Logs</string>
<string name="lightning__external__nav_title">Lightning Connection</string>
<string name="lightning__external_amount__title">Spending\n<accent>balance</accent></string>
<string name="lightning__external_manual__host">Host</string>
<string name="lightning__external_manual__node_id">Node ID</string>
<string name="lightning__external_manual__paste">Paste Node URI</string>
<string name="lightning__external_manual__port">Port</string>
<string name="lightning__external_manual__scan">Scan QR</string>
<string name="lightning__external_manual__text">You can use an external node to manually open a Lightning connection. Enter the node details to continue.</string>
<string name="lightning__external_manual__title"><accent>Manual setup</accent></string>
<string name="lightning__external_success__text">Lightning connection initiated. You will be able to use your spending balance in <accent>±30 minutes</accent> (depends on node configuration).</string>
<string name="lightning__external_success__title">Connection\n<accent>initiated</accent></string>
<string name="lightning__fee_rate">Fee rate</string>
<string name="lightning__fee_rate_update_time">Fee Rate Cache Update Time</string>
<string name="lightning__fees">Fees</string>
<string name="lightning__force_button">Force Transfer</string>
<string name="lightning__force_channels_skipped">Some connections could not be closed.</string>
<string name="lightning__force_failed_msg">Unable to transfer your funds back to savings. Please try again.</string>
<string name="lightning__force_failed_title">Force Transfer Failed</string>
<string name="lightning__force_init_msg">Your funds will be accessible in ±14 days.</string>
<string name="lightning__force_init_title">Force Transfer Initiated</string>
<string name="lightning__force_nav_title">Force Transfer</string>
<string name="lightning__force_text">Could not initiate transfer. Do you want to force this transfer? You won’t be able to use these funds for ±14 days (!)</string>
<string name="lightning__force_title">Force\n<accent>Transfer</accent></string>
<string name="lightning__funding__button1">Transfer from Savings</string>
<string name="lightning__funding__button2">Use Other Wallet</string>
<string name="lightning__funding__button3">Advanced</string>
<string name="lightning__funding__nav_title">Spending Balance</string>
<string name="lightning__funding__text">You can use your Bitkit savings or send bitcoin from a different wallet.</string>
<string name="lightning__funding__text_blocked">Bitkit does not currently provide Lightning services in your country, but you can still connect to other nodes directly.</string>
<string name="lightning__funding__text_blocked_cjit">Bitkit does not currently provide Lightning services in your country, but you can still connect to other nodes directly.</string>
<string name="lightning__funding__title">Fund your <accent>spending balance</accent></string>
<string name="lightning__funding_advanced__button1">LNURL Channel QR</string>
<string name="lightning__funding_advanced__button2">Manual Setup</string>
<string name="lightning__funding_advanced__nav_title">Spending Balance</string>
<string name="lightning__funding_advanced__text">Scan a QR to claim your LNURL Channel from another LSP, or choose manual setup.</string>
<string name="lightning__funding_advanced__title">Advanced <accent>setup</accent></string>
<string name="lightning__inbound_capacity">Inbound Capacity</string>
<string name="lightning__inbound_htlc_max">Inbound HTLC Max</string>
<string name="lightning__inbound_htlc_min">Inbound HTLC Min</string>
<string name="lightning__is_usable">Is Usable</string>
<string name="lightning__lightning_balances">Lightning Balances</string>
<string name="lightning__liquidity__label">Spending Balance Liquidity</string>
<string name="lightning__liquidity__text">Your Spending Balance uses the Lightning Network to make your payments cheaper, faster, and more private.\n\nThis works like internet access, but you pay for liquidity & routing instead of bandwidth.\n\nThis setup includes some one-time costs.</string>
<string name="lightning__liquidity__title">Liquidity\n<accent>& routing</accent></string>
<string name="lightning__monitor_height">Channel Monitor Archival Height</string>
<string name="lightning__next_outbound_htlc_limit">Next Outbound HTLC Limit</string>
<string name="lightning__next_outbound_htlc_min">Next Outbound HTLC Min</string>
<string name="lightning__no_funds__description">Before you can transfer funds from your savings balance, you need to send bitcoin to your Bitkit wallet.</string>
<string name="lightning__no_funds__title">No Available Funds</string>
<string name="lightning__node_id">LDK Node ID</string>
<string name="lightning__node_info">Lightning Node</string>
<string name="lightning__node_sync_time">Lightning Wallet Sync Time</string>
<string name="lightning__onchain_sync_time">Onchain Wallet Sync Time</string>
<string name="lightning__opened_on">Opened on</string>
<string name="lightning__order">Order ID</string>
<string name="lightning__order_details">Order Details</string>
<string name="lightning__order_expiry">Order Expiry</string>
<string name="lightning__order_fee">Order fee</string>
<string name="lightning__order_state__awaiting_payment">Processing payment</string>
<string name="lightning__order_state__closed">Connection closed</string>
<string name="lightning__order_state__expired">Order expired</string>
<string name="lightning__order_state__inactive">Connection inactive</string>
<string name="lightning__order_state__open">Connection open</string>
<string name="lightning__order_state__opening">Opening connection</string>
<string name="lightning__order_state__paid">Payment successful</string>
<string name="lightning__order_state__payment_canceled">Payment canceled</string>
<string name="lightning__order_state__refund_available">Refund available</string>
<string name="lightning__order_state__refunded">Payment refunded</string>
<string name="lightning__other">Other</string>
<string name="lightning__receiving_label">Receiving capacity</string>
<string name="lightning__reserve_balance">Reserve balance (not spendable)</string>
<string name="lightning__rgs_snapshot_time">Rapid Gossip Sync Snapshot Time</string>
<string name="lightning__savings">Savings</string>
<string name="lightning__savings_advanced__text">You can transfer part of your spending balance to savings, because you have multiple active Lightning Connections.</string>
<string name="lightning__savings_advanced__title">Select funds\n<accent>to transfer</accent></string>
<string name="lightning__savings_advanced__total">Total selected</string>
<string name="lightning__savings_confirm__label">Transfer to savings</string>
<string name="lightning__savings_confirm__transfer_all">Transfer all</string>
<string name="lightning__savings_interrupted__nav_title">Transfer\n<accent>interrupted</accent></string>
<string name="lightning__savings_interrupted__text">Funds were not transferred yet. Bitkit will try to initiate the transfer during the next <accent>30 minutes</accent>. Please keep your app open.</string>
<string name="lightning__savings_interrupted__title">Keep Bitkit\n<accent>open</accent></string>
<string name="lightning__savings_intro__button">Get Started</string>
<string name="lightning__savings_intro__text">Transfer your spending balance to your savings to store your Bitcoin long-term and secure your future.</string>
<string name="lightning__savings_intro__title">Transfer\n<accent>to savings</accent></string>
<string name="lightning__savings_progress__text">Please wait, your funds transfer is in progress. This should take <accent>±10 seconds.</accent></string>
<string name="lightning__savings_progress__title">Funds\n<accent>in transfer</accent></string>
<string name="lightning__scores_sync_time">Pathfinding Scores Sync Time</string>
<string name="lightning__setting_up_button">Continue Using Bitkit</string>
<string name="lightning__setting_up_step1">Processing Payment</string>
<string name="lightning__setting_up_step2">Payment Successful</string>
<string name="lightning__setting_up_step3">Queued For Opening</string>
<string name="lightning__setting_up_step4">Opening Connection</string>
<string name="lightning__setting_up_text">Please wait, your funds transfer is in progress. This should take <accent>±10 minutes.</accent></string>
<string name="lightning__spendable_onchain">Spendable Onchain</string>
<string name="lightning__spending">Spending</string>
<string name="lightning__spending_advanced__fee">Liquidity fee</string>
<string name="lightning__spending_advanced__title">Receiving\n<accent>capacity</accent></string>
<string name="lightning__spending_amount__error_max__description">The amount you can transfer to your spending balance is currently limited to ₿ {amount}.</string>
<string name="lightning__spending_amount__error_max__description_zero">Your transfer to the spending balance is limited due to liquidity policy. For details, visit the Help Center.</string>
<string name="lightning__spending_amount__error_max__title">Spending Balance Maximum</string>
<string name="lightning__spending_amount__quarter">25%</string>
<string name="lightning__spending_amount__title">Transfer\n<accent>to spending</accent></string>
<string name="lightning__spending_confirm__amount">To spending</string>
<string name="lightning__spending_confirm__default">Use Defaults</string>
<string name="lightning__spending_confirm__lsp_fee">Service fees</string>
<string name="lightning__spending_confirm__network_fee">Network fees</string>
<string name="lightning__spending_confirm__total">Total</string>
<string name="lightning__spending_intro__button">Get Started</string>
<string name="lightning__spending_intro__text">Transfer funds to your spending balance to enjoy instant and cheap transactions with friends, family, and merchants.</string>
<string name="lightning__spending_intro__title">Transfer\n<accent>to spending</accent></string>
<string name="lightning__spending_label">Spending balance</string>
<string name="lightning__status">Status</string>
<string name="lightning__support">Support</string>
<string name="lightning__total_anchor_channels_reserve">Total Anchor Channels Reserve</string>
<string name="lightning__total_lightning">Total Lightning</string>
<string name="lightning__total_onchain">Total Onchain</string>
<string name="lightning__total_size">Total channel size</string>
<string name="lightning__transaction">Transaction</string>
<string name="lightning__transfer__confirm">Please\n<accent>confirm</accent></string>
<string name="lightning__transfer__custom_fee">Custom <accent>fee</accent></string>
<string name="lightning__transfer__nav_title">Transfer Funds</string>
<string name="lightning__transfer__swipe">Swipe To Transfer</string>
<string name="lightning__transfer_in_progress">TRANSFER IN PROGRESS</string>
<string name="lightning__transfer_intro__button">Get Started</string>
<string name="lightning__transfer_intro__text">Fund your spending balance to enjoy instant and cheap transactions with friends, family, and merchants.</string>
<string name="lightning__transfer_intro__title">Spending\n<accent>Balance</accent></string>
<string name="lightning__transfer_success__nav_title">Transfer Successful</string>
<string name="lightning__transfer_success__text_savings">Your funds have been transferred. You are able to use these funds immediately.</string>
<string name="lightning__transfer_success__text_spending">Your funds have been transferred and your spending balance is ready to use.</string>
<string name="lightning__transfer_success__title_savings">Funds moved\n<accent>to savings</accent></string>
<string name="lightning__transfer_success__title_spending">Funds moved\n<accent>to spending</accent></string>
<string name="lightning__wait_text_bottom">Connecting & Syncing...</string>
<string name="lightning__wait_text_top">Please wait for Bitkit to connect to the payment network (±10 seconds).</string>
<string name="lightning__wallet_balances">Wallet Balances</string>
<string name="migration__description">Please wait while your old wallet data migrates to this new Bitkit version. This usually takes less than a minute.</string>
<string name="migration__nav_title">Wallet Migration</string>
<string name="migration__title">MIGRATING\n<accent>WALLET</accent></string>
<string name="notification__channel_closed__mutual_body">Balance moved from spending to savings</string>
<string name="notification__channel_closed__reason_body">Reason: %s</string>
<string name="notification__channel_closed__title">Channel closed</string>
<string name="notification__channel_node__body">Notification channel for Lightning node foreground service</string>
<string name="notification__channel_node__name">Lightning node notification</string>
<string name="notification__channel_open_bg_failed_title">Channel failed to open in the background</string>
<string name="notification__channel_open_failed_title">Channel open failed</string>
<string name="notification__channel_opened_title">Channel opened</string>
<string name="notification__channel_pending_body">Pending</string>
<string name="notification__channel_ready_body">Ready to send</string>
<string name="notification__lightning_error_title">Lightning error</string>
<string name="notification__payment_failed_title">Payment failed</string>
<string name="notification__please_try_again_body">Please try again</string>
<string name="notification__received__body_amount">Received %s</string>
<string name="notification__received__body_channel">Via new channel</string>
<string name="notification__received__body_hidden">Open Bitkit to see details</string>
<string name="notification__received__title">Payment Received</string>
<string name="notification__service__body">Bitkit is running in background so you can receive Lightning payments</string>
<string name="notification__service__stop">Stop App</string>
<string name="onboarding__advanced">Advanced</string>
<string name="onboarding__advanced_setup">Advanced Setup</string>
<string name="onboarding__create_new_wallet">Create New Wallet</string>
<string name="onboarding__empty_wallet">To get\nstarted\n<accent>send\nBitcoin</accent>\nto your\nwallet</string>
<string name="onboarding__get_started">Get Started</string>
<string name="onboarding__loading_header">Setting up\n<accent>your wallet</accent></string>
<string name="onboarding__multiple_header"><accent>Caution:</accent>\nmultiple devices</string>
<string name="onboarding__multiple_text">Don\'t install your Bitkit recovery phrase into multiple phones simultaneously, as this can corrupt your data.</string>
<string name="onboarding__new_wallet">New Wallet</string>
<string name="onboarding__passphrase">Passphrase</string>
<string name="onboarding__passphrase_header">Secure with <accent>Passphrase</accent></string>
<string name="onboarding__passphrase_text">You can add a secret passphrase to the 12-word recovery phrase. If you do, make sure you don’t forget.</string>
<string name="onboarding__pp_checkbox">Privacy Policy</string>
<string name="onboarding__pp_checkbox_value">By continuing you declare that you have read and accept the <accent>privacy policy.</accent></string>
<string name="onboarding__restore">Restore</string>
<string name="onboarding__restore_failed_header">Spending balance <accent>error</accent></string>
<string name="onboarding__restore_failed_text">Bitkit restored your savings, but failed to restore your current spending balance (Lightning state) and wallet data.</string>
<string name="onboarding__restore_header"><accent>Restore</accent>\nyour wallet</string>
<string name="onboarding__restore_inv_checksum">The checksum for the recovery phrase appears to be incorrect. Please double check your recovery phrase.</string>
<string name="onboarding__restore_no_backup_button">Proceed Without Backup</string>
<string name="onboarding__restore_no_backup_warn">If you previously had a lightning backup it will be overwritten and lost. This could result in a loss of funds.</string>
<string name="onboarding__restore_passphrase_meaning">*Optional, enter only if you’ve set up one.</string>
<string name="onboarding__restore_passphrase_placeholder">Passphrase*</string>
<string name="onboarding__restore_phrase">Please type in your recovery phrase from any (paper) backup.</string>
<string name="onboarding__restore_red_explain">If a word is shown in <accent>red</accent>, it means that it was not found in the recovery phrase dictionary. Check for spelling errors.</string>
<string name="onboarding__restore_success_header">Wallet <accent>restored</accent></string>
<string name="onboarding__restore_success_text">You have successfully restored your wallet from backup. Enjoy Bitkit!</string>
<string name="onboarding__restore_suggestions">SUGGESTIONS</string>
<string name="onboarding__skip">Skip</string>
<string name="onboarding__skip_intro">Skip Intro</string>
<string name="onboarding__slide0_header">Freedom in\n<accent>your pocket</accent></string>
<string name="onboarding__slide0_text">Bitkit hands you the keys to manage your money. Spend now or save for later. The choice is yours.</string>
<string name="onboarding__slide1_header">Instant\n<accent>payments</accent></string>
<string name="onboarding__slide1_note">*Bitkit does not currently provide Lightning services in your country, but you can still connect to other nodes.</string>
<string name="onboarding__slide1_text">Spend bitcoin faster than ever. Enjoy instant and cheap payments with friends, family, and merchants.</string>
<string name="onboarding__slide3_header">Privacy is\n<accent>not a crime</accent></string>
<string name="onboarding__slide3_text">Swipe to hide your balance, enjoy more private payments, and protect your wallet by enabling security features.</string>
<string name="onboarding__slide4_header">Your keys,\n<accent>your coins</accent></string>
<string name="onboarding__slide4_text">Let’s create your wallet. Please be aware that Bitkit is mobile software. <accent>Don’t store all your money in Bitkit.</accent></string>
<string name="onboarding__tos_checkbox">Terms of use</string>
<string name="onboarding__tos_checkbox_value">By continuing you declare that you have read and accept the terms of use.</string>
<string name="onboarding__tos_header">Bitkit\n<accent>terms of use</accent></string>
<string name="onboarding__welcome_text">Use Bitkit to pay anyone, anywhere, any time, and spend your bitcoin on the things you value in life.</string>
<string name="onboarding__welcome_title">You can ₿ \n<accent>the change</accent></string>
<string name="other__buy_button">Choose Exchange</string>
<string name="other__buy_header">Buy some\n<accent>Bitcoin</accent></string>
<string name="other__buy_text">Don’t have any Bitcoin or need more?</string>
<string name="other__camera_ask_msg">Bitkit needs permission to use your camera</string>
<string name="other__camera_ask_title">Permission to use camera</string>
<string name="other__camera_init_error">Failed to initialize camera: {message}</string>
<string name="other__camera_no_text"><bold>It appears Bitkit does not have permission to access your camera.</bold>\n\nTo utilize this feature in the future you will need to enable camera permissions for this app from your phone\'s settings.</string>
<string name="other__camera_permission_button">Enable camera</string>
<string name="other__camera_permission_description">Allow camera access to scan bitcoin invoices and pay more quickly.</string>
<string name="other__camera_permission_title">SCAN\n<accent>QR CODE</accent></string>
<string name="other__camera_scan_qr">Scan QR</string>
<string name="other__clipboard_redirect_msg">Do you want to be redirected to the relevant screen?</string>
<string name="other__clipboard_redirect_title">Clipboard Data Detected</string>
<string name="other__coming_soon">Coming soon</string>
<string name="other__connection_back_msg">Bitkit successfully reconnected to the Internet.</string>
<string name="other__connection_back_title">Internet Connection Restored</string>
<string name="other__connection_issue">Internet Connectivity Issues</string>
<string name="other__connection_issue_explain">It appears you’re disconnected, trying to reconnect...</string>
<string name="other__gift__claiming__text">Claiming your Bitkit gift code...</string>
<string name="other__gift__claiming__title">Claiming Gift</string>
<string name="other__gift__error__text">Bitkit couldn\'t claim the funds. Please try again later or contact us.</string>
<string name="other__gift__error__title">Gift Code Error</string>
<string name="other__gift__used__text">This Bitkit gift code has already been used, and the funds have been paid out.</string>
<string name="other__gift__used__title">Used Code</string>
<string name="other__gift__used_up__text">Sorry, you\'re too late! All gifts for this code have already been claimed.</string>
<string name="other__gift__used_up__title">Out of Gifts</string>
<string name="other__high_balance__cancel">Learn More</string>
<string name="other__high_balance__continue">Understood</string>
<string name="other__high_balance__nav_title">High Balance</string>
<string name="other__high_balance__text"><accent>Your wallet balance exceeds $500.</accent>\nFor your security, consider moving some of your savings to an offline wallet.</string>
<string name="other__high_balance__title">High\n<accent>Balance</accent></string>
<string name="other__lnurl_auth_error">Sign In Failed (LNURL)</string>
<string name="other__lnurl_auth_error_msg">An error occurred when you attempted to sign in. {raw}</string>
<string name="other__lnurl_auth_login_button">Log In</string>
<string name="other__lnurl_auth_login_prompt">Log in to {domain}?</string>
<string name="other__lnurl_auth_login_title">Log In</string>
<string name="other__lnurl_auth_success_msg_domain">You successfully signed in to {domain}.</string>
<string name="other__lnurl_auth_success_msg_no_domain">You successfully signed in.</string>
<string name="other__lnurl_auth_success_title">Signed In</string>
<string name="other__lnurl_channel_error">Unable To Open Channel (LNURL)</string>
<string name="other__lnurl_channel_error_raw">An error occured when you tried paying: {raw}</string>
<string name="other__lnurl_channel_header">Lightning Connection</string>
<string name="other__lnurl_channel_host">Host</string>
<string name="other__lnurl_channel_lsp">Lightning service provider</string>
<string name="other__lnurl_channel_message">Do you want open a Lightning connection with this Lightning Service Provider?</string>
<string name="other__lnurl_channel_node">Node ID</string>
<string name="other__lnurl_channel_port">Port</string>
<string name="other__lnurl_channel_success_msg_no_peer">Successfully requested channel.</string>
<string name="other__lnurl_channel_success_title">Channel Requested</string>
<string name="other__lnurl_channel_title">New\nlightning\n<accent>connection</accent></string>
<string name="other__lnurl_ln_error_msg">Could not start local Lightning node. Please try again or restart Bitkit.</string>
<string name="other__lnurl_pay_error">Unable To Pay (LNURL)</string>
<string name="other__lnurl_pay_error_no_capacity">Not enough outbound/sending capacity to complete lnurl-pay request.</string>
<string name="other__lnurl_withdr_error">Withdraw Failed (LNURL)</string>
<string name="other__lnurl_withdr_error_minmax">Incorrect LNURL withdraw params, min/max not set correctly.</string>
<string name="other__lnurl_withdr_success_msg">Your withdraw was successfully requested. Waiting for payment.</string>
<string name="other__lnurl_withdr_success_title">Withdraw Requested</string>
<string name="other__logs_export_error">Failed to create log zip file</string>
<string name="other__node_error_starting">Error starting: %1$s</string>
<string name="other__node_initializing">Setting up wallet…</string>
<string name="other__node_running">Running</string>
<string name="other__node_starting">Starting</string>
<string name="other__node_stopped">Stopped</string>
<string name="other__node_stopping">Stopping</string>
<string name="other__pay_insufficient_savings">Insufficient Savings</string>
<string name="other__pay_insufficient_savings_amount_description">₿ {amount} more needed to pay this Bitcoin invoice.</string>
<string name="other__pay_insufficient_savings_description">More ₿ needed to pay this Bitcoin invoice.</string>
<string name="other__pay_insufficient_spending">Insufficient Spending Balance</string>
<string name="other__pay_insufficient_spending_amount_description">₿ {amount} more needed to pay this Lightning invoice.</string>
<string name="other__phone_settings">Open Phone Settings</string>
<string name="other__qr_error_header">Unable To Read QR</string>
<string name="other__qr_error_network_header">Incorrect Network</string>
<string name="other__qr_error_network_text">Bitkit is currently set to {selectedNetwork} but data is for {dataNetwork}.</string>
<string name="other__qr_error_text">Bitkit is not able to read this QR code.</string>
<string name="other__qr_paste">Paste QR Code</string>
<string name="other__qr_scan">Scan QR Code</string>
<string name="other__scan__error__expired">This Lightning invoice has expired.</string>
<string name="other__scan__error__generic">Bitkit is unable to read the provided data.</string>
<string name="other__scan_err_decoding">Decoding Error</string>
<string name="other__scan_err_interpret_title">Unable To Interpret Provided Data</string>
<string name="other__share_qr">Share QR Code Via</string>
<string name="other__shop__discover__esims__description">Go borderless</string>
<string name="other__shop__discover__esims__title">ESims</string>
<string name="other__shop__discover__gift_cards__description">Shop with Bitcoin</string>
<string name="other__shop__discover__gift_cards__title">Gift Cards</string>
<string name="other__shop__discover__label">Gift card categories</string>
<string name="other__shop__discover__nav_title">Shop</string>
<string name="other__shop__discover__refill__description">Top up your phone</string>
<string name="other__shop__discover__refill__title">Phone Refill</string>
<string name="other__shop__discover__tabs__map">Map</string>
<string name="other__shop__discover__tabs__shop">Shop</string>
<string name="other__shop__discover__travel__description">Book your ₿ holiday</string>
<string name="other__shop__discover__travel__title">Travel</string>
<string name="other__shop__intro__description">Get your life on the Bitcoin standard. Spend your Bitcoin on digital gift cards, eSIMs, phone refills, and more.</string>
<string name="other__shop__intro__title">Shop</string>
<string name="other__swipe">Swipe To Confirm</string>
<string name="other__update_button">Update</string>
<string name="other__update_critical_button">Update Bitkit</string>
<string name="other__update_critical_nav_title">Critical Update</string>
<string name="other__update_critical_text">There is a critical update for Bitkit. You must update to continue using Bitkit.</string>
<string name="other__update_critical_title">Update\n<accent>Bitkit now</accent></string>
<string name="other__update_nav_title">Update Available</string>
<string name="other__update_text">Please update Bitkit to the latest version for new features and bug fixes!</string>
<string name="other__update_title">Update\n<accent>Bitkit</accent></string>
<string name="security__backup_button">Back Up</string>
<string name="security__backup_funds">Now that you have some funds in your wallet, it is time to back up your money!</string>
<string name="security__backup_funds_no">There are no funds in your wallet yet, but you can create a backup if you wish.</string>
<string name="security__backup_title"><accent>Safely store</accent> your Bitcoin</string>
<string name="security__backup_wallet">Wallet Backup</string>
<string name="security__bio">Biometrics</string>
<string name="security__bio_ask">PIN code set. Would you like to use {biometricsName} instead of your PIN code?</string>
<string name="security__bio_auth_with">Authenticate with {biometricsName}</string>
<string name="security__bio_confirm">Confirm {biometricsName}</string>
<string name="security__bio_no">It appears that your device does not support Biometric security.</string>
<string name="security__bio_not_available">Looks like you haven’t set up biometric security yet (or it is not supported). Try to enable it in your phone settings.</string>
<string name="security__bio_phone_settings">Phone Settings</string>
<string name="security__bio_use">Use {biometricsName}</string>
<string name="security__contact_support">Contact Support</string>
<string name="security__cp_changed_text">You have successfully changed your PIN to a new 4-digit combination.</string>
<string name="security__cp_changed_title">PIN changed</string>
<string name="security__cp_retype_text">Please retype your 4-digit PIN to complete the setup process.</string>
<string name="security__cp_retype_title">Retype New PIN</string>
<string name="security__cp_setnew_text">Please use a PIN you will remember. If you forget your PIN you can reset it, but that will require restoring your wallet.</string>
<string name="security__cp_setnew_title">Set New PIN</string>
<string name="security__cp_text">You can change your PIN code to a new\n4-digit combination. Please enter your current PIN code first.</string>
<string name="security__cp_title">Change PIN</string>
<string name="security__cp_try_again">Try again, this is not the same PIN.</string>
<string name="security__display_seed">Show Seed Phrase</string>
<string name="security__mnemonic_confirm">Confirm Recovery Phrase</string>
<string name="security__mnemonic_confirm_tap">Tap the 12 words in the correct order.</string>
<string name="security__mnemonic_copied">Mnemonic copied to clipboard</string>
<string name="security__mnemonic_data_header">Wallet Data</string>
<string name="security__mnemonic_data_text">Your profile, contacts, accounts, tags, and activity will be backed up automatically to our free cloud service.</string>
<string name="security__mnemonic_error">Wallet Failure</string>
<string name="security__mnemonic_error_description">Bitkit could not read your recovery phrase.</string>
<string name="security__mnemonic_keep_header">Keep It Safe</string>
<string name="security__mnemonic_keep_text">Remember, <accent>never share your recovery phrase</accent> with anyone! If you do, they can steal your money, profile and other data.</string>
<string name="security__mnemonic_latest_backup"><bold>Latest data backup:</bold> {time}</string>
<string name="security__mnemonic_load_error">Failed to load mnemonic</string>
<string name="security__mnemonic_multiple_header">Multiple Devices</string>
<string name="security__mnemonic_multiple_text">Don\'t use your Bitkit recovery phrase on multiple phones simultaneously, as this can corrupt your data.</string>
<string name="security__mnemonic_never_share"><accent>Never share</accent> your recovery phrase with anyone as this may result in the loss of funds.</string>
<string name="security__mnemonic_phrase">Mnemonic Phrase</string>
<string name="security__mnemonic_result_header">Successful</string>
<string name="security__mnemonic_result_text">Make sure you store your recovery phrase in a <accent>secure place</accent>, as this is the <accent>only way to recover</accent> your money!</string>
<string name="security__mnemonic_reveal">Tap To Reveal</string>
<string name="security__mnemonic_use">Use the 12 words below to recover your money at a later date.</string>
<string name="security__mnemonic_write">Write down these {length} words in the right order and store them in a safe place.</string>
<string name="security__mnemonic_your">Your Recovery Phrase</string>
<string name="security__pass">passphrase</string>
<string name="security__pass_confirm">Confirm Passphrase</string>
<string name="security__pass_confirm_text">Enter the passphrase you added while setting up and creating your wallet.</string>
<string name="security__pass_never_share"><accent>Never share</accent> your passphrase with anyone as this may result in the loss of funds.</string>
<string name="security__pass_recovery"><accent>Passphrase:</accent> {passphrase}</string>
<string name="security__pass_text">You added a passphrase to your recovery phrase during wallet setup.</string>
<string name="security__pass_your">Your Passphrase</string>
<string name="security__pin_attempts">{attemptsRemaining} attempts remaining. Forgot your PIN?</string>
<string name="security__pin_choose_header">Choose 4-Digit PIN</string>
<string name="security__pin_choose_text">Please use a PIN you will remember. If you forget your PIN you can reset it, but that will require restoring your wallet.</string>
<string name="security__pin_disable_button">Disable PIN</string>
<string name="security__pin_disable_text">PIN code is currently enabled. If you want to disable your PIN, you need to enter your current PIN code first.</string>
<string name="security__pin_disable_title">Disable PIN</string>
<string name="security__pin_enter">Please enter your PIN code</string>
<string name="security__pin_forgot_reset">Reset (Requires Recovery Phrase)</string>
<string name="security__pin_forgot_text">Forgot your PIN? Reset and recover your Bitkit wallet with your recovery phrase. Set a new PIN after completing recovery.</string>
<string name="security__pin_forgot_title">Forgot PIN?</string>
<string name="security__pin_last_attempt">Last attempt. Entering the wrong PIN again will reset your wallet.</string>
<string name="security__pin_not_match">Try again, this is not the same PIN.</string>
<string name="security__pin_retype_header">Retype 4-Digit PIN</string>
<string name="security__pin_retype_text">Please retype your 4-digit PIN to complete the setup process.</string>
<string name="security__pin_security_button">Secure Wallet</string>
<string name="security__pin_security_header">Increase Security</string>
<string name="security__pin_security_text">To increase wallet security, you can set up a PIN code and Face ID.</string>
<string name="security__pin_security_title"><accent>Protect</accent>\nyour bitcoin</string>
<string name="security__pin_send">Please enter your PIN code to confirm and send out this payment.</string>
<string name="security__pin_send_title">Enter PIN Code</string>
<string name="security__pin_use_biometrics">Use {biometricsName}</string>
<string name="security__recovery">Recovery</string>
<string name="security__recovery_text">You\'ve entered Bitkit\'s recovery mode. Here are some actions to perform when running into issues that prevent the app from fully functioning. Restart the app for a normal startup.</string>
<string name="security__reset_button_backup">Back Up First</string>
<string name="security__reset_button_reset">Reset Wallet</string>
<string name="security__reset_confirm">Yes, Reset</string>
<string name="security__reset_dialog_desc">Are you sure you want to reset your Bitkit Wallet? Do you have a backup of your recovery phrase and wallet data?</string>
<string name="security__reset_dialog_title">Reset Bitkit?</string>
<string name="security__reset_text">Back up your wallet first to avoid loss of your funds and wallet data. Resetting will overwrite your current Bitkit setup.</string>
<string name="security__reset_title">Reset And Restore</string>
<string name="security__success_bio">You have successfully set up a PIN code and {biometricsName} to improve wallet security.</string>
<string name="security__success_no_bio">You have successfully set up a PIN code to improve your wallet security.</string>
<string name="security__success_payments">Also require for payments</string>
<string name="security__success_title">Wallet Secured</string>
<string name="security__use_pin">Use PIN code</string>
<string name="security__wipe_app">Wipe App</string>
<string name="security__wiped_message">Bitkit has been reset and all wallet data has been deleted.</string>
<string name="security__wiped_title">Wallet Data Deleted</string>
<string name="settings__about__legal">Legal</string>
<string name="settings__about__share">Share</string>
<string name="settings__about__shareText">Change your wallet, change the world. Download Bitkit for iPhone {appStoreUrl} or Android {playStoreUrl}</string>
<string name="settings__about__text">Thank you for being a responsible Bitcoiner.\nChange your wallet, change the world.\n\nBitkit hands you the keys to your money, profile, contacts, and web accounts.\n\nBitkit was crafted by Synonym Software Ltd.</string>
<string name="settings__about__title">About Bitkit</string>
<string name="settings__about__version">Version</string>
<string name="settings__about_title">About</string>
<string name="settings__addr__addr_change">Change Addresses</string>
<string name="settings__addr__addr_receiving">Receiving Addresses</string>
<string name="settings__addr__check_balances">Check Balances</string>
<string name="settings__addr__gen_20">Generate 20 More</string>
<string name="settings__addr__index">Index: {index}</string>
<string name="settings__addr__loading">Loading Addresses...</string>
<string name="settings__addr__no_addrs">No Addresses To Display</string>
<string name="settings__addr__no_addrs_str">No addresses found when searching for \"{searchTxt}\"</string>
<string name="settings__addr__path">Path: {path}</string>
<string name="settings__addr__spend_number">{count, plural, one {Spend ₿ {fundsToSpend} From # address} other {Spend ₿ {fundsToSpend} From # addresses}}</string>
<string name="settings__adv__address_viewer">Address Viewer</string>
<string name="settings__adv__coin_selection">Coin Selection</string>
<string name="settings__adv__cs_auto">Autopilot</string>
<string name="settings__adv__cs_auto_mode">Autopilot Mode</string>
<string name="settings__adv__cs_consolidate">Consolidate</string>
<string name="settings__adv__cs_consolidate_description">Use all available UTXOs regardless of the amount being sent. Use this method when fees are low in order to reduce fees in future transactions.</string>
<string name="settings__adv__cs_first_in_first_out">First-In First-Out</string>
<string name="settings__adv__cs_first_in_first_out_description">Use older UTXOs first (by block height).</string>
<string name="settings__adv__cs_last_in_last_out">Last-In Last-Out</string>
<string name="settings__adv__cs_last_in_last_out_description">Use newer UTXOs first (by block height).</string>
<string name="settings__adv__cs_manual">Manual</string>
<string name="settings__adv__cs_max">Smallest First</string>
<string name="settings__adv__cs_max_description">Sort by and use smallest UTXO first. Potentially higher fee, but hides your largest UTXOs.</string>
<string name="settings__adv__cs_method">Coin Selection Method</string>
<string name="settings__adv__cs_min">Largest First</string>
<string name="settings__adv__cs_min_description">Sort by and use largest UTXO first. Potentially lower fee, but reveals your largest UTXOs.</string>
<string name="settings__adv__electrum_server">Electrum Server</string>
<string name="settings__adv__lightning_connections">Lightning Connections</string>
<string name="settings__adv__lightning_node">Lightning Node</string>
<string name="settings__adv__reset_confirm">Yes, Reset</string>
<string name="settings__adv__reset_desc">Are you sure you want to reset the suggestions? They will reappear in case you have removed them from your Bitkit wallet overview.</string>
<string name="settings__adv__reset_title">Reset Suggestions?</string>
<string name="settings__adv__rgs_server">Rapid-Gossip-Sync</string>
<string name="settings__adv__section_networks">Networks</string>
<string name="settings__adv__section_other">Other</string>
<string name="settings__adv__section_payments">Payments</string>
<string name="settings__adv__suggestions_reset">Reset Suggestions</string>
<string name="settings__advanced_title">Advanced</string>
<string name="settings__backup__category_connection_receipts">Connection Receipts</string>
<string name="settings__backup__category_connections">Connections</string>
<string name="settings__backup__category_contacts">Contacts</string>
<string name="settings__backup__category_profile">Profile</string>
<string name="settings__backup__category_settings">Settings</string>
<string name="settings__backup__category_tags">Tags</string>
<string name="settings__backup__category_transaction_log">Transaction Log</string>
<string name="settings__backup__category_wallet">Boosts & Transfers</string>
<string name="settings__backup__category_widgets">Widgets</string>
<string name="settings__backup__failed_message">Bitkit failed to back up wallet data. Retrying in {interval, plural, one {# minute} other {# minutes}}.</string>
<string name="settings__backup__failed_title">Data Backup Failure</string>
<string name="settings__backup__latest">latest data backups</string>
<string name="settings__backup__reset">Reset and restore wallet</string>
<string name="settings__backup__status_failed">Failed Backup: {time}</string>
<string name="settings__backup__status_running">Running</string>
<string name="settings__backup__status_success">Latest Backup: {time}</string>
<string name="settings__backup__title">Back Up Or Restore</string>
<string name="settings__backup__wallet">Back up your wallet</string>
<string name="settings__backup_title">Back up or Restore</string>
<string name="settings__bg__customize">Customize in Android Bitkit Settings</string>
<string name="settings__bg__disabled">Background payments are disabled, because you have denied notifications.</string>
<string name="settings__bg__enabled">Background payments are enabled. You can receive funds even when the app is closed (if your device is connected to the internet).</string>
<string name="settings__bg__include_amount">Include amount in notifications</string>
<string name="settings__bg__intro_desc">Turn on notifications to get paid, even when your Bitkit app is closed.</string>
<string name="settings__bg__intro_title">GET PAID\n<accent>PASSIVELY</accent></string>
<string name="settings__bg__notifications_header">Notifications</string>
<string name="settings__bg__off">Off</string>
<string name="settings__bg__on">On</string>
<string name="settings__bg__privacy_header">Privacy</string>
<string name="settings__bg__setup">Set up in background</string>
<string name="settings__bg__switch_title">Get paid when Bitkit is closed</string>
<string name="settings__bg__title">Background Payments</string>
<string name="settings__cs__bnb_desc">Finds exact amount matches to minimize change</string>
<string name="settings__cs__bnb_title">Branch and Bound</string>
<string name="settings__cs__srd_desc">Random selection for privacy</string>
<string name="settings__cs__srd_title">Single Random Draw</string>
<string name="settings__dev_disabled_message">Developer options are now disabled throughout the app.</string>
<string name="settings__dev_disabled_title">Dev Options Disabled</string>
<string name="settings__dev_enabled_message">Developer options are now enabled throughout the app.</string>
<string name="settings__dev_enabled_title">Dev Options Enabled</string>
<string name="settings__dev_title">Dev Settings</string>
<string name="settings__es__button_connect">Connect To Host</string>
<string name="settings__es__button_reset">Reset To Default</string>
<string name="settings__es__connected_to">Currently connected to</string>
<string name="settings__es__disconnected">disconnected</string>
<string name="settings__es__error_host">Please specify a host to connect to.</string>
<string name="settings__es__error_host_port">Please specify a host and port to connect to.</string>
<string name="settings__es__error_invalid_http">Please specify a valid url.</string>
<string name="settings__es__error_peer">Electrum Error</string>
<string name="settings__es__error_port">Please specify a port to connect to.</string>
<string name="settings__es__error_port_invalid">Please specify a valid port.</string>
<string name="settings__es__host">Host</string>
<string name="settings__es__port">Port</string>
<string name="settings__es__protocol">Protocol</string>
<string name="settings__es__server_error">Electrum Connection Failed</string>
<string name="settings__es__server_error_description">Bitkit could not establish a connection to Electrum.</string>
<string name="settings__es__server_updated_message">Successfully connected to {host}:{port}</string>
<string name="settings__es__server_updated_title">Electrum Server Updated</string>
<string name="settings__fee__custom__description">Depends on fee</string>
<string name="settings__fee__custom__label">Custom</string>
<string name="settings__fee__custom__value">Custom</string>
<string name="settings__fee__fast__description">± 10-20 minutes</string>
<string name="settings__fee__fast__label">Fast (more expensive)</string>
<string name="settings__fee__fast__value">Fast</string>
<string name="settings__fee__normal__description">± 20-60 minutes</string>
<string name="settings__fee__normal__label">Normal</string>
<string name="settings__fee__normal__value">Normal</string>
<string name="settings__fee__slow__description">± 1-2 hours</string>
<string name="settings__fee__slow__label">Slow (cheaper)</string>
<string name="settings__fee__slow__value">Slow </string>
<string name="settings__general__currency_footer">Prices powered by Bitfinex & CoinGecko.</string>
<string name="settings__general__currency_local">Local currency</string>
<string name="settings__general__currency_local_title">Local Currency</string>
<string name="settings__general__currency_most_used">Most Used</string>
<string name="settings__general__currency_other">Other Currencies</string>
<string name="settings__general__denomination_classic">Classic (₿ 0.00010000)</string>
<string name="settings__general__denomination_label">Bitcoin denomination</string>
<string name="settings__general__denomination_modern">Modern (₿ 10 000)</string>
<string name="settings__general__speed">Transaction speed</string>
<string name="settings__general__speed_default">Default Transaction Speed</string>
<string name="settings__general__speed_fee_custom">Set Custom Fee</string>
<string name="settings__general__speed_fee_total">₿ {feeSats} for the average transaction</string>
<string name="settings__general__speed_fee_total_fiat">₿ {feeSats} for the average transaction ({fiatSymbol}{fiatFormatted})</string>
<string name="settings__general__speed_title">Transaction Speed</string>
<string name="settings__general__tags">Tags</string>
<string name="settings__general__tags_previously">Previously used tags</string>
<string name="settings__general__unit">Default unit</string>
<string name="settings__general__unit_bitcoin">Bitcoin</string>
<string name="settings__general__unit_display">Display amounts in</string>
<string name="settings__general__unit_note">Tip: Quickly toggle between Bitcoin and {currency} by tapping on your wallet balance.</string>
<string name="settings__general__unit_title">Default Unit</string>
<string name="settings__general_title">General</string>
<string name="settings__language_title">Language</string>
<string name="settings__quickpay__intro__description">Bitkit QuickPay makes checking out faster by automatically paying QR codes when scanned.</string>
<string name="settings__quickpay__intro__title"><accent>Frictionless</accent>\npayments</string>
<string name="settings__quickpay__nav_title">QuickPay</string>
<string name="settings__quickpay__settings__label">Quickpay threshold</string>
<string name="settings__quickpay__settings__note">* Bitkit QuickPay exclusively supports payments from your Spending Balance.</string>
<string name="settings__quickpay__settings__text">If enabled, scanned invoices below ${amount} will be paid automatically without requiring your confirmation or PIN*.</string>
<string name="settings__quickpay__settings__toggle">Enable QuickPay</string>
<string name="settings__rgs__button_connect">Connect</string>
<string name="settings__rgs__server_url">Rapid-Gossip-Sync Server URL</string>
<string name="settings__rgs__update_success_description">You may need to restart the app once or twice for this change to take effect.</string>
<string name="settings__rgs__update_success_title">Rapid-Gossip-Sync Server Updated</string>
<string name="settings__security__clipboard">Read clipboard for ease of use</string>
<string name="settings__security__footer">When enabled, you can use {biometryTypeName} instead of your PIN code to unlock your wallet or send payments.</string>
<string name="settings__security__hide_balance_on_open">Hide balance on open</string>
<string name="settings__security__pin">PIN Code</string>
<string name="settings__security__pin_change">Change PIN Code</string>
<string name="settings__security__pin_disabled">Disabled</string>
<string name="settings__security__pin_enabled">Enabled</string>
<string name="settings__security__pin_payments">Require PIN for payments</string>
<string name="settings__security__swipe_balance_to_hide">Swipe balance to hide</string>
<string name="settings__security__use_bio">Use {biometryTypeName} instead</string>
<string name="settings__security__warn_100">Warn when sending over $100</string>
<string name="settings__security_title">Security and Privacy</string>
<string name="settings__settings">Settings</string>
<string name="settings__status__backup__error">Failed to complete a full backup</string>
<string name="settings__status__backup__pending">Backing up...</string>
<string name="settings__status__backup__ready">Backed up</string>
<string name="settings__status__backup__title">Latest Full Data Backup</string>
<string name="settings__status__electrum__error">Could not connect to Electrum</string>
<string name="settings__status__electrum__pending">Connecting...</string>
<string name="settings__status__electrum__ready">Connected</string>
<string name="settings__status__electrum__title">Bitcoin Node</string>
<string name="settings__status__internet__error">Disconnected</string>
<string name="settings__status__internet__pending">Reconnecting...</string>
<string name="settings__status__internet__ready">Connected</string>
<string name="settings__status__internet__title">Internet</string>
<string name="settings__status__lightning_connection__error">No open connections</string>
<string name="settings__status__lightning_connection__pending">Opening...</string>
<string name="settings__status__lightning_connection__ready">Open</string>
<string name="settings__status__lightning_connection__title">Lightning Connection</string>
<string name="settings__status__lightning_node__error">Could not initiate</string>
<string name="settings__status__lightning_node__pending">Syncing...</string>
<string name="settings__status__lightning_node__ready">Synced</string>
<string name="settings__status__lightning_node__title">Lightning Node</string>
<string name="settings__status__title">App Status</string>
<string name="settings__support__help">Help Center</string>
<string name="settings__support__label_address">Email address</string>
<string name="settings__support__label_message">Issue or question</string>
<string name="settings__support__link_error">Failed to open support links</string>
<string name="settings__support__placeholder_address">satoshi@satoshi.com</string>
<string name="settings__support__placeholder_message">Describe the issue or ask a question</string>
<string name="settings__support__report">Report Issue</string>
<string name="settings__support__report_text">Please describe the issue you are experiencing or ask a general question.</string>
<string name="settings__support__status">App Status</string>
<string name="settings__support__text">Need help? Report your issue from within Bitkit, visit the help center, check the status, or reach out to us on our social channels.</string>
<string name="settings__support__text_button">Send</string>
<string name="settings__support__text_success">Thank you for contacting us! We will try to get back to you as soon as possible.</string>
<string name="settings__support__text_success_button">OK</string>
<string name="settings__support__text_unsuccess">Something went wrong while trying to send your issue or question. Please try again.</string>
<string name="settings__support__text_unsuccess_button">Try Again</string>
<string name="settings__support__title">Support</string>
<string name="settings__support__title_success">Sent Successfully</string>
<string name="settings__support__title_unsuccess">Failed To Send</string>
<string name="settings__support_title">Support</string>
<string name="settings__widgets__nav_title">Widgets</string>
<string name="settings__widgets__showWidgetTitles">Show Widget Titles</string>
<string name="settings__widgets__showWidgets">Widgets</string>
<string name="slashtags__onboarding_profile1_header">Own your\n<accent>profile</accent></string>
<string name="slashtags__onboarding_profile1_text">Set up your public profile and links, so your Bitkit contacts can reach you or pay you anytime, anywhere.</string>
<string name="slashtags__profile">Profile</string>
<string name="slashtags__profile_create">Create Profile</string>
<string name="sweep__balance_format">%1$s sats</string>
<string name="sweep__checking_description">Please wait while Bitkit looks for funds in unsupported addresses (Legacy, Nested SegWit, and Taproot).</string>
<string name="sweep__checking_loading">LOOKING FOR FUNDS...</string>
<string name="sweep__confirm_broadcasting">BROADCASTING…</string>
<string name="sweep__confirm_nav_title">Confirm Sweep</string>
<string name="sweep__confirm_preparing">PREPARING…</string>
<string name="sweep__confirm_retry">Retry</string>
<string name="sweep__confirm_swipe">Swipe to confirm</string>
<string name="sweep__confirm_to_address">To Address</string>
<string name="sweep__custom_fee_nav_title">Custom Fee</string>
<string name="sweep__custom_fee_total">for this transaction</string>
<string name="sweep__error_title">Error</string>
<string name="sweep__fee_nav_title">Network Fee</string>
<string name="sweep__found_description">Bitkit found funds in unsupported addresses (Legacy, Nested SegWit, and Taproot).</string>
<string name="sweep__found_label">FUNDS FOUND</string>
<string name="sweep__found_title">Found Funds</string>
<string name="sweep__legacy_title">Legacy (P2PKH)</string>
<string name="sweep__nav_title">Sweep Funds</string>
<string name="sweep__no_funds_description">Bitkit checked unsupported address types and found no funds to sweep.</string>
<string name="sweep__no_funds_title">No Funds To Sweep</string>
<string name="sweep__prompt_description">Bitkit found funds on unsupported Bitcoin address types. Sweep to move the funds to your new wallet balance.</string>
<string name="sweep__prompt_sweep">Sweep</string>
<string name="sweep__prompt_title">SWEEP OLD\n<accent>BITKIT FUNDS</accent></string>
<string name="sweep__segwit_title">SegWit (P2SH)</string>
<string name="sweep__success_description">Your funds have been swept and will be added to your wallet balance.</string>
<string name="sweep__success_nav_title">Sweep Complete</string>
<string name="sweep__success_wallet_overview">Wallet Overview</string>
<string name="sweep__taproot_title">Taproot (P2TR)</string>
<string name="sweep__to_wallet">Sweep To Wallet</string>
<string name="sweep__total">Total</string>
<string name="sweep__utxo_format">%1$s, %2$d UTXO</string>
<string name="sweep__utxos_format">%1$s, %2$d UTXOs</string>
<string name="wallet__activity">Activity</string>
<string name="wallet__activity_address">Address</string>
<string name="wallet__activity_all">All Activity</string>
<string name="wallet__activity_assign">Assign</string>
<string name="wallet__activity_bitcoin_received">Received Bitcoin</string>
<string name="wallet__activity_bitcoin_sent">Sent Bitcoin</string>
<string name="wallet__activity_boost">Boost</string>
<string name="wallet__activity_boost_fee">Boost Fee</string>
<string name="wallet__activity_boost_fee_description">Boosted incoming transaction</string>
<string name="wallet__activity_boosted">Already Boosted</string>
<string name="wallet__activity_boosted_cpfp">BOOSTED TRANSACTION {num} (CPFP)</string>
<string name="wallet__activity_boosted_rbf">BOOSTED TRANSACTION {num} (RBF)</string>
<string name="wallet__activity_boosting">Boosting</string>
<string name="wallet__activity_confirmed">Confirmed</string>
<string name="wallet__activity_confirming">Confirming</string>
<string name="wallet__activity_confirms_in">Confirms in {feeRateDescription}</string>
<string name="wallet__activity_date">Date</string>
<string name="wallet__activity_error_load_failed">Failed to load activity</string>
<string name="wallet__activity_error_not_found">Activity not found</string>
<string name="wallet__activity_explore">Explore</string>
<string name="wallet__activity_explorer">Open Block Explorer</string>
<string name="wallet__activity_failed">Failed</string>
<string name="wallet__activity_fee">Fee</string>
<string name="wallet__activity_fee_prepaid">Fee (prepaid)</string>
<string name="wallet__activity_input">{count, plural, one {INPUT} other {INPUTS (#)}}</string>
<string name="wallet__activity_invoice">Invoice</string>
<string name="wallet__activity_invoice_note">Invoice note</string>
<string name="wallet__activity_next_month">Next month</string>
<string name="wallet__activity_no">No activity yet</string>
<string name="wallet__activity_no_explain">Receive some funds to get started</string>
<string name="wallet__activity_output">{count, plural, one {OUTPUT} other {OUTPUTS (#)}}</string>
<string name="wallet__activity_payment">Payment</string>
<string name="wallet__activity_payment_hash">Payment hash</string>
<string name="wallet__activity_pending">Pending</string>
<string name="wallet__activity_preimage">Preimage</string>
<string name="wallet__activity_previous_month">Previous month</string>
<string name="wallet__activity_received">Received</string>
<string name="wallet__activity_removed">Removed from Mempool</string>
<string name="wallet__activity_sent">Sent</string>
<string name="wallet__activity_sent_self">Sent to myself</string>
<string name="wallet__activity_show_all">Show All Activity</string>
<string name="wallet__activity_status">Status</string>
<string name="wallet__activity_successful">Successful</string>
<string name="wallet__activity_tabs__all">All</string>
<string name="wallet__activity_tabs__other">Other</string>
<string name="wallet__activity_tabs__received">Received</string>
<string name="wallet__activity_tabs__sent">Sent</string>
<string name="wallet__activity_tag">Tag</string>
<string name="wallet__activity_time">Time</string>
<string name="wallet__activity_transfer">Transfer</string>
<string name="wallet__activity_transfer_pending">Transfer ({duration})</string>
<string name="wallet__activity_transfer_savings_done">From Spending</string>
<string name="wallet__activity_transfer_savings_pending">From Spending ({duration})</string>
<string name="wallet__activity_transfer_spending_done">From Savings</string>
<string name="wallet__activity_transfer_spending_pending">From Savings ({duration})</string>
<string name="wallet__activity_transfer_to_savings">To Savings</string>
<string name="wallet__activity_transfer_to_spending">To Spending</string>
<string name="wallet__activity_tx_id">Transaction ID</string>
<string name="wallet__boost">Boost</string>
<string name="wallet__boost_decrease_fee">Reduce fee</string>
<string name="wallet__boost_error_msg">Bitkit was unable to boost the transaction.</string>
<string name="wallet__boost_error_title">Boost Failed</string>
<string name="wallet__boost_fee_custom">Your transaction may settle faster if you include an additional network fee. Set your custom fee below.</string>
<string name="wallet__boost_fee_recomended">Your transaction may settle faster if you include an additional network fee. Here is a recommendation:</string>
<string name="wallet__boost_increase_fee">Increase fee</string>
<string name="wallet__boost_recomended_button">Use Suggested Fee</string>
<string name="wallet__boost_success_msg">The transaction was successfully boosted.</string>
<string name="wallet__boost_success_title">Boosted!</string>
<string name="wallet__boost_swipe">Swipe To Boost</string>
<string name="wallet__boost_title">Boost Transaction</string>
<string name="wallet__details_transfer_subtitle">Incoming Transfer: </string>
<string name="wallet__drawer__activity">Activity</string>
<string name="wallet__drawer__contacts">Contacts</string>
<string name="wallet__drawer__profile">Profile</string>
<string name="wallet__drawer__settings">Settings</string>
<string name="wallet__drawer__shop">Shop</string>
<string name="wallet__drawer__status">App Status</string>
<string name="wallet__drawer__wallet">Wallet</string>
<string name="wallet__drawer__widgets">Widgets</string>
<string name="wallet__error_invalid_bitcoin_address">Invalid bitcoin send address</string>
<string name="wallet__error_invoice_update">Error updating invoice</string>
<string name="wallet__error_lnurl_invoice_fetch">Error fetching lnurl invoice</string>
<string name="wallet__error_sending_title">Error Sending</string>
<string name="wallet__filter_apply">Apply</string>
<string name="wallet__filter_clear">Clear</string>
<string name="wallet__filter_title">Select Range</string>
<string name="wallet__instant_payment_received">Received Instant Bitcoin</string>
<string name="wallet__ldk_start_error_title">Lightning Startup Error</string>
<string name="wallet__lnurl_p_title">Pay Bitcoin</string>
<string name="wallet__lnurl_pay__error_min__description">The minimum amount for this invoice is ₿ {amount}.</string>
<string name="wallet__lnurl_pay__error_min__title">Amount Too Low</string>
<string name="wallet__lnurl_pay_confirm__comment">Comment</string>
<string name="wallet__lnurl_pay_confirm__comment_placeholder">Optional comment to receiver</string>
<string name="wallet__lnurl_w_button">Withdraw</string>
<string name="wallet__lnurl_w_max">AvailablE TO WITHDRAW</string>
<string name="wallet__lnurl_w_text">The funds you withdraw will be deposited into your Bitkit spending balance.</string>
<string name="wallet__lnurl_w_title">Withdraw Bitcoin</string>
<string name="wallet__max_possible_fee_rate">Fee Exceeds Maximum Limit</string>
<string name="wallet__max_possible_fee_rate_msg">Lower the custom fee and try again.</string>
<string name="wallet__min_possible_fee_rate">Fee Below Minimum Limit</string>
<string name="wallet__min_possible_fee_rate_msg">Increase the custom fee and try again.</string>
<string name="wallet__minimum">MINIMUM</string>
<string name="wallet__note">Note</string>
<string name="wallet__payment_received">Received Bitcoin</string>
<string name="wallet__peer_disconnected">Peer disconnected.</string>
<string name="wallet__receive">Receive</string>
<string name="wallet__receive__cjit">Receive Lightning funds</string>
<string name="wallet__receive_bitcoin">Receive Bitcoin</string>
<string name="wallet__receive_bitcoin_invoice">Bitcoin invoice</string>
<string name="wallet__receive_connect_additional">To receive more instant Bitcoin, Bitkit has to increase your liquidity. A <accent>{networkFee}</accent> network fee and <accent>{serviceFee}</accent> service provider fee will be deducted from the amount you specified.</string>
<string name="wallet__receive_connect_initial">To set up your spending balance, a <accent>{networkFee}</accent> network fee and <accent>{serviceFee}</accent> service provider fee will be deducted.</string>
<string name="wallet__receive_copied">Invoice copied to clipboard</string>
<string name="wallet__receive_lightning_invoice">Lightning invoice</string>
<string name="wallet__receive_liquidity__bg_setup_desc">Enable background setup to safely exit Bitkit while your balance is being configured.</string>
<string name="wallet__receive_liquidity__bg_setup_switch">Set up in background</string>
<string name="wallet__receive_liquidity__label">Spending Balance Liquidity</string>
<string name="wallet__receive_liquidity__label_additional">Additional Spending Balance Liquidity</string>
<string name="wallet__receive_liquidity__nav_title">Spending Balance Setup</string>
<string name="wallet__receive_liquidity__nav_title_additional">Increase Receiving Capacity</string>
<string name="wallet__receive_liquidity__text">Your Spending Balance uses the Lightning Network to make your payments cheaper, faster, and more private.\n\nThis works like internet access, but you pay for liquidity & routing instead of bandwidth.\n\nThis setup includes some one-time costs.</string>
<string name="wallet__receive_liquidity__text_additional">Your Spending Balance uses the Lightning Network to make your payments cheaper, faster, and more private.\n\nThis works like internet access, but you pay for liquidity & routing instead of bandwidth.\n\nBitkit needs to increase the receiving capacity of your spending balance to process this payment.</string>
<string name="wallet__receive_note_placeholder">Optional note to payer</string>
<string name="wallet__receive_onboarding_description">Enjoy instant and cheap\ntransactions with friends, family,\nand merchants.</string>
<string name="wallet__receive_onboarding_title">Receive on <accent>spending balance</accent></string>
<string name="wallet__receive_show_details">Show Details</string>
<string name="wallet__receive_show_qr">Show QR Code</string>
<string name="wallet__receive_specify">Edit Invoice</string>
<string name="wallet__receive_tab_auto">Auto</string>
<string name="wallet__receive_tab_savings">Savings</string>
<string name="wallet__receive_tab_spending">Spending</string>
<string name="wallet__receive_will">You will receive</string>
<string name="wallet__recipient_contact">Contact</string>
<string name="wallet__recipient_invoice">Paste Invoice</string>
<string name="wallet__recipient_manual">Enter Manually</string>
<string name="wallet__recipient_scan">Scan QR</string>
<string name="wallet__savings__onboarding"><accent>Send\nbitcoin</accent>\nto your\nsavings balance</string>
<string name="wallet__savings__title">Savings</string>
<string name="wallet__selection_auto">Auto</string>
<string name="wallet__selection_title">Coin Selection</string>
<string name="wallet__selection_total_required">Total required</string>
<string name="wallet__selection_total_selected">Total selected</string>
<string name="wallet__send">Send</string>
<string name="wallet__send_address_placeholder">Enter an invoice, address, or profile key</string>
<string name="wallet__send_amount">Bitcoin Amount</string>
<string name="wallet__send_available">Available</string>
<string name="wallet__send_available_savings">Available (savings)</string>
<string name="wallet__send_available_spending">Available (spending)</string>
<string name="wallet__send_bitcoin">Send Bitcoin</string>
<string name="wallet__send_clipboard_empty_text">Please copy an address or an invoice.</string>
<string name="wallet__send_clipboard_empty_title">Clipboard Empty</string>
<string name="wallet__send_confirming_in">Confirming in</string>
<string name="wallet__send_details">Details</string>
<string name="wallet__send_dialog1">It appears you are sending over $100. Do you want to continue?</string>
<string name="wallet__send_dialog2">It appears you are sending over 50% of your total balance. Do you want to continue?</string>
<string name="wallet__send_dialog3">The transaction fee appears to be over 50% of the amount you are sending. Do you want to continue?</string>
<string name="wallet__send_dialog4">The transaction fee appears to be over $10. Do you want to continue?</string>
<string name="wallet__send_error_create_tx">Unable to broadcast the transaction. Please try again.</string>
<string name="wallet__send_error_tx_failed">Transaction Failed</string>
<string name="wallet__send_fee_and_speed">Speed and fee</string>
<string name="wallet__send_fee_custom">Set Custom Fee</string>
<string name="wallet__send_fee_error">Fee Invalid</string>
<string name="wallet__send_fee_error_max">Unable to increase the fee any further. Otherwise, it will exceed half the current input balance.</string>
<string name="wallet__send_fee_error_min">Unable to decrease the fee any further.</string>
<string name="wallet__send_fee_speed">Speed</string>
<string name="wallet__send_fee_total">₿ {feeSats} for this transaction</string>
<string name="wallet__send_fee_total_fiat">₿ {feeSats} for this transaction ({fiatSymbol}{fiatFormatted})</string>
<string name="wallet__send_invoice">Invoice</string>
<string name="wallet__send_invoice_expiration">Invoice expiration</string>
<string name="wallet__send_max">MAX</string>
<string name="wallet__send_max_spending__description">The maximum spendable amount is a bit lower due to a required reserve balance.</string>
<string name="wallet__send_max_spending__title">Reserve Balance</string>
<string name="wallet__send_quickpay__nav_title">QuickPay</string>
<string name="wallet__send_quickpay__title">Paying\n<accent>invoice...</accent></string>
<string name="wallet__send_review">Review & Send</string>
<string name="wallet__send_sent">Bitcoin Sent</string>
<string name="wallet__send_swipe">Swipe To Pay</string>
<string name="wallet__send_to">To</string>
<string name="wallet__send_yes">Yes, Send</string>
<string name="wallet__spending__onboarding"><accent>Send\nbitcoin</accent>\nto your\nspending balance</string>
<string name="wallet__spending__title">Spending</string>
<string name="wallet__tags">Tags</string>
<string name="wallet__tags_add">Add Tag</string>
<string name="wallet__tags_add_button">Add</string>
<string name="wallet__tags_filter">Filter activity using tags</string>
<string name="wallet__tags_filter_title">Select Tag</string>
<string name="wallet__tags_new">New tag</string>
<string name="wallet__tags_new_enter">Enter a new tag</string>
<string name="wallet__tags_previously">Previously used tags</string>
<string name="wallet__toast_payment_failed_description">Your instant payment failed. Please try again.</string>
<string name="wallet__toast_payment_failed_title">Payment Failed</string>
<string name="wallet__toast_received_transaction_replaced_description">Your received transaction was replaced by a fee bump</string>
<string name="wallet__toast_received_transaction_replaced_title">Received Transaction Replaced</string>
<string name="wallet__toast_transaction_removed_description">Transaction was removed from mempool</string>
<string name="wallet__toast_transaction_removed_title">Transaction Removed</string>
<string name="wallet__toast_transaction_replaced_description">Your transaction was replaced by a fee bump</string>
<string name="wallet__toast_transaction_replaced_title">Transaction Replaced</string>
<string name="wallet__toast_transaction_unconfirmed_description">Transaction became unconfirmed due to blockchain reorganization</string>
<string name="wallet__toast_transaction_unconfirmed_title">Transaction Unconfirmed</string>
<string name="wallet__transfer_to_savings">Transfer To Savings</string>
<string name="wallet__transfer_to_spending">Transfer To Spending</string>
<string name="wallet__withdraw_error">Your withdrawal was unsuccessful. Please scan the QR code again or contact support.</string>
<string name="widgets__add">Add Widget</string>
<string name="widgets__blocks__description">Examine various statistics on newly mined Bitcoin Blocks.</string>
<string name="widgets__blocks__field__block">Block</string>
<string name="widgets__blocks__field__date">Date</string>
<string name="widgets__blocks__field__size">Size</string>
<string name="widgets__blocks__field__time">Time</string>
<string name="widgets__blocks__field__transactions">Transactions</string>
<string name="widgets__blocks__name">Bitcoin Blocks</string>
<string name="widgets__calculator__description">Convert ₿ amounts to {fiatSymbol} or vice versa.</string>
<string name="widgets__calculator__name">Bitcoin Calculator</string>
<string name="widgets__delete__description">Are you sure you want to delete ‘{name}‘ from your widgets?</string>
<string name="widgets__delete__title">Delete Widget?</string>
<string name="widgets__facts__description">Discover fun facts about Bitcoin, every time you open your wallet.</string>
<string name="widgets__facts__name">Bitcoin Facts</string>
<string name="widgets__news__description">Read the latest & greatest Bitcoin headlines from various news sites.</string>
<string name="widgets__news__name">Bitcoin Headlines</string>
<string name="widgets__onboarding__description">Enjoy decentralized feeds from your favorite web services, by adding fun and useful widgets to your Bitkit wallet.</string>
<string name="widgets__onboarding__title">Hello,\n<accent>Widgets</accent></string>
<string name="widgets__price__description">Check the latest Bitcoin exchange rates for a variety of fiat currencies.</string>
<string name="widgets__price__name">Bitcoin Price</string>
<string name="widgets__weather__condition__average__description">The next block rate is close to the monthly averages.</string>
<string name="widgets__weather__condition__average__title">Average Conditions</string>
<string name="widgets__weather__condition__good__description">All clear. Now would be a good time to transact on the blockchain.</string>
<string name="widgets__weather__condition__good__title">Favorable Conditions</string>
<string name="widgets__weather__condition__poor__description">If you are not in a hurry to transact, it may be better to wait a bit.</string>
<string name="widgets__weather__condition__poor__title">Poor Conditions</string>
<string name="widgets__weather__current_fee">Current average fee</string>
<string name="widgets__weather__description">Find out when it’s a good time to transact on the Bitcoin blockchain.</string>
<string name="widgets__weather__name">Bitcoin Weather</string>
<string name="widgets__weather__next_block">Next block inclusion</string>
<string name="widgets__widget__edit">Widget Feed</string>
<string name="widgets__widget__edit_custom">Custom</string>
<string name="widgets__widget__edit_default">Default</string>
<string name="widgets__widget__edit_description">Please select which fields you want to display in the {name} widget.</string>
<string name="widgets__widget__nav_title">Widget</string>
<string name="widgets__widget__source">Source</string>
<string name="widgets__widgets">Widgets</string>
</resources>