Merge remote-tracking branch 'origin/release/6.0'

This commit is contained in:
Sylvain Berfini 2025-04-29 11:35:27 +02:00
commit 9b9994b358
5 changed files with 18 additions and 9 deletions

View file

@ -1232,7 +1232,7 @@
<location filename="../../view/Page/Window/Call/CallsWindow.qml" line="369"/>
<source>call_paused_by_remote</source>
<extracomment>Call paused by remote</extracomment>
<translation type="unfinished">Call paused by remote</translation>
<translation>Call paused by remote</translation>
</message>
<message>
<location filename="../../view/Page/Window/Call/CallsWindow.qml" line="567"/>

View file

@ -1024,7 +1024,7 @@
<location filename="../../view/Page/Main/Call/CallPage.qml" line="566"/>
<source>sip_address_copied_to_clipboard_message</source>
<extracomment>L&apos;adresse a é copié dans le presse_papiers</extracomment>
<translation>L&apos;adresse a é copié dans le presse_papiers</translation>
<translation>L&apos;adresse a é copié dans le presse-papiers</translation>
</message>
<message>
<location filename="../../view/Page/Main/Call/CallPage.qml" line="572"/>
@ -1232,7 +1232,7 @@
<location filename="../../view/Page/Window/Call/CallsWindow.qml" line="369"/>
<source>call_paused_by_remote</source>
<extracomment>Call paused by remote</extracomment>
<translation type="unfinished">Appel mis en pause par votre correspondant</translation>
<translation>Appel mis en pause par votre correspondant</translation>
</message>
<message>
<location filename="../../view/Page/Window/Call/CallsWindow.qml" line="567"/>

View file

@ -47,12 +47,19 @@ Button {
family: DefaultStyle.defaultFont
capitalization: mainItem.capitalization
underline: mainItem.underline
bold: mainItem.style === ButtonStyle.noBackground && (mainItem.hovered || mainItem.pressed)
bold: (mainItem.style === ButtonStyle.noBackground || mainItem.style === ButtonStyle.noBackgroundRed) && (mainItem.hovered || mainItem.pressed)
}
}
TextMetrics {
id: textMetrics
text: mainItem.text
font: textItem.font
font {
pixelSize: mainItem.textSize
weight: mainItem.textWeight * 2
family: DefaultStyle.defaultFont
capitalization: mainItem.capitalization
underline: mainItem.underline
bold: true
}
}
Item {Layout.fillWidth: true}

View file

@ -182,6 +182,7 @@ FocusScope {
popup.contentItem: ColumnLayout {
IconLabelButton {
Layout.fillWidth: true
visible: searchResultItem.core.isStored
&& !searchResultItem.core.readOnly
//: "Enlever des favoris"
@ -202,6 +203,7 @@ FocusScope {
}
IconLabelButton {
text: qsTr("Partager")
Layout.fillWidth: true
icon.source: AppIcons.shareNetwork
spacing: Math.round(10 * DefaultStyle.dp)
textColor: DefaultStyle.main2_500main
@ -233,6 +235,7 @@ FocusScope {
icon.source: AppIcons.trashCan
spacing: Math.round(10 * DefaultStyle.dp)
visible: !searchResultItem.core.readOnly
Layout.fillWidth: true
onClicked: {
mainItem.contactDeletionRequested(
searchResultItem)

View file

@ -754,7 +754,6 @@ FriendGui{
//: "Autres actions"
label: qsTr("contact_details_actions_title")
content: ColumnLayout {
width: parent.width
IconLabelButton {
Layout.fillWidth: true
Layout.preferredHeight: Math.round(50 * DefaultStyle.dp)