-
Notifications
You must be signed in to change notification settings - Fork 395
/
Copy pathstrings.xml
1912 lines (1675 loc) · 141 KB
/
strings.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<resources>
<string name="App_Name" translatable="false">Unstoppable</string>
<string name="DeeplinkScheme" translatable="false">unstoppable</string>
<!--Common-->
<string name="Error_ParameterNotSet">Parameter is not set</string>
<string name="LargeNumberFormat">%1$s%2$s</string>
<string name="Alert_Cancel">Cancel</string>
<string name="Alert_Copy">Copy</string>
<string name="Alert_Close">Close</string>
<string name="Alert_Loading">Loading...</string>
<string name="Alert_Restart">Restart</string>
<string name="Alert_Skip" translatable="false">SKIP</string>
<string name="Alert_Select" translatable="false">SELECT</string>
<string name="Suspended">SUSPENDED</string>
<string name="Action_Undo">UNDO</string>
<string name="Button_Show">Show</string>
<string name="Button_Hide">Hide</string>
<string name="Button_Cancel">Cancel</string>
<string name="Button_Next">Next</string>
<string name="Button_Enable">Enable</string>
<string name="Button_Disable">Disable</string>
<string name="Button_ScanQr">Scan QR Code</string>
<string name="Button_Close">Close</string>
<string name="Button_Ok">OK</string>
<string name="Button_Done">Done</string>
<string name="Button_Retry">Retry</string>
<string name="Button_Change">Change</string>
<string name="Button_Add">Add</string>
<string name="Button_Approve">Approve</string>
<string name="Button_Confirm">Confirm</string>
<string name="Button_Connect">Connect</string>
<string name="Button_Reject">Reject</string>
<string name="Button_Disconnect">Disconnect</string>
<string name="Button_Start">Start</string>
<string name="Button_Create">Create</string>
<string name="Button_Advanced">Advanced</string>
<string name="Button_Restore">Import</string>
<string name="Button_WatchAddress">Watch Address</string>
<string name="Button_Reset">Reset</string>
<string name="Button_Reconnect">Reconnect</string>
<string name="Button_Understand">I Understand</string>
<string name="Button_Switch">Switch</string>
<string name="Button_Remove">Remove</string>
<string name="Button_Save">Save</string>
<string name="Button_IAgree">I Agree</string>
<string name="Button_Continue">Continue</string>
<string name="Button_Send">Send</string>
<string name="Button_Search">Search</string>
<string name="Button_Back">Back</string>
<string name="Button_Copy">Copy</string>
<string name="Button_Browser">Browser</string>
<string name="Button_Delete">Delete</string>
<string name="Button_LearnMore">Learn More</string>
<string name="Button_Activate">Activate</string>
<string name="Button_Sign">Sign</string>
<string name="Button_Activating">Activating</string>
<string name="Button_GetApiKeys">Get API Keys</string>
<string name="Button_Login">Log In</string>
<string name="Button_SignUp">Sign Up</string>
<string name="Button_Submit">Submit</string>
<string name="Button_TryAgain">Try Again</string>
<string name="Button_Share">Share</string>
<string name="Button_Apply">Apply</string>
<string name="Button_SetAmount">Set Amount</string>
<string name="Error_OutOfRange">Can\'t be less than %1$s or more than %2$s</string>
<string name="Error_NotInteger">Wrong integer number</string>
<string name="Error">Error</string>
<string name="NotAvailable">N/A</string>
<string name="Any">Any</string>
<string name="SyncError">Sync error. Try Again</string>
<string name="FooterText" translatable="false">© Horizontal Systems 2022</string>
<string name="PercentTitle">Percent</string>
<string name="Keyboard">Keyboard</string>
<string name="AccountRecovery_Note">Note</string>
<string name="AccountRecovery_MigrationRecommended">This wallet seems to use a non-standard character in its recovery phrase and/or a passphrase. If you do not see a balance or transactions please read below for details.\n\nCLICK TO GET MORE INFO</string>
<string name="AccountRecovery_MigrationRequired">This is a non-standard wallet. \n\nCLICK TO GET MORE INFO</string>
<!--Intro-->
<string name="Intro_Wallet_Screen1Description">Be Unstoppable</string>
<string name="Intro_Wallet_Screen2Title">Unchain Assets</string>
<string name="Intro_Wallet_Screen2Description">Don\'t lock yourself in and don\'t let others do that to you.</string>
<string name="Intro_Wallet_Screen3Title">Go Borderless</string>
<string name="Intro_Wallet_Screen3Description">Bypass conditional barriers and access markets globally.</string>
<string name="Intro_Wallet_Screen4Title">Stay Private</string>
<string name="Intro_Wallet_Screen4Description">Do not leak your private and financial data to the world.</string>
<!--Rooted Device-->
<string name="RootedDevice_Button_Understand">I Understand</string>
<!--Welcome-->
<string name="Welcome_PrivacySettings">Privacy Settings</string>
<!--Create Wallet-->
<string name="CreateWallet_Advanced_Title">Advanced</string>
<string name="CreateWallet_Mnemonic">Recovery Phrase</string>
<string name="CreateWallet_Wordlist">Word List</string>
<string name="Passphrase">Passphrase</string>
<string name="Password">Password</string>
<string name="ConfirmPassphrase">Confirm</string>
<string name="CreateWallet_N_WordsRecommended">%s words (recommended)</string>
<string name="CreateWallet_N_Words">%s words</string>
<string name="CreateWallet_PassphraseConfirm">Confirm</string>
<string name="CreateWallet_Error_EmptyPassphrase">Passphrase cannot be empty</string>
<string name="CreateWallet_Error_PassphraseForbiddenSymbols">Please use only supported symbols: <![CDATA[A-Z a-z 0-9 \' " ` & / ? ! : ; . , ~ * $ = + - [ ](){} <> \ _ # @ | % ]]></string>
<string name="CreateWallet_Error_InvalidConfirmation">Passphrase confirmation does not match</string>
<string name="CreateWallet_PassphraseDescription">Passphrases add additional security layer for wallets. To restore such wallet a user required both a recovery phrase as well as a passphrase.\n\nPassphrases also make it easy for users to have many multi-coin wallets using a single mnemonic but different passwords.</string>
<!--Languages-->
<string name="Language_English">English</string>
<string name="Language_Japanese">Japanese</string>
<string name="Language_Korean">Korean</string>
<string name="Language_Spanish">Spanish</string>
<string name="Language_SimplifiedChinese">Chinese (Simplified)</string>
<string name="Language_TraditionalChinese">Chinese (Traditional)</string>
<string name="Language_French">French</string>
<string name="Language_Italian">Italian</string>
<string name="Language_Czech">Czech</string>
<string name="Language_Portuguese">Portuguese</string>
<!--Rate App-->
<string name="RateApp_Title_Rate_This_App">GM!</string>
<string name="RateApp_Description_Rate_This_App">Enjoying Unstoppable? Share feedback and ideas to take it further.</string>
<string name="RateApp_Button_RateIt">Rate It</string>
<string name="RateApp_Button_NotNow">Not now</string>
<!--Restore-->
<string name="Restore_Advanced_Title">Advanced</string>
<string name="Restore_Mnemonic_Description">Enter your wallet recovery phrase (aka mnemonic) which consists of 12, 15, 18, 21 or 24 words and may include additional alphanumeric password.</string>
<string name="Restore_ValidationFailed">Incorrect Key</string>
<string name="Restore_Error_MnemonicWordCount">Wrong words count. It must be between 12 or 24 words. You entered: %d</string>
<string name="Restore_Error_EmptyPassphrase">Passphrase cannot be empty</string>
<string name="Restore_InvalidChecksum">Invalid Checksum</string>
<string name="Restore_PassphraseDescription">Enter the passphrase you used when creating this recovery phrase. Restoring an existing wallet with a new passphrase will generate a brand new wallet.</string>
<string name="Restore_Title">Choose Blockchains</string>
<string name="Restore_Key">Key</string>
<string name="Restore_By">Import By</string>
<string name="Restore_RestoreBy">Import By</string>
<string name="Restore_RecoveryPhrase">Recovery Phrase</string>
<string name="Restore_PrivateKey">Private Key</string>
<string name="Restore_PrivateKeyHint">Enter EVM Private Key, BIP32 Root Key or Account Extended Private Key</string>
<string name="Restore_PhraseHint">Enter Recovery Phrase</string>
<string name="Restore_NonStandardRestore">Non-Standard Import</string>
<string name="Restore_NonStandard_Description">This page provides a special wallet restore mechanism to Unstoppable users who have a non-standard wallet. Such wallets might have been created in Unstoppable version 0.27 - 0.28 using a non-English recovery phrase and/or a special character in the wallet passphrase (i.e. diacritic symbol).\n\nIf you\'re an affected user then your wallet balance will be shown 0 after restoring such wallet in version 0.29 or above. This page will enable you to restore access to your non-standard wallet. Once restored you\'re recommended to create a new wallet (which will be standard compliant) and move funds there.</string>
<string name="Restore_PrivateKey_InvalidKey">Invalid Key</string>
<string name="Select_Coins">Choose Coins</string>
<string name="Restore_BirthdayHeight">Birthday Height</string>
<string name="Restore_ZCash">ZCash</string>
<string name="Restore_ZCash_BirthdayHeight">Zcash Birthday Height</string>
<string name="Restore_ZCash_BirthdayHeight_Hint">Enter wallet\'s birthday height for faster synchronization.</string>
<string name="Restore_ZCash_Birthday_Hint">000000000 (optional)</string>
<string name="Restore_ZCash_RestoreAsNew">Restore as New</string>
<string name="Restore_ZCash_NewWallet">New Wallet</string>
<string name="Restore_ZCash_NewWallet_Description">Doesn\'t have any transactions</string>
<string name="Restore_ZCash_OldWallet">Existing Wallet</string>
<string name="Restore_ZCash_OldWallet_Description">Has transactions</string>
<string name="Restore_ZCash_SlowSyncWarningText">The initial synchronization with the blockchain can consume a lot of internet traffic.</string>
<string name="ImportCexAccount_SelectCex">Select CEX</string>
<string name="ImportCexAccount_SelectCexDescription">Select the centralized exchange to which you want to connect.</string>
<string name="ImportCexAccountBinance_Description">Please provide the API Keys and API Secret to link your exchange.</string>
<string name="ImportCexAccountBinance_ApiKey">API Key</string>
<string name="ImportCexAccountBinance_SecretKey">Secret Key</string>
<!--Backup-->
<string name="Backup_Confirmation_CheckTitle">Check…</string>
<!--Market-->
<string name="Market_Field_MarketCap">MCap</string>
<string name="Market_Field_Volume">Vol</string>
<string name="Market_Field_PriceDiff">Price</string>
<string name="Market_Title">Markets</string>
<string name="Market_Search">Search</string>
<string name="Market_Search_Sections_RecentTitle">RECENT</string>
<string name="Market_Search_Sections_PopularTitle">POPULAR</string>
<string name="Market_FilterSection_MarketParameters">MARKET PARAMETERS</string>
<string name="Market_FilterSection_PriceParameters">PRICE PARAMETERS</string>
<string name="Market_FilterSection_NetworkParameters">NETWORK PARAMETERS</string>
<string name="Market_Field_HighestCap">Highest Cap</string>
<string name="Market_Field_LowestCap">Lowest Cap</string>
<string name="Market_Field_HighestVolume">Highest Volume</string>
<string name="Market_Field_LowestVolume">Lowest Volume</string>
<string name="Market_Field_HighestPrice">Highest Price</string>
<string name="Market_Field_LowestPrice">Lowest Price</string>
<string name="Market_Sort_PopupTitle">Sort by</string>
<string name="Market_TotalMarketCap">Total Cap</string>
<string name="Market_BtcDominance">BTC Dominance</string>
<string name="Market_Volume24h">24h Volume</string>
<string name="Market_TvlDeFi">TVL in DeFi</string>
<string name="Market_DeFiCap">DeFi Cap</string>
<string name="Market_SeeAll">See All</string>
<string name="Market_PoweredByApi">Powered By CoinGeko API</string>
<string name="Market_PoweredByHorizontalApi">Powered By Horizontal API</string>
<string name="Market_PoweredByDefiLlamaApi">Powered By DefiLlama API</string>
<string name="Market_Tab_Overview">Overview</string>
<string name="Market_Tab_Posts">News</string>
<string name="Market_Tab_Watchlist">Watchlist</string>
<string name="Market_Tab_Watchlist_EmptyList">Your watchlist is empty.</string>
<string name="Market_Category_TopCoins">Top Coins</string>
<string name="Market_Category_TopCoins_Description">Top Coins by market cap rank</string>
<string name="TopPairs_Title">Top Market Pairs</string>
<string name="TopPairs_Description">Top trading pairs by volume in every exchanges</string>
<!--Market Overview-->
<string name="Market_Overview_TopPairs">Top Market Pairs</string>
<string name="Market_Overview_TopSectors">Top Sectors</string>
<string name="Market_Overview_Sectors">Sectors</string>
<!--Market Top Platforms-->
<string name="MarketTopPlatforms_Title">Top Platforms</string>
<string name="MarketTopPlatforms_PlatofrmsRank">Top Blockchain Platforms</string>
<string name="MarketTopPlatforms_Description">Leading blockchain platforms by cumulative market of projects built on top.</string>
<string name="MarketTopPlatforms_Protocols">Protocols: %s</string>
<string name="MarketPlatformCoins_PlatformEcosystem">%s Ecosystem</string>
<string name="MarketPlatformCoins_PlatformEcosystemDescription">Market cap of all protocols on the %s chain</string>
<!--Market Global Metrics-->
<string name="MarketGlobalMetrics_Chart">Chart</string>
<string name="MarketGlobalMetrics_TotalMarketCap">Total Cap</string>
<string name="MarketGlobalMetrics_BtcDominance">Bitcoin Dominance</string>
<string name="MarketGlobalMetrics_Volume">24h Volume</string>
<string name="MarketGlobalMetrics_DefiCap">DeFi Cap</string>
<string name="MarketGlobalMetrics_TvlInDefi">TVL in DeFi</string>
<string name="MarketGlobalMetrics_TotalMarketCapDescription">Total market value of all cryptocurrencies.</string>
<string name="MarketGlobalMetrics_BtcDominanceDescription">The historical change in ratio between the market cap of Bitcoin to the rest of the cryptocurrency markets. \n\nTypically, when Bitcoin dominance is trending higher, the rest of the crypto market trends downwards and vice versa.</string>
<string name="MarketGlobalMetrics_VolumeDescription">The 24h trading volume of the crypto market.</string>
<string name="MarketGlobalMetrics_VolumeDescriptionCoin">The historical change in daily aggregate trading volume for %s</string>
<string name="MarketGlobalMetrics_DefiCapDescription">Total market value of DeFi projects.</string>
<string name="MarketGlobalMetrics_TvlInDefiDescription">Total Value Locked (TVL) in DeFi.</string>
<string name="MarketGlobalMetrics_ChainSelectorTitle">Filter by chain</string>
<string name="MarketGlobalMetrics_ChainSelectorAll">All</string>
<string name="MarketGlobalMetrics_CoinNotSupported">This coin is not supported yet</string>
<string name="MarketGlobalMetrics_NoCoin">This project doesn\'t have a coin</string>
<!--Market Search-->
<string name="EmptyResults">No results found</string>
<string name="Market_Filters">Filters</string>
<string name="Market_AdvancedSearch_Results">Results</string>
<string name="Market_Search_Hint">Search</string>
<string name="Market_Search_BrowseCategories">Browse categories</string>
<string name="Market_Filter_ChooseSet">Choose Set</string>
<string name="Market_Filter_MarketCap">Market Cap</string>
<string name="Market_Filter_Volume">Trading Volume</string>
<string name="Market_Filter_Volume24h">Trading Volume (24h)</string>
<string name="Market_Filter_PricePeriod">Price Period</string>
<string name="Market_Filter_PriceChange">Price Change</string>
<string name="Market_Filter_Blockchains">Blockchains</string>
<string name="Market_Filter_OutperformedBtc">Outperformed BTC</string>
<string name="Market_Filter_OutperformedEth">Outperformed ETH</string>
<string name="Market_Filter_OutperformedBnb">Outperformed BNB</string>
<string name="Market_Filter_PriceCloseToAth">Price Close To ATH</string>
<string name="Market_Filter_PriceCloseToAtl">Price Close To ATL</string>
<string name="Market_Filter_ListedOnTopExchanges">Listed on Top Exchanges</string>
<string name="Market_Filter_SolidCex">Good Cex Volume</string>
<string name="Market_Filter_SolidCex_Description">Overall Score is Good or Excellent</string>
<string name="Market_Filter_SolidDex">Good Dex Volume</string>
<string name="Market_Filter_SolidDex_Description">Overall Score is Good or Excellent</string>
<string name="Market_Filter_GoodDistribution">Good Distribution</string>
<string name="Market_Filter_GoodDistribution_Description">Overall Score is Good or Excellent</string>
<string name="Market_Filter_Top_100">Top 100</string>
<string name="Market_Filter_Top_250">Top 250</string>
<string name="Market_Filter_Top_500">Top 500</string>
<string name="Market_Filter_Top_1000">Top 1000</string>
<string name="Market_Filter_Top_1500">Top 1500</string>
<string name="Market_Filter_ShowResults">Show Results</string>
<string name="Market_Filter_ShowResults_Counter">Show Results: %d</string>
<string name="Market_Filter_Range_0_5M">< 5M</string>
<string name="Market_Filter_Range_5M_20M">5M - 20M</string>
<string name="Market_Filter_Range_20M_100M">20M - 100M</string>
<string name="Market_Filter_Range_100M_1B">100M - 1B</string>
<string name="Market_Filter_Range_1B_5B">1B - 5B</string>
<string name="Market_Filter_Range_5B_More">> 5B</string>
<string name="Market_Filter_Range_0_10M">< 10M</string>
<string name="Market_Filter_Range_10M_40M">10M - 40M</string>
<string name="Market_Filter_Range_40M_200M">40M - 200M</string>
<string name="Market_Filter_Range_200M_2B">200M - 2B</string>
<string name="Market_Filter_Range_2B_10B">2B - 10B</string>
<string name="Market_Filter_Range_10B_More">> 10B</string>
<string name="Market_Filter_Range_0_50M">< 50M</string>
<string name="Market_Filter_Range_50M_200M">50M - 200M</string>
<string name="Market_Filter_Range_200M_1B">200M - 1B</string>
<string name="Market_Filter_Range_1B_10B">1B - 10B</string>
<string name="Market_Filter_Range_10B_50B">10B - 50B</string>
<string name="Market_Filter_Range_50B_More">> 50B</string>
<string name="Market_Filter_Range_0_500M">< 500M</string>
<string name="Market_Filter_Range_500M_2B">500M - 2B</string>
<string name="Market_Filter_Range_10B_100B">10B - 100B</string>
<string name="Market_Filter_Range_100B_500B">100B - 500B</string>
<string name="Market_Filter_Range_500B_More">> 500B</string>
<string name="Market_Filter_TimePeriod_1D">1 Day</string>
<string name="Market_Filter_TimePeriod_1W">1 Week</string>
<string name="Market_Filter_TimePeriod_2W">2 Weeks</string>
<string name="Market_Filter_TimePeriod_1M">1 Month</string>
<string name="Market_Filter_TimePeriod_6M">6 Months</string>
<string name="Market_Filter_TimePeriod_1Y">1 Year</string>
<string name="Market_Filter_PriceChange_Positive_10_plus" translatable="false">> +10%</string>
<string name="Market_Filter_PriceChange_Positive_25_plus" translatable="false">> +25%</string>
<string name="Market_Filter_PriceChange_Positive_50_plus" translatable="false">> +50%</string>
<string name="Market_Filter_PriceChange_Positive_100_plus" translatable="false">> +100%</string>
<string name="Market_Filter_PriceChange_Negative_10_minus" translatable="false">< -10%</string>
<string name="Market_Filter_PriceChange_Negative_25_minus" translatable="false">< -25%</string>
<string name="Market_Filter_PriceChange_Negative_50_minus" translatable="false">< -50%</string>
<string name="Market_Filter_PriceChange_Negative_75_minus" translatable="false">< -75%</string>
<string name="TimePeriod_24h">24h</string>
<!--Coin Markets-->
<string name="CoinMarket_Title">%s Markets</string>
<!--TVL Rank-->
<string name="TvlRank_MultiChain">Multi-Chain</string>
<!--Balance-->
<string name="Balance_Withdraw">Withdraw</string>
<string name="Balance_Title">Balance</string>
<string name="Balance_Send">Send</string>
<string name="Balance_Swap">Swap</string>
<string name="Balance_Deposit">Deposit</string>
<string name="Balance_Receive">Receive</string>
<string name="Balance_Address">Address</string>
<string name="Balance_RatePerCoin">%1$s per %2$s</string>
<string name="Balance_SyncedUntil">until %s</string>
<string name="Balance_Syncing">Syncing…</string>
<string name="Balance_SearchingTransactions">Searching transactions…</string>
<string name="Balance_FoundTx">%s tx</string>
<string name="Balance_Syncing_WithProgress">Syncing… %s%%</string>
<string name="Balance_AddCoins">Add Coins</string>
<string name="Balance_AddCoin">Add Coin</string>
<string name="Balance_CoinDisabled">Disabled coin %s</string>
<string name="Balance_Sort_Balance">Balance</string>
<string name="Balance_Sort_PopupTitle">Sort by</string>
<string name="Balance_Sort_Az">Name</string>
<string name="Balance_Sort_24hPriceChange">Price Change</string>
<string name="Balance_Hidden">hidden</string>
<string name="Balance_DownloadingBlocks">Downloading Blocks</string>
<string name="Balance_ScanningBlocks">Scanning Blocks</string>
<string name="Balance_Backup_Alert">You need to backup the %1$s Wallet before you may receive %2$s.</string>
<string name="Balance_NoWalletAlert">You don\'t have any installed wallets yet.\nCreate a new wallet or restore an existing one </string>
<string name="Balance_NoCoinsAlert">You don\'t have an added coins.\nAdd the coins you will be using</string>
<string name="Balance_WatchAccount_NoBalance">This wallet address doesn\'t have any balance</string>
<string name="Balance_NoAssetsToSend">You have no assets to send.</string>
<string name="Balance_NoAssetsToSwap">You have no assets to swap.</string>
<string name="Balance_Network">Network</string>
<string name="Balance_Format">Format</string>
<string name="Balance_NetworkSelectDescription">Choose network to get an address to receive.</string>
<string name="Balance_ReceiveAddressHint">Your address for depositing %s</string>
<string name="Balance_ReceiveWatchAddressHint">Watch address of %s</string>
<string name="Balance_Receive_AddressFormatDescription">Choose a format for providing an address to receive.</string>
<string name="Balance_Receive_AddressFormat">Address Format</string>
<string name="Balance_Receive_AddressFormat_RecommendedAddressType">The Cash Address format is preferred for receiving Bitcoin Cash (BCH) due to its improved user experience and compatibility. However, both address formats can be used interchangeably to receive BCH, regardless of the sender\'s address format.</string>
<string name="Balance_Receive_AddressFormat_RecommendedDerivation">The Native SegWit format is preferred in Bitcoin for improved throughput and security. All address formats (Taproot, SegWit, Legacy) can be used interchangeably to receive BTC regardless of the sender\'s address format, enabling seamless transactions across different coin types.</string>
<string name="Balance_Receive_Account">Account</string>
<string name="Balance_Receive_NotActive">Not active</string>
<string name="Balance_Receive_Amount">Amount</string>
<string name="Balance_Receive_SetAmount">Set Amount</string>
<string name="Balance_Receive_AddressType">Address type</string>
<string name="Balance_LockedAmount_Title">Locked</string>
<string name="Balance_Receive_Memo">Memo (Tag)</string>
<string name="Balance_Error_InvalidQrCode">Can\'t recognize</string>
<string name="Balance_Receive_WatchAddressAlert">This address is the address of the watched account. Send only network-compatible tokens.</string>
<string name="Balance_Receive_AddressMemoAlert">Provide required Memo (Tag) and send only network-compatible tokens. Others will be lost.</string>
<string name="Balance_Receive_UsedAddresses">Used Addresses</string>
<string name="Balance_Receive_UsedAddressesDescriptoin">%s addresses change for privacy and security. Below a list of used addresses in this wallet.</string>
<string name="Balance_Receive_ReceiveAddresses">Receive Addresses</string>
<string name="Balance_Receive_ChangeAddresses">Change Addresses</string>
<!--Send NFT-->
<string name="SendNft_Title">Send</string>
<string name="SendNft_Error_NotEnoughtBalance">Not Enough Balance</string>
<!--Send-->
<string name="Send_Title">Send %s</string>
<string name="Send_Hint_Address">Address or Domain</string>
<string name="Send_Fee">Fee</string>
<string name="Send_Fee_Info">Blockchains require users to pay network fees when sending transactions. The fees are higher when a lot of transactions are taking place on the network.</string>
<string name="Send_Button_Paste">Paste</string>
<string name="Send_Button_Max">Max</string>
<string name="Send_Advanced">Advanced</string>
<string name="Send_Hodler_Description">TimeLock works only for sending to BIP44 addresses (starting with 1)</string>
<string name="Send_Utxos" translatable="false">UTxOs</string>
<string name="Send_UtxoExpertMode">UTxO Expert Mode</string>
<string name="Send_Utxo_Description">Manually select UTxO to spend the funds in the balance</string>
<string name="Send_Utxo_SendTo">Send To</string>
<string name="Send_Utxo_Change">Change</string>
<string name="Send_Rbf">Replace by Fee</string>
<string name="Send_Rbf_Description">This option allows you to resend a stuck transaction by increasing the amount of the fee.</string>
<string name="Send_RbfEnabled">Enabled</string>
<string name="Send_RbfDisabled">Disabled</string>
<string name="Send_Confirmation_Title">Confirm</string>
<string name="Send_Confirmation_Domain">Domain</string>
<string name="Send_Confirmation_YouSend">You Send</string>
<string name="Send_Confirmation_Amount">Amount</string>
<string name="Send_Confirmation_To">To</string>
<string name="Send_Confirmation_Method">Method</string>
<string name="Send_Confirmation_Nonce" translatable="false">Nonce</string>
<string name="Send_Confirmation_Receiver">Receiver</string>
<string name="Send_Confirmation_HintMemo" translatable="false">Memo</string>
<string name="Send_Confirmation_EstimateTime">Duration</string>
<string name="Send_Confirmation_LockTime" translatable="false">TimeLock</string>
<string name="Send_Confirmation_Send_Button">Send</string>
<string name="Send_Success">\u2713 Sent</string>
<string name="ScanQr_CameraPermission_Title">Camera permission</string>
<string name="ScanQr_PleaseGrantCameraPermission">Please grant the camera permission</string>
<string name="ScanQr_NoCameraPermission">No camera permission</string>
<string name="ScanQr_CameraPermissionDeniedText">Access to your camera for this app was denied, you can go to settings and allow access</string>
<string name="ScanQr_GoToSettings">Go to Settings</string>
<string name="Send_Error_IncorrectAddress">Incorrect Address</string>
<string name="Send_Error_UnsupportedAddress">Time locking works only when sending to payment addresses starting with 1... (aka BIP44 addresses)</string>
<string name="Send_Error_BalanceAmount">Balance %s</string>
<string name="Send_Error_MinimumAmount">Min. amount %s</string>
<string name="Send_Error_MaximumAmount">Max. amount %s</string>
<string name="Send_Error_MinRequiredBalance">Min. required remainder %s</string>
<string name="Send_Error_TransparentAddress">Unstoppable doesn\'t support payments to a transparent address</string>
<string name="Send_Error_SendToSelf">Sending to yourself is not supported</string>
<string name="Send_DialogAvailableBalance">Available Balance</string>
<string name="Send_DialogSpeed">Transaction Speed</string>
<string name="Send_TxSpeed_Low">Low</string>
<string name="Send_TxSpeed_High">High</string>
<string name="Send_TxSpeed_Recommended">Recommended</string>
<string name="Send_TxSpeed_Custom">Custom</string>
<string name="Send_TxSpeed_CustomFeeHint" translatable="false">sat/byte</string>
<string name="Send_DialogFee">Fee</string>
<string name="Send_DialogMemoHint" translatable="false">Memo</string>
<string name="Send_DialogProceed">Next</string>
<string name="Send_DialogLockTime" translatable="false">TimeLock</string>
<string name="Send_LockTime_Off">Off</string>
<string name="Send_LockTime_Hour">1 hour</string>
<string name="Send_LockTime_Month">1 month</string>
<string name="Send_LockTime_HalfYear">6 months</string>
<string name="Send_LockTime_Year">1 year</string>
<string name="Send_Sending">Sending</string>
<string name="Send_FeeRate">Fee Rate</string>
<string name="Send_Token_InsufficientFeeAlert">Transaction fees for %1$s (%2$s) paid in %3$s. You need %4$s.</string>
<string name="Send_Warning_LowFee">Warning! Risk of getting stuck</string>
<string name="Send_Error_LowFee">Fee Error</string>
<string name="Send_Error_LowFee_Description">Fee Rate is too low.</string>
<string name="Send_Warning_LowFee_Description">The transaction may get stuck or fail</string>
<string name="Send_Error_FetchFeeRateFailed">Fee Error</string>
<string name="Send_Error_FetchFeeRateFailed_Description">The connection to the server has been lost. To proceed, set up the fees manually using the data on the site.</string>
<!-- Send Evm Settings -->
<string name="SendEvmSettings_Title">Advanced</string>
<string name="SendEvmSettings_Nonce">Transaction Nonce</string>
<string name="SendEvmSettings_Nonce_Info">The nonce is a unique integer value for a transaction within the user\'s wallet. It normally increments with each submitted transaction and does not need changing. Advanced users can set it equal to a nonce of a pending transaction in order to cancel and replace that transaction, as long as the new transaction has a sufficiently higher fee to prevent the old one from being confirmed instead (for example, they may want to speed up its confirmation, or to change transaction parameters entirely). When multiple pending transactions have the same nonce, only one gets confirmed, typically the one with the highest fee.</string>
<string name="SendEvmSettings_Error_NonceUsed_Title">Used Nonce</string>
<string name="SendEvmSettings_Error_NonceUsed">An executed transaction with this nonce already exists.</string>
<!-- Fee Settings -->
<string name="FeeSettings_Title">Fee Settings</string>
<string name="FeeSettings_Reset">Reset</string>
<string name="FeeSettings_FeeLegacy">Max Fee</string>
<string name="FeeSettings_FeeLegacy_Info">The maximum expected total fee for the given transaction. Typically, the actual transaction fee is going to be lower.</string>
<string name="FeeSettings_Fee">Max Fee</string>
<string name="FeeSettings_Fee_Info">The maximum estimated transaction fee to be paid for this transaction, computed based on the gas limit, max fee rate and max priority fee values below. The actual fee paid will normally be lower.</string>
<string name="FeeSettings_NetworkFee">Network Fee</string>
<string name="FeeSettings_NetworkFee_Info">The estimated cost of sending given transaction on the network.</string>
<string name="FeeSettings_GasLimit" translatable="false">Gas Limit</string>
<string name="FeeSettings_GasLimit_Info">Transaction complexity is measured in units called \"gas\". It varies depending on the smart contract being executed. The Gas Limit is the estimated maximum gas needed to execute it. The actual gas used will normally be lower.</string>
<string name="FeeSettings_GasPrice" translatable="false">Gas Price (Gwei)</string>
<string name="FeeSettings_GasPrice_Info">The fee for transacting on the network is measured in gas units. Gas Price is the amount a user is willing to spend per unit of gas. When the network is busy, gas prices are high, and low when it\'s idle. An insufficient gas price is often a reason for a transaction to remain pending for an extended period.</string>
<string name="FeeSettings_BaseFee">Base Fee</string>
<string name="FeeSettings_BaseFee_Info">The network protocol determines the base price per gas for each block, called base fee rate. It varies according to the network utilization level from block to block. It can increase or decrease by no more than 12.5% in the next block, making fees more predictable. The value shown here is the current block\'s base fee rate.</string>
<string name="FeeSettings_MaxFee">Max Fee Rate</string>
<string name="FeeSettings_MaxFee_Info">This is the maximum total price per gas the user is willing to pay. It must cover the network\'s base fee rate and max priority fee rate. The value shown here is suggested based on an estimate of the next block\'s base fee rate plus the max priority fee rate chosen by the user. The actual fee rate paid will normally be lower. Setting this lower than the current base fee rate will limit the fee paid, but will result in longer waiting times for the transaction to be confirmed, or even in a stuck transaction.</string>
<string name="FeeSettings_MaxMinerTips">Max Priority Fee</string>
<string name="FeeSettings_MaxMinerTips_Info">Users pay priority fees to incentivize a transaction to be confirmed more quickly. They are sometimes called tips. The max priority fee rate is the maximum additional price per gas the user is willing to pay on top of the base fee rate. The value shown here is suggested based on predicted network conditions. The actual priority fee will normally be lower. Setting this to zero may result in a long waiting time for transaction to be confirmed, as it is placed at the end of the pending transactions queue from all users.</string>
<string name="FeeSettings_RiskOfGettingStuckLegacy_Title">Risky</string>
<string name="FeeSettings_RiskOfGettingStuckLegacy">The transaction may remain pending for a while or fail entirely.</string>
<string name="FeeSettings_RiskOfGettingStuck_Title">Risky</string>
<string name="FeeSettings_RiskOfGettingStuck">To ensure speedy execution of the transaction the max fee rate (subtracted max. miner tip) should be higher than current base fee rate. If not transaction may remain pending until condition is met.</string>
<string name="FeeSettings_Overpricing_Title">Fee Too High</string>
<string name="FeeSettings_Overpricing">The set transaction fee is higher than necessary for processing this transaction now.</string>
<string name="FeeSettings_Info_IUnderstand">I Understand</string>
<string name="FeeSettings_FeeRate">Fee Rate (SAT/BYTE)</string>
<string name="FeeSettings_FeeRate_RecommendedInfo">Here is the recommended value for hitting the next 2 blocks</string>
<string name="FeeSettings_FeeRate_Info">Blockchains require users to pay network fees when sending transactions. The fees are higher when a lot of transactions are taking place on the network.
\n\nThe Unstoppable wallet estimates fee based on the current blockchain activity and recommends the optimal value in order for the transaction to be processed within reasonable amount of time.
\n\nThe recommended fee rate shown as the amount of satoshi user needs to pay for a single byte of the transaction. Thus, the total fee depends on the total size of the transaction which is measured in bytes.
\n\nUsers may use provided controls to increase or decrease the fee rate value. The change in fee rate changes the total fee for the transaction the user will pay.
\n\nSetting fee rate below recommended value may result in a transaction being held as pending for hours, or being rejected. The lower the value, the longer it will take for the transaction to confirm. For transactions where priority is important, we recommend setting higher fee rate.</string>
<!--Fee Info -->
<string name="FeeInfo_Title">Transaction Speed</string>
<string name="FeeInfo_Description">Both Bitcoin and Ethereum blockchains require users to pay network fees when sending transactions. The fees are higher when a lot of transactions are taking place on the network and lower when the blockchain is less busy.</string>
<string name="FeeInfo_Slow">Low</string>
<string name="FeeInfo_SlowDescription">Selecting a value from this range may result in a transaction being held as pending for hours, or being rejected. The lower the value, the longer it will take for the transaction to confirm.</string>
<string name="FeeInfo_Average">Recommended</string>
<string name="FeeInfo_AverageDescription">Typically, the recommended fee value should be sufficient for a transaction to be processed within minutes or an hour for Bitcoin and within minutes for Ethereum.</string>
<string name="FeeInfo_Fast">High</string>
<string name="FeeInfo_FastDescription">For transactions where priority is important, we recommend using the high fee value. It\'s expected to be sufficient for a transaction to be completed within 10 minutes for Bitcoin and within 1-2 minutes for Ethereum.</string>
<string name="FeeInfo_TronFee_Title">Fee</string>
<string name="FeeInfo_TronFee_Description">The estimated cost of sending given transaction on the network. (Without excluding Energy, Bandwidth and Activating Fee)</string>
<string name="FeeInfo_TronActivationFee_Title">Activation Fee</string>
<string name="FeeInfo_TronActivationFee_Description">Transferring TRX or TRC-10 tokens to an inactive account address will activate the account.</string>
<string name="FeeInfo_TronResourcesConsumed_Title">Resources Consumed</string>
<string name="FeeInfo_TronResourcesConsumed_Description">Bandwidth is the unit that measures the size of the transaction bytes stored in the blockchain database. The larger the transaction, the more bandwidth resources will be consumed.\n\nEnergy is the unit that measures the amount of computation required by the TRON virtual machine to perform specific operations on the TRON network.\n\nSince smart contract transactions require computing resources to execute, each smart contract transaction requires to pay for the energy fee.</string>
<!--Tron-->
<string name="Tron_AddressNotActive_Warning">This address is not active</string>
<string name="Tron_AddressNotActive_Warning_Short">(not active)</string>
<string name="Tron_AddressNotActive_Title">Not Active Address</string>
<string name="Tron_AddressNotActive_Info">Newly created accounts on the TRON blockchain are inactive and cannot be queried or explored. They need to be activated.\n\nTransferring TRX or TRC-10 tokens to an inactive account address will activate the account. Activating a new account on the Tron chain requires a fee of 1 TRX</string>
<string name="Tron_SelfSendTrxNotAllowed">Cannot transfer TRX to yourself</string>
<string name="Tron_ZeroAmountTrxNotAllowed">Cannot transfer 0 %s</string>
<!--WalletConnect-->
<string name="WalletConnect_Title" translatable="false">WalletConnect</string>
<string name="WalletConnect_Request">Request</string>
<string name="WalletConnect_SendRequest_Title">Send</string>
<string name="WalletConnect_ApproveRequest_Title">Approve</string>
<string name="WalletConnect_SwapRequest_Title">Swap</string>
<string name="WalletConnect_UnknownRequest_Title">Contract Call</string>
<string name="WalletConnect_Url" translatable="false">URL</string>
<string name="WalletConnect_Status">Status</string>
<string name="WalletConnect_SignedTransactions">Signed Transactions</string>
<string name="WalletConnect_Approve_Hint">By clicking connect, you allow this app to view your public address. This is important security step to protect your data from potential phishing risks.</string>
<string name="WalletConnect_Ready_Hint">You can go to the browser. Do not close this page while interacting in the browser.</string>
<string name="WalletConnect_Reconnect_Hint">Failed to establish connection. Try reconnecting again.</string>
<string name="WalletConnect_Error_InvalidUrl">Invalid URL Address</string>
<string name="WalletConnect_NotSupportedV2">WalletConnect v2 is not supported</string>
<string name="WalletConnect_Requirement">Requirement</string>
<string name="WalletConnect_Alert">Alert</string>
<string name="WalletConnect_Status_Offline">Offline</string>
<string name="WalletConnect_Status_Online">Online</string>
<string name="WalletConnect_Status_Connecting">Connecting…</string>
<string name="WalletConnect_NewConnect">New Connection</string>
<string name="WalletConnect_Disconnecting">Disconnecting</string>
<string name="WalletConnect_SignMessageRequest_Title">Sign Request</string>
<string name="WalletConnect_SignMessageRequest_Domain">Domain</string>
<string name="WalletConnect_SignMessageRequest_dApp" translatable="false">dApp</string>
<string name="WalletConnect_SignMessageRequest_ShowMessageTitle">Message to sign</string>
<string name="WalletConnect_SignMessageRequest_SignMessageHint">Please sign a message to authenticate</string>
<string name="WalletConnect_SignMessageRequest_ButtonSign">Sign</string>
<string name="WalletConnect_Error_NoWallet">You need to create or import a wallet before you can use WalletConnect</string>
<string name="WalletConnect_Error_NeedBackup">Create a backup copy of the recovery phrase and the associated password that will allow you to recover your wallet if your phone is lost, stolen, broken, etc.</string>
<string name="WalletConnect_Error_WatchAccount">This feature does not work with the watch only wallets, you need to switch to a restored or created wallet </string>
<string name="WalletConnect_Error_UnsupportedChainId">Unsupported Blockchain</string>
<string name="WalletConnect_Error_NoSuitableAccount">No suitable account</string>
<string name="WalletConnect_Error_NoSuitableEvmKit">No suitable evm kit</string>
<string name="WalletConnect_Error_DataParsingError">Data parsing error</string>
<string name="WalletConnect_Error_RequestNotFoundError">Request not found error</string>
<string name="WalletConnect_NoConnection">You don\’t have any connected dapps</string>
<string name="WalletConnect_PendingRequests">Pending Requests</string>
<string name="WalletConnect_ActiveWallet">Active Wallet</string>
<string name="WalletConnect_Address">Address</string>
<string name="WalletConnect_Network">Network</string>
<string name="WalletConnect_Input">Input</string>
<string name="WalletConnect_Version1">Version 1.0</string>
<string name="WalletConnect_Version2">Version 2.0</string>
<string name="WalletConnect_I_Trust">I trust</string>
<string name="WalletConnect_Note">Note</string>
<string name="WalletConnect_LegacySignWarning">Signing this message can be dangerous. This signature could potentially perform any operation on behalf of your account, including giving full control of your account and all of its assets to the requesting site. Sign this message only if you know what you are doing or fully trust the requesting site.</string>
<string name="WalletConnect_NotSupportedDescription">You current wallet type %s does not support WalletConnect</string>
<string name="WalletConnect_Unnamed">Unnamed</string>
<string name="WalletConnect_DAppUnknown">Unknown dApp</string>
<string name="WalletConnect_Pairings">Pairings</string>
<string name="WalletConnect_PairedDApps">Paired dApps</string>
<string name="WalletConnect_Pairings_DeleteAll">Delete All</string>
<string name="WalletConnect_Pairings_ConfirmationDeleteAll">Do you want to delete all paired dApss?</string>
<string name="WalletConnect_Pairings_Delete">Delete</string>
<string name="WalletConnect_DeleteAllPairs">Delete All Pairs</string>
<string name="WalletConnect_UnsupportedRequest_Title">Unsupported Request</string>
<string name="WalletConnect_UnsupportedRequest_WarningTitle">Unsupported</string>
<string name="WalletConnect_UnsupportedRequest_WarningDescription">This request format is not supported by the wallet</string>
<!--EthereumTransaction-->
<string name="EthereumTransaction_Warning_Title">Warning</string>
<string name="EthereumTransaction_Error_Title">Error</string>
<string name="EthereumTransaction_Error_InsufficientBalance_Title">Insufficient Balance</string>
<string name="EthereumTransaction_Error_InsufficientBalance">The transaction requires %s for sending</string>
<string name="EthereumTransaction_Error_InsufficientBalanceForFee">The current %s balance is below the amount required to process this transaction, including the transaction fee.</string>
<string name="EthereumTransaction_Error_LowerThanBaseGasLimit_Title">Low Fee</string>
<string name="EthereumTransaction_Error_LowerThanBaseGasLimit">The set transaction fee amount is insufficient for processing this transaction now.</string>
<string name="EthereumTransaction_Error_InsufficientLiquidity_Title">Insufficient Liquidity</string>
<string name="EthereumTransaction_Error_InsufficientLiquidity">Likely there is not enough liquidity available to process this trade. Try lowering the amount.</string>
<string name="EthereumTransaction_Error_CannotEstimate_Title">Estimation Error</string>
<string name="EthereumTransaction_Error_CannotEstimate">Check balance to ensure there is enough %s to cover fee. Or try increasing price slippage amount and try again. Will auto-retry in 3 sec…</string>
<string name="EthereumTransaction_Warning_CoinNeededForFee">Consider leaving some %s on balance to be able to pay for future transactions.</string>
<string name="EthereumTransaction_Error_ExecutionReverted">Unexpected error: %s</string>
<!--Swap-->
<string name="Swap">Swap</string>
<string name="Swap_FromAmountTitle">You Pay</string>
<string name="Swap_ToAmountTitle">You Get</string>
<string name="Swap_AmountHint" translatable="false">0</string>
<string name="Swap_Percent" translatable="false">%s%%</string>
<string name="Swap_Estimated">ESTIMATED</string>
<string name="Swap_TokenSelectorTitle">Select</string>
<string name="Swap_Balance">Available balance</string>
<string name="Swap_Allowance">Allowance</string>
<string name="Swap_Price">Price</string>
<string name="Swap_SellPrice">Sell Price</string>
<string name="Swap_BuyPrice">Buy Price</string>
<string name="Swap_PriceImpact">Price Impact</string>
<string name="Swap_PriceImpactTooHigh">Unstoppable has disabled swap action for this trade because you\'re getting an extremely unfavorable price. This is due to extremely low liquidity.\nIf you still want to swap please use %s website instead.</string>
<string name="Swap_PriceImpactWarning">Important! You\'re getting an extremely unfavorable price. This is due to extremely low liquidity.</string>
<string name="Swap_MinimumReceived">Guaranteed Amount</string>
<string name="Swap_EstimatedFee">Estimated Fee</string>
<string name="Swap_MaxFee">Max Fee</string>
<string name="Swap_Fee">Fee</string>
<string name="Swap_ErrorInsufficientBalance">Insufficient balance</string>
<string name="Swap_ErrorBalanceNotAvailable">Balance N/A</string>
<string name="Swap_ErrorNoLiquidity">Can\'t swap these tokens</string>
<string name="Swap_ErrorWrapUnwrapNotAllowed">This service doesn\'t allow wrapping/unwrapping. Use 1inch instead.</string>
<string name="Swap_ErrorHighPriceImpact">High price impact</string>
<string name="Swap_Proceed">Next</string>
<string name="Swap_Revoke">Revoke</string>
<string name="Swap_Revoking">Revoking...</string>
<string name="Swap_Approve">Approve</string>
<string name="Swap_Approving">Approving</string>
<string name="Swap_Swapping">Swapping</string>
<string name="Swap_MaximumPaid">Maximum Amount</string>
<string name="Swap_MinimumGot">Guaranteed Amount</string>
<string name="Swap_PoweredBy">Powered by</string>
<string name="Swap_SelectSwapProvider_Title">Swap Provider</string>
<string name="Swap_AmountEstimated">(est)</string>
<string name="Swap_AmountMin">(min)</string>
<string name="Swap_AmountMax">(max)</string>
<string name="Swap_AmountTypeCoin">Coin</string>
<!-- Swap Settings -->
<string name="SwapSettings_Title">Swap Settings</string>
<string name="SwapSettings_Service">Service</string>
<string name="SwapSettings_SlippageTitle">Slippage Tolerance</string>
<string name="SwapSettings_SlippageDescription">Your transaction will revert if the price changes unfavorably by more than this percentage</string>
<string name="SwapSettings_DeadlineTitle">Transaction Deadline</string>
<string name="SwapSettings_DeadlineDescription">Your transaction will revert if it is pending for more than this long.</string>
<string name="SwapSettings_RecipientAddressTitle">Recipient Address</string>
<string name="SwapSettings_RecipientAddressDescription">After the exchange operation, the amount will be transferred to the specified address</string>
<string name="SwapSettings_Apply">Apply</string>
<string name="SwapSettings_DeadlineMinute">%s min</string>
<string name="SwapSettings_RecipientPlaceholder">Address or domain</string>
<string name="SwapSettings_FeeSettingsAlert">A service fee for the swap action on the platform typically either 0.3% or 0.6%</string>
<string name="SwapSettings_Error_DeadlineZero">Zero Deadline</string>
<string name="SwapSettings_Error_SlippageZero">Zero Slippage</string>
<string name="SwapSettings_Error_SlippageTooLow">Your transaction is likely to fail.</string>
<string name="SwapSettings_Error_SlippageTooHigh">Slippage Tolerance can’t be more than %s%%</string>
<string name="SwapSettings_Error_InvalidAddress">Invalid address</string>
<string name="SwapSettings_Error_InvalidBlockchainAddress">Invalid %s address</string>
<string name="SwapSettings_Error_InvalidSlippage">Invalid Slippage</string>
<string name="SwapSettings_Error_InvalidDeadline">Invalid Deadline</string>
<string name="SwapSettings_Warning_UnusualSlippage">Your transaction may be frontrun</string>
<!-- Swap Confirmation -->
<string name="Swap_Confirmation">Confirmation</string>
<string name="Swap_Confirmation_Guaranteed">Guaranteed</string>
<string name="Swap_Confirmation_Maximum">Maximum</string>
<string name="Swap_Confirmation_Estimated">Estimated</string>
<!--Approve-->
<string name="Approve_Title">Swap Approve</string>
<string name="Approve_RevokeAndApproveInfo">You can exchange %s, or you need to revoke and approve the new amount</string>
<string name="Approve_ButtonRevoke">Revoke</string>
<string name="Approve_ButtonRevoking">Revoking</string>
<string name="Approve_ButtonApprove">Approve</string>
<string name="Approve_Info">You should grant permission to a smart contract to swap given token on your behalf. This permission sets amount that can be used by a smart contract. It doesn\'t affect your balance but requires a small fee to execute approval transaction. \n\nWhile it may be done on demand before each trade, it\'s cheaper to approve higher amount in advance for future trades.</string>
<string name="Approve_Error_AlreadyApproved">You already have an allowance for this amount</string>
<string name="Approve_Spender">Spender</string>
<string name="Approve_YouApprove">You Approve</string>
<string name="Approve_YouRevoke">You Revoke</string>
<!--Uniswap Info -->
<string name="SwapInfo_AllowanceTitle">Allowance</string>
<string name="SwapInfo_AllowanceDescription">The amount an exchange can spend on a user\’s behalf when executing token swaps. A proceeding transaction setting sufficient allowance is required before an actual swap transaction can take place.</string>
<string name="SwapInfo_PriceImpactTitle">Price Impact</string>
<string name="SwapInfo_PriceImpactDescription">The expected price deviation from a shown price, typically increases with the swap amount.</string>
<string name="SwapInfo_GuaranteedAmountTitle">Guaranteed Amount</string>
<string name="SwapInfo_MaxSpendTitle">Maximum Spend</string>
<!--Deposit-->
<string name="Deposit_Title">Receive %s</string>
<string name="Deposit_Share">Share</string>
<string name="Deposit_Your_Address">Your Address</string>
<string name="Deposit_Address">Address</string>
<!--Transactions-->
<string name="Transactions_Title">Transactions</string>
<string name="Transactions_FilterAll">ALL</string>
<string name="Transactions_EmptyList">You don\’t have any pending or past transactions yet</string>
<string name="Transactions_WaitForSync">Please wait for the sync to finish.</string>
<string name="Transactions_Pending">Pending</string>
<string name="Transactions_Receive">Receive</string>
<string name="Transactions_Completed">Completed</string>
<string name="Transactions_Processing">Processing</string>
<string name="Transactions_Send">Send</string>
<string name="Transactions_Burn">Burn</string>
<string name="Transactions_Mint">Mint</string>
<string name="Transactions_Approve">Approve</string>
<string name="Transactions_Swap">Swap</string>
<string name="Transactions_Failed">Failed</string>
<string name="Transactions_ContractCall">Contract Call</string>
<string name="Transactions_ExternalContractCall">External Call</string>
<string name="Transactions_ContractCreation">Contract Creation</string>
<string name="Transactions_To">to %s</string>
<string name="Transactions_From">from %s</string>
<string name="Transaction_Unlimited">unlimited %s</string>
<string name="Transactions_All">All</string>
<string name="Transactions_Filter_Blockchain">Blockchain</string>
<string name="Transactions_Filter_Coin">Coin</string>
<string name="Transactions_Filter_AllBlockchains">All Blockchains</string>
<string name="Transactions_Filter_AllCoins">All Coins</string>
<string name="Transactions_Filter_ChooseCoin">Choose Coin</string>
<string name="Transactions_Filter_ChooseBlockchain">Choose Blockchain</string>
<string name="Transactions_Incoming">Received</string>
<string name="Transactions_Outgoing">Sent</string>
<string name="Transactions_Swaps">Swaps</string>
<string name="Transactions_Approvals">Approvals</string>
<string name="Transactions_Unknown">Unknown Transaction</string>
<string name="Transactions_Unknown_Description">Transaction can not be parsed</string>
<string name="Transactions_Multiple">Multiple</string>
<string name="Transactions_Filter">Filter</string>
<string name="Transactions_Filter_HideSuspiciousTx">Hide suspicious tx</string>
<string name="Transactions_Filter_StablecoinDustAmount_Description">Hiding incoming transactions with the dust amount in stablecoins, this partially solves the address poisoning attack problems.</string>
<!--Transaction Info-->
<string name="TransactionInfo_Transaction">Transaction</string>
<string name="TransactionInfo_Title">Transaction Info</string>
<string name="TransactionInfo_Approval">Swap Approval</string>
<string name="TransactionInfo_Status">Status</string>
<string name="TransactionInfo_Status_Confirmed">Confirmed</string>
<string name="TransactionInfo_Date">Date</string>
<string name="TransactionInfo_Id">ID</string>
<string name="TransactionInfo_Service">Service</string>
<string name="TransactionInfo_RawTransaction">Raw Transaction</string>
<string name="TransactionInfo_ContactName">Contact Name</string>
<string name="TransactionInfo_To">To</string>
<string name="TransactionInfo_From">From</string>
<string name="TransactionInfo_Spender">Spender</string>
<string name="TransactionInfo_Memo" translatable="false">Memo</string>
<string name="TransactionInfo_LockedUntil">Locked until %s</string>
<string name="TransactionInfo_UnlockedAt">Unlocked at %s</string>
<string name="TransactionInfo_RecipientHash">Recipient</string>
<string name="TransactionInfo_HistoricalRate">Historical Rate</string>
<string name="TransactionInfo_Fee">Fee</string>
<string name="TransactionInfo_FeeEstimated">Fee (est.)</string>
<string name="TransactionInfo_SentToSelfNote">The transaction is sent to own address</string>
<string name="TransactionInfo_DoubleSpendNote">Double Spend Risk!</string>
<string name="TransactionInfo_ButtonViewOnExplorerName">View on %s</string>
<string name="TransactionInfo_Price">Price</string>
<string name="TransactionInfo_YouPay">You Pay</string>
<string name="TransactionInfo_YouPaid">You Paid</string>
<string name="TransactionInfo_YouGet">You Get</string>
<string name="TransactionInfo_YouGot">You Got</string>
<string name="TransactionInfo_Resend">Resend</string>
<string name="TransactionInfo_RevokeApproval">Revoke Approval</string>
<string name="TransactionInfo_Options">Options</string>
<string name="TransactionInfo_SpeedUp">Speed Up</string>
<string name="TransactionInfo_Cancel">Cancel</string>
<string name="TransactionInfo_SpamWarning">This transaction is suspicious and can be a scam.\nPlease do not copy any addresses from this transaction.</string>
<string name="StatusInfo_Pending">Pending</string>
<string name="StatusInfo_Processing">Processing</string>
<string name="StatusInfo_Confirmed">Completed</string>
<string name="StatusInfo_Failed">Failed</string>
<string name="StatusInfo_PendingDescription">The transaction has not been confirmed on the blockchain yet. Transactions sent with a recommended or higher fee setting are generally processed within a few minutes. Transactions sent with a low fee may remain pending for a few hours or even days, and can even be rejected. Note that status of an individual transaction in Unstoppable wallet interface typically updated with a short delay.</string>
<string name="StatusInfo_ProcessingDescription">The transaction has been already included in the blockchain but has not reached permanent finality. At this point, it\'s safe to consider the transaction as completed for smaller payments. For larger payments, it\'s recommended to wait until the transaction status changes to completed.</string>
<string name="StatusInfo_ConfirmedDescription">Transaction is completed and considered permanent and irreversible.</string>
<string name="StatusInfo_FailedDescription">The transaction did not get processed and no value transfer took place. Depending on the fail reason, some failed transactions may consume transaction fees. Transactions that were replaced or cancelled by another transaction do not consume transaction fees and will also appear sa failed. The Unstoppable app is unable to show the reason for failed transactions, but users are able to look it up themselves on a public block explorer i.e. etherscan.io.</string>
<!-- Transaction Info Options -->
<string name="TransactionInfoOptions_SpeedUp_Title">Speed Up</string>
<string name="TransactionInfoOptions_SpeedUp_Description">This action will attempt to invalidate previous transaction by resending it with a higher fee. If the original transaction remains pending when a new one sent there is s a high chance (not guaranteed) that it will be invalidated and replaced. Only one of these two transactions will be included in the blockchain.</string>
<string name="TransactionInfoOptions_SpeedUp_Button">Resend</string>
<string name="TransactionInfoOptions_Cancel_Title">Cancel</string>
<string name="TransactionInfoOptions_Cancel_Description">This action will attempt to invalidate previous transaction by resending as a new 0 %s transaction to self. If the original transaction remains pending when a new one sent there is s a high chance (not guaranteed) that it will be invalidated and replaced. Only one of these two transactions will be included in the blockchain.</string>
<string name="TransactionInfoOptions_Cancel_Button">Cancel Transaction</string>
<string name="TransactionInfoOptions_Warning_TransactionInBlock">Transaction already in block</string>
<!-- Info -->
<string name="Info_LockTime_Title" translatable="false">TimeLock</string>
<string name="Info_LockTime_Description">The sender sent these funds with a spending lock that will expire on %s.\n\nNo worries, the received Bitcoins are already yours, but until the lock period expires you can not spend them on the Bitcoin network.</string>
<string name="Info_LockTime_Description_Static">The sender sent these funds with a spending lock that will expire on the shown date. \n\nNo worries, the received Bitcoins are already yours, but until the lock period expires you cannot spend them on the Bitcoin network.</string>
<string name="Info_DoubleSpend_Title">Double Spend</string>
<string name="Info_DoubleSpend_Description">Double Spend Risk! There is another transaction on the blockchain that is trying to spend inputs used in this transaction. Only one transaction will be accepted by the network</string>
<string name="Info_DoubleSpend_ThisTx">This Tx</string>
<string name="Info_DoubleSpend_ConflictingTx">Conflicting Tx</string>
<!--Guides-->
<string name="Guides_Title">Academy</string>
<!--Markdown-->
<string name="Markdown_Error_NotFound">Page not found</string>
<!--Setting_Currency-->
<string name="SettingsCurrency_Title">Base Currency</string>
<string name="SettingsCurrency_Other">OTHER</string>
<string name="SettingsCurrency_DisclaimerTitle">Disclaimer</string>
<string name="SettingsCurrency_DisclaimerText">The exchange rate data is provided by a third party service - Coingecko.com.\n\nThe Unstoppable wallet app doesn\'t guarantee these values are always correct and matches market data. The chance for inconsistency is higher if you select any base currency other than %s.</string>
<string name="SettingsCurrency_Understand">I Understand</string>
<!--Settings-->
<string name="Settings_Title">Settings</string>
<string name="Settings_SecurityCenter">Security</string>
<string name="Settings_Notifications">Notifications</string>
<string name="Settings_ExperimentalFeatures">Experimental</string>
<string name="Settings_BaseCurrency">Base Currency</string>
<string name="Settings_Language">Language</string>
<string name="Settings_Theme">Theme</string>
<string name="Settings_Terms">Terms</string>
<string name="Settings_Privacy">Privacy</string>
<string name="Settings_ShareThisWallet">Tell Friends</string>
<string name="Settings_InfoTitleWithVersion" translatable="false">Unstoppable %s</string>
<string name="Settings_InfoSubtitle" translatable="false">decentralized app</string>
<string name="Settings_CompanyName" translatable="false">horizontal systems</string>
<string name="Settings_Faq" translatable="false">FAQ</string>
<string name="Settings_AppStatus">App Status</string>
<string name="Settings_WalletConnect" translatable="false">WalletConnect</string>
<string name="Settings_RateUs">Rate Us</string>
<string name="Settings_LaunchScreen">Launch Screen</string>
<string name="Settings_Appearance">Appearance</string>
<string name="Settings_Contact_ViaTelegram">via Telegram</string>
<string name="Settings_Contact_ViaEmail">via E-mail</string>
<string name="Settings_AutoLock">Auto-Lock</string>
<string name="Settings_PersonalSupport">Personal Support</string>
<string name="Settings_PersonalSupport_EnterTelegramAccountDescription">Enter your Telegram account name to start a personal support chat with our team. We\'ll get back to you and start working on your problem as soon as we see it.</string>
<string name="Settings_PersonalSupport_YouAlreadyRequestedSupportDescription">You\'ve already requested a private chat, find it on Telegram</string>
<string name="Settings_PersonalSupport_Account">Account</string>
<string name="Settings_PersonalSupport_UsernameHint">\@username</string>
<string name="Settings_PersonalSupport_Requested">Requested</string>
<string name="Settings_PersonalSupport_Request">Request</string>
<string name="Settings_PersonalSupport_NewRequest">New Request</string>
<string name="Settings_PersonalSupport_Requestfailed">Request failed</string>
<string name="Settings_PersonalSupport_OpenTelegram">Open Telegram</string>
<string name="Settings_Donate_Info">Together, with your support, we can make this app even better!</string>
<string name="Settings_Donate">Donate</string>
<string name="Settings_DonateToken">Donate %s</string>
<string name="Settings_DonateWith">Donate with</string>
<string name="Settings_Donate_GetAddress">Donation Address</string>
<string name="Settings_Donate_Addresses">Addresses</string>
<string name="Settings_Donate_OrSelectCoinToDonate">Or select a coin to donate</string>
<string name="SettingsSecurity_AutoLock_Immediate">Immediate</string>
<string name="SettingsSecurity_AutoLock_After1Min">1 minute</string>
<string name="SettingsSecurity_AutoLock_After5Min">5 minutes</string>
<string name="SettingsSecurity_AutoLock_After15Min">15 minutes</string>
<string name="SettingsSecurity_AutoLock_After30Min">30 minutes</string>
<string name="SettingsSecurity_AutoLock_After1Hour">1 hour</string>
<string name="Appearance_Theme">THEME</string>
<string name="Appearance_Tab">TAB SETTINGS</string>
<string name="Appearance_LaunchScreen">LAUNCH SCREEN</string>
<string name="Appearance_AppIcon">APP ICON</string>
<string name="Appearance_BalanceConversion">BALANCE CONVERSION</string>
<string name="Appearance_BalanceValue">BALANCE VALUE</string>
<string name="Appearance_Warning_CloseApplication">Changing icon will close application</string>
<string name="Appearance_MarketsTab">Markets Tab</string>
<string name="Appearance_BalanceAutoHide">Balance Auto Hide</string>
<string name="Appearance_BalanceAutoHide_Description">Automatically hides balance each time the app is opened, regardless of previous preferences.</string>
<string name="BalanceViewType_CoinValue">Coin Value</string>
<string name="BalanceViewType_FiatValue">Fiat Value</string>
<string name="SettingsAboutApp_Title">About App</string>
<string name="SettingsAboutApp_Github" translatable="false">Github</string>
<string name="SettingsAboutApp_Twitter" translatable="false">Twitter</string>
<string name="SettingsAboutApp_Site">Website</string>
<string name="SettingsAboutApp_WhatsNew">What\'s New</string>
<!-- Blockchain Settings -->
<string name="BlockchainSettings_Title">Blockchain Settings</string>
<!-- Backup Manager -->
<string name="BackupManager_Title">Backup Manager</string>
<string name="BackupManager_RestoreBackup">Restore Backup</string>
<string name="BackupManager_CreateBackup">Create New Backup</string>
<string name="BackupManager_BаckupFile">Backup File</string>
<string name="BackupManager_Wallets">WALLETS</string>
<string name="BackupManager_Other">OTHER</string>
<string name="BackupManager_Restore">Restore</string>
<string name="BackupManager_BackupFileContents">List of contents in the backup file.</string>
<string name="BackupManager_MergeTitle">Warning</string>
<string name="BackupManager_MergeButton">Replace</string>
<string name="BackupManager_MergeDescription">This action will overwrite your local payment contacts.</string>
<string name="BackupManager_BackupRequired">Backup required</string>
<string name="BackupManager_WatchWallets">Watch Wallets</string>
<string name="BackupManager_Watchlist">Watchlist</string>
<string name="BackupManager_CustomRpc">Custom RPC</string>
<string name="BackupManager_AppSettingsTitle">App Settings</string>
<string name="BackupManager_AppSettingsDescription">Language, Currency, Appearance …</string>
<!-- Privacy -->
<string name="Privacy_Information">Unstoppable doesn\'t collect any data or use analytics tools that may expose any data about its users. The wallet is designed to ensure a high level of privacy for its users.</string>
<string name="Privacy_BulletedText1">User data always remains on the user\'s device.</string>
<string name="Privacy_BulletedText2">The wallet doesn\'t collect any data about users.</string>
<string name="Privacy_BulletedText3">The wallet doesn\'t share any data about users.</string>
<string name="Privacy_BulletedText4">There are no user accounts or databases keeping user data elsewhere.</string>
<!-- Security Center -->
<string name="SecurityCenter_Internet">INTERNET</string>
<!--Evm Network-->
<string name="EvmNetwork_AddNew">Add New</string>
<string name="EvmNetwork_Added">Added</string>
<string name="EvmNetwork_SyncMode">Sync Mode</string>
<!--Add RPC Source-->
<string name="AddEvmSyncSource_RpcUrl">RPC Url</string>
<string name="AddEvmSyncSource_AddRPCSource">Add RPC Source</string>
<string name="AddEvmSyncSource_Name">Name</string>
<string name="AddEvmSyncSource_BasicAuthentication">Basic Auth(optional)</string>
<string name="AddEvmSyncSource_Warning_UrlExists">RPC Source with this url already exists</string>
<string name="AddEvmSyncSource_Error_InvalidUrl">Entered url is invalid. Valid url must have one of the following schemes: https, wss</string>
<!--Btc Blockchain Settings -->
<string name="BtcBlockchainSettings_RestoreSourceChangeWarning">After changing source the wallet will have to resync itself.</string>
<string name="BtcBlockchainSettings_RestoreSourceSettingsDescription">Choose the source Unstoppable app should use for synchronizing wallet(s).</string>
<string name="BtcBlockchainSettings_InputsOutputs">Inputs/Outputs</string>
<string name="BtcBlockchainSettings_TransactionSettings">Transaction Settings</string>
<string name="BtcBlockchainSettings_TransactionInputsOutputs">Transaction Inputs / Outputs</string>
<string name="BtcBlockchainSettings_TransactionInputsOutputsSettingsDescription">Make your BTC, LTC, BCH transactions harder to trace by changing the way transactions are structured.</string>
<string name="BtcBlockchainSettings_TransactionInputsOutputsDescription">Most Bitcoin transactions, as well as transactions in alike cryptocurrencies including Bitcoin Cash, Dash, and Litecoin, generate two outputs. One output is the amount that goes to the receiver and the other is the change output that is returned to the sender. The way most wallets construct transactions makes it easy for a third party to understand which of the outputs went to the receiving party and which one was the change amount returned to the sender. As the output returned to the sender is later used in future transactions, a connection between these two transactions becomes apparent.
\n\nThe Unstoppable wallet implements measures to make it harder for someone to figure out which output goes where.
\n\nThere are two options available to Unstoppable users:
\n\n1. Shuffle: The order of transaction outputs is randomized on every transaction. Sometimes change can be the first output, sometimes it can be the second. If a user trusts the developer of the app, then consider this a recommended option.
\n\n2. Deterministic: There is a commonly agreed standard for ordering transaction outputs (known as BIP69). In open-source wallets, that standard ensures wallet users do not need to trust how developers of the app implement the ordering of the outputs. As this standard is new, not many wallets have implemented it yet. As a result, it\'s somewhat possible to see on the blockchain whether a transaction was sent from a wallet that uses that standard or not.</string>
<!--Info screen-->
<string name="Info_Title">Info</string>
<!--Setting_Security-->
<string name="SettingsSecurity_Privacy">Privacy</string>
<string name="SettingsSecurity_Biometric_Authentication">Biometrics</string>
<string name="SettingsSecurity_Info_Biometric_Authentication">Enabling Biometric Authentication may potentially weaken the security of your device when compared to plain PIN lock code.</string>
<string name="SettingsSecurity_EnablePin">Enable Passcode</string>
<string name="SettingsSecurity_DisablePin">Disable Passcode</string>
<string name="SettingsSecurity_EditPin">Edit Passcode</string>
<string name="SettingsSecurity_SetDuressPin">Set Duress Mode</string>
<string name="SettingsSecurity_EditDuressPin">Edit Duress Passcode</string>
<string name="SettingsSecurity_DisableDuressPin">Disable Duress Passcode</string>
<string name="SettingsSecurity_DuressPinDescription">A specialized mode designed to keep selected wallets safe under coercion.</string>
<string name="SettingsSecurity_ManageKeys">Manage Wallets</string>
<string name="SettingsSecurity_AppRestartWarning">This action will restart Unstoppable Wallet.</string>