diff options
author | FallenValkyrie <e.vanemelen@proton.me> | 2023-12-07 15:56:18 +0100 |
---|---|---|
committer | FallenValkyrie <e.vanemelen@proton.me> | 2023-12-16 15:48:11 +0100 |
commit | c605fb6ca8a9338caeccceca8b40459fd07ba3ca (patch) | |
tree | 22d44a86c9201a947191ff2da7c1947e560791d8 /resources | |
parent | Fix review issues (diff) | |
download | nheko-c605fb6ca8a9338caeccceca8b40459fd07ba3ca.tar.xz |
make ImagePackDialog text translatable
Diffstat (limited to 'resources')
-rw-r--r-- | resources/qml/dialogs/ImagePackDeleteDialog.qml | 2 |
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 |