mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 02:58:07 +00:00
Display participant count in Conversation info screen
This commit is contained in:
parent
ac4839dcae
commit
ad80fb3cfb
5 changed files with 5 additions and 5 deletions
|
|
@ -417,7 +417,7 @@
|
|||
"conversation_event_device_added" = "Nové zařízení pro %@";
|
||||
"conversation_event_participant_added" = "%@ se připojil";
|
||||
"conversation_event_subject_changed" = "Nový předmět: %@";
|
||||
"conversation_info_participants_list_title" = "Členové skupiny";
|
||||
"conversation_info_participants_list_title" = "Členové skupiny (%d)";
|
||||
"conversation_event_admin_set" = "%@ je administrátor";
|
||||
"conversation_event_ephemeral_messages_lifetime_changed" = "Doba platnosti mizejících zpráv je nyní %@";
|
||||
"conversation_event_participant_removed" = "%@ se odpojil";
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@
|
|||
"conversation_info_menu_add_to_contacts" = "Add to contacts";
|
||||
"conversation_info_menu_go_to_contact" = "See contact profile";
|
||||
"conversation_info_participant_is_admin_label" = "Admin";
|
||||
"conversation_info_participants_list_title" = "Group members";
|
||||
"conversation_info_participants_list_title" = "Group members (%d)";
|
||||
"conversation_invalid_participant_due_to_security_mode_toast" = "Can't create conversation with a participant not on the same domain due to security restrictions!";
|
||||
"conversation_menu_configure_ephemeral_messages" = "Ephemeral messages";
|
||||
"conversation_menu_go_to_info" = "Conversation info";
|
||||
|
|
|
|||
|
|
@ -236,7 +236,7 @@
|
|||
"conversation_info_menu_add_to_contacts" = "Ajouter aux contacts";
|
||||
"conversation_info_menu_go_to_contact" = "Voir le contact";
|
||||
"conversation_info_participant_is_admin_label" = "Administrateur";
|
||||
"conversation_info_participants_list_title" = "Participants";
|
||||
"conversation_info_participants_list_title" = "Participants (%d)";
|
||||
"conversation_invalid_participant_due_to_security_mode_toast" = "Pour des raisons de sécurité, la création d'une conversation avec un participant d'un domaine tiers est désactivé.";
|
||||
"conversation_menu_configure_ephemeral_messages" = "Messages éphémères";
|
||||
"conversation_menu_go_to_info" = "Informations";
|
||||
|
|
|
|||
|
|
@ -432,7 +432,7 @@
|
|||
"conversation_event_subject_changed" = "Нова назва: %@";
|
||||
"conversation_event_device_added" = "Новий пристрій для %@";
|
||||
"conversation_event_device_removed" = "Пристрій для %@ видалено";
|
||||
"conversation_info_participants_list_title" = "Учасники групи";
|
||||
"conversation_info_participants_list_title" = "Учасники групи (%d)";
|
||||
"conversation_message_meeting_cancelled_label" = "Нараду скасовано!";
|
||||
"conversation_one_to_one_hidden_subject" = "Фіктивний суб'єкт";
|
||||
"conversation_reply_to_message_title" = "Відповісти на: ";
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@ struct ConversationInfoFragment: View {
|
|||
|
||||
if SharedMainViewModel.shared.displayedConversation!.isGroup {
|
||||
HStack(alignment: .center) {
|
||||
Text("conversation_info_participants_list_title")
|
||||
Text(String(format: NSLocalizedString("conversation_info_participants_list_title", comment: ""), conversationViewModel.participantConversationModel.count))
|
||||
.default_text_style_800(styleSize: 18)
|
||||
.frame(maxWidth: .infinity, alignment: .leading)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue