diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-21 14:21:06 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-03-22 20:11:15 +0100 |
commit | a5fc640f2cb0ca772efdf93f400084d33f6383d4 (patch) | |
tree | 1069506bd9510d1acb5c661cac4b18263114aed7 /launcher/ui/pages/modplatform/flame/FlameModPage.cpp | |
parent | 0a4a3fece57a68b2df6c5c0da8d990b1f981816c (diff) | |
download | PrismLauncher-a5fc640f2cb0ca772efdf93f400084d33f6383d4.tar.gz PrismLauncher-a5fc640f2cb0ca772efdf93f400084d33f6383d4.tar.bz2 PrismLauncher-a5fc640f2cb0ca772efdf93f400084d33f6383d4.zip |
Merge pull request #298 from Scrumplex/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 a4dc1088..d1641729 100644 --- a/launcher/ui/pages/modplatform/flame/FlameModPage.cpp +++ b/launcher/ui/pages/modplatform/flame/FlameModPage.cpp @@ -193,7 +193,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)); } @@ -211,7 +211,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)); } |