diff options
author | George Hazan <ghazan@miranda.im> | 2018-08-29 19:38:51 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-08-29 19:38:51 +0300 |
commit | 0547bea1ba1c85d16b934fd795d46e32829d916d (patch) | |
tree | 7e1fa23749ced30b3b5197b4f6ae0a4ddca5b1f1 /plugins/Msg_Export/src | |
parent | 8f6490d624406c2ed20f0c1b15313302d9414569 (diff) |
fixes #1556 (Msg_Export: translation problem)
Diffstat (limited to 'plugins/Msg_Export/src')
-rwxr-xr-x | plugins/Msg_Export/src/utils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp index 7d1303281b..815cb22ce5 100755 --- a/plugins/Msg_Export/src/utils.cpp +++ b/plugins/Msg_Export/src/utils.cpp @@ -784,7 +784,7 @@ static bool ExportDBEventInfo(MCONTACT hContact, HANDLE hFile, wstring sFilePath for (auto &it : pSettings) {
wstring szValue = _DBGetStringW(hContact, szProto, it, L"");
if (!szValue.empty()) {
- mir_snwprintf(szTemp, L"%-10S: %s\r\n", it, szValue.c_str());
+ mir_snwprintf(szTemp, L"%-10s: %s\r\n", TranslateW(_A2T(it)), szValue.c_str());
output += szTemp;
}
}
|