-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstrings.xml
More file actions
1239 lines (1239 loc) · 107 KB
/
Copy pathstrings.xml
File metadata and controls
1239 lines (1239 loc) · 107 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="cards__backupSeedPhrase__title">Back up</string>
<string name="cards__backupSeedPhrase__description">Store your bitcoin</string>
<string name="cards__discount__title">Discount</string>
<string name="cards__discount__description">Spending Balance</string>
<string name="cards__quickpay__title">QuickPay</string>
<string name="cards__quickpay__description">Scan and pay</string>
<string name="cards__invite__title">Invite</string>
<string name="cards__invite__description">Share Bitkit</string>
<string name="cards__lightning__title">Spend</string>
<string name="cards__lightning__description">Instant payments</string>
<string name="cards__lightningSettingUp__title">Transfer</string>
<string name="cards__lightningSettingUp__description">In progress...</string>
<string name="cards__lightningConnecting__title">Connecting</string>
<string name="cards__lightningConnecting__description">Ready in ±10m</string>
<string name="cards__lightningReady__title">Ready</string>
<string name="cards__lightningReady__description">Connected!</string>
<string name="cards__transferPending__title">Transfer</string>
<string name="cards__transferPending__description">Ready in ±{duration}</string>
<string name="cards__transferClosingChannel__title">Initiating</string>
<string name="cards__transferClosingChannel__description">Keep app open</string>
<string name="cards__pin__title">Secure</string>
<string name="cards__pin__description">Set up a PIN code</string>
<string name="cards__shop__title">Shop</string>
<string name="cards__shop__description">Shop with Bitcoin</string>
<string name="cards__slashtagsProfile__title">Profile</string>
<string name="cards__slashtagsProfile__description">Add your details</string>
<string name="cards__support__title">Support</string>
<string name="cards__support__description">Get assistance</string>
<string name="cards__buyBitcoin__title">Buy</string>
<string name="cards__buyBitcoin__description">Buy some bitcoin</string>
<string name="cards__btFailed__title">Failed</string>
<string name="cards__btFailed__description">Please try again</string>
<string name="cards__notifications__title">Get paid</string>
<string name="cards__notifications__description">When Bitkit is closed</string>
<string name="cards__suggestions">Suggestions</string>
<string name="activity_banner__transfer_in_progress">TRANSFER IN PROGRESS</string>
<string name="common__advanced">Advanced</string>
<string name="common__continue">Continue</string>
<string name="common__cancel">Cancel</string>
<string name="common__close">Close</string>
<string name="common__are_you_sure">Are You Sure?</string>
<string name="common__yes_proceed">Yes, Proceed</string>
<string name="common__try_again">Try Again</string>
<string name="common__dialog_cancel">No, Cancel</string>
<string name="common__sat_vbyte">₿ / vbyte</string>
<string name="common__sat_vbyte_compact">₿/vbyte</string>
<string name="common__edit">Edit</string>
<string name="common__copy">Copy</string>
<string name="common__share">Share</string>
<string name="common__search">Search</string>
<string name="common__discard">Discard</string>
<string name="common__save">Save</string>
<string name="common__done">Done</string>
<string name="common__delete">Delete</string>
<string name="common__delete_yes">Yes, Delete</string>
<string name="common__ok">OK</string>
<string name="common__ok_random">Awesome!\nNice!\nCool!\nGreat!\nFantastic!\nSweet!\nExcellent!\nTerrific!</string>
<string name="common__reset">Reset</string>
<string name="common__retry">Retry</string>
<string name="common__later">Later</string>
<string name="common__skip">Skip</string>
<string name="common__copied">Copied To Clipboard</string>
<string name="common__yes">Yes</string>
<string name="common__no">No</string>
<string name="common__back">Back</string>
<string name="common__learn_more">Learn More</string>
<string name="common__never">Never</string>
<string name="common__understood">Understood</string>
<string name="common__connect">Connect</string>
<string name="common__min">Min</string>
<string name="common__max">Max</string>
<string name="common__default">Default</string>
<string name="common__preview">Preview</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="fee__instant__title">Instant</string>
<string name="fee__instant__description">±2-10 seconds</string>
<string name="fee__instant__shortRange">2-10s</string>
<string name="fee__instant__shortDescription">±2s</string>
<string name="fee__fast__title">Fast</string>
<string name="fee__fast__description">±10-20 minutes</string>
<string name="fee__fast__shortRange">10-20m</string>
<string name="fee__fast__shortDescription">±10m</string>
<string name="fee__normal__title">Normal</string>
<string name="fee__normal__description">±20-60 minutes</string>
<string name="fee__normal__shortRange">20-60m</string>
<string name="fee__normal__shortDescription">±20m</string>
<string name="fee__slow__title">Slow</string>
<string name="fee__slow__description">±1-2 hours</string>
<string name="fee__slow__shortRange">1-2h</string>
<string name="fee__slow__shortDescription">±1h</string>
<string name="fee__minimum__title">Minimum</string>
<string name="fee__minimum__description">+2 hours</string>
<string name="fee__minimum__shortRange">+2h</string>
<string name="fee__minimum__shortDescription">+2h</string>
<string name="fee__custom__title">Custom</string>
<string name="fee__custom__description">Depends on the fee</string>
<string name="fee__custom__shortRange">Depends on the fee</string>
<string name="fee__custom__shortDescription">Depends on the fee</string>
<string name="lightning__transfer_intro__title">Spending\n<accent>Balance</accent></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__button">Get Started</string>
<string name="lightning__funding__nav_title">Spending Balance</string>
<string name="lightning__funding__title">Fund your <accent>spending balance</accent></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__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_advanced__nav_title">Spending Balance</string>
<string name="lightning__funding_advanced__title">Advanced <accent>setup</accent></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__button1">LNURL Channel QR</string>
<string name="lightning__funding_advanced__button2">Manual Setup</string>
<string name="lightning__no_funds__title">No Available Funds</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__fund">Fund wallet</string>
<string name="lightning__transfer__nav_title">Transfer Funds</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__swipe">Swipe To Transfer</string>
<string name="lightning__spending_intro__title">Transfer\n<accent>to spending</accent></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__button">Get Started</string>
<string name="lightning__transfer_failed__nav_title">Transfer Failure</string>
<string name="lightning__transfer_failed__title">Transfer\n<accent>failed</accent></string>
<string name="lightning__transfer_failed__text">Sorry, Bitkit could not set up your spending balance or complete your transfer. Please try again.</string>
<string name="lightning__transfer_failed__cancel">Inspect Error</string>
<string name="lightning__transfer_failed__continue">Try Again</string>
<string name="lightning__spending_amount__title">Transfer\n<accent>to spending</accent></string>
<string name="lightning__spending_amount__quarter">25%</string>
<string name="lightning__spending_amount__error_min__title">Savings Balance Minimum</string>
<string name="lightning__spending_amount__error_min__description">A minimum of ₿ {amount} is needed to set up your spending balance.</string>
<string name="lightning__spending_amount__error_max__title">Spending Balance Maximum</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_confirm__network_fee">Network fees</string>
<string name="lightning__spending_confirm__lsp_fee">Service fees</string>
<string name="lightning__spending_confirm__amount">To spending</string>
<string name="lightning__spending_confirm__total">Total</string>
<string name="lightning__spending_confirm__default">Use Defaults</string>
<string name="lightning__spending_advanced__title">Receiving\n<accent>capacity</accent></string>
<string name="lightning__spending_advanced__fee">Liquidity fee</string>
<string name="lightning__liquidity__title">Liquidity\n<accent>& routing</accent></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__label">Spending Balance Liquidity</string>
<string name="lightning__savings_intro__title">Transfer\n<accent>to savings</accent></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__button">Get Started</string>
<string name="lightning__availability__title">Funds\n<accent>availability</accent></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__savings_confirm__label">Transfer to savings</string>
<string name="lightning__savings_confirm__transfer_all">Transfer all</string>
<string name="lightning__savings_advanced__title">Select funds\n<accent>to transfer</accent></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__total">Total selected</string>
<string name="lightning__savings_progress__title">Funds\n<accent>in transfer</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_interrupted__nav_title">Transfer\n<accent>interrupted</accent></string>
<string name="lightning__savings_interrupted__title">Keep Bitkit\n<accent>open</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__transfer_success__nav_title">Transfer Successful</string>
<string name="lightning__transfer_success__title_spending">Funds moved\n<accent>to spending</accent></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__text_savings">Your funds have been transferred. You are able to use these funds immediately.</string>
<string name="lightning__external__nav_title">Lightning Connection</string>
<string name="lightning__external_manual__title"><accent>Manual setup</accent></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__node_id">Node ID</string>
<string name="lightning__external_manual__host">Host</string>
<string name="lightning__external_manual__port">Port</string>
<string name="lightning__external_manual__paste">Paste Node URI</string>
<string name="lightning__external_manual__scan">Scan QR</string>
<string name="lightning__external_amount__title">Spending\n<accent>balance</accent></string>
<string name="lightning__external_success__title">Connection\n<accent>initiated</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__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_channel_receiving">Receiving amount needs to be greater than ${usdValue}</string>
<string name="lightning__spending">Spending</string>
<string name="lightning__savings">Savings</string>
<string name="lightning__spending_label">Spending balance</string>
<string name="lightning__receiving_label">Receiving capacity</string>
<string name="lightning__setting_up_header">In transfer</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__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_button">Continue Using Bitkit</string>
<string name="lightning__node_info">Lightning Node</string>
<string name="lightning__node_id">LDK Node ID</string>
<string name="lightning__node_disconnected">disconnected</string>
<string name="lightning__node_failed">Bitkit failed to initialize the Lightning node.</string>
<string name="lightning__connections">Lightning Connections</string>
<string name="lightning__conn_pending">Pending connections</string>
<string name="lightning__conn_open">Open connections</string>
<string name="lightning__conn_closed">Closed connections</string>
<string name="lightning__conn_failed">Failed connections</string>
<string name="lightning__conn_closed_show">Show Closed & Failed</string>
<string name="lightning__conn_closed_hide">Hide Closed & Failed</string>
<string name="lightning__conn_button_export_logs">Export Logs</string>
<string name="lightning__conn_button_add">Add Connection</string>
<string name="lightning__export_logs">Export Lightning Logs</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__error_invoice">Failed to Create Invoice</string>
<string name="lightning__error_add_title">Unable To Add Lightning Peer</string>
<string name="lightning__error_add">Bitkit could not add the Lightning peer.</string>
<string name="lightning__error_add_uri">The URI appears to be invalid.</string>
<string name="lightning__error_add_tor">Bitkit cannot add Tor nodes.</string>
<string name="lightning__error_save_title">Unable To Save Lightning Peer</string>
<string name="lightning__error_save">Unable to save lightning peer</string>
<string name="lightning__error_decode">Unable To Decode Invoice</string>
<string name="lightning__peer_saved">The Lightning peer was successfully added and saved.</string>
<string name="lightning__invoice_copied">Copied Invoice to Clipboard</string>
<string name="lightning__connection">Connection</string>
<string name="lightning__status">Status</string>
<string name="lightning__order_details">Order Details</string>
<string name="lightning__order">Order ID</string>
<string name="lightning__created_on">Created on</string>
<string name="lightning__order_expiry">Order Expiry</string>
<string name="lightning__transaction">Transaction</string>
<string name="lightning__order_fee">Order fee</string>
<string name="lightning__balance">Balance</string>
<string name="lightning__reserve_balance">Reserve balance (not spendable)</string>
<string name="lightning__total_size">Total channel size</string>
<string name="lightning__fees">Fees</string>
<string name="lightning__base_fee">Spending base fee</string>
<string name="lightning__fee_rate">Fee rate</string>
<string name="lightning__other">Other</string>
<string name="lightning__is_usable">Is Usable</string>
<string name="lightning__opened_on">Opened on</string>
<string name="lightning__closed_on">Closed on</string>
<string name="lightning__channel_node_id">Peer ID</string>
<string name="lightning__channel_id">Channel ID</string>
<string name="lightning__channel_point">Channel point</string>
<string name="lightning__closure_reason">Closure reason</string>
<string name="lightning__support">Support</string>
<string name="lightning__connection_closed__title">Connection Closed</string>
<string name="lightning__connection_closed__description">The funds on your spending balance have been transferred to your savings.</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_title">Transfer Initiated</string>
<string name="lightning__close_success_msg">Your funds are being transferred back to your savings.</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__close_button">Close</string>
<string name="lightning__force_nav_title">Force Transfer</string>
<string name="lightning__force_title">Force\n<accent>Transfer</accent></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_button">Force Transfer</string>
<string name="lightning__force_init_title">Force Transfer Initiated</string>
<string name="lightning__force_init_msg">Your funds will be accessible in ±14 days.</string>
<string name="lightning__force_channels_skipped">Some connections could not be closed.</string>
<string name="lightning__force_failed_title">Force Transfer Failed</string>
<string name="lightning__force_failed_msg">Unable to transfer your funds back to savings. Please try again.</string>
<string name="lightning__channel_opened_title">Spending Balance Ready</string>
<string name="lightning__channel_opened_msg">You can now pay anyone, anywhere, instantly.</string>
<string name="lightning__order_given_up_title">Instant Payments Setup Failed</string>
<string name="lightning__order_given_up_msg">The setup process expired. Please try again.</string>
<string name="lightning__order_expired_title">Instant Payments Setup Failed</string>
<string name="lightning__order_expired_msg">The setup process expired. Please try again.</string>
<string name="lightning__order_state__awaiting_payment">Processing payment</string>
<string name="lightning__order_state__payment_canceled">Payment canceled</string>
<string name="lightning__order_state__paid">Payment successful</string>
<string name="lightning__order_state__refund_available">Refund available</string>
<string name="lightning__order_state__refunded">Payment refunded</string>
<string name="lightning__order_state__queued">Queued for opening</string>
<string name="lightning__order_state__opening">Opening connection</string>
<string name="lightning__order_state__closing">Connection closing</string>
<string name="lightning__order_state__given_up">Given up</string>
<string name="lightning__order_state__expired">Order expired</string>
<string name="lightning__order_state__closed">Connection closed</string>
<string name="lightning__order_state__open">Connection open</string>
<string name="lightning__order_state__inactive">Connection inactive</string>
<string name="lightning__wait_text_top">Please wait for Bitkit to connect to the payment network (±10 seconds).</string>
<string name="lightning__wait_text_bottom">Connecting & Syncing...</string>
<string name="onboarding__tos_header">Bitkit\n<accent>terms of use</accent></string>
<string name="onboarding__tos_checkbox">Terms of use</string>
<string name="onboarding__tos_checkbox_value">I declare that I have read and accept the terms of use.</string>
<string name="onboarding__pp_checkbox">Privacy Policy</string>
<string name="onboarding__pp_checkbox_value">I declare that I have read and accept the <accent>privacy policy.</accent></string>
<string name="onboarding__welcome_title">You can ₿ \n<accent>the change</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__get_started">Get Started</string>
<string name="onboarding__skip_intro">Skip Intro</string>
<string name="onboarding__skip">Skip</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_text">Spend bitcoin faster than ever. Enjoy instant and cheap payments with friends, family, and merchants.</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__slide2_header">Bitcoiners,\n<accent>borderless</accent></string>
<string name="onboarding__slide2_text">Take charge of your digital life with portable profiles and payable contacts.</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__new_wallet">New Wallet</string>
<string name="onboarding__restore">Restore</string>
<string name="onboarding__restore_wallet">Restore Wallet</string>
<string name="onboarding__advanced_setup">Advanced Setup</string>
<string name="onboarding__advanced">Advanced</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__passphrase">Passphrase</string>
<string name="onboarding__create_new_wallet">Create New Wallet</string>
<string name="onboarding__restore_header"><accent>Restore</accent>\nyour wallet</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_inv_checksum">The checksum for the recovery phrase appears to be incorrect. Please double check your recovery phrase.</string>
<string name="onboarding__restore_suggestions">SUGGESTIONS</string>
<string name="onboarding__restore_passphrase_placeholder">Passphrase*</string>
<string name="onboarding__restore_passphrase_meaning">*Optional, enter only if you’ve set up one.</string>
<string name="onboarding__restore_error_title">Wallet Restore Failed</string>
<string name="onboarding__restore_error_description">Bitkit could not restore your wallet from backup or recovery phrase.</string>
<string name="onboarding__loading_header">Setting up\n<accent>your wallet</accent></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_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_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__empty_wallet">To get\nstarted\n<accent>send\nBitcoin</accent>\nto your\nwallet</string>
<string name="onboarding__error_create">Wallet Creation Failed</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="other__qr_scan">Scan QR Code</string>
<string name="other__qr_error_header">Unable To Read QR</string>
<string name="other__qr_error_text">Bitkit is not able to read this QR code.</string>
<string name="other__qr_error_no_data_header">Unable to Read Data</string>
<string name="other__qr_error_no_data_text">Bitkit could not read the provided data.</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_paste">Paste QR Code</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__buy_button">Choose Exchange</string>
<string name="other__error_keychain">Data Connection Issue</string>
<string name="other__error_keychain_msg">Could not load primary key from keychain.</string>
<string name="other__connection_restored_title">Electrum Connection Restored</string>
<string name="other__connection_restored_message">Bitkit successfully reconnected to Electrum.</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__connection_reconnect_title">Reconnecting To Electrum</string>
<string name="other__connection_reconnect_msg">Lost connection to Electrum, trying to reconnect...</string>
<string name="other__connection_back_title">Internet Connection Restored</string>
<string name="other__connection_back_msg">Bitkit successfully reconnected to the Internet.</string>
<string name="other__high_balance__nav_title">High Balance</string>
<string name="other__high_balance__title">High\n<accent>Balance</accent></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__continue">Understood</string>
<string name="other__high_balance__cancel">Learn More</string>
<string name="other__update_critical_nav_title">Critical Update</string>
<string name="other__update_critical_title">Update\n<accent>Bitkit now</accent></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_button">Update Bitkit</string>
<string name="other__camera_ask_title">Permission to use camera</string>
<string name="other__camera_ask_msg">Bitkit needs permission to use your camera</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__clipboard_redirect_title">Clipboard Data Detected</string>
<string name="other__clipboard_redirect_msg">Do you want to be redirected to the relevant screen?</string>
<string name="other__pay_insufficient_savings">Insufficient Savings</string>
<string name="other__pay_insufficient_spending">Insufficient Spending Balance</string>
<string name="other__pay_insufficient_savings_description">More ₿ needed to pay this Bitcoin invoice.</string>
<string name="other__pay_insufficient_savings_amount_description">₿ {amount} more needed to pay this Bitcoin invoice.</string>
<string name="other__pay_insufficient_spending_amount_description">₿ {amount} more needed to pay this Lightning invoice.</string>
<string name="other__swipe">Swipe To Confirm</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__scan_err_not_payable_msg">This QR code does not appear to contain payment data.</string>
<string name="other__rate_error_title">Bitcoin Price Update Failed</string>
<string name="other__rate_error_msg_date">Bitkit could not update the current Bitcoin exchange rate. Using price from {date}</string>
<string name="other__rate_error_msg_nodate">Bitkit could not update the current Bitcoin exchange rate. Please try again later.</string>
<string name="other__lnurl_pay_error">Unable To Pay (LNURL)</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_no_capacity">Not enough outbound/sending capacity to complete lnurl-pay request.</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_title">New\nlightning\n<accent>connection</accent></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_lsp">Lightning service provider</string>
<string name="other__lnurl_channel_node">Node ID</string>
<string name="other__lnurl_channel_host">Host</string>
<string name="other__lnurl_channel_port">Port</string>
<string name="other__lnurl_blocktank_error">Bitkit could not connect to Blocktank.</string>
<string name="other__lnurl_channel_success_title">Channel Requested</string>
<string name="other__lnurl_channel_success_msg_peer">Successfully requested channel from: {peer}</string>
<string name="other__lnurl_channel_success_msg_no_peer">Successfully requested channel.</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_success_title">Signed 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_withdr_error">Withdraw Failed (LNURL)</string>
<string name="other__lnurl_withdr_error_generic">Sorry, an error occurred.</string>
<string name="other__lnurl_withdr_error_no_capacity">Not enough receiving capacity to complete withdraw request.</string>
<string name="other__lnurl_withdr_error_create_invoice">Could not create invoice for withdraw.</string>
<string name="other__lnurl_withdr_error_minmax">Incorrect LNURL withdraw params, min/max not set correctly.</string>
<string name="other__lnurl_withdr_success_title">Withdraw Requested</string>
<string name="other__lnurl_withdr_success_msg">Your withdraw was successfully requested. Waiting for payment.</string>
<string name="other__phone_settings">Open Phone Settings</string>
<string name="other__bt_error_retrieve">Transfer Failed</string>
<string name="other__bt_error_connect">Unable to add LSP node as a peer at this time.</string>
<string name="other__bt_error_retrieve_msg">An error occurred when moving funds. {raw}</string>
<string name="other__bt_channel_purchase_cost_error">You need {delta} more to complete this transaction.</string>
<string name="other__earlier">EARLIER</string>
<string name="other__update_nav_title">Update Available</string>
<string name="other__update_title">Update\n<accent>Bitkit</accent></string>
<string name="other__update_text">Please update Bitkit to the latest version for new features and bug fixes!</string>
<string name="other__update_button">Update</string>
<string name="other__try_again">Please try again.</string>
<string name="other__transfer_notification__title">Important: Bitkit Transfer</string>
<string name="other__transfer_notification__body">Open Bitkit to complete your transfer</string>
<string name="other__scan__error__generic">Bitkit is unable to read the provided data.</string>
<string name="other__scan__error__expired">This Lightning invoice has expired.</string>
<string name="other__gift__claiming__title">Claiming Gift</string>
<string name="other__gift__claiming__text">Claiming your Bitkit gift code...</string>
<string name="other__gift__error__title">Gift Code Error</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__button">OK</string>
<string name="other__gift__used__title">Used Code</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__button">OK</string>
<string name="other__gift__used_up__title">Out of Gifts</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__shop__intro__title">Shop</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__button">Get Started</string>
<string name="other__shop__discover__nav_title">Shop</string>
<string name="other__shop__discover__tabs__shop">Shop</string>
<string name="other__shop__discover__tabs__map">Map</string>
<string name="other__shop__discover__label">Gift card categories</string>
<string name="other__shop__discover__gift_cards__title">Gift Cards</string>
<string name="other__shop__discover__gift_cards__description">Shop with Bitcoin</string>
<string name="other__shop__discover__esims__title">ESims</string>
<string name="other__shop__discover__esims__description">Go borderless</string>
<string name="other__shop__discover__refill__title">Phone Refill</string>
<string name="other__shop__discover__refill__description">Top up your phone</string>
<string name="other__shop__discover__travel__title">Travel</string>
<string name="other__shop__discover__travel__description">Book your ₿ holiday</string>
<string name="other__shop__main__nav_title">Shop</string>
<string name="security__backup_wallet">Wallet Backup</string>
<string name="security__backup_title"><accent>Safely store</accent> your Bitcoin</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_button">Back Up</string>
<string name="security__pass">passphrase</string>
<string name="security__pass_your">Your Passphrase</string>
<string name="security__pass_text">You added a passphrase to your recovery phrase during wallet setup.</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_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_recovery"><accent>Passphrase:</accent> {passphrase}</string>
<string name="security__mnemonic_phrase">Mnemonic Phrase</string>
<string name="security__mnemonic_your">Your Recovery Phrase</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_write">Write down these {length} words in the right order and store them in a safe place.</string>
<string name="security__mnemonic_use">Use the 12 words below to recover your money at a later date.</string>
<string name="security__mnemonic_reveal">Tap To Reveal</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_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_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_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_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_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_latest_backup"><bold>Latest data backup:</bold> {time}</string>
<string name="security__pin_security_header">Increase Security</string>
<string name="security__pin_security_title"><accent>Protect</accent>\nyour bitcoin</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_button">Secure Wallet</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_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_not_match">Try again, this is not the same PIN.</string>
<string name="security__pin_disable_title">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_button">Disable PIN</string>
<string name="security__pin_enter">Please enter your PIN code</string>
<string name="security__pin_last_attempt">Last attempt. Entering the wrong PIN again will reset your wallet.</string>
<string name="security__pin_attempts">{attemptsRemaining} attempts remaining. Forgot your PIN?</string>
<string name="security__pin_forgot_title">Forgot PIN?</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_reset">Reset (Requires Recovery Phrase)</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__bio">Biometrics</string>
<string name="security__bio_auth_with">Authenticate with {biometricsName}</string>
<string name="security__bio_no">It appears that your device does not support Biometric security.</string>
<string name="security__bio_face_id">Face ID</string>
<string name="security__bio_touch_id">Touch ID</string>
<string name="security__bio_confirm">Confirm {biometricsName}</string>
<string name="security__bio_error_title">Biometrics Setup Failed</string>
<string name="security__bio_error_message">Bitkit could not set up {type} for your device.</string>
<string name="security__bio_loading">Loading...</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_ask">PIN code set. Would you like to use {biometricsName} instead of your PIN code?</string>
<string name="security__bio_use">Use {biometricsName}</string>
<string name="security__bio_phone_settings">Phone Settings</string>
<string name="security__success_title">Wallet Secured</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__reset_title">Reset And Restore</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_button_backup">Back Up First</string>
<string name="security__reset_button_reset">Reset Wallet</string>
<string name="security__reset_dialog_title">Reset Bitkit?</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_confirm">Yes, Reset</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__display_seed">Show Seed Phrase</string>
<string name="security__contact_support">Contact Support</string>
<string name="security__wipe_app">Wipe App</string>
<string name="security__close_app">Close Bitkit</string>
<string name="security__export_title">Export To Phone</string>
<string name="security__export_text">You can export a copy of your wallet data as a .ZIP file. This file is encrypted with the password you set below.</string>
<string name="security__export_password">Password</string>
<string name="security__export_button">Export</string>
<string name="security__export_share">Share backup file</string>
<string name="security__export_success_title">Backup Exported</string>
<string name="security__export_success_msg">Bitkit successfully exported the backup file to your phone.</string>
<string name="security__export_error_title">Backup Failed</string>
<string name="security__export_error_msg">Bitkit could not export the backup file to your phone.</string>
<string name="security__export_error_file">Bitkit could not create the backup file.</string>
<string name="security__cp_title">Change 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_retype_title">Retype New PIN</string>
<string name="security__cp_retype_text">Please retype your 4-digit PIN to complete the setup process.</string>
<string name="security__cp_setnew_title">Set 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_try_again">Try again, this is not the same PIN.</string>
<string name="security__cp_changed_title">PIN changed</string>
<string name="security__cp_changed_text">You have successfully changed your PIN to a new 4-digit combination.</string>
<string name="security__use_pin">Use PIN code</string>
<string name="security__wiped_title">Wallet Data Deleted</string>
<string name="security__wiped_message">Bitkit has been reset and all wallet data has been deleted.</string>
<string name="security__authorization__title">Authorization</string>
<string name="security__authorization__description">Make sure you trust this service before granting permission to manage your data.</string>
<string name="security__authorization__authorize">Authorize</string>
<string name="security__authorization__deny">Deny</string>
<string name="security__authorization__authorizing">Authorizing...</string>
<string name="security__authorization__success">Success</string>
<string name="security__authorization__claims">This service claims to be</string>
<string name="security__authorization__requested_permissions">Requested Permissions</string>
<string name="security__authorization__pubky_secret_error_title">Pubky Error</string>
<string name="security__authorization__pubky_secret_error_description">Unable to retrieve Pubky key</string>
<string name="security__authorization__pubky_auth_error_title">Pubky Auth Error</string>
<string name="security__authorization__pubky_auth_error_description">Unable to auth with Pubky service</string>
<string name="settings__settings">Settings</string>
<string name="settings__dev_enabled_title">Dev Options Enabled</string>
<string name="settings__dev_enabled_message">Developer options are now enabled throughout the app.</string>
<string name="settings__dev_disabled_title">Dev Options Disabled</string>
<string name="settings__dev_disabled_message">Developer options are now disabled throughout the app.</string>
<string name="settings__general_title">General</string>
<string name="settings__security_title">Security and Privacy</string>
<string name="settings__backup_title">Back up or Restore</string>
<string name="settings__advanced_title">Advanced</string>
<string name="settings__about_title">About</string>
<string name="settings__support_title">Support</string>
<string name="settings__about__title">About Bitkit</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__legal">Legal</string>
<string name="settings__about__share">Share</string>
<string name="settings__about__version">Version</string>
<string name="settings__about__shareText">Change your wallet, change the world. Download Bitkit for iPhone {appStoreUrl} or Android {playStoreUrl}</string>
<string name="settings__dev_title">Dev Settings</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_footer">Prices powered by Bitfinex & CoinGecko.</string>
<string name="settings__general__currency_most_used">Most Used</string>
<string name="settings__general__currency_other">Other Currencies</string>
<string name="settings__general__unit">Default unit</string>
<string name="settings__general__unit_title">Default Unit</string>
<string name="settings__general__unit_display">Display amounts in</string>
<string name="settings__general__unit_bitcoin">Bitcoin</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__denomination_label">Bitcoin denomination</string>
<string name="settings__general__denomination_modern">Modern (₿ 10 000)</string>
<string name="settings__general__denomination_classic">Classic (₿ 0.00010000)</string>
<string name="settings__general__speed">Transaction speed</string>
<string name="settings__general__speed_title">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__tags">Tags</string>
<string name="settings__general__tags_previously">Previously used tags</string>
<string name="settings__widgets__nav_title">Widgets</string>
<string name="settings__widgets__showWidgets">Widgets</string>
<string name="settings__widgets__showWidgetTitles">Show Widget Titles</string>
<string name="settings__quickpay__nav_title">QuickPay</string>
<string name="settings__quickpay__intro__title"><accent>Frictionless</accent>\npayments</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__settings__toggle">Enable QuickPay</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__label">Quickpay threshold</string>
<string name="settings__quickpay__settings__note">* Bitkit QuickPay exclusively supports payments from your Spending Balance.</string>
<string name="settings__security__title">Security And Privacy</string>
<string name="settings__security__swipe_balance_to_hide">Swipe balance to hide</string>
<string name="settings__security__hide_balance_on_open">Hide balance on open</string>
<string name="settings__security__clipboard">Read clipboard for ease of use</string>
<string name="settings__security__warn_100">Warn when sending over $100</string>
<string name="settings__security__pin">PIN Code</string>
<string name="settings__security__pin_change">Change PIN Code</string>
<string name="settings__security__pin_launch">Require PIN on launch</string>
<string name="settings__security__pin_idle">Require PIN when idle</string>
<string name="settings__security__pin_payments">Require PIN for payments</string>
<string name="settings__security__pin_enabled">Enabled</string>
<string name="settings__security__pin_disabled">Disabled</string>
<string name="settings__security__use_bio">Use {biometryTypeName} instead</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__backup__title">Back Up Or Restore</string>
<string name="settings__backup__wallet">Back up your wallet</string>
<string name="settings__backup__export">Export wallet data to phone</string>
<string name="settings__backup__reset">Reset and restore wallet</string>
<string name="settings__backup__failed_title">Data Backup Failure</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__latest">latest data backups</string>
<string name="settings__backup__status_running">Running</string>
<string name="settings__backup__status_failed">Failed Backup: {time}</string>
<string name="settings__backup__status_success">Latest Backup: {time}</string>
<string name="settings__backup__category_connections">Connections</string>
<string name="settings__backup__category_connection_receipts">Connection Receipts</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_settings">Settings</string>
<string name="settings__backup__category_widgets">Widgets</string>
<string name="settings__backup__category_tags">Tags</string>
<string name="settings__backup__category_profile">Profile</string>
<string name="settings__backup__category_contacts">Contacts</string>
<string name="settings__support__title">Support</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__report">Report Issue</string>
<string name="settings__support__help">Help Center</string>
<string name="settings__support__status">App Status</string>
<string name="settings__support__report_text">Please describe the issue you are experiencing or ask a general question.</string>
<string name="settings__support__label_address">Email address</string>
<string name="settings__support__label_message">Issue or question</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__text_button">Send</string>
<string name="settings__support__title_success">Sent Successfully</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__title_unsuccess">Failed To Send</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__status__title">App Status</string>
<string name="settings__status__internet__title">Internet</string>
<string name="settings__status__internet__ready">Connected</string>
<string name="settings__status__internet__pending">Reconnecting...</string>
<string name="settings__status__internet__error">Disconnected</string>
<string name="settings__status__electrum__title">Bitcoin Node</string>
<string name="settings__status__electrum__ready">Connected</string>
<string name="settings__status__electrum__pending">Connecting...</string>
<string name="settings__status__electrum__error">Could not connect to Electrum</string>
<string name="settings__status__lightning_node__title">Lightning Node</string>
<string name="settings__status__lightning_node__ready">Synced</string>
<string name="settings__status__lightning_node__pending">Syncing...</string>
<string name="settings__status__lightning_node__error">Could not initiate</string>
<string name="settings__status__lightning_connection__title">Lightning Connection</string>
<string name="settings__status__lightning_connection__ready">Open</string>
<string name="settings__status__lightning_connection__pending">Opening...</string>
<string name="settings__status__lightning_connection__error">No open connections</string>
<string name="settings__status__backup__title">Latest Full Data Backup</string>
<string name="settings__status__backup__ready">Backed up</string>
<string name="settings__status__backup__pending">Backing up...</string>
<string name="settings__status__backup__error">Failed to complete a full backup</string>
<string name="settings__adv__section_payments">Payments</string>
<string name="settings__adv__section_networks">Networks</string>
<string name="settings__adv__section_other">Other</string>
<string name="settings__adv__address_type">Bitcoin Address Type</string>
<string name="settings__adv__monitored_address_types">Monitored Address Types</string>
<string name="settings__adv__monitored_address_types_update_title">Monitored Address Types Updated</string>
<string name="settings__adv__monitored_address_types_update_description">Changes will take full effect after app restarts.</string>
<string name="settings__adv__gap_limit">Address Gap Limit</string>
<string name="settings__adv__coin_selection">Coin Selection</string>
<string name="settings__adv__cs_method">Coin Selection Method</string>
<string name="settings__adv__cs_manual">Manual</string>
<string name="settings__adv__cs_auto">Autopilot</string>
<string name="settings__adv__cs_auto_mode">Autopilot Mode</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_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__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__payment_preference">Payment Preference</string>
<string name="settings__adv__pp_header">Choose how you prefer to receive money when users send funds to your profile key.</string>
<string name="settings__adv__pp_footer">* This requires sharing payment data.</string>
<string name="settings__adv__pp_drag">Payment preference (drag to reorder)</string>
<string name="settings__adv__pp_contacts">Pay to/from contacts</string>
<string name="settings__adv__pp_contacts_switch">Enable payments with contacts*</string>
<string name="settings__adv__address_viewer">Address Viewer</string>
<string name="settings__adv__rescan">Rescan Addresses</string>
<string name="settings__adv__suggestions_reset">Reset Suggestions</string>
<string name="settings__adv__reset_title">Reset Suggestions?</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_confirm">Yes, Reset</string>
<string name="settings__adv__lightning_connections">Lightning Connections</string>
<string name="settings__adv__lightning_node">Lightning Node</string>
<string name="settings__adv__electrum_server">Electrum Server</string>
<string name="settings__adv__rgs_server">Rapid-Gossip-Sync</string>
<string name="settings__adv__web_relay">Slashtags Web Relay</string>
<string name="settings__adv__bitcoin_network">Bitcoin Network</string>
<string name="settings__fee__fast__label">Fast (more expensive)</string>
<string name="settings__fee__fast__value">Fast</string>
<string name="settings__fee__fast__description">± 10-20 minutes</string>
<string name="settings__fee__normal__label">Normal</string>
<string name="settings__fee__normal__value">Normal</string>
<string name="settings__fee__normal__description">± 20-60 minutes</string>
<string name="settings__fee__slow__label">Slow (cheaper)</string>
<string name="settings__fee__slow__value">Slow </string>
<string name="settings__fee__slow__description">± 1-2 hours</string>
<string name="settings__fee__custom__label">Custom</string>
<string name="settings__fee__custom__value">Custom</string>
<string name="settings__fee__custom__description">Depends on fee</string>
<string name="settings__addr__no_addrs">No Addresses To Display</string>
<string name="settings__addr__loading">Loading Addresses...</string>
<string name="settings__addr__no_funds_receiving">No funds found under the {addressType} address type, receiving addresses up to index {index}.</string>
<string name="settings__addr__no_funds_change">No funds found under the {addressType} address type, change addresses up to index {index}.</string>
<string name="settings__addr__no_addrs_with_funds">No addresses with funds found when searching for \"{searchTxt}\"</string>
<string name="settings__addr__no_addrs_str">No addresses found when searching for \"{searchTxt}\"</string>
<string name="settings__addr__rescan_error">Rescan Failed</string>
<string name="settings__addr__rescan_error_description">Bitkit was not able to check the address balances.</string>
<string name="settings__addr__spend_number">{count, plural, one {Spend ₿ {fundsToSpend} From # address} other {Spend ₿ {fundsToSpend} From # addresses}}</string>
<string name="settings__addr__spend_all">{count, plural, one {Spend All Funds From # address} other {Spend All Funds From # addresses}}</string>
<string name="settings__addr__index">Index: {index}</string>
<string name="settings__addr__path">Path: {path}</string>
<string name="settings__addr__private_hide">Hide Private Key</string>
<string name="settings__addr__private_view">View Private Key</string>
<string name="settings__addr__private_key">Private Key: {privateKey}</string>
<string name="settings__addr__addr_change">Change Addresses</string>
<string name="settings__addr__addr_receiving">Receiving Addresses</string>
<string name="settings__addr__sats_found">₿ {totalBalance} found</string>
<string name="settings__addr__gen_20">Generate 20 More</string>
<string name="settings__addr__check_balances">Check Balances</string>
<string name="settings__addr__copied">Copied to clipboard</string>
<string name="settings__es__error_host_port">Please specify a host and port to connect to.</string>
<string name="settings__es__error_host">Please specify a host to connect to.</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__error_invalid_http">Please specify a valid url.</string>
<string name="settings__es__error_peer">Electrum Error</string>
<string name="settings__es__server_updated_title">Electrum Server Updated</string>
<string name="settings__es__server_updated_message">Successfully connected to {host}:{port}</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__connected_to">Currently connected to</string>
<string name="settings__es__disconnected">disconnected</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__button_reset">Reset To Default</string>
<string name="settings__es__button_connect">Connect To Host</string>
<string name="settings__gap__save">Save</string>
<string name="settings__gap__reset">Reset</string>
<string name="settings__gap__gap_limit_update_title">Address Gap Limit Updated</string>
<string name="settings__gap__gap_limit_update_description">Changes will take full effect after app restarts.</string>
<string name="settings__gap__look_behind">Look Behind</string>
<string name="settings__gap__look_ahead">Look Ahead</string>
<string name="settings__gap__look_behind_change">Look Behind Change</string>
<string name="settings__gap__look_ahead_change">Look Ahead Change</string>
<string name="settings__rgs__server_url">Rapid-Gossip-Sync Server URL</string>
<string name="settings__rgs__button_connect">Connect</string>
<string name="settings__rgs__update_success_title">Rapid-Gossip-Sync Server Updated</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__wr__error_wr">Web Relay Error</string>
<string name="settings__wr__error_url">Please specify a URL to connect to.</string>
<string name="settings__wr__error_https">Not a valid HTTPS url.</string>
<string name="settings__wr__error_healthcheck">Healthcheck Failed</string>
<string name="settings__wr__url_updated_title">Web Relay Updated</string>
<string name="settings__wr__url_updated_message">Successfully connected to {url}</string>
<string name="slashtags__your_name">Your name</string>
<string name="slashtags__your_name_capital">Your Name</string>
<string name="slashtags__contact_name">Contact Name</string>
<string name="slashtags__contact">Contact</string>
<string name="slashtags__contacts">Contacts</string>
<string name="slashtags__contact_add">Add contact</string>
<string name="slashtags__contact_add_capital">Add Contact</string>
<string name="slashtags__contact_add_explain">Add a new contact by scanning their QR or by pasting their key below.</string>
<string name="slashtags__contact_add_button">Add</string>
<string name="slashtags__contact_key_paste">Paste a key</string>
<string name="slashtags__contact_error_yourself">You cannot add yourself as a contact.</string>
<string name="slashtags__contact_error_key">This is not a valid key.</string>
<string name="slashtags__contact_edit_capital">Edit Contact</string>
<string name="slashtags__contacts_name">Contact\'s name</string>
<string name="slashtags__contact_your_name">Your public\nprofile name</string>
<string name="slashtags__contact_retrieving">Retrieving\ncontact info...</string>
<string name="slashtags__contact_no_links">No links added yet...</string>
<string name="slashtags__contact_pay_error">Unable To Pay Contact</string>
<string name="slashtags__contact_ldk_not_ready">Lightning is not ready yet</string>
<string name="slashtags__contact_share">Share Profile Key</string>
<string name="slashtags__contact_this">this contact</string>
<string name="slashtags__contact_copied">Profile Key Copied To Clipboard</string>
<string name="slashtags__contact_delete_title">Delete {name}?</string>
<string name="slashtags__contact_delete_text">Are you sure you want to delete {name} from your contacts?</string>
<string name="slashtags__contact_delete_yes">Yes, Delete</string>
<string name="slashtags__contact_select">Select Contact</string>
<string name="slashtags__contact_assign">Assign Contact</string>
<string name="slashtags__contacts_no_found">No Contacts found</string>
<string name="slashtags__disabled">Slashtags disabled</string>
<string name="slashtags__onboarding_header">Dynamic\n<accent>contacts</accent></string>
<string name="slashtags__onboarding_text">Get automatic updates from your Bitkit contacts, pay them, and follow their public profiles.</string>
<string name="slashtags__onboarding_button">Add First Contact</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__onboarding_profile2_header">Pay <accent>Bitkit\ncontacts</accent></string>
<string name="slashtags__onboarding_profile2_text">You and your contacts can use Bitkit to send payments directly, without banks, anytime, anywhere.</string>
<string name="slashtags__my_profile">My profile</string>
<string name="slashtags__profile">Profile</string>
<string name="slashtags__profile_save">Save</string>
<string name="slashtags__profile_pay_contacts">Pay Your Contacts</string>
<string name="slashtags__profile_create">Create Profile</string>
<string name="slashtags__profile_public_warn">Please note that all your profile information will be publicly available and visible.</string>
<string name="slashtags__profile_bio">Short bio. Say a bit about yourself.</string>
<string name="slashtags__profile_add_link">Add Link</string>
<string name="slashtags__profile_link_label">Label</string>
<string name="slashtags__profile_link_label_placeholder">For example \'Website\'</string>
<string name="slashtags__profile_link_value">Link or text</string>
<string name="slashtags__profile_link_public">Note: Any link you add will be publicly visible.</string>
<string name="slashtags__profile_link_suggestions">Suggestions</string>
<string name="slashtags__profile_link_suggestions_to_add">Suggestions To Add</string>
<string name="slashtags__profile_scan_to_add">Scan to add {name}</string>
<string name="slashtags__profile_edit">Edit Profile</string>
<string name="slashtags__profile_delete">Delete</string>
<string name="slashtags__profile_delete_dialogue_title">Delete Profile Information?</string>
<string name="slashtags__profile_delete_dialogue_msg">Are you sure you want to delete all of your Bitkit profile information?</string>
<string name="slashtags__profile_delete_dialogue_yes">Yes, Delete</string>
<string name="slashtags__profile_delete_success_title">Profile Deleted</string>
<string name="slashtags__profile_delete_success_msg">Your Bitkit profile information has been deleted.</string>
<string name="slashtags__offline_enable">Enable payments with contacts*</string>
<string name="slashtags__offline_enable_explain">* This requires sharing payment data.</string>
<string name="slashtags__error_saving_contact">Unable To Save Contact</string>
<string name="slashtags__error_saving_profile">Unable To Save Profile</string>
<string name="slashtags__error_deleting_profile">Unable To Delete Profile</string>
<string name="slashtags__error_pay_title">Unable To Pay Contact</string>
<string name="slashtags__error_pay_empty_msg">The contact you’re trying to send to hasn’t enabled payments.</string>
<string name="slashtags__auth_depricated_title">Deprecated</string>
<string name="slashtags__auth_depricated_msg">Slashauth is deprecated. Please use Bitkit Beta.</string>
<string name="wallet__drawer__wallet">Wallet</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__widgets">Widgets</string>
<string name="wallet__drawer__shop">Shop</string>
<string name="wallet__drawer__settings">Settings</string>
<string name="wallet__drawer__status">App Status</string>
<string name="wallet__send">Send</string>
<string name="wallet__receive">Receive</string>
<string name="wallet__balance_total_pending"><text> (</text><pending/><text> pending)</text></string>
<string name="wallet__create_wallet_error">Please reopen the app and try again.</string>
<string name="wallet__create_wallet_existing_error">Wallet \"{walletName}\" already exists.</string>
<string name="wallet__create_wallet_mnemonic_error">Invalid recovery phrase.</string>
<string name="wallet__create_wallet_mnemonic_restore_error">Please double-check if your recovery phrase is accurate.</string>
<string name="wallet__send_bitcoin">Send Bitcoin</string>
<string name="wallet__send_to">To</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__send_invoice">Invoice</string>
<string name="wallet__send_address_placeholder">Enter an invoice, address, or profile key</string>
<string name="wallet__send_clipboard_empty_title">Clipboard Empty</string>
<string name="wallet__send_clipboard_empty_text">Please copy an address or an invoice.</string>
<string name="wallet__send_amount">Bitcoin Amount</string>
<string name="wallet__send_max">MAX</string>
<string name="wallet__send_done">DONE</string>
<string name="wallet__send_available">Available</string>
<string name="wallet__send_available_spending">Available (spending)</string>
<string name="wallet__send_available_savings">Available (savings)</string>
<string name="wallet__send_max_spending__title">Reserve Balance</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_review">Review & Send</string>
<string name="wallet__send_confirming_in">Confirming in</string>
<string name="wallet__send_invoice_expiration">Invoice expiration</string>
<string name="wallet__send_swipe">Swipe To Pay</string>
<string name="wallet__send_yes">Yes, Send</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_dialog5_title">Fee is potentially too low</string>
<string name="wallet__send_dialog5_description">Current network conditions require that your fee should be greater than {minimumFee} ₿/vbyte. This transaction may fail, take a while to confirm, or get trimmed from the mempool. Do you wish to proceed?</string>
<string name="wallet__send_sent">Bitcoin Sent</string>
<string name="wallet__send_pending">Payment Pending</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_pending_note">This payment is taking a bit longer than expected. You can continue using Bitkit.</string>
<string name="wallet__send_instant_failed">Instant Payment Failed</string>
<string name="wallet__send_regular">Regular Payment</string>
<string name="wallet__send_error_slash_ln">Unfortunately contact could not be paid instantly. You can try a regular payment (more expensive, slower).</string>
<string name="wallet__send_error_tx_failed">Transaction Failed</string>
<string name="wallet__send_error_create_tx">Unable to broadcast the transaction. Please try again.</string>
<string name="wallet__tag_remove_error_title">Removing Tag Failed</string>
<string name="wallet__tag_remove_error_description">Bitkit was unable to find the transaction data.</string>
<string name="wallet__error_no_invoice">No lightning invoice found.</string>
<string name="wallet__error_no_tx_title">No transaction is available to broadcast.</string>
<string name="wallet__error_no_tx_msg">Please check your transaction info and try again.</string>
<string name="wallet__error_min_fee_title">Minimum relay fee not met</string>
<string name="wallet__error_min_fee_msg">Please increase your fee and try again.</string>
<string name="wallet__send_amount_error_title">Amount Invalid</string>
<string name="wallet__send_amount_error_balance">The amount is greater than your current balance.</string>
<string name="wallet__send_amount_error_fee">The amount indicated does not allow a fee to be included.</string>
<string name="wallet__send_details">Details</string>
<string name="wallet__send_fee_and_speed">Speed and fee</string>
<string name="wallet__send_fee_speed">Speed</string>
<string name="wallet__send_fee_error">Fee Invalid</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__sats_per_vbyte">sats/vbyte</string>
<string name="wallet__send_output_to_small_title">Send Amount Too Small</string>
<string name="wallet__send_output_to_small_description">Please increase your send amount to proceed.</string>
<string name="wallet__send_coin_selection_output_to_small_description">Please remove UTXOs or increase your send amount to proceed.</string>
<string name="wallet__send_fee_error_min">Unable to decrease the fee any further.</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_custom">Set Custom Fee</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__note">Note</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__tags">Tags</string>
<string name="wallet__tags_add">Add Tag</string>
<string name="wallet__tags_add_button">Add</string>
<string name="wallet__tags_add_error_header">Adding Tag Failed</string>
<string name="wallet__tags_add_error_description">Bitkit was unable to find the transaction data.</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__tags_filter">Filter activity using tags</string>
<string name="wallet__tags_filter_title">Select Tag</string>
<string name="wallet__tags_no">No tags available yet</string>
<string name="wallet__toast_payment_success_title">Payment Sent</string>
<string name="wallet__toast_payment_success_description">Your instant payment was sent successfully.</string>
<string name="wallet__toast_payment_failed_title">Payment Failed</string>
<string name="wallet__toast_payment_failed_description">Your instant payment failed. Please try again.</string>
<string name="wallet__toast_received_transaction_replaced_title">Received Transaction Replaced</string>
<string name="wallet__toast_received_transaction_replaced_description">Your received transaction was replaced by a fee bump</string>
<string name="wallet__toast_transaction_removed_title">Transaction Removed</string>
<string name="wallet__toast_transaction_removed_description">Transaction was removed from mempool</string>
<string name="wallet__toast_transaction_replaced_title">Transaction Replaced</string>
<string name="wallet__toast_transaction_replaced_description">Your transaction was replaced by a fee bump</string>
<string name="wallet__toast_transaction_unconfirmed_title">Transaction Unconfirmed</string>
<string name="wallet__toast_transaction_unconfirmed_description">Transaction became unconfirmed due to blockchain reorganization</string>
<string name="wallet__selection_title">Coin Selection</string>
<string name="wallet__selection_auto">Auto</string>
<string name="wallet__selection_total_required">Total required</string>
<string name="wallet__selection_total_selected">Total selected</string>
<string name="wallet__receive_bitcoin">Receive Bitcoin</string>
<string name="wallet__receive_specify">Edit Invoice</string>
<string name="wallet__receive_copied">Invoice copied to clipboard</string>
<string name="wallet__receive_share_address">Share receiving address</string>
<string name="wallet__receive_bitcoin_invoice">Bitcoin invoice</string>
<string name="wallet__receive_lightning_invoice">Lightning invoice</string>
<string name="wallet__receive_note_placeholder">Optional note to payer</string>
<string name="wallet__receive__cjit">Receive Lightning funds</string>
<string name="wallet__receive_show_qr">Show QR Code</string>
<string name="wallet__receive_show_details">Show Details</string>
<string name="wallet__receive_tab_savings">Savings</string>
<string name="wallet__receive_tab_auto">Auto</string>
<string name="wallet__receive_tab_spending">Spending</string>
<string name="wallet__receive_text_lnfunds">Want to receive <accent>Lightning</accent> funds?</string>
<string name="wallet__receive_spending">Receive on Spending Balance</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_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_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_liquidity__label">Spending Balance Liquidity</string>
<string name="wallet__receive_liquidity__label_additional">Additional Spending Balance Liquidity</string>
<string name="wallet__receive_cjit_error">Transaction Failed</string>
<string name="wallet__receive_cjit_error_msg">Failed to send funds to your spending account.</string>
<string name="wallet__receive_will">You will receive</string>