summaryrefslogtreecommitdiffstats
path: root/logic/java
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2014-11-02 19:24:28 +0100
committerJan Dalheimer <jan@dalheimer.de>2014-11-02 19:25:11 +0100
commita3a5afe1198266e7c4a1bc6dd8f65062426b24c4 (patch)
tree6df6a629cabd3e1d4314abb3bb3e6575be13cc67 /logic/java
parent7fb6cafe9e54270b7daf47bf394fd969d44e1c37 (diff)
downloadMultiMC-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/java')
-rw-r--r--logic/java/JavaVersionList.cpp12
1 files changed, 6 insertions, 6 deletions
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();