-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
Copy pathmessages.ts
9634 lines (9633 loc) · 357 KB
/
messages.ts
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
import { defineMessages } from 'react-intl';
export default defineMessages({
TR_404_DESCRIPTION: {
defaultMessage: 'Looks like a wrong URL or broken link.',
id: 'TR_404_DESCRIPTION',
},
TR_404_GO_TO_DASHBOARD: {
defaultMessage: 'Go to Dashboard',
id: 'TR_404_GO_TO_DASHBOARD',
},
TR_404_TITLE: {
defaultMessage: 'Error 404: Link not found',
id: 'TR_404_TITLE',
},
TR_ACCESS_HIDDEN_WALLET: {
defaultMessage: 'Access Passphrase wallet',
id: 'TR_ACCESS_HIDDEN_WALLET',
},
TR_WALLET_SELECTION_ACCESS_HIDDEN_WALLET: {
defaultMessage: 'Access Passphrase wallet',
id: 'TR_WALLET_SELECTION_ACCESS_HIDDEN_WALLET',
},
TR_WALLET_SELECTION_HIDDEN_WALLET: {
defaultMessage: 'Hidden wallet',
id: 'TR_WALLET_SELECTION_HIDDEN_WALLET',
},
TR_WALLET_PASSPHRASE_WALLET: {
defaultMessage: 'Passphrase wallet',
id: 'TR_WALLET_PASSPHRASE_WALLET',
},
TR_HIDDEN_WALLET_TOOLTIP: {
id: 'TR_HIDDEN_WALLET_TOOLTIP',
defaultMessage:
'A passphrase adds a custom phrase (like a word, sentence, or string of characters) to your existing wallet backup, creating a hidden wallet. Each hidden wallet has its own passphrase. Your standard wallet remains accessible without a passphrase.',
},
TR_ACCESS_STANDARD_WALLET: {
defaultMessage: 'Access standard wallet',
id: 'TR_ACCESS_STANDARD_WALLET',
},
TR_ACCOUNT_ENABLE_PASSPHRASE: {
defaultMessage: 'Enable passphrase',
id: 'TR_ACCOUNT_ENABLE_PASSPHRASE',
},
TR_ACCOUNT_EXCEPTION_AUTH_ERROR: {
defaultMessage: 'Authorization error',
id: 'TR_ACCOUNT_EXCEPTION_AUTH_ERROR',
},
TR_ACCOUNT_EXCEPTION_AUTH_ERROR_DESC: {
defaultMessage:
'The authorization process for this device failed. Click "Retry" or reconnect your Trezor device.',
id: 'TR_ACCOUNT_EXCEPTION_AUTH_ERROR_DESC',
},
TR_ACCOUNT_EXCEPTION_DISCOVERY_EMPTY: {
defaultMessage: 'All coins are disabled in Settings.',
id: 'TR_ACCOUNT_EXCEPTION_DISCOVERY_EMPTY',
},
TR_ACCOUNT_EXCEPTION_DISCOVERY_EMPTY_DESC: {
defaultMessage: 'All coins are currently disabled. Enable in Settings.',
id: 'TR_ACCOUNT_EXCEPTION_DISCOVERY_EMPTY_DESC',
},
TR_ACCOUNT_EXCEPTION_DISCOVERY_ERROR: {
defaultMessage: 'Account discovery error',
id: 'TR_ACCOUNT_EXCEPTION_DISCOVERY_ERROR',
},
TR_ACCOUNT_EXCEPTION_DISCOVERY_DESCRIPTION: {
defaultMessage: 'We were unable to discover your accounts.',
id: 'TR_ACCOUNT_EXCEPTION_DISCOVERY_DESCRIPTION',
},
TR_ACCOUNT_EXCEPTION_NOT_ENABLED: {
defaultMessage: '{networkName} not enabled in Settings.',
id: 'TR_ACCOUNT_EXCEPTION_NOT_ENABLED',
},
TR_ACCOUNT_EXCEPTION_NOT_EXIST: {
defaultMessage: "Account doesn't exist",
id: 'TR_ACCOUNT_EXCEPTION_NOT_EXIST',
},
TR_ACCOUNT_OUT_OF_SYNC: {
defaultMessage: 'Account sync in progress.',
id: 'TR_ACCOUNT_OUT_OF_SYNC',
},
TR_ACCOUNT_IMPORTED_ANNOUNCEMENT: {
defaultMessage:
'A watch-only account is a public address you’ve imported into your wallet, allowing the wallet to watch for outputs but not spend them.',
id: 'TR_ACCOUNT_IMPORTED_ANNOUNCEMENT',
},
TR_HIDE_SCAM_TRANSACTIONS_TOOLTIP: {
defaultMessage: 'Want a cleaner view? Try hiding suspicious transactions.',
id: 'TR_HIDE_SCAM_TRANSACTIONS_TOOLTIP',
},
TR_SHOW_SUSPICIOUS_TRANSACTIONS: {
defaultMessage: 'Show suspicious transactions',
id: 'TR_SHOW_SUSPICIOUS_TRANSACTIONS',
},
TR_HIDE_SUSPICIOUS_TRANSACTIONS: {
defaultMessage: 'Hide suspicious transactions',
id: 'TR_HIDE_SUSPICIOUS_TRANSACTIONS',
},
TR_HIDE_SUSPICIOUS_TRANSACTIONS_DESCRIPTION: {
defaultMessage: 'Crypto moves fast. Our filters might not be always perfect.',
id: 'TR_HIDE_SUSPICIOUS_TRANSACTIONS_DESCRIPTION',
},
TR_ACCOUNT_IS_EMPTY_TITLE: {
defaultMessage: 'No transactions',
id: 'TR_ACCOUNT_IS_EMPTY_TITLE',
},
TR_NO_VISIBLE_TRANSACTIONS: {
defaultMessage:
'No visible transactions. Looking for something? Try showing suspicious transactions—use the filter menu above on the right. Stay cautious, some may be risky.',
id: 'TR_NO_VISIBLE_TRANSACTIONS',
},
TR_ACCOUNT_PASSPHRASE_DISABLED: {
defaultMessage: 'Change passphrase settings to use this device',
id: 'TR_ACCOUNT_PASSPHRASE_DISABLED',
},
TR_ACQUIRE_DEVICE: {
defaultMessage: 'Use Trezor here',
description:
'call-to-action to use device in current window when it is used in other window',
id: 'TR_ACQUIRE_DEVICE',
},
TR_RECONNECT_DEVICE_DESCRIPTION: {
defaultMessage:
'If closing tabs and refreshing this page didn’t help, try reconnecting your Trezor.',
id: 'TR_RECONNECT_DEVICE_DESCRIPTION',
},
TR_RECONNECT_DEVICE_DESCRIPTION_DESKTOP: {
defaultMessage:
"If closing tabs and reopening Trezor Suite doesn't help, try reconnecting your Trezor.",
id: 'TR_RECONNECT_DEVICE_DESCRIPTION_DESKTOP',
},
TR_ACQUIRE_DEVICE_TITLE: {
defaultMessage: 'Another session is running',
id: 'TR_ACQUIRE_DEVICE_TITLE',
},
TR_ACTIVE: {
id: 'TR_ACTIVE',
defaultMessage: 'active',
},
TR_ADD: {
id: 'TR_ADD',
defaultMessage: 'Add',
},
TR_ADD_ACCOUNT: {
defaultMessage: 'Add account',
id: 'TR_ADD_ACCOUNT',
},
TR_ADD_NETWORK_ACCOUNT: {
defaultMessage: 'Add {network} account',
id: 'TR_ADD_NETWORK_ACCOUNT',
},
TR_SELECT_TYPE: {
defaultMessage: 'Select type',
id: 'TR_SELECT_TYPE',
},
TR_ADD_HIDDEN_WALLET: {
defaultMessage: 'Passphrase wallet',
id: 'TR_ADD_HIDDEN_WALLET',
},
TR_ADD_WALLET: {
defaultMessage: 'Standard wallet',
id: 'TR_ADD_WALLET',
},
TR_CONTRACT: {
defaultMessage: 'Contract',
id: 'TR_CONTRACT',
},
TR_RECIPIENT_ADDRESS: {
defaultMessage: 'Recipient address',
description: 'Used as label for send address input',
id: 'TR_RECIPIENT_ADDRESS',
},
TR_XPUB: {
defaultMessage: 'Public key (XPUB)',
id: 'TR_XPUB',
},
TR_ADDRESS: {
id: 'TR_ADDRESS',
defaultMessage: 'Address',
},
TR_ADDRESSES_FRESH: {
id: 'TR_ADDRESSES_FRESH',
defaultMessage: 'Fresh addresses',
},
TR_ADDRESSES_USED: {
id: 'TR_ADDRESSES_USED',
defaultMessage: 'Used addresses',
},
TR_ADDRESSES_CHANGE: {
id: 'TR_ADDRESSES_CHANGE',
defaultMessage: 'Change addresses',
},
TR_TRADE_REDIRECTING: {
defaultMessage: 'Redirecting ...',
id: 'TR_TRADE_REDIRECTING',
},
TR_FRACTION_BUTTONS_10_PERCENT: {
defaultMessage: '10%',
id: 'TR_FRACTION_BUTTONS_10_PERCENT',
},
TR_FRACTION_BUTTONS_25_PERCENT: {
defaultMessage: '25%',
id: 'TR_FRACTION_BUTTONS_25_PERCENT',
},
TR_FRACTION_BUTTONS_50_PERCENT: {
defaultMessage: '50%',
id: 'TR_FRACTION_BUTTONS_50_PERCENT',
},
TR_FRACTION_BUTTONS_MAX: {
defaultMessage: 'Max',
id: 'TR_FRACTION_BUTTONS_MAX',
},
TR_FRACTION_BUTTONS_REWARDS: {
defaultMessage: 'Rewards',
id: 'TR_FRACTION_BUTTONS_REWARDS',
},
TR_EXCHANGE_FIXED_OFFERS_INFO: {
id: 'TR_EXCHANGE_FIXED_OFFERS_INFO',
defaultMessage:
'Fixed-rate offers guarantee a set amount at the end of the exchange, but they’re usually less favorable, giving you less crypto for your money.',
},
TR_EXCHANGE_FLOAT_OFFERS_INFO: {
id: 'TR_EXCHANGE_FLOAT_OFFERS_INFO',
defaultMessage:
'Floating-rate offers may result in slight changes to the final amount due to market fluctuations, but they’re typically higher, so you could receive more crypto.',
},
TR_EXCHANGE_FEES_INFO: {
id: 'TR_EXCHANGE_FEES_INFO',
defaultMessage:
'All fees included; the transaction fee is estimated at {feeAmount} ({feeAmountFiat}).',
},
TR_TRADING_SWAP_MODAL_FOR_YOUR_SAFETY: {
defaultMessage: 'Swap {fromCrypto} to {toCrypto} with {provider}',
id: 'TR_TRADING_SWAP_MODAL_FOR_YOUR_SAFETY',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_CONFIRM: {
defaultMessage: 'I’m ready to swap',
id: 'TR_TRADING_SWAP_MODAL_CONFIRM',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_SECURITY_HEADER: {
defaultMessage: 'Security first with your Trezor',
id: 'TR_TRADING_SWAP_MODAL_SECURITY_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_1: {
defaultMessage:
"You're here to swap cryptocurrencies. If you were directed to this site for any other reason, contact Trezor Support before proceeding.",
id: 'TR_TRADING_SWAP_MODAL_TERMS_1',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_2: {
defaultMessage:
"You're swapping cryptocurrencies for your own account. You acknowledge that the provider's policies may require identity verification.",
id: 'TR_TRADING_SWAP_MODAL_TERMS_2',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_3: {
defaultMessage:
"You understand that cryptocurrency transactions are final and can't be reversed or refunded. Losses due to fraud or mistakes may not be recoverable.",
id: 'TR_TRADING_SWAP_MODAL_TERMS_3',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_VERIFIED_PARTNERS_HEADER: {
defaultMessage: 'Verified partners by Invity',
id: 'TR_TRADING_SWAP_MODAL_VERIFIED_PARTNERS_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_4: {
defaultMessage:
"I understand that Invity doesn't provide this service. It's governed by {provider}’s Terms and Conditions.",
id: 'TR_TRADING_SWAP_MODAL_TERMS_4',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_LEGAL_HEADER: {
defaultMessage: 'Legal notice',
id: 'TR_TRADING_SWAP_MODAL_LEGAL_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_5: {
defaultMessage:
"You're not using this feature for gambling, fraud, or any activity that violates Invity’s or the provider's Terms of Service, or any applicable laws.",
id: 'TR_TRADING_SWAP_MODAL_TERMS_5',
dynamic: true,
},
TR_TRADING_SWAP_MODAL_TERMS_6: {
defaultMessage:
'You understand that cryptocurrencies are an emerging financial tool and that regulations may vary in different jurisdictions. This may put you at a higher risk of fraud, theft, or market instability.',
id: 'TR_TRADING_SWAP_MODAL_TERMS_6',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_FOR_YOUR_SAFETY: {
defaultMessage: 'Swap {fromCrypto} to {toCrypto} with {provider}',
id: 'TR_TRADING_SWAP_DEX_MODAL_FOR_YOUR_SAFETY',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_CONFIRM: {
defaultMessage: 'I’m ready to swap',
id: 'TR_TRADING_SWAP_DEX_MODAL_CONFIRM',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_SECURITY_HEADER: {
defaultMessage: 'Security first with your Trezor',
id: 'TR_TRADING_SWAP_DEX_MODAL_SECURITY_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_1: {
defaultMessage:
"I want to swap cryptocurrencies using DEX (decentralized exchange) by using {provider}'s contract.",
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_1',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_2: {
defaultMessage:
"You're swapping cryptocurrencies for your own account. You acknowledge that the provider's policies may require identity verification.",
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_2',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_3: {
defaultMessage:
"You understand that cryptocurrency transactions are final and can't be reversed or refunded. Losses due to fraud or mistakes may not be recoverable.",
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_3',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_VERIFIED_PARTNERS_HEADER: {
defaultMessage: 'Verified partners by Invity',
id: 'TR_TRADING_SWAP_DEX_MODAL_VERIFIED_PARTNERS_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_4: {
defaultMessage:
"You understand that Invity doesn't provide this service. It's governed by {provider}’s Terms & Conditions.",
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_4',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_LEGAL_HEADER: {
defaultMessage: 'Legal notice',
id: 'TR_TRADING_SWAP_DEX_MODAL_LEGAL_HEADER',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_5: {
defaultMessage:
"You're not using this feature for gambling, fraud, or any activity that violates Invity’s or the provider's Terms of Service, or any applicable laws.",
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_5',
dynamic: true,
},
TR_TRADING_SWAP_DEX_MODAL_TERMS_6: {
defaultMessage:
'You understand that cryptocurrencies are an emerging financial tool and that regulations may vary in different jurisdictions. This may put you at a higher risk of fraud, theft, or market instability.',
id: 'TR_TRADING_SWAP_DEX_MODAL_TERMS_6',
dynamic: true,
},
TR_CONFIRM_ADDRESS: {
defaultMessage: 'Confirm address',
id: 'TR_CONFIRM_ADDRESS',
},
TR_CHECKED_BALANCES_ON: {
defaultMessage: 'Checked balances on',
id: 'TR_CHECKED_BALANCES_ON',
},
TR_ALL_NETWORKS: {
defaultMessage: 'All networks ({networkCount})',
id: 'TR_ALL_NETWORKS',
},
TR_ALL_NETWORKS_TOOLTIP: {
defaultMessage:
'View tokens from all {networkCount} networks. Filter by the most popular networks.',
id: 'TR_ALL_NETWORKS_TOOLTIP',
},
TR_SELECT_TOKEN: {
defaultMessage: 'Select a token',
id: 'TR_SELECT_TOKEN',
},
TR_SELECT_NAME_OR_ADDRESS: {
defaultMessage: 'Search by name, symbol, network, or contract address',
id: 'TR_SELECT_NAME_OR_ADDRESS',
},
TR_SEARCH_TOKEN_IN_SEND_FORM_MODAL: {
defaultMessage: 'Search by name, symbol, or contract address',
id: 'TR_SEARCH_TOKEN_IN_SEND_FORM_MODAL',
},
TR_TOKEN_NOT_FOUND: {
defaultMessage: 'No token found',
id: 'TR_TOKEN_NOT_FOUND',
},
TR_TOKEN_NOT_FOUND_ON_NETWORK: {
defaultMessage: 'Token not found on the {networkName} network.',
id: 'TR_TOKEN_NOT_FOUND_ON_NETWORK',
},
TR_TOKEN_TRY_DIFFERENT_SEARCH: {
defaultMessage: 'Try a different search.',
id: 'TR_TOKEN_TRY_DIFFERENT_SEARCH',
},
TR_TOKEN_TRY_DIFFERENT_SEARCH_OR_SWITCH: {
defaultMessage: 'Try a different search or switch to another network.',
id: 'TR_TOKEN_TRY_DIFFERENT_SEARCH_OR_SWITCH',
},
TR_EXCHANGE_STATUS_ERROR: {
defaultMessage: 'Rejected',
id: 'TR_EXCHANGE_STATUS_ERROR',
},
TR_EXCHANGE_STATUS_SUCCESS: {
defaultMessage: 'Approved',
id: 'TR_EXCHANGE_STATUS_SUCCESS',
},
TR_EXCHANGE_STATUS_KYC: {
defaultMessage: 'KYC',
id: 'TR_EXCHANGE_STATUS_KYC',
},
TR_EXCHANGE_STATUS_CONFIRMING: {
defaultMessage: 'Pending',
id: 'TR_EXCHANGE_STATUS_CONFIRMING',
},
TR_EXCHANGE_STATUS_CONVERTING: {
defaultMessage: 'Converting',
id: 'TR_EXCHANGE_STATUS_CONVERTING',
},
TR_EXCHANGE_DETAIL_SUCCESS_TITLE: {
defaultMessage: 'Approved',
id: 'TR_EXCHANGE_DETAIL_SUCCESS_TITLE',
},
TR_EXCHANGE_DETAIL_SUCCESS_TEXT: {
defaultMessage: 'Your transaction was successful.',
id: 'TR_EXCHANGE_DETAIL_SUCCESS_TEXT',
},
TR_EXCHANGE_DETAIL_SUCCESS_BUTTON: {
defaultMessage: 'Back to Account',
id: 'TR_EXCHANGE_DETAIL_SUCCESS_BUTTON',
},
TR_EXCHANGE_DETAIL_ERROR_TITLE: {
defaultMessage: 'Transaction failed',
id: 'TR_EXCHANGE_DETAIL_ERROR_TITLE',
},
TR_EXCHANGE_DETAIL_ERROR_TEXT: {
defaultMessage:
'Sorry, your transaction failed or was rejected. Your coins have not been exchanged.',
id: 'TR_EXCHANGE_DETAIL_ERROR_TEXT',
},
TR_EXCHANGE_DETAIL_ERROR_SUPPORT: {
defaultMessage: "Open partner's support site",
id: 'TR_EXCHANGE_DETAIL_ERROR_SUPPORT',
},
TR_EXCHANGE_DETAIL_ERROR_BUTTON: {
defaultMessage: 'Back to Account',
id: 'TR_EXCHANGE_DETAIL_ERROR_BUTTON',
},
TR_EXCHANGE_DETAIL_KYC_TITLE: {
defaultMessage: 'KYC request',
id: 'TR_EXCHANGE_DETAIL_KYC_TITLE',
},
TR_EXCHANGE_DETAIL_KYC_TEXT: {
defaultMessage:
'The provider has marked this transaction as "suspicious" and you may be required to complete their KYC process to finish the trade. Contact the provider\'s support to proceed.',
id: 'TR_EXCHANGE_DETAIL_KYC_TEXT',
},
TR_EXCHANGE_DETAIL_KYC_SUPPORT: {
defaultMessage: 'Go to provider support',
id: 'TR_EXCHANGE_DETAIL_KYC_SUPPORT',
},
TR_EXCHANGE_DETAIL_KYC_INFO_LINK: {
defaultMessage: 'Go to provider KYC details',
id: 'TR_EXCHANGE_DETAIL_KYC_INFO_LINK',
},
TR_EXCHANGE_DETAIL_KYC_BUTTON: {
defaultMessage: 'Back to Account',
id: 'TR_EXCHANGE_DETAIL_KYC_BUTTON',
},
TR_EXCHANGE_DETAIL_SENDING_TITLE: {
defaultMessage: 'Pending',
id: 'TR_EXCHANGE_DETAIL_SENDING_TITLE',
},
TR_EXCHANGE_DETAIL_SENDING_SUPPORT: {
defaultMessage: 'Go to provider support',
id: 'TR_EXCHANGE_DETAIL_SENDING_SUPPORT',
},
TR_EXCHANGE_DETAIL_CONVERTING_TITLE: {
defaultMessage: 'Converting',
id: 'TR_EXCHANGE_DETAIL_CONVERTING_TITLE',
},
TR_EXCHANGE_DETAIL_CONVERTING_SUPPORT: {
defaultMessage: 'Go to provider support',
id: 'TR_EXCHANGE_DETAIL_CONVERTING_SUPPORT',
},
TR_EXCHANGE_VERIFY_ADDRESS_STEP: {
defaultMessage: 'Receive address',
id: 'TR_EXCHANGE_VERIFY_ADDRESS_STEP',
},
TR_EXCHANGE_CONFIRM_SEND_STEP: {
defaultMessage: 'Confirm & Send',
id: 'TR_EXCHANGE_CONFIRM_SEND_STEP',
},
TR_EXCHANGE_CREATE_APPROVAL_STEP: {
defaultMessage: 'Create approval',
id: 'TR_EXCHANGE_CREATE_APPROVAL_STEP',
},
TR_EXCHANGE_SEND_FROM: {
defaultMessage: 'Sending account',
id: 'TR_EXCHANGE_SEND_FROM',
},
TR_EXCHANGE_SEND_TO: {
defaultMessage: '{providerName}’s address',
id: 'TR_EXCHANGE_SEND_TO',
},
TR_EXCHANGE_APPROVAL_SEND_TO: {
defaultMessage: '{send} contract',
id: 'TR_EXCHANGE_APPROVAL_SEND_TO',
},
TR_EXCHANGE_APPROVAL_VALUE: {
defaultMessage: 'Approval value',
id: 'TR_EXCHANGE_APPROVAL_VALUE',
},
TR_EXCHANGE_APPROVAL_VALUE_MINIMAL: {
defaultMessage: 'Necessary value of {value} {send}',
id: 'TR_EXCHANGE_APPROVAL_VALUE_MINIMAL',
},
TR_EXCHANGE_APPROVAL_VALUE_MINIMAL_INFO: {
defaultMessage:
'Approve only the exact amount required for this swap. You will need to pay an additional fee if you want to make a similar swap again.',
id: 'TR_EXCHANGE_APPROVAL_VALUE_MINIMAL_INFO',
},
TR_EXCHANGE_APPROVAL_VALUE_INFINITE: {
defaultMessage: 'Infinite value',
id: 'TR_EXCHANGE_APPROVAL_VALUE_INFINITE',
},
TR_EXCHANGE_APPROVAL_VALUE_INFINITE_INFO: {
defaultMessage:
'Create a single approval transaction to simplify multiple exchanges of {send} with {provider}. This saves on fees but carries a risk to your funds in the unlikely case of a flaw in {provider}’s contract.',
id: 'TR_EXCHANGE_APPROVAL_VALUE_INFINITE_INFO',
},
TR_EXCHANGE_APPROVAL_VALUE_ZERO: {
defaultMessage: 'Revoke previous approval',
id: 'TR_EXCHANGE_APPROVAL_VALUE_ZERO',
},
TR_EXCHANGE_APPROVAL_VALUE_ZERO_INFO: {
defaultMessage:
'Perform a transaction that will remove previous approval of contract with {provider}.',
id: 'TR_EXCHANGE_APPROVAL_VALUE_ZERO_INFO',
},
TR_EXCHANGE_APPROVAL_DATA: {
defaultMessage: 'Approval transaction data',
id: 'TR_EXCHANGE_APPROVAL_DATA',
},
TR_EXCHANGE_APPROVAL_TXID: {
defaultMessage: 'Approval transaction ID',
id: 'TR_EXCHANGE_APPROVAL_TXID',
},
TR_EXCHANGE_APPROVAL_CONFIRMING: {
defaultMessage: 'Waiting for the blockchain to confirm the approval transaction.',
id: 'TR_EXCHANGE_APPROVAL_CONFIRMING',
},
TR_EXCHANGE_APPROVAL_FAILED: {
defaultMessage: 'Approval transaction failed',
id: 'TR_EXCHANGE_APPROVAL_FAILED',
},
TR_EXCHANGE_APPROVAL_SUCCESS: {
defaultMessage: 'The approval transaction is confirmed.',
id: 'TR_EXCHANGE_APPROVAL_SUCCESS',
},
TR_EXCHANGE_APPROVAL_NOT_REQUIRED: {
defaultMessage: 'No approval transaction needed for {send}.',
id: 'TR_EXCHANGE_APPROVAL_NOT_REQUIRED',
},
TR_EXCHANGE_APPROVAL_PREAPPROVED: {
defaultMessage: 'Contract already approved.',
id: 'TR_EXCHANGE_APPROVAL_PREAPPROVED',
},
TR_EXCHANGE_APPROVAL_PROCEED: {
defaultMessage: 'Proceed to swap, no approval transaction needed.',
id: 'TR_EXCHANGE_APPROVAL_PROCEED',
},
TR_EXCHANGE_APPROVAL_TO_SWAP_BUTTON: {
defaultMessage: 'Proceed to swap',
id: 'TR_EXCHANGE_APPROVAL_TO_SWAP_BUTTON',
},
TR_EXCHANGE_SWAP_SEND_TO: {
defaultMessage: '{provider} contract address',
id: 'TR_EXCHANGE_SWAP_SEND_TO',
},
TR_EXCHANGE_SWAP_DATA: {
defaultMessage: 'Swap transaction data',
id: 'TR_EXCHANGE_SWAP_DATA',
},
TR_EXCHANGE_SWAP_SLIPPAGE: {
defaultMessage: 'Slippage',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE',
},
TR_EXCHANGE_SWAP_SLIPPAGE_TOLERANCE: {
defaultMessage: 'Slippage tolerance',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_TOLERANCE',
},
TR_EXCHANGE_SWAP_SLIPPAGE_OFFERED: {
defaultMessage: 'Swap offer amount',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_OFFERED',
},
TR_EXCHANGE_SWAP_SLIPPAGE_AMOUNT: {
defaultMessage: 'Maximum slippage amount',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_AMOUNT',
},
TR_EXCHANGE_SWAP_SLIPPAGE_MINIMUM: {
defaultMessage: 'Minimum received amount',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_MINIMUM',
},
TR_EXCHANGE_SWAP_SLIPPAGE_INFO: {
defaultMessage:
"Exchange rates shift constantly, so the amount you accept in this offer and the amount ultimately confirmed on the blockchain may differ; this is slippage. Slippage tolerance sets the percentage of your transaction you may lose due to slippage; in other words, you set the minimum amount you are willing to accept in the end. If slippage tolerance is too high, you may receive a lot less than offered. If slippage tolerance is too low, your transaction may fail (revert) and you'll still pay the transaction fee.",
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_INFO',
},
TR_EXCHANGE_SWAP_SLIPPAGE_CUSTOM: {
defaultMessage: 'Custom',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_CUSTOM',
},
TR_EXCHANGE_SWAP_SLIPPAGE_NOT_SET: {
defaultMessage: 'Enter your desired slippage.',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_NOT_SET',
},
TR_EXCHANGE_SWAP_SLIPPAGE_NOT_NUMBER: {
defaultMessage: 'Enter a number.',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_NOT_NUMBER',
},
TR_EXCHANGE_SWAP_SLIPPAGE_NOT_IN_RANGE: {
defaultMessage: 'Slippage must be in the range 0.01% - 50%',
id: 'TR_EXCHANGE_SWAP_SLIPPAGE_NOT_IN_RANGE',
},
TR_EXCHANGE_CONFIRM_ON_TREZOR_SEND: {
defaultMessage: 'Confirm on Trezor & send',
id: 'TR_EXCHANGE_CONFIRM_ON_TREZOR_SEND',
},
TR_EXCHANGE_RECEIVE_NON_SUITE_ACCOUNT_QUESTION_TOOLTIP: {
id: 'TR_EXCHANGE_RECEIVE_NON_SUITE_ACCOUNT_QUESTION_TOOLTIP',
defaultMessage: 'Receive account is outside of Suite.',
},
TR_EXCHANGE_RECEIVE_NON_SUITE_ADDRESS_QUESTION_TOOLTIP: {
id: 'TR_EXCHANGE_RECEIVE_NON_SUITE_ADDRESS_QUESTION_TOOLTIP',
defaultMessage: 'This is the address for receiving your assets.',
},
TR_EXCHANGE_SELECT_RECEIVE_ACCOUNT: {
id: 'TR_EXCHANGE_SELECT_RECEIVE_ACCOUNT',
defaultMessage: 'Select {symbol} receive account',
},
TR_EXCHANGE_RECEIVING_ADDRESS_INFO: {
defaultMessage: "Your receive address is where you'll receive your {symbol}.",
id: 'TR_EXCHANGE_RECEIVING_ADDRESS_INFO',
},
TR_EXCHANGE_RECEIVING_ADDRESS: {
defaultMessage: 'Receive address',
id: 'TR_EXCHANGE_RECEIVING_ADDRESS',
},
TR_EXCHANGE_RECEIVING_ADDRESS_REQUIRED: {
defaultMessage: 'Receive address is required',
id: 'TR_EXCHANGE_RECEIVING_ADDRESS_REQUIRED',
},
TR_EXCHANGE_RECEIVING_ADDRESS_INVALID: {
defaultMessage: 'Receive address is invalid',
id: 'TR_EXCHANGE_RECEIVING_ADDRESS_INVALID',
},
TR_EXCHANGE_EXTRA_FIELD: {
defaultMessage: '{extraFieldName}',
id: 'TR_EXCHANGE_EXTRA_FIELD',
},
TR_EXCHANGE_EXTRA_FIELD_SWITCH: {
defaultMessage: 'Add {extraFieldName}',
id: 'TR_EXCHANGE_EXTRA_FIELD_SWITCH',
},
TR_EXCHANGE_EXTRA_FIELD_REQUIRED: {
defaultMessage: '{extraFieldName} is required',
id: 'TR_EXCHANGE_EXTRA_FIELD_REQUIRED',
},
TR_EXCHANGE_EXTRA_FIELD_INVALID: {
defaultMessage: '{extraFieldName} is invalid',
id: 'TR_EXCHANGE_EXTRA_FIELD_INVALID',
},
TR_EXCHANGE_EXTRA_FIELD_QUESTION_TOOLTIP: {
defaultMessage: '{extraFieldDescription}',
id: 'TR_EXCHANGE_EXTRA_FIELD_QUESTION_TOOLTIP',
},
TR_EXCHANGE_CREATE_SUITE_ACCOUNT: {
defaultMessage: 'Create a new {symbol} account',
id: 'TR_EXCHANGE_CREATE_SUITE_ACCOUNT',
},
TR_EXCHANGE_USE_NON_SUITE_ACCOUNT: {
defaultMessage: "Use an account ({symbol}) that isn't in Suite",
id: 'TR_EXCHANGE_USE_NON_SUITE_ACCOUNT',
},
TR_EXCHANGE_FIXED: {
defaultMessage: 'Fixed-rate offer',
id: 'TR_EXCHANGE_FIXED',
},
TR_EXCHANGE_FLOAT: {
defaultMessage: 'Floating-rate offer',
id: 'TR_EXCHANGE_FLOAT',
},
TR_EXCHANGE_DEX: {
defaultMessage: 'Decentralized exchange offer',
id: 'TR_EXCHANGE_DEX',
},
TR_TRADING_EXCHANGE_FIXED_OFFERS_HEADING: {
defaultMessage: 'Fixed-rate CEX',
id: 'TR_TRADING_EXCHANGE_FIXED_OFFERS_HEADING',
dynamic: true,
},
TR_TRADING_EXCHANGE_FLOAT_OFFERS_HEADING: {
defaultMessage: 'Floating-rate CEX',
id: 'TR_TRADING_EXCHANGE_FLOAT_OFFERS_HEADING',
dynamic: true,
},
TR_TRADING_EXCHANGE_DEX_OFFERS_HEADING: {
defaultMessage: 'DEX',
id: 'TR_TRADING_EXCHANGE_DEX_OFFERS_HEADING',
dynamic: true,
},
TR_TRADING_EXCHANGE_DEX_OFFERS_HEADING_TOOLTIP: {
defaultMessage:
'A decentralized exchange (DEX) allows you to trade crypto directly on the blockchain without the need for a central authority or intermediary.',
id: 'TR_TRADING_EXCHANGE_DEX_OFFERS_HEADING_TOOLTIP',
dynamic: true,
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_KYC_ALL: {
defaultMessage: 'All KYC options',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_KYC_ALL',
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_NO_KYC: {
defaultMessage: 'KYC never required',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_NO_KYC',
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_ALL: {
defaultMessage: 'All CEX & DEX offers',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_ALL',
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_FIXED_CEX: {
defaultMessage: 'Fixed-rate CEX',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_FIXED_CEX',
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_FLOATING_CEX: {
defaultMessage: 'Floating-rate CEX',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_FLOATING_CEX',
},
TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_DEX: {
defaultMessage: 'DEX',
id: 'TR_TRADING_EXCHANGE_COMPARATOR_FILTER_RATE_DEX',
},
TR_TRADING_EXCHANGE_SIGN_BANNER_TITLE: {
defaultMessage: 'You’re swapping with {provider}',
id: 'TR_TRADING_EXCHANGE_SIGN_BANNER_TITLE',
},
TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_1: {
defaultMessage: 'Simply sign the order—no need to send transactions manually',
id: 'TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_1',
},
TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_2: {
defaultMessage: 'No gas fees—the smart contract handles everything for you',
id: 'TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_2',
},
TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_3: {
defaultMessage: 'Your swap might be partially filled based on market conditions',
id: 'TR_TRADING_EXCHANGE_SIGN_BANNER_POINT_3',
},
TR_SELL_STATUS_ERROR: {
defaultMessage: 'Rejected',
id: 'TR_SELL_STATUS_ERROR',
},
TR_SELL_STATUS_SUCCESS: {
defaultMessage: 'Approved',
id: 'TR_SELL_STATUS_SUCCESS',
},
TR_SELL_STATUS_PENDING: {
defaultMessage: 'Pending',
id: 'TR_SELL_STATUS_PENDING',
},
TR_REQUIRED_FIELD: {
defaultMessage: 'Required',
id: 'TR_REQUIRED_FIELD',
},
TR_ORDER_NOW: {
defaultMessage: 'Order now',
id: 'TR_ORDER_NOW',
},
TR_SELL_MODAL_FOR_YOUR_SAFETY: {
defaultMessage: 'Sell {cryptocurrency} with {provider}',
id: 'TR_SELL_MODAL_FOR_YOUR_SAFETY',
dynamic: true,
},
TR_SELL_MODAL_CONFIRM: {
defaultMessage: 'I’m ready to sell',
id: 'TR_SELL_MODAL_CONFIRM',
dynamic: true,
},
TR_SELL_MODAL_SECURITY_HEADER: {
defaultMessage: 'Security first with your Trezor',
id: 'TR_SELL_MODAL_SECURITY_HEADER',
dynamic: true,
},
TR_SELL_MODAL_TERMS_1: {
defaultMessage:
"You're here to sell cryptocurrencies. If you were directed to this site for any other reason, contact Trezor Support before proceeding.",
id: 'TR_SELL_MODAL_TERMS_1',
dynamic: true,
},
TR_SELL_MODAL_TERMS_2: {
defaultMessage:
"You're selling cryptocurrency for your own account. You acknowledge that the provider's policies may require identity verification.",
id: 'TR_SELL_MODAL_TERMS_2',
dynamic: true,
},
TR_SELL_MODAL_TERMS_3: {
defaultMessage:
"You understand that cryptocurrency transactions are final and can't be reversed or refunded. Losses due to fraud or mistakes may not be recoverable.",
id: 'TR_SELL_MODAL_TERMS_3',
dynamic: true,
},
TR_SELL_MODAL_VERIFIED_PARTNERS_HEADER: {
defaultMessage: 'Verified partners by Invity',
id: 'TR_SELL_MODAL_VERIFIED_PARTNERS_HEADER',
dynamic: true,
},
TR_SELL_MODAL_TERMS_4: {
defaultMessage:
"You understand that Invity doesn't provide this service. It's governed by {provider}’s Terms & Conditions.",
id: 'TR_SELL_MODAL_TERMS_4',
dynamic: true,
},
TR_SELL_MODAL_LEGAL_HEADER: {
defaultMessage: 'Legal notice',
id: 'TR_SELL_MODAL_LEGAL_HEADER',
dynamic: true,
},
TR_SELL_MODAL_TERMS_5: {
defaultMessage:
"You're not using this feature for gambling, fraud, or any activity that violates Invity’s or the provider's Terms of Service, or any applicable laws.",
id: 'TR_SELL_MODAL_TERMS_5',
dynamic: true,
},
TR_SELL_MODAL_TERMS_6: {
defaultMessage:
'You understand that cryptocurrencies are an emerging financial tool and that regulations may vary in different jurisdictions. This may put you at a higher risk of fraud, theft, or market instability.',
id: 'TR_SELL_MODAL_TERMS_6',
dynamic: true,
},
TR_SELL_REGISTER: {
id: 'TR_SELL_REGISTER',
defaultMessage: 'Register',
},
TR_SELL_BANK_ACCOUNT_STEP: {
defaultMessage: 'Bank account',
id: 'TR_SELL_BANK_ACCOUNT_STEP',
},
TR_SELL_CONFIRM_SEND_STEP: {
defaultMessage: 'Confirm & Send',
id: 'TR_SELL_CONFIRM_SEND_STEP',
},
TR_SELL_SEND_FROM: {
defaultMessage: 'Send from',
id: 'TR_SELL_SEND_FROM',
},
TR_SELL_SEND_TO: {
defaultMessage: 'Send to {providerName}’s address',
id: 'TR_SELL_SEND_TO',
},
TR_SELL_CONFIRM_ON_TREZOR_SEND: {
defaultMessage: 'Confirm on Trezor & Send',
id: 'TR_SELL_CONFIRM_ON_TREZOR_SEND',
},
TR_SELL_BANK_ACCOUNT: {
defaultMessage: 'Your bank accounts',
id: 'TR_SELL_BANK_ACCOUNT',
},
TR_SELL_BANK_ACCOUNT_TOOLTIP: {
defaultMessage: 'Bank accounts that you registered with your provider',
id: 'TR_SELL_BANK_ACCOUNT_TOOLTIP',
},
TR_SELL_BANK_ACCOUNT_VERIFIED: {
defaultMessage: 'Verified',
id: 'TR_SELL_BANK_ACCOUNT_VERIFIED',
},
TR_SELL_BANK_ACCOUNT_NOT_VERIFIED: {
defaultMessage: 'Not verified',
id: 'TR_SELL_BANK_ACCOUNT_NOT_VERIFIED',
},
TR_SELL_ADD_BANK_ACCOUNT: {
defaultMessage: 'Add bank account',
id: 'TR_SELL_ADD_BANK_ACCOUNT',
},
TR_SELL_GO_TO_TRANSACTION: {
defaultMessage: 'Proceed',
id: 'TR_SELL_GO_TO_TRANSACTION',
},
TR_SELL_DETAIL_SUCCESS_TITLE: {
defaultMessage: 'Trade success',
id: 'TR_SELL_DETAIL_SUCCESS_TITLE',
},
TR_SELL_DETAIL_SUCCESS_TEXT: {
defaultMessage: 'Transaction finished successfully',
id: 'TR_SELL_DETAIL_SUCCESS_TEXT',
},
TR_SELL_DETAIL_SUCCESS_BUTTON: {
defaultMessage: 'Back to Account',
id: 'TR_SELL_DETAIL_SUCCESS_BUTTON',
},
TR_SELL_DETAIL_SUCCESS_FIXED_RATE_HEADER: {
defaultMessage: '✓ This rate is locked in',
id: 'TR_SELL_DETAIL_SUCCESS_FIXED_RATE_HEADER',
},
TR_SELL_DETAIL_SUCCESS_FIXED_RATE_MESSAGE: {
defaultMessage: "Your payment is still processing, but what you see is what you'll get.",
id: 'TR_SELL_DETAIL_SUCCESS_FIXED_RATE_MESSAGE',
},
TR_SELL_DETAIL_ERROR_TITLE: {
defaultMessage: 'Transaction failed',
id: 'TR_SELL_DETAIL_ERROR_TITLE',
},
TR_SELL_DETAIL_ERROR_TEXT: {
defaultMessage: 'Unfortunately, your transaction was rejected or has failed.',
id: 'TR_SELL_DETAIL_ERROR_TEXT',
},
TR_SELL_DETAIL_ERROR_SUPPORT: {
defaultMessage: "Open partner's support site",
id: 'TR_SELL_DETAIL_ERROR_SUPPORT',
},
TR_SELL_DETAIL_ERROR_BUTTON: {
defaultMessage: 'Back to Account',
id: 'TR_SELL_DETAIL_ERROR_BUTTON',
},
TR_SELL_DETAIL_PENDING_TITLE: {
defaultMessage: 'Trade in progress...',
id: 'TR_SELL_DETAIL_PENDING_TITLE',
},
TR_SELL_DETAIL_WAITING_FOR_SEND_CRYPTO: {
defaultMessage: "Waiting for {providerName}'s address",
id: 'TR_SELL_DETAIL_WAITING_FOR_SEND_CRYPTO',
},
TR_SELL_DETAIL_WAITING_FOR_SEND_CRYPTO_INFO: {
defaultMessage: 'The send address is being generated.',
id: 'TR_SELL_DETAIL_WAITING_FOR_SEND_CRYPTO_INFO',
},
TR_SELL_EXTRA_FIELD: {
defaultMessage: '{extraFieldName}',
id: 'TR_SELL_EXTRA_FIELD',
},
TR_SELL_DETAIL_PENDING_SUPPORT: {
defaultMessage: "Open partner's support site",
id: 'TR_SELL_DETAIL_PENDING_SUPPORT',
},
TR_BUY_STATUS_PENDING: {
defaultMessage: 'Pending',
id: 'TR_BUY_STATUS_PENDING',
},
TR_BUY_FOOTER_TEXT_1: {
defaultMessage:
'Invity is a comparison tool that connects you to the best exchange providers. They only use location in order to show the most relevant offers.',
id: 'TR_BUY_FOOTER_TEXT_1',
},
TR_BUY_FOOTER_TEXT_2: {
defaultMessage:
"Invity doesn't see any of your payment or KYC information; you share this only with the exchange provider if you choose to finish the transaction.",
id: 'TR_BUY_FOOTER_TEXT_2',
},
TR_BUY_MODAL_FOR_YOUR_SAFETY: {
defaultMessage: 'Buy {cryptocurrency} with {provider}',
id: 'TR_BUY_MODAL_FOR_YOUR_SAFETY',
dynamic: true,
},
TR_BUY_MODAL_CONFIRM: {
defaultMessage: 'I’m ready to buy',
id: 'TR_BUY_MODAL_CONFIRM',
dynamic: true,
},
TR_BUY_MODAL_SECURITY_HEADER: {
defaultMessage: 'Security first with your Trezor',
id: 'TR_BUY_MODAL_SECURITY_HEADER',
dynamic: true,
},
TR_BUY_MODAL_TERMS_1: {
defaultMessage:
"You're here to buy cryptocurrencies. If you were directed to this site for any other reason, contact {provider} support before proceeding.",
id: 'TR_BUY_MODAL_TERMS_1',
dynamic: true,
},
TR_BUY_MODAL_TERMS_2: {
defaultMessage:
"You're buying cryptocurrencies for your own account. You acknowledge that the provider's policies may require identity verification.",
id: 'TR_BUY_MODAL_TERMS_2',
dynamic: true,
},
TR_BUY_MODAL_TERMS_3: {
defaultMessage:
"You understand that cryptocurrency transactions are final and can't be reversed or refunded. Losses due to fraud or mistakes may not be recoverable.",
id: 'TR_BUY_MODAL_TERMS_3',
dynamic: true,
},
TR_BUY_MODAL_VERIFIED_PARTNERS_HEADER: {
defaultMessage: 'Verified partners by Invity',
id: 'TR_BUY_MODAL_VERIFIED_PARTNERS_HEADER',
dynamic: true,
},
TR_BUY_MODAL_TERMS_4: {
defaultMessage:
"You understand that Invity doesn't provide this service. It's governed by {provider}’s Terms & Conditions.",
id: 'TR_BUY_MODAL_TERMS_4',
dynamic: true,
},