This repository has been archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 394
/
strings.xml
executable file
·1166 lines (1000 loc) · 77.9 KB
/
strings.xml
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
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- use to retrieve the supported languages list -->
<!-- should the same value as the file name -->
<string name="resources_language">en</string>
<string name="resources_country_code">US</string>
<!-- theme -->
<string name="light_theme">Light Theme</string>
<string name="dark_theme">Dark Theme</string>
<string name="black_them">Black Theme</string>
<string name="status_theme">Status.im Theme</string>
<!-- permanent notification subtitle -->
<string name="notification_sync_in_progress">Synchronising</string>
<string name="notification_listening_for_events">Listening for events</string>
<string name="notification_noisy_notifications">Noisy notifications</string>
<string name="notification_silent_notifications">Silent notifications</string>
<!-- titles -->
<string name="title_activity_home">Messages</string>
<string name="title_activity_room">Room</string>
<string name="title_activity_settings">Settings</string>
<string name="title_activity_member_details">Member Details</string>
<string name="title_activity_historical">Historical</string>
<string name="title_activity_bug_report">Bug report</string>
<string name="title_activity_group_details">Community details</string>
<string name="title_activity_choose_sticker">Send a sticker</string>
<string name="dialog_title_third_party_licences">Third party licences</string>
<!-- splash screen accessibility -->
<string name="loading">Loading…</string>
<!-- button names -->
<string name="ok">OK</string>
<string name="cancel">Cancel</string>
<string name="save">Save</string>
<string name="leave">Leave</string>
<string name="send">Send</string>
<string name="copy">Copy</string>
<string name="resend">Resend</string>
<string name="redact">Redact</string>
<string name="quote">Quote</string>
<string name="download">Download</string>
<string name="share">Share</string>
<string name="speak">Speak</string>
<string name="clear">Clear</string>
<string name="later">Later</string>
<string name="forward">Forward</string>
<string name="permalink">Permalink</string>
<string name="view_source">View Source</string>
<string name="view_decrypted_source">View Decrypted Source</string>
<string name="delete">Delete</string>
<string name="rename">Rename</string>
<string name="report_content">Report content</string>
<string name="active_call">Active call</string>
<string name="ongoing_conference_call">Ongoing conference call. Join as voice or video.</string>
<string name="ongoing_conference_call_voice">voice</string>
<string name="ongoing_conference_call_video">video</string>
<string name="cannot_start_call">Cannot start the call, please try later</string>
<string name="missing_permissions_warning">"Due to missing permissions, some features may be missing…</string>
<string name="missing_permissions_error">"Due to missing permissions, this action is not possible.</string>
<string name="missing_permissions_to_start_conf_call">You need permission to invite to start a conference in this room</string>
<string name="missing_permissions_title_to_start_conf_call">Cannot start call</string>
<string name="device_information">Device information</string>
<string name="room_no_conference_call_in_encrypted_rooms">Conference calls are not supported in encrypted rooms</string>
<string name="call_anyway">Call Anyway</string>
<string name="send_anyway">Send Anyway</string>
<string name="or">or</string>
<string name="invite">Invite</string>
<string name="offline">Offline</string>
<string name="accept">Accept</string>
<!-- actions -->
<string name="action_exit">Exit</string>
<string name="actions">Actions</string>
<string name="action_sign_out">Sign out</string>
<string name="action_sign_out_confirmation">For security, logging out will delete any end-to-end encryption keys making previous encrypted chat history unreadable if you log back in.\nSelect export to backup them before signing out.</string>
<string name="action_voice_call">Voice Call</string>
<string name="action_video_call">Video Call</string>
<string name="action_global_search">Global search</string>
<string name="action_mark_all_as_read">Mark all as read</string>
<string name="action_historical">Historical</string>
<string name="action_quick_reply">Quick reply</string>
<string name="action_open">Open</string>
<string name="action_close">Close</string>
<string name="copied_to_clipboard">Copied to clipboard</string>
<string name="disable">Disable</string>
<!-- dialog titles -->
<string name="dialog_title_confirmation">Confirmation</string>
<string name="dialog_title_warning">Warning</string>
<string name="dialog_title_error">Error</string>
<!-- Bottom navigation buttons -->
<string name="bottom_action_home">Home</string>
<string name="bottom_action_favourites">Favourites</string>
<string name="bottom_action_people">People</string>
<string name="bottom_action_rooms">Rooms</string>
<string name="bottom_action_groups">Communities</string>
<!-- Home screen -->
<string name="home_filter_placeholder_home">Search for rooms</string>
<string name="home_filter_placeholder_favorites">Search for favourites</string>
<string name="home_filter_placeholder_people">Search for people</string>
<string name="home_filter_placeholder_rooms">Search for rooms</string>
<string name="home_filter_placeholder_groups">Search for communities</string>
<!-- Home fragment -->
<string name="invitations_header">Invites</string>
<string name="low_priority_header">Low priority</string>
<string name="system_alerts_header">"System Alerts"</string>
<!-- People fragment -->
<string name="direct_chats_header">Conversations</string>
<string name="local_address_book_header">Local address book</string>
<string name="user_directory_header">User directory</string>
<string name="matrix_only_filter">Matrix contacts only</string>
<string name="no_conversation_placeholder">No conversations</string>
<string name="no_contact_access_placeholder">You didn\'t allow Riot to access your local contacts</string>
<string name="no_result_placeholder">No results</string>
<!-- Rooms fragment -->
<string name="rooms_header">Rooms</string>
<string name="rooms_directory_header">Room directory</string>
<string name="no_room_placeholder">No rooms</string>
<string name="no_public_room_placeholder">No public rooms available</string>
<plurals name="public_room_nb_users">
<item quantity="one">1 user</item>
<item quantity="other">%d users</item>
</plurals>
<!-- Groups fragment -->
<string name="groups_invite_header">Invite</string>
<string name="groups_header">Communities</string>
<string name="no_group_placeholder">No groups</string>
<string name="send_bug_report_include_logs">Send logs</string>
<string name="send_bug_report_include_crash_logs">Send crash logs</string>
<string name="send_bug_report_include_screenshot">Send screenshot</string>
<string name="send_bug_report">Report bug</string>
<string name="send_bug_report_description">Please describe the bug. What did you do? What did you expect to happen? What actually happened?</string>
<string name="send_bug_report_description_in_english">If possible, please write the description in English.</string>
<string name="send_bug_report_placeholder">Describe your problem here</string>
<string name="send_bug_report_logs_description">In order to diagnose problems, logs from this client will be sent with this bug report. This bug report, including the logs and the screenshot, will not be publicly visible. If you would prefer to only send the text above, please untick:</string>
<string name="send_bug_report_alert_message">You seem to be shaking the phone in frustration. Would you like to open the bug report screen?</string>
<string name="send_bug_report_app_crashed">The application has crashed last time. Would you like to submit a crash report?</string>
<string name="send_bug_report_rage_shake">Rage shake to report bug</string>
<string name="send_bug_report_sent">The bug report has been successfully sent</string>
<string name="send_bug_report_failed">The bug report failed to be sent (%s)</string>
<string name="send_bug_report_progress">Progress (%s%%)</string>
<string name="send_files_in">Send into</string>
<string name="read_receipt">Read</string>
<string name="join_room">Join Room</string>
<string name="username">Username</string>
<string name="create_account">Register</string>
<string name="login">Log in</string>
<string name="logout">Log out</string>
<string name="hs_url">Home Server URL</string>
<string name="identity_url">Identity Server URL</string>
<string name="search">Search</string>
<string name="start_new_chat">Start New Chat</string>
<string name="start_voice_call">Start Voice Call</string>
<string name="start_video_call">Start Video Call</string>
<string name="option_send_voice">Send voice</string>
<string name="start_new_chat_prompt_msg">Are you sure that you want to start a new chat with %s?</string>
<string name="start_voice_call_prompt_msg">Are you sure that you want to start a voice call?</string>
<string name="start_video_call_prompt_msg">Are you sure that you want to start a video call?</string>
<string name="option_send_files">Send files</string>
<string name="option_send_sticker">Send sticker</string>
<string name="option_take_photo_video">Take photo or video</string>
<string name="option_take_photo">Take photo</string>
<string name="option_take_video">Take video</string>
<!-- No sticker application dialog -->
<string name="no_sticker_application_dialog_content">You don\'t currently have any stickerpacks enabled.\n\nAdd some now?</string>
<!-- External application -->
<string name="go_on_with">go on with…</string>
<string name="error_no_external_application_found">Sorry, no external application has been found to complete this action.</string>
<!-- Authentication -->
<string name="auth_login">Log in</string>
<string name="auth_register">Register</string>
<string name="auth_submit">Submit</string>
<string name="auth_skip">Skip</string>
<string name="auth_send_reset_email">Send Reset Email</string>
<string name="auth_return_to_login">Return to login screen</string>
<string name="auth_user_id_placeholder">Email or user name</string>
<string name="auth_password_placeholder">Password</string>
<string name="auth_new_password_placeholder">New password</string>
<string name="auth_user_name_placeholder">User name</string>
<string name="auth_add_email_message">"Add an email address to your account to let users discover you, and let you reset password."</string>
<string name="auth_add_phone_message">"Add a phone number to your account to let users discover you."</string>
<string name="auth_add_email_phone_message">"Add an email address and/or a phone number to your account to let users discover you.\n\nEmail address will also let you reset your password."</string>
<string name="auth_add_email_and_phone_message">"Add an email address and a phone number to your account to let users discover you.\n\nEmail address will also let you reset your password."</string>
<string name="auth_email_placeholder">Email address</string>
<string name="auth_opt_email_placeholder">Email address (optional)</string>
<string name="auth_phone_number_placeholder">Phone number</string>
<string name="auth_opt_phone_number_placeholder">Phone number (optional)</string>
<string name="auth_repeat_password_placeholder">Repeat password</string>
<string name="auth_repeat_new_password_placeholder">Confirm your new password</string>
<string name="auth_invalid_login_param">Incorrect username and/or password</string>
<string name="auth_invalid_user_name">User names may only contain letters, numbers, dots, hyphens and underscores</string>
<string name="auth_invalid_password">Password too short (min 6)</string>
<string name="auth_missing_password">Missing password</string>
<string name="auth_invalid_email">"This doesn't look like a valid email address"</string>
<string name="auth_invalid_phone">"This doesn't look like a valid phone number"</string>
<string name="auth_email_already_defined">This email address is already defined.</string>
<string name="auth_missing_email">Missing email address</string>
<string name="auth_missing_phone">Missing phone number</string>
<string name="auth_missing_email_or_phone">Missing email address or phone number</string>
<string name="auth_invalid_token">Invalid token</string>
<string name="auth_password_dont_match">Passwords don\'t match</string>
<string name="auth_forgot_password">Forgot password?</string>
<string name="auth_use_server_options">Use custom server options (advanced)</string>
<string name="auth_email_validation_message">Please check your email to continue registration</string>
<string name="auth_threepid_warning_message">Registration with email and phone number at once is not supported yet until the api exists. Only the phone number will be taken into account.\n\nYou may add your email to your profile in settings.</string>
<string name="auth_recaptcha_message">This Home Server would like to make sure you are not a robot</string>
<string name="auth_username_in_use">Username in use</string>
<string name="auth_home_server">Home Server:</string>
<string name="auth_identity_server">Identity Server:</string>
<string name="auth_reset_password_next_step_button">I have verified my email address</string>
<string name="auth_reset_password_message">To reset your password, enter the email address linked to your account:</string>
<string name="auth_reset_password_missing_email">The email address linked to your account must be entered.</string>
<string name="auth_reset_password_missing_password">A new password must be entered.</string>
<string name="auth_reset_password_email_validation_message">An email has been sent to %s. Once you\'ve followed the link it contains, click below.</string>
<string name="auth_reset_password_error_unauthorized">Failed to verify email address: make sure you clicked the link in the email</string>
<string name="auth_reset_password_success_message">Your password has been reset.\n\nYou have been logged out of all devices and will no longer receive push notifications. To re-enable notifications, re-log in on each device.</string>
<string name="auth_accept_policies">"Please review and accept the policies of this homeserver:"</string>
<!-- Login Screen -->
<string name="login_error_must_start_http">URL must start with http[s]://</string>
<string name="login_error_network_error">Unable to login: Network error</string>
<string name="login_error_unable_login">Unable to login</string>
<string name="login_error_registration_network_error">Unable to register: Network error</string>
<string name="login_error_unable_register">Unable to register</string>
<string name="login_error_unable_register_mail_ownership">Unable to register : email ownership failure</string>
<string name="login_error_invalid_home_server">Enter valid URL</string>
<string name="login_mobile_device">Mobile</string>
<string name="login_error_forbidden">Invalid username/password</string>
<string name="login_error_unknown_token">The access token specified was not recognised</string>
<string name="login_error_bad_json">Malformed JSON</string>
<string name="login_error_not_json">Did not contain valid JSON</string>
<string name="login_error_limit_exceeded">Too many requests have been sent</string>
<string name="login_error_user_in_use">This user name is already used</string>
<string name="login_error_login_email_not_yet">The email link which has not been clicked yet</string>
<!-- crypto warnings -->
<string name="e2e_need_log_in_again">You need to log back in to generate end-to-end encryption keys for this device and submit the public key to your homeserver.\nThis is a once off.\nSorry for the inconvenience.</string>
<!-- request again e2e key -->
<string name="e2e_re_request_encryption_key"><u>Re-request encryption keys</u> from your other devices.</string>
<string name="e2e_re_request_encryption_key_sent">Key request sent.</string>
<string name="e2e_re_request_encryption_key_dialog_title">Request sent</string>
<string name="e2e_re_request_encryption_key_dialog_content">Please launch Riot on another device that can decrypt the message so it can send the keys to this device.</string>
<!-- read receipts list Screen -->
<string name="read_receipts_list">Read Receipts List</string>
<!-- flairs list Screen -->
<string name="groups_list">Groups List</string>
<!-- Mels -->
<plurals name="membership_changes">
<item quantity="one">1 membership change</item>
<item quantity="other">%d membership changes</item>
</plurals>
<!-- accounts list Screen -->
<!-- image size selection -->
<string name="compression_options">Send as </string>
<string name="compression_opt_list_original">Original</string>
<string name="compression_opt_list_large">Large</string>
<string name="compression_opt_list_medium">Medium</string>
<string name="compression_opt_list_small">Small</string>
<!-- media upload / download messages -->
<string name="attachment_cancel_download">"Cancel the download?</string>
<string name="attachment_cancel_upload">Cancel the upload?</string>
<string name="attachment_remaining_time_seconds">%d s</string>
<string name="attachment_remaining_time_minutes">%1$dm %2$ds</string>
<!-- room creation dialog Screen -->
<string name="yesterday">Yesterday</string>
<string name="today">Today</string>
<!-- room info dialog Screen -->
<string name="room_info_room_name">Room name</string>
<string name="room_info_room_topic">Room topic</string>
<!-- Call settings screen -->
<string name="settings_call_category">Calls</string>
<string name="settings_call_ringtone_use_riot_ringtone">Use default Riot ringtone for incoming calls</string>
<string name="settings_call_ringtone_title">Incoming call ringtone</string>
<string name="settings_call_ringtone_dialog_title">Select ringtone for calls:</string>
<!-- call string -->
<string name="call">Call</string>
<string name="call_connected">Call connected</string>
<string name="call_connecting">Call connecting…</string>
<string name="call_ended">Call ended</string>
<string name="call_ring">Calling…</string>
<string name="incoming_call">Incoming Call</string>
<string name="incoming_video_call">Incoming Video Call</string>
<string name="incoming_voice_call">Incoming Voice Call</string>
<string name="call_in_progress">Call In Progress</string>
<string name="call_error_user_not_responding">The remote side failed to pick up.</string>
<string name="call_error_ice_failed">Media Connection Failed</string>
<string name="call_error_camera_init_failed">Cannot initialize the camera</string>
<string name="call_error_answered_elsewhere">call answered elsewhere</string>
<!-- medias picker string -->
<string name="media_picker_both_capture_title">Take a picture or a video"</string>
<string name="media_picker_cannot_record_video">Cannot record video"</string>
<!-- permissions Android M -->
<string name="permissions_rationale_popup_title">Information</string>
<string name="permissions_rationale_msg_storage">Riot needs permission to access your photo and video library to send and save attachments.\n\nPlease allow access on the next pop-up to be able to send files from your phone.</string>
<string name="permissions_rationale_msg_camera">Riot needs permission to access your camera to take pictures and video calls.</string>
<string name="permissions_rationale_msg_camera_explanation">\n\nPlease allow access on the next pop-up to be able to make the call.</string>
<string name="permissions_rationale_msg_record_audio">Riot needs permission to access your microphone to perform audio calls.</string>
<string name="permissions_rationale_msg_record_audio_explanation">\n\nPlease allow access on the next pop-up to be able to make the call.</string>
<string name="permissions_rationale_msg_camera_and_audio">Riot needs permission to access your camera and your microphone to perform video calls.\n\nPlease allow access on the next pop-ups to be able to make the call.</string>
<string name="permissions_rationale_msg_contacts">Riot needs permission to access your address book contacts to find other Matrix users based on their email and phone numbers.\n\nPlease allow access on the next pop-up to discover address book users reachable from Riot.</string>
<string name="permissions_msg_contacts_warning_other_androids">Riot needs permission to access your address book contact to find other Matrix users based on their email and phone numbers.\n\nAllow Riot to access your contacts ?</string>
<string name="permissions_action_not_performed_missing_permissions">Sorry.. Action not performed, due to missing permissions</string>
<!-- medias slider string -->
<string name="media_slider_saved">Saved</string>
<string name="media_slider_saved_message">Save to downloads?</string>
<string name="yes">YES</string>
<string name="no">NO</string>
<string name="_continue">Continue</string>
<!-- Actions -->
<string name="remove">Remove</string>
<string name="join">Join</string>
<string name="preview">Preview</string>
<string name="reject">Reject</string>
<!-- Room -->
<string name="list_members">List members</string>
<string name="open_chat_header">Open header</string>
<string name="room_sync_in_progress">Syncing…</string>
<string name="room_jump_to_first_unread">Jump to first unread message.</string>
<!-- Room Preview -->
<string name="room_preview_invitation_format">You have been invited to join this room by %s</string>
<string name="room_preview_unlinked_email_warning">This invitation was sent to %s, which is not associated with this account.\nYou may wish to login with a different account, or add this email to your this account.</string>
<string name="room_preview_try_join_an_unknown_room">You are trying to access %s. Would you like to join in order to participate in the discussion?</string>
<string name="room_preview_try_join_an_unknown_room_default">a room</string>
<string name="room_preview_room_interactions_disabled">This is a preview of this room. Room interactions have been disabled.</string>
<!-- Chat creation -->
<string name="room_creation_title">New Chat</string>
<string name="room_creation_add_member">Add member</string>
<plurals name="room_header_active_members_count">
<item quantity="one">1 active members</item>
<item quantity="other">%d active members</item>
</plurals>
<plurals name="room_title_members">
<item quantity="one">1 member</item>
<item quantity="other">%d members</item>
</plurals>
<string name="room_title_one_member">1 member</string>
<string name="room_e2e_alert_title">Warning!</string>
<string name="room_e2e_alert_message">End-to-end encryption is in beta and may not be reliable.\n\nYou should not yet trust it to secure data.\n\nDevices will not yet be able to decrypt history from before they joined the room.\n\nEncrypted messages will not be visible on clients that do not yet implement encryption.</string>
<!-- Time -->
<plurals name="format_time_s">
<item quantity="one">1s</item>
<item quantity="other">%ds</item>
</plurals>
<plurals name="format_time_m">
<item quantity="one">1m</item>
<item quantity="other">%dm</item>
</plurals>
<plurals name="format_time_h">
<item quantity="one">1h</item>
<item quantity="other">%dh</item>
</plurals>
<plurals name="format_time_d">
<item quantity="one">1d</item>
<item quantity="other">%dd</item>
</plurals>
<!-- Chat participants -->
<string name="room_participants_leave_prompt_title">Leave room</string>
<string name="room_participants_leave_prompt_msg">Are you sure you want to leave the room?</string>
<string name="room_participants_remove_prompt_msg">Are you sure you want to remove %s from this chat?</string>
<string name="room_participants_create">Create</string>
<string name="room_participants_online">Online</string>
<string name="room_participants_offline">Offline</string>
<string name="room_participants_idle">Idle</string>
<!--The variable is one of "Online", "Offline" or "Idle" states above.-->
<string name="room_participants_now">%1$s now</string>
<!--
The first variable is one of "Online", "Offline" or "Idle" states (with or without " now" part).
The second variable is the formatted datetime (5s, 5m, 5h, 5d) from format_time_s/m/h/d strings.
-->
<string name="room_participants_ago">%1$s %2$s ago</string>
<string name="room_participants_header_admin_tools">ADMIN TOOLS</string>
<string name="room_participants_header_call">CALL</string>
<string name="room_participants_header_direct_chats">DIRECT CHATS</string>
<string name="room_participants_header_devices">DEVICES</string>
<string name="room_participants_action_invite">Invite</string>
<string name="room_participants_action_leave">Leave this room</string>
<string name="room_participants_action_remove">Remove from this room</string>
<string name="room_participants_action_ban">Ban</string>
<string name="room_participants_action_unban">Unban</string>
<string name="room_participants_action_kick">Kick</string>
<string name="room_participants_action_set_default_power_level">Reset to normal user</string>
<string name="room_participants_action_set_moderator">Make moderator</string>
<string name="room_participants_action_set_admin">Make admin</string>
<string name="room_participants_action_ignore">Hide all messages from this user</string>
<string name="room_participants_action_unignore">Show all messages from this user</string>
<string name="room_participants_action_unignore_prompt">Show all messages from this user?\n\nNote that this action will restart the app and it may take some time.</string>
<string name="room_participants_invite_search_another_user">User ID, Name or email</string>
<string name="room_participants_action_mention">Mention</string>
<string name="room_participants_action_devices_list">Show Device List</string>
<string name="room_participants_power_level_prompt">You will not be able to undo this change as you are promoting the user to have the same power level as yourself.\nAre you sure?</string>
<plurals name="room_participants_kick_prompt_msg">
<item quantity="one">Are you sure that you want to kick this user from this chat?</item>
<item quantity="other">Are you sure that you want to kick these users from this chat?</item>
</plurals>
<string name="room_participants_ban_prompt_msg">Are you sure that you want to ban this user from this chat?</string>
<string name="reason_hint">Reason</string>
<!--
The variable can be a single name or a string of names
("Alice, "+"Bob, "+"Charlie and David" > "Alice, Bob, Charlie and David)
-->
<string name="room_participants_invite_prompt_msg">"Are you sure you want to invite %s to this chat?"</string>
<!-- The building block of the first part of the string of names ("Alice, "/"Bob, ") -->
<string name="room_participants_invite_join_names">%1$s, </string>
<!-- The second part of the string of names ("Charlie and David") -->
<string name="room_participants_invite_join_names_and">%1$s and %2$s</string>
<!-- First variable is the first part, and second is the second part -->
<string name="room_participants_invite_join_names_combined">%1$s %2$s</string>
<!-- invitation -->
<string name="people_search_invite_by_id"><u>Invite by ID</u></string>
<string name="people_search_local_contacts">LOCAL CONTACTS (%d)</string>
<string name="people_search_user_directory">USER DIRECTORY (%s)</string>
<string name="people_search_filter_text">Matrix users only</string>
<string name="people_search_invite_by_id_dialog_title">Invite user by ID</string>
<string name="people_search_invite_by_id_dialog_description">Please enter one or more email address or Matrix ID</string>
<string name="people_search_invite_by_id_dialog_hint">Email or Matrix ID</string>
<!-- Chat -->
<string name="room_menu_search">Search</string>
<string name="room_one_user_is_typing">%s is typing…</string>
<string name="room_two_users_are_typing">%1$s & %2$s are typing…</string>
<string name="room_many_users_are_typing">%1$s & %2$s & others are typing…</string>
<string name="room_message_placeholder_encrypted">Send an encrypted message…</string>
<string name="room_message_placeholder_not_encrypted">Send a message (unencrypted)…</string>
<string name="room_message_placeholder_reply_to_encrypted">Send an encrypted reply…</string>
<string name="room_message_placeholder_reply_to_not_encrypted">Send a reply (unencrypted)…</string>
<string name="room_offline_notification">Connectivity to the server has been lost.</string>
<string name="room_unsent_messages_notification">Messages not sent. %1$s or %2$s now?</string>
<string name="room_unknown_devices_messages_notification">Messages not sent due to unknown devices being present. %1$s or %2$s now?</string>
<string name="room_prompt_resend">Resend all</string>
<string name="room_prompt_cancel">cancel all</string>
<string name="room_resend_unsent_messages">Resend unsent messages</string>
<string name="room_delete_unsent_messages">Delete unsent messages</string>
<string name="room_message_file_not_found">File not found</string>
<string name="room_do_not_have_permission_to_post">You do not have permission to post to this room</string>
<plurals name="room_new_messages_notification">
<item quantity="one">1 new message</item>
<item quantity="other">%d new messages</item>
</plurals>
<!-- unrecognized SSL certificate -->
<string name="ssl_trust">Trust</string>
<string name="ssl_do_not_trust">Do not trust</string>
<string name="ssl_logout_account">Logout</string>
<string name="ssl_remain_offline">Ignore</string>
<string name="ssl_fingerprint_hash">Fingerprint (%s):</string>
<string name="ssl_could_not_verify">Could not verify identity of remote server.</string>
<string name="ssl_cert_not_trust">This could mean that someone is maliciously intercepting your traffic, or that your phone does not trust the certificate provided by the remote server.</string>
<string name="ssl_cert_new_account_expl">If the server administrator has said that this is expected, ensure that the fingerprint below matches the fingerprint provided by them.</string>
<string name="ssl_unexpected_existing_expl">The certificate has changed from one that was trusted by your phone. This is HIGHLY UNUSUAL. It is recommended that you DO NOT ACCEPT this new certificate.</string>
<string name="ssl_expected_existing_expl">The certificate has changed from a previously trusted one to one that is not trusted. The server may have renewed its certificate. Contact the server administrator for the expected fingerprint.</string>
<string name="ssl_only_accept">Only accept the certificate if the server administrator has published a fingerprint that matches the one above.</string>
<!-- Room Details -->
<string name="room_details_title">Room Details</string>
<string name="room_details_people">People</string>
<string name="room_details_files">Files</string>
<string name="room_details_settings">Settings</string>
<plurals name="room_details_selected">
<item quantity="one">1 selected</item>
<item quantity="other">%d selected</item>
</plurals>
<string name="malformed_id">Malformed ID. Should be an email address or a Matrix ID like \'@localpart:domain\'</string>
<string name="room_details_people_invited_group_name">INVITED</string>
<string name="room_details_people_present_group_name">JOINED</string>
<!-- Room events -->
<string name="room_event_action_report_prompt_reason">Reason for reporting this content</string>
<string name="room_event_action_report_prompt_ignore_user">Do you want to hide all messages from this user?\n\nNote that this action will restart the app and it may take some time.</string>
<string name="room_event_action_cancel_upload">Cancel Upload</string>
<string name="room_event_action_cancel_download">Cancel Download</string>
<!-- Search -->
<string name="search_hint">Search</string>
<string name="search_members_hint">Filter room members</string>
<string name="search_no_results">No results</string>
<string name="tab_title_search_rooms">ROOMS</string>
<string name="tab_title_search_messages">MESSAGES</string>
<string name="tab_title_search_people">PEOPLE</string>
<string name="tab_title_search_files">FILES</string>
<!-- Room recents -->
<string name="room_recents_join">JOIN</string>
<string name="room_recents_directory">DIRECTORY</string>
<string name="room_recents_favourites">FAVORITES</string>
<string name="room_recents_conversations">ROOMS</string>
<string name="room_recents_low_priority">LOW PRIORITY</string>
<string name="room_recents_invites">INVITES</string>
<string name="room_recents_start_chat">Start chat</string>
<string name="room_recents_create_room">Create room</string>
<string name="room_recents_join_room">Join room</string>
<string name="room_recents_join_room_title">Join a room</string>
<string name="room_recents_join_room_prompt">Type a room id or a room alias</string>
<!-- Directory -->
<string name="directory_search_results_title">Browse directory</string>
<plurals name="directory_search_rooms">
<item quantity="one">1 room</item>
<item quantity="other">%d rooms</item>
</plurals>
<plurals name="directory_search_rooms_for">
<item quantity="one">%1$s room found for %2$s</item>
<item quantity="other">%1$s rooms found for %2$s</item>
</plurals>
<string name="directory_searching_title">Searching directory..</string>
<!-- home room settings -->
<string name="room_settings_all_messages_noisy">All messages (noisy)</string>
<string name="room_settings_all_messages">All messages</string>
<string name="room_settings_mention_only">Mentions only</string>
<string name="room_settings_mute">Mute</string>
<string name="room_settings_favourite">Favourite</string>
<string name="room_settings_de_prioritize">De-prioritize</string>
<string name="room_settings_direct_chat">Direct Chat</string>
<string name="room_settings_leave_conversation">Leave Conversation</string>
<string name="room_settings_forget">Forget</string>
<string name="room_settings_add_homescreen_shortcut">Add Homescreen Shortcut</string>
<!-- home sliding menu -->
<string name="room_sliding_menu_messages">Messages</string>
<string name="room_sliding_menu_settings">Settings</string>
<string name="room_sliding_menu_version">Version</string>
<string name="room_sliding_menu_version_x">Version %s</string>
<string name="room_sliding_menu_term_and_conditions">Terms & conditions</string>
<string name="room_sliding_menu_third_party_notices">Third party notices</string>
<string name="room_sliding_menu_copyright">Copyright</string>
<string name="room_sliding_menu_privacy_policy">Privacy policy</string>
<!-- Vector Settings -->
<string name="settings_profile_picture">Profile Picture</string>
<string name="settings_display_name">Display Name</string>
<string name="settings_email_address">Email</string>
<string name="settings_add_email_address">Add email address</string>
<string name="settings_phone_number">Phone</string>
<string name="settings_add_phone_number">Add phone number</string>
<string name="settings_app_info_link_title">Application info</string>
<string name="settings_app_info_link_summary">Show the application info in the system settings.</string>
<string name="settings_notification_privacy">Notification privacy</string>
<string name="settings_notification_troubleshoot">Troubleshoot Notifications</string>
<string name="settings_troubleshoot_diagnostic">Troubleshooting diagnostics</string>
<string name="settings_troubleshoot_diagnostic_run_button_title">Run Tests</string>
<string name="settings_troubleshoot_diagnostic_running_status">Running… (%1$d of %2$d)</string>
<string name="settings_troubleshoot_diagnostic_success_status">Basic diagnostic is ok. If you still do not receive notifications, please submit a bug report to help us investigate.</string>
<string name="settings_troubleshoot_diagnostic_failure_status_with_quickfix">One or more tests have failed, try suggested fix(es).</string>
<string name="settings_troubleshoot_diagnostic_failure_status_no_quickfix">One or more tests have failed, please submit a bug report to help us investigate.</string>
<string name="settings_troubleshoot_test_system_settings_title">System Settings.</string>
<string name="settings_troubleshoot_test_system_settings_success">Notifications are enabled in the system settings.</string>
<string name="settings_troubleshoot_test_system_settings_failed">Notifications are disabled in the system settings.\nPlease check system settings.</string>
<string name="settings_troubleshoot_test_system_settings_quickfix">Open Settings</string>
<string name="settings_troubleshoot_test_account_settings_title">Account Settings.</string>
<string name="settings_troubleshoot_test_account_settings_success">Notifications are enabled for your account.</string>
<string name="settings_troubleshoot_test_account_settings_failed">Notifications are disabled for your account.\nPlease check account settings.</string>
<string name="settings_troubleshoot_test_account_settings_quickfix">Enable</string>
<string name="settings_troubleshoot_test_device_settings_title">Device Settings.</string>
<string name="settings_troubleshoot_test_device_settings_success">Notifications are enabled for this device.</string>
<string name="settings_troubleshoot_test_device_settings_failed">Notifications are not allowed for this device.\nPlease check the Riot settings.</string>
<string name="settings_troubleshoot_test_device_settings_quickfix">Enable</string>
<string name="settings_troubleshoot_test_play_services_title">Play Services Check</string>
<string name="settings_troubleshoot_test_play_services_success">Google Play Services APK is available and up-to-date.</string>
<string name="settings_troubleshoot_test_play_services_failed">Riot uses Google Play Services to deliver push messages but it doesn\'t seem to be configured correctly:\n%1$s</string>
<string name="settings_troubleshoot_test_play_services_quickfix">Fix Play Services</string>
<string name="settings_troubleshoot_test_fcm_title">Firebase Token</string>
<string name="settings_troubleshoot_test_fcm_success">FCM token successfully retrieved:\n%1$s</string>
<string name="settings_troubleshoot_test_fcm_failed">Failed to retrieved FCM token:\n%1$s</string>
<string name="settings_troubleshoot_test_token_registration_title">Token Registration</string>
<string name="settings_troubleshoot_test_token_registration_success">FCM token successfully registered to HomeServer.</string>
<string name="settings_troubleshoot_test_token_registration_failed">Failed to register FCM token to HomeServer:\n%1$s</string>
<string name="settings_troubleshoot_test_foreground_service_started_title">Notifications Service</string>
<string name="settings_troubleshoot_test_foreground_service_startedt_success">Notifications Service is running.</string>
<string name="settings_troubleshoot_test_foreground_service_started_failed">Notifications Service is not running.\nTry to restart the application.</string>
<string name="settings_troubleshoot_test_foreground_service_started_quickfix">Start Service</string>
<string name="settings_troubleshoot_test_service_restart_title">Notifications Service Auto-Restart</string>
<string name="settings_troubleshoot_test_service_restart_success">Service was killed and restarted automatically.</string>
<string name="settings_troubleshoot_test_service_restart_failed">Service failed to restart</string>
<string name="settings_troubleshoot_test_service_boot_title">Start on boot</string>
<string name="settings_troubleshoot_test_service_boot_success">Service will start when the device is restarted.</string>
<string name="settings_troubleshoot_test_service_boot_failed">The service will not start when the device is restarted, you will not receive notifications until Riot has been opened once.</string>
<string name="settings_troubleshoot_test_service_boot_quickfix">Enable Start on boot</string>
<string name="settings_troubleshoot_test_bg_restricted_title">Check background restrictions</string>
<string name="settings_troubleshoot_test_bg_restricted_success">Background restrictions are disabled for Riot. This test should be run using mobile data (no WIFI).\n%1$s</string>
<string name="settings_troubleshoot_test_bg_restricted_failed">Background restrictions are enabled for Riot.\nWork that the app tries to do will be aggressively restricted while it is in the background, and this could affect notifications.\n%1$s</string>
<string name="settings_troubleshoot_test_bg_restricted_quickfix">Disable restrictions</string>
<string name="settings_troubleshoot_test_battery_title">Battery Optimization</string>
<string name="settings_troubleshoot_test_battery_success">Riot is not affected by Battery Optimization.</string>
<string name="settings_troubleshoot_test_battery_failed">If a user leaves a device unplugged and stationary for a period of time, with the screen off, the device enters Doze mode. This prevents apps from accessing the network and defers their jobs, syncs, and standard alarms. </string>
<string name="settings_troubleshoot_test_battery_quickfix">Ignore Optimization</string>
<string name="settings_notification_privacy_warning">Riot.im runs in the background to keep your notification message content private. You can change this option to reduce battery usage.</string>
<string name="settings_notification_privacy_normal">Normal</string>
<string name="settings_notification_privacy_power_saving">Power-saving Options</string>
<string name="settings_notification_privacy_low_detail">Low detail notifications</string>
<string name="settings_notification_privacy_reduced">Reduced privacy</string>
<string name="settings_notification_privacy_need_permission">The app needs permission to run in the background</string>
<string name="settings_notification_privacy_no_permission">The apps does <b>not</b> need permission to run in the background</string>
<string name="settings_notification_privacy_fcm">• Notifications are sent via Google Cloud Messaging</string>
<string name="settings_notification_privacy_metadata">• Notifications only contain meta data</string>
<string name="settings_notification_privacy_secure_message_content">• Message content of the notification is <b>located securely direct from the Matrix homeserver</b></string>
<string name="settings_notification_privacy_nosecure_message_content">• Notifications contain <b>meta and message data</b></string>
<string name="settings_notification_privacy_message_content_not_shown">• Notifications will <b>not show message content</b></string>
<string name="settings_notification_ringtone">Notification sound</string>
<string name="settings_enable_all_notif">Enable notifications for this account</string>
<string name="settings_enable_this_device">Enable notifications for this device</string>
<string name="settings_turn_screen_on">Turn the screen on for 3 seconds</string>
<string name="settings_containing_my_display_name">Msgs containing my display name</string>
<string name="settings_containing_my_user_name">Msgs containing my user name</string>
<string name="settings_messages_in_one_to_one">Msgs in one-to-one chats</string>
<string name="settings_messages_in_group_chat">Msgs in group chats</string>
<string name="settings_invited_to_room">When I\'m invited to a room</string>
<string name="settings_call_invitations">Call invitations</string>
<string name="settings_messages_sent_by_bot">Messages sent by bot</string>
<string name="settings_background_sync">Background synchronization</string>
<string name="settings_start_on_boot">Start on boot</string>
<string name="settings_enable_background_sync">Enable background sync</string>
<string name="settings_set_sync_timeout">Sync request timeout</string>
<string name="settings_set_sync_delay">Delay between each request</string>
<string name="settings_second">second</string>
<string name="settings_seconds">seconds</string>
<string name="settings_version">Version</string>
<string name="settings_olm_version">olm version</string>
<string name="settings_app_term_conditions">Terms & conditions</string>
<string name="settings_third_party_notices">Third party notices</string>
<string name="settings_copyright">Copyright</string>
<string name="settings_privacy_policy">Privacy policy</string>
<string name="settings_keep_media">Keep media</string>
<string name="settings_clear_cache">Clear cache</string>
<string name="settings_clear_media_cache">Clear media cache</string>
<string name="settings_user_settings">User settings</string>
<string name="settings_notifications">Notifications</string>
<string name="settings_ignored_users">Ignored users</string>
<string name="settings_other">Other</string>
<string name="settings_advanced">Advanced</string>
<string name="settings_cryptography">Cryptography</string>
<string name="settings_notifications_targets">Notification Targets</string>
<string name="settings_contact">Local contacts</string>
<string name="settings_contacts_app_permission">Contacts permission</string>
<string name="settings_contacts_phonebook_country">Phonebook country</string>
<string name="settings_home_display">Home display</string>
<string name="settings_pin_missed_notifications">Pin rooms with missed notifications</string>
<string name="settings_pin_unread_messages">Pin rooms with unread messages</string>
<string name="settings_devices_list">Devices</string>
<string name="settings_inline_url_preview">Inline URL preview</string>
<string name="settings_inline_url_preview_summary">Preview links within the chat when your homeserver supports this feature.</string>
<string name="settings_send_typing_notifs">Send typing notifications</string>
<string name="settings_send_typing_notifs_summary">Let other users know that you are typing.</string>
<string name="settings_send_markdown">Markdown formatting</string>
<string name="settings_send_markdown_summary">Format messages using markdown syntax before they are sent. This allows for advanced formatting such as using asterisks to display italic text.</string>
<string name="settings_always_show_timestamps">Show timestamps for all messages</string>
<string name="settings_12_24_timestamps">Show timestamps in 12-hour format</string>
<string name="settings_show_read_receipts">Show read receipts</string>
<string name="settings_show_read_receipts_summary">Click on the read receipts for a detailed list.</string>
<string name="settings_show_join_leave_messages">Show join and leave events</string>
<string name="settings_show_join_leave_messages_summary">Invites, kicks, and bans are unaffected.</string>
<string name="settings_show_avatar_display_name_changes_messages">Show account events</string>
<string name="settings_show_avatar_display_name_changes_messages_summary">Includes avatar and display name changes.</string>
<string name="settings_vibrate_on_mention">Vibrate when mentioning a user</string>
<string name="settings_preview_media_before_sending">Preview media before sending</string>
<string name="settings_deactivate_account_section">Deactivate account</string>
<string name="settings_deactivate_my_account">Deactivate my account</string>
<!-- startup -->
<string name="startup_notification_privacy_title">Notification Privacy</string>
<string name="startup_notification_privacy_message">Riot can run in the background to manage your notifications securely and privately. This might affect battery usage.</string>
<string name="startup_notification_privacy_button_grant">Grant permission</string>
<string name="startup_notification_privacy_button_other">Choose another option</string>
<string name="startup_notification_fdroid_battery_optim_title">Background Connection</string>
<string name="startup_notification_fdroid_battery_optim_message">Riot needs to keep a low impact background connection in order to have reliable notifications.\nPlease allow Riot to always run in background.</string>
<string name="startup_notification_fdroid_battery_optim_button_grant">Grant permission</string>
<!-- analytics -->
<string name="settings_analytics">Analytics</string>
<string name="settings_opt_in_of_analytics">Send analytics data</string>
<string name="settings_opt_in_of_analytics_summary">Riot collects anonymous analytics to allow us to improve the application.</string>
<string name="settings_opt_in_of_analytics_prompt">Please enable analytics to help us improve Riot.</string>
<string name="settings_opt_in_of_analytics_ok">Yes, I want to help!</string>
<string name="settings_data_save_mode">Data save mode</string>
<string name="devices_details_dialog_title">Device details</string>
<string name="devices_details_id_title">ID</string>
<string name="devices_details_name_title">Name</string>
<string name="devices_details_device_name">Device Name</string>
<string name="devices_details_last_seen_title">Last seen</string>
<string name="devices_details_last_seen_format">%1$s @ %2$s</string>
<string name="devices_delete_dialog_text">This operation requires additional authentication.\nTo continue, please enter your password.</string>
<string name="devices_delete_dialog_title">Authentication</string>
<string name="devices_delete_pswd">Password:</string>
<string name="devices_delete_submit_button_label">Submit</string>
<string name="settings_logged_in">Logged in as</string>
<string name="settings_home_server">Home Server</string>
<string name="settings_identity_server">Identity Server</string>
<string name="settings_user_interface">User interface</string>
<string name="settings_interface_language">Language</string>
<string name="settings_select_language">Choose language</string>
<string name="account_email_validation_title">Verification Pending</string>
<string name="account_email_validation_message">Please check your email and click on the link it contains. Once this is done, click continue.</string>
<string name="account_email_validation_error">Unable to verify email address. Please check your email and click on the link it contains. Once this is done, click continue.</string>
<string name="account_email_already_used_error">This email address is already in use.</string>
<string name="account_email_not_found_error">This email address was not found.</string>
<string name="account_phone_number_already_used_error">This phone number is already in use.</string>
<string name="account_email_error">An error occurred while verifying your email address.</string>
<string name="settings_password">Password</string>
<string name="settings_change_password">Change password</string>
<string name="settings_old_password">Old password</string>
<string name="settings_new_password">New password</string>
<string name="settings_confirm_password">Confirm password</string>
<string name="settings_fail_to_update_password">Failed to update password</string>
<string name="settings_password_updated">Your password has been updated</string>
<string name="settings_unignore_user">Show all messages from %s?\n\nNote that this action will restart the app and it may take some time.</string>
<string name="settings_delete_notification_targets_confirmation">Are you sure you want to remove this notification target?</string>
<string name="settings_delete_threepid_confirmation">Are you sure you want to remove the %1$s %2$s?</string>
<string name="settings_select_country">Choose a country</string>
<string name="settings_phone_number_country_label">Country</string>
<string name="settings_phone_number_country_error">Please choose a country</string>
<string name="settings_phone_number_label">Phone number</string>
<string name="settings_phone_number_error">Invalid phone number for the selected country</string>
<string name="settings_phone_number_verification">Phone verification</string>
<string name="settings_phone_number_verification_instruction">"We've sent an SMS with an activation code. Please enter this code below."</string>
<string name="settings_phone_number_verification_error_empty_code">Enter an activation code</string>
<string name="settings_phone_number_verification_error">Error while validating your phone number</string>
<string name="settings_phone_number_code">Code</string>
<string name="account_phone_number_error">An error occurred while verifying your phone number.</string>
<string name="account_additional_info">Additional info: %s</string>
<string name="settings_flair">Flair</string>
<string name="settings_without_flair">You are not currently a member of any communities.</string>
<!-- medias saving settings -->
<string name="media_saving_period_3_days">3 days</string>
<string name="media_saving_period_1_week">1 week</string>
<string name="media_saving_period_1_month">1 month</string>
<string name="media_saving_period_forever">Forever</string>
<!-- Room Settings -->
<!-- room global settings-->
<string name="room_settings_room_photo">Room Photo</string>
<string name="room_settings_room_name">Room Name</string>
<string name="room_settings_topic">Topic</string>
<string name="room_settings_room_tag">Room Tag</string>
<string name="room_settings_tag_pref_dialog_title">Tagged as:</string>
<!-- Room settings: Room tag -->
<string name="room_settings_tag_pref_entry_favourite">Favourite</string>
<string name="room_settings_tag_pref_entry_low_priority">Low priority</string>
<string name="room_settings_tag_pref_entry_none">None</string>
<!-- room settings : access and visibility -->
<string name="room_settings_category_access_visibility_title">Access and visibility</string>
<string name="room_settings_directory_visibility">List this room in room directory</string>
<string name="room_settings_room_notifications_title">Notifications</string>
<string name="room_settings_room_access_rules_pref_title">Room Access</string>
<string name="room_settings_room_read_history_rules_pref_title">Room History Readability</string>
<string name="room_settings_room_read_history_rules_pref_dialog_title">Who can read history?</string>
<string name="room_settings_room_access_rules_pref_dialog_title">Who can access this room?</string>
<!-- Room settings, access and visibility : WHO CAN READ HISTORY? (read rule) -->
<string name="room_settings_read_history_entry_anyone">Anyone</string>
<string name="room_settings_read_history_entry_members_only_option_time_shared">Members only (since the point in time of selecting this option)</string>
<string name="room_settings_read_history_entry_members_only_invited">Members only (since they were invited)</string>
<string name="room_settings_read_history_entry_members_only_joined">Members only (since they joined)</string>
<!-- Room settings: "Who can access this room?" (access rule) -->
<string name="room_settings_room_access_warning">To link to a room it must have an address.</string>
<string name="room_settings_room_access_entry_only_invited">Only people who have been invited</string>
<string name="room_settings_room_access_entry_anyone_with_link_apart_guest">Anyone who knows the room\'s link, apart from guests</string>
<string name="room_settings_room_access_entry_anyone_with_link_including_guest">Anyone who knows the room\'s link, including guests</string>
<!-- Room settings: banned users -->
<string name="room_settings_banned_users_title">Banned users</string>
<!-- advanced -->
<string name="room_settings_category_advanced_title">Advanced</string>
<string name="room_settings_room_internal_id">This room\'s internal ID</string>
<string name="room_settings_addresses_pref_title">Addresses</string>
<string name="room_settings_labs_pref_title">Labs</string>
<string name="room_settings_labs_warning_message">These are experimental features that may break in unexpected ways. Use with caution.</string>
<string name="room_settings_labs_end_to_end">End-to-End Encryption</string>
<string name="room_settings_labs_end_to_end_is_active">End-to-End Encryption is active</string>
<string name="room_settings_labs_end_to_end_warnings">You need to logout to be able to enable the encryption.</string>
<string name="room_settings_never_send_to_unverified_devices_title">Encrypt to verified devices only</string>
<string name="room_settings_never_send_to_unverified_devices_summary">Never send encrypted messages to unverified devices in this room from this device.</string>
<!-- Room settings: advanced addresses -->
<string name="room_settings_addresses_no_local_addresses">This room has no local addresses</string>
<string name="room_settings_addresses_add_new_address">New address (e.g #foo:matrix.org")</string>
<string name="room_settings_no_flair">This room is not showing flair for any communities</string>
<string name="room_settings_add_new_group">New community ID (e.g +foo:matrix.org")</string>
<string name="room_settings_invalid_group_format_dialog_title">Invalid community ID</string>
<string name="room_settings_invalid_group_format_dialog_body">\'%s\' is not a valid community ID</string>
<string name="room_settings_addresses_invalid_format_dialog_title">Invalid alias format</string>
<string name="room_settings_addresses_invalid_format_dialog_body">\'%s\' is not a valid format for an alias</string>
<string name="room_settings_addresses_disable_main_address_prompt_msg">You will have no main address specified for this room."</string>
<string name="room_settings_addresses_disable_main_address_prompt_title">Main address warnings</string>
<string name="room_settings_set_main_address">Set as Main Address</string>
<string name="room_settings_unset_main_address">Unset as Main Address</string>
<string name="room_settings_copy_room_id">Copy Room ID</string>
<string name="room_settings_copy_room_address">Copy Room Address</string>
<string name="room_settings_addresses_e2e_enabled">Encryption is enabled in this room.</string>
<string name="room_settings_addresses_e2e_disabled">Encryption is disabled in this room.</string>
<string name="room_settings_addresses_e2e_encryption_warning">Enable encryption \n(warning: cannot be disabled again!)</string>
<string name="room_settings_addresses_e2e_prompt_title">Warning!</string>
<string name="room_settings_addresses_e2e_prompt_message">End-to-end encryption is in beta and may not be reliable.\n\nYou should not yet trust it to secure data.\n\nDevices will not yet be able to decrypt history from before they joined the room.\n\nOnce encryption is enabled for a room it cannot be turned off again (for now).\n\nEncrypted messages will not be visible on clients that do not yet implement encryption.</string>
<!-- Directory -->
<string name="directory_title">Directory</string>
<string name="settings_theme">Theme</string>
<!-- matrix error -->
<string name="failed_to_load_timeline_position">%s was trying to load a specific point in this room\'s timeline but was unable to find it.</string>
<!-- encryption dialog -->
<string name="encryption_information_title">End-to-end encryption information</string>
<string name="encryption_information_device_info">Event information</string>
<string name="encryption_information_user_id">User id</string>
<string name="encryption_information_curve25519_identity_key">Curve25519 identity key</string>
<string name="encryption_information_claimed_ed25519_fingerprint_key">Claimed Ed25519 fingerprint key</string>
<string name="encryption_information_algorithm">Algorithm</string>
<string name="encryption_information_session_id">Session ID</string>
<string name="encryption_information_decryption_error">Decryption error</string>
<string name="encryption_information_sender_device_information">Sender device information</string>
<string name="encryption_information_device_name">Device name</string>
<string name="encryption_information_name">Name</string>
<string name="encryption_information_device_id">Device ID</string>
<string name="encryption_information_device_key">Device key</string>
<string name="encryption_information_verification">Verification</string>
<string name="encryption_information_ed25519_fingerprint">Ed25519 fingerprint</string>
<string name="encryption_export_e2e_room_keys">Export E2E room keys</string>
<string name="encryption_export_room_keys">Export room keys</string>
<string name="encryption_export_room_keys_summary">Export the keys to a local file</string>
<string name="encryption_export_export">Export</string>
<string name="encryption_export_notice">Please create a passphrase to encrypt the exported keys. You will need to enter the same passphrase to be able to import the keys.</string>
<string name="encryption_export_create_passphrase">Create passphrase</string>
<string name="encryption_export_confirm_passphrase">Confirm passphrase</string>
<string name="encryption_export_passphrase_dont_match">Passphrases must match</string>
<string name="encryption_export_saved_as">The E2E room keys have been saved to \'%s\'.\n\nWarning: this file may be deleted if the application is uninstalled.</string>
<string name="encryption_import_e2e_room_keys">Import E2E room keys</string>
<string name="encryption_import_room_keys">Import room keys</string>
<string name="encryption_import_room_keys_summary">Import the keys from a local file</string>
<string name="encryption_import_import">Import</string>
<string name="encryption_import_enter_passphrase">Enter passphrase</string>
<string name="encryption_never_send_to_unverified_devices_title">Encrypt to verified devices only</string>
<string name="encryption_never_send_to_unverified_devices_summary">Never send encrypted messages to unverified devices from this device.</string>
<string name="encryption_import_room_keys_success">%1$d/%2$d key(s) imported with success.</string>
<string name="encryption_information_not_verified">NOT Verified</string>
<string name="encryption_information_verified">Verified</string>
<string name="encryption_information_blocked">Blacklisted</string>
<string name="encryption_information_unknown_device">unknown device</string>
<string name="encryption_information_none">none</string>
<string name="encryption_information_verify">Verify</string>
<string name="encryption_information_unverify">Unverify</string>
<string name="encryption_information_block">Blacklist</string>
<string name="encryption_information_unblock">Unblacklist</string>
<string name="encryption_information_verify_device">Verify device</string>
<string name="encryption_information_verify_device_warning">To verify that this device can be trusted, please contact its owner using some other means (e.g. in person or a phone call) and ask them whether the key they see in their User Settings for this device matches the key below:</string>
<string name="encryption_information_verify_device_warning2">If it matches, press the verify button below. If it doesn\'t, then someone else is intercepting this device and you should probably blacklist it. In the future this verification process will be more sophisticated.</string>
<string name="encryption_information_verify_key_match">I verify that the keys match</string>
<string name="e2e_enabling_on_app_update">Riot now supports end-to-end encryption but you need to log in again to enable it.\n\nYou can do it now or later from the application settings.</string>
<!-- unknown devices management -->
<string name="unknown_devices_alert_title">Room contains unknown devices</string>
<string name="unknown_devices_alert_message">This room contains unknown devices which have not been verified.\nThis means there is no guarantee that the devices belong to the users they claim to.\nWe recommend you go through the verification process for each device before continuing, but you can resend the message without verifying if you prefer.\n\nUnknown devices:</string>
<!-- directory activity -->
<string name="select_room_directory">Select a room directory</string>
<string name="directory_server_fail_to_retrieve_server">The server may be unavailable or overloaded</string>
<string name="directory_server_type_homeserver">Type a homeserver to list public rooms from</string>
<string name="directory_server_placeholder">Homeserver URL</string>
<string name="directory_server_all_rooms_on_server">All rooms on %s server</string>
<string name="directory_server_native_rooms">All native %s rooms</string>
<!-- Lock screen-->
<string name="lock_screen_hint">Type here…</string>
<!-- Notifications -->
<plurals name="notification_unread_notified_messages">
<item quantity="one">1 unread notified message</item>
<item quantity="other">%d unread notified messages</item>
</plurals>
<plurals name="notification_unread_notified_messages_in_room_msgs">
<item quantity="one">1 unread notified message</item>
<item quantity="other">%d unread notified messages</item>
</plurals>
<plurals name="notification_unread_notified_messages_in_room_rooms">
<item quantity="one">1 room</item>
<item quantity="other">%d rooms</item>
</plurals>
<string name="notification_unread_notified_messages_in_room">%1$s in %2$s"</string>
<!-- historical -->
<string name="historical_placeholder">Search for historical</string>
<!-- text size selection -->
<string name="font_size">Font size</string>
<string name="tiny">Tiny</string>
<string name="small">Small</string>
<string name="normal">Normal</string>
<string name="large">Large</string>
<string name="larger">Larger</string>
<string name="largest">Largest</string>
<string name="huge">Huge</string>
<!-- Widget-->
<string name="widget_no_power_to_manage">You need permission to manage widgets in this room</string>
<string name="widget_creation_failure">Widget creation has failed</string>
<string name="event_formatter_widget_added">%1$s added by %2$s</string>