diff options
author | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 18:49:06 +1000 |
---|---|---|
committer | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-29 18:49:06 +1000 |
commit | 63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50 (patch) | |
tree | 792846d61e7cd73fd037b9d86b21570d55a585a8 /launcher/minecraft | |
parent | d6f4ff26b548f9b340297c15df33680cf45359ad (diff) | |
download | PrismLauncher-63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50.tar.gz PrismLauncher-63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50.tar.bz2 PrismLauncher-63589d2ba97bc3fa5b4fc2fdd30a32a034aa9b50.zip |
Rename profile column to username and update the tooltip
Diffstat (limited to 'launcher/minecraft')
-rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index 394a94d7..e05aa526 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -366,7 +366,7 @@ QVariant AccountList::headerData(int section, Qt::Orientation orientation, int r switch (section) { case ProfileNameColumn: - return tr("Profile"); + return tr("Username"); case NameColumn: return tr("Account"); case TypeColumn: @@ -383,7 +383,7 @@ QVariant AccountList::headerData(int section, Qt::Orientation orientation, int r switch (section) { case ProfileNameColumn: - return tr("Name of the Minecraft profile associated with the account."); + return tr("Minecraft username associated with the account."); case NameColumn: return tr("User name of the account."); case TypeColumn: @@ -391,7 +391,7 @@ QVariant AccountList::headerData(int section, Qt::Orientation orientation, int r case StatusColumn: return tr("Current status of the account."); case MigrationColumn: - return tr("Can this account migrate to Microsoft account?"); + return tr("Can this account migrate to a Microsoft account?"); default: return QVariant(); } |