diff options
Diffstat (limited to 'src/modules/clist/clistsettings.cpp')
-rw-r--r-- | src/modules/clist/clistsettings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/clist/clistsettings.cpp b/src/modules/clist/clistsettings.cpp index fc5b202247..fa022967e8 100644 --- a/src/modules/clist/clistsettings.cpp +++ b/src/modules/clist/clistsettings.cpp @@ -151,7 +151,7 @@ TCHAR* fnGetContactDisplayName(HANDLE hContact, int mode) }
CallContactService(hContact, PSS_GETINFO, SGIF_MINIMAL, 0);
- TCHAR *buffer = TranslateT("(Unknown Contact)");
+ TCHAR *buffer = TranslateT("(Unknown contact)");
return (cacheEntry == NULL) ? mir_tstrdup(buffer) : buffer;
}
@@ -202,7 +202,7 @@ INT_PTR GetContactDisplayName(WPARAM wParam, LPARAM lParam) }
CallContactService(hContact, PSS_GETINFO, SGIF_MINIMAL, 0);
- char* result = Translate("(Unknown Contact)");
+ char* result = Translate("(Unknown contact)");
return (INT_PTR)((cacheEntry == NULL) ? mir_strdup(result) : result);
}
|