summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-11-25 21:29:38 +0000
committerDart Raiden <wowemuh@gmail.com>2013-11-25 21:29:38 +0000
commit8ddf68d1de78f2af6ce02f097b43c57253afbf8b (patch)
treeb96bf0190f0cde02223094522d186e502f056ec2 /src
parent36eeccd9e9abe424ff9cf63687c330d6b5b321ae (diff)
portion of decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@6986 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r--src/core/stdchat/src/options.cpp6
-rw-r--r--src/core/stduihist/history.cpp4
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: