diff options
author | Fayne Aldan <FayneAldan@gmail.com> | 2022-10-30 15:55:15 -0600 |
---|---|---|
committer | Fayne Aldan <FayneAldan@gmail.com> | 2022-10-30 15:56:45 -0600 |
commit | b7d5fee9956a2fe7801f009eb7905eeae4f09c34 (patch) | |
tree | 57da1a250c776ed489c45f907bb23dc041bb3938 /launcher/ui | |
parent | 87b0d3fe11c1134bf17e1027fda7125f77e09821 (diff) | |
download | PrismLauncher-b7d5fee9956a2fe7801f009eb7905eeae4f09c34.tar.gz PrismLauncher-b7d5fee9956a2fe7801f009eb7905eeae4f09c34.tar.bz2 PrismLauncher-b7d5fee9956a2fe7801f009eb7905eeae4f09c34.zip |
Change Profiles to Accounts for consistency
Signed-off-by: Fayne Aldan <FayneAldan@gmail.com>
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/MainWindow.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index 559ebc31..84a78941 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -527,7 +527,7 @@ public: menuBar->addMenu(foldersMenu); - profileMenu = menuBar->addMenu(tr("&Profiles")); + profileMenu = menuBar->addMenu(tr("&Accounts")); profileMenu->setSeparatorsCollapsible(false); profileMenu->addAction(actionManageAccounts); @@ -1052,7 +1052,7 @@ void MainWindow::retranslateUi() accountMenuButton->setText(profileLabel); } else { - accountMenuButton->setText(tr("Profiles")); + accountMenuButton->setText(tr("Accounts")); } if (m_selectedInstance) { @@ -1395,7 +1395,7 @@ void MainWindow::defaultAccountChanged() // Set the icon to the "no account" icon. accountMenuButton->setIcon(APPLICATION->getThemedIcon("noaccount")); - accountMenuButton->setText(tr("Profiles")); + accountMenuButton->setText(tr("Accounts")); } bool MainWindow::eventFilter(QObject *obj, QEvent *ev) |