From f0ec8daed0d09ca72fcdc8543e81d6b78423069c Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Thu, 5 Aug 2021 19:38:10 +0200 Subject: [PATCH] Fix typo --- linphone-app/ui/views/App/Main/Dialogs/NewChatRoom.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linphone-app/ui/views/App/Main/Dialogs/NewChatRoom.qml b/linphone-app/ui/views/App/Main/Dialogs/NewChatRoom.qml index 40ca6e6a3..6bf6f72ed 100644 --- a/linphone-app/ui/views/App/Main/Dialogs/NewChatRoom.qml +++ b/linphone-app/ui/views/App/Main/Dialogs/NewChatRoom.qml @@ -48,7 +48,7 @@ DialogPlus { txt ='- ' + qsTr('missingSubject') + '\n' if( selectedParticipants.count < conferenceManager.minParticipants) //: 'You need at least %1 participant.' : Tooltip to warn a user that there are not enough participants for the chat creation. - txt += '- ' + qsTr('missingParticipants', '', conferenceManager.minParticipants) + '\n' + txt += '- ' + qsTr('missingParticipants', '', conferenceManager.minParticipants).arg(conferenceManager.minParticipants) + '\n' if( AccountSettingsModel.conferenceURI == '') //: 'You need to set the conference URI in your account settings to create a conference based chat room.' : Tooltip to warn the user that a setting is missong in its configuration. txt += '- ' + qsTr('missingConferenceURI') + '\n'