diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-18 13:19:09 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-19 12:29:46 +0100 |
commit | 48c2146a420d8474359cce5b507606fdb2a6988f (patch) | |
tree | c3a7fdd1c7b73483134236ccc72a1eea1b143dad /launcher/ui/pages/modplatform/flame/FlameModPage.cpp | |
parent | abb9fa8cbd427049aadf0787d1e54065a087b032 (diff) | |
download | PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.tar.gz PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.tar.bz2 PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.zip |
fix(i18n): fix translatable strings
Diffstat (limited to 'launcher/ui/pages/modplatform/flame/FlameModPage.cpp')
-rw-r--r-- | launcher/ui/pages/modplatform/flame/FlameModPage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/flame/FlameModPage.cpp b/launcher/ui/pages/modplatform/flame/FlameModPage.cpp index 114ac907..1801c5a8 100644 --- a/launcher/ui/pages/modplatform/flame/FlameModPage.cpp +++ b/launcher/ui/pages/modplatform/flame/FlameModPage.cpp @@ -153,7 +153,7 @@ void FlameModPage::onSelectionChanged(QModelIndex first, QModelIndex second) { ui->versionSelectionBox->addItem(version.version, QVariant(i)); } if (ui->versionSelectionBox->count() == 0) { - ui->versionSelectionBox->addItem(tr("No Valid Version found!"), + ui->versionSelectionBox->addItem(tr("No valid version found."), QVariant(-1)); } @@ -171,7 +171,7 @@ void FlameModPage::onSelectionChanged(QModelIndex first, QModelIndex second) { QVariant(i)); } if (ui->versionSelectionBox->count() == 0) { - ui->versionSelectionBox->addItem(tr("No Valid Version found!"), + ui->versionSelectionBox->addItem(tr("No valid version found."), QVariant(-1)); } |