Revise label wordings

Such that action subject is truly unambiguous to the user.

PR #22894.
This commit is contained in:
Chocobo1
2025-06-22 16:01:00 +08:00
committed by GitHub
parent fe1679d778
commit f6ee6b92a4

View File

@@ -827,11 +827,11 @@ void SearchWidget::showTabMenu(const int index)
if (auto *searchJobWidget = static_cast<SearchJobWidget *>(m_ui->tabWidget->widget(index));
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
{
menu->addAction(tr("Stop"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); });
menu->addAction(tr("Stop search"), this, [searchJobWidget] { searchJobWidget->cancelSearch(); });
}
menu->addSeparator();