summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFallenValkyrie <e.vanemelen@proton.me>2023-12-07 15:56:18 +0100
committerFallenValkyrie <e.vanemelen@proton.me>2023-12-16 15:48:11 +0100
commitc605fb6ca8a9338caeccceca8b40459fd07ba3ca (patch)
tree22d44a86c9201a947191ff2da7c1947e560791d8
parentb91c70a8eadca602e2920ab5158ae60497880bd1 (diff)
make ImagePackDialog text translatable
-rw-r--r--resources/qml/dialogs/ImagePackDeleteDialog.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/dialogs/ImagePackDeleteDialog.qml b/resources/qml/dialogs/ImagePackDeleteDialog.qml
index 38d2ab98..7ac96b91 100644
--- a/resources/qml/dialogs/ImagePackDeleteDialog.qml
+++ b/resources/qml/dialogs/ImagePackDeleteDialog.qml
@@ -11,7 +11,7 @@ P.MessageDialog {
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
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
buttons: P.MessageDialog.Yes | P.MessageDialog.No