diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-12 21:09:25 +0100 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-12 21:27:35 +0100 |
commit | a309f4e72143b28865d5a8b94dcf913d3a95773f (patch) | |
tree | f4ec5d771db9398984dc6b8d18541f1010da2da4 /launcher/ui | |
parent | 159d868b77e6962632e925caf80a347122203d27 (diff) | |
download | PrismLauncher-a309f4e72143b28865d5a8b94dcf913d3a95773f.tar.gz PrismLauncher-a309f4e72143b28865d5a8b94dcf913d3a95773f.tar.bz2 PrismLauncher-a309f4e72143b28865d5a8b94dcf913d3a95773f.zip |
fix: MSA = Microsoft Authentication
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/pages/global/APIPage.ui | 6 | ||||
-rw-r--r-- | launcher/ui/pages/global/AccountListPage.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/launcher/ui/pages/global/APIPage.ui b/launcher/ui/pages/global/APIPage.ui index 38bbc525..28c53b79 100644 --- a/launcher/ui/pages/global/APIPage.ui +++ b/launcher/ui/pages/global/APIPage.ui @@ -103,7 +103,7 @@ <item> <widget class="QGroupBox" name="groupBox_msa"> <property name="title"> - <string>Microsoft Secured Account</string> + <string>Microsoft Authentication</string> </property> <layout class="QVBoxLayout" name="verticalLayout_4"> <item> @@ -116,7 +116,7 @@ <item> <widget class="QLabel" name="label_3"> <property name="text"> - <string>Note: you probably don't need to set this if logging in via Microsoft Secured Account already works.</string> + <string>Note: you probably don't need to set this if logging in via Microsoft Authentication already works.</string> </property> <property name="textFormat"> <enum>Qt::RichText</enum> @@ -136,7 +136,7 @@ <item> <widget class="QLabel" name="label_4"> <property name="text"> - <string>Enter a custom client ID for Microsoft Secured Account here. </string> + <string>Enter a custom client ID for Microsoft Authentication here. </string> </property> <property name="textFormat"> <enum>Qt::RichText</enum> diff --git a/launcher/ui/pages/global/AccountListPage.cpp b/launcher/ui/pages/global/AccountListPage.cpp index 740697a4..eb1ee8d3 100644 --- a/launcher/ui/pages/global/AccountListPage.cpp +++ b/launcher/ui/pages/global/AccountListPage.cpp @@ -75,7 +75,7 @@ AccountListPage::AccountListPage(QWidget *parent) // Xbox authentication won't work without a client identifier, so disable the button if it is missing if (APPLICATION->getMSAClientID().isEmpty()) { ui->actionAddMicrosoft->setVisible(false); - ui->actionAddMicrosoft->setToolTip(tr("No Microsoft Secured Account client ID was set.")); + ui->actionAddMicrosoft->setToolTip(tr("No Microsoft Authentication client ID was set.")); } } |