diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/stdchat/src/options.cpp | 6 | ||||
-rw-r--r-- | src/core/stduihist/history.cpp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/core/stdchat/src/options.cpp b/src/core/stdchat/src/options.cpp index 1ee629ff4e..097dded947 100644 --- a/src/core/stdchat/src/options.cpp +++ b/src/core/stdchat/src/options.cpp @@ -68,7 +68,7 @@ static const fontOptionsList[] = { { LPGENT("Action message"), RGB(160, 90, 160), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
{ LPGENT("Highlighted message"), RGB(180, 150, 80), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
{ LPGENT("Message typing area"), RGB(0, 0, 40), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
- { LPGENT("User list members (Online)"), RGB(0,0, 0), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
+ { LPGENT("User list members (online)"), RGB(0,0, 0), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
{ LPGENT("User list members (away)"), RGB(170, 170, 170), _T("Verdana"), DEFAULT_CHARSET, 0, -12},
};
@@ -469,8 +469,8 @@ static IconItem iconList[] = void AddIcons(void)
{
- Icon_Register(g_hInst, LPGEN("Messaging") "/" LPGEN("Group Chats"), iconList, 21);
- Icon_Register(g_hInst, LPGEN("Messaging") "/" LPGEN("Group Chats Log"), iconList+21, 14);
+ Icon_Register(g_hInst, LPGEN("Messaging") "/" LPGEN("Group chats"), iconList, 21);
+ Icon_Register(g_hInst, LPGEN("Messaging") "/" LPGEN("Group chats log"), iconList+21, 14);
}
// load icons from the skinning module if available
diff --git a/src/core/stduihist/history.cpp b/src/core/stduihist/history.cpp index e21e9cf21f..9f2eac9836 100644 --- a/src/core/stduihist/history.cpp +++ b/src/core/stduihist/history.cpp @@ -100,8 +100,8 @@ static void GetObjectSummary(DBEVENTINFO *dbei, TCHAR* str, int cbStr) switch(dbei->eventType) {
case EVENTTYPE_MESSAGE:
- if (dbei->flags & DBEF_SENT) pszSrc = TranslateT("Outgoing Message");
- else pszSrc = TranslateT("Incoming Message");
+ if (dbei->flags & DBEF_SENT) pszSrc = TranslateT("Outgoing message");
+ else pszSrc = TranslateT("Incoming message");
break;
case EVENTTYPE_URL:
|