diff --git a/linphone-app/ui/modules/Linphone/Chat/Message.qml b/linphone-app/ui/modules/Linphone/Chat/Message.qml index 84af04e3e..9084c94d4 100644 --- a/linphone-app/ui/modules/Linphone/Chat/Message.qml +++ b/linphone-app/ui/modules/Linphone/Chat/Message.qml @@ -46,7 +46,7 @@ Item { // --------------------------------------------------------------------------- property string lastTextSelected - implicitHeight: (deliveryLayout.visible? deliveryLayout.height : 0) +(ephemeralTimerRow.visible? 16 : 0) + chatContent.height + reactionLoader.height-10 + implicitHeight: (deliveryLayout.visible? deliveryLayout.height : 0) +(ephemeralTimerRow.visible? 16 : 0) + chatContent.height + (reactionLoader.active?reactionLoader.height-10 : 0) Rectangle { id: rectangle property int availableWidth: parent.width @@ -56,7 +56,7 @@ Item { anchors.left: !$chatEntry.isOutgoing ? parent.left : undefined anchors.right: $chatEntry.isOutgoing ? parent.right : undefined - height: parent.height - (deliveryLayout.visible? deliveryLayout.height : 0) - (reactionLoader.height-10) + height: parent.height - (deliveryLayout.visible? deliveryLayout.height : 0) - (reactionLoader.active ? reactionLoader.height-10 : 0) radius: ChatStyle.entry.message.radius clip: false color: colorModel.color diff --git a/linphone-app/ui/modules/Linphone/Timeline/CallTimeline.qml b/linphone-app/ui/modules/Linphone/Timeline/CallTimeline.qml index af5150ff6..d1e92f530 100644 --- a/linphone-app/ui/modules/Linphone/Timeline/CallTimeline.qml +++ b/linphone-app/ui/modules/Linphone/Timeline/CallTimeline.qml @@ -39,8 +39,9 @@ ColumnLayout{ color: CallTimelineStyle.colorModel.color font.pointSize: CallTimelineStyle.pointSize font.weight: Font.Bold + font.capitalization: Font.Capitalize //: 'Call list' : Call histories title - text: qsTr('callListTitle') + text: qsTr('callListTitle').toLowerCase() verticalAlignment: Text.AlignVCenter } diff --git a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml index 415ec05a3..566ea0988 100644 --- a/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml +++ b/linphone-app/ui/modules/Linphone/Timeline/Timeline.qml @@ -70,8 +70,9 @@ Rectangle { color: TimelineStyle.legend.colorModel.color font.pointSize: TimelineStyle.legend.pointSize font.weight: Font.Bold + font.capitalization: Font.Capitalize //: 'Messages' : Title for conversations - text: qsTr('chatsTitle') + text: qsTr('chatsTitle').toLowerCase() verticalAlignment: Text.AlignVCenter } diff --git a/linphone-app/ui/views/App/Main/Conferences.qml b/linphone-app/ui/views/App/Main/Conferences.qml index 2343a28d1..ebd7f7088 100644 --- a/linphone-app/ui/views/App/Main/Conferences.qml +++ b/linphone-app/ui/views/App/Main/Conferences.qml @@ -40,9 +40,10 @@ Item{ font { bold: true pointSize: ConferencesStyle.bar.text.pointSize + capitalization: Font.Capitalize } //: 'Meetings' : Conference list title. - text: qsTr('conferencesTitle') + text: qsTr('conferencesTitle').toLowerCase() } TextButtonB { anchors.verticalCenter: parent.verticalCenter diff --git a/linphone-app/ui/views/App/Main/Contacts.qml b/linphone-app/ui/views/App/Main/Contacts.qml index 04df4cb8e..0a5d3783e 100644 --- a/linphone-app/ui/views/App/Main/Contacts.qml +++ b/linphone-app/ui/views/App/Main/Contacts.qml @@ -52,9 +52,9 @@ ColumnLayout { font.capitalization: Font.Capitalize text: LdapListModel.count > 0 //: 'Local contacts' : Contacts section label in main window when we have to specify that they are local to the application. - ? qsTr('localContactsEntry') + ? qsTr('localContactsEntry').toLowerCase() //: 'Contacts' : Contacts section label in main waindow. - : qsTr('contactsEntry') + : qsTr('contactsEntry').toLowerCase() verticalAlignment: Text.AlignVCenter }