This repository has been archived by the owner on Aug 26, 2022. It is now read-only.
forked from staltz/manyverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
1154 lines (1154 loc) · 34.6 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
{
"call_to_action": {
"ok": "OK",
"add": "Add",
"done": "Done",
"cancel": "Cancel",
"continue": "Continue",
"delete": "Delete",
"remove": "Remove",
"save": "Save",
"yes": "Yes",
"no": "No",
"open_menu": {
"accessibility_label": "Menu Button"
},
"go_back": {
"accessibility_label": "Back Button"
},
"close": {
"accessibility_label": "Close Button"
},
"close_dialog": {
"accessibility_label": "Close Dialog Button"
}
},
"date": {
"relative": {
"past": {
"years": {
"one": "1 year ago",
"other": "{{count}} years ago"
},
"months": {
"one": "1 month ago",
"other": "{{count}} months ago"
},
"weeks": {
"one": "1 week ago",
"other": "{{count}} weeks ago"
},
"days": {
"one": "1 day ago",
"other": "{{count}} days ago"
},
"hours": {
"one": "1 hour ago",
"other": "{{count}} hours ago"
},
"minutes": {
"one": "1 minute ago",
"other": "{{count}} minutes ago"
},
"now": "Just now"
},
"future": {
"years": {
"one": "1 year from now",
"other": "{{count}} years from now"
},
"months": {
"one": "1 month from now",
"other": "{{count}} months from now"
},
"weeks": {
"one": "1 week from now",
"other": "{{count}} weeks from now"
},
"days": {
"one": "1 day from now",
"other": "{{count}} days from now"
},
"hours": {
"one": "1 hour from now",
"other": "{{count}} hours from now"
},
"minutes": {
"one": "1 minute from now",
"other": "{{count}} minutes from now"
},
"now": "Very soon"
}
}
},
"welcome": {
"learn_more": "Learn more",
"overview": {
"title": "Welcome to Manyverse!",
"description": "Social networking can be simple, neutral, non-commercial, and built on trust between friends. This is what Manyverse stands for, and we hope you too can make it your digital home. All this is made possible by the novel SSB protocol."
},
"off_the_grid": {
"title": "Off the grid",
"description": {
"1_normal": "Manyverse can use internet connectivity, but it's not ",
"2_bold": "on",
"3_normal": " the internet. Everything happens right here on your device. This means you can use it normally even when offline! Your ",
"4_bold": "content is stored first on your device",
"5_normal": ", and you can synchronize it with friends once you connect with them."
}
},
"connections": {
"title": "Many ways to connect",
"description": {
"ios": {
"1_normal": "To connect with friends nearby and synchronize content, you can connect to the same ",
"2_bold": "Wi-Fi",
"3_normal": ". To find new people on the internet, look for an invite code to a ",
"4_bold": "pub server",
"5_normal": " or a ",
"6_bold": "room server",
"7_normal": ", or start your own server!"
},
"default": {
"1_normal": "To connect with friends nearby and synchronize content, you can either: join the same ",
"2_bold": "Wi-Fi",
"3_normal": ", or use ",
"4_bold": "Bluetooth sync",
"5_normal": ". To find new people on the internet, look for an invite code to a ",
"6_bold": "pub server",
"7_normal": " or a ",
"8_bold": "room server",
"9_normal": ", or start your own server!"
}
}
},
"moderation": {
"title": "Shared moderation",
"description": {
"1_normal": "Because your device holds your social network, no one else can ban or remove accounts on your behalf. Only you can moderate your space, by ",
"2_bold": "blocking accounts",
"3_normal": " you don't wish to have on your device. Then, your friends can choose to block those same accounts. This is how moderation can spread naturally!"
}
},
"permanence": {
"title": "Permanence",
"description": {
"1_normal": "Once your content is synchronized with friends, they now hold a copy of it on their devices. Because they could go offline after that, it is ",
"2_bold": "not possible to delete",
"3_normal": " your content globally from all devices! This is why we have chosen to make content permanent. It also makes communities more respectful and considerate of what is being posted."
}
},
"in_construction": {
"title": "In construction!",
"description": {
"1_normal": "Manyverse is ",
"2_bold": "beta-quality software",
"3_normal": ". We haven't figured everything out yet and some parts need fixing. While syncing, the app can appear frozen for several minutes. Have patience! Inform us of any other bugs you stumbled upon, and with enough time and donations, we can make this a great app."
}
},
"setup_account": {
"title": "Is this your first time?",
"description": "Do you want to create a new account, or would you like to restore your old account from a 24-word recovery phrase?",
"call_to_action": {
"create": {
"label": "Create account",
"accessibility_label": "Create Account Button"
},
"restore": {
"label": "Restore account",
"accessibility_label": "Restore Account Button"
}
}
}
},
"central": {
"app_name": "Manyverse",
"tab_headers": {
"public": "Public posts",
"private": "Private chats",
"activity": "Activity",
"connections": "Connections"
},
"tab_footers": {
"public": "Public",
"private": "Private",
"activity": "Activity",
"connections": "Connections"
},
"loading": "Loading...",
"building_indexes": "Building database indexes...\nThis may take up to several minutes",
"tabs": {
"public": {
"accessibility_label": "Public Tab Button"
},
"private": {
"accessibility_label": "Private Tab Button"
},
"activity": {
"accessibility_label": "Activity Tab Button"
},
"connections": {
"accessibility_label": "Connections Tab Button"
}
}
},
"public": {
"floating_action_button": {
"compose": "Write a public message"
},
"empty": {
"title": "No messages",
"description": "Write a diary to be\nshared with friends later"
},
"search": {
"accessibility_label": "Search Button"
}
},
"private": {
"floating_action_button": {
"compose": "Start a private conversation"
},
"empty": {
"title": "No conversations",
"description": "Start a private conversation\nwith any of your friends"
},
"conversation": {
"accessibility_label": "Go To Conversation"
}
},
"accounts": {
"reactions": {
"title": "Reactions"
},
"recipients": {
"title": "Recipients"
},
"call_to_action": {
"open_account": {
"accessibility_label": "Go To Account"
}
}
},
"activity": {
"mention": {
"label": {
"1_normal": "",
"2_bold": "{{author}}",
"3_normal": " mentioned you"
}
},
"follow": {
"label": {
"1_normal": "",
"2_bold": "{{author}}",
"3_normal": " followed you"
}
},
"connection_attempt": {
"label": {
"1_normal": "",
"2_bold": "{{author}}",
"3_normal": " wants to connect"
}
},
"empty": {
"title": "No activity",
"description": "When people mention or follow you,\nthey show up here"
}
},
"connections": {
"floating_action_button": {
"create_invite": "Create invite",
"paste_invite": "Paste invite",
"bluetooth_seek": "Bluetooth seek"
},
"empty": {
"offline": {
"title": "Offline",
"description": "Turn on some connection mode\nor enjoy reading some existing content"
},
"connecting": {
"title": "Connecting",
"description": "Wait while the app is\nattempting to connect to your peers"
},
"no_peers": {
"title": "No connections",
"description": "Try syncing with people nearby\nor use a server invite code"
}
},
"toasts": {
"invite_accepted": "Invite accepted",
"invite_rejected": "Invite rejected. Are you sure it was correct?",
"connecting_to_alias": "Connecting to {{alias}}",
"connected_to_alias": "Connected to {{alias}}",
"not_connected_to_alias": "{{alias}} is offline right now"
},
"dialogs": {
"sign_in_with_ssb": {
"client_initiated": {
"title": "Allow sign-in?",
"description": "Open {{room}}'s website to create invite links and manage members. Do you want to use Manyverse to sign in?\n\nThe room's ID is {{roomid}}"
},
"server_initiated": {
"title": "Allow sign-in?",
"description": "A web browser is requesting permission to identify you. Do you want to sign in to the server {{room}}?\n\nIts ID is {{roomid}}"
}
}
},
"peers": {
"types": {
"bluetooth": "Bluetooth",
"lan": "Wi-Fi",
"dht": {
"connected": "Internet P2P"
},
"room": {
"server": "Room server",
"endpoint": "Room peer",
"alone_online": "(only you online)",
"others_online": {
"one": "({{count}} online)",
"other": "({{count}} online)"
}
},
"pub": "Pub server",
"server": "Server",
"unknown": "Unknown"
}
},
"modes": {
"generic": {
"enabled": "(ENABLED)"
},
"bluetooth": {
"title": "Bluetooth",
"accessibility_label": "Bluetooth Mode",
"disabled": "(Turn on Bluetooth to use this)",
"description": "Discover users nearby and connect with them using Bluetooth.",
"permission_request": {
"title": "Allow locating via Bluetooth?",
"message": "Manyverse needs to use Bluetooth to discover where you are (\"coarse location\") and what peers are around you."
}
},
"wifi": {
"title": "Wi-Fi",
"accessibility_label": "Wi-Fi Mode",
"disabled": "(Turn on Wi-Fi to use this)",
"description": "Connect with friends in the same Local Area Network, in other words, friends using the same Wi-Fi."
},
"servers": {
"title": "Internet servers",
"accessibility_label": "Internet Servers Mode",
"disabled": "(Go online to use this)",
"description": "Connect to a so-called 'Pub server' owned by some friend, containing the latest data from multiple accounts."
}
},
"menu": {
"dialog_title": "Connection",
"open_profile": {
"label": "Open profile",
"accessibility_label": {
"connected": "Open profile screen for this connected peer",
"staged": "Open profile screen for this suggested connection"
}
},
"connect": {
"label": "Connect",
"accessibility_label": {
"staged_peer": "Connect to this suggested peer",
"staged_room": "Connect to this suggested room"
}
},
"follow_connect": {
"label": "Connect and follow",
"accessibility_label": "Connect to this suggested peer then follow them"
},
"disconnect": {
"label": "Disconnect",
"accessibility_label": {
"peer": "Disconnect from this peer",
"room": "Disconnect from this room"
}
},
"disconnect_forget": {
"label": "Disconnect and forget",
"accessibility_label": {
"peer": "Disconnect from this peer and remove it from our database",
"room": "Disconnect from this room and remove it from our database"
}
},
"forget": {
"label": "Forget",
"accessibility_label": {
"room": "Remove this room from our database"
}
},
"manage_aliases": {
"label": "Manage my aliases",
"accessibility_label": "Manage my aliases in Room servers"
},
"room_sign_in": {
"label": "Sign into website",
"accessibility_label": "Open this room's website and sign into its dashboard, Button"
},
"room_share_invite": {
"label": "Share invite code",
"accessibility_label": "Share the invite code for this room"
},
"invite_info": {
"label": "About",
"accessibility_label": "About this Invite Code"
},
"invite_note": {
"label": "Add note",
"accessibility_label": "Add Reminder Note To Self"
},
"invite_share": {
"label": "Share",
"accessibility_label": "Share Invite Code"
},
"invite_delete": {
"label": "Delete",
"accessibility_label": "Delete Invite Code"
}
},
"notes": {
"add": {
"title": "Add note",
"description": "Write a private (just for yourself) note about this invite code. For example: \"This is for Alice\""
}
},
"share_code": {
"room": {
"title": "Invite code to an SSB Room",
"message": "Join me in the SSB Room {{name}} by pasting this invite code in Manyverse:",
"dialog_note": "Give this invite code to a friend"
}
}
},
"compose": {
"call_to_action": {
"publish_new_thread": {
"label": "Publish",
"accessibility_label": "Publish Message Button"
},
"reply_to_thread": {
"label": "Reply",
"accessibility_label": "Publish Reply Button"
},
"preview": {
"label": "Preview",
"accessibility_label": "Preview Button"
},
"close": {
"accessibility_label": "Close Button"
},
"record_audio": {
"accessibility_label": "Record Audio Button",
"permission_request": {
"title": "Allow Manyverse to record audio?",
"message": "Manyverse needs access to your microphone so you can compose audio messages",
"neutral": "Ask me later",
"positive": "OK",
"negative": "Cancel"
}
},
"open_camera": {
"accessibility_label": "Open Camera Button"
},
"add_picture": {
"accessibility_label": "Add Picture Button"
}
},
"dialogs": {
"content_warning": {
"title": "Content warning",
"description": "If your post contains sensitive topics, please add a short note to alert people of them."
},
"image_caption": {
"title": "Caption",
"description": "Add some description of this picture, particularly for the visually impaired."
}
},
"content_warning_initials": {
"label": "CW",
"accessibility_label": "Content Warning Button"
},
"mention_field": {
"accessibility_label": "Mention Account Text Input"
},
"text_field": {
"placeholder": "Write a public message",
"accessibility_label": "Compose Text Input"
}
},
"compose_audio": {
"title": "Audio message",
"call_to_action": {
"start_recording": {
"accessibility_label": "Start recording"
},
"stop_recording": {
"accessibility_label": "Stop recording"
},
"discard_recording": {
"label": "Discard",
"accessibility_label": "Discard Recording Button"
},
"submit_recording": {
"label": "Done",
"accessibility_label": "Submit Recording Button"
}
},
"dialogs": {
"discard": {
"title": "Audio message",
"question": "Discard draft?"
}
}
},
"backup": {
"title": "Backup",
"introduction": {
"title": "Your account has\ntwo parts to keep safe"
},
"data": {
"title": "Data",
"description": {
"1_normal": "This is your account's posts, messages, pictures, likes and similar activity. To keep it safe against sudden loss, we use ",
"2_bold": "crowd backup",
"3_normal": ". You only need to ",
"4_bold": "synchronize with reliable friends",
"5_normal": " or other devices you own. There is ",
"6_bold": "nothing else to do",
"7_normal": ", just use Manyverse often and your friends are backing you up!"
},
"call_to_action": {
"acknowledge": {
"label": "I understand",
"accessibility_label": "Acknowledge"
}
}
},
"identity": {
"title": "Identity",
"description": {
"1_normal": "Your account's \"fingerprint\" is made up of a highly unique ",
"2_bold": "recovery phrase",
"3_normal": ". This is a sequence of 24 words that unlocks your account. ",
"4_bold": "Keep it confidential",
"5_normal": ", because if anyone else has access to it, they can take control of your account. ",
"6_bold": "Take responsibility",
"7_normal": " over it, since you and only you can recover your account!"
},
"call_to_action": {
"show_recovery_phrase": "Show Recovery Phrase"
}
}
},
"biography": {
"picture": {
"accessibility_label": "Biographic Picture"
},
"description": {
"accessibility_label": "Biographic Description"
}
},
"conversation": {
"title": "Conversation",
"placeholder": "Type a message...",
"call_to_action": {
"show_recipients": {
"accessibility_label": "Show Recipients"
}
},
"notifications": {
"new_conversation": "This is a new private conversation"
}
},
"dialog_about": {
"title": "About Manyverse",
"version": "Version {{version}}",
"copyright": "Copyright (C)",
"authors": "The Manyverse Authors",
"repository": "Open source repository",
"licensed": "Licensed {{license}}"
},
"dialog_thanks": {
"title": "Thank you!",
"description": "Development of this app was supported by grants from {{sponsor1}} and {{sponsor2}}, and donations from:\n\n**{{topBackers}}**, and [a hundred more backers]({{donateLink}}). Thanks!"
},
"drawer": {
"menu": {
"my_profile": {
"label": "My profile",
"accessibility_label": "My Profile Menu Item"
},
"raw_database": {
"label": "Raw database",
"accessibility_label": "Show Raw Database"
},
"email_bug_report": {
"label": "Email bug report",
"accessibility_label": "Send Bug Report as Email"
},
"translate": {
"label": "Help us translate",
"accessibility_label": "Open translation website"
},
"more": {
"label": "More",
"accessibility_label": "Show more Menu items"
},
"settings": {
"label": "Settings",
"accessibility_label": "Go To Settings"
},
"preparing_database": {
"label": "Preparing database..."
},
"ready_estimate": {
"label": "Ready:"
}
}
},
"invite_paste": {
"placeholder": "Paste an invite code",
"call_to_action": {
"accept": {
"accessibility_label": "Accept Invite Code"
}
},
"alert_unsupported_dht": {
"title": "Unsupported type",
"description": "P2P Invites are no longer supported in Manyverse."
},
"text_field": {
"accessibility_label": "Invite Code Text Input"
}
},
"libraries": {
"title": "Third party libraries",
"description": "Manyverse makes use of the following open source libraries and components. We want to thank the authors of these libraries and link to their websites for proper attribution.",
"image": {
"name": "Image {{name}}",
"attribution": " is created by {{author}}, licensed {{license}}"
}
},
"profile": {
"call_to_action": {
"copy_cypherlink": "Copy cypherlink",
"private_chat": "Open private conversation",
"block": "Block",
"block_secretly": "Block secretly",
"unblock": "Unblock",
"unblock_secretly": "Unblock secretly",
"follow": "Follow",
"edit_profile": {
"label": "Edit profile",
"accessibility_label": "Edit Profile Button"
},
"manage": {
"accessibility_label": "Manage Contact"
}
},
"dialog_ssb_id": {
"title": "SSB ID"
},
"dialog_manage_contact": {
"title": "Contact"
},
"dialog_friend_request": {
"title": "Friend request",
"description": "This account is trying to connect with you, but Manyverse prevented it because they are outside your community.\n\nIf you recognize this ID, you can press \"Follow\" to allow them to connect with you."
},
"toast": {
"copied_to_clipboard": "Copied to clipboard"
},
"details": {
"id": {
"accessibility_label": "SSB Identifier"
},
"biography": {
"accessibility_label": "Read Biography"
},
"counters": {
"following": "Following",
"followers": "Followers"
}
},
"info": {
"follows_you": "Follows you",
"blocks_you": "Blocks you",
"following": "Following"
},
"picture": {
"accessibility_label": "Profile Picture"
},
"name": {
"accessibility_label": "Profile Name"
},
"empty": {
"blocked": {
"title": "Blocked",
"description": "You have chosen to stop\ninteracting with this account"
},
"no_self_messages": {
"title": "No messages",
"description": "Write a diary which you can\nshare with friends later"
},
"no_messages": {
"title": "No messages",
"description": "You don't yet have any data\nfrom this account"
}
},
"floating_action_button": {
"compose": "Write a public message"
}
},
"profile_edit": {
"title": "Edit profile",
"call_to_action": {
"discard": "Discard",
"save": {
"label": "Save",
"accessibility_label": "Save Profile"
},
"edit_picture": {
"accessibility_label": "Edit Profile Picture"
},
"register_new_alias": {
"label": "Register new alias",
"accessibility_label": "Register New Room Server Alias"
}
},
"dialogs": {
"discard": {
"title": "Edit profile",
"question": "Discard changes?"
},
"remove_alias": {
"description": "This action will remove the alias \"{{alias}}\" from the room server.\n\nPeople won't be able to reach you any more using this alias."
}
},
"toasts": {
"alias_removed_success": "Alias removed",
"alias_removed_failure": "Failed to remove alias"
},
"fields": {
"name": {
"label": "Name",
"accessibility_label": "Name Text Input"
},
"description": {
"label": "Bio",
"accessibility_label": "Biography Text Input"
},
"aliases": {
"label": "Aliases"
}
}
},
"manage_aliases": {
"title": "Manage aliases"
},
"register_alias": {
"title": "Register alias",
"empty": {
"no_servers": {
"title": "No servers",
"description": "To register an alias, you need to be a member of some SSB room server. Find one on the internet with the hashtag #ssbroom and make sure it supports aliases."
}
},
"header": {
"description": "Choose a room server where you would like to register a new alias link for yourself.\n\nAliases are web addresses that people can use to connect with you."
},
"dialogs": {
"input_alias": {
"description": "Submit your desired new alias to {{host}} as a single word in lowercase.\n\nFor example, if you want the alias \"myname.{{host}}\", write \"myname\" below."
}
},
"submitting": {
"title": "Submitting..."
},
"failure": {
"title": "It didn't work",
"alias_taken": "The alias you submitted is already taken by some user.",
"call_to_action": {
"try_again": {
"label": "Try again",
"accessibility_label": "Try Again Button"
}
}
},
"success": {
"title": "Great!",
"description": "The alias {{alias}} is now yours.",
"call_to_action": {
"go_back": {
"label": "Go back",
"accessibility_label": "Go Back Button"
}
}
}
},
"raw_db": {
"title": "Raw database",
"item": {
"type": {
"any": "type: {{type}}",
"encrypted": "encrypted"
}
}
},
"raw_msg": {
"title": "Raw message"
},
"recipients_input": {
"title": "New message",
"call_to_action": {
"proceed": {
"label": "Next",
"accessibility_label": "Next Button"
}
},
"fields": {
"mention_input": {
"placeholder": "Search for people to add",
"accessibility_label": "Mention Account Text Input"
}
},
"empty": {
"instructions": {
"title": "Choose members",
"description": "Type in the names\nof people to join the new chat"
},
"none_to_choose": {
"title": "No one",
"description": "There is nobody in your\ncommunity with that name"
}
},
"toasts": {
"limit_reached": "Cannot choose more than {{limit}} recipients"
}
},
"search": {
"query_input": {
"placeholder": "Search public posts",
"accessibility_label": "Search Query Text Input"
},
"clear_query": {
"accessibility_label": "Reset the Search Query Text Input"
},
"empty": {
"initial": {
"title": "Search something",
"description": "Wait while the app is\nattempting to connect to your peers"
},
"zero_results": {
"title": "Zero results",
"description": "Nothing found for \"{{query}}\""
}
}
},
"secret_input": {
"practice": {
"title": "Practice",
"header": "Repeat it to confirm it is correct:"
},
"restore": {
"title": "Restore account"
},
"header": "Carefully input your recovery phrase",
"call_to_action": {
"confirm": {
"label": "Confirm",
"accessibility_label": "Confirm Recovery Phrase Button"
}
},
"fields": {
"words_input": {
"placeholder": "24-word (or 48-word) recovery phrase",
"accessibility_label": "Recovery Phrase Text Input"
}
},
"dialogs": {
"practice": {
"correct": {
"title": "Correct!",
"description": "Your account's identity is now secure because you know the recovery phrase."
},
"incorrect": {
"title": "Incorrect",
"description": "Try again: write down your recovery phrase consisting of 24 words separated by whitespace."
}
},
"restore": {
"correct": {
"title": "Welcome back!",
"description": "Your account's identity is now restored.\n\nNow, to restore your data, connect with friends that have interacted with you before, to redownload your data from them."
},
"incorrect": {
"title": "Incorrect",
"description": {
"try_again": "Try again by inserting your recovery phrase consisting of 24 words separated by whitespace.",
"overwrite_risk": "There is already an account in the app, we cannot overwrite it. If you are sure you want to override, uninstall and re-install Manyverse to recover your account from a clean state.",
"too_short": "There are some words missing. Your recovery phrase should be 24 words long.",
"too_long": "There are too many words. Your recovery phrase should be exactly 24 words long.",
"wrong_length": "Your recovery phrase should be exactly 24 words long.",
"generic": "The recovery phrase you gave does not look like a valid identity generated by Manyverse."
}
}
}
}
},
"secret_output": {
"title": "Recovery Phrase",
"header": {
"1_normal": "Carefully write down the following recovery phrase on a ",
"2_bold": "piece of paper",
"3_normal": ""
},
"footer": {
"1_normal": "Keep it ",
"2_bold": "confidential",
"3_normal": ", and\ntake sole ",
"4_bold": "responsibility",
"5_normal": " over it"
},
"words": {
"accessibility_label": "Secret Words"
},
"call_to_action": {
"confirm": {
"accessibility_label": "Confirm Recovery Phrase Button"
}
},
"loading": "Loading..."
},
"settings": {
"title": "Settings",
"preferences": {
"title": "Preferences",
"show_follows": {
"title": "Show follow events",
"subtitle": "Show follow or block or unfollow cases on the public board",
"accessibility_label": "Toggle follow events on the public board"
},
"hops": {
"title": "Replication hops",
"subtitle": "How far out in the social graph should Manyverse download data; 1 is friends-only, 2 is friends-of-friends, etc. Caution: the higher this is, the more data is downloaded!",
"unlimited": "Unlimited",
"accessibility_label": "Replication hops slider"
}
},
"data_and_storage": {
"title": "Data & Storage",
"backup": {
"title": "Backup",
"subtitle": "View your 24-word recovery phrase",
"accessibility_label": "Back Up My Account"
},
"blobs_storage": {
"title": "Blobs storage limit",
"subtitle": "Automatically delete old images and blobs until they occupy at most this amount of storage on your device",
"unlimited": "Unlimited",
"accessibility_label": "Storage limit slider"
}
},
"troubleshooting": {
"title": "Troubleshooting",
"bug_report": {
"title": "Email bug report",
"accessibility_label": "Send Bug Report as Email"
},
"detailed_logs": {
"title": "Enable detailed logs",
"accessibility_label": "Toggle detailed developer logs"
}
},
"more_information": {
"title": "More information",
"thanks": {
"title": "Thanks",
"accessibility_label": "Show Thanks"
},
"third_party_libs": {
"title": "Third party libraries",
"accessibility_label": "View third party libraries"
},
"about": {
"title": "About",
"accessibility_label": "About This App"
}
},
"dialogs": {
"restart_required": {
"title": "Restart required",
"description": "This setting will only enter into effect when you kill the app and restart Manyverse."
}
}
},
"thread": {
"title": "Thread",
"call_to_action": {
"expand_reply": {
"accessibility_label": "Expand Reply Button"
},
"publish_reply": {
"accessibility_label": "Reply Publish Button"
}