-
Notifications
You must be signed in to change notification settings - Fork 470
Expand file tree
/
Copy pathapp_en.arb
More file actions
1598 lines (1598 loc) · 73 KB
/
Copy pathapp_en.arb
File metadata and controls
1598 lines (1598 loc) · 73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"aboutPageTitle": "About Zulip",
"@aboutPageTitle": {
"description": "Title for About Zulip page."
},
"aboutPageAppVersion": "App version",
"@aboutPageAppVersion": {
"description": "Label for Zulip app version in About Zulip page"
},
"aboutPageOpenSourceLicenses": "Open-source licenses",
"@aboutPageOpenSourceLicenses": {
"description": "Item title in About Zulip page to navigate to Licenses page"
},
"aboutPageTapToView": "Tap to view",
"@aboutPageTapToView": {
"description": "Item subtitle in About Zulip page to navigate to Licenses page"
},
"upgradeWelcomeDialogTitle": "Welcome to the new Zulip app!",
"@upgradeWelcomeDialogTitle": {
"description": "Title for dialog shown on first upgrade from the legacy Zulip app."
},
"upgradeWelcomeDialogMessage": "You’ll find a familiar experience in a faster, sleeker package.",
"@upgradeWelcomeDialogMessage": {
"description": "Message text for dialog shown on first upgrade from the legacy Zulip app."
},
"upgradeWelcomeDialogLinkText": "Check out the announcement blog post!",
"@upgradeWelcomeDialogLinkText": {
"description": "Text of link in dialog shown on first upgrade from the legacy Zulip app."
},
"upgradeWelcomeDialogDismiss": "Let's go",
"@upgradeWelcomeDialogDismiss": {
"description": "Label for button dismissing dialog shown on first upgrade from the legacy Zulip app."
},
"chooseAccountPageTitle": "Choose account",
"@chooseAccountPageTitle": {
"description": "Title for the page to choose between Zulip accounts."
},
"settingsPageTitle": "Settings",
"@settingsPageTitle": {
"description": "Title for the settings page."
},
"switchAccountButtonTooltip": "Switch account",
"@switchAccountButtonTooltip": {
"description": "Tooltip message for main-menu button leading to the choose-account page."
},
"tryAnotherAccountMessage": "Your account at {url} is taking a while to load.",
"@tryAnotherAccountMessage": {
"description": "Message that appears on the loading screen after waiting for some time.",
"url": {"type": "String", "example": "http://chat.example.com/"}
},
"tryAnotherAccountButton": "Try another account",
"@tryAnotherAccountButton": {
"description": "Label for loading screen button prompting user to try another account."
},
"chooseAccountPageLogOutButton": "Log out",
"@chooseAccountPageLogOutButton": {
"description": "Label for the 'Log out' button for an account on the choose-account page"
},
"logOutConfirmationDialogTitle": "Log out?",
"@logOutConfirmationDialogTitle": {
"description": "Title for a confirmation dialog for logging out."
},
"logOutConfirmationDialogMessage": "To use this account in the future, you will have to re-enter the URL for your organization and your account information.",
"@logOutConfirmationDialogMessage": {
"description": "Message for a confirmation dialog for logging out."
},
"logOutConfirmationDialogConfirmButton": "Log out",
"@logOutConfirmationDialogConfirmButton": {
"description": "Label for the 'Log out' button on a confirmation dialog for logging out."
},
"chooseAccountButtonAddAnAccount": "Add an account",
"@chooseAccountButtonAddAnAccount": {
"description": "Label for ChooseAccountPage button to add an account"
},
"navButtonAllChannels": "All channels",
"@navButtonAllChannels": {
"description": "Title for a nav button that opens the 'All channels' page."
},
"allChannelsPageTitle": "All channels",
"@allChannelsPageTitle": {
"description": "Title for the 'All channels' page."
},
"allChannelsEmptyPlaceholderHeader": "There are no channels you can view in this organization.",
"@allChannelsEmptyPlaceholderHeader": {
"description": "Centered text on the 'All channels' page saying that there is no content to show."
},
"profileButtonSendDirectMessage": "Send direct message",
"@profileButtonSendDirectMessage": {
"description": "Label for button in profile screen to navigate to DMs with the shown user."
},
"errorCouldNotShowUserProfile": "Could not show user profile.",
"@errorCouldNotShowUserProfile": {
"description": "Message that appears on the user profile page when the profile cannot be shown."
},
"permissionsNeededTitle": "Permissions needed",
"@permissionsNeededTitle": {
"description": "Title for dialog asking the user to grant additional permissions."
},
"permissionsNeededOpenSettings": "Open settings",
"@permissionsNeededOpenSettings": {
"description": "Button label for permissions dialog button that opens the system settings screen."
},
"permissionsDeniedCameraAccess": "To upload an image, please grant Zulip additional permissions in Settings.",
"@permissionsDeniedCameraAccess": {
"description": "Message for dialog asking the user to grant permissions for camera access."
},
"permissionsDeniedReadExternalStorage": "To upload files, please grant Zulip additional permissions in Settings.",
"@permissionsDeniedReadExternalStorage": {
"description": "Message for dialog asking the user to grant permissions for external storage read access."
},
"actionSheetOptionSubscribe": "Subscribe",
"@actionSheetOptionSubscribe": {
"description": "Label in the channel action sheet for subscribing to the channel."
},
"subscribeFailedTitle": "Failed to subscribe",
"@subscribeFailedTitle": {
"description": "Error title when subscribing to a channel failed."
},
"actionSheetOptionMarkChannelAsRead": "Mark channel as read",
"@actionSheetOptionMarkChannelAsRead": {
"description": "Label for marking a channel as read."
},
"actionSheetOptionCopyChannelLink": "Copy link to channel",
"@actionSheetOptionCopyChannelLink": {
"description": "Label for copy channel link button on action sheet."
},
"actionSheetOptionListOfTopics": "List of topics",
"@actionSheetOptionListOfTopics": {
"description": "Label for navigating to a channel's topic-list page."
},
"actionSheetOptionChannelFeed": "Channel feed",
"@actionSheetOptionChannelFeed": {
"description": "Label for navigating to a channel's channel-feed page."
},
"actionSheetOptionUnsubscribe": "Unsubscribe",
"@actionSheetOptionUnsubscribe": {
"description": "Label in the channel action sheet for unsubscribing from the channel."
},
"unsubscribeConfirmationDialogTitle": "Unsubscribe from {channelName}?",
"@unsubscribeConfirmationDialogTitle": {
"description": "Title for a confirmation dialog for unsubscribing from a channel.",
"placeholders": {
"channelName": {"type": "String", "example": "#mobile"}
}
},
"unsubscribeConfirmationDialogMessageCannotResubscribe": "Once you leave this channel, you will not be able to rejoin.",
"@unsubscribeConfirmationDialogMessageCannotResubscribe": {
"description": "Message for a confirmation dialog for unsubscribing from a channel when you will not have permission to resubscribe."
},
"unsubscribeConfirmationDialogConfirmButton": "Unsubscribe",
"@unsubscribeConfirmationDialogConfirmButton": {
"description": "Label for the 'Unsubscribe' button on a confirmation dialog for unsubscribing from a channel."
},
"unsubscribeFailedTitle": "Failed to unsubscribe",
"@unsubscribeFailedTitle": {
"description": "Error title when unsubscribing from a channel failed."
},
"actionSheetOptionPinChannel": "Pin to top",
"@actionSheetOptionPinChannel": {
"description": "Label in the channel action sheet for pinning the channel."
},
"actionSheetOptionUnpinChannel": "Unpin from top",
"@actionSheetOptionUnpinChannel": {
"description": "Label in the channel action sheet for unpinning the channel."
},
"errorPinChannelFailedTitle": "Failed to pin channel",
"@errorPinChannelFailedTitle": {
"description": "Error title when pinning a channel to the top fails."
},
"errorUnpinChannelFailedTitle": "Failed to unpin channel",
"@errorUnpinChannelFailedTitle": {
"description": "Error title when unpinning a channel from the top fails."
},
"actionSheetOptionMuteTopic": "Mute topic",
"@actionSheetOptionMuteTopic": {
"description": "Label for muting a topic on action sheet."
},
"actionSheetOptionUnmuteTopic": "Unmute topic",
"@actionSheetOptionUnmuteTopic": {
"description": "Label for unmuting a topic on action sheet."
},
"actionSheetOptionFollowTopic": "Follow topic",
"@actionSheetOptionFollowTopic": {
"description": "Label for following a topic on action sheet."
},
"actionSheetOptionUnfollowTopic": "Unfollow topic",
"@actionSheetOptionUnfollowTopic": {
"description": "Label for unfollowing a topic on action sheet."
},
"actionSheetOptionResolveTopic": "Mark as resolved",
"@actionSheetOptionResolveTopic": {
"description": "Label for the 'Mark as resolved' button on the topic action sheet."
},
"actionSheetOptionUnresolveTopic": "Mark as unresolved",
"@actionSheetOptionUnresolveTopic": {
"description": "Label for the 'Mark as unresolved' button on the topic action sheet."
},
"errorResolveTopicFailedTitle": "Failed to mark topic as resolved",
"@errorResolveTopicFailedTitle": {
"description": "Error title when marking a topic as resolved failed."
},
"errorUnresolveTopicFailedTitle": "Failed to mark topic as unresolved",
"@errorUnresolveTopicFailedTitle": {
"description": "Error title when marking a topic as unresolved failed."
},
"actionSheetOptionSeeWhoReacted": "See who reacted",
"@actionSheetOptionSeeWhoReacted": {
"description": "Label for the 'See who reacted' button in the message action sheet."
},
"seeWhoReactedSheetNoReactions": "This message has no reactions.",
"@seeWhoReactedSheetNoReactions": {
"description": "Explanation on the 'See who reacted' sheet when the message has no reactions (because they were removed after the sheet was opened)."
},
"seeWhoReactedSheetHeaderLabel": "Emoji reactions ({num} total)",
"@seeWhoReactedSheetHeaderLabel": {
"description": "In the 'See who reacted' sheet, a label for the list of emoji reactions at the top, with the total number of reactions. (An accessibility label for assistive technology.)",
"placeholders": {
"num": {"type": "int", "example": "2"}
}
},
"seeWhoReactedSheetEmojiNameWithVoteCount": "{emojiName}: {num, plural, =1{1 vote} other{{num} votes}}",
"@seeWhoReactedSheetEmojiNameWithVoteCount": {
"description": "In the 'See who reacted' sheet, an emoji reaction's name and how many votes it has. (An accessibility label for assistive technology.)",
"placeholders": {
"emojiName": {"type": "String", "example": "working_on_it"},
"num": {"type": "int", "example": "2"}
}
},
"seeWhoReactedSheetUserListLabel": "Votes for {emojiName} ({num})",
"@seeWhoReactedSheetUserListLabel": {
"description": "In the 'See who reacted' sheet, a label for the list of users who chose an emoji reaction, with the emoji's name and how many votes it has. (An accessibility label for assistive technology.)",
"placeholders": {
"emojiName": {"type": "String", "example": "working_on_it"},
"num": {"type": "int", "example": "2"}
}
},
"actionSheetOptionViewReadReceipts": "View read receipts",
"@actionSheetOptionViewReadReceipts": {
"description": "Label for the 'View read receipts' button in the message action sheet."
},
"actionSheetReadReceipts": "Read receipts",
"@actionSheetReadReceipts": {
"description": "Title for the \"Read receipts\" bottom sheet."
},
"actionSheetReadReceiptsReadCount": "{count, plural, =1{This message has been <z-link>read</z-link> by {count} person:} other{This message has been <z-link>read</z-link> by {count} people:}}",
"@actionSheetReadReceiptsReadCount": {
"description": "Label in the \"Read receipts\" bottom sheet when one or more people have read the message.",
"placeholders": {
"count": {"type": "int", "example": "1"}
}
},
"actionSheetReadReceiptsZeroReadCount": "No one has read this message yet.",
"@actionSheetReadReceiptsZeroReadCount": {
"description": "Label in the \"Read receipts\" bottom sheet when no one has read the message."
},
"actionSheetReadReceiptsErrorReadCount": "Failed to load read receipts.",
"@actionSheetReadReceiptsErrorReadCount": {
"description": "Label in the \"Read receipts\" bottom sheet when loading read receipts failed."
},
"actionSheetOptionCopyMessageText": "Copy message text",
"@actionSheetOptionCopyMessageText": {
"description": "Label for copy message text button on action sheet."
},
"actionSheetOptionCopyMessageLink": "Copy link to message",
"@actionSheetOptionCopyMessageLink": {
"description": "Label for copy message link button on action sheet."
},
"actionSheetOptionMarkAsUnread": "Mark as unread from here",
"@actionSheetOptionMarkAsUnread": {
"description": "Label for mark as unread button on action sheet."
},
"actionSheetOptionHideMutedMessage": "Hide muted message again",
"@actionSheetOptionHideMutedMessage": {
"description": "Label for hide muted message again button on action sheet."
},
"actionSheetOptionShare": "Share",
"@actionSheetOptionShare": {
"description": "Label for share button on action sheet."
},
"actionSheetOptionQuoteMessage": "Quote message",
"@actionSheetOptionQuoteMessage": {
"description": "Label for the 'Quote message' button in the message action sheet."
},
"actionSheetOptionStarMessage": "Star message",
"@actionSheetOptionStarMessage": {
"description": "Label for star button on action sheet."
},
"actionSheetOptionUnstarMessage": "Unstar message",
"@actionSheetOptionUnstarMessage": {
"description": "Label for unstar button on action sheet."
},
"actionSheetOptionEditMessage": "Edit message",
"@actionSheetOptionEditMessage": {
"description": "Label for the 'Edit message' button in the message action sheet."
},
"actionSheetOptionDeleteMessage": "Delete message",
"@actionSheetOptionDeleteMessage": {
"description": "Label for the 'Delete message' button in the message action sheet."
},
"deleteMessageConfirmationDialogTitle": "Delete message?",
"@deleteMessageConfirmationDialogTitle": {
"description": "Title for a confirmation dialog for deleting a message."
},
"deleteMessageConfirmationDialogMessage": "Deleting a message permanently removes it for everyone.",
"@deleteMessageConfirmationDialogMessage": {
"description": "Message for a confirmation dialog for deleting a message."
},
"deleteMessageConfirmationDialogConfirmButton": "Delete",
"@deleteMessageConfirmationDialogConfirmButton": {
"description": "Label for the 'Delete' button on a confirmation dialog for deleting a message."
},
"errorDeleteMessageFailedTitle": "Failed to delete message",
"@errorDeleteMessageFailedTitle": {
"description": "Error title when deleting a message failed."
},
"actionSheetOptionMarkTopicAsRead": "Mark topic as read",
"@actionSheetOptionMarkTopicAsRead": {
"description": "Option to mark a specific topic as read in the action sheet."
},
"actionSheetOptionCopyTopicLink": "Copy link to topic",
"@actionSheetOptionCopyTopicLink": {
"description": "Label for copy topic link button in action sheet."
},
"errorWebAuthOperationalErrorTitle": "Something went wrong",
"@errorWebAuthOperationalErrorTitle": {
"description": "Error title when third-party authentication has an operational error (not necessarily caused by invalid credentials)."
},
"errorWebAuthOperationalError": "An unexpected error occurred.",
"@errorWebAuthOperationalError": {
"description": "Error message when third-party authentication has an operational error (not necessarily caused by invalid credentials)."
},
"errorAccountLoggedInTitle": "Account already logged in",
"@errorAccountLoggedInTitle": {
"description": "Error title on attempting to log into an account that's already logged in."
},
"errorAccountLoggedIn": "The account {email} at {server} is already in your list of accounts.",
"@errorAccountLoggedIn": {
"description": "Error message on attempting to log into an account that's already logged in.",
"placeholders": {
"email": {"type": "String", "example": "user@example.com"},
"server": {"type": "String", "example": "https://example.com"}
}
},
"errorCouldNotFetchMessageSource": "Could not fetch message source.",
"@errorCouldNotFetchMessageSource": {
"description": "Error message when the source of a message could not be fetched."
},
"errorCouldNotAccessUploadedFileTitle": "Could not access uploaded file",
"@errorCouldNotAccessUploadedFileTitle": {
"description": "Error title on failure in opening a file someone previously uploaded to Zulip"
},
"errorCopyingFailed": "Copying failed",
"@errorCopyingFailed": {
"description": "Error message when copying the text of a message to the user's system clipboard failed."
},
"errorFailedToUploadFileTitle": "Failed to upload file: {filename}",
"@errorFailedToUploadFileTitle": {
"description": "Error title when the specified file failed to upload.",
"placeholders": {
"filename": {"type": "String", "example": "file.txt"}
}
},
"filenameAndSizeInMiB": "{filename}: {size} MiB",
"@filenameAndSizeInMiB": {
"description": "The name of a file, and its size in mebibytes.",
"placeholders": {
"filename": {"type": "String", "example": "foo.txt"},
"size": {"type": "String", "example": "20.2"}
}
},
"errorFilesTooLarge": "{num, plural, =1{File is} other{{num} files are}} larger than the server's limit of {maxFileUploadSizeMib} MiB and will not be uploaded:\n\n{listMessage}",
"@errorFilesTooLarge": {
"description": "Error message when attached files are too large in size.",
"placeholders": {
"num": {"type": "int", "example": "2"},
"maxFileUploadSizeMib": {"type": "int", "example": "15"},
"listMessage": {"type": "String", "example": "foo.txt: 10.1 MiB\nbar.txt 20.2 MiB"}
}
},
"errorFilesTooLargeTitle": "{num, plural, =1{File} other{Files}} too large",
"@errorFilesTooLargeTitle": {
"description": "Error title when attached files are too large in size.",
"placeholders": {
"num": {"type": "int", "example": "4"}
}
},
"errorLoginInvalidInputTitle": "Invalid input",
"@errorLoginInvalidInputTitle": {
"description": "Error title for login when input is invalid."
},
"errorLoginFailedTitle": "Login failed",
"@errorLoginFailedTitle": {
"description": "Error title for login when signing into a Zulip server fails."
},
"errorMessageNotSent": "Message not sent",
"@errorMessageNotSent": {
"description": "Error message for compose box when a message could not be sent."
},
"errorMessageEditNotSaved": "Message not saved",
"@errorMessageEditNotSaved": {
"description": "Error message for compose box when a message edit could not be saved."
},
"errorLoginCouldNotConnect": "Failed to connect to server:\n{url}",
"@errorLoginCouldNotConnect": {
"description": "Error message when the app could not connect to the server.",
"placeholders": {
"url": {"type": "String", "example": "http://example.com/"}
}
},
"errorCouldNotConnectTitle": "Could not connect",
"@errorCouldNotConnectTitle": {
"description": "Error title when the app could not connect to the server."
},
"errorMessageDoesNotSeemToExist": "That message does not seem to exist.",
"@errorMessageDoesNotSeemToExist": {
"description": "Error message when loading a message that does not exist."
},
"errorQuotationFailed": "Quotation failed",
"@errorQuotationFailed": {
"description": "Error message when quoting a message failed."
},
"errorServerMessage": "The server said:\n\n{message}",
"@errorServerMessage": {
"description": "Error message that quotes an error from the server.",
"placeholders": {
"message": {"type": "String", "example": "Invalid format"}
}
},
"errorConnectingToServerShort": "Error connecting to Zulip. Retrying…",
"@errorConnectingToServerShort": {
"description": "Short error message for a generic unknown error connecting to the server."
},
"errorConnectingToServerDetails": "Error connecting to Zulip at {serverUrl}. Will retry:\n\n{error}",
"@errorConnectingToServerDetails": {
"description": "Dialog error message for a generic unknown error connecting to the server with details.",
"placeholders": {
"serverUrl": {"type": "String", "example": "http://example.com/"},
"error": {"type": "String", "example": "Invalid format"}
}
},
"errorHandlingEventTitle": "Error handling a Zulip event. Retrying connection…",
"@errorHandlingEventTitle": {
"description": "Error title on failing to handle a Zulip server event."
},
"errorHandlingEventDetails": "Error handling a Zulip event from {serverUrl}; will retry.\n\nError: {error}\n\nEvent: {event}",
"@errorHandlingEventDetails": {
"description": "Error details on failing to handle a Zulip server event.",
"placeholders": {
"serverUrl": {"type": "String", "example": "https://chat.example.com"},
"error": {"type": "String", "example": "Unexpected null value"},
"event": {"type": "String", "example": "UpdateMessageEvent(id: 123, messageIds: [2345, 3456], newTopic: 'dinner')"}
}
},
"errorCouldNotOpenLinkTitle": "Unable to open link",
"@errorCouldNotOpenLinkTitle": {
"description": "Error title when opening a link failed."
},
"errorCouldNotOpenLink": "Link could not be opened: {url}",
"@errorCouldNotOpenLink": {
"description": "Error message when opening a link failed.",
"placeholders": {
"url": {"type": "String", "example": "https://chat.example.com"}
}
},
"errorMuteTopicFailed": "Failed to mute topic",
"@errorMuteTopicFailed": {
"description": "Error message when muting a topic failed."
},
"errorUnmuteTopicFailed": "Failed to unmute topic",
"@errorUnmuteTopicFailed": {
"description": "Error message when unmuting a topic failed."
},
"errorFollowTopicFailed": "Failed to follow topic",
"@errorFollowTopicFailed": {
"description": "Error message when following a topic failed."
},
"errorUnfollowTopicFailed": "Failed to unfollow topic",
"@errorUnfollowTopicFailed": {
"description": "Error message when unfollowing a topic failed."
},
"errorSharingFailed": "Sharing failed",
"@errorSharingFailed": {
"description": "Error message when sharing a message failed."
},
"errorStarMessageFailedTitle": "Failed to star message",
"@errorStarMessageFailedTitle": {
"description": "Error title when starring a message failed."
},
"errorUnstarMessageFailedTitle": "Failed to unstar message",
"@errorUnstarMessageFailedTitle": {
"description": "Error title when unstarring a message failed."
},
"errorCouldNotEditMessageTitle": "Could not edit message",
"@errorCouldNotEditMessageTitle": {
"description": "Error title when an exception prevented us from opening the compose box for editing a message."
},
"successLinkCopied": "Link copied",
"@successLinkCopied": {
"description": "Success message after copy link action completed."
},
"successMessageTextCopied": "Message text copied",
"@successMessageTextCopied": {
"description": "Message when content of a message was copied to the user's system clipboard."
},
"successMessageLinkCopied": "Message link copied",
"@successMessageLinkCopied": {
"description": "Message when link of a message was copied to the user's system clipboard."
},
"successTopicLinkCopied": "Topic link copied",
"@successTopicLinkCopied": {
"description": "Message when link of a topic was copied to the user's system clipboard."
},
"successChannelLinkCopied": "Channel link copied",
"@successChannelLinkCopied": {
"description": "Message when link of a channel was copied to the user's system clipboard."
},
"composeBoxBannerLabelDeactivatedDmRecipient": "You cannot send messages to deactivated users.",
"@composeBoxBannerLabelDeactivatedDmRecipient": {
"description": "Label text for a banner replacing the compose box when you cannot send messages in the DM conversation because one or more members are deactivated."
},
"composeBoxBannerLabelUnknownDmRecipient": "You cannot send messages to unknown users.",
"@composeBoxBannerLabelUnknownDmRecipient": {
"description": "Label text for a banner replacing the compose box when you cannot send messages in the DM conversation because one or more members are unknown."
},
"composeBoxBannerLabelCannotSendUnspecifiedReason": "You cannot send messages here.",
"@composeBoxBannerLabelCannotSendUnspecifiedReason": {
"description": "Label text for a banner replacing the compose box when you cannot send messages in the channel for an unspecified reason."
},
"composeBoxBannerLabelCannotSendInChannel": "You do not have permission to post in this channel.",
"@composeBoxBannerLabelCannotSendInChannel": {
"description": "Label text for a banner replacing the compose box when you do not have permission to send messages in the channel."
},
"composeBoxBannerLabelUnsubscribed": "Replies to your messages will not appear automatically.",
"@composeBoxBannerLabelUnsubscribed": {
"description": "Label text for a compose-box banner when you are viewing an unsubscribed channel."
},
"composeBoxBannerLabelUnsubscribedWhenCannotSend": "New messages will not appear automatically.",
"@composeBoxBannerLabelUnsubscribedWhenCannotSend": {
"description": "Label text for a compose-box banner when you are viewing an unsubscribed channel in which you do not have permission to send messages."
},
"composeBoxBannerButtonRefresh": "Refresh",
"@composeBoxBannerButtonRefresh": {
"description": "Label text for the 'Refresh' button in the compose-box banner when you are viewing an unsubscribed channel."
},
"composeBoxBannerButtonSubscribe": "Subscribe",
"@composeBoxBannerButtonSubscribe": {
"description": "Label text for the 'Subscribe' button in the compose-box banner when you are viewing an unsubscribed channel."
},
"composeBoxBannerLabelEditMessage": "Edit message",
"@composeBoxBannerLabelEditMessage": {
"description": "Label text for the compose-box banner when you are editing a message."
},
"composeBoxBannerButtonCancel": "Cancel",
"@composeBoxBannerButtonCancel": {
"description": "Label text for the 'Cancel' button in the compose-box banner when you are editing a message."
},
"composeBoxBannerButtonSave": "Save",
"@composeBoxBannerButtonSave": {
"description": "Label text for the 'Save' button in the compose-box banner when you are editing a message."
},
"editAlreadyInProgressTitle": "Cannot edit message",
"@editAlreadyInProgressTitle": {
"description": "Error title when a message edit cannot be saved because there is another edit already in progress."
},
"editAlreadyInProgressMessage": "An edit is already in progress. Please wait for it to complete.",
"@editAlreadyInProgressMessage": {
"description": "Error message when a message edit cannot be saved because there is another edit already in progress."
},
"savingMessageEditLabel": "SAVING EDIT…",
"@savingMessageEditLabel": {
"description": "Text on a message in the message list saying that a message edit request is processing. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
},
"savingMessageEditFailedLabel": "EDIT NOT SAVED",
"@savingMessageEditFailedLabel": {
"description": "Text on a message in the message list saying that a message edit request failed. (Use ALL CAPS for cased alphabets: Latin, Greek, Cyrillic, etc.)"
},
"discardDraftConfirmationDialogTitle": "Discard the message you’re writing?",
"@discardDraftConfirmationDialogTitle": {
"description": "Title for a confirmation dialog for discarding message text that was typed into the compose box."
},
"discardDraftForEditConfirmationDialogMessage": "When you edit a message, the content that was previously in the compose box is discarded.",
"@discardDraftForEditConfirmationDialogMessage": {
"description": "Message for a confirmation dialog for discarding message text that was typed into the compose box, when editing a message."
},
"discardDraftForOutboxConfirmationDialogMessage": "When you restore an unsent message, the content that was previously in the compose box is discarded.",
"@discardDraftForOutboxConfirmationDialogMessage": {
"description": "Message for a confirmation dialog when restoring an outbox message, for discarding message text that was typed into the compose box."
},
"discardDraftConfirmationDialogConfirmButton": "Discard",
"@discardDraftConfirmationDialogConfirmButton": {
"description": "Label for the 'Discard' button on a confirmation dialog for discarding message text that was typed into the compose box."
},
"composeBoxAttachFilesTooltip": "Attach files",
"@composeBoxAttachFilesTooltip": {
"description": "Tooltip for compose box icon to attach a file to the message."
},
"composeBoxAttachMediaTooltip": "Attach images or videos",
"@composeBoxAttachMediaTooltip": {
"description": "Tooltip for compose box icon to attach media to the message."
},
"composeBoxAttachFromCameraTooltip": "Take a photo",
"@composeBoxAttachFromCameraTooltip": {
"description": "Tooltip for compose box icon to attach an image from the camera to the message."
},
"composeBoxGenericContentHint": "Type a message",
"@composeBoxGenericContentHint": {
"description": "Hint text for content input when sending a message."
},
"newDmSheetComposeButtonLabel": "Compose",
"@newDmSheetComposeButtonLabel": {
"description": "Label for the compose button in the new DM sheet that starts composing a message to the selected users."
},
"newDmSheetScreenTitle": "New DM",
"@newDmSheetScreenTitle": {
"description": "Title displayed at the top of the new DM screen."
},
"newDmFabButtonLabel": "New DM",
"@newDmFabButtonLabel": {
"description": "Label for the floating action button (FAB) that opens the new DM sheet."
},
"newDmSheetSearchHintEmpty": "Add one or more users",
"@newDmSheetSearchHintEmpty": {
"description": "Hint text for the search bar when no users are selected"
},
"newDmSheetSearchHintSomeSelected": "Add another user…",
"@newDmSheetSearchHintSomeSelected": {
"description": "Hint text for the search bar when at least one user is selected."
},
"newDmSheetNoUsersFound": "No users found",
"@newDmSheetNoUsersFound": {
"description": "Message shown in the new DM sheet when no users match the search."
},
"composeBoxDmContentHint": "Message @{user}",
"@composeBoxDmContentHint": {
"description": "Hint text for content input when sending a message to one other person.",
"placeholders": {
"user": {"type": "String", "example": "channel name"}
}
},
"composeBoxGroupDmContentHint": "Message group",
"@composeBoxGroupDmContentHint": {
"description": "Hint text for content input when sending a message to a group."
},
"composeBoxSelfDmContentHint": "Write yourself a note",
"@composeBoxSelfDmContentHint": {
"description": "Hint text for content input when sending a message to yourself."
},
"composeBoxChannelContentHint": "Message {destination}",
"@composeBoxChannelContentHint": {
"description": "Hint text for content input when sending a message to a channel.",
"placeholders": {
"destination": {"type": "String", "example": "#channel name > topic name"}
}
},
"preparingEditMessageContentInput": "Preparing…",
"@preparingEditMessageContentInput": {
"description": "Hint text for content input when the compose box is preparing to edit a message."
},
"composeBoxSendTooltip": "Send",
"@composeBoxSendTooltip": {
"description": "Tooltip for send button in compose box."
},
"unknownChannelName": "(unknown channel)",
"@unknownChannelName": {
"description": "Replacement name for channel when it cannot be found in the store."
},
"composeBoxTopicHintText": "Topic",
"@composeBoxTopicHintText": {
"description": "Hint text for topic input widget in compose box."
},
"composeBoxEnterTopicOrSkipHintText": "Enter a topic (skip for “{defaultTopicName}”)",
"@composeBoxEnterTopicOrSkipHintText": {
"description": "Hint text for topic input widget in compose box when topics are optional.",
"placeholders": {
"defaultTopicName": {"type": "String", "example": "general chat"}
}
},
"composeBoxUploadingFilename": "Uploading {filename}…",
"@composeBoxUploadingFilename": {
"description": "Placeholder in compose box showing the specified file is currently uploading.",
"placeholders": {
"filename": {"type": "String", "example": "file.txt"}
}
},
"composeBoxLoadingMessage": "(loading message {messageId})",
"@composeBoxLoadingMessage": {
"description": "Placeholder in compose box showing the quoted message is currently loading.",
"placeholders": {
"messageId": {"type": "int", "example": "1234"}
}
},
"unknownUserName": "(unknown user)",
"@unknownUserName": {
"description": "Name placeholder to use for a user when we don't know their name."
},
"dmsWithYourselfPageTitle": "DMs with yourself",
"@dmsWithYourselfPageTitle": {
"description": "Message list page title for a DM group that only includes yourself."
},
"messageListGroupYouAndOthers": "You and {others}",
"@messageListGroupYouAndOthers": {
"description": "Message list recipient header for a DM group with others.",
"placeholders": {
"others": {"type": "String", "example": "Alice, Bob"}
}
},
"dmsWithOthersPageTitle": "DMs with {others}",
"@dmsWithOthersPageTitle": {
"description": "Message list page title for a DM group with others.",
"placeholders": {
"others": {"type": "String", "example": "Alice, Bob"}
}
},
"emptyMessageList": "There are no messages here.",
"@emptyMessageList": {
"description": "Placeholder for some message-list pages when there are no messages."
},
"emptyMessageListCombinedFeed": "There are no messages in your combined feed.",
"@emptyMessageListCombinedFeed": {
"description": "Placeholder for the 'Combined feed' page when there are no messages."
},
"emptyMessageListChannelWithoutContentAccess": "You don’t have <z-link>content access</z-link> to this channel.",
"@emptyMessageListChannelWithoutContentAccess": {
"description": "Placeholder for a channel or topic page when there are no messages and you don’t have content access."
},
"emptyMessageListChannelUnavailable": "This channel doesn’t exist, or you are not allowed to view it.",
"@emptyMessageListChannelUnavailable": {
"description": "Placeholder for a channel page when there are no messages and the channel does not exist or you don't have access to it."
},
"emptyMessageListSelfDmHeader": "You have not sent any direct messages to yourself yet!",
"@emptyMessageListSelfDmHeader": {
"description": "Placeholder for the self-DM page when there are no messages."
},
"emptyMessageListSelfDmMessage": "Use this space for personal notes, or to test out Zulip features.",
"@emptyMessageListSelfDmMessage": {
"description": "Extra detail in the placeholder for the self-DM page when there are no messages."
},
"emptyMessageListDm": "You have no direct messages with {person} yet.",
"@emptyMessageListDm": {
"description": "Placeholder for a 1:1 DM page when there are no messages.",
"placeholders": {
"person": {"type": "String", "example": "Alice"}
}
},
"emptyMessageListDmDeactivatedUser": "You have no direct messages with {person}.",
"@emptyMessageListDmDeactivatedUser": {
"description": "Placeholder for a 1:1 DM page when there are no messages and the other user is deactivated.",
"placeholders": {
"person": {"type": "String", "example": "Alice"}
}
},
"emptyMessageListDmUnknownUser": "You have no direct messages with this user.",
"@emptyMessageListDmUnknownUser": {
"description": "Placeholder for a 1:1 DM page when there are no messages and the other user's name is unavailable."
},
"emptyMessageListGroupDm": "You have no direct messages with these users yet.",
"@emptyMessageListGroupDm": {
"description": "Placeholder for a group DM page when there are no messages."
},
"emptyMessageListGroupDmDeactivatedUser": "You have no direct messages with these users.",
"@emptyMessageListGroupDmDeactivatedUser": {
"description": "Placeholder for a group DM page when there are no messages and one or more participants is deactivated."
},
"emptyMessageListDmStartConversation": "Why not start the conversation?",
"@emptyMessageListDmStartConversation": {
"description": "Extra detail in the placeholder for some DM pages when there are no messages."
},
"emptyMessageListMentionsHeader": "This view will show messages where you are <z-link>mentioned</z-link>.",
"@emptyMessageListMentionsHeader": {
"description": "Placeholder for the 'Mentions' page when there are no messages."
},
"emptyMessageListMentionsMessage": "To call attention to a message, you can mention a user, a group, topic participants, or all subscribers to a channel. Type @ in the compose box, and choose who you’d like to mention from the list of suggestions.",
"@emptyMessageListMentionsMessage": {
"description": "Extra detail in the placeholder for the 'Mentions' page when there are no messages."
},
"emptyMessageListStarredHeader": "You have no starred messages.",
"@emptyMessageListStarredHeader": {
"description": "Placeholder for the 'Starred' page when there are no messages."
},
"emptyMessageListStarredMessage": "<z-link>Starring</z-link> is a good way to keep track of important messages, such as tasks you need to go back to, or useful references. To star a message, long-press it and tap “{button}.”",
"@emptyMessageListStarredMessage": {
"description": "Extra detail in the placeholder for the 'Starred' page when there are no messages. The {button} placeholder will be the button's translated text.",
"placeholders": {
"button": {"type": "String", "example": "Star message"}
}
},
"emptyMessageListSearch": "No search results.",
"@emptyMessageListSearch": {
"description": "Placeholder for the 'Search' page when there are no messages."
},
"messageListGroupYouWithYourself": "Messages with yourself",
"@messageListGroupYouWithYourself": {
"description": "Message list recipient header for a DM group that only includes yourself."
},
"contentValidationErrorTooLong": "Message length shouldn't be greater than 10000 characters.",
"@contentValidationErrorTooLong": {
"description": "Content validation error message when the message is too long."
},
"contentValidationErrorEmpty": "You have nothing to send!",
"@contentValidationErrorEmpty": {
"description": "Content validation error message when the message is empty."
},
"contentValidationErrorQuoteAndReplyInProgress": "Please wait for the quotation to complete.",
"@contentValidationErrorQuoteAndReplyInProgress": {
"description": "Content validation error message when a quotation has not completed yet."
},
"contentValidationErrorUploadInProgress": "Please wait for the upload to complete.",
"@contentValidationErrorUploadInProgress": {
"description": "Content validation error message when attachments have not finished uploading."
},
"dialogCancel": "Cancel",
"@dialogCancel": {
"description": "Button label in dialogs to cancel."
},
"dialogContinue": "Continue",
"@dialogContinue": {
"description": "Button label in dialogs to proceed."
},
"dialogClose": "Close",
"@dialogClose": {
"description": "Button label in dialogs to close."
},
"errorDialogLearnMore": "Learn more",
"@errorDialogLearnMore": {
"description": "Button label in error dialogs to open a web page with more information."
},
"errorDialogContinue": "OK",
"@errorDialogContinue": {
"description": "Button label in error dialogs to acknowledge the error and close the dialog."
},
"errorDialogTitle": "Error",
"@errorDialogTitle": {
"description": "Generic title for error dialog."
},
"snackBarDetails": "Details",
"@snackBarDetails": {
"description": "Button label for snack bar button that opens a dialog with more details."
},
"lightboxCopyLinkTooltip": "Copy link",
"@lightboxCopyLinkTooltip": {
"description": "Tooltip in lightbox for the copy link action."
},
"lightboxVideoCurrentPosition": "Current position",
"@lightboxVideoCurrentPosition": {
"description": "The current playback position of the video playing in the lightbox."
},
"lightboxVideoDuration": "Video duration",
"@lightboxVideoDuration": {
"description": "The total duration of the video playing in the lightbox."
},
"loginPageTitle": "Log in",
"@loginPageTitle": {
"description": "Title for login page."
},
"loginFormSubmitLabel": "Log in",
"@loginFormSubmitLabel": {
"description": "Button text to submit login credentials."
},
"loginMethodDivider": "OR",
"@loginMethodDivider": {
"description": "Text on the divider between the username/password form and the third-party login options. Uppercase (for languages with letter case)."
},
"loginMethodDividerSemanticLabel": "Log-in alternatives",
"@loginMethodDividerSemanticLabel": {
"description": "Semantic label for divider between the username/password form and the third-party login options."
},
"signInWithFoo": "Sign in with {method}",
"@signInWithFoo": {
"description": "Button to use {method} to sign in to the app.",
"placeholders": {
"method": {"type": "String", "example": "Google"}
}
},
"loginAddAnAccountPageTitle": "Add an account",
"@loginAddAnAccountPageTitle": {
"description": "Title for page to add a Zulip account."
},
"loginServerUrlLabel": "Your Zulip server URL",
"@loginServerUrlLabel": {
"description": "Label in login page for Zulip server URL entry."
},
"loginHidePassword": "Hide password",
"@loginHidePassword": {
"description": "Icon label for button to hide password in input form."
},
"loginEmailLabel": "Email address",
"@loginEmailLabel": {
"description": "Label for input when an email address is required to log in."
},
"loginErrorMissingEmail": "Please enter your email.",
"@loginErrorMissingEmail": {
"description": "Error message when an empty email address was provided."
},
"loginPasswordLabel": "Password",
"@loginPasswordLabel": {
"description": "Label for password input field."
},
"loginErrorMissingPassword": "Please enter your password.",
"@loginErrorMissingPassword": {
"description": "Error message when an empty password was provided."
},
"loginUsernameLabel": "Username",
"@loginUsernameLabel": {
"description": "Label for input when a username is required to log in."
},
"loginErrorMissingUsername": "Please enter your username.",
"@loginErrorMissingUsername": {
"description": "Error message when an empty username was provided."
},
"topicValidationErrorTooLong": "Topic length shouldn't be greater than {maxLength, plural, =1{1 character} other{{maxLength} characters}}.",
"@topicValidationErrorTooLong": {
"description": "Topic validation error when topic is too long.",
"placeholders": {
"maxLength": {
"type": "int",
"example": "60"
}
}
},
"topicValidationErrorMandatoryButEmpty": "Topics are required in this organization.",
"@topicValidationErrorMandatoryButEmpty": {
"description": "Topic validation error when topic is required but was empty."
},
"errorContentNotInsertedTitle": "Content not inserted",
"@errorContentNotInsertedTitle": {
"description": "Title for error dialog when an attempt to insert rich content failed."
},
"errorContentToInsertIsEmpty": "The file to be inserted is empty or cannot be accessed.",
"@errorContentToInsertIsEmpty": {
"description": "Error message when the rich content to be inserted is empty or cannot be accessed."
},
"errorServerVersionUnsupportedMessage": "{url} is running Zulip Server {zulipVersion}, which is unsupported. The minimum supported version is Zulip Server {minSupportedZulipVersion}.",
"@errorServerVersionUnsupportedMessage": {
"description": "Error message in the dialog for when the Zulip Server version is unsupported.",
"placeholders": {
"url": {"type": "String", "example": "http://chat.example.com/"},
"zulipVersion": {"type": "String", "example": "3.2"},
"minSupportedZulipVersion": {"type": "String", "example": "4.0"}
}
},
"errorInvalidApiKeyMessage": "Your account at {url} could not be authenticated. Please try logging in again or use another account.",
"@errorInvalidApiKeyMessage": {
"description": "Error message in the dialog for invalid API key.",
"placeholders": {
"url": {"type": "String", "example": "http://chat.example.com/"}
}
},
"errorInvalidResponse": "The server sent an invalid response.",
"@errorInvalidResponse": {
"description": "Error message when an API call returned an invalid response."
},
"errorNetworkRequestFailed": "Network request failed",
"@errorNetworkRequestFailed": {
"description": "Error message when a network request fails."
},
"errorMalformedResponse": "Server gave malformed response; HTTP status {httpStatus}",
"@errorMalformedResponse": {
"description": "Error message when an API call fails because we could not parse the response.",
"placeholders": {
"httpStatus": {"type": "int", "example": "200"}
}
},
"errorMalformedResponseWithCause": "Server gave malformed response; HTTP status {httpStatus}; {details}",
"@errorMalformedResponseWithCause": {
"description": "Error message when an API call fails because we could not parse the response, with details of the failure.",
"placeholders": {
"httpStatus": {"type": "int", "example": "200"},
"details": {"type": "String", "example": "type 'Null' is not a subtype of type 'String' in type cast"}
}
},
"errorRequestFailed": "Network request failed: HTTP status {httpStatus}",
"@errorRequestFailed": {
"description": "Error message when an API call fails.",
"placeholders": {
"httpStatus": {"type": "int", "example": "500"}
}
},
"errorVideoPlayerFailed": "Unable to play the video.",
"@errorVideoPlayerFailed": {
"description": "Error message when a video fails to play."
},
"serverUrlValidationErrorEmpty": "Please enter a URL.",
"@serverUrlValidationErrorEmpty": {
"description": "Error message when URL is empty"
},
"serverUrlValidationErrorInvalidUrl": "Please enter a valid URL.",
"@serverUrlValidationErrorInvalidUrl": {
"description": "Error message when URL is not in a valid format."
},
"serverUrlValidationErrorNoUseEmail": "Please enter the server URL, not your email.",
"@serverUrlValidationErrorNoUseEmail": {
"description": "Error message when URL looks like an email address"
},
"serverUrlValidationErrorUnsupportedScheme": "The server URL must start with http:// or https://.",
"@serverUrlValidationErrorUnsupportedScheme": {
"description": "Error message when URL has an unsupported scheme."
},
"spoilerDefaultHeaderText": "Spoiler",
"@spoilerDefaultHeaderText": {
"description": "The default header text in a spoiler block ( https://zulip.com/help/spoilers )."