mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-02-02 18:04:32 +00:00
Mark strings as translatable. Closes #893.
This commit is contained in:
parent
6bea659d50
commit
0b0e137175
@ -355,7 +355,7 @@ void SearchEngine::searchStarted() {
|
|||||||
// Update SearchEngine widgets
|
// Update SearchEngine widgets
|
||||||
search_status->setText(tr("Searching..."));
|
search_status->setText(tr("Searching..."));
|
||||||
search_status->repaint();
|
search_status->repaint();
|
||||||
search_button->setText("Stop");
|
search_button->setText(tr("Stop"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// search Qprocess return output as soon as it gets new
|
// search Qprocess return output as soon as it gets new
|
||||||
@ -510,7 +510,7 @@ void SearchEngine::searchFinished(int exitcode,QProcess::ExitStatus) {
|
|||||||
}
|
}
|
||||||
if (currentSearchTab)
|
if (currentSearchTab)
|
||||||
currentSearchTab->getCurrentLabel()->setText(tr("Results", "i.e: Search results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
currentSearchTab->getCurrentLabel()->setText(tr("Results", "i.e: Search results")+QString::fromUtf8(" <i>(")+QString::number(nb_search_results)+QString::fromUtf8(")</i>:"));
|
||||||
search_button->setText("Search");
|
search_button->setText(tr("Search"));
|
||||||
}
|
}
|
||||||
|
|
||||||
// SLOT to append one line to search results list
|
// SLOT to append one line to search results list
|
||||||
|
Loading…
x
Reference in New Issue
Block a user