diff options
author | Jan Dalheimer <jan@dalheimer.de> | 2014-11-02 19:24:28 +0100 |
---|---|---|
committer | Jan Dalheimer <jan@dalheimer.de> | 2014-11-02 19:25:11 +0100 |
commit | a3a5afe1198266e7c4a1bc6dd8f65062426b24c4 (patch) | |
tree | 6df6a629cabd3e1d4314abb3bb3e6575be13cc67 /logic | |
parent | 7fb6cafe9e54270b7daf47bf394fd969d44e1c37 (diff) | |
download | MultiMC-a3a5afe1198266e7c4a1bc6dd8f65062426b24c4.tar MultiMC-a3a5afe1198266e7c4a1bc6dd8f65062426b24c4.tar.gz MultiMC-a3a5afe1198266e7c4a1bc6dd8f65062426b24c4.tar.lz MultiMC-a3a5afe1198266e7c4a1bc6dd8f65062426b24c4.tar.xz MultiMC-a3a5afe1198266e7c4a1bc6dd8f65062426b24c4.zip |
Fix #231: Enable translation for more strings
Diffstat (limited to 'logic')
-rw-r--r-- | logic/BaseVersionList.cpp | 8 | ||||
-rw-r--r-- | logic/LwjglVersionList.cpp | 4 | ||||
-rw-r--r-- | logic/ModList.cpp | 10 | ||||
-rw-r--r-- | logic/auth/MojangAccountList.cpp | 6 | ||||
-rw-r--r-- | logic/forge/ForgeVersionList.cpp | 12 | ||||
-rw-r--r-- | logic/java/JavaVersionList.cpp | 12 |
6 files changed, 26 insertions, 26 deletions
diff --git a/logic/BaseVersionList.cpp b/logic/BaseVersionList.cpp index b34750b5..f74966ce 100644 --- a/logic/BaseVersionList.cpp +++ b/logic/BaseVersionList.cpp @@ -82,10 +82,10 @@ QVariant BaseVersionList::headerData(int section, Qt::Orientation orientation, i switch (section) { case NameColumn: - return "Name"; + return tr("Name"); case TypeColumn: - return "Type"; + return tr("Type"); default: return QVariant(); @@ -95,10 +95,10 @@ QVariant BaseVersionList::headerData(int section, Qt::Orientation orientation, i switch (section) { case NameColumn: - return "The name of the version."; + return tr("The name of the version."); case TypeColumn: - return "The version's type."; + return tr("The version's type."); default: return QVariant(); diff --git a/logic/LwjglVersionList.cpp b/logic/LwjglVersionList.cpp index 84aaf03d..11c1e0aa 100644 --- a/logic/LwjglVersionList.cpp +++ b/logic/LwjglVersionList.cpp @@ -57,10 +57,10 @@ QVariant LWJGLVersionList::headerData(int section, Qt::Orientation orientation, switch (role) { case Qt::DisplayRole: - return "Version"; + return tr("Version"); case Qt::ToolTipRole: - return "LWJGL version name."; + return tr("LWJGL version name."); default: return QVariant(); diff --git a/logic/ModList.cpp b/logic/ModList.cpp index a1605506..9f2fc742 100644 --- a/logic/ModList.cpp +++ b/logic/ModList.cpp @@ -467,9 +467,9 @@ QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) case ActiveColumn: return QString(); case NameColumn: - return QString("Name"); + return tr("Name"); case VersionColumn: - return QString("Version"); + return tr("Version"); default: return QVariant(); } @@ -478,11 +478,11 @@ QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) switch (section) { case ActiveColumn: - return "Is the mod enabled?"; + return tr("Is the mod enabled?"); case NameColumn: - return "The name of the mod."; + return tr("The name of the mod."); case VersionColumn: - return "The version of the mod."; + return tr("The version of the mod."); default: return QVariant(); } 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(); diff --git a/logic/forge/ForgeVersionList.cpp b/logic/forge/ForgeVersionList.cpp index ee7c63e3..196ed31e 100644 --- a/logic/forge/ForgeVersionList.cpp +++ b/logic/forge/ForgeVersionList.cpp @@ -99,13 +99,13 @@ QVariant ForgeVersionList::headerData(int section, Qt::Orientation orientation, switch (section) { case 0: - return "Version"; + return tr("Version"); case 1: - return "Minecraft"; + return tr("Minecraft"); case 2: - return "Type"; + return tr("Type"); default: return QVariant(); @@ -115,13 +115,13 @@ QVariant ForgeVersionList::headerData(int section, Qt::Orientation orientation, switch (section) { case 0: - return "The name of the version."; + return tr("The name of the version."); case 1: - return "Minecraft version"; + return tr("Minecraft version"); case 2: - return "The version's type."; + return tr("The version's type."); default: return QVariant(); diff --git a/logic/java/JavaVersionList.cpp b/logic/java/JavaVersionList.cpp index dcb6ced6..0a0be570 100644 --- a/logic/java/JavaVersionList.cpp +++ b/logic/java/JavaVersionList.cpp @@ -99,13 +99,13 @@ QVariant JavaVersionList::headerData(int section, Qt::Orientation orientation, i switch (section) { case 0: - return "Version"; + return tr("Version"); case 1: - return "Arch"; + return tr("Arch"); case 2: - return "Path"; + return tr("Path"); default: return QVariant(); @@ -115,13 +115,13 @@ QVariant JavaVersionList::headerData(int section, Qt::Orientation orientation, i switch (section) { case 0: - return "The name of the version."; + return tr("The name of the version."); case 1: - return "The architecture this version is for."; + return tr("The architecture this version is for."); case 2: - return "Path to this Java version."; + return tr("Path to this Java version."); default: return QVariant(); |