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/ModList.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/ModList.cpp')
-rw-r--r-- | logic/ModList.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
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(); } |