aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/widgets/LanguageSelectionWidget.cpp
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2022-02-10 14:55:52 +0100
committerSefa Eyeoglu <contact@scrumplex.net>2022-02-10 14:55:52 +0100
commit8d2e7db178b764838014a457bec81e946e0f937d (patch)
treeb4cc0c463101887768b0e519433f8781d6f5c86b /launcher/ui/widgets/LanguageSelectionWidget.cpp
parent383c93ff0145c40344e24cb2595c8b04329a11d5 (diff)
downloadPrismLauncher-8d2e7db178b764838014a457bec81e946e0f937d.tar.gz
PrismLauncher-8d2e7db178b764838014a457bec81e946e0f937d.tar.bz2
PrismLauncher-8d2e7db178b764838014a457bec81e946e0f937d.zip
fix: update link to translations platform
Diffstat (limited to 'launcher/ui/widgets/LanguageSelectionWidget.cpp')
-rw-r--r--launcher/ui/widgets/LanguageSelectionWidget.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/launcher/ui/widgets/LanguageSelectionWidget.cpp b/launcher/ui/widgets/LanguageSelectionWidget.cpp
index 964d2b7c..256b09da 100644
--- a/launcher/ui/widgets/LanguageSelectionWidget.cpp
+++ b/launcher/ui/widgets/LanguageSelectionWidget.cpp
@@ -5,6 +5,7 @@
#include <QHeaderView>
#include <QLabel>
#include "Application.h"
+#include "BuildConfig.h"
#include "translations/TranslationsModel.h"
#include "settings/Setting.h"
@@ -52,7 +53,7 @@ QString LanguageSelectionWidget::getSelectedLanguageKey() const
void LanguageSelectionWidget::retranslate()
{
QString text = tr("Don't see your language or the quality is poor?<br/><a href=\"%1\">Help us with translations!</a>")
- .arg("https://github.com/MultiMC/Launcher/wiki/Translating-MultiMC");
+ .arg(BuildConfig.TRANSLATIONS_URL);
helpUsLabel->setText(text);
}