diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_modern/src/modern_cachefuncs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_cachefuncs.cpp b/plugins/Clist_modern/src/modern_cachefuncs.cpp index ffe54f0a4d..77640cce7a 100644 --- a/plugins/Clist_modern/src/modern_cachefuncs.cpp +++ b/plugins/Clist_modern/src/modern_cachefuncs.cpp @@ -357,7 +357,7 @@ int GetStatusMessage(wchar_t *text, int text_size, ClcCacheEntry *pdnce, BOOL xs if (noAwayMsg && ServiceExists(MS_LASTSEEN_GET)) { ptrW pwszLastSeen((LPWSTR)CallService(MS_LASTSEEN_GET, (WPARAM)pdnce->hContact)); if (pwszLastSeen) { - CMStringW wszLastSeen(FORMAT, L"%s: %s", Translate("Last seen"), pwszLastSeen); + CMStringW wszLastSeen(FORMAT, L"%s: %s", TranslateT("Last seen"), pwszLastSeen); CopySkipUnprintableChars(text, (wchar_t*)wszLastSeen.c_str(), text_size - 1); if (text[0] != '\0') return 1; |