Browse Source

Allow 'Export .torrent' tooltip to be translatable

Closes #17660.
PR #17664.
adaptive-webui-19844
Tyler Dunn 2 years ago committed by GitHub
parent
commit
6263c4786b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/gui/transferlistwidget.cpp

2
src/gui/transferlistwidget.cpp

@ -1227,7 +1227,7 @@ void TransferListWidget::displayListMenu()
copySubMenu->addAction(actionCopyMagnetLink); copySubMenu->addAction(actionCopyMagnetLink);
copySubMenu->addAction(actionCopyID); 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->addAction(actionExportTorrent);
listMenu->popup(QCursor::pos()); listMenu->popup(QCursor::pos());

Loading…
Cancel
Save