Make string translatable

This commit is contained in:
isaak654 2022-01-14 18:00:23 +01:00 committed by GitHub
parent e05640cbfb
commit 585821466e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ CSettingsWindow::CSettingsWindow(QWidget *parent)
ui.tabs->setCurrentIndex(0);
ui.uiLang->addItem(tr("Auto Detection"), "");
ui.uiLang->addItem("No Translation", "native");
ui.uiLang->addItem(tr("No Translation"), "native");
QDir langDir(QApplication::applicationDirPath() + "/translations/");
foreach(const QString& langFile, langDir.entryList(QStringList("sandman_*.qm"), QDir::Files))
{