1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 15:27:54 +00:00

Disable translation of program name

This commit is contained in:
Chocobo1 2021-01-20 11:30:14 +08:00
parent 478ddfe102
commit d85a41ad75
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
2 changed files with 2 additions and 2 deletions

View File

@ -1916,7 +1916,7 @@ void MainWindow::handleUpdateCheckFinished(bool updateAvailable, QString newVers
}
else if (invokedByUser)
{
QMessageBox::information(this, tr("qBittorrent"),
QMessageBox::information(this, QLatin1String("qBittorrent"),
tr("No updates available.\nYou are already using the latest version."));
}
sender()->deleteLater();

View File

@ -800,7 +800,7 @@ void PropertiesWidget::editWebSeed()
if (!m_ui->listWebSeeds->findItems(newSeed, Qt::MatchFixedString).empty())
{
QMessageBox::warning(this, tr("qBittorrent"),
QMessageBox::warning(this, QLatin1String("qBittorrent"),
tr("This URL seed is already in the list."),
QMessageBox::Ok);
return;