diff options
author | flow <flowlnlnln@gmail.com> | 2022-10-30 16:52:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-30 16:52:36 -0700 |
commit | d89a541a8d6837b0010eac2e638914acfbb3c374 (patch) | |
tree | 57da1a250c776ed489c45f907bb23dc041bb3938 | |
parent | 87b0d3fe11c1134bf17e1027fda7125f77e09821 (diff) | |
parent | b7d5fee9956a2fe7801f009eb7905eeae4f09c34 (diff) | |
download | PrismLauncher-d89a541a8d6837b0010eac2e638914acfbb3c374.tar.gz PrismLauncher-d89a541a8d6837b0010eac2e638914acfbb3c374.tar.bz2 PrismLauncher-d89a541a8d6837b0010eac2e638914acfbb3c374.zip |
Merge pull request #353 from FayneAldan/accounts-consistency
-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) |