[pim/akonadi/release/26.08] src/widgets: Fix i18n (missing arg)
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit a6fc7ab7c2f4a6e6262c3ace5b3aefe8a0a05b11 by Laurent Montel.
Committed on 10/08/2026 at 05:12.
Pushed by mlaurent into branch 'release/26.08'.
Fix i18n (missing arg)
(cherry picked from commit 0956e3f3251ec37df289cfeb32f1deedd48cc140)
M +1 -1 src/widgets/tageditwidget.cpp
https://invent.kde.org/pim/akonadi/-/commit/a6fc7ab7c2f4a6e6262c3ace5b3aefe8a0a05b11
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();
}