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/modplatform/legacy_ftb | |
parent | abb9fa8cbd427049aadf0787d1e54065a087b032 (diff) | |
download | PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.tar.gz PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.tar.bz2 PrismLauncher-48c2146a420d8474359cce5b507606fdb2a6988f.zip |
fix(i18n): fix translatable strings
Diffstat (limited to 'launcher/modplatform/legacy_ftb')
-rw-r--r-- | launcher/modplatform/legacy_ftb/PackInstallTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/modplatform/legacy_ftb/PackInstallTask.cpp b/launcher/modplatform/legacy_ftb/PackInstallTask.cpp index f655a066..c63a9f1e 100644 --- a/launcher/modplatform/legacy_ftb/PackInstallTask.cpp +++ b/launcher/modplatform/legacy_ftb/PackInstallTask.cpp @@ -114,7 +114,7 @@ void PackInstallTask::install() //ok, found minecraft dir, move contents to instance dir if(!QDir().rename(m_stagingPath + "/unzip/minecraft", m_stagingPath + "/.minecraft")) { - emitFailed(tr("Failed to move unzipped minecraft!")); + emitFailed(tr("Failed to move unzipped Minecraft!")); return; } } |