aboutsummaryrefslogtreecommitdiff
path: root/launcher/minecraft
diff options
context:
space:
mode:
authorAlfio <tomarchioalfio5@gmail.com>2023-06-20 10:25:11 +0200
committerP2 <tomarchioalfio5@gmail.com>2023-06-20 10:40:27 +0200
commitf769b0b4c63888ac95416a4cc834aad2395f9b74 (patch)
treea97780690cb88c1c95b1493c6dd6fa31c6b56b87 /launcher/minecraft
parentaf6bf11793fb463fe62c99695e56ff6599612d05 (diff)
downloadPrismLauncher-f769b0b4c63888ac95416a4cc834aad2395f9b74.tar.gz
PrismLauncher-f769b0b4c63888ac95416a4cc834aad2395f9b74.tar.bz2
PrismLauncher-f769b0b4c63888ac95416a4cc834aad2395f9b74.zip
Remove inconsistent/unneeded question marks in UI
Signed-off-by: P2 <tomarchioalfio5@gmail.com>
Diffstat (limited to 'launcher/minecraft')
-rw-r--r--launcher/minecraft/auth/AccountList.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp
index 9e2fd111..c2794147 100644
--- a/launcher/minecraft/auth/AccountList.cpp
+++ b/launcher/minecraft/auth/AccountList.cpp
@@ -333,13 +333,13 @@ QVariant AccountList::data(const QModelIndex &index, int role) const
case MigrationColumn: {
if(account->isMSA() || account->isOffline()) {
- return tr("N/A", "Can Migrate?");
+ return tr("N/A", "Can Migrate");
}
if (account->canMigrate()) {
- return tr("Yes", "Can Migrate?");
+ return tr("Yes", "Can Migrate");
}
else {
- return tr("No", "Can Migrate?");
+ return tr("No", "Can Migrate");
}
}