diff options
Diffstat (limited to 'logic/auth')
-rw-r--r-- | logic/auth/MojangAccountList.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/logic/auth/MojangAccountList.cpp b/logic/auth/MojangAccountList.cpp index e3621dac..f667ef8c 100644 --- a/logic/auth/MojangAccountList.cpp +++ b/logic/auth/MojangAccountList.cpp @@ -183,10 +183,10 @@ QVariant MojangAccountList::headerData(int section, Qt::Orientation orientation, switch (section) { case ActiveColumn: - return "Active?"; + return tr("Active?"); case NameColumn: - return "Name"; + return tr("Name"); default: return QVariant(); @@ -196,7 +196,7 @@ QVariant MojangAccountList::headerData(int section, Qt::Orientation orientation, switch (section) { case NameColumn: - return "The name of the version."; + return tr("The name of the version."); default: return QVariant(); |