-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathen.ts
More file actions
1524 lines (1524 loc) · 58.4 KB
/
Copy pathen.ts
File metadata and controls
1524 lines (1524 loc) · 58.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
export default {
sentinel: {
in_progress: {
title: 'Helium Blockchain Stopped',
body: 'Helium is transitioning to Solana.',
},
complete: {
title: 'App update needed',
body: 'Helium has transitioned to Solana. Update your app to manage your account on Solana. No other action required.',
},
},
accountAssign: {
AccountNamePlaceholder: 'Wallet Name',
setDefault: 'Set as Default',
title: 'Name this wallet',
nameExists: 'Name already exists',
},
errors: {
account: 'Account missing',
accountNotSelected: 'There must be a wallet selected to submit a txn',
swap: {
routes: 'Swap routes missing',
tx: 'Swap tx not generated',
},
},
hotspotOnboarding: {
scan: {
title: 'Scan for Hotspots',
start: 'Start Scan',
stop: 'Stop Scan',
notEnabled: 'Bluetooth is not enabled',
scanning: 'Scanning for Hotspots',
},
settings: {
title: 'Settings',
hotspotError: 'Hotspot Returned Error: ',
notReady: 'Not Ready to Onboard',
},
diagnostics: {
title: 'Diagnostics',
get: 'Get Diagnostics',
noneFound: 'No diagnostics found',
},
wifiSettings: {
title: 'Wifi Settings',
remove: 'Would you like to remove {{network}}?',
available: 'Available Networks',
configured: 'Configured Networks',
setup: 'Setup Wifi',
},
onboarding: {
title: 'Onboarding',
subtitle:
'Onboard your Hotspot to the {{network}} network. After onboarding this Hotspot, you will be able to set the location and antenna details.',
onboard: 'Onboard Hotspot',
onboardAndPay: 'Onboard and Pay Maker Fees',
responsible:
'In almost all cases, Hotspots manufacturers are responsible for paying the onboarding and initial location assert fees.',
// eslint-disable-next-line no-template-curly-in-string
pay: 'I understand that the ${{usd}} onboarding fee was included in the purchase price of my Hotspot and the manufacturer is responsible for paying that fee. Nonetheless, I would like to pay the ${{usd}} onboarding fee out of my wallet to onboard my Hotspot now. I will also pay the ${{assertUsd}} fee to assert this hotspot location.',
wrongOwner: 'You do not own this hotspot, so you cannot onboard it',
notEnoughSol: 'You do not have enough sol to self-onboard',
notEnoughDc: 'You do not have enough DC or HNT to self-onboard',
hotspotNotFound:
'This hotspot does not exist in the onboarding server. Contact your manufacturer to have them approve hotspot with id {{onboardAddress}}',
makerNotFound: 'No manufacturer found for this hotspot',
manufacturerMissing:
'The manufacturer of your hotspot ({{name}}) does not have enough {{tokens}} for you to complete onboarding.',
twoSolutions: 'At this time there are two solutions:',
optionContact:
'Contact the manufacturer and request assistance onboarding your Hotspot.',
optionPay:
// eslint-disable-next-line no-template-curly-in-string
'Pay ${{usd}} in Data Credits or burn HNT to onboard my Hotspot. I will also pay the ${{assertUsd}} to assert this hotspot location.',
contact: 'Contact Manufacturer',
failedToFind:
'Failed to find onboarded hotspot. Check your hotspots page, as it may have been onboarded. This can happen due to network issues',
},
selectOnboardingMethod: {
title: 'Select Connection Method',
subtitle: 'Select your connection method to continue.',
},
},
accountImport: {
accountLimit:
'You have reached the wallet limit.\nTo add another wallet, remove a wallet account and try again.',
accountLimitLedger:
'You have reached the wallet limit.\nTo add another wallet, uncheck a wallet and try again.',
alert: {
body: "This seed phrase doesn't correspond to a Helium wallet",
title: 'Error',
},
cli: {
alert: {
body: 'Invalid Password',
title: 'Password entered is invalid. Please try again.',
},
import: {
body: 'Generate a password-secured QR code in <codeHighlight>helium-wallet-rs</codeHighlight> by typing <codeHighlight>export</codeHighlight>',
buttonText: 'Scan QR Code',
title: 'Import CLI',
},
password: {
body: 'Enter the password used to encrypt the CLI Wallet to complete import.',
buttonText: 'Decrypt and Import',
title: 'Decrypting Wallet...',
},
},
cliImport: 'CLI',
complete: {
subtitle: 'This will just take a moment.',
title: 'Recovering Wallet...',
},
confirm: {
next: 'Submit Seed Phrase',
subtitle:
'Here are the {{totalWords}} words you’ve entered. Tap on any of them if you need to edit.',
title: 'Please confirm your seed phrase',
},
pickKeyType: 'Pick Security Key Type:',
recoveryPhrase: 'Secret Phrase',
keyImport: 'Private Key',
subTitle:
'To import your existing Helium wallet, enter its <havelockBlue>12</havelockBlue> or <jazzberryJam>24</jazzberryJam> word security key.',
title: 'Import\nWallet',
wordEntry: {
changeWordAmount: 'Change to a {{totalWords}}-word recovery phrase',
placeholder: '{{ordinal}} word',
title: "Enter your\nwallet's 12 or 24\nsecurity words.",
word: 'Word {{ordinal}}',
},
privateKey: {
title: 'Import Private Key',
needsMigration: 'Helium L1 Wallet, needs to be migrated to Solana',
selectAccounts: 'Select Accounts',
selectAccountsBody:
'A secret phrase can be used to generate multiple wallets by using derivation paths. The following derivation paths have been automatically detected. Select the wallets you would like to import.',
paste: 'Copy and paste your private key.',
inputPlaceholder: 'Your private key...',
error: 'Invalid Private Key',
errorPassword: 'Invalid Password',
exists:
'The wallet you\'re importing already exists as "{{alias}}". No further action is required.',
body: 'You are importing a private key with the following public key.',
action: 'Import Wallet',
passwordError: 'You must enter a password to decrypt your private key',
passwordPlaceholder: 'Enter Password',
},
},
accountSetup: {
confirm: {
forgot: 'I forgot my words',
subtitle: 'Which word below was your',
subtitleOrdinal: 'What was\nWord {{ordinal}}?',
title: 'Please confirm your words',
},
confirmPin: {
subtitle: 'Re-enter your PIN',
title: 'Repeat PIN',
},
createButtonTitle: 'Create a Seed Phrase',
createImport: {
create: 'Create a new Wallet',
helperText:
'Coming from Helium App? Use the\nsame 12 words to import a Wallet.',
import: 'Import a Wallet',
importPrivateKey: 'Import a Private Key',
ledger: 'Pair with Ledger',
title: 'What would\nyou like to do?',
keystone: 'Connect Keystone to Wallet',
},
createPin: {
subtitle: 'Let’s secure your wallet with a PIN Code.',
title: 'Set PIN Code',
},
passphrase: {
next: 'I have written these down',
subtitle1:
'These words represent your private key. Write them down and never share with anyone.',
subtitle2: 'No one can recover these words',
title: 'Keep these\nwords safe',
},
subtitle1:
'Your 24-word seed phrase can be used to generate multiple sub-wallets.',
subtitle2:
'Please ensure these are written down, kept safe, and never shared.',
title: 'Create New\nSeed Phrase',
},
airdropScreen: {
title: 'Token Faucet',
subtitle: 'Airdrop tokens to test your wallet.',
airdrop: 'Airdrop',
airdropTicker: 'Airdrop {{ticker}}',
error: 'Airdrop failed. Please try again later.',
},
accountsScreen: {
activity: 'Activity',
allFilterFooter:
"You've reached the end of your activity.\nSelect a different filter to view more.",
filter: 'Filter',
filterTransactions: 'Filter Transactions',
filterTypes: {
all: 'All Activity',
in: 'Transactions in',
out: 'Transactions out',
delegate: 'Delegated',
mint: 'Received',
},
solWarning:
'Your balance may not have enough SOL to cover all transactions. Solana wallets require a minimum of 0.00089088 SOL. We recommend keeping greater than 0.02 sol in your wallet for the best experience',
solSwap: 'Swap Tokens To SOL',
hideFilters: 'Hide Filters',
myTransactions: 'My Transactions',
showFilters: 'Show Filters',
title: 'My {{ticker}}',
tokens: 'Tokens',
chooseCurrency: 'Choose Currency',
tokenBalance: '{{amount}} <secondaryText>{{ticker}}</secondaryText>',
delegatedBalance: '{{amount}} Delegated',
receivedBalance: '{{amount}} Received',
},
solanaMigrationScreen: {
migrationComplete: "You've successfully migrated your tokens!",
migrationComplete2: 'Navigate back to your wallet',
error: 'Migration failed. Please try again later.',
disableSolana: 'Disable Solana Preview',
retry: 'Retry',
migrating: 'Migrating your wallet to Solana',
migratingBody: 'Please wait while we move your wallet over to Solana!',
migrateLater: 'Migrate Later',
done: 'Return to Home',
},
collectablesScreen: {
title: 'Collectables',
metadata: 'Metadata',
transfer: 'Transfer Hotspot',
transferComplete: 'Hotspot Transferred!',
returnToCollectables: 'Return to Collectables',
transferFee: '<b>Fee</b> <secondaryText> {{ amount }} SOL </secondaryText>',
transferingNftTitle: 'Transferring NFT...',
transferActions: 'Transfer Actions',
transferTo: 'Transfer to',
transferError: 'Transfer failed. Please try again later.',
transferCollectable: 'Transfer Collectable',
transferingNftBody:
'You can exit this screen while you wait. We’ll update your collection momentarily.',
rewardsError: 'Reward redemption failed. Please try again later.',
claimingRewards: 'Claiming your Rewards...',
claimingRewardsBody:
'You can exit this screen while you wait. We’ll update your Wallet momentarily.',
claimComplete: 'Rewards Claimed!',
claimCompleteBody: 'Your tokens have been added to your wallet.',
claimError: 'Claim failed. Please try again later.',
transferCollectableAlertTitle:
'Are you sure you will like to transfer your collectable?',
transferCollectableAlertBody: 'This action is irreversible.',
collectables: {
noTraitType: 'No trait type',
noTraitValue: 'No trait value',
noDescription: 'No description',
description: 'Description',
properties: 'Properties',
},
nfts: {
title: 'NFTs',
nftDetialTitle: 'NFT Detail',
},
hotspots: {
title: 'Hotspots',
hotspotDetailTitle: 'Hotspot Detail',
pendingRewardsTitle: 'Pending Rewards',
claimRewards: 'Claim Rewards',
manage: 'Manage',
hotspotActions: 'Hotspot Actions',
pendingRewards: '{{ amount }} {{ ticker }}',
claimAllRewards: 'Claim All Rewards',
hotspotClaimMessage:
'Since your last claim, \nyour Hotspot has earned...',
hotspotsClaimMessage:
'Since your last claim, \nyour Hotspots have earned...',
addToAccount: 'Add to Account',
addAllToAccount: 'Add all to account',
hotspotCount: '{{count}} Hotspot',
hotspotCount_one: '{{count}} Hotspot',
hotspotCount_other: '{{count}} Hotspots',
hotspotCount_plural: '{{count}} Hotspots',
chooseAmountOfHotspots: 'Choose amount of hotspots to show per page',
connect: 'Connect Hotspot',
openMap: 'Open Map',
copyEccCompact: 'Copy Hotspot Key',
onboard: {
title: 'Repair Onboarding',
which:
'On rare occasions, onboarding a hotspot can fail. Use this utility to repair the hotspot. Which Sub Network does the hotspot use? If the network is not in this list, your hotspot is properly onboarded.',
},
viewInExplorer: 'View in Explorer',
assertLocation: 'Assert Location',
transferHotspot: 'Transfer Hotspot',
showMetadata: 'Show Metadata',
antennaSetup: 'Antenna Setup',
map: {
back: 'Back to Hotspots List',
type: '{{type}} Hotspots',
transmitScale: 'Transmit Scale',
},
selectActive: {
title: 'Select Hotspot',
which: 'Which hotspot would you like to select as active?',
},
},
},
automationScreen: {
setupAutomation: 'Setup Automation',
removeAutomation: 'Remove Automation',
setupAutomationMessage:
'Claim your rewards on a {{schedule}} schedule for {{duration}} {{interval}}. This will cost {{rentFee}} SOL that can be reclaimed, and {{solFee}} SOL for transaction fees.',
reclaimableSol: 'Reclaimable SOL',
transactionFees: 'Transaction Fees',
removeAutomationMessage: 'Remove automation to stop claiming your rewards',
recipientSol: 'Hotspot Recipient Rent',
outOfSol:
'Automation paused - Out of SOL. Save again to extend the automation.',
title: 'Automate Rewards',
description:
'Set up automatic claiming of your hotspot rewards on a schedule. You will need to fund the automation with SOL for the transaction fees.',
selectSchedule: 'Select Claim Schedule',
enterDuration: 'Enter Duration',
currentAutomation: 'Current Automation',
schedule: {
daily: 'Daily',
weekly: 'Weekly',
monthly: 'Monthly',
running: 'Running {{schedule}} at {{time}}',
},
duration: {
days: 'Days',
weeks: 'Weeks',
months: 'Months',
},
nextRun: 'Next run on {{date}}',
},
activityScreen: {
title: 'My Activity',
transactionSuccessful: 'Transaction Successful',
transactionFailed: 'Transaction Failed',
viewOnExplorer: 'View on Explorer',
selectExplorer: 'Select Preferred Hotspot Explorer',
selectExplorerSubtitle: 'Your choice will be saved in App Settings',
activityDetails: 'Activity Details',
myAccount: 'My Account',
scamWarning:
'NFTs sent to you may contain links to scams. Do not share your secret words with anyone, or sign transactions on unknown websites.',
showAnyway: 'Show me anyway',
compressedNFTDescription: 'Minted {{ count }} {{ symbol }}(s).',
enrichedTransactionTypes: {
UNKNOWN: 'App Interaction',
NFT_BID: 'NFT Bid',
NFT_BID_CANCELLED: 'NFT Bid Cancelled',
NFT_LISTING: 'NFT Listing',
NFT_CANCEL_LISTING: 'NFT Listing Canceled',
NFT_SALE: 'NFT Sale',
NFT_MINT: 'NFT Minted',
NFT_AUCTION_CREATED: 'NFT Auction Created',
NFT_AUCTION_UPDATED: 'NFT Auction Updated',
NFT_AUCTION_CANCELLED: 'NFT Auction Cancelled',
NFT_PARTICIPATION_REWARD: 'NFT Participation Reward',
NFT_MINT_REJECTED: 'NFT Mint Rejected',
CREATE_STORE: 'Store Created',
WHITELIST_CREATOR: 'Whitelist Creator',
ADD_TO_WHITELIST: 'Add to Whitelist',
REMOVE_FROM_WHITELIST: 'Remove from Whitelist',
AUCTION_MANAGER_CLAIM_BID: 'Auction Manager Claimed Bid',
EMPTY_PAYMENT_ACCOUNT: 'Empty Payment Account',
UPDATE_PRIMARY_SALE_METADATA: 'Primary Sale Metadata Updated',
ADD_TOKEN_TO_VAULT: 'Token Added to Vault',
ACTIVATE_VAULT: 'Vault Activated',
INIT_VAULT: 'Vault Initialized',
INIT_BANK: 'Initialized Bank',
INIT_STAKE: 'Initialized Stake',
MERGE_STAKE: 'Stake Merged',
SPLIT_STAKE: 'Stake Split',
SET_BANK_FLAGS: 'Set Bank Flags',
SET_VAULT_LOCK: 'Set Vault Lock',
UPDATE_VAULT_OWNER: 'Vault Owner Updated',
UPDATE_BANK_MANAGER: 'Bank Manager Updated',
RECORD_RARITY_POINTS: 'Record Rarity Points',
ADD_RARITIES_TO_BANK: 'Add Rarities to Bank',
INIT_FARM: 'Farm Initialized',
INIT_FARMER: 'Farmer Initialized',
REFRESH_FARMER: 'Farmer Refreshed',
UPDATE_FARM: 'Farm Updated',
AUTHORIZE_FUNDER: 'Funder Authorized',
DEAUTHORIZE_FUNDER: 'Funder Deauthorized',
FUND_REWARD: 'Reward Funded',
CANCEL_REWARD: 'Reward Canceled',
LOCK_REWARD: 'Reward Locked',
PAYOUT: 'Payout',
VALIDATE_SAFETY_DEPOSIT_BOX_V2: 'Validate Safety Deposit Box',
SET_AUTHORITY: 'Set Authority',
INIT_AUCTION_MANAGER_V2: 'Auction Manager Initialized',
UPDATE_EXTERNAL_PRICE_ACCOUNT: 'External Price Account Updated',
AUCTION_HOUSE_CREATE: 'Auction House Created',
CLOSE_ESCROW_ACCOUNT: 'Escrow Account Closed',
WITHDRAW: 'Withdraw',
DEPOSIT: 'Deposit',
TRANSFER: 'Transfer',
BURN: 'Burn',
BURN_NFT: 'Burn NFT',
PLATFORM_FEE: 'Platform Fee',
LOAN: 'Loan',
REPAY_LOAN: 'Repay Loan',
ADD_TO_POOL: 'Add to Pool',
REMOVE_FROM_POOL: 'Remove from Pool',
CLOSE_POSITION: 'Close Position',
UNLABELED: 'Unlabeled',
CLOSE_ACCOUNT: 'Close Account',
WITHDRAW_GEM: 'Withdraw Gem',
DEPOSIT_GEM: 'Deposit Gem',
STAKE_TOKEN: 'Stake Token',
UNSTAKE_TOKEN: 'Unstake Token',
STAKE_SOL: 'Stake Sol',
UNSTAKE_SOL: 'Unstake Sol',
CLAIM_REWARDS: 'Rewards Claimed',
BUY_SUBSCRIPTION: 'Subscription Bought',
SWAP: 'Swap',
INIT_SWAP: 'Swap Initialized',
CANCEL_SWAP: 'Cancel Swap',
REJECT_SWAP: 'Reject Swap',
INITIALIZE_ACCOUNT: 'Initialize Account',
TOKEN_MINT: 'Token Minted!',
COMPRESSED_NFT_MINT: 'Compressed NFT Minted!',
},
},
changeRewardsRecipientScreen: {
title: 'Change Recipient',
description: 'Update recipient of this Hotspot’s rewards',
blurb: 'Rewards from this Hotspot will go to this recipient when claimed',
warning:
'This recipient will receive all rewards for this Hotspot. Make sure this is a trusted party',
submit: 'Update Recipient',
newRecipient: 'New Recipient',
removeRecipient: 'Remove Recipient',
set: 'Rewards Recipient Set',
},
assertLocationScreen: {
title: 'Assert Location',
whichLocation: 'Which location do you want to assert?',
searchLocation: 'Search for a location...',
antennaSetup: 'Antenna Setup (Optional)',
antennaSetupDescription:
'Submit gain and elevation details for your Hotspot',
gainPlaceholder: 'TX / RX Gain (dBi)',
elevationPlaceholder: 'Elevation (meters)',
locationNotFound: 'Location not found, Please try again.',
mobileTitle: 'MOBILE',
success: {
title: 'Successfully Asserted Location!',
message: 'The location was successfully submitted to the blockchain',
},
error: {
wrongOwner:
'You do not own this hotspot, so you cannot assert its location',
insufficientFunds:
// eslint-disable-next-line no-template-curly-in-string
'Assertion costs ${{usd}}. You do not have enough HNT or DC.',
},
},
antennaSetupScreen: {
title: 'Antenna Setup',
antennaSetup: 'Antenna Setup',
antennaSetupDescription:
'Submit gain and elevation details for your Hotspot',
gainPlaceholder: 'TX / RX Gain (dBi)',
elevationPlaceholder: 'Elevation (meters)',
submit: 'Update Antenna',
settingUp: 'Setting up your antenna...',
settingUpBody: 'Please wait while we update your Antenna!',
settingUpError: 'Antenna Setup failed. Please try again later.',
settingUpComplete: 'Antenna Setup!',
settingUpCompleteBody:
'The gain and elevation of your antenna have been updated.',
},
insufficientSolConversionModal: {
title: 'Insufficient SOL',
body: 'Please swap one of the following tokens to receive more SOL in order to continue. Tokens that you dont have any balance in will be disabled.',
noBalance:
'You currently dont hold a balance of any of the tokens supported by this swap.',
useAuto:
'Automatically manage solana transaction fees by swapping this token to SOL as needed',
},
swapsScreen: {
priceImpact:
'Price impact more than {{percent}}%. Try swapping a smaller amount.',
title: 'Swap my Tokens',
swapTokens: 'Swap Tokens',
youPay: 'You Pay',
youReceive: 'You Receive',
chooseTokenToSwap: 'Choose a token to swap',
chooseTokenToReceive: 'Choose a token to receive',
slippage: 'Slippage',
slippageLabelValue:
'<b>Slippage</b> <secondaryText> {{ amount }}% </secondaryText>',
slippageInfo:
'Slippage is the difference between the expected price of an order and the price when the order actually executes. The slippage percentage shows how much the price for a specific asset has moved. Due to the volatility of cryptocurrency, the price of an asset can fluctuate often depending on trade volume and activity.\n\nYour trade will not execute if slippage moves unfavorably by more than this amount during execution.',
minReceived:
'<b>Minimum Received</b> <secondaryText> {{ amount }} </secondaryText>',
swapComplete: 'Tokens swapped!',
swapCompleteBody: 'The tokens in your wallet have been updated.',
swappingTokens: 'Swapping your tokens...',
swappingTokensBody:
'You can exit this screen while you wait. We’ll update your Wallet momentarily.',
swapError: 'Swap failed. Please try again later.',
returnToSwaps: 'Return to Swaps',
insufficientTokensToSwap:
'You do not have sufficient tokens for this swap.',
routeNotFound:
'No route found on Jupiter from source token to target token. Please select another token.',
swapAlertTitle: 'Are you sure you will like to swap your tokens?',
swapAlertBody: 'This action is irreversible.',
understood: 'Understood',
treasurySwapWarningTitle: 'Treasury Swap Warning',
treasurySwapWarningBody:
'Please be advised that the subDAO treasury has only been active for a few days since the Solana migration. Swapping subtokens to HNT may be affected by a limited HNT supply in the subDAO treasury and may not reflect up-to-date prices. Please proceed with caution.',
addRecipient: 'Add Recipient',
},
secretKeyWarningScreen: {
title: 'Warning! Nobody should ask for your secret phrase or private key.',
body: 'Would you give the username and password to your bank account? The answer is no. Nobody should have your secret phrase. Not even someone claiming to be a "Helium employee" or "Helium support."',
youMayContinueInSeconds: 'You may continue in {{seconds}} seconds',
goBack: 'Go Back',
proceed: 'Proceed with caution',
},
defiTutorial: {
title: 'Safety Tips',
enterDApps: 'Enter Browser',
slides: [
{
body: "Always double-check URLs to ensure you're on the correct website before entering any sensitive information.",
title: 'Verify the URL',
},
{
body: 'Be cautious of phishing attacks and only use trusted websites.',
title: 'Use Trusted Websites',
},
{
body: 'Ensure websites are trustworthy and have been audited for security.',
title: 'Do Your Research',
},
{
body: 'Never share your private keys or seed phrases with anyone.',
title: 'Protect Your Information',
},
],
},
browserScreen: {
topPicks: 'Verified Websites',
myFavorites: 'My Favorites',
suspiciousActivity: 'Suspicious Activity: {{num}} transactions',
instructionsAndPrograms: 'Instructions & Programs',
estimatedAccountChanges: 'Estimated Account Changes',
estimatedChangesDescription:
'Outcomes may vary from the simulation. A malicious program can drain any writable accounts listed below. Simulations against the Solana Blockchain may be fooled by malicious actors. Only approve transactions from trusted sources.',
accountDeleted: 'Account Closed',
accountCreated: 'Account Created',
accounts: 'accounts',
transactions: '{{num}} transactions',
writableAccounts: 'Writable Accounts',
writableAccountsDescription:
'Be cautious: This transaction can alter listed accounts, and outcomes may vary from the simulation. Malicious actors may drain writable accounts and fake simulations. Only approve transactions from trusted sources.',
myFavoritesEmpty:
'No favorites yet. Start browsing and add your favorite URLs!',
recentlyVisited: 'Recently Visited',
recentlyVisitedEmpty: 'No recently visited URLs yet. Start browsing!',
connectBullet1: 'View your wallet balance & activity',
connectBullet2: 'Request Approval for transactions',
connectToWebsitesYouTrust: 'Only connect to websites you trust',
estimatedChanges: 'Estimated Changes',
sendToken: 'Send {{amount}} {{ticker}}',
receiveToken: 'Receive {{amount}} {{ticker}}',
insufficientFunds: 'Insufficient funds',
insufficientRentExempt:
'Solana wallets must have a minimum of ~{{amount}} SOL to cover rent. The result of this transaction would leave your wallet with less than the rent-exempt minimum.',
unableToSimulate:
'Unable to simulate. Make sure you trust this app since approving can lead to loss of funds.',
networkFee: 'Network Fee',
totalPriorityFee: 'Total Priority Fee',
totalNetworkFee: 'Total Network Fee',
totalBaseFee: 'Total Base Fee',
priorityFeeDescription:
'When the network is congested, priority fees help your transaction get included in the block. The app has automatically adjusted the priority fee to make it more likely your transaction lands.',
connect: 'Connect',
approve: 'Approve',
swipeToApprove: 'Swipe To Approve',
cancel: 'Cancel',
insufficientSolToPayForFees: 'Insufficient SOL to pay for fees',
wouldYouLikeToConvert:
'Would you like to convert ~{{amount}} {{ticker}} to ~0.02 SOL for tx fees?',
slippageToleranceExceeded:
'Slippage tolerance exceeded. Please increase slippage',
},
accountTokenList: {
tokens: 'Tokens',
manage: 'Manage Visible Tokens',
},
accountView: {
balance: 'Balance',
fiveG: '5G',
genesis: 'In Genesis',
lock: 'Lock',
nonTransferable: 'Non-Transferable',
payment: 'Payment',
deposit: 'Deposit',
swaps: 'Swap',
Redeem: 'Security Tokens',
send: 'Send',
stake: 'Stake',
testnetTokens: 'Testnet Tokens',
delegate: 'Delegate',
airdrop: 'Airdrop',
},
addNewAccount: {
title: 'Add New Wallet',
},
addNewContact: {
addContact: 'Add Contact',
address: {
placeholder: 'e.g. 9h9h9r3hfi04nf0j083...',
title: 'Enter {{network}} Address',
},
loadFailed: 'Cannot validate address. Please try again.',
nickname: {
placeholder: 'e.g. Loki Laufeyson',
title: 'Enter Nickname',
},
title: 'Add New Contact',
},
addressBook: {
addNext: 'Add New...',
qrScanFail: {
message: 'This QR scanner supports Solana wallet addresses only.',
title: 'Unsupported QR Code',
},
searchContacts: 'Search Contacts...',
title: 'Address Book',
},
auth: {
enterCurrent: 'Enter your current PIN to continue',
error: 'Incorrect PIN',
signOut: 'Remove Wallet',
signOutAlert: {
body: 'You are removing all of your wallets. Do you have your recovery words? If you don’t, you will lose access to:\n\n- your Address Book\n- your HNT\n- your Wallet',
title: 'Warning! Remove all wallets?',
},
title: 'Enter Your PIN',
},
burn: {
amount: 'Amount (HNT)',
equivalent: 'Equivalent to (DC)',
ledger: {
subtitle:
'Please verify the burn transaction on your Ledger device {{name}}',
title: 'Ledger Approval',
},
memo: 'Memo',
noAcct: {
message: 'No wallet for this network found',
title: 'Wallet not found',
},
recipient: 'Recipient Address',
swipeToBurn: 'Swipe to Burn',
title: 'Burn',
subdao: '{{subdao}} Subnetwork',
choooseSubDAO: 'Choose a subnetwork',
},
delegate: {
title: 'Delegate',
swipe: 'Swipe to Delegate',
amount: 'Amount (DC)',
},
connectedWallets: {
add: 'Import or Create Wallet',
addSub: 'Add Sub Wallet',
addTestnet: 'Add New Testnet Wallet',
},
dappLogin: {
account: {
subtitle: 'Which wallet do you want to authenticate with {{appName}}?',
title: 'Choose your\nWallet',
},
connect: {
continue: 'Continue',
subtitle: 'Authenticate {{appName}}\nwith your Helium Wallet?',
title: 'Connect to {{appName}}?',
},
error: 'Failed to verify {{appName}}',
ledger: {
subtitle:
'You must sign burn transaction to login to {{appName}}. Please verify the burn transaction on your Ledger device {{deviceName}}',
title: 'Ledger Approval',
},
login: 'Login',
timeoutAlert: {
title: 'Login Failed',
message:
'Please close and reopen the login screen and scan a new QR code to try again.',
},
},
editContact: {
delete: 'Delete',
deleteConfirmMessage:
'Are you sure you want to delete your contact, {{alias}}?',
deleteConfirmTitle: 'Delete Contact?',
save: 'Save',
title: 'Edit Contact',
},
finePrint: {
body: 'By continuing, you agree to the',
},
generic: {
automate: 'Automate',
dBi: 'dBi',
gain: 'Gain',
maker: 'Maker',
elevation: 'Elevation',
radioType: 'Radio Type',
coverage: 'Coverage',
airdrop: 'Airdrop',
account: 'Wallet',
and: 'and',
back: 'Back',
cancel: 'Cancel',
save: 'Save',
swap: 'Swap',
clear: 'Clear',
of: 'of',
confirm: 'Confirm',
copied: 'Copied {{target}}',
copiedSeedPhrase: 'Copied Seed Phrase',
copy: 'Copy',
copyToClipboard: 'Copy to clipboard',
toClipboard: 'to clipboard',
done: 'Done',
error: 'Error',
fee: 'Fee',
loadFailed: 'Cannot validate address. Please try again.',
loadMore: 'Load More',
loading: 'Loading',
calculatingTransactionFee: 'Calculating Transaction Fee...',
mainnet: 'Mainnet',
next: 'Next',
none: 'None',
unknown: 'Unknown',
solanaAddress: 'Solana Address',
notValidAddress: 'Not a valid Wallet Address.',
notValidSolanaAddress: 'Not a valid Solana Address.',
insufficientBalance: 'Insufficient balance',
insufficientSol: 'Insufficient SOL',
ok: 'OK',
period: '.',
password: 'Password',
retry: 'Retry',
remove: 'Remove',
share: 'Share',
skip: 'Skip',
swappingSol: 'Auto swapping {{ amount }} {{ symbol }} to 0.02 SOL',
success: 'Success',
testnet: 'Testnet',
total: 'Total',
tryAgain: 'Try Again',
somethingWentWrong: 'Something went wrong, please try again',
submitSuccess: 'Transaction Submit',
understand: 'I Understand',
noData: 'No Data',
devnetTokensWarning: 'Warning! These are devnet tokens for testing only.',
solanaHealthy: 'Solana RPC is healthy.',
solanaHealthDown: 'Solana RPC is down. Please try again later.',
solanaTpsSlow: 'Solana RPC is slow. {{ tps }} tps.',
sendLogs: 'Send Logs',
update: 'Update',
or: 'Or',
},
crash: {
title: 'App Crashed',
subTitle: 'Please report this issue in the Helium Discord.',
resetApp: 'Clear Cache and Reset App',
},
hntKeyboard: {
enterAmount: 'Enter {{ticker}} Amount',
fee: '+{{value}} Fee',
hntAvailable: '{{amount}} Available',
validFor: 'valid for {{time}}',
},
intro: {
subtitle: 'Setup should only take\na few minutes.',
tap: 'Get Started',
title: 'Welcome to\nHelium Wallet',
},
keystone: {
connectKeystoneStart: {
subtitle:
'Click on the "Connect with Keystone" button below to scan the QR code displayed on the Keystone device.',
title: 'Connect Keystone to Wallet',
scanQrCode: 'Scan QR Code',
warning: 'Please enable your camera permission via [Settings]',
ok: 'OK',
unexpectedQrCodeContent:
'The QR code you scanned is not valid. Please try again.',
unexpectedQrCodeTitle: 'Unexpected QR Code',
},
selectKeystoneAccounts: {
subtitle:
'A secret phrase can be used to generate multiple wallets by using derivation paths. The following derivation paths have been automatically detected. Select the wallets you would like to import.',
title: 'Select Keystone Accounts',
},
scanQrCode: 'Scan the QR Code',
payment: {
scanTxQrcodeScreenTitle: 'Scan the QR Code',
scanTxQrcodeScreenSubtitle1: 'Scan the QR code via your Keystone device',
scanTxQrcodeScreenSubtitle2:
"Click on the 'Get Signature' button after signing the transaction with your Keystone device.",
scanTxQrcodeScreenSubtitle3:
'Place the QR code from your Keystone device in front of the camera.',
getSignature: 'Get Signature',
},
},
ledger: {
openTheSolanaApp: 'Open the Solana app on your {{ device }}',
pleaseConfirmTransaction: 'Please confirm transaction on your {{ device }}',
pleaseEnterPinCode: 'Please enter pin code on your {{ device }}',
enableBlindSign:
'Please enable blind signing in the ledger solana app settings. This error can also occur if your ledger firmware is out of date.',
transactionRejected: 'Transaction Rejected',
transactionRejectedDescription:
'You rejected the transaction on your Ledger device. If you meant to approve it, please try again.',
chooseType: {
bluetooth: {
title: 'Bluetooth',
types: 'Nano X',
},
title: 'How is your device connected?',
usb: {
title: 'USB Cable',
types: 'Nano S, Nano S Plus, Nano X',
},
},
connectError: {
steps: [
'Check network connection',
'Check Bluetooth is enabled',
'Open your Ledger device.',
],
subtitle:
'Please check that your Ledger\nDevice is connected to this phone.\n\nIf not, follow these steps:',
title: 'Pairing Failed',
},
deviceNotFound: {
message:
'Could not find your ledger device. Please make sure it is connected and the Helium app is open.',
title: 'Device Not Found',
},
pairStart: {
pair: 'Pair with Ledger',
subtitle:
'Tap the button below to\nsearch for nearby Ledger\nWallets to link with.',
title: 'Pair Ledger\nto Wallet',
},
payment: {
subtitle:
'Please verify the payment transaction on your Ledger device {{name}}',
title: 'Ledger Approval',
},
scan: {
connectionError: 'Ledger Connection Error',
permissionDialog: {
later: 'Ask Me Later',
message:
'Location permission is needed to enable a bluetooth connection',
title: 'Location Permission',
},
subtitle:
'Please make sure your\nLedger is unlocked with\nbluetooth enabled',
subtitleUsb:
'Please make sure your\nLedger is unlocked and\nconnected via USB',
title: 'Looking\nfor Devices',
},
show: {
accountsAlreadyLinked: 'Wallets Already Linked ({{count}})',
addNewAccount: 'Add New Wallet',
alias: 'Ledger Wallet {{accountIndex}}',
close: 'Close',
deselectAll: 'Deselect All',
emptyAccount:
"Can't add a new wallet before you've received assets on your {{account}}",
help: 'Verify that the address shown on the Ledger device matches.',
next: 'Import Wallet(s)',
selectAll: 'Select All',
subtitle:
'This Ledger device can authorize transactions for the below Helium Account. ',
scanning: 'Scanning for wallets...',
title: 'Select Wallets',
},
start: {
help: 'How does it work?',
next: 'Pair with Ledger',
subtitle:
'Please make sure your Ledger is unlocked with Bluetooth enabled',
title: 'Pair with Ledger',
},
success: {
next: 'View Wallet',
subtitle: 'Your Ledger wallet is now available in your Helium Wallet.',
title: 'Ledger Paired Successfully',
},
},
linkWallet: {
body: 'By Linking Helium Wallet to {{appName}}, you can safely sign blockchain transactions without re-entering your seed phrase.',
no: 'No, Cancel',
noWallet: {
message: 'Please create a wallet and try again.',
title: 'Wallets not found',
},
title: 'Link Helium Wallet\nto {{appName}}?',
yes: 'Yes, Link my Wallet',
},
notifications: {
accountUpdates: '{{title}} Updates',
emptyTitle: 'No Notifications',
heliumUpdates: 'Helium Updates',
title: 'My Notifications',
walletUpdates: 'Wallet Updates',
},
onboarding: {
create: 'New',
import: 'Import',
ledger: 'Ledger',
keystone: 'Keystone',
},
ordinals: [
'1st',
'2nd',
'3rd',
'4th',
'5th',
'6th',
'7th',
'8th',
'9th',
'10th',
'11th',
'12th',
'13th',
'14th',
'15th',
'16th',
'17th',
'18th',
'19th',
'20th',
'21st',
'22nd',
'23rd',
'24th',
],
payment: {
addRecipient: '+ Add Recipient',
backToAccounts: 'Back to Wallets',
enterAddress: 'Enter Address',
enterAmount: 'Enter {{ticker}} Amount',
enterMemo: 'Enter Memo (Optional)',
fee: '+{{value}} Fee',
insufficientFunds: 'Insufficient {{token}}',
ledgerTooManyRecipients:
'Ledger payment transactions\nare limited to 1 recipient.',
max: 'Max',
memoBytes: '{{used}}/{{total}} Bytes',
mobilePrompt: {
message:
"Sending MOBILE has a small transaction fee that's paid from your HNT balance. If you have a 0 HNT balance, the payment will not succeed.",
title: 'MOBILE Payment',
},
netTypeQrError: "No wallets support the scanned address's network type.",
pay: 'Pay',
qrScanFail: {
message:
'This QR scanner supports payment transactions and wallet addresses.',
title: 'Unsupported QR Code',
},
selectContact: 'Select Contact',
selfPay: 'Self Pay',
send: 'Send',
sendButton: 'Swipe to Send {{ticker}}',
senderAccount: 'Sender Wallet',
sending: 'Sending...',
solana: {
warning: {
title: 'Solana {{cluster}} Payment',
message: 'You are sending a payment on Solana {{cluster}}.',
},
},
submitError: