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/BaseVersionList.cpp | |
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/BaseVersionList.cpp')
-rw-r--r-- | logic/BaseVersionList.cpp | 8 |
1 files changed, 4 insertions, 4 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(); |