From 6263c4786b9cda541facbc8fd60a18e56f7f745e Mon Sep 17 00:00:00 2001 From: Tyler Dunn Date: Sat, 3 Sep 2022 02:58:23 -0400 Subject: [PATCH] Allow 'Export .torrent' tooltip to be translatable Closes #17660. PR #17664. --- src/gui/transferlistwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/transferlistwidget.cpp b/src/gui/transferlistwidget.cpp index 4f9829e91..50b1daca7 100644 --- a/src/gui/transferlistwidget.cpp +++ b/src/gui/transferlistwidget.cpp @@ -1227,7 +1227,7 @@ void TransferListWidget::displayListMenu() copySubMenu->addAction(actionCopyMagnetLink); copySubMenu->addAction(actionCopyID); - actionExportTorrent->setToolTip(u"Exported torrent is not necessarily the same as the imported"_qs); + actionExportTorrent->setToolTip(tr("Exported torrent is not necessarily the same as the imported")); listMenu->addAction(actionExportTorrent); listMenu->popup(QCursor::pos());