diff options
| author | Tannin <devnull@localhost> | 2015-01-22 19:47:18 +0100 |
|---|---|---|
| committer | Tannin <devnull@localhost> | 2015-01-22 19:47:18 +0100 |
| commit | c2edbcf90ff78bb6040cdcd8538468d6e3d1d42e (patch) | |
| tree | f2291f5eb558171b864cf73dcccd7e99930d68d8 /src/modinfo.cpp | |
| parent | 2400e2c99ed3aa44152147ea7402c7f05f984aec (diff) | |
bugfix: initialization order was wrong and so kept foreign language systems from correctly loading mod order if Unmanaged is translated
"Unmanaged" is no longer translatable as its used internally as an identifier
Diffstat (limited to 'src/modinfo.cpp')
| -rw-r--r-- | src/modinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfo.cpp b/src/modinfo.cpp index dd3f3c40..a9e134b7 100644 --- a/src/modinfo.cpp +++ b/src/modinfo.cpp @@ -1052,5 +1052,5 @@ ModInfoForeign::ModInfoForeign(const QString &referenceFile, const QStringList & , m_Archives(archives) { m_CreationTime = QFileInfo(referenceFile).created(); - m_Name = tr("Unmanaged") + ": " + QFileInfo(m_ReferenceFile).baseName(); + m_Name = "Unmanaged: " + QFileInfo(m_ReferenceFile).baseName(); } |
