diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-18 19:18:29 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-18 19:18:29 +0100 |
commit | 80a29af497bec487f87a9ae545a2f94c3685f6df (patch) | |
tree | 456ecdf0cfccd4f6646fa0612a1c5a2c59d34c53 /launcher/LaunchController.cpp | |
parent | c5d9944993832f16e76a9a63a402665c5321267b (diff) | |
download | PrismLauncher-80a29af497bec487f87a9ae545a2f94c3685f6df.tar.gz PrismLauncher-80a29af497bec487f87a9ae545a2f94c3685f6df.tar.bz2 PrismLauncher-80a29af497bec487f87a9ae545a2f94c3685f6df.zip |
fix: typo for account disabled error messages
Diffstat (limited to 'launcher/LaunchController.cpp')
-rw-r--r-- | launcher/LaunchController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/LaunchController.cpp b/launcher/LaunchController.cpp index 11419358..40178b70 100644 --- a/launcher/LaunchController.cpp +++ b/launcher/LaunchController.cpp @@ -229,7 +229,7 @@ void LaunchController::login() { return; } case AccountState::Disabled: { - auto errorString = tr("The launcher's client identification changed. Please remove this account and add it again."); + auto errorString = tr("The launcher's client identification has changed. Please remove this account and add it again."); QMessageBox::warning( m_parentWidget, tr("Client identification changed"), |