-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathstrings.xml
More file actions
1990 lines (1970 loc) · 171 KB
/
Copy pathstrings.xml
File metadata and controls
1990 lines (1970 loc) · 171 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
<?xml version="1.0" encoding="utf-8"?><!--
~ Wire
~ Copyright (C) 2024 Wire Swiss GmbH
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see http://www.gnu.org/licenses/.
-->
<resources>
<string name="app_version">App version</string>
<string name="build_variant_name">Build variant</string>
<string name="debug_id" translatable="false">Debug Identifier</string>
<string name="debug_analytics_enabled_title" translatable="false">Analytics Initialized</string>
<string name="debug_analytics_tracking_identifier_title" translatable="false">
Analytics Tracking Identifier
</string>
<string name="debug_federation_enabled" translatable="false">Federation Enabled</string>
<string name="debug_default_backend_protocol" translatable="false">
Default Backend Protocol
</string>
<string name="debug_current_api_version" translatable="false">Current API Version</string>
<string name="label_new">New</string>
<string name="label_login">Login</string>
<string name="label_ok">OK</string>
<string name="label_open">Open</string>
<string name="label_cancel">Cancel</string>
<string name="label_confirm">Confirm</string>
<string name="label_continue">Continue</string>
<string name="label_apply">Apply</string>
<string name="label_save">Save</string>
<string name="label_get_started">Get Started</string>
<string name="label_remove">Remove</string>
<string name="label_proceed">Proceed</string>
<string name="label_leave">Leave</string>
<string name="label_add_device">Add Device</string>
<string name="label_learn_more">Learn more</string>
<string name="label_removing">Removing…</string>
<string name="label_logging_in">Logging in…</string>
<string name="label_user_deleted">Deleted</string>
<string name="label_try_again">Try Again</string>
<string name="label_done">Done</string>
<string name="label_message_sent_failure">Message could not be sent due to connectivity issues.</string>
<string name="label_message_edit_sent_failure">The edited message could not be sent due to connectivity issues.</string>
<string name="label_message_sent_remotely_failure">Message could not be sent, as the backend of %s could not be reached.</string>
<string name="label_message_edit_sent_remotely_failure">The edited message could not be sent, as the backend of %s could not be reached.</string>
<string name="label_message_receive_failure">Download Error</string>
<string name="label_message_decryption_failure_message">Message could not be decrypted.</string>
<string name="label_message_decryption_failure_message_with_error_code">Message could not be decrypted (Error %s).</string>
<string name="label_message_decryption_failure_informative_message">Try resetting the session to generate new encryption keys.</string>
<string name="label_system_message_self_user_knock">%s pinged</string>
<string name="label_system_message_other_user_knock">%s pinged</string>
<string name="label_message_partial_delivery_participants_count">%1$d participants didn\'t get your message.</string>
<string name="label_message_partial_delivery_participants_wont_deliver">%s won\'t get your message.</string>
<string name="label_message_partial_delivery_participants_one_deliver_later">%s will get your message later.</string>
<string name="label_message_partial_delivery_participants_many_deliver_later">%s will get your message later.</string>
<plurals name="label_message_partial_delivery_x_participants_from_backend">
<item quantity="one">1 participant from %2$s</item>
<item quantity="other">%1$d participants from %2$s</item>
</plurals>
<string name="label_reset_session">Reset Session</string>
<string name="label_reset_session_success">Session successfully reset</string>
<string name="label_update">Update</string>
<string name="label_close">Close</string>
<string name="label_download">Download</string>
<string name="label_open_asset_externally">Open</string>
<string name="label_show">Show</string>
<string name="label_show_all">Show All</string>
<string name="label_show_less">Show Less</string>
<string name="label_show_details">Show Details</string>
<string name="label_hide_details">Hide Details</string>
<string name="label_message_status_edited_with_date">Edited on %s</string>
<string name="label_on">ON</string>
<string name="label_off">OFF</string>
<string name="label_value_copied">%s copied</string>
<string name="label_disable">Disable</string>
<string name="folder_label_access">Access</string>
<string name="folder_label_protocol_details">Protocol details</string>
<string name="folder_label_messaging">Messaging</string>
<string name="label_user_blocked">Blocked</string>
<string name="label_and">and</string>
<string name="label_retry">Retry</string>
<string name="label_draft">*Draft*</string>
<!-- Content descriptions https://wearezeta.atlassian.net/wiki/spaces/AR/pages/122520039/Code+Style+Guideline#Content-description-strings -->
<string name="content_description_reveal_password">Show password</string>
<string name="content_description_hide_password">Hide password</string>
<string name="content_description_search_back">Search back icon</string>
<string name="content_description_muted_conversation">Muted conversation</string>
<string name="content_description_download_icon">Download icon</string>
<string name="content_description_open_asset_icon">Open icon</string>
<string name="content_description_add_to_favourite">Add to Favorites</string>
<string name="content_description_move_to_folder">Move to folder</string>
<string name="content_description_move_to_archive">Move to archive</string>
<string name="content_description_unarchive">Unarchive</string>
<string name="content_description_block_the_user">Block</string>
<string name="content_description_unblock_the_user">Unblock</string>
<string name="content_description_leave_the_conversation">Leave the conversation</string>
<string name="content_description_delete_the_conversation">Delete the conversation</string>
<string name="content_description_conversation_phone_icon">Start audio call</string>
<string name="content_description_welcome_wire_logo">Wire</string>
<string name="content_description_conversation_enable_rich_text_mode">Open formatting options</string>
<string name="content_description_conversation_enable_drawing_mode">Open sketch to draw or write</string>
<string name="content_description_conversation_rich_text_header">Use a heading</string>
<string name="content_description_conversation_rich_text_bold">Use bolded text</string>
<string name="content_description_conversation_rich_text_italic">Use italic text</string>
<string name="content_description_conversation_rich_text_close">Close formatting options</string>
<string name="content_description_conversation_send_emoticon">Send Emoticon</string>
<string name="content_description_conversation_send_gif">Send GIF</string>
<string name="content_description_conversation_mention_someone">Mention someone</string>
<string name="content_description_conversation_back_btn">Go back to conversation list</string>
<string name="content_description_conversation_open_details_label">open conversation details</string>
<string name="content_description_new_conversation">New. Start a new conversation</string>
<string name="content_description_new_meeting">Start or schedule a new Wire Meeting</string>
<string name="content_description_back_button">Back</string>
<string name="content_description_send_button">Send</string>
<string name="content_description_timed_message_button">Self-deleting messages, button</string>
<string name="content_description_close_button">Close</string>
<string name="content_description_menu_button">Main navigation</string>
<string name="content_description_drop_down_icon">Drop down arrow</string>
<string name="content_description_expand_text_icon">Expand text input field</string>
<string name="content_description_collapse_text_icon">Collapse text input field</string>
<string name="content_description_remove_devices_screen_device_item_icon">Device item</string>
<string name="content_description_remove_devices_screen_remove_icon">Remove device</string>
<string name="content_description_avatar_preview">Preview of profile picture</string>
<string name="content_description_choose_from_gallery">Choose from gallery</string>
<string name="content_description_take_a_picture">Take a picture</string>
<string name="content_description_right_arrow">Right arrow</string>
<string name="content_description_left_arrow">Go back</string>
<string name="content_description_mention_icon">Mention icon</string>
<string name="content_description_attachment_item">Add attachment</string>
<string name="content_description_open_message_details">Open Message Details</string>
<string name="content_description_copy_the_message">Copy the message</string>
<string name="content_description_share_the_file">Share the selected file with other app</string>
<string name="content_description_delete_the_message">Delete the message</string>
<string name="content_description_edit_the_message">Edit the message</string>
<string name="content_description_more_options">More options</string>
<string name="content_description_add_contact">Add contact</string>
<string name="content_description_image_message">Image message</string>
<string name="content_description_pause_audio">Pause audio</string>
<string name="content_description_play_audio">Play audio</string>
<string name="content_description_file_message">File message</string>
<string name="content_description_ping_everyone">Ping</string>
<string name="content_description_self_deleting_message_timer">Set timer for self-deleting messages</string>
<string name="content_description_calling_hang_up_call">Hang up call</string>
<string name="content_description_calling_accept_call">Accept call</string>
<string name="content_description_calling_flip_camera_on">Flip to front camera</string>
<string name="content_description_calling_flip_camera_off">Flip to back camera</string>
<string name="content_description_calling_participant_muted">Participant muted</string>
<string name="content_description_calling_mute_call">Mute call</string>
<string name="content_description_calling_unmute_call">Unmute call</string>
<string name="content_description_calling_turn_camera_on">Turn camera on</string>
<string name="content_description_calling_turn_camera_off">Turn camera off</string>
<string name="content_description_calling_turn_speaker_on">Turn speaker on</string>
<string name="content_description_calling_turn_speaker_off">Turn speaker off</string>
<string name="content_description_calling_screen_share_on">Screen share on</string>
<string name="content_description_calling_camera_on">Camera on</string>
<string name="content_description_calling_microphone_on">Microphone on</string>
<string name="content_description_calling_microphone_off">Microphone off</string>
<string name="content_description_calling_active_speaker">Active speaker</string>
<string name="content_description_calling_participants_list_drag_handle">Expand list of participants</string>
<string name="content_description_calling_expand">Expand</string>
<string name="content_description_calling_collapse">Collapse</string>
<string name="content_description_calling_expanded_participants_list">Expanded list of participants</string>
<string name="content_description_calling_collapsed_participants_list">Collapsed list of participants</string>
<string name="content_description_calling_in_call_reactions_show">Show in call reactions panel</string>
<string name="content_description_calling_in_call_reactions_hide">Hide in call reactions panel</string>
<string name="content_description_call_open_calling_details">Open calling details</string>
<string name="content_description_call_low_network_quality">Low network quality</string>
<string name="content_description_call_network_quality_view_details">View details</string>
<string name="content_description_call_network_quality_close_details">Close details</string>
<string name="content_description_reply_to_messge">Reply to the message</string>
<string name="content_description_reply_cancel">Cancel message reply</string>
<string name="content_description_ping_message">Ping message</string>
<string name="content_description_copy">Copy</string>
<string name="content_description_edit">Edit</string>
<string name="content_description_calling_call_muted">Call Muted</string>
<string name="content_description_calling_call_unmuted">Call Unmuted</string>
<string name="content_description_calling_call_paused_camera">Paused Camera</string>
<string name="content_description_more_emojis">More emojis</string>
<string name="content_description_self_deletion_selector_button">Toggle self deletion mode, button</string>
<string name="content_description_message_sending_status">Message sending status</string>
<string name="content_description_message_sent_status">Message sent status</string>
<string name="content_description_message_error_status">Message error status</string>
<string name="content_description_message_delivered_status">Message delivered status</string>
<string name="content_description_message_read_status">Message read status</string>
<string name="content_description_record_audio_button_start">Record Audio</string>
<string name="content_description_record_audio_button_stop">Stop Recording Audio</string>
<string name="content_description_record_audio_button_send">Send Audio Message</string>
<string name="content_description_mls_certificate_valid">All devices are verified (end-to-end identity)</string>
<string name="content_description_proteus_certificate_valid">All of all participants are verified (Proteus)</string>
<string name="content_description_jump_to_last_message">Scroll to end of conversation</string>
<string name="content_description_location_icon">Location item</string>
<string name="content_description_conversation_details_more_btn">Open conversation options</string>
<string name="content_description_conversation_details_options_tab_header">Options</string>
<string name="content_description_conversation_details_participants_tab_header">Participants</string>
<string name="content_description_conversation_details_close_btn">Close conversation details</string>
<string name="content_description_conversation_details_guests_action">adjust guest access</string>
<string name="content_description_conversation_details_self_deleting_action">adjust self-deleting time</string>
<string name="content_description_user_profile_more_btn">Open conversation options</string>
<string name="content_description_user_profile_close_btn">Go back to conversation details</string>
<string name="content_description_user_profile_edit_role_btn">Edit role</string>
<string name="content_description_user_profile_copy_phone_btn">Copy phone</string>
<string name="content_description_user_profile_copy_email_btn">Copy email</string>
<string name="content_description_user_profile_open_device_btn">open device details</string>
<string name="content_description_connection_request_close_btn">Close connection request view</string>
<string name="content_description_search_text_in_conversation_btn">Search text messages</string>
<string name="content_description_see_media_in_conversation_btn">Open overview of pictures and files</string>
<string name="content_description_add_participants_close">Close add participants view</string>
<string name="content_description_add_participants_search_field">Search people by name or username</string>
<string name="content_description_add_participants_back_btn">Go back to add participants view</string>
<string name="content_description_home_profile_btn">Your profile</string>
<string name="content_description_home_profile_btn_with_notification">Your profile, one unread hint.</string>
<string name="content_description_open_label">open</string>
<string name="content_description_join_call_label">join a call</string>
<string name="content_description_share_label">share</string>
<string name="content_description_edit_label">edit</string>
<string name="content_description_select_label">select</string>
<string name="content_description_unselect_label">unselect</string>
<string name="content_description_selected_label">selected</string>
<string name="content_description_toggle_setting_label">toggle setting</string>
<string name="content_description_edit_guests_option_back_btn">Go back to conversation details</string>
<string name="content_description_edit_self_delete_back_btn">Go back to conversation details</string>
<string name="content_description_accept_or_ignore_connection_label">accept or ignore the request</string>
<string name="content_description_open_user_profile_label">open profile</string>
<string name="content_description_open_conversation_label">open conversation</string>
<string name="content_description_open_service_label">open app</string>
<string name="content_description_change_it_label">change it</string>
<string name="content_description_open_link_label">open link</string>
<string name="content_description_alert">Alert</string>
<string name="content_description_drop_down">Dropdown</string>
<string name="content_description_close_dropdown">close dropdown</string>
<string name="content_description_open_notification_settings_label">open notification settings</string>
<string name="content_description_new_conversation_close_btn">Close new conversation view</string>
<string name="content_description_new_conversation_back_btn">Go back to new conversation view</string>
<string name="content_description_new_conversation_name_back_btn">Go back to new conversation view</string>
<string name="content_description_new_group_name_field">Type group name</string>
<string name="content_description_new_channel_name_field">Type channel name</string>
<string name="content_description_new_conversation_options_heading">Conversation options</string>
<string name="content_description_new_conversation_history_heading">Conversation history options</string>
<string name="content_description_new_conversation_history_custom_heading">Conversation history custom</string>
<string name="content_description_new_conversation_history_back_btn">Go back to conversation history options</string>
<string name="content_description_new_conversation_history_custom_change_time">Change time option</string>
<string name="content_description_new_group_options_back_btn">Go back to new group creation</string>
<string name="content_description_new_channel_options_back_btn">Go back to new channel creation</string>
<string name="content_description_pending_connection_badge">pending approval of connection request</string>
<string name="content_description_self_profile_close">Close your profile</string>
<string name="content_description_self_profile_heading">Your profile</string>
<string name="content_description_self_profile_avatar">Your profile picture</string>
<string name="content_description_self_profile_profile_name">Profile name, %s</string>
<string name="content_description_self_profile_username">Username, %s</string>
<string name="content_description_self_profile_team">Team name, %s</string>
<string name="content_description_self_profile_change_status">change availability status</string>
<string name="content_description_self_profile_new_account_btn">Create a new team or personal account or log in</string>
<string name="content_description_self_profile_manage_team_btn">Manage team</string>
<string name="content_description_change_picture_back_btn">Go back to your profile overview</string>
<string name="content_description_welcome_screen_close_btn">Close new team creation and login view</string>
<string name="content_description_login_back_btn">Go back to new team creation and login view</string>
<string name="content_description_login_user_identifier_field">enter your email or username</string>
<string name="content_description_login_email_field">enter your email</string>
<string name="content_description_enterprise_login_email_field">enter your email or sso code</string>
<string name="content_description_login_password_field">enter your password</string>
<string name="content_description_login_sso_code_field">enter your SSO code or Wire email</string>
<string name="content_description_whats_new_welcome_item">Welcome to Wire\'s New Android App, link to support page</string>
<string name="content_description_whats_new_all_releases_item">All Android release notes, link to release note overview</string>
<string name="content_description_whats_new_release_item">%1$s, %2$s, link to release details</string>
<string name="content_description_empty"> </string>
<!-- Non translatable strings-->
<string name="url_android_release_notes" translatable="false">https://medium.com/wire-news/android-updates/home</string>
<string name="url_android_release_notes_feed" translatable="false">https://medium.com/feed/wire-news/tagged/android</string>
<string name="url_maps_location_coordinates_fallback" translatable="false">https://maps.google.com/maps?z=%1d&q=loc:%2f+%2f</string>
<!-- Wire Urls - Non translatable -->
<string name="url_wire_website" translatable="false">https://www.wire.com</string>
<string name="url_support" translatable="false">https://support.wire.com</string>
<string name="url_report_misuse" translatable="false">https://support.wire.com/hc/articles/202857164</string>
<string name="url_terms_of_use_legal" translatable="false">https://wire.com/legal</string>
<string name="url_privacy_policy" translatable="false">https://wire.com/privacy-policy#:~:text=We%20process%20individual%20data%20about,%C2%A7%201%20a)%20GDPR).</string>
<string name="url_create_account_learn_more" translatable="false">https://support.wire.com/hc/articles/115004082129</string>
<string name="url_decryption_failure_learn_more" translatable="false">https://support.wire.com/hc/articles/207948115</string>
<string name="url_federation_support" translatable="false">https://support.wire.com/hc/categories/4719917054365</string>
<string name="url_file_sharing_restricted_learn_more" translatable="false">https://support.wire.com/hc/articles/4406404582673</string>
<string name="url_learn_about_conversation_search" translatable="false">https://support.wire.com/hc/articles/115001426529</string>
<string name="url_learn_about_search" translatable="false">https://support.wire.com/hc/articles/203121850</string>
<string name="url_legal_hold_learn_more" translatable="false">https://support.wire.com/hc/articles/360002018278</string>
<string name="url_message_details_offline_backends_learn_more" translatable="false">https://support.wire.com/hc/articles/9357718008093</string>
<string name="url_mls_learn_more" translatable="false">https://support.wire.com/hc/articles/12434725011485</string>
<string name="url_message_details_reactions_learn_more" translatable="false">https://support.wire.com/hc/articles/212053645</string>
<string name="url_message_details_read_receipts_learn_more" translatable="false">https://support.wire.com/hc/articles/360000665277</string>
<string name="url_self_client_fingerprint_learn_more" translatable="false">https://support.wire.com/hc/articles/207692235</string>
<string name="url_self_client_verification_learn_more" translatable="false">https://support.wire.com/hc/articles/207693005</string>
<string name="url_system_message_learn_more_about_mls" translatable="false">https://support.wire.com/hc/articles/12434725011485</string>
<string name="url_welcome_to_new_android" translatable="false">https://support.wire.com/hc/articles/6655706999581</string>
<string name="url_why_verify_conversation" translatable="false">https://support.wire.com/hc/articles/207859815</string>
<string name="url_how_to_add_favorites" translatable="false">https://support.wire.com/hc/articles/360002855557</string>
<string name="url_how_to_add_folders" translatable="false">https://support.wire.com/hc/articles/360002855817</string>
<string name="url_wire_plans" translatable="false">https://wire.com/pricing</string>
<string name="url_team_management_login" translatable="false">https://teams.wire.com/login</string>
<string name="url_wire_enterprise" translatable="false">https://wire.com/en/enterprise</string>
<string name="url_wire_create_team" translatable="false">https://teams.wire.com/register/email</string>
<string name="url_create_channel_learn_more" translatable="false">https://support.wire.com/hc/articles/25732551379101</string>
<string name="url_change_email" translatable="false">https://support.wire.com/hc/articles/203762940</string>
<string name="url_delete_personal_account" translatable="false">https://support.wire.com/hc/articles/207555795</string>
<string name="url_system_message_learn_more_about_e2ee" translatable="false">https://support.wire.com/hc/articles/10898523878173</string>
<string name="url_e2ee_id_shield" translatable="false">https://support.wire.com/hc/articles/9211300150685</string>
<string name="url_how_to_add_apps" translatable="false">https://support.wire.com/hc/articles/360000296158</string>
<string name="create_group_with_shared_drive_learn_more_url" translatable="false">https://support.wire.com/hc/articles/32207749480477</string>
<string name="url_call_network_quality_learn_more" translatable="false">https://support.wire.com/hc/articles/34087740781213</string>
<!-- Navigation -->
<string name="vault_screen_title">Vault</string>
<string name="channels_screen_title">Channels</string>
<string name="archive_screen_title">Archive</string>
<string name="archive_screen_empty_state_title">Nothing archived yet 👻</string>
<string name="archive_screen_empty_state_description">To keep your conversation list tidy, move unused conversations here. You can always unarchive those later.</string>
<string name="user_profile_screen_title">User Profile</string>
<string name="settings_screen_title">Settings</string>
<string name="app_settings_screen_title">App Settings</string>
<string name="give_feedback_screen_title">Give Feedback</string>
<string name="report_bug_screen_title">Report Bug</string>
<string name="about_app_screen_title">About This App</string>
<string name="settings_privacy_policy_label">Privacy Policy</string>
<string name="settings_terms_of_use_label">Legal</string>
<string name="settings_wire_website_label">Wire Website</string>
<string name="label_copyright">Copyright</string>
<string name="label_copyright_value" translatable="false">© Wire Swiss GmbH</string>
<string name="item_dependencies_title">Dependencies:</string>
<string name="support_screen_title">Support</string>
<string name="report_misuse_screen_title">Report misuse</string>
<string name="backup_and_restore_screen_title">Back up & Restore Conversations</string>
<string name="search_bar_conversations_hint">Search conversations</string>
<string name="search_no_results">No matches found</string>
<string name="team_management_screen_title">Manage Team</string>
<string name="meetings_screen_title">Meetings</string>
<!--Whats New -->
<string name="whats_new_screen_title">What\'s new</string>
<string name="whats_new_welcome_to_new_android_app_label">👋 Welcome to Wire\'s New Android App!</string>
<string name="whats_new_release_notes_group_title">Release Notes</string>
<string name="whats_new_android_release_notes_label">All Android Release Notes</string>
<!-- Settings -->
<string name="settings_backups_group_title">Backups</string>
<string name="settings_other_group_title">Other</string>
<string name="settings_backup_info">Create a backup to preserve your conversation history. You can use this to restore history if you lose your device or switch to a new one.\n\nChoose a strong password to protect the backup file.</string>
<string name="settings_backup_last_backup_title">Last Backup</string>
<string name="settings_backup_last_backup_date">The most recent backup from this device has been created on %1$s at %2$s.</string>
<string name="settings_backup_last_backup_date_no_time">You did not create a backup from this device yet.</string>
<string name="settings_backup_create">Create a Backup</string>
<string name="settings_backup_restore">Restore from Backup</string>
<!-- Welcome -->
<string name="welcome_footer_text">Want to chat with friends and family?</string>
<string name="welcome_footer_link">Create a private account for free</string>
<string name="welcome_button_create_personal_account">Create a Personal Account</string>
<string name="welcome_screen_carousel_item_message_1">Welcome to Wire, the most secure collaboration platform!</string>
<string name="welcome_screen_carousel_item_message_2">Absolute confidence your information is\u00A0secure</string>
<string name="welcome_screen_carousel_item_message_3">Encrypted audio & video conferencing with up\u00A0to 50\u00A0participants</string>
<string name="welcome_screen_carousel_item_message_4">Secure file sharing with teams and\u00A0clients</string>
<string name="welcome_screen_carousel_item_message_5">Wire is independently audited and ISO, CCPA, GDPR, SOX-compliant</string>
<string name="welcome_button_create_team">Create a Team</string>
<string name="server_details_dialog_body">Backend name:\n%1$s\n\nBackend URL:\n%2$s</string>
<string name="server_details_dialog_body_with_proxy">Backend name:\n%1$s\n\nBackend URL:\n%2$s\n\nProxy URL:\n%3$s\n\nProxy authentication:\n%4$s</string>
<string name="server_details_dialog_title">On-premises Backend</string>
<string name="welcome_migration_dialog_title">Welcome To Our New Android App 👋</string>
<string name="welcome_migration_dialog_content">We rebuilt the app to make it more usable for everyone.\n\nFind out more about Wire\'s redesigned app—new options and improved accessibility, with the same strong security.</string>
<string name="welcome_migration_dialog_continue">Start Using Wire</string>
<!-- API Versioning Dialogs -->
<string name="api_versioning_client_update_required_title">Update required</string>
<string name="api_versioning_client_update_required_message">You are missing out on new features. Update to the latest version of Wire to continue using the app with this account.</string>
<string name="api_versioning_server_version_not_supported_title">Server version not supported</string>
<string name="api_versioning_server_version_not_supported_message">Your Wire server needs to be updated. Please notify your system administrator.</string>
<!-- Migration -->
<string name="migration_title">Setting up Wire</string>
<string name="migration_message">Please wait while we set up the app for you</string>
<string name="migration_message_unknown">Please wait while we migrate data for you</string>
<string name="migration_accounts_message">Migrating your accounts...</string>
<string name="migration_messages_message">Migrating your messages...</string>
<string name="migration_title_step">Step %1$d/%2$d</string>
<string name="migration_title_almost_done">Almost done!</string>
<string name="migration_title_updated">Setting up Wire</string>
<string name="migration_login_required">In order to migrate your messages from the old version of Wire, you need to log in to your account.</string>
<string name="migration_login_required_specific_account">In order to migrate your messages from the old version of Wire, you need to log in to your account %s.</string>
<string name="migration_login_required_specific_account_name">“%1$s (@%2$s)“</string>
<string name="migration_messages_failure">Unfortunately, not all messages and conversations could not be migrated due to incompatibility with the older version of Wire (error code: %s)</string>
<string name="migration_cancel_title">Cancel migration</string>
<string name="migration_cancel_message">Are you sure you want to close the application and cancel the ongoing migration?</string>
<!-- Enterprise Login -->
<string name="enterprise_login_welcome">Enter your email to start!</string>
<string name="enterprise_login_password_title">Enter your password to log in</string>
<string name="enterprise_login_credentials_title">Enter your credentials to log in</string>
<string name="enterprise_login_next">Next</string>
<string name="enterprise_login_user_identifier_label">EMAIL OR SSO CODE</string>
<string name="enterprise_login_user_identifier_label_placeholder">Enter Email or SSO Code</string>
<string name="enterprise_login_error_invalid_user_identifier">Please enter a valid email or SSO code</string>
<string name="enterprise_login_create_account_label">Don\'t have a Wire account?</string>
<string name="enterprise_login_create_account_text_button">Create account or team</string>
<string name="enterprise_login_on_prem_welcome_title">Welcome to Wire Enterprise for %s!</string>
<string name="enterprise_login_verification_code_title">You have mail</string>
<!-- Login -->
<string name="login_title">Log in</string>
<string name="login_forgot_password">Forgot password?</string>
<string name="login_user_identifier_placeholder">jane@example.com or jane.doe</string>
<string name="login_email_placeholder">jane@example.com</string>
<string name="login_email_label">EMAIL</string>
<string name="login_user_identifier_label">EMAIL OR USERNAME</string>
<string name="login_proxy_identifier_label">PROXY EMAIL OR USERNAME</string>
<string name="login_error_invalid_credentials_title">Invalid information</string>
<string name="login_error_invalid_credentials_message">These account credentials are incorrect.
Please verify your details and try again.
</string>
<string name="login_error_invalid_user_identifier">This email or username is invalid. Please verify and try again.</string>
<string name="login_error_invalid_email">This email is invalid. Please verify and try again.</string>
<string name="login_error_user_already_logged_in_title">Account in use</string>
<string name="login_error_user_already_logged_in_message">You are already logged in with those credentials on this device.</string>
<string name="login_sso_error_invalid_cookie_title">Invalid Cookie!</string>
<string name="login_sso_error_invalid_cookie_message">The session is invalid or expired! Please try again to log in.</string>
<string name="login_password_placeholder">Password</string>
<string name="login_password_label">PASSWORD</string>
<string name="login_tab_email">EMAIL</string>
<string name="login_tab_sso">SSO LOGIN</string>
<string name="login_sso_code_label">SSO CODE OR EMAIL</string>
<string name="login_error_invalid_sso_code">Please enter a valid SSO code.</string>
<string name="login_error_invalid_sso_code_format">Enter a valid SSO code</string>
<string name="login_error_request_2fa_with_handle_title">Login with email</string>
<string name="login_error_request_2fa_with_handle_message">You can\'t use your username as two-factor authentication is activated. Please log in with your email instead.</string>
<string name="login_error_unauthorized_title">Unauthorized</string>
<string name="login_error_unauthorized_message">This account is no longer authorized to log in.</string>
<string name="login_error_pending_activation_title">Pending activation</string>
<string name="login_error_pending_activation_message">The account you are trying to access is pending activation. Please verify your details.</string>
<string name="deleted_user_error_title">Deleted account</string>
<string name="deleted_user_error_message">You were logged out because your account was
deleted.
</string>
<string name="removed_client_error_title">Removed Device</string>
<string name="removed_client_error_message">You were logged out because your device was
removed.
</string>
<string name="session_expired_error_title">Session expired</string>
<string name="session_expired_error_message">The application did not communicate with the server
for a long period of time, or your session has been remotely invalidated.
</string>
<string name="conversation_history_wipe_explanation">According to your team\'s security
settings, your conversation history has also been deleted.</string>
<!-- Second Factor Authentication -->
<string name="second_factor_authentication_title">Verify your account</string>
<string name="second_factor_authentication_instructions_label">Please, check your email %1$s for the verification code and enter it below.</string>
<string name="second_factor_code_error">Invalid code, or maximum attempts exceeded. Please retry, or request another code</string>
<!-- Remove Device -->
<string name="remove_device_title">Remove a Device</string>
<string name="remove_device_message">Remove one of your other devices to start using Wire on
this one.
</string>
<string name="remove_device_label">YOUR DEVICES</string>
<string name="remove_device_id_and_time_label">Proteus ID: %1$s\nAdded: %2$s</string>
<string name="remove_device_id_and_time_label_active_label">Proteus ID: %1$s\nAdded: %2$s\nActive: %3$s</string>
<string name="remove_device_id_label">Proteus ID: %1$s</string>
<string name="remove_device_mls_thumbprint_label">MLS Thumbprint: %1$s</string>
<string name="remove_device_dialog_title">Remove the following device?</string>
<string name="remove_device_invalid_password">Invalid password</string>
<string name="remove_device_details_description">Remove this device if you have stopped using it. You will be logged out of this device immediately.</string>
<string name="remove_device_details_description_with_wipe">Remove your device if you have stopped using it. According to your team\'s security settings, your conversation history will also be deleted.</string>
<string name="item_title_e2ei_certificate">End-to-end Identity Certificate</string>
<string name="item_subtitle_status_e2ei_certificate">Status</string>
<string name="item_subtitle_serial_number_e2ei_certificate">Serial Number</string>
<string name="show_e2ei_certificate_details_button">Show Certificate Details</string>
<string name="get_e2ei_certificate_button">Get Certificate</string>
<string name="update_e2ei_certificat_button">Update Certificate</string>
<string name="e2ei_certificat_status_valid">Valid</string>
<string name="e2ei_certificat_status_expired">Expired</string>
<string name="e2ei_certificat_status_revoked">Revoked</string>
<string name="e2ei_certificat_status_not_activated">Not activated</string>
<!-- Register Device -->
<string name="register_device_title">Add this Device</string>
<string name="register_device_text">Enter your password to use Wire on this device.</string>
<!-- Delete Message -->
<string name="delete_message_dialog_title">Delete Message?</string>
<string name="delete_message_dialog_message">If you delete the message for yourself, it will only be visible to other participants.\n\nIf you delete it for everyone, the message will be removed for all participants.\n\nA deleted message can not be restored.</string>
<string name="label_delete_for_me">Delete for Me</string>
<string name="label_delete_for_everyone">Delete for Everyone</string>
<string name="delete_message_for_yourself_dialog_title">Delete this Message for yourself?</string>
<string name="delete_message_for_yourself_dialog_message">If you delete the message for yourself, it will only be visible to other participants.\n\nA deleted message can not be restored.</string>
<string name="deleted_message_text">Deleted message</string>
<string name="deleted_message_options_closed">The options have been closed as this message is no longer available.</string>
<string name="deleted_conversation_options_closed">The options have been closed as this conversation is no longer available.</string>
<!-- Replies/Quotes to other messages -->
<string name="label_quote_invalid_or_not_found">You can not see this message</string>
<string name="label_quote_original_message_is_a_picture">Picture</string>
<string name="label_quote_original_message_date">Original message from %s</string>
<!-- Create Account -->
<string name="create_account_selector_title">How will you use Wire?</string>
<string name="create_account_selector_team_title">For collaboration</string>
<string name="create_account_selector_team_subtitle">Work securely with your team.</string>
<string name="create_account_selector_team_highlight_one">Communicate with your colleagues and share documents via a single app</string>
<string name="create_account_selector_team_highlight_two">Start for free, upgrade anytime</string>
<string name="create_account_selector_personal_title">For private use</string>
<string name="create_account_selector_personal_subtitle">Chat with friends and family.</string>
<string name="create_account_selector_personal_highlight_one">Send messages and share pictures</string>
<string name="create_account_selector_personal_highlight_two">Always free</string>
<string name="create_personal_account_title">Create Personal Account</string>
<string name="create_personal_account_summary_title">Personal Account Created</string>
<string name="create_personal_account_text">Securely chat with friends and family using Wire\'s public cloud server.</string>
<string name="create_personal_account_email_text">Enter your email to start using the most secure collaboration platform.</string>
<string name="create_personal_account_details_text">Enter your personal details:</string>
<string name="create_personal_account_summary_text">You have successfully created your personal account. Start communicating securely – wherever you are!</string>
<string name="create_team_title">Create Team</string>
<string name="create_team_summary_title">Team Created</string>
<string name="create_team_content_title">Wire for Free</string>
<string name="create_team_text">Messaging for small organizations or single person consulting firms.\n</string>
<string name="create_team_learn_more">Learn more about plans and pricing</string>
<string name="create_team_email_text">Enter your email to create your team:</string>
<string name="create_team_details_text">Enter your email to create your team:</string>
<string name="create_team_summary_text">You have successfully created your team account. Start communicating securely – wherever you are!</string>
<string name="create_account_email_placeholder">jane@example.com</string>
<string name="create_account_email_label">EMAIL</string>
<string name="create_account_email_footer_text">Already have an account? </string>
<string name="create_account_email_terms_dialog_title">Terms of Use</string>
<string name="create_account_email_terms_dialog_text">By clicking continue you are agreeing to our Terms of Use and Privacy Policy.</string>
<string name="create_account_email_share_anonymous_data_label">I agree to share anonymous usage data. Find all details in our</string>
<string name="create_account_email_share_anonymous_data_link_label">Privacy Policy</string>
<string name="create_account_email_share_anonymous_data_optional_label">(Optional)</string>
<string name="create_account_email_backlink_to_team_label">Looking for team collaboration?</string>
<string name="create_account_email_backlink_to_team_suffix_url" translatable="false">/signup/account?origin=android</string>
<string name="create_account_email_terms_dialog_view_policy">View ToU and Privacy Policy</string>
<string name="create_account_email_already_in_use_error">The email address is already in use.</string>
<string name="create_account_email_blacklisted_error">Your email has been identified as not trusted, for example, due to a rejection by a spam filter.</string>
<string name="create_account_email_invalid_error">Please enter a valid format for your email.</string>
<string name="create_account_email_domain_blocked_error">You can\'t create this account as your email domain is intentionally blocked.</string>
<string name="create_account_details_first_name_placeholder">Jane</string>
<string name="create_account_details_name_placeholder">Enter your name</string>
<string name="create_account_details_password_placeholder">Enter password</string>
<string name="create_account_details_password_confirm_placeholder">Confirm password</string>
<string name="create_account_details_name_label">NAME</string>
<string name="create_account_details_first_name_label">FIRST NAME</string>
<string name="create_account_details_last_name_placeholder">Doe</string>
<string name="create_account_details_last_name_label">LAST NAME</string>
<string name="create_account_details_team_name_placeholder">Team Awesome</string>
<string name="create_account_details_team_name_label">TEAM NAME</string>
<string name="create_account_details_password_description">Use at least 8 characters, with one lowercase letter, one capital letter, a number, and a special character.</string>
<string name="create_account_details_password_error">Invalid password</string>
<string name="create_account_details_password_not_matching_error">Passwords do not match</string>
<string name="create_account_details_confirm_password_label">CONFIRM PASSWORD</string>
<string name="create_account_code_text">Please, check your email %1$s for the verification code and enter it below.</string>
<string name="create_account_code_resend">Resend code</string>
<string name="create_account_code_error">Invalid code, or maximum attempts exceeded. Please retry, or request another code</string>
<string name="create_account_code_error_title">Invalid information</string>
<string name="create_account_code_error_team_members_limit_reached">This team has reached its membership limit.</string>
<string name="create_account_code_error_personal_account_creation_restricted">This application version does not allow creation of personal accounts.</string>
<string name="create_account_code_error_team_creation_restricted">This application version does not allow creation of teams.</string>
<string name="create_account_username_title">Your Username</string>
<string name="create_account_username_placeholder">jane.doe</string>
<string name="create_account_username_label">USERNAME</string>
<string name="create_account_set_username_title">Set username</string>
<string name="create_account_username_text">Enter your username. It helps others to find you in Wire and connect with you.</string>
<string name="create_account_username_taken_error">This username is already taken. Please choose another one.</string>
<string name="create_account_username_description">At least 2 characters, a-z, 0-9, “_”, “-” and “.”</string>
<!-- Conversations -->
<string name="calls_label_missed_calls">MISSED CALLS</string>
<string name="calls_label_calls_history">CALL HISTORY</string>
<string name="conversation_label_new_activity">NEW ACTIVITY</string>
<string name="conversation_label_favorites">FAVORITES</string>
<string name="conversation_label_conversations">CONVERSATIONS</string>
<string name="mention_label_unread_mentions">UNREAD MENTIONS</string>
<string name="mention_label_all_mentions">ALL MENTIONS</string>
<string name="label_message_status_deleted">Deleted</string>
<string name="label_message_status_edited">Edited</string>
<string name="conversations_screen_title">Conversations</string>
<string name="conversations_all_tab_title">All</string>
<string name="conversations_calls_tab_title">Calls</string>
<string name="conversations_mentions_tab_title">Mentions</string>
<string name="sent_a_message_with_content">sent a message with %s content</string>
<string name="sent_a_message_with_unknown_content">sent a message with unknown content</string>
<string name="new_group_title">New Group</string>
<string name="new_channel_title">New Channel</string>
<string name="channel_access_label">Access</string>
<string name="channel_private_label">Private</string>
<string name="channel_public_label">Public</string>
<string name="channel_access_description">All team members can join public channels. But, only channel admins or members can add people to a private channel.\nA private channel can not be changed to public later.</string>
<string name="channel_access_short_description">All team members can join public channels. But, only channel admins or members can add people to a private channel.</string>
<string name="channel_add_permission_description">Select who can add participants to a private channel</string>
<string name="channel_add_permission_admin_label">Admins</string>
<string name="channel_add_permission_admin_members_label">Admins and members</string>
<string name="channel_history_label">Conversation history</string>
<string name="channel_history_description">Select a period. When participants join this channel, they can follow the history for this time frame.</string>
<string name="channel_history_freemium_upgrade_title">Show older messages?</string>
<string name="channel_history_freemium_upgrade_description">To show older messages to channel members, your team needs configuration. Please contact your team admin.</string>
<string name="channel_history_freemium_upgrade_now">Upgrade now</string>
<string name="channel_history_off">Off</string>
<string name="channel_history_unlimited">Unlimited</string>
<string name="channel_history_custom">Custom</string>
<string name="channel_history_days">days</string>
<string name="channel_history_weeks">weeks</string>
<string name="channel_history_months">months</string>
<string name="channel_history_custom_amount_label">AMOUNT</string>
<string name="channel_history_custom_time_label">TIME</string>
<string name="create_regular_group_button_label">Create Group</string>
<string name="create_channel_button_label">Create Channel</string>
<string name="new_group_description">Up to 500 people can join a group conversation.</string>
<string name="group_name_title">Group Name</string>
<string name="channel_name_title">Channel Name</string>
<string name="conversation_name_placeholder">Enter a name</string>
<string name="group_name_description">Give this group a meaningful name.</string>
<string name="channel_name_description">Give this channel a meaningful name.</string>
<string name="protocol">Protocol</string>
<string name="mls">MLS</string>
<string name="cipher_suite">Cipher Suite</string>
<string name="last_key_material_update_label">Last Key Material Update</string>
<string name="group_state_label">Group State</string>
<string name="empty_regular_group_name_error">Please enter a group name</string>
<string name="empty_channel_name_error">Please enter a channel name</string>
<string name="regular_group_name_exceeded_limit_error">Group name should not exceed 64 characters</string>
<string name="channel_name_exceeded_limit_error">Channel name should not exceed 64 characters</string>
<string name="conversation_can_not_be_created_title">Conversation can\'t be created</string>
<string name="create_channel_error_forbidden_message">Feature is not available, please check with your team admin</string>
<string name="conversation_can_not_be_created_federation_conflict_description">People from backends %1$s and %2$s can\'t join the same conversation.\n\nTo create the conversation, remove affected participants.</string>
<string name="conversation_can_not_be_created_edit_participant_list">Edit Participants List</string>
<string name="conversation_can_not_be_created_discard_creation">Discard Conversation Creation</string>
<string name="asset_message_tap_to_download_text">Tap to download</string>
<string name="asset_message_upload_in_progress_text">Uploading…</string>
<string name="asset_message_download_in_progress_text">Downloading…</string>
<string name="asset_message_downloaded_internally_text">Tap to view</string>
<string name="asset_message_saved_externally_text">Saved</string>
<string name="asset_message_failed_download_text">File not available</string>
<string name="asset_message_failed_upload_text">File upload failed</string>
<string name="asset_download_not_available_text">File is not available anymore</string>
<string name="asset_download_deleted_text">You can\'t download this file as it was deleted.</string>
<string name="asset_download_dialog_text">Do you want to open the file, or save it to your
device\'s download folder?
</string>
<string name="asset_download_dialog_open_text">Open</string>
<string name="asset_download_dialog_save_text">Save</string>
<string name="member_name_deleted_label">Deleted account</string>
<string name="member_name_you_label_titlecase">You</string>
<string name="member_name_you_label_lowercase">you</string>
<string name="label_add_participants">Add Participants</string>
<string name="username_unavailable_label">Name not available</string>
<string name="temporary_user_label">%s left</string>
<string name="conversation_unavailable_label">Conversation name not available</string>
<string name="conversation_details_title">Conversation Details</string>
<string name="conversation_details_options_tab">OPTIONS</string>
<string name="conversation_details_participants_tab">PARTICIPANTS</string>
<string name="conversation_details_options_group_name">GROUP NAME</string>
<string name="conversation_details_conversation_admins">ADMINS (%d)</string>
<string name="conversation_details_conversation_members">MEMBERS (%d)</string>
<string name="conversation_details_conversation_apps">APPS (%d)</string>
<string name="conversation_details_participants_info">This conversation has %s participants.\nUp to 500 people can join a conversation.</string>
<string name="conversation_details_participants_count">%s participants</string>
<string name="conversation_details_show_all_participants">Show all participants (%d)</string>
<string name="conversation_details_participants_title">Conversation Participants</string>
<string name="conversation_details_conversation_participants_add">Add participants</string>
<string name="conversation_participant_you_label">(You)</string>
<string name="conversation_details_is_classified">SECURITY LEVEL: VS-NfD</string>
<string name="conversation_details_is_not_classified">SECURITY LEVEL: UNCLASSIFIED</string>
<string name="conversation_options_self_deleting_messages_label">Self-deleting messages</string>
<string name="conversation_options_self_deleting_messages_description">When this is on, all messages in this conversation will disappear after a certain time.</string>
<string name="conversation_options_self_deleting_messages_shared_drive_description">The feature is not available for conversations with a Shared Drive.</string>
<string name="conversation_options_guests_label">Guests</string>
<string name="conversation_details_guest_description">When this is ON, people from outside your team can join this conversation</string>
<string name="conversation_options_guest_description">Turn this option ON to open this conversation to people outside your team, even if they don\'t have Wire.</string>
<string name="conversation_options_guest_not_editable_description">You cannot disable the guest option in this conversation, since it has been created by someone from another team.</string>
<string name="conversation_options_services_label">Apps</string>
<string name="conversation_details_apps_description">When this is ON, you open this conversation to apps.</string>
<string name="conversation_options_services_description">Turn this option ON to open this conversation to apps.</string>
<string name="conversation_options_renamed">Conversation renamed</string>
<string name="disable_guest_dialog_title">Disable guest access?</string>
<string name="disable_guest_dialog_text">Current guests will be removed from the conversation. New guests will not be allowed.</string>
<string name="disable_services_dialog_title">Disable app access?</string>
<string name="disable_services_dialog_text">Current apps will be removed from the conversation. New apps will not be allowed.</string>
<string name="leave_conversation_menu_item">Leave Conversation…</string>
<string name="leave_conversation_dialog_title">Leave “%s”?</string>
<string name="cannot_leave_conversation_dialog_title">Cannot leave “%s”.</string>
<string name="leave_conversation_dialog_description">You will then no longer be able to send or read messages in this conversation on any device.</string>
<string name="leave_conversation_dialog_delete_fully_check">Delete the conversation and its content for me on all my devices</string>
<string name="leave_conversation_admin_options_dialog_description_with_promote">You\'re the only admin.\nPromote another participant before leaving, or delete the group if it is no longer needed.</string>
<string name="leave_conversation_admin_options_dialog_description_with_promote_no_delete">You\'re the only admin.\nPromote another participant before leaving.</string>
<string name="leave_conversation_admin_options_dialog_description_no_promote">You\'re the only admin. The other participants can\'t be admins.\nAdd at least one team member and promote them as an admin before you leave. Alternatively, delete the group if it is no longer needed.</string>
<string name="leave_conversation_admin_options_dialog_description_no_promote_no_delete">There are no other eligible admins in the group and as a personal user you cannot delete the group. However, add another team member and make that user admin to delete the group.</string>
<string name="leave_conversation_admin_options_dialog_promote_button">Promote new admin</string>
<string name="leave_conversation_admin_options_dialog_delete_button">Delete group</string>
<string name="promote_admin_screen_title">Promote new admin</string>
<string name="promote_admin_search_placeholder">Enter a name or email</string>
<string name="promote_admin_button">Promote as admin and leave group</string>
<string name="promote_admin_error_failed_to_promote">Failed to promote user to admin</string>
<string name="promote_admin_error_failed_to_leave">Failed to leave conversation</string>
<string name="delete_conversation_conversation_menu_item">Delete Conversation…</string>
<string name="delete_conversation_conversation_dialog_title">Remove “%s”?</string>
<string name="delete_conversation_conversation_dialog_description">This will delete the group and all content for all participants on all devices. There is no option to restore the content. All participants will be notified.</string>
<string name="delete_conversation_locally_conversation_dialog_title">Delete “%s” conversation for me?</string>
<string name="delete_conversation_locally_conversation_dialog_description">You won’t be able to access the conversation and its content. There is no option to restore it.</string>
<string name="delete_conversation_locally_delete_for_me_label">Delete for Me</string>
<!-- Import/Export External Media -->
<string name="import_media_content_title">Share With Wire</string>
<string name="import_media_searchbar_title">Search for conversation</string>
<string name="import_media_send_button_title">Send</string>
<string name="export_media_subject_title">Sharing Media from Wire</string>
<!--Read receipts -->
<string name="conversation_options_read_receipt_label">Read receipts</string>
<string name="conversation_options_read_receipt_description">When this is on, people can see when their messages in this conversation are read.</string>
<!-- Messages -->
<string name="message_details_title">Message Details</string>
<string name="message_details_reactions_tab">REACTIONS (%s)</string>
<string name="message_details_read_receipts_tab">READ RECEIPTS (%s)</string>
<string name="message_details_reactions_empty_text">No one reacted on this message yet 😱</string>
<string name="message_details_reactions_empty_learn_more">Learn more about reactions</string>
<string name="message_details_read_receipts_empty_text">No one read this message yet 👀</string>
<string name="message_details_read_receipts_empty_learn_more">Learn more about read receipts</string>
<!-- Messages Date and Time -->
<string name="message_datetime_now">Just now</string>
<plurals name="message_datetime_minutes_ago">
<item quantity="one">1 minute ago</item>
<item quantity="other">%1$d minutes ago</item>
</plurals>
<string name="message_datetime_today">Today, %s</string>
<string name="message_datetime_yesterday">Yesterday, %s</string>
<string name="message_datetime_other">%s</string>
<!-- Attachment options -->
<string name="attachment_share_file">File</string>
<string name="attachment_share_image">Gallery</string>
<string name="attachment_take_photo">Camera</string>
<string name="attachment_record_video">Video</string>
<string name="attachment_voice_message">Audio</string>
<string name="attachment_share_location">Location</string>
<!-- User Profile -->
<string name="user_profile_title">User Profile</string>
<string name="user_profile_close_description">Close User profile</string>
<string name="user_profile_logout">Log out</string>
<string name="user_profile_other_accs">Your Other Accounts</string>
<string name="user_profile_status_availability">Availability</string>
<string name="user_profile_new_account_text">New Team or Add Account</string>
<string name="user_profile_account_management">Manage Team</string>
<string name="user_profile_details_tab">Details</string>
<string name="user_profile_devices_tab">Devices</string>
<string name="user_profile_conversation_tab">Conversation</string>
<string name="user_profile_conversation_member">Member of the conversation ”%s”</string>
<string name="user_profile_conversation_role">ROLE</string>
<string name="user_profile_role_in_conversation">Role in ”%s”</string>
<string name="user_profile_role_change_error">There was an error trying to change the role. Please check your internet connection and try again</string>
<string name="user_profile_unblock_user">Unblock User</string>
<string name="user_profile_conversation_remove_button">Remove from conversation</string>
<string name="user_profile_logging_out_progress">Logging out...</string>
<string name="user_profile_qr_code">Open QR Code</string>
<string name="user_profile_qr_code_title">Share Profile</string>
<string name="user_profile_qr_code_share_link">Share Profile Link</string>
<string name="user_profile_qr_code_share_image_link">Share QR Code</string>
<string name="user_profile_create_team_card">Enjoy benefits of a team</string>
<string name="user_profile_qr_code_description">Share your profile to connect easily with other people. You must still accept a connection request before you two can start communicating.</string>
<string name="user_profile_create_team_card_button">Create a Team</string>
<string name="user_profile_create_team_description_card">Explore extra features for free with the same level of security.</string>
<!-- Remove Conversation Member Dialog -->
<string name="dialog_remove_conversation_member_title">Remove from conversation?</string>
<string name="dialog_remove_conversation_member_description">%1$s (@%2$s) will not be able to send or receive messages in this conversation.</string>
<string name="dialog_remove_conversation_member_error">There was an error while removing the participant from the conversation</string>
<string name="conversation_role_admin">Admin</string>
<string name="conversation_role_member">Member</string>
<!-- Logout Wipe Data Dialog -->
<string name="dialog_logout_wipe_data_title">Clear Data?</string>
<string name="dialog_logout_wipe_data_checkbox">Delete all your personal information and conversations on this device</string>
<string name="dialog_logout_wipe_data_cancel_description">Cancel logout</string>
<!-- User Profile status dialog-->
<string name="user_profile_change_status_dialog_available_title">Set yourself to Available</string>
<string name="user_profile_change_status_dialog_available_text">You will appear as Available to other people. You will receive notifications for incoming calls and for messages according to the Notifications setting in each conversation.</string>
<string name="user_profile_change_status_dialog_busy_title">Set yourself to Busy</string>
<string name="user_profile_change_status_dialog_busy_text">You will appear as Busy to other people. You will only receive notifications for mentions, replies, and calls in conversations that are not muted.</string>
<string name="user_profile_change_status_dialog_away_title">Set yourself to Away</string>
<string name="user_profile_change_status_dialog_away_text">You will appear as Away to other people. You will not receive notifications about any incoming calls or messages.</string>
<string name="user_profile_change_status_dialog_none_title">No Status Set</string>
<string name="user_profile_change_status_dialog_none_text">You will receive notifications for incoming calls and for messages according to the Notifications setting in each conversation.</string>
<string name="user_profile_change_status_dialog_checkbox_text">Do not display this information again</string>
<!-- Conversations BottomSheet -->
<string name="label_notifications">Notifications</string>
<string name="label_add_to_favourites">Add to Favorites</string>
<string name="label_remove_from_favourites">Remove from Favorites</string>
<string name="label_move_to_folder">Move to Folder...</string>
<string name="label_remove_from_folder">Remove from Folder “%1$s”</string>
<string name="label_new_folder">New Folder</string>
<string name="folder_create_description">Create a new folder by pressing the\n“New Folder” button</string>
<string name="label_move_to_archive">Move to Archive</string>
<string name="label_unarchive">Unarchive</string>
<string name="label_clear_content">Clear Content…</string>
<string name="label_block">Block</string>
<string name="label_unblock">Unblock</string>
<string name="label_leave_conversation">Leave Conversation</string>
<string name="label_delete_conversation_locally">Delete Conversation For Me</string>
<string name="label_delete_conversation">Delete Conversation</string>
<!-- Conversation filter BottomSheet -->
<string name="label_filter_conversations">Filter Conversations</string>
<string name="label_filter_all">All Conversations</string>
<string name="label_filter_favorites">Favorites</string>
<string name="label_filter_folders">Folders</string>
<string name="label_filter_group">Groups</string>
<string name="label_filter_one_on_one">1:1 Conversations</string>
<string name="label_filter_channels">Channels</string>
<string name="label_folders">Folders</string>
<!-- Muting options BottomSheet -->
<string name="muting_option_all_allowed_title">Everything</string>
<string name="muting_option_all_allowed_text">Receive notifications for this conversation about everything (including audio and video calls)</string>
<string name="muting_option_only_mentions_title">Calls, mentions and replies</string>
<string name="muting_option_only_mentions_text">Only receive notifications for this conversation when someone calls, mentions you or replies to you</string>
<string name="muting_option_all_muted_title">Nothing</string>
<string name="muting_option_all_muted_text">Receive no notifications for this conversation at all</string>
<!--Profile image-->
<string name="profile_image_top_bar_label">Profile picture</string>
<string name="profile_image_modal_sheet_header_title">Change Image</string>
<string name="profile_image_choose_from_gallery_menu_item">Choose from gallery</string>
<string name="profile_image_take_a_picture_menu_item">Take a picture</string>
<string name="profile_image_change_image_button_label">Change Picture…</string>
<!--Conversation-->
<string name="label_message_details">Message Details</string>
<string name="label_copy">Copy text</string>
<string name="label_share">Share</string>
<string name="label_edit">Edit text</string>
<string name="label_delete">Delete</string>
<string name="info_message_copied">Message copied</string>
<string name="conversation_banner_federated">federated users</string>
<string name="conversation_banner_externals">externals</string>
<string name="conversation_banner_guests">guests</string>
<string name="conversation_banner_services">apps</string>
<string name="conversation_banner_federated_externals_guests_services_present">Federated users, externals, guests and apps are present</string>
<string name="conversation_banner_federated_externals_guests_present">Federated users, externals and guests are present</string>
<string name="conversation_banner_federated_externals_services_present">Federated users, externals and apps are present</string>
<string name="conversation_banner_federated_guests_services_present">Federated users, guests and apps are present</string>
<string name="conversation_banner_federated_services_present">Federated users and apps are present</string>
<string name="conversation_banner_federated_guests_present">Federated users and guests are present</string>
<string name="conversation_banner_federated_externals_present">Federated users and Externals are present</string>
<string name="conversation_banner_externals_guests_services_present">Externals, guests and apps are present</string>
<string name="conversation_banner_externals_services_present">Externals and apps are present</string>
<string name="conversation_banner_externals_guests_present">Externals and guests are present</string>
<string name="conversation_banner_guests_services_present">Guests and apps are present</string>
<string name="conversation_banner_federated_present">Federated users are present</string>
<string name="conversation_banner_guests_present">Guests are present</string>
<string name="conversation_banner_externals_present">Externals are present</string>
<string name="conversation_banner_services_active">Apps are active</string>
<string name="conversation_history_loading">Loading conversation history...</string>
<string name="conversation_history_loaded">You made it to the top 🥳\nYou see all available messages.</string>
<!-- System messages -->
<string name="label_system_message_added_by_self">%1$s added %2$s to the conversation</string>
<string name="label_system_message_removed_by_self">%1$s removed %2$s from the conversation</string>
<string name="label_system_message_added_by_other">%1$s added %2$s to the conversation</string>
<string name="label_system_message_removed_by_other">%1$s removed %2$s from the conversation</string>
<plurals name="label_system_message_federation_member_removed">
<item quantity="one">%1$s was removed from the conversation</item>
<item quantity="other">%1$s were removed from the conversation</item>
</plurals>
<string name="label_system_message_federation_removed">**Your backend** stopped federating with %1$s.</string>
<string name="label_system_message_federation_conection_removed">The backends %1$s and %2$s stopped federating.</string>
<string name="label_system_message_left_the_conversation_by_self">%1$s left the conversation</string>
<string name="label_system_message_left_the_conversation_by_other">%1$s left the conversation</string>
<string name="label_system_message_other_called">%1$s called</string>
<string name="label_system_message_you_called">%1$s called</string>
<string name="label_system_message_and">%1$s and %2$s</string>
<plurals name="label_system_message_x_more">
<item quantity="other">%1$d more</item>
</plurals>
<string name="label_system_message_blocked_user">%1$s blocked this user</string>
<string name="label_system_message_renamed_the_conversation">%1$s renamed the conversation\n%2$s</string>
<plurals name="label_system_message_team_member_left">
<item quantity="one">%1$s was removed from the team</item>
<item quantity="other">%1$s were removed from the team</item>
</plurals>
<string name="label_system_message_user_not_available">This user is no longer available</string>
<string name="label_system_message_unsupported_protocol">The conversation is using an encryption protocol that is
not supported by this device. Some devices from the involved users might need updating.
</string>
<string name="label_system_message_new_conversation_receipt_mode">Read receipts are %1$s</string>
<string name="label_system_message_read_receipt_changed_by_self">%1$s turned read receipts %2$s for everyone</string>
<string name="label_system_message_read_receipt_changed_by_other">%1$s turned read receipts %2$s for everyone</string>
<string name="label_system_message_conversation_message_timer_activated_by_self">%1$s set self-deleting messages to %2$s for everyone</string>
<string name="label_system_message_conversation_message_timer_activated_by_other">%1$s set self-deleting messages to %2$s for everyone</string>
<string name="label_system_message_activated">activated</string>
<string name="label_system_message_conversation_message_timer_deactivated_by_self">%1$s turned **off** the timer for self-deleting messages for everyone</string>
<string name="label_system_message_conversation_message_timer_deactivated_by_other">%1$s turned **off** the timer for self-deleting messages for everyone</string>
<string name="label_system_message_deactivated">deactivated</string>
<string name="label_system_message_conversation_history_lost">You haven\'t used this device for a while. some messages may not appear here.</string>
<string name="label_system_message_conversation_mls_wrong_epoch_error_handled">You haven\'t updated this device for a while. In the meantime, the standard messaging protocol changed from Proteus to Messaging Layer Security (MLS). Due to this change, some messages may not appear here.</string>
<string name="label_system_message_conversation_history_lost_protocol_changed">You didn\'t update your app in time. Some messages may not appear here.</string>
<string name="label_system_message_conversation_protocol_changed_proteus">Migration of encryption protocol was canceled.</string>
<string name="label_system_message_conversation_protocol_changed_during_a_call">Due to migration to MLS, you might have issues with your current call. If that\'s the case, hang up and call again.</string>
<string name="label_system_message_conversation_protocol_changed_mixed">Migration of encryption protocol has started. Make sure you all your Wire clients are updated.</string>
<string name="label_system_message_conversation_protocol_changed_mls">This conversation now uses the new Messaging Layer Security (MLS) protocol. To communicate seamlessly, always use the latest version of Wire on your devices.</string>
<string name="label_system_message_receipt_mode_on">on</string>
<string name="label_system_message_receipt_mode_off">off</string>
<string name="label_system_message_conversation_started_by_self">**You** started the conversation</string>
<string name="label_system_message_conversation_started_by_other">%1$s started the conversation</string>
<string name="label_system_message_conversation_started_with_members">With %1$s</string>
<plurals name="label_system_message_conversation_failed_add_members_header">
<item quantity="one">**%1$s participant** could not be added to the conversation.</item>
<item quantity="other">**%1$s participants** could not be added to the conversation.</item>
</plurals>
<plurals name="label_system_message_conversation_failed_add_members_details_legal_hold">
<item quantity="one">%1$s could not be added to the conversation due to legal hold.</item>
<item quantity="other">%1$s could not be added to the conversation due to legal hold.</item>
</plurals>
<plurals name="label_system_message_conversation_failed_add_members_details_federation">
<item quantity="one">%1$s could not be added to the conversation as their backend could not be reached.</item>
<item quantity="other">%1$s could not be added to the conversation as their backend could not be reached.</item>
</plurals>
<plurals name="label_system_message_conversation_failed_add_members_details_unknown">
<item quantity="one">%1$s could not be added to the conversation.</item>
<item quantity="other">%1$s could not be added to the conversation.</item>
</plurals>
<plurals name="label_system_message_conversation_failed_add_members_details_missing_key_packages">
<item quantity="one">%1$s could not be added to the conversation. They may not have an MLS-capable client.</item>
<item quantity="other">%1$s could not be added to the conversation. They may not have MLS-capable clients.</item>
</plurals>
<string name="label_system_message_conversation_degraded_mls">This conversation is no longer verified, as at least one participant started using a new device or has an invalid certificate.</string>
<string name="label_system_message_conversation_degraded_proteus">This conversation is no longer verified, as at least one participant started using a new device or has an invalid certificate.</string>
<string name="label_system_message_conversation_verified_mls">All devices are verified (end-to-end identity)</string>
<string name="label_system_message_conversation_verified_proteus">All fingerprints are verified (Proteus)</string>
<string name="label_system_message_conversation_started_sensitive_information_header">**Communication in Wire is always end-to-end encrypted.**</string>
<string name="label_system_message_conversation_started_sensitive_information_header_with_shared_drive_on">**Communication in Wire is always secured.**</string>
<string name="label_system_message_conversation_started_sensitive_information_message">Everything you send and receive in this conversation is only accessible to you and other conversation participants.</string>
<string name="label_system_message_conversation_started_sensitive_information_message_with_shared_drive_on">Messages and calls are always end-to-end encrypted, whereas files and folders are secured in transit and encrypted at rest. </string>
<string name="label_system_message_conversation_started_sensitive_information_footer">Please still be careful with who you share sensitive information.</string>
<string name="label_conversations_details_verified_proteus">Verified (Proteus)</string>
<string name="label_conversations_details_verified_mls">Verified (End-to-end Identity)</string>
<string name="label_system_message_cell_enabled_for_conversation">Shared Drive is **on**</string>
<string name="label_system_message_cell_self_delete_disabled_for_conversation">Self-deleting messages are **off**</string>
<!-- Last messages -->
<plurals name="last_message_self_added_users">
<item quantity="one">You added 1 person to the conversation</item>
<item quantity="other">You added %1$d people to the conversation</item>
</plurals>
<string name="last_message_other_added_only_self_user">You were added to the conversation</string>
<plurals name="last_message_other_added_self_user">
<item quantity="one">You and 1 other person were added to the conversation</item>
<item quantity="other">You and %1$d people were added to the conversation</item>
</plurals>
<plurals name="last_message_other_added_other_users">
<item quantity="one">1 person was added to the conversation</item>
<item quantity="other">%1$d people were added to the conversation</item>
</plurals>
<plurals name="last_message_self_removed_users">
<item quantity="one">You removed 1 person from the conversation</item>
<item quantity="other">You removed %1$d people from the conversation</item>
</plurals>
<plurals name="last_message_team_member_removed">
<item quantity="one">1 person was removed from the team</item>
<item quantity="other">%1$d people were removed from the team</item>
</plurals>
<string name="last_message_other_removed_only_self_user">You were removed from the conversation</string>
<plurals name="last_message_other_removed_self_user_and_others">
<item quantity="one">You and 1 other person were removed from the conversation</item>
<item quantity="other">You and %1$d people were removed from the conversation</item>
</plurals>
<plurals name="last_message_other_removed_other_users">
<item quantity="one">1 person was removed from the conversation</item>
<item quantity="other">%1$d people were removed from the conversation</item>
</plurals>
<string name="last_message_self_user_shared_asset">shared a file.</string>
<string name="last_message_other_user_shared_asset">shared a file.</string>
<string name="last_message_self_user_shared_image">shared an image.</string>
<string name="last_message_other_user_shared_image">shared an image.</string>
<string name="last_message_self_user_shared_video">shared a video.</string>
<string name="last_message_other_user_shared_video">shared a video.</string>
<string name="last_message_self_user_shared_audio">shared an audio message.</string>
<string name="last_message_other_user_shared_audio">shared an audio message.</string>
<string name="last_message_self_user_shared_location">shared a location.</string>
<string name="last_message_other_user_shared_location">shared a location.</string>
<string name="last_message_self_user_knock">pinged.</string>
<string name="last_message_other_user_knock">pinged.</string>
<string name="last_message_call">called.</string>
<string name="last_message_mentioned">mentioned you</string>
<string name="last_message_replied">replied to you</string>
<string name="last_message_other_changed_conversation_name">changed conversation name</string>
<string name="last_message_self_changed_conversation_name">changed conversation name</string>
<string name="last_message_calling">%1$s calling...</string>
<string name="last_message_self_user_joined_conversation">joined the conversation.</string>
<string name="last_message_self_user_left_conversation">left the conversation.</string>
<string name="last_message_other_user_joined_conversation">joined the conversation.</string>
<string name="last_message_other_user_left_conversation">left the conversation.</string>
<string name="last_message_verified_conversation_proteus">All device fingerprints are verified (Proteus)</string>
<string name="last_message_verified_conversation_mls">All devices are verified (End-to-end Identity)</string>
<string name="last_message_conversations_verification_degraded_mls">Conversation is no longer verified</string>
<string name="last_message_conversations_verification_degraded_proteus">Conversation is no longer verified</string>
<!-- Unread Events -->
<plurals name="unread_event_knock">
<item quantity="one">%1$d ping</item>
<item quantity="other">%1$d pings</item>
</plurals>
<plurals name="unread_event_call">
<item quantity="one">%1$d missed call</item>
<item quantity="other">%1$d missed calls</item>
</plurals>
<plurals name="unread_event_mention">
<item quantity="one">%1$d mention</item>
<item quantity="other">%1$d mentions</item>
</plurals>
<plurals name="unread_event_reply">
<item quantity="one">%1$d reply</item>
<item quantity="other">%1$d replies</item>
</plurals>
<plurals name="unread_event_message">
<item quantity="one">%1$d message</item>
<item quantity="other">%1$d messages</item>
</plurals>
<string name="ephemeral_one_to_one_event_message">"Sent a message"</string>
<string name="ephemeral_group_channel_event_message">"Someone sent a message"</string>