diff options
author | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-24 14:50:05 +0300 |
---|---|---|
committer | Trial97 <alexandru.tripon97@gmail.com> | 2023-06-24 14:50:05 +0300 |
commit | 30ef5475c75514c08a4d1b2c8e4c6ec5abba41ea (patch) | |
tree | 190ce8b7d5cfda2226d2ffe634cf34f86ac65deb | |
parent | 9804996db652eb719a0eb40c41157d0813372eb2 (diff) | |
download | PrismLauncher-30ef5475c75514c08a4d1b2c8e4c6ec5abba41ea.tar.gz PrismLauncher-30ef5475c75514c08a4d1b2c8e4c6ec5abba41ea.tar.bz2 PrismLauncher-30ef5475c75514c08a4d1b2c8e4c6ec5abba41ea.zip |
Made sure CurseForge string is corect
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
-rw-r--r-- | launcher/modplatform/flame/FlamePackExportTask.cpp | 2 | ||||
-rw-r--r-- | launcher/ui/MainWindow.ui | 2 | ||||
-rw-r--r-- | launcher/ui/dialogs/ExportMrPackDialog.cpp | 2 | ||||
-rw-r--r-- | launcher/ui/pages/global/LauncherPage.ui | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/launcher/modplatform/flame/FlamePackExportTask.cpp b/launcher/modplatform/flame/FlamePackExportTask.cpp index 45fc2e63..fb5bcc0b 100644 --- a/launcher/modplatform/flame/FlamePackExportTask.cpp +++ b/launcher/modplatform/flame/FlamePackExportTask.cpp @@ -232,7 +232,7 @@ void FlamePackExportTask::makeApiRequest() void FlamePackExportTask::getProjectsInfo() { - setStatus(tr("Find project info from curseforge...")); + setStatus(tr("Find project info from CurseForge...")); QList<QString> addonIds; for (auto resolved : resolvedFiles) { if (resolved.slug.isEmpty()) { diff --git a/launcher/ui/MainWindow.ui b/launcher/ui/MainWindow.ui index 1cfb59cd..190219b9 100644 --- a/launcher/ui/MainWindow.ui +++ b/launcher/ui/MainWindow.ui @@ -484,7 +484,7 @@ <iconset theme="flame"/> </property> <property name="text"> - <string>Curseforge (zip)</string> + <string>CurseForge (zip)</string> </property> </action> <action name="actionCreateInstanceShortcut"> diff --git a/launcher/ui/dialogs/ExportMrPackDialog.cpp b/launcher/ui/dialogs/ExportMrPackDialog.cpp index 8a95997b..94987c7e 100644 --- a/launcher/ui/dialogs/ExportMrPackDialog.cpp +++ b/launcher/ui/dialogs/ExportMrPackDialog.cpp @@ -108,7 +108,7 @@ void ExportMrPackDialog::done(int result) nullptr); else output = QFileDialog::getSaveFileName(this, tr("Export %1").arg(ui->name->text()), - FS::PathCombine(QDir::homePath(), filename + ".zip"), "Curseforge pack (*.zip)", nullptr); + FS::PathCombine(QDir::homePath(), filename + ".zip"), "CurseForge pack (*.zip)", nullptr); if (output.isEmpty()) return; diff --git a/launcher/ui/pages/global/LauncherPage.ui b/launcher/ui/pages/global/LauncherPage.ui index d9116bfc..26408f44 100644 --- a/launcher/ui/pages/global/LauncherPage.ui +++ b/launcher/ui/pages/global/LauncherPage.ui @@ -169,7 +169,7 @@ <item> <widget class="QCheckBox" name="metadataDisableBtn"> <property name="toolTip"> - <string>Disable using metadata provided by mod providers (like Modrinth or Curseforge) for mods.</string> + <string>Disable using metadata provided by mod providers (like Modrinth or CurseForge) for mods.</string> </property> <property name="text"> <string>Disable using metadata for mods</string> |