-
Notifications
You must be signed in to change notification settings - Fork 986
/
Copy pathen.json
3062 lines (3062 loc) · 174 KB
/
en.json
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
{
"about": "About",
"about-app": "About",
"about-gas-amount": "AKA gas limit. Refers to the maximum number of computational steps (or units of gas) that a transaction can consume. It represents the complexity or amount of work required to execute a transaction or smart contract.\n\nThe gas limit is a cap on how much work the transaction can do on the blockchain. If the gas limit is set too low, the transaction may fail due to insufficient gas.",
"about-key-storage-content": "Status will never access your private key. Be sure to backup your seed phrase. If you lose your phone it is the only way to access your keys.",
"about-key-storage-title": "About key storage",
"about-max-base-fee": "When your transaction gets included in the block, any difference between your max base fee and the actual base fee will be refunded.",
"about-names-content": "No one can pretend to be you! You’re anonymous by default and never have to reveal your real name. You can register a custom name for a small fee.",
"about-names-title": "Names can’t be changed",
"about-nonce": "Transaction counter ensuring transactions from your account are processed in the correct order and can’t be replayed. Each new transaction increments the nonce by 1, ensuring uniqueness and preventing double-spending.\n\nIf a transaction with a lower nonce is pending, higher nonce transactions will remain in the queue until the earlier one is confirmed.",
"about-priority-fee": "AKA miner tip. A voluntary fee you can add to incentivise miners or validators to prioritise your transaction.\n\nThe higher the tip, the faster your transaction is likely to be processed, especially curing periods of higher network congestion.",
"about-sharing-data": "About sharing data",
"accent-colour": "Accent colour",
"accent-colour-updated": "Accent colour updated",
"accept": "Accept",
"accept-and-add": "Accept and add",
"accept-and-continue": "Accept and continue",
"accept-and-share-address": "Accept and share address",
"accept-community-rules": "I agree with the community rules",
"accept-new-chats-from": "Accept new chats from",
"accept-status-tos-prefix": "By proceeding you accept Status ",
"accepted": "Accepted",
"access-existing-keys": "Access existing keys",
"access-key": "Access key",
"account": "Account",
"account-added": "Account added",
"account-color": "Account color",
"account-content": "You can compare accounts in Status to bank accounts. Like a bank account, an account typically has an address and a balance; You use this account to transact on Ethereum. You can have multiple accounts in your wallet. All accessed by unlocking Status.",
"account-created": "{{name}} created",
"account-exists-title": "Account already exists",
"account-info": "Account info",
"account-is-used": "The account is being used with Dapps in the browser.",
"account-name": "Account name",
"account-origin-desc": "To create a new account, you can generate a key pair in the app or import an existing account.",
"account-origin-header": "Account origin",
"account-removed": "Account has been removed",
"account-settings": "Account settings",
"account-title": "Account",
"accounts": "Accounts",
"accounts-count": "{{count}} accounts",
"action-logs": "Logs of actions, including button presses and screen visits",
"actions": "Actions",
"active-members": "Active members",
"active-online": "Online",
"active-unknown": "Unknown",
"activity": "Activity",
"add": "Add",
"add-a-contact": "Add a contact",
"add-a-watch-account": "Add a watch-only address",
"add-account": "Add account",
"add-account-description": "Create new or import existing account",
"add-account-incorrect-password": "Password seems to be incorrect. Enter the password you use to unlock the app.",
"add-address": "Add address",
"add-address-to-save-description": "Paste, scan or type ETH address or ENS name",
"add-address-to-watch": "Add address to watch",
"add-address-to-watch-description": "Watch a public address or ENS name",
"add-an-account": "Add an account",
"add-assets": "Add assets",
"add-bootnode": "Add bootnode",
"add-contact": "Add contact",
"add-custom-token": "Add custom token",
"add-display-name-and-picture": "Add an optional display name and profile picture so others can easily recognize you",
"add-eth": "Add ETH",
"add-favourite": "Add favourite",
"add-mailserver": "Add Status node",
"add-me-to-your-contacts": "Please add me to your contacts",
"add-members": "Add members",
"add-network-preferences": "Add network preferences",
"add-networks-token-can-be-sent-to": "Add networks {{token-symbol}} can be sent to",
"add-new-contact": "Add new contact",
"add-nickname": "Add a nickname (optional)",
"add-nickname-title": "Add nickname",
"add-node": "Add node",
"add-preferences": "Add preferences",
"add-private-key-account": "Add account from private key",
"add-seed-account": "Add account with a seed phrase",
"add-text": "Add text",
"add-to-contacts": "Add to contacts",
"add-to-contacts-text": "By adding a user to your contact list, you share your wallet address",
"add-to-favourites": "Add to favourites",
"add-watch-account": "Add a watch-only account",
"add-watched-address": "Add watched address",
"added": "added",
"added-to-group-chat": "Added to group chat",
"added-you-to": "added you to",
"address": "Address",
"address-activity": "This address has activity",
"address-already-in-use": "Address already being used",
"address-copied": "Address copied",
"address-count": {
"one": "1 address",
"other": "{{count}} addresses"
},
"address-edited": "Address edited",
"address-name": "Address name",
"address-no-activity": "This address has no activity",
"address-or-ens-name": "Address or ENS name",
"address-placeholder": "0x123abc... or bob.eth",
"address-received": "Address received",
"address-request-accepted": "Address request accepted",
"address-requested": "Address requested",
"address-saved": "Address saved",
"address-to-share": "Addresses to share",
"addresses-dont-contain-tokens-needed": "These addresses don’t contain tokens needed to join",
"addresses-for-permissions": "Addresses for permissions",
"admin": "Admin",
"advanced": "Advanced",
"advanced-settings": "Advanced settings",
"advertiser-description": "You’ve discovered Status thanks to a partner. Do you mind if Status checks your IP address once so they get rewarded? This information will not be used for anything else and it will be removed completely after 7 days.",
"advertiser-starter-pack-accept": "Accept",
"advertiser-starter-pack-decline": "Decline",
"advertiser-starter-pack-description": "Here’s some crypto to get you started! Use it to get stickers, an ENS name and try dapps",
"advertiser-starter-pack-title": "Starter Pack",
"advertiser-title": "Privacy by default",
"agree": "Agree",
"agree-by-continuing": "By continuing you agree\n to our ",
"airdrop-addresses": "Address for airdrops",
"album-images-count": "{{album-images-count}} photos",
"all": "All",
"all-addresses": "All addresses",
"all-changes-will-be-discarded": "All changes in shared addresses for permissions will be discarded.",
"all-connections": "All Connections",
"all-currencies": "All currencies",
"all-messages": "All messages",
"all-networks": "All networks",
"all-time": "All time",
"allow": "Allow",
"allow-and-send": "Allow and send",
"allow-mention-notifications": "Show @ mentions",
"allow-new-contact-requests": "Allow new contact requests",
"allowing-authorizes-this-dapp": "Allowing authorizes this DApp to retrieve your wallet address and enable Web3",
"alphabetically": "Alphabetically",
"already-have-asset": "You already have this asset",
"already-logged-in-on-the-other-device": "Already logged in on the other device",
"amount": "Amount",
"amount-missing-keypairs": "{{amount} missing key pairs",
"amount-with-currency-symbol": "{{symbol}} {{amount}}",
"and": "and",
"and-go-to": "and go to",
"anyone": "Anyone",
"app-commit": "App commit",
"app-connections": "App connections",
"app-interactions": "App interactions",
"appearance": "Appearance",
"apply": "Apply",
"apply-changes": "Apply changes",
"approve": "Approve",
"approve-amount-symbol": "Approve {{token-amount}} {{token-symbol}}",
"approve-limit": "Approve limit",
"approve-token": "Approve token",
"approve-token-contract-desc": "Approving a token with a contract allows it to spend your token balance. If you feel that a project is untrustworthy, don’t approve the token with them, or approve only the amount you will use with them.",
"approved-amount-symbol": "Approved {{token-amount}} {{token-symbol}}",
"approving-amount-symbol": "Approving {{token-amount}} {{token-symbol}}...",
"apr": "Apr",
"arbiscan": "Arbiscan",
"arbitrum": "Arbitrum",
"are-not-allowed": "{{check} are not allowed",
"are-you-sure": "Are you sure?",
"are-you-sure-description": "You will not be able to see the whole seed phrase again",
"are-you-sure-to-cancel": "Are you sure you want to cancel?",
"are-you-sure?": "Are you sure?",
"ask-in-status": "Ask a question or report a bug",
"assets": "Assets",
"at": "at",
"at-least-one-network-must-be-activated": "At least 1 network must be activated",
"attribution-received": "{{attrib}} out of {{max}} bonuses received",
"audio": "Audio",
"audio-message": "Audio message",
"audio-recorder": "Recorder",
"audio-recorder-error": "Recorder error",
"audio-recorder-max-ms-reached": "Maximum recording time reached",
"audio-recorder-permissions-error": "You have to give permission to send audio messages",
"aug": "Aug",
"authorise-with-password": "Authorise with password",
"authorize": "Authorize",
"available": "Available",
"available-participants": {
"one": "You can select one more participant",
"other": "You can select {{count}} more participants"
},
"back": "Back",
"back-up": "Back up",
"back-up-seed-phrase": "Backup recovery phrase",
"back-up-your-seed-phrase": "Backup your recovery phrase",
"backing-up": "Backing up...",
"backup-disabled": "Disabled",
"backup-empty-keycard-only": "You can only back up to an empty Keycard.",
"backup-enabled": "Enabled",
"backup-keycard": "Backup Keycard",
"backup-keycard-created": "Backup Keycard successfully created",
"backup-keycard-instructions": "You’ll need an empty Keycard to create backup. You’ll be able to create a different PIN for backup Keycard. It might make sense to mark your Keycards, so you don’t mix them up.",
"backup-recovery-phrase": "Backup recovery phrase",
"backup-recovery-phrase-description": "Save in a secure place that only you control, these 12 words give access to all of your funds.",
"backup-settings": "Backup settings",
"backup-step-1": "Find pen and paper",
"backup-step-2": "Write down your recovery phrase",
"backup-step-3": "Find a place to store it",
"backup-step-4": "I know I can only see it once",
"backup-through-waku": "Backup through waku",
"bad-fees-description": "Your priority fee is below our suggested parameters.",
"balance": "Balance",
"base": "Base",
"be-safe-with-secure-cold-wallet": "Be safe with secure cold wallet",
"begin-set-up": "Begin setup",
"below-base-fee": "max fee below base fee",
"beta": "Beta",
"bio": "Bio",
"bio-added": "Bio added",
"bio-is-too-long": "Bio is too long",
"bio-updated": "Bio updated",
"biometric": "Biometric",
"biometric-auth-android-sensor-desc": "Touch sensor",
"biometric-auth-android-sensor-error-desc": "Failed",
"biometric-auth-android-title": "Authentication Required",
"biometric-auth-confirm-logout": "Relogin",
"biometric-auth-confirm-message": "Biometric authentication is required to continue, if not possible please unlock your keys with your password or passcode",
"biometric-auth-confirm-title": "You must authenticate!",
"biometric-auth-confirm-try-again": "Try again",
"biometric-auth-error": "Unable perform biometric authentication ({{code}})",
"biometric-auth-login-error-title": "Biometric authentication error",
"biometric-auth-login-ios-fallback-label": "Enter Password",
"biometric-auth-reason-login": "Login in Status",
"biometric-auth-reason-verify": "Verify authentication",
"biometric-disable-bioauth": "disable {{bio-type-label}}",
"biometric-disable-password-description": "If you disable this, you will also ",
"biometric-disable-password-title": "Disable password saving",
"biometric-enable": "If you don't want to enter your password each time to access the app, enable {{bio-type-label}} sign in",
"biometric-enable-button": "Enable {{bio-type-label}}",
"biometric-enable-keycard": "If you don't want to use your Keycard each time to access the app, enable {{bio-type-label}} sign in",
"biometric-faceid": "Face ID",
"biometric-fingerprint": "Fingerprint",
"biometric-secure-with": "Secure with {{bio-type-label}}",
"biometric-too-many-attempts": "Too many attempts. Enter the password manually or try again after some time",
"biometric-touchid": "Touch ID",
"bip39-password-placeholder": "BIP39 password",
"biu": "BIU",
"blank-contacts-text": "Your contacts will be here",
"blank-keycard-text": "You can proceed with your keycard once you've generated your keys and name",
"blank-keycard-title": "Looks like you’ve tapped \na blank keycard",
"blank-messages-text": "Your messages will be here",
"block": "Block",
"block-contact": "Block this user",
"block-contact-details": "Blocking will delete this user's previous messages and stop new ones from reaching you",
"block-user": "Block user",
"block-user-title-message": "You will not see {{username}}'s messages, but {{username}} still can see your messages in mutual group chats and communities. {{username}} will be unable to message you.",
"block-user?": "Block User?",
"blocked-users": "Blocked users",
"blocking-a-user-message": "Blocking a user purges the database of all messages that you’ve previously received from {{username}} in all contexts.",
"bold": "Bold",
"bootnode-address": "Bootnode address",
"bootnode-details": "Bootnode details",
"bootnode-format": "enode://{enode-id}@{ip-address}:{port}",
"bootnodes": "Bootnodes",
"bootnodes-enabled": "Bootnodes enabled",
"bootnodes-settings": "Bootnodes settings",
"bridge": "Bridge",
"bridge-from": "Bridge from {{bridge-name}}",
"bridge-to": "Bridge {{name}} to",
"bridged-to": "Bridged to {{network}}",
"browsed-websites": "Browser history will appear here",
"browser": "Browser",
"browser-not-secure": "Connection is not secure! Do not sign transactions or send personal data on this site.",
"browser-secure": "Connection is secure. Make sure you really trust this site before signing transactions or entering personal data.",
"browsers": "Browsers",
"browsing-cancel": "Cancel",
"browsing-open-in-android-web-browser": "Open in Android",
"browsing-open-in-ios-web-browser": "Open in iOS",
"browsing-open-in-status": "Open in Status",
"browsing-site-blocked-description1": "We detected potential malicious activity from this address. To protect you and your wallet, we're preventing further navigation.\n\nIf you think this is an error, let us know in the ",
"browsing-site-blocked-description2": " public chat.",
"browsing-site-blocked-go-back": "Go back",
"browsing-site-blocked-title": "This site is blocked",
"browsing-title": "Browse",
"bug-report": "Report a bug",
"bug-report-description": "* Description",
"bug-report-description-placeholder": "Required, can't be empty",
"bug-report-steps": "Steps to reproduce",
"bug-report-steps-placeholder": "- open app\n- do something\n- and then somethig else...",
"bug-report-submit-email": "Submit by email with logs archive",
"bug-report-submit-gh-issue": "Submit a GitHub issue without logs",
"bug-report-too-short-description": "Description is too short",
"build-yourself": "To use the app without these Terms of Use, you can build your own version",
"buy": "Buy",
"buy-crypto": "Buy crypto",
"buy-crypto-choose-a-service": "Choose a service you'd like to use to buy crypto",
"buy-crypto-description": "Find a dapp to buy crypto now",
"buy-crypto-leaving": "You are leaving Status and entering a third party website to complete your purchase",
"buy-crypto-title": "Looks like your wallet is empty",
"buy-ethereum": "Buy Ethereum",
"buy-keycard": "Buy Keycard",
"by-continuing-you-accept": "By continuing you accept our ",
"camera-access-error": "To grant the required camera permission, please go to your system settings and make sure that Status > Camera is selected.",
"camera-permission-denied": "Permission denied",
"can-not-add-yourself": "That's you, to start a chat choose someone else",
"can-send-messages": "You can send and receive new messages",
"cancel": "Cancel",
"cancel-keycard-setup": "Cancel Keycard setup",
"cancel-request-to-join": "Cancel request to join",
"cancel-request?": "Cancel request?",
"cancelling": "Cancelling",
"cannot-pin-desc": "You can only pin a max of 3 messages.\nUnpin at least one to pin a new one.",
"cannot-pin-title": "You can't pin this message!",
"cannot-read-card": "Can't read card.\nPlease hold it to the back of your phone",
"cannot-use-default-pin": "Passcode 000000 is not allowed.\nPlease use another number",
"cant-fetch-info": "Can't fetch info",
"cant-open-public-chat": "Can't open public chat",
"cant-report-bug": "Can't report a bug",
"cant-store-new-keys": "You can’t use it to store new keys right now",
"cant-use-right-now": "You can’t use it right now",
"card-is-blank": "This card is blank",
"card-reseted": "Card has been reseted",
"card-unpaired": "Card has been unpaired from current device",
"category": "Category",
"category-title": "Category title",
"change-fleet": "Change fleet to {{fleet}}",
"change-group-privacy": "Change group privacy",
"change-log-level": "Confirm and restart the app to change log level to {{log-level}}",
"change-logging-enabled": "Are you sure you want to {{enable}} logging?",
"change-pairing": "Change pairing code",
"change-pairing-description": "Changing the pairing code does not affect the current pairings. However, any new pairing will require the new code.",
"change-pairing-title": "Create a new pairing code",
"change-passcode": "Change Passcode",
"change-password": "Change password",
"change-password-confirm-description": "Your data must now be re-encrypted with your new password. Please do not quit the app or turn off your device.",
"change-password-confirm-warning": "Re-encrypting data after changing password may take up to 3 min. Closing the app or locking phone while re-encryption is in progress will lead to data corruption and loss of your Status profile.",
"change-password-description": "Change password used to log in to Status and sign transactions",
"change-password-done-description": "Please log out Status and log in using your new password",
"change-password-done-header": "Re-encryption complete!",
"change-password-loading-description": "Data is now being re-encrypted with your new password, this may take up to 3min.",
"change-password-loading-header": "Keep app open on screen!",
"change-password-loading-warning": "Do not quit the app or turn off your device while in-progress.\n \nClosing the app or locking your phone while re-encryption is taking place will lead to data corruption and the loss of your Status profile.",
"change-password-new-password-label": "New password",
"change-password-new-password-placeholder": "Enter new password",
"change-password-old-password-label": "Current password",
"change-password-old-password-placeholder": "Enter current password",
"change-password-repeat-password-placeholder": "Repeat new password",
"change-pin": "Change 6-digit passcode",
"change-pin-keycard": "Change PIN",
"change-pin-keycard-description": "Use different PIN for this Keycard",
"change-pin-keycard-message": "It’s very important that you will not forget new PIN. Status is unable to restore PIN. If you forget it, Keycard will be blocked and you will need to restore it via recovery phrase or PUK.",
"change-puk": "Change 12-digit PUK",
"change-testnet-mode-logout-info": "You’ll be logged out of the app",
"change-tip": "Change tip",
"changed-amount-warning": "Amount was changed from {{old}} to {{new}}",
"changed-asset-warning": "Asset was changed from {{old}} to {{new}}",
"channel-muted-for-1-hour": "Channel muted for 1 hour \n(until {{duration}})",
"channel-muted-for-1-week": "Channel muted for 1 week \n(until {{duration}})",
"channel-muted-for-15-minutes": "Channel muted for 15 minutes \n(until {{duration}})",
"channel-muted-for-8-hours": "Channel muted for 8 hours \n(until {{duration}})",
"channel-muted-till-unmuted": "Channel muted till unmuted \n(until {{duration}})",
"channel-on-status": "Channel on Status",
"channel-unmuted-successfully": "Channel unmuted successfully!",
"chaos-mode": "Chaos mode",
"chaos-unicorn-day": "Chaos Unicorn Day",
"chaos-unicorn-day-details": "🦄🦄🦄🦄🦄🦄🦄🚀!",
"chat": "Chat",
"chat-and-transact": "Chat and transact privately with friends",
"chat-is-a-contact": "Contact",
"chat-is-not-a-contact": "Not a contact",
"chat-key": "Chat key",
"chat-key-content": "Messages on the Status chat protocol are sent and received using encryption keys. The public chat key is a string of characters you share with others so they can send you messages in Status.",
"chat-key-description": "Your unique public ID in Status. Others can use it to send you a contact request.",
"chat-key-title": "Chat Key",
"chat-link-previews": "Chat link previews",
"chat-muted-for-1-hour": "Chat muted for 1 hour \n(until {{duration}})",
"chat-muted-for-1-week": "Chat muted for 1 week \n(until {{duration}})",
"chat-muted-for-15-minutes": "Chat muted for 15 minutes \n(until {{duration}})",
"chat-muted-for-8-hours": "Chat muted for 8 hours \n(until {{duration}})",
"chat-muted-till-unmuted": "Chat muted till unmuted \n(until {{duration}})",
"chat-name": "Chat name",
"chat-name-content": "Three random words, derived algorithmically from your chat key and used as your default alias in chat. Chat names are completely unique; no other user can have the same three words.",
"chat-name-title": "Chat Name",
"chat-notification-preferences": "Notification settings",
"chat-settings": "Chat settings",
"chat-unmuted-successfully": "Chat unmuted successfully!",
"chat-with": "Chat with {{selected-user}}",
"chat-with-friends": "Chat privately with friends",
"chats": "Chats",
"check-before-syncing": "Check before syncing",
"check-before-syncing-doc-checkbox-1": "Connect both devices to the same network",
"check-before-syncing-doc-checkbox-2": "Make sure you are logged in on the other device",
"check-before-syncing-doc-checkbox-3": "Disable the firewall and VPN on your devices",
"check-before-syncing-doc-description": "To sync your devices successfully, make sure to check and complete these steps:",
"check-keycard": "Check your Keycard",
"check-on-block-explorer": "Check on block explorer",
"check-on-opensea": "Check on opensea",
"check-other-device-for-pairing": "Check your other device for a pairing request.",
"check-your-account-balance-and-activity": "Check your account balance and activity",
"check-your-recovery-phrase": "Check your seed phrase",
"choose-actions": "Choose actions",
"choose-authentication-method": "Choose an authentication method",
"choose-new-location-for-keystore": "Choose a new location to save your keystore file",
"choose-storage": "Choose storage",
"clear": "Clear",
"clear-all": "Clear all",
"clear-history": "Clear history",
"clear-history-action": "Clear",
"clear-history-confirmation": "Clear history?",
"clear-history-confirmation-content": "Are you sure you want to clear this chat history?",
"clear-history-title": "Clear history?",
"clear-history?": "Clear History?",
"cleared-chat-description-public": "It's been quiet here. Start the conversation or ",
"close": "Close",
"close-all": "Close all",
"close-app-button": "Confirm",
"close-app-content": "The app will stop and close. When you reopen it, the selected network will be used",
"close-app-title": "Warning!",
"close-chat": "Close chat",
"close-chat-confirmation": "This conversation will disappear from the list.\nIt will appear again if the contact sends a new message.",
"close-community": "Close community",
"close-contact-search": "Close contact search",
"code-snippet": "Code snippet",
"collectibles": "Collectibles",
"collectibles-leak-metadata": "You can display your NFTs here. If you do, you will share your wallet and IP address",
"collecting-usage-data": "Share basic usage and diagnostic data to improve Status. Opt out anytime in Settings.",
"colour": "Colour",
"command-button-send": "Send",
"common-names": "Common names",
"communities": "Communities",
"communities-alpha": "Communities (alpha)",
"communities-enabled": "Communities enabled",
"communities-verified": "✓ Verified Status Community",
"community": "Community",
"community-channel": "Community channel",
"community-channel-read-requirements-met": "View only requirements met",
"community-channel-read-requirements-not-met": "View only requirements not met",
"community-channel-write-requirements-met": "View and post requirements met",
"community-channel-write-requirements-not-met": "View and post requirements not met",
"community-color": "Community colour",
"community-color-placeholder": "Pick a colour",
"community-edit-title": "Edit community",
"community-emoji-thumbnail-title": "Thumbnail",
"community-enter-channel-info": "Entering channel will reveal your public addresses to the node owner",
"community-image-delete": "",
"community-image-pick": "Pick an image",
"community-image-remove": "Remove",
"community-image-take": "Take a photo",
"community-info": "Community info",
"community-info-not-found": "Community information not found",
"community-invite-title": "Invite",
"community-join-requirements-changed": "Token requirements have changed",
"community-join-requirements-met": "Join requirements met",
"community-join-requirements-not-met": "Join requirements not met",
"community-join-requirements-tokens-lost": "You no longer have the tokens required",
"community-key": "Community private key",
"community-key-placeholder": "Type your community private key",
"community-kicked-body": "You were kicked from",
"community-kicked-heading": "Kicked from community",
"community-link": "Community link",
"community-members": {
"one": "{{count}} member",
"other": "{{count}} members"
},
"community-members-title": "Members",
"community-message-preview": "Invitation to join {{community-name}}",
"community-on-status": "Community on Status",
"community-overview": "Community Overview",
"community-private-key": "Community private key",
"community-request-accepted": "Request accepted",
"community-request-accepted-body-text": "Now you are a member of",
"community-request-not-accepted": "Request hasn't been accepted",
"community-request-not-accepted-body-text-prefix": "Your request to join",
"community-request-not-accepted-body-text-suffix": "hasn't been accepted",
"community-request-pending": "Request pending",
"community-request-pending-body-text": "You requested to join",
"community-requests-to-join-title": "Membership requests",
"community-roles": "Roles",
"community-rules": "Community rules",
"community-share-title": "Share",
"community-thumbnail-image": "Thumbnail image",
"community-thumbnail-upload": "Upload",
"community-unmuted": "Community unmuted",
"complete-backup": "Complete backup",
"complete-hardwallet-setup": "This card is now linked. You need it to sign transactions and unlock your keys",
"completed": "Completed",
"confirm": "Confirm",
"confirm-account-origin": "Confirm account origin",
"confirm-and-leave": "Confirm and leave",
"confirm-backup": "Confirm backup",
"confirm-changes": "Confirm changes",
"confirm-new-password": "Confirm new password",
"confirm-pairing-code-placeholder": "Confirm your pairing code...",
"confirm-password-placeholder": "Confirm your password...",
"confirm-selection": "Confirm selection",
"confirm-the-position": "Confirm the position of certain words in your recovery phrase",
"confirmation-request": "Confirmation request",
"confirmations": "Confirmations",
"confirmations-helper-text": "When the transaction has 12 confirmations you can consider it settled.",
"confirmed-on": "Confirmed on",
"connect": "Connect",
"connect-mailserver-content": "Connect to {{name}}?",
"connect-with-users": "Connect with users",
"connected": "Connected",
"connected-dapps": "Connected dApps",
"connected-dont-move": "Connected. Don’t move your card.",
"connected-peers": "Connected and discovered peers",
"connected-to": "Connected to",
"connecting": "Connecting...",
"connecting-requires-login": "Connecting to another network requires login",
"connection-request": "Connection Request",
"connection-status": "Connection status",
"connection-type": "Type of connection to peers",
"connection-with-the-card-lost": "Connection with the card\n has been lost",
"connection-with-the-card-lost-setup-text": "To resume the setup hold the card to\n the back of your phone and maintain\n card to phone contact",
"connection-with-the-card-lost-text": "To proceed hold the card to the back of your phone",
"contact-code": "Chat key",
"contact-profile-request-pending": "Contact request pending",
"contact-request": "Contact request",
"contact-request-accepted": "Accepted ✓",
"contact-request-accepted-toast": "{{name}} accepted your contact request",
"contact-request-chat-add": "Add {{name}} as contact to send a message",
"contact-request-chat-pending": "Your contact request is pending",
"contact-request-chat-received": "{{name}} sent you a contact request",
"contact-request-declined": "Declined ⓧ",
"contact-request-header": "👋 Contact requests",
"contact-request-is-now-a-contact": "is now a contact",
"contact-request-message-prompt": "Why should they accept your request?",
"contact-request-outgoing": "You’re trying to connect with",
"contact-request-pending": "Pending...",
"contact-request-removed-as-contact": "removed as a contact",
"contact-request-removed-you-as-contact": "removed you as a contact",
"contact-request-review": "Review contact request",
"contact-request-sent": "sent contact request",
"contact-request-sent-to": "Contact request sent to",
"contact-request-sent-toast": "{{name}} sent you a contact request",
"contact-request-was-accepted": "Contact request accepted",
"contact-request-was-ignored": "Contact request ignored",
"contact-request-was-sent": "Contact request sent",
"contact-requests": "Contact requests",
"contact-s": {
"one": "contact",
"other": "contacts"
},
"contacts": "Contacts",
"contacts-descr": "Your contacts will appear here. You will receive status updates from anyone you add as a contact",
"contacts-empty": "Contacts with ENS names will appear here",
"continue": "Continue",
"continue-anyway": "Continue anyway",
"contract-address": "Contract address",
"contract-interaction": "Contract interaction",
"contract-isnt-supported": "Contract is not supported",
"copy-address": "Copy address",
"copy-all-details": "Copy all details",
"copy-info": "Copy info",
"copy-message-id": "Copy message ID",
"copy-qr": "Copy code",
"copy-text": "Copy text",
"copy-to-clipboard": "Copy",
"copy-transaction-hash": "Copy transaction hash",
"correct-private-key": "Correct private key",
"cost-fee": "Cost/Fee",
"counter-9-plus": "9+",
"counter-99-plus": "99+",
"create": "Create",
"create-a-pin": "Create a 6-digit passcode",
"create-a-puk": "Create a 12-digit PUK",
"create-account": "Create account",
"create-backup-keycard": "Create backup Keycard",
"create-backup-profile-keycard": "Create backup for your profile Keycard",
"create-category": "Create category",
"create-channel": "Create a channel",
"create-channel-title": "New channel",
"create-community": "Create a community",
"create-group-chat": "Create group chat",
"create-keycard-pin": "Create Keycard PIN",
"create-multiaccount": "Generate keys",
"create-new-key": "Get new keys",
"create-new-keycard-pin": "Create new Keycard PIN",
"create-new-profile": "Create new profile",
"create-pin": "Create 6-digit passcode",
"create-pin-description": "You'll need your card + this 6-digit passcode to unlock Status and to confirm transactions",
"create-profile": "Create profile",
"create-profile-keycard": "Create profile on empty Keycard",
"create-profile-password-info-box-description": "Your Status keys are the foundation of your self-sovereign identity in Web3. You have complete control over these keys, which you can use to sign transactions, access your data, and interact with Web3 services.\n\nYour keys are always securely stored on your device and protected by your Status profile password. Status doesn't know your password and can't reset it for you. If you forget your password, you may lose access to your Status profile and wallet funds.\n\nRemember your Status password and don't share it with anyone.",
"create-profile-password-info-box-title": "About your profile password",
"created-group-chat-description": "You created the group {{group-name}}",
"crypto": "Crypto",
"cryptokitty-name": "CryptoKitty #{{id}}",
"currency": "Currency",
"currency-display-name-aed": "Emirati Dirham",
"currency-display-name-afn": "Afghanistan Afghani",
"currency-display-name-ars": "Argentine Peso",
"currency-display-name-aud": "Australian Dollar",
"currency-display-name-bbd": "Barbados Dollar",
"currency-display-name-bdt": "Bangladeshi Taka",
"currency-display-name-bgn": "Bulgarian Lev",
"currency-display-name-bhd": "Bahraini Dinar",
"currency-display-name-bnd": "Brunei Darussalam Dollar",
"currency-display-name-bob": "Bolivia Bolíviano",
"currency-display-name-brl": "Brazil Real",
"currency-display-name-btc": "Bitcoin",
"currency-display-name-btn": "Bhutanese Ngultrum",
"currency-display-name-cad": "Canada Dollar",
"currency-display-name-chf": "Switzerland Franc",
"currency-display-name-clp": "Chile Peso",
"currency-display-name-cny": "China Yuan Renminbi",
"currency-display-name-cop": "Colombia Peso",
"currency-display-name-crc": "Costa Rica Colon",
"currency-display-name-czk": "Czech Koruna",
"currency-display-name-dai": "DAI",
"currency-display-name-dkk": "Denmark Krone",
"currency-display-name-dop": "Dominican Republic Peso",
"currency-display-name-egp": "Egypt Pound",
"currency-display-name-etb": "Ethiopian Birr",
"currency-display-name-eth": "Ethereum",
"currency-display-name-eur": "Euro",
"currency-display-name-gbp": "British Pound",
"currency-display-name-gel": "Georgian Lari",
"currency-display-name-ghs": "Ghana Cedi",
"currency-display-name-hkd": "Hong Kong Dollar",
"currency-display-name-hrk": "Croatia Kuna",
"currency-display-name-huf": "Hungary Forint",
"currency-display-name-idr": "Indonesia Rupiah",
"currency-display-name-ils": "Israel Shekel",
"currency-display-name-inr": "India Rupee",
"currency-display-name-isk": "Iceland Krona",
"currency-display-name-jmd": "Jamaica Dollar",
"currency-display-name-jpy": "Japanese Yen",
"currency-display-name-kes": "Kenyan Shilling",
"currency-display-name-krw": "Korea (South) Won",
"currency-display-name-kwd": "Kuwaiti Dinar",
"currency-display-name-kzt": "Kazakhstan Tenge",
"currency-display-name-lkr": "Sri Lanka Rupee",
"currency-display-name-mad": "Moroccan Dirham",
"currency-display-name-mdl": "Moldovan Leu",
"currency-display-name-mur": "Mauritius Rupee",
"currency-display-name-mwk": "Malawian Kwacha",
"currency-display-name-mxn": "Mexico Peso",
"currency-display-name-myr": "Malaysia Ringgit",
"currency-display-name-mzn": "Mozambique Metical",
"currency-display-name-nad": "Namibia Dollar",
"currency-display-name-ngn": "Nigeria Naira",
"currency-display-name-nok": "Norway Krone",
"currency-display-name-npr": "Nepal Rupee",
"currency-display-name-nzd": "New Zealand Dollar",
"currency-display-name-omr": "Oman Rial",
"currency-display-name-pen": "Peru Sol",
"currency-display-name-pgk": "Papua New Guinean Kina",
"currency-display-name-php": "Philippines Peso",
"currency-display-name-pkr": "Pakistan Rupee",
"currency-display-name-pln": "Polish Zloty",
"currency-display-name-pyg": "Paraguay Guarani",
"currency-display-name-qar": "Qatar Riyal",
"currency-display-name-ron": "Romania Leu",
"currency-display-name-rsd": "Serbia Dinar",
"currency-display-name-rub": "Russia Ruble",
"currency-display-name-sar": "Saudi Arabia Riyal",
"currency-display-name-sek": "Sweden Krona",
"currency-display-name-sgd": "Singapore Dollar",
"currency-display-name-snt": "Status Network Token",
"currency-display-name-thb": "Thailand Baht",
"currency-display-name-try": "Turkish Lira",
"currency-display-name-ttd": "Trinidad and Tobago Dollar",
"currency-display-name-twd": "Taiwan New Dollar",
"currency-display-name-tzs": "Tanzanian Shilling",
"currency-display-name-uah": "Ukraine Hryvnia",
"currency-display-name-ugx": "Ugandan Shilling",
"currency-display-name-usd": "United States Dollar",
"currency-display-name-uyu": "Uruguay Peso",
"currency-display-name-vef": "Venezuela Bolívar",
"currency-display-name-vnd": "Vietnam Dong",
"currency-display-name-zar": "South Africa Rand",
"current": "Current",
"current-average": "Current average",
"current-average-tip": "Current average tip",
"current-base": "Current base",
"current-base-fee": "Current base fee",
"current-minimum-tip": "Current minimum tip",
"current-network": "Current network",
"current-password": "Current password",
"current-pin": "Enter 6-digit passcode",
"current-pin-description": "Enter your 6-digit passcode to proceed",
"current-units": "Current: {{current}} UNITS",
"custom": "Custom",
"custom-node": "You are using custom RPC endpoint. Your local transfers history might be incomplete.",
"custom-seed-phrase": "Invalid seed phrase",
"custom-seed-phrase-text-1": "This seed phrase doesn't match our supported dictionary. Check for misspelled words.",
"cut": "Cut",
"dapp": "ÐApp",
"dapp-starter-pack-accept": "Accept and Open",
"dapp-starter-pack-description": "Here’s some crypto to get you started! Use it to get stickers, an ENS name and try dapps",
"dapp-starter-pack-title": "Starter Pack",
"dapp-will-be-able-to": "{{dapp-name}} will be able to:",
"dapp-would-like-to-connect-wallet": "would like to connect to",
"dapps": "dApps",
"dapps-permissions": "DApp permissions",
"dark": "Dark",
"data": "Data",
"data-collected": "Data collected",
"data-collected-subtitle": "The table below shows the exact data that is stored and will be sent. Data is validated against public rules to ensure no sensitive data is sent. Don’t trust, verify.",
"data-syncing": "Data syncing",
"data-usage": "Data usage",
"database-reset-content": "Chats, contacts and settings have been deleted. You can use your account with your Keycard",
"database-reset-title": "Database reset",
"database-reset-warning": "Database will be reset. Chats, contacts and settings will be deleted",
"datetime-ago": "ago",
"datetime-ago-format": "{{number}} {{time-intervals}} {{ago}}",
"datetime-ago-format-short": "{{number}}{{time-intervals}}",
"datetime-day": {
"one": "day",
"other": "days"
},
"datetime-day-short": {
"one": "D",
"other": "D"
},
"datetime-hour": {
"one": "hour",
"other": "hours"
},
"datetime-hour-short": {
"one": "H",
"other": "H"
},
"datetime-hour-short-lowercase": {
"one": "h",
"other": "h"
},
"datetime-minute": {
"one": "minute",
"other": "minutes"
},
"datetime-minute-mid": {
"one": "min",
"other": "min"
},
"datetime-minute-short": {
"one": "M",
"other": "M"
},
"datetime-second": {
"one": "second",
"other": "seconds"
},
"datetime-second-short": {
"one": "S",
"other": "S"
},
"datetime-today": "today",
"datetime-yesterday": "Yesterday",
"days": "Days",
"dec": "Dec",
"decimals": "Decimals",
"decline": "Decline",
"declined": "Declined",
"decryption-failed-content": "An error occured decrypting your data. You might need to erase your old data and generate a new account. Tap “Apply” to erase or “Cancel” to try again",
"default": "Default",
"default-account-placeholder": "Account Name",
"default-assets": "Default ERC20 and ERC721",
"default-ethereum-format": "Default Ethereum format",
"default-format": "Default format",
"default-sync-period": "Sync history for",
"default-watched-address-placeholder": "Watched address",
"define-amount-sent-from-network": "Define amount sent from {{network}} network",
"delete": "Delete",
"delete-account": "Delete account",
"delete-and-leave-group": "Delete and leave group",
"delete-bootnode": "Delete bootnode",
"delete-bootnode-are-you-sure": "Are you sure you want to delete this bootnode?",
"delete-bootnode-title": "Delete bootnode",
"delete-category-confirmation": "Are you sure you want to delete this category?",
"delete-confirmation": "Delete?",
"delete-for-everyone": "Delete for everyone",
"delete-for-me": "Delete for me",
"delete-keys-keycard": "Delete keys from Keycard",
"delete-mailserver": "Delete Status node",
"delete-mailserver-are-you-sure": "Are you sure you want to delete this Status node?",
"delete-mailserver-title": "Delete Status node",
"delete-message": "Delete message",
"delete-my-account": "Delete my account",
"delete-my-profile": "Delete my profile",
"delete-network-confirmation": "Are you sure you want to delete this network?",
"delete-network-error": "Please connect to a different network before deleting this one",
"delete-network-title": "Delete network?",
"delete-node": "Delete node",
"delete-node-are-you-sure": "Are you sure you want to delete this node?",
"delete-node-title": "Delete node",
"delete-profile": "Delete profile",
"delete-profile-warning": "Warning: If you don’t have your seed phrase written down, you will lose access to your funds after you delete your profile",
"deleted-this-message": "deleted this message",
"delivered": "Delivered",
"deny": "Deny",
"deposit-to-your-wallet": "Deposit to your wallet",
"derivation-path": "Derivation path",
"derivation-path-copied": "Derivation path copied",
"derivation-path-desc": "Derivation paths are the routes your Status Wallet uses to generate addresses from your private key.",
"derivation-path-header": "Derivation path",
"derive-addresses": "Derive addresses",
"describe-channel": "Describe the channel",
"description": "Description",
"desktop": "Desktop",
"destroy": "Destroy",
"details": "Details",
"dev-mode": "Development mode",
"dev-mode-settings": "Development mode settings",
"device-syncing": "Device syncing",
"devices": "Devices",
"devices-count": "{{number}} devices",
"different-keycard": "It’s a different Keycard",
"disable": "disable",
"disable-all": "Disable all",
"disable-later-in-settings": "You can disable this later in Settings",
"disabled": "Disabled",
"discard": "Discard",
"discard-changes?": "Discard changes?",
"disconnect": "Disconnect",
"disconnect-dapp": "Disconnect dApp",
"disconnect-dapp-confirmation": "Are you sure you want to disconnect {{dapp}}?",
"disconnect-dapp-fail": "Failed to disconnect {{dapp}} from {{account}}",
"disconnect-dapp-success": "{{dapp}} disconnected from {{account}}",
"disconnected": "Chat offline",
"discover": "Discover",
"discover-communities": "Discover communities",
"discover-web3": "Discover web3",
"dismiss": "Dismiss",
"display": "Display",
"display-collectibles": "Display collectibles",
"do-not-cheat": "Don't try to cheat",
"do-not-cheat-description": "These 12 words give access to all of your funds so it is important that you write them in the correct order, take it seriously.",
"do-not-quit": "Do not quit the application or turn off your device. Doing so will lead to data corruption, loss of your Status profile and the inability to use Status.",
"do-not-quit-the-application": "Do not quit the application",
"do-not-share": "Do not share",
"documents": "Documents",
"done": "Done",
"dont-ask": "Don't ask me again",
"dont-auto-recalculate-network": "Don't auto recalculate {{network}}",
"dont-have-statatus-on-another-device": "Don't have Status on another device?",
"dont-yell-at-me": "Don’t yell at me",
"duration-estimate": "Duration estimate",
"edit": "Edit",
"edit-account": "Edit account",
"edit-categories": "Edit Categories",
"edit-channel-title": "Edit channel",
"edit-chats": "Edit chats",
"edit-community": "Edit community",
"edit-derivation-path": "Edit derivation path",
"edit-details": "Edit details",
"edit-favourite": "Edit favourite",
"edit-group": "Edit group",
"edit-message": "Edit message",
"edit-name-and-image": "Edit name and image",
"edit-name-image": "Edit name and image",
"edit-nickname": "Edit nickname",
"edit-profile": "Edit Profile",
"edit-receiver-networks": "Edit receiver networks",
"edit-shared-addresses": "Edit shared addresses",
"edit-wallet-account-colour-updated-message": "Account colour has been updated",
"edit-wallet-account-emoji-updated-message": "Account emoji has been updated",
"edit-wallet-account-name-updated-message": "Account name has been updated",
"edit-wallet-network-preferences-updated-message": "Account network preferences has been updated",
"edited": "Edited",
"editing-message": "Editing message",
"eligible-to-join-as": "Eligible to join as",
"emoji-activity": "Activity",
"emoji-and-colors-unique-error": "Emoji and colour combination must be unique",
"emoji-flags": "Flags",
"emoji-food": "Food",
"emoji-hash": "Emoji Hash",
"emoji-hash-copied": "Emojihash copied to clipboard",
"emoji-nature": "Nature",
"emoji-no-results-description": "Try something like “rainbow”",
"emoji-no-results-title": "No emojis match your search",
"emoji-objects": "Objects",
"emoji-people": "People",
"emoji-recent": "Recent",
"emoji-search-placeholder": "Search emojis",
"emoji-symbols": "Symbols",
"emoji-travel": "Travel",
"emojihash": "Emojihash",
"emojihash-description": "A visual representation of your chat key. It will help other users recognize your profile.",
"emojis": "Emojis",
"empty-activity-center": "Your chat notifications\nwill appear here",
"empty-card-info": "To generate new key pair, or import existent non-profile keys to the Keycard, please use the Status desktop app. If you'd like these features on mobile, feel free to upvote them and discuss them in Status community.",
"empty-chat-description": "There are no messages \nin this chat yet",
"empty-chat-description-community": "It's been quiet here for the last {{quiet-hours}}.",
"empty-chat-description-one-to-one": "Any messages you send here are encrypted and can only be read by you and ",
"empty-chat-description-public": "It's been quiet here for the last {{quiet-hours}}. Start the conversation or ",
"empty-chat-description-public-share-this": "share this chat.",
"empty-keycard": "Empty Keycard",
"empty-keycard-required": "Requires an empty Keycard",
"empty-notifications-admin-tab": "No unread admin notifications",
"empty-notifications-all-tab": "No unread notifications",
"empty-notifications-contact-requests-tab": "No contact requests notifications",
"empty-notifications-identity-verification-tab": "No identity verification requests",
"empty-notifications-membership-tab": "No membership notifications",
"empty-notifications-mentions-tab": "No unread mention notifications",
"empty-notifications-replies-tab": "No unread reply notifications to your messages",
"empty-notifications-subtitle-read": "Your notifications will be here",
"empty-notifications-subtitle-unread": "Unread notifications will be here",
"empty-notifications-system-tab": "No system notifications",
"empty-notifications-title-read": "No notifications",
"empty-notifications-title-unread": "You're up to date",
"empty-notifications-transactions-tab": "No transaction notifications",
"empty-pending-invitations-descr": "People who wish to join the group\nvia an invite link will appear here",
"empty-tab": "Empty tab",
"empty-tab-description": "C'mon do something...",
"enable": "Enable",
"enable-access-to-camera": "Enable access to camera",
"enable-access-to-local-network": "Enable access to local network",
"enable-all": "Enable all",
"enable-biometrics": "Enable biometrics",
"enable-camera": "Enable camera",
"enable-link-previews": "Enable link previews in chat?",
"enable-network-access": "Enable network access",
"enable-notifications-sub-title": "Receive notifications about your new messages or wallet transactions",
"encrypt-with-password": "Encrypt with password",
"encrypted-key-pairs": "Encrypted key pairs",
"encrypted-key-pairs-code": "Encrypted key pairs code",
"ending-not-allowed": "{{ending}} ending is not allowed",
"ends-with-space": "Cannot end with space",
"ens-10-SNT": "10 SNT",
"ens-add-username": "Add username",
"ens-agree-to": "Agree to ",
"ens-chat-settings": "Chat settings",
"ens-custom-domain": "Custom domain",
"ens-custom-username-hints": "Type the entire username including the custom domain like username.domain.eth",
"ens-custom-username-taken": "Username doesn’t belong to you :(",
"ens-deposit": "Deposit",
"ens-dismiss-message": "Click here to dismiss",
"ens-displayed-with": "Your messages are displayed to others with",
"ens-get-name": "Get a universal username",
"ens-got-it": "Ok, got it",
"ens-locked": "Username locked. You won’t be able to release it until {{date}}",
"ens-name-content": "Custom alias for your chat key that you can register using the Ethereum Name Service. ENS names are decentralized usernames.",
"ens-name-not-found": "Cannot resolve ENS name",
"ens-name-title": "ENS Name",
"ens-network-restriction": "Only available on Mainnet",
"ens-no-usernames": "You don't have any username connected",
"ens-or-chat-key": "ENS or Chatkey",
"ens-powered-by": "Powered by Ethereum Name Services",
"ens-primary-username": "Primary username",
"ens-register": "Register",
"ens-registration-failed": "To register the username, please try again.",
"ens-registration-failed-title": "Transaction failed",
"ens-registration-failure": "Registration failed",
"ens-registration-in-progress": "Registration in progress...",
"ens-release-username": "Release username",
"ens-remove-hints": "Removing will detach the username from your key.",
"ens-remove-username": "Remove username",
"ens-saved": " is now connected with your chat key and can be used in Status.",
"ens-saved-title": "Username added",
"ens-show-username": "Show my ENS username in chats",
"ens-terms-header": "Terms of name registration",
"ens-terms-point-1": "Funds are deposited for 1 year. Your SNT will be locked, but not spent.",
"ens-terms-point-10": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e (ENS Registry).",
"ens-terms-point-2": "After 1 year, you can release the name and get your deposit back, or take no action to keep the name.",
"ens-terms-point-3": "If terms of the contract change — e.g. Status makes contract upgrades — user has the right to release the username regardless of time held.",
"ens-terms-point-4": "The contract controller cannot access your deposited funds. They can only be moved back to the address that sent them.",
"ens-terms-point-5": "Your address(es) will be publicly associated with your ENS name.",
"ens-terms-point-6": "Usernames are created as subdomain nodes of stateofus.eth and are subject to the ENS smart contract terms.",
"ens-terms-point-7": "You authorize the contract to transfer SNT on your behalf. This can only occur when you approve a transaction to authorize the transfer.",
"ens-terms-point-8": "These terms are guaranteed by the smart contract logic at addresses:",
"ens-terms-point-9": "{{address}} (Status UsernameRegistrar) ",
"ens-terms-registration": "Terms of name registration.",
"ens-test-message": "Hey",
"ens-transaction-pending": "Transaction pending...",
"ens-understand": "I understand that my wallet address will be publicly connected to my username.",
"ens-username": "ENS username",
"ens-username-already-added": "Username is already connected with your chat key and can be used inside Status.",
"ens-username-available": "✓ Username available!",
"ens-username-connected": "This user name is owned by you and connected with your chat key.",
"ens-username-connected-continue": "Continue to set `Show my ENS username in chats`.",
"ens-username-connected-with-different-key": "Continuing will require a transaction to connect the username with your current chat key.",
"ens-username-connection-confirmation": "{{username}} will be connected once the transaction is complete.",
"ens-username-hints": "At least 4 characters. Latin letters, numbers, and lowercase only.",
"ens-username-invalid": "Letters and numbers only.",
"ens-username-invalid-name-warning": "Registration process of one of your ens names has finished in invalid state. DO NOT USE the name for wallet transactions and reach out to our support at [email protected]",
"ens-username-owned": "✓ Username is owned by you. ",
"ens-username-owned-continue": "Continuing will connect this username with your chat key.",
"ens-username-registration-confirmation": "Nice! You own {{username}} once the transaction is complete.",
"ens-username-registration-invalid": "Warning! Registration process has finished in invalid state. DO NOT USE the name for wallet transactions and reach out to our support at [email protected]",
"ens-username-taken": "Username already taken :(",
"ens-username-you-can-follow-progress": "You can follow the progress in the Transaction History section of your wallet.",
"ens-usernames": "ENS usernames",
"ens-usernames-details": "Register a universal username to be easily recognized by other users",
"ens-want-custom-domain": "I own a name on another domain",
"ens-want-domain": "I want a stateofus.eth domain",
"ens-welcome-hints": "ENS names transform those crazy-long addresses into unique usernames.",
"ens-welcome-point-customize": "An ENS name can replace your random 3-word name in chat. Be @yourname instead of {{name}}.",
"ens-welcome-point-customize-title": "Customize your chat name",
"ens-welcome-point-receive": "Others can send you funds via chat in one simple step.",
"ens-welcome-point-receive-title": "Receive transactions in chat",
"ens-welcome-point-register": "Register once to keep the name forever. After 1 year you can release the name and get your SNT back.",
"ens-welcome-point-register-title": "10 SNT to register",
"ens-welcome-point-simplify": "You can receive funds to your easy-to-share ENS name rather than your hexadecimal hash (0x...).",
"ens-welcome-point-simplify-title": "Simplify your ETH address",
"ens-welcome-point-verify": "You can verify and add any usernames you own in the next steps.",
"ens-welcome-point-verify-title": "Already own a username?",
"ens-your-username": "Your username",
"ens-your-usernames": "Your usernames",
"ens-your-your-name": "Your ENS name",
"ensure-both-devices-are-on-the-same-network": "Ensure both devices are on the same network",
"ensure-qr-code-is-in-focus-to-scan": "Ensure that the QR code is in focus to scan",
"ensure-written-recovery": "Ensure you have written down your recovery phrase and have a safe place to keep it. Remember, anyone who has your recovery phrase has access to your funds.",
"enter-12-words": "Enter the 12 words of your seed phrase, separated by single spaces",
"enter-a-private-key": "Enter a private key",
"enter-a-seed-phrase": "Enter a seed phrase",
"enter-address": "Enter address",
"enter-channel": "Enter channel",
"enter-chat-key": "Enter chat key or scan a QR",