-
Notifications
You must be signed in to change notification settings - Fork 476
Expand file tree
/
Copy pathcommon.json
More file actions
10006 lines (10006 loc) · 396 KB
/
Copy pathcommon.json
File metadata and controls
10006 lines (10006 loc) · 396 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
{
"buyCurrency": {
"buyCTA": "Buy {{ currencyNameOrTicker }}"
},
"common": {
"cancel": "Cancel",
"copy": "Copy",
"copied": "Copied",
"apply": "Apply",
"seeAll": "See all",
"seeAllWithNumber": "See all ({{number}})",
"back": "Back",
"delete": "Delete",
"paste": "Paste",
"yes": "Yes",
"no": "No",
"gotit": "Got it",
"continue": "Continue",
"retry": "Retry",
"backTo": "Back to {{to}}",
"done": "Done",
"sortBy": "Sort by",
"signOut": "Sign out",
"search": "Search",
"searchProvider": "Search for a provider...",
"contactUs": "Contact Ledger Support",
"device": "Device",
"cryptoAsset": "Crypto asset",
"skip": "Skip",
"next": "Next",
"noCryptoFound": "No crypto assets found",
"needHelp": "Do you need help?",
"edit": "Edit",
"editName": "Edit name",
"close": "Close",
"confirm": "Confirm",
"poweredBy": "Powered by ",
"received": "Received",
"sent": "Sent",
"or": "OR",
"others": "Others",
"rename": "Rename",
"learnMore": "Learn more",
"checkItOut": "Check it out",
"viewDetails": "View details",
"today": "Today",
"yesterday": "Yesterday",
"upToDate": "Up to date",
"transactionDate": "Transaction date",
"outdated": "Outdated",
"satPerByte": "sat/bytes",
"sompiPerByte": "sompi/bytes",
"notAvailable": "Not available",
"import": "Import",
"bluetooth": "Bluetooth",
"usb": "USB",
"add": "Add",
"token_one": "Token",
"token_other": "Tokens",
"subaccount_one": "Subaccount",
"subaccount_other": "Subaccounts",
"forgetDevice": "Remove device",
"help": "Help",
"saveLogs": "Save logs",
"scrollToTop": "Scroll to top",
"sync": {
"ago": "Synchronized {{time}}"
},
"update": "Update available",
"install": "Install",
"installed": "Installed",
"uninstall": "Uninstall",
"fromNow": {
"seconds_one": "in one second",
"seconds_other": "in {{time}} seconds",
"minutes_one": "in one minute",
"minutes_other": "in {{time}} minutes",
"hours_one": "in one hour",
"hours_other": "in {{time}} hours",
"days_one": "in one day",
"days_other": "in {{time}} days"
},
"timeAgo": {
"seconds_one": "one second ago",
"seconds_other": "{{time}} seconds ago",
"minutes_one": "one minute ago",
"minutes_other": "{{time}} minutes ago",
"hours_one": "one hour ago",
"hours_other": "{{time}} hours ago",
"days_one": "yesterday",
"days_other": "{{time}} days ago"
},
"seeMore": "See more",
"moreInfo": "More info",
"popular": "popular",
"getSupport": "Get support",
"comingSoon": "Coming soon",
"restart": "Restart",
"loadMore": "Load more",
"selectAccount": "Select an account",
"patterns": {
"id": "ID {{ value }}",
"times": "x{{ value }}"
},
"quote": "Quote",
"tryAgain": "Try again",
"ldmkEnabled": "LDMK transport enabled"
},
"errors": {
"ReplacementTransactionUnderpriced": {
"title": "Replacement transaction underpriced",
"description": "The network fee might be too low. Please increase"
},
"countervaluesUnavailable": {
"title": "We're not able to provide a countervalue for this asset at the moment"
},
"AccountAwaitingSendPendingOperations": {
"title": "There is a pending operation for this account",
"description": "Please wait for the operation to go through."
},
"AccountNameRequired": {
"title": "An account name is needed",
"description": "Please enter an account name."
},
"AccountNeedResync": {
"title": "Please try again",
"description": "Account is outdated. A synchronisation is needed"
},
"AlgorandASANotOptInInRecipient": {
"title": "Recipient account has not opted in the selected ASA."
},
"BluetoothRequired": {
"title": "Sorry, Bluetooth is disabled",
"description": "Please enable Bluetooth in your phone settings. ({{state}} state)"
},
"BitcoinInfrastructureError": {
"title": "We are experiencing an issue with our Bitcoin infrastructure. Please try again later."
},
"CantOpenDevice": {
"title": "Sorry, connection failed",
"description": "Your Ledger device must be unlocked and in range to use Bluetooth."
},
"ConnectAppTimeout": {
"title": "Sorry, no device found",
"description": {
"ios": {
"nanoX": "Please make sure your {{productName}} is unlocked and has Bluetooth enabled."
},
"android": {
"nanoS": "Please make sure your {{productName}} is unlocked and connected by cable.",
"nanoSP": "Please make sure your {{productName}} is unlocked and connected by cable.",
"nanoX": "Please make sure your {{productName}} is unlocked and is connected by cable or has Bluetooth enabled."
}
}
},
"ConnectManagerTimeout": {
"title": "Sorry, secure connection with Ledger failed",
"description": {
"ios": {
"nanoX": "Please make sure your {{productName}} is unlocked and has Bluetooth enabled."
},
"android": {
"nanoS": "Please make sure your {{productName}} is unlocked and connected by cable.",
"nanoSP": "Please make sure your {{productName}} is unlocked and connected by cable.",
"nanoX": "Please make sure your {{productName}} is unlocked and is connected by cable or has Bluetooth enabled."
}
}
},
"CeloAllFundsWarning": {
"title": "Ensure you have enough balance left for future transaction fees"
},
"CeloGroupNotVotable": {
"title": "This validator group cannot receive votes. It may be full or no longer eligible."
},
"CeloMissingWithdrawalsError": {
"title": "Something went wrong, cannot fetch any funds to withdraw"
},
"ClaimRewardsFeesWarning": {
"title": "The rewards are smaller than the estimated fees to claim them.",
"description": ""
},
"ConcordiumInsufficientFunds": {
"title": "Sorry, insufficient funds"
},
"ConcordiumMemoTooLong": {
"title": "Memo exceeds maximum length",
"description": "Your memo is {{memoLength}} bytes, but the maximum allowed is {{maxLength}} bytes. Please reduce the memo size."
},
"ConcordiumPairingExpiredError": {
"title": "Pairing expired",
"description": "The connection to Concordium ID App has timed out. Please try again."
},
"ConcordiumSessionExpiredError": {
"title": "Session expired",
"description": "The Concordium ID App session is no longer active. Please pair again."
},
"CosmosBroadcastCodeInternal": {
"title": "Something went wrong (Error #1)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeTxDecode": {
"title": "Something went wrong (Error #2)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeInvalidSequence": {
"title": "Invalid sequence",
"description": "Please try again."
},
"CosmosBroadcastCodeUnauthorized": {
"title": "Unauthorized signature",
"description": "This account is not authorized to sign this transaction."
},
"CosmosBroadcastCodeInsufficientFunds": {
"title": "Insufficient funds",
"description": "Please make sure the account has enough funds."
},
"CosmosBroadcastCodeUnknownRequest": {
"title": "Something went wrong (Error #6)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeInvalidAddress": {
"title": "Invalid address",
"description": "Please check the address and try again."
},
"CosmosBroadcastCodeInvalidPubKey": {
"title": "Something went wrong (Error #8)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeUnknownAddress": {
"title": "Unknown address",
"description": "Please check the address and try again."
},
"CosmosBroadcastCodeInsufficientCoins": {
"title": "Insufficient funds",
"description": "Please increase the funds on the account."
},
"CosmosBroadcastCodeInvalidCoins": {
"title": "Something went wrong (Error #11)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeOutOfGas": {
"title": "Something went wrong (Error #12)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeMemoTooLarge": {
"title": "The Memo field is too long",
"description": "Please reduce the size of the memo text and try again."
},
"CosmosBroadcastCodeInsufficientFee": {
"title": "Something went wrong (Error #14)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeTooManySignatures": {
"title": "Something went wrong (Error #15)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeGasOverflow": {
"title": "Something went wrong (Error #16)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"CosmosBroadcastCodeNoSignatures": {
"title": "Something went wrong (Error #17)",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"DeviceAppVerifyNotSupported": {
"title": "Open My Ledger to update this app",
"description": "The app verification is not supported."
},
"DeviceGenuineSocketEarlyClose": {
"title": "Sorry, try again (genuine-close)",
"description": null
},
"DeviceHalted": {
"title": "Please restart your Ledger device and retry",
"description": "An unexpected error occurred. Please try again."
},
"DeviceAlreadySetup": {
"title": "Your {{device}} is already setup with a Secret Recovery Phrase",
"description": "Connect a Ledger that's not set up."
},
"DeviceNotGenuine": {
"title": "Device possibly not genuine",
"description": "Please save your logs using the button below and provide them to Ledger Support."
},
"DeviceNameInvalid": {
"title": "Please name the device without '{{invalidCharacters}}'."
},
"DeviceOnDashboardExpected": {
"title": "Device not on Dashboard",
"description": "Please return to the Dashboard on your device."
},
"DeviceNotOnboarded": {
"title": "Your device is not ready to use yet",
"description": "Set up your device before using it with Ledger Wallet."
},
"DeviceSocketFail": {
"title": "Sorry, connection failed",
"description": "Please try again."
},
"CounterfeitDevice": {
"title": "This {{productName}} failed the Genuine Check",
"description": "It is not safe to use this Ledger device. Please contact Ledger Support.",
"contactSupportCTA": "Contact Ledger Support"
},
"DeviceSocketNoBulkStatus": {
"title": "The connection failed",
"description": "Please try again."
},
"DeviceSocketNoHandler": {
"title": "Sorry, connection failed",
"description": "Please try again."
},
"DisconnectedDevice": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"DisconnectedDeviceDuringOperation": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"DeviceDisconnectedWhileSendingError": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"DisconnectError": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"DeviceSessionNotFound": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"ReconnectionFailedError": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"DeviceDisconnectedBeforeSendingApdu": {
"title": "Device connection lost",
"description": "Ledger Wallet couldn't connect to your device. Please try again or contact Ledger Support if the issue persists."
},
"TransportNotSupportedError": {
"title": "Connection method error",
"description": "There was an issue with the device connection method used. Please try with a different connection method or contact Ledger Support if the issue persists."
},
"TransportAlreadyExistsError": {
"title": "Connection method error",
"description": "There was an issue with the device connection method used. Please try with a different connection method or contact Ledger Support if the issue persists."
},
"NoTransportProvidedError": {
"title": "Connection method error",
"description": "There was an issue with the device connection method used. Please try with a different connection method or contact Ledger Support if the issue persists."
},
"NoAccessibleDeviceError": {
"title": "Connection method error",
"description": "There was an issue with the device connection method used. Please try with a different connection method or contact Ledger Support if the issue persists."
},
"ConnectionOpeningError": {
"title": "Connection method error",
"description": "There was an issue with the device connection method used. Please try with a different connection method or contact Ledger Support if the issue persists."
},
"DeviceNotInitializedError": {
"title": "Device not onboarded",
"description": "Your device isn't ready for use. Please follow the setup instructions and try again once onboarded."
},
"DeviceNotOnboardedError": {
"title": "Device not onboarded",
"description": "Your device isn't ready for use. Please follow the setup instructions and try again once onboarded."
},
"DeviceLockedError": {
"title": "Device locked",
"description": "Your device is locked. Please unlock it and try again."
},
"OutOfMemoryDAError": {
"title": "Not enough memory",
"description": "Your device doesn’t have enough memory. Please uninstall apps and try again."
},
"UnsupportedFirmwareDAError": {
"title": "OS is unsupported",
"description": "Your device's operating system is unsupported. Please update it through Ledger Wallet, or contact Ledger Support for assistance if you encounter difficulties."
},
"InvalidBatteryStatusTypeError": {
"title": "Battery error",
"description": "Something went wrong. Please retry or contact Ledger Support if the issue persists."
},
"InvalidBatteryDataError": {
"title": "Battery error",
"description": "Battery status error. Please contact Ledger Support."
},
"InvalidStatusWordError": {
"title": "Device connection error",
"description": "Something went wrong. Please retry or contact Ledger Support if the issue persists."
},
"InvalidResponseFormatError": {
"title": "Device connection error",
"description": "Something went wrong. Please retry or contact Ledger Support if the issue persists."
},
"UnknownDAError": {
"title": "Device connection error",
"description": "Something went wrong. Please retry or contact Ledger Support if the issue persists."
},
"DeviceNotRecognizedError": {
"title": "Device not recognised",
"description": "Ledger Wallet couldn't recognise your device. Please try with a again or contact Ledger Support if the issue persists."
},
"DeviceAlreadyDiscoveredError": {
"title": "Device not recognised",
"description": "Ledger Wallet couldn't recognise your device. Please try with a again or contact Ledger Support if the issue persists."
},
"UnknownDeviceError": {
"title": "Device not recognised",
"description": "Ledger Wallet couldn't recognise your device. Please try with a again or contact Ledger Support if the issue persists."
},
"ReceiverApduError": {
"title": "Communication error",
"description": "There was a problem exchanging information with your device. Please try again or contact Ledger Support if the issue persists."
},
"FramerApduError": {
"title": "Communication error",
"description": "There was a problem exchanging information with your device. Please try again or contact Ledger Support if the issue persists."
},
"SendApduTimeoutError": {
"title": "Communication error",
"description": "There was a problem exchanging information with your device. Please try again or contact Ledger Support if the issue persists."
},
"AlreadySendingApduError": {
"title": "Action needed on your Ledger device",
"description": "Finish the action on your device."
},
"UnknownDeviceExchangeError": {
"title": "Communication error",
"description": "There was a problem exchanging information with your device. Please try again or contact Ledger Support if the issue persists."
},
"CasperInvalidTransferId": {
"title": "Transfer ID should be a positive number smaller than {{maxTransferId}}"
},
"MayBlockAccount": {
"title": "Your account will be left with less than the {{minAmount}} required to perform a send"
},
"InvalidMinimumAmount": {
"title": "Minimum amount to transfer is {{minAmount}}"
},
"ETHAddressNonEIP": {
"title": "Auto-verification not available: carefully verify the address.",
"description": null
},
"Touch ID Error": {
"title": "Biometric authentication failed",
"description": "Please use your password or reset the app."
},
"Error": {
"title": "{{message}}",
"description": "Something went wrong. Please retry. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"TransactionBroadcastError": {
"title": "Transaction Broadcast Unsuccessfull",
"description": "Your transaction failed to broadcast on the {{network}} network. Your {{coin}} have not been transferred and remain in your account.",
"needHelp": "Need help ?",
"helpCenter": {
"title": "Help center",
"desc": "Visit our Help center or contact us via the widget for assistance.",
"cta": "Get help"
},
"technical": {
"title": "Technical error",
"cta": "Save logs"
}
},
"FeeEstimationFailed": {
"title": "Sorry, fee estimation failed",
"description": "Try setting the fee manually (status: {{status}})."
},
"FeeNotLoaded": {
"title": "Could not load fee rates"
},
"FeeNotLoadedSwap": {
"title": "Network fee estimation failed because of technical issues. Try again or change the assets."
},
"FeeRequired": {
"title": "Fees are required"
},
"FirmwareOrAppUpdateRequired": {
"title": "Firmware or app update needed",
"description": "Please use My Ledger to uninstall all apps then check if a firmware update is available before reinstalling them."
},
"LatestFirmwareVersionRequired": {
"title": "Update Device Firmware",
"description": "Please update your device firmware to the latest version to access this feature"
},
"GenuineCheckFailed": {
"title": "Device authentication failed",
"description": "Something went wrong. Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"EthAppPleaseEnableContractData": {
"title": "Enable Blind signing or Contract data in Ethereum app"
},
"HardResetFail": {
"title": "Sorry, could not reset",
"description": "Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"ImageCommitRefusedOnDevice": {
"title": "Lock screen picture discarded on {{productName}}",
"description": "If this image wasn't the right fit, you can try again with another image.",
"primaryCTA": "Upload another picture"
},
"ImageLoadRefusedOnDevice": {
"title": "Loading of lock screen picture cancelled on {{productName}}",
"description": "If this image wasn't the right fit, you can try again with another image.",
"primaryCTA": "Upload another picture"
},
"ImageDoesNotExistOnDevice": {
"title": "No lock screen picture",
"description": "The lock screen picture was previously deleted."
},
"InvalidAddress": {
"title": "This is not a valid {{currencyName}} address"
},
"InvalidNonce": {
"title": "Nonce is required"
},
"InvalidAddressBecauseAlreadyDelegated": {
"title": "Your account is already delegated to this validator"
},
"InvalidAddressBecauseDestinationIsAlsoSource": {
"title": "Destination and source accounts must not be the same."
},
"InvalidRecipient": {
"title": "Invalid recipient"
},
"InvalidExplorerResponse": {
"title": "Invalid response from {{currencyName}} explorer"
},
"LanguageInstallRefusedOnDevice": {
"title": "Language installation refused on device",
"description": "Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"LanguageNotFound": {
"title": "Language not found",
"description": "The language you are trying to install was not found. Please try installing another language."
},
"LatestMCUInstalledError": {
"title": "Sorry, there's nothing to update",
"description": "Please contact Ledger Support if you cannot use your device."
},
"LedgerAPIError": {
"title": "Sorry, try again (API HTTP {{status}})",
"description": "Unsuccessful calls to the Ledger API server. Please try again."
},
"LedgerAPIErrorWithMessage": {
"title": "{{message}}",
"description": "Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"LedgerAPINotAvailable": {
"title": "Sorry, {{currencyName}} services unavailable",
"description": "Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"ManagerAPIsFail": {
"title": "Sorry, My Ledger services are unavailable",
"description": "Please check the network status."
},
"ManagerAppAlreadyInstalled": {
"title": "Sorry, that's already installed",
"description": "Please check which apps are already installed on your device."
},
"ManagerAppRelyOnBTC": {
"title": "Bitcoin and Ethereum apps needed",
"description": "Please install the latest Bitcoin and Ethereum apps first."
},
"ManagerDeviceLocked": {
"title": "Your device is locked",
"description": "Please unlock it."
},
"ManagerNotEnoughSpace": {
"title": "Not enough storage left",
"info": "Please uninstall some apps to free up space for the {{app}} app. Your crypto assets stay safe when uninstalling apps.",
"description": "Uninstalling apps has no impact on your assets.",
"continue": "Got it!"
},
"ManagerQuitPage": {
"install": {
"title": "Quit and cancel installations ?",
"description": "Quitting will cancel the app installations in progress.",
"stay": "Continue installation"
},
"uninstall": {
"title": "Quit and cancel uninstallations ?",
"description": "Quitting will cancel the app uninstallations in progress.",
"stay": "Continue uninstallation"
},
"update": {
"title": "Quit and cancel updates ?",
"description": "Quitting will cancel the app updates in progress.",
"stay": "Continue update"
},
"quit": "Quit My Ledger"
},
"ManagerUninstallBTCDep": {
"title": "Sorry, this app is needed",
"description": "Uninstall the Bitcoin or Ethereum app last."
},
"MaxFeeLow": {
"title": "Your max fee is too low. Your transaction might stay pending for a while"
},
"MaxPriorityFeeLowerThanInitial": {
"title": "Priority fee too low, please enter an amount superior to priority fee value of the initial transaction"
},
"NetworkDown": {
"title": "Sorry, internet seems to be down",
"description": "Please check your internet connection."
},
"NetworkError": {
"title": "A network error occurred",
"description": "Please try again later"
},
"NoAddressesFound": {
"title": "Sorry, no account was found",
"description": "Something went wrong with the address calculation. Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"MultiversXDecimalsLimitReached": {
"title": "Maximum decimals limit reached",
"description": "Please make sure that the amount provided has 18 decimals."
},
"MultiversXMinDelegatedAmountError": {
"title": "Delegated amount must be at least {{formattedAmount}}"
},
"MultiversXMinUndelegatedAmountError": {
"title": "Undelegated amount must be at least {{formattedAmount}}"
},
"MultiversXDelegationBelowMinimumError": {
"title": "Remaining delegation can't be less than {{formattedAmount}}"
},
"NotEnoughVTHO": {
"title": "Sorry, insufficient VTHO funds",
"description": "Please make sure the account has enough VTHO."
},
"MustBeVechain": {
"title": "Not a vechain account",
"description": "Please make sure the coin is VTHO or VET"
},
"ImpossibleToCalculateAmountAndFees": {
"title": "Impossible to calculate amount and fees",
"description": "Impossible to calculate amount and fees"
},
"NotEnoughEGLDForFees": {
"title": "Not enough EGLD to pay the transaction fees",
"description": "Please send some EGLD to your account to pay for transactions."
},
"NotEnoughToStake": {
"title": "You need at least {{minStake}} {{currency}} to activate your stake",
"description": "You need at least {{minStake}} {{currency}} to activate your stake"
},
"NotEnoughBalance": {
"title": "Sorry, insufficient funds",
"description": "Please make sure the account has enough funds."
},
"UnstakeNotEnoughStakedBalanceLeft": {
"title": "If you unstake more than {{maxAmount}}, your total stake of {{totalAmount}} will be unstaked",
"description": "If you unstake more than {{maxAmount}}, your total stake of {{totalAmount}} will be unstaked"
},
"RestakeNotEnoughStakedBalanceLeft": {
"title": "If you restake more than {{maxAmount}}, your total stake of {{totalAmount}} will be restaked",
"description": "If you restake more than {{maxAmount}}, your total stake of {{totalAmount}} will be restaked"
},
"NotEnoughToRestake": {
"title": "You can't restake less than {{minAmount}}",
"description": "You can't restake less than {{minAmount}}."
},
"NotEnoughToUnstake": {
"title": "You can't unstake less than {{minAmount}}",
"description": "You can't unstake less than {{minAmount}}."
},
"NotEnoughBalanceFees": {
"title": "Sorry, insufficient funds to cover fees",
"description": "Please make sure the account has enough funds."
},
"NotEnoughBalanceForUnstaking": {
"message": "Your available (non-staked) balance is currently {{currentBalance}} which is insufficient to pay for the network fees to unstake your {{assetName}}. ",
"oneCta": "<cta1>{{cta1Label}}</cta1> {{assetName}} into your account.",
"twoCtas": "<cta1>{{cta1Label}}</cta1> or <cta2>{{cta2Label}}</cta2> {{assetName}} into your account.",
"threeCtas": "<cta1>{{cta1Label}}</cta1>, <cta2>{{cta2Label}}</cta2> or <cta3>{{cta3Label}}</cta3> {{assetName}} into your account.",
"ctas": {
"buy": "Buy",
"swap": "Swap",
"deposit": "Deposit"
}
},
"NotEnoughBalanceSwap": {
"title": "Sorry, insufficient balance including network fees. Adjust amount or verify balance.",
"description": "Please make sure the account has enough funds."
},
"NoSuchAppOnProvider": {
"title": "The {{appName}} app cannot be found for your specific configuration.",
"description": "Try reinstalling the app from My Ledger"
},
"NanoSNotSupported": {
"title": "Ledger Nano S™ does not support this feature",
"description": "Upgrade to a more recent Ledger device today to ensure access to all the latest Ledger Wallet features.",
"upsellCtaLabel": "Discover your Upgrade Program"
},
"NotEnoughGas": {
"title": "You need {{fees}} {{ticker}} in your account to pay for transaction fees on the {{cryptoName}} network. <link0>Buy {{ticker}}</link0> or deposit more into your account.",
"description": "Please send some coins to your account to pay for token transactions."
},
"NotEnoughGasSwap": {
"title": "You need {{fees}} {{ticker}} for network fees to swap as you are on {{cryptoName}} network. <link0>Buy {{ticker}}</link0>"
},
"NotEnoughBalanceToDelegate": {
"title": "Insufficient balance to delegate"
},
"NotEnoughBalanceInParentAccount": {
"title": "Insufficient balance in the parent account"
},
"QuantityNeedsToBePositive": {
"title": "Quantity needs to be at least 1"
},
"NotEnoughSpendableBalance": {
"title": "Balance cannot be below {{minimumAmount}}"
},
"NotEnoughBalanceBecauseDestinationNotCreated": {
"title": "Minimum of {{minimalAmount}} needed to activate recipient address"
},
"PairingFailed": {
"title": "Pairing unsuccessful",
"description": "Please try again or consult our Bluetooth troubleshooting article."
},
"OneSuiMinForStake": {
"title": "Minimum amount is 1 SUI"
},
"OneSuiMinForUnstake": {
"title": "Minimum amount is 1 SUI"
},
"OneSuiMinForUnstakeToBeLeft": {
"title": "At least 1 SUI should be left in stake"
},
"PasswordIncorrect": {
"title": "Incorrect password",
"description": "Please try again."
},
"PasswordsDontMatch": {
"title": "Password does not match",
"description": "Please try again."
},
"PeerRemovedPairing": {
"title": "Your {{ productName }} needs to be paired again.",
"description": "Go to your phone's Bluetooth settings and forget your {{ productName }}. Then come back in Ledger Wallet and try again."
},
"SelectExchangesLoadError": {
"title": "Unable to load",
"description": "Cannot load the exchanges."
},
"SyncError": {
"title": "Synchronization error",
"description": "Some accounts could not be synchronized."
},
"TimeoutError": {
"title": "Sorry, server took too long to respond",
"description": "Please try again."
},
"TimeoutTagged": {
"title": "Sorry, server took too long to respond ({{tag}})",
"description": "Timeout occurred."
},
"TransactionAlreadyValidated": {
"title": "Transaction already validated"
},
"TransactionRefusedOnDevice": {
"title": "Transaction refused on device",
"description": "Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"TransportError": {
"title": "Something went wrong. Please reconnect your device.",
"description": "{{message}} Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"TransportStatusError": {
"title": "Something went wrong. Please reconnect your device.",
"description": "{{message}} Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"TronNoFrozenForBandwidth": {
"title": "No assets to unfreeze",
"description": "You don't have Bandwidth assets to unfreeze."
},
"TronNoFrozenForEnergy": {
"title": "No assets to unfreeze",
"description": "You don't have Energy assets to unfreeze."
},
"TronLegacyUnfreezeNotExpired": {
"title": "Unfreeze is not available yet",
"description": "Please wait 3 days after your last Freeze operation."
},
"TronVoteRequired": {
"title": "At least 1 vote is needed"
},
"TronInvalidVoteCount": {
"title": "Vote format is incorrect",
"description": "You can only vote using round numbers."
},
"TronRewardNotAvailable": {
"title": "Rewards are not claimable yet",
"description": "Please wait 24 hours between claims."
},
"TronNoReward": {
"title": "There is no reward to be claimed"
},
"TronInvalidFreezeAmount": {
"title": "Amount to freeze cannot be smaller than 1"
},
"TronSendTrc20ToNewAccountForbidden": {
"title": "You first need to send at least 0.1 TRX to this address to enable TRC20 token reception.",
"description": "To activate it, first send either TRX or TRC10 to the account. Then it can receive TRC20."
},
"TronUnexpectedFees": {
"title": "Additional fees may apply"
},
"TronNotEnoughTronPower": {
"title": "Not enough votes available"
},
"TronTransactionExpired": {
"title": "Transaction timeout expired",
"description": "Transactions must be signed within 30 seconds. Please try again."
},
"TronNotEnoughEnergy": {
"title": "Energy is lower than necessary. You might pay up to 50TRX in fees."
},
"TronNoUnfrozenResource": {
"title": "No unfrozen resources to withdraw"
},
"TronInvalidUnDelegateResourceAmount": {
"title": "Not enough delegated resources"
},
"TronUnfreezeNotExpired": {
"title": "Resources not unfrozen yet",
"description": "You need to wait until {{time}} to withdraw"
},
"UpdateYourApp": {
"title": "App update needed",
"description": "Please uninstall then reinstall the {{managerAppName}} app in My Ledger.",
"primaryCTA": "Open My Ledger"
},
"UserRefusedAllowManager": {
"title": "Secure connection denied on the device",
"description": "Please allow the secure connection on your device and retry."
},
"UserRefusedAddress": {
"title": "Receive address rejected",
"description": "You rejected the address. If in doubt, please save your logs using the button below and provide them to Ledger Support."
},
"UserRefusedDeviceNameChange": {
"title": "Renaming was cancelled on {{ productName }}",
"description": ""
},
"UserRefusedFirmwareUpdate": {
"title": "Firmware update canceled on device",
"description": "You canceled the firmware update. Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"UserRefusedOnDevice": {
"title": "Operation canceled on device",
"description": "You rejected the operation on the device."
},
"ExpertModeRequired": {
"title": "Expert mode required",
"description": "Expert mode needs to be enabled."
},
"WebsocketConnectionError": {
"title": "Sorry, connection failed",
"description": "Please try again with a better network connection (websocket error)."
},
"WebsocketConnectionFailed": {
"title": "Sorry, connection failed",
"description": "Please try again with a better network connection (websocket failed)."
},
"WrongDeviceForAccount": {
"title": "Something went wrong",
"description": "Please check that your Ledger device is set up with the recovery phrase or passphrase associated to the selected account."
},
"WebPTXPlayerNetworkFail": {
"title": "Network error",
"description": "Check your internet connection and try again. Contact Ledger Support if the problem continues.",
"contactSupport": "Contact Ledger support",
"primaryCTA": "Try again"
},
"UnexpectedBootloader": {
"title": "Sorry, your device must not be in Bootloader mode",
"description": "Please restart your device without touching the buttons when the logo appears. Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support."
},
"UnavailableTezosOriginatedAccountReceive": {
"title": "Cannot receive in subaccounts. Please select the parent account.",
"description": "If you want to receive funds, please use the parent account"
},
"UnavailableTezosOriginatedAccountSend": {
"title": "Cannot send from subaccounts yet",
"description": "This feature will be added at a later stage due to changes recently introduced by the Babylon update."
},
"RecommendUndelegation": {
"title": "Please undelegate the account before emptying it"
},
"MustDelegateBeforeStaking": {
"title": "Please delegate your account before staking"
},
"TezosNotEnoughStaked": {
"title": "Insufficient staked balance"
},
"RecommendSubAccountsToEmpty": {
"title": "Please empty all subaccounts first"
},
"NotSupportedLegacyAddress": {
"title": "The legacy address format is no longer supported"
},
"SourceHasMultiSign": {
"title": "Please disable multisign to send {{currencyName}}"
},
"DustLimit": {
"title": "Amount is lower than dust limit"
},
"SwapExchangeRateAmountTooLow": {
"title": "Amount must be higher than {{minAmountFromFormatted}}"
},
"SwapExchangeRateAmountTooHigh": {
"title": "Amount must be lower than {{maxAmountFromFormatted}}"
},
"SwapGenericAPIError": {
"title": "Something went wrong",
"description": "The exchange transaction did not go through. Please try again or contact support."
},
"SwapTimeoutError": {
"title": "Quotes could not be generated because of technical issues. Try swapping again in a few moments."
},
"PolkadotElectionClosed": {
"title": "Validators election must be closed"
},
"PolkadotNotValidator": {
"title": "Some selected addresses are not validators"
},
"PolkadotLowBondedBalance": {
"title": "All bonded assets will be unbonded if < 1 DOT"
},
"PolkadotNoUnlockedBalance": {
"title": "You have no unbonded assets"
},
"PolkadotNoNominations": {
"title": "You have no nominations"
},
"PolkadotAllFundsWarning": {
"title": "Ensure you have enough balance left for future transaction fees"
},
"PolkadotBondMinimumAmount": {
"title": "You must bond at least {{minimumBondAmount}}."
},
"PolkadotBondMinimumAmountWarning": {
"title": "Your bonded balance should be at least {{minimumBondBalance}}."
},
"PolkadotMaxUnbonding": {
"title": "You have exceeded the unbond limit"
},
"PolkadotValidatorsRequired": {
"title": "You must select at least one validator"
},
"TaprootNotActivated": {
"title": "Taproot mainnet is not activated yet"
},
"RbfBuildError": {
"title": "Cannot replace this transaction",
"description": "The fee increase required to replace this transaction can't be applied with the current parameters. Try a different fee amount or cancel the operation."
},
"generic": {
"title": "{{message}}",
"description": "Something went wrong. Please try again. If the problem persists, please save your logs using the button below and provide them to Ledger Support.",
"primaryCTA": "Retry"
},
"SolanaAccountNotFunded": {
"title": "Account not funded"
},
"SolanaRecipientAccountNotFunded": {
"title": "Amount too low. Send at least {{minimumAmount}}."
},
"SolanaTokenAccountHoldsAnotherToken": {
"title": "This associated token account holds another token"
},
"SolanaTokenAccountWarning": {
"title": "This is not a regular wallet address but an associated token account. Continue only if you know what you are doing"
},
"SolanaTokenAccountNotAllowed": {
"title": "This is a token account. Input a regular wallet address"
},
"SolanaMintAccountNotAllowed": {
"title": "This is a token address. Input a regular wallet address"
},
"SolanaAssociatedTokenAccountWillBeFunded": {
"title": "Account will be funded"
},
"SolanaTokenAccountFrozen": {
"title": "Token account assets are frozen"
},
"SolanaTokenAccounNotInitialized": {
"title": "Account not initialized"
},
"SolanaTokenRecipientIsSenderATA": {
"title": "Recipient address is the same as the sender token address"
},
"SolanaAddressOfEd25519": {
"title": "Address off ed25519 curve"
},