-
Notifications
You must be signed in to change notification settings - Fork 395
/
Copy pathstrings.xml
1766 lines (1524 loc) · 130 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_Loading">Loading...</string>
<string name="Alert_Skip" translatable="false">SKIP</string>
<string name="Alert_Select" translatable="false">SELECT</string>
<string name="Suspended">SUSPENDED</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_Confirm">Confirm</string>
<string name="Button_Refresh">Refresh</string>
<string name="Button_Connect">Connect</string>
<string name="Button_Reject">Reject</string>
<string name="Button_Disconnect">Disconnect</string>
<string name="Button_Create">Create</string>
<string name="Button_Advanced">Advanced</string>
<string name="Button_Restore">Import</string>
<string name="Button_Reset">Reset</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_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_Sign">Sign</string>
<string name="Button_GetApiKeys">Get API Keys</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="Button_ContinueAnyway">Continue Anyway</string>
<string name="Button_Check">Check</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="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_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-->
<!--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_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_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_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_Bip_Recommended">(recommended)</string>
<string name="Restore_PrivateKey_InvalidKey">Invalid Key</string>
<string name="SelectContacts_All">All</string>
<string name="Restore_BirthdayHeight">Birthday Height</string>
<string name="Restore_ZCash">ZCash</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-->
<!--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_FilterSection_Indicators">INDICATORS</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_Sort_PopupTitle">Sort by</string>
<string name="Market_BtcDominance">BTC Dominance</string>
<string name="Market_SeeAll">See All</string>
<string name="Market_PoweredByApi">Powered By CoinGeko API</string>
<string name="Market_Tab_Posts">News</string>
<string name="Market_Tab_Coins">Coins</string>
<string name="Market_Tab_Platform">Platforms</string>
<string name="Market_Tab_Pairs">Pairs</string>
<string name="Market_Tab_Sectors">Sectors</string>
<string name="Market_Tab_Watchlist">Favorites</string>
<string name="Market_Tab_Watchlist_EmptyList">Your favorites are empty.</string>
<string name="Market_Category_TopCoins">Top Coins</string>
<string name="Market_Signals">Signals</string>
<string name="Market_Volume">Volume</string>
<string name="Market_MarketCap">Market Cap</string>
<string name="Market_TVL">TVL</string>
<string name="Market_Signal_Description">Below signals are based on the Bollinger Bands and RSI technical price indicators over approx. the last 30 days. These signals are algorithmic and can change frequently.</string>
<string name="Market_Signal_StrongBuy_Description">High confidence in price increase.</string>
<string name="Market_Signal_Buy_Description">Likely price increase in near future.</string>
<string name="Market_Signal_Neutral_Descripion">No clear trend, market is in equilibrium.</string>
<string name="Market_Signal_Sell_Description">Likely price decrease in near future.</string>
<string name="Market_Signal_StrongSell_Description">High probability of price decrease.</string>
<string name="Market_Signal_Risky_Description">Elevated risk level, requires caution.</string>
<string name="Market_Signal_Warning">Always remember to apply risk management, and note that this is not financial advice.</string>
<string name="Market_Signal_TurnOn">Turn on</string>
<string name="Market_Top_100">Top 100</string>
<string name="Market_Top_200">Top 200</string>
<string name="Market_Top_300">Top 300</string>
<string name="Market_Top_500">Top 500</string>
<!--Market Overview-->
<!--Market Top Platforms-->
<string name="MarketTopPlatforms_Title">Top Platforms</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_TotalMarketCap">Total Cap</string>
<string name="MarketGlobalMetrics_Volume">24h Vol.</string>
<string name="MarketGlobalMetrics_TvlInDefi">TVL</string>
<string name="MarketGlobalMetrics_EtfInflow">ETF</string>
<string name="MarketGlobalMetrics_TotalMarketCapDescription">Total market value of all cryptocurrencies.</string>
<string name="MarketGlobalMetrics_VolumeDescription">The 24h trading volume of the crypto market.</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_NoCoin">This project doesn\'t have a coin</string>
<!-- ETF-->
<string name="MarketEtf_Title">Total Net Inflow</string>
<string name="MarketEtf_Description">The net inflow of an ETF equals its cash inflows minus outflows.</string>
<string name="MarketEtf_HighestAssets">Highest Assets</string>
<string name="MarketEtf_LowestAssets">Lowest Assets</string>
<string name="MarketEtf_Inflow">Inflow</string>
<string name="MarketEtf_Outflow">Outflow</string>
<string name="MarketEtf_TotalNetAssets">Total Net Assets</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_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_TradingSignals">Trading Signals</string>
<string name="Market_Filter_PriceChange">Price Change</string>
<string name="Market_Filter_Sectors">Sectors</string>
<string name="Market_PriceChange_24H">24 Hours</string>
<string name="Market_PriceChange_Utc">Midnight UTC</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_PriceCloseTo">Price Close To</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_StrongBuy">Strong Buy</string>
<string name="Market_Filter_Buy">Buy</string>
<string name="Market_Filter_Neutral">Neutral</string>
<string name="Market_Filter_StrongSell">Strong Sell</string>
<string name="Market_Filter_Sell">Sell</string>
<string name="Market_Filter_RiskToTrade">Risky</string>
<string name="Market_Filter_ATH" translatable="false">ATH</string>
<string name="Market_Filter_ATL" translatable="false">ATL</string>
<string name="Market_Filter_ATH_Description">(All Time High)</string>
<string name="Market_Filter_ATL_Description">(All Time Low)</string>
<string name="Market_Filter_Top_100">Top 100</string>
<string name="Market_Filter_Top_200">Top 200</string>
<string name="Market_Filter_Top_300">Top 300</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_Top_2000">Top 2000</string>
<string name="Market_Filter_Top_2500">Top 2500</string>
<string name="Market_Filter_Top_100_Description" translatable="false">M.Cap > $1B</string>
<string name="Market_Filter_Top_200_Description" translatable="false">M.Cap > $500M </string>
<string name="Market_Filter_Top_300_Description" translatable="false">M.Cap > $250M </string>
<string name="Market_Filter_Top_500_Description" translatable="false">M.Cap > $100M </string>
<string name="Market_Filter_Top_1000_Description" translatable="false">M.Cap > $25M </string>
<string name="Market_Filter_Top_1500_Description" translatable="false">M.Cap > $10M </string>
<string name="Market_Filter_Top_2000_Description" translatable="false">M.Cap > $5M </string>
<string name="Market_Filter_Top_2500_Description" translatable="false">M.Cap > $1M </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_3M">3 Months</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="Market_Sorting_Manual">Manual</string>
<string name="Market_Sorting_Gainers">Gainers</string>
<string name="Market_Sorting_Losers">Losers</string>
<string name="Market_Sorting_HighestCap">Highest Cap</string>
<string name="Market_Sorting_LowestCap">Lowest Cap</string>
<string name="Market_Filters_Select">Select %d</string>
<!--Coin Markets-->
<!--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_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_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_NoCoinsAlert">You haven\'t added any coins to this wallet.</string>
<string name="Balance_NoAssetsToSend">You have no assets to send.</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_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_LockedAmount_Title">Locked</string>
<string name="Balance_ProcessingBalance_Title">Processing</string>
<string name="Balance_NotRelayedAmount_Title">Broadcasting</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</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>
<string name="Balance_SendHint_CoinName">Coin Name</string>
<string name="Balance_ReceiveHint_Search">Search</string>
<!--Send NFT-->
<string name="SendNft_Title">Send</string>
<!--Send-->
<string name="Send_EnterAddress">Enter Address</string>
<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_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_Utxo_AvailableBalance">Available Balance</string>
<string name="Send_Utxo_UnselectAll">Unsellect All</string>
<string name="Send_Utxo_SelectAll">Sellect All</string>
<string name="Send_Confirmation_Title">Confirm</string>
<string name="Send_Confirmation_YouSend">You Send</string>
<string name="Send_Confirmation_YouReceive">You Receive</string>
<string name="Send_Confirmation_Mint">Mint</string>
<string name="Send_Confirmation_Burn">Burn</string>
<string name="Send_Confirmation_To">To</string>
<string name="Send_Confirmation_Own">Own</string>
<string name="Send_Confirmation_Method">Method</string>
<string name="Send_Confirmation_Nonce" translatable="false">Nonce</string>
<string name="Send_Confirmation_HintMemo" translatable="false">Memo</string>
<string name="Send_Confirmation_Send_Button">Send</string>
<string name="Send_Confirmation_Action">Action</string>
<string name="Send_Processing">Processing!</string>
<string name="Send_Processing_Description">Transaction sent successfully. Check its status for details.</string>
<string name="Send_Address_Recent">Recent</string>
<string name="Send_Address_Error_CheckLocked">Locked</string>
<string name="Send_Address_Error_Incorrect">Invalid</string>
<string name="Send_Address_Error_InvalidAddress">Invalid Address</string>
<string name="Send_Address_Error_Correct">Correct</string>
<string name="Send_Address_Error_Detected">Detected</string>
<string name="Send_Address_Error_Clear">Clear</string>
<string name="Send_Address_AddressCheck">Address Check</string>
<string name="Send_Address_PhishingCheck">Phishing Check</string>
<string name="Send_Address_PhishingCheck_Info1">Analyzes the provided destination address for potential phishing risks.</string>
<string name="Send_Address_PhishingCheck_Info2">Clear: No suspicious activity detected.</string>
<string name="Send_Address_PhishingCheck_Info3">Detected: It appears that someone may be trying to trick you into sending funds to an incorrect address. Do not proceed unless absolutely certain that the address is correct. Consider sending a small test transaction first.</string>
<string name="Send_Address_BlacklistCheck">Blacklist Check</string>
<string name="Send_Address_BlacklistCheck_Info1">Checks if the destination address is listed on official or unofficial blacklists.</string>
<string name="Send_Address_BlacklistCheck_Info2">Clear: No blacklist flags.</string>
<string name="Send_Address_BlacklistCheck_Info3">Detected: The address is blacklisted and may be associated with legal or security risks. Proceed with caution. Many crypto exchanges restrict users who deposit or withdraw funds from wallets that have interacted with blacklisted addresses. Keep that in mind.</string>
<string name="Send_Address_SanctionCheck">Sanctions Check</string>
<string name="Send_Address_SanctionCheck_Info1">Verifies whether the recipient’s address is subject to international sanctions, using data from Chainalysis.com.</string>
<string name="Send_Address_SanctionCheck_Info2">Clear: No sanctions detected.</string>
<string name="Send_Address_SanctionCheck_Info3">Detected: Potential legal risk. Transactions with this address may be restricted or illegal in certain jurisdictions.</string>
<string name="Send_Address_ErrorMessage_PhishingDetected">Phishing Address Detected!</string>
<string name="Send_Address_ErrorMessage_BlacklistDetected">Blacklisted Address Detected!</string>
<string name="Send_Address_ErrorMessage_SanctionDetected">Sanctioned Address Detected!</string>
<string name="Send_Address_ErrorMessage_PhishingDetected_Description">The address you entered may be fraudulent. Scammers often alter the first and last characters. Verify the full address carefully before proceeding to avoid loss.</string>
<string name="Send_Address_ErrorMessage_BlacklistDetected_Description">The address you entered is flagged as blacklisted. Transactions to this address could lead to loss or other risks. Please verify the recipient\'s details before proceeding.</string>
<string name="Send_Address_ErrorMessage_SanctionDetected_Description">The address you entered is marked as being under sanctions. Transactions to this address could lead to loss or other risks. Please verify the recipient\'s details before proceeding.</string>
<string name="Send_RiskyAddress">Risky Address!</string>
<string name="Send_RiskyAddress_AlertText">You are about to send funds to a high-risk address. Proceeding may result in loss or other security risks. By continuing, you accept the potential dangers. Are you sure you want to proceed?</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_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_UnsupportedAddress">Time locking works only when sending to payment addresses starting with 1... (aka BIP44 addresses)</string>
<string name="Send_Error_MinimumAmount">Min. amount %s</string>
<string name="Send_Error_MaximumAmount">Max. amount %s</string>
<string name="Send_Error_SendToSelf">Sending %s to your own address is not allowed. Please enter a different recipient address.</string>
<string name="Send_DialogAvailableBalance">Available Balance</string>
<string name="Send_DialogSpeed">Transaction Speed</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_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_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_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">This address is not active. 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_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>
<string name="Tron_TokenPage_AddressNotActive_Title">Account Not Active</string>
<string name="Tron_TokenPage_AddressNotActive_Info">New TRON wallets require a deposit of at least 1 TRX to become active. Inactive wallets can hold and receive tokens but won’t correct balances until activated.</string>
<!--TonConnect-->
<string name="TonConnect_Title" translatable="false">Ton Connect</string>
<string name="TonConnect_NewConnect">New Connection</string>
<string name="TonConnect_Error_InvalidUrl">Invalid URL Address</string>
<string name="TonConnect_Unnamed">Unnamed</string>
<string name="TonConnect_Url" translatable="false">URL</string>
<string name="TonConnect_Wallet">Wallet</string>
<string name="TonConnect_ChooseWallet">Choose a Wallet</string>
<!--WalletConnect-->
<string name="WalletConnect_Title" translatable="false">WalletConnect</string>
<string name="WalletConnect_Url" translatable="false">URL</string>
<string name="WalletConnect_Status">Status</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_Reconnect_Hint">Failed to establish connection. Try reconnecting again.</string>
<string name="WalletConnect_Error_InvalidUrl">Invalid URL Address</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_SignMessageRequest_Title">Sign Request</string>
<string name="WalletConnect_SignMessageRequest_dApp" translatable="false">dApp</string>
<string name="WalletConnect_SignMessageRequest_ShowMessageTitle">Message to sign</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_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_UnsupportedChains">Unsupported chains: %s</string>
<string name="WalletConnect_Error_UnsupportedMethods">Unsupported methods: %s</string>
<string name="WalletConnect_Error_UnsupportedEvents">Unsupported events: %s</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_NotSupportedDescription">You current wallet type %s does not support WalletConnect</string>
<string name="WalletConnect_Unnamed">Unnamed</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>
<!--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_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_FiatPriceImpact" translatable="false">(%s%%)</string>
<string name="Swap_Percent" translatable="false">%s%%</string>
<string name="Swap_TokenSelectorTitle">Select</string>
<string name="Swap_Allowance">Allowance</string>
<string name="Swap_Price">Price</string>
<string name="Swap_AvailableBalance">Available Balance</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_Slippage">Slippage</string>
<string name="Swap_Recipient">Recipient</string>
<string name="Swap_ErrorNoProviders">No Providers</string>
<string name="Swap_ErrorNoQuote">No Quote</string>
<string name="Swap_ErrorInsufficientBalance">Insufficient balance</string>
<string name="Swap_ErrorHighPriceImpact">High price impact</string>
<string name="Swap_ErrorTokenNotEnabled">Token Not Enabled</string>
<string name="Swap_ErrorWalletSyncing">Wallet is Syncing</string>
<string name="Swap_ErrorWalletNotSynced">Wallet Not Synced</string>
<string name="Swap_Proceed">Next</string>
<string name="Swap_SelectTokenIn">Select Token In</string>
<string name="Swap_SelectTokenOut">Select Token Out</string>
<string name="Swap_EnterAmount">Enter Amount</string>
<string name="Swap_Unlock">Unlock</string>
<string name="Swap_Unlocking">Unlocking...</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_Quoting">Quoting</string>
<string name="Swap_Providers">Providers</string>
<string name="Swap_AmountMin">(min)</string>
<string name="Swap_AmountMax">(max)</string>
<string name="Swap_YouPay">You Pay</string>
<string name="Swap_YouGet">You Get</string>
<string name="Swap_Confirm_Title">Confirm</string>
<string name="SwapConfirm_QuoteExpired">Quote expired</string>
<string name="SwapConfirm_FetchingFinalQuote">Fetching final quote</string>
<!-- Swap Settings -->
<string name="SwapSettings_Title">Swap Settings</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_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_Warning_UnusualSlippage">Your transaction may be frontrun</string>
<!-- Swap Confirmation -->
<!--Approve-->
<string name="Approve_RevokeAndApproveInfo">You can exchange %s, or you need to revoke and approve the new amount</string>
<string name="Approve_Spender">Spender</string>
<string name="Approve_YouApprove">You Approve</string>
<string name="Approve_YouRevoke">You Revoke</string>
<!--Swap Unlock Access-->
<string name="Swap_Unlock_PageTitle">Unlock Access</string>
<string name="Swap_Unlock_Subtitle">Allow access to the following amount</string>
<string name="Swap_Unlock_Info">Grant permission to a smart contract for token trading on your behalf, specifying the allowed amount. No impact on your balance, but incurs a small fee for approval.\n\nPre-approving a higher amount for future trades is cost-effective compared to on-demand approvals.</string>
<string name="Swap_Unlock_Unlimited">Unlimited</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>
<!--Deposit-->
<string name="Deposit_Title">Receive %s</string>
<!--Transactions-->
<string name="Transactions_Title">Transactions</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">Received</string>
<string name="Transactions_Completed">Completed</string>
<string name="Transactions_Processing">Processing</string>
<string name="Transactions_Send">Sent</string>
<string name="Transactions_Burn">Burned</string>
<string name="Transactions_Mint">Minted</string>
<string name="Transactions_Approve">Approved</string>
<string name="Transactions_Swap">Swapped</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_ContractDeploy">Contract Deploy</string>
<string name="Transactions_To">to %s</string>
<string name="Transactions_From">from %s</string>
<string name="Transaction_Unlimited_CoinCode">unlimited %s</string>
<string name="Transaction_Unlimited">unlimited</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_Contacts">Contacts</string>
<string name="Transactions_Filter_AllBlockchains">All Blockchains</string>
<string name="Transactions_Filter_AllCoins">All Coins</string>
<string name="Transactions_Filter_AllContacts">All Contacts</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_TonTransaction">Ton 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>
<string name="Transactions_Filter_ChooseContact_Hint">Filtering by contacts works on the following blockchains: Ethereum, BNB Smart Chain, Polygon, Avalanche, Gnosis, Fantom, Arbitrum, Optimism, Tron, Ton and ZCash. Below are the suitable contacts</string>
<string name="Transactions_Filter_ChooseContact_NoSuitableContact">You don\'t have any suitable contacts </string>
<!--Transaction Info-->
<string name="TransactionInfo_Title">Transaction Info</string>
<string name="TransactionInfo_Status">Status</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_YouGot">You Got</string>
<string name="TransactionInfo_YouSent">You Sent</string>
<string name="TransactionInfo_Received">Received</string>
<string name="TransactionInfo_Minted">Minted</string>
<string name="TransactionInfo_Sent">Sent</string>
<string name="TransactionInfo_Approved">Approved</string>
<string name="TransactionInfo_SpeedUp">Speed Up</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="TransactionInfo_SpeedUpDescription">This action will attempt to invalidate the previous transaction by resending it with a higher fee.</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_Button">Resend</string>
<string name="TransactionInfoOptions_Cancel_Title">Cancel</string>
<string name="TransactionInfoOptions_Cancel_Button">Cancel Transaction</string>
<string name="TransactionInfoOptions_Warning_TransactionInBlock">Transaction already in block</string>
<string name="TransactionInfoOptions_Rbf_ReplacedTransactions">Replaced Transactions</string>
<string name="TransactionInfoOptions_Rbf_FeeTitle">Fee (Sat)</string>
<string name="TransactionInfoOptions_Rbf_FeeTooLow">Fee Too Low</string>
<string name="TransactionInfoOptions_Rbf_NotEnabled">RBF not enabled</string>
<string name="TransactionInfoOptions_Rbf_UnableToReplace">Unable to replace</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_NotRelayed_Title">Broadcast</string>
<string name="Info_NotRelayed_Description">The transaction holding this amount is broadcasted but not yet accepted by the network.</string>
<string name="Info_ProcessingBalance_Title">Processing amount</string>
<string name="Info_ProcessingBalance_Description">Transactions with this amount still syncing. And when they are confirmed, these tokens will be available for spending</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>
<!--Settings-->
<string name="Settings_Title">Settings</string>
<string name="Settings_SecurityCenter">Security</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_TonConnect" translatable="false">Ton Connect</string>
<string name="Settings_RateUs">Rate Us</string>
<string name="Settings_LaunchScreen">Launch Screen</string>
<string name="Settings_Appearance">Appearance</string>
<string name="Settings_Subscription">Subscription</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_Telegram" translatable="false">Telegram</string>
<string name="Settings_Twitter" translatable="false">Twitter</string>
<string name="Settings_JoinUnstoppables">Join Unstoppables</string>
<string name="Settings_VipSupport">VIP Support</string>
<string name="Settings_VipClub">VIP Club</string>
<string name="Settings_BotSupport">BOT Support</string>
<string name="Settings_JoinUnstoppables_Description">Learn and master crypto via exclusive videos. Get to know us informally. Be the first to see things we work on.</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_VipSupport_StartChat">Start Chat</string>
<string name="Settings_VipSupport_Description">Get direct assistance from our experts. A private chat will be created in Telegram to resolve your issue, and it will be closed once the problem is solved.</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_GetYourTokens">Get your tokens</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>
<!--Premium Banner-->
<string name="SettingsBanner_Premium">Premium</string>
<string name="SettingsBanner_PremiumBannerDescription">Upgrade your experience with Premium features!</string>
<string name="SettingsBanner_PremiumTryFee">Try for FREE</string>
<!--Setting Subscription -->
<string name="SettingsSubscription_Active">Active</string>
<string name="SettingsSubscription_GetPremium">Get Premium</string>
<string name="SettingsSubscription_RestorePurchase">Restore Purchase</string>
<string name="SettingsSubscription_SubscriptionPlan">Subscription Plan</string>
<string name="SettingsSubscription_SubscriptionInfo">Next payment date: %s. You can manage your subscription in the Manage Subscription section.</string>
<string name="SettingsSubscription_ManageSubscription">Manage Subscription</string>
<string name="Period_Days">%s days</string>
<!--Premium Screens-->
<string name="Premium_Title">Premium</string>
<string name="Premium_ChoosePlanForYou">Choose the plan</string>
<string name="Premium_EnjoyFreePeriod">Enjoy the first %s FREE.</string>
<string name="Premium_CancelSubscriptionInfo">You can cancel your subscription at any time.</string>
<string name="Premium_GetFreePeriod">Get %s FREE</string>
<string name="Premium_Subscribe">Subscribe</string>
<string name="Premium_AddPromoCode">Add Promo Code</string>
<string name="Premium_TryForFree">Try for FREE</string>
<string name="Premium_Upgrade">Upgrade</string>
<string name="Premium_Restore">Restore</string>
<string name="Premium_Annually">Annually</string>
<string name="Premium_Monthly">Monthly</string>
<string name="Premium_ThankYouForSubscription">Thank you for your \nsubscription!</string>
<string name="Premium_YouHaveActivatedPlan">You have activated the %s plan.</string>
<string name="Premium_GoToApp">Go to App</string>
<string name="Premium_UpgradeText">Upgrade your experience with Premium features!</string>
<string name="Premium_EnjoyFullPowerOfTheApp">Enjoy the full power of the app.</string>
<string name="Premium_SelectSubscription">Select Subscription</string>
<string name="Premium_UpgradeFeature_TokenInsights">Token Lists</string>
<string name="Premium_UpgradeFeature_AdvancedSearch">Advanced Search</string>
<string name="Premium_UpgradeFeature_TradeSignals">Watch Trends</string>
<string name="Premium_UpgradeFeature_DuressMode">Duress Mode</string>
<string name="Premium_UpgradeFeature_AddressPhishing">Scam Protection</string>
<string name="Premium_UpgradeFeature_AddressBlacklist">Blacklist Checker</string>
<string name="Premium_UpgradeFeature_VipSupport">VIP Group</string>
<string name="Premium_UpgradeFeature_PrivacyMode">Privacy Mode</string>
<string name="Premium_UpgradeFeature_TokenInsights_Description">Master Token Research</string>
<string name="Premium_UpgradeFeature_AdvancedSearch_Description">Discover Trending Tokens</string>
<string name="Premium_UpgradeFeature_TradeSignals_Description">Trade Smarter, Profit Faster</string>
<string name="Premium_UpgradeFeature_DuressMode_Description">Stay Safe Wherever You Go</string>
<string name="Premium_UpgradeFeature_AddressPhishing_Description">Stay Secure Without the Hassle</string>
<string name="Premium_UpgradeFeature_AddressBlacklist_Description">Stay Legit and Compliant</string>
<string name="Premium_UpgradeFeature_VipSupport_Description">Vote on the Future of Unstoppable</string>
<string name="Premium_UpgradeFeature_PrivacyMode_Description">Full disconnection from data collection.</string>
<string name="Premium_UpgradeFeature_TokenInsights_BigDescription">Your all-in-one tool for deep analysis. Browse curated Top 250 token lists based on trading volume, exchange liquidity, holder behavior, and on-chain trends—all at a glance. Filter, analyze, and stay ahead.</string>
<string name="Premium_UpgradeFeature_AdvancedSearch_BigDescription">Ditch the noise and zero in on high-potential tokens with precision. Use Advanced Search to filter through thousands of tokens by trading volume, blockchain, market cap, price trends, sector, and performance—and more. Powerful, accurate, and built for discovery.</string>
<string name="Premium_UpgradeFeature_TradeSignals_BigDescription">Never miss a trading opportunity again. Watch Trends delivers real-time alerts powered by advanced technical analysis, helping you identify trends, spot breakouts, and avoid pitfalls before they happen. Act fast, trade smart, and maximize gains.</string>
<string name="Premium_UpgradeFeature_DuressMode_BigDescription">Your crypto. Your security. Duress Mode lets you create multiple alternate wallet setups, each with a separate PIN, providing a hidden escape route in high-risk situations. If forced to unlock your wallet, simply use the duress PIN to access a secondary wallet with no critical assets exposed. Your real funds stay hidden. Your security stays intact.</string>
<string name="Premium_UpgradeFeature_AddressPhishing_BigDescription">One wrong address, and your crypto is gone forever. Unstoppable automatically scans recipient addresses for suspicious patterns and defends against the latest phishing threats, preventing you from sending funds to a hacker. Block fraudulent transfers before they happen.</string>
<string name="Premium_UpgradeFeature_AddressBlacklist_BigDescription">Protect yourself from risky and sanctioned entities. Blacklist Checker automatically screens recipient addresses against high-risk databases, flagging scams, frauds, and sanctioned entities before you send. If an address is blacklisted, you’ll know before making a costly mistake. Secure your transactions. Keep your crypto clean. Stay compliant.</string>
<string name="Premium_UpgradeFeature_VipSupport_BigDescription">Be part of the evolution. Join the VIP Group to connect directly with our team, vote on upcoming features, and get an exclusive first look at future updates. Your voice matters—help shape the next-gen crypto wallet.</string>
<string name="Premium_UpgradeFeature_PrivacyMode_BigDescription">Grants the ability to disable UI/UX data collection, ensuring complete privacy and preventing any usage analysis.</string>
<string name="Premium_HighlyRatedSecurity">Highly rated security, exceptional privacy, and a truly non-custodial wallet.</string>
<string name="Premium_ApprovedBy">Approved and Audited By:</string>
<string name="Premium_WhatUsersSay">What users are saying:</string>
<string name="Premium_SubscriptionPeriod_Month">month</string>
<string name="Premium_SubscriptionPeriod_Year">year</string>
<string name="Appearance_MarketsTab">MARKETS TAB</string>
<string name="Appearance_BalanceTab">BALANCE TAB</string>
<string name="Appearance_AppIcon">APP ICON</string>
<string name="Appearance_BalanceValue">Balance Value</string>
<string name="Appearance_Warning_CloseApplication">Changing icon will close application</string>
<string name="Appearance_HideMarketsTab">Hide Markets</string>
<string name="Appearance_HideBalanceTabButtons">Hide Buttons</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="Appearance_PriceChangeInterval">Price Change %</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>