[pim/akonadi] src/widgets: Fix i18n (missing arg)
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 15060a6cc50c5b1adee3397470de622516d611d8 by Laurent Montel.
Committed on 10/08/2026 at 05:12.
Pushed by mlaurent into branch 'master'.
Fix i18n (missing arg)
M +1 -1 src/widgets/tageditwidget.cpp
https://invent.kde.org/pim/akonadi/-/commit/15060a6cc50c5b1adee3397470de622516d611d8
diff --git a/src/widgets/tageditwidget.cpp b/src/widgets/tageditwidget.cpp
index 6e0c10813..52915fc41 100644
--- a/src/widgets/tageditwidget.cpp
+++ b/src/widgets/tageditwidget.cpp
@@ -173,7 +173,7 @@ void TagEditWidgetPrivate::slotItemEntered(const QModelIndex &index)
const auto tag = m_deleteCandidate.data(Akonadi::TagModel::TagRole).value<Akonadi::Tag>();
m_deleteButton->setToolTip(xi18nc("@info", "Delete Tag <resource>%1</resource>", tag.name()));
m_deleteButton->setToolTip(
- xi18nc("@info", "Press this button to show a dialog that asks permission to remove the <resource>%1</resource> tag from Akonadi."));
+ xi18nc("@info", "Press this button to show a dialog that asks permission to remove the <resource>%1</resource> tag from Akonadi.", tag.name()));
m_deleteButton->show();
}