Revise label wordings

Such that action subject is truly unambiguous to the user.
This commit is contained in:
Chocobo1 2025-06-03 02:40:41 +08:00
commit 245b2e6e27
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -827,11 +827,11 @@ void SearchWidget::showTabMenu(const int index)
if (auto *searchJobWidget = static_cast<SearchJobWidget *>(m_ui->tabWidget->widget(index)); if (auto *searchJobWidget = static_cast<SearchJobWidget *>(m_ui->tabWidget->widget(index));
searchJobWidget->status() != SearchJobWidget::Status::Ongoing) searchJobWidget->status() != SearchJobWidget::Status::Ongoing)
{ {
menu->addAction(tr("Refresh"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); }); menu->addAction(tr("Refresh tab"), this, [this, searchJobWidget] { refreshTab(searchJobWidget); });
} }
else else
{ {
menu->addAction(tr("Stop"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); }); menu->addAction(tr("Stop search"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); });
} }
menu->addSeparator(); menu->addSeparator();