make ImagePackDialog text translatable

This commit is contained in:
FallenValkyrie 2023-12-07 15:56:18 +01:00
parent b91c70a8ea
commit c605fb6ca8
No known key found for this signature in database
GPG key ID: 9D1AE3C23A00B8BC

View file

@ -11,7 +11,7 @@ P.MessageDialog {
property SingleImagePackModel imagePack property SingleImagePackModel imagePack
text: "Are you sure you wish to delete the sticker pack \"" + imagePack.packname + "\"?" text: qsTr("Are you sure you wish to delete the sticker pack '%1'?").arg(imagePack.packname)
modality: Qt.ApplicationModal modality: Qt.ApplicationModal
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
buttons: P.MessageDialog.Yes | P.MessageDialog.No buttons: P.MessageDialog.Yes | P.MessageDialog.No