summaryrefslogtreecommitdiff
path: root/src/core/stduihist
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-12-02 00:30:55 +0000
committerDart Raiden <wowemuh@gmail.com>2013-12-02 00:30:55 +0000
commit773612ddd32ba046c36b3ba99c2d2d4b19246312 (patch)
tree01d4a33f8aaa01d7426a857acc9899741a515eba /src/core/stduihist
parentd6d8c8dc0af9dbfed00c87754b8b0aa91aa87815 (diff)
another portion of decapitalization in the core (4/5)
git-svn-id: http://svn.miranda-ng.org/main/trunk@7030 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stduihist')
-rw-r--r--src/core/stduihist/history.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/stduihist/history.cpp b/src/core/stduihist/history.cpp
index 9f2eac9836..dc1e9923d7 100644
--- a/src/core/stduihist/history.cpp
+++ b/src/core/stduihist/history.cpp
@@ -38,7 +38,7 @@ static HANDLE hWindowList = 0;
static void GetMessageDescription(DBEVENTINFO *dbei, TCHAR* buf, int cbBuf)
{
TCHAR* msg = DbGetEventTextT(dbei, CP_ACP);
- _tcsncpy(buf, msg ? msg : TranslateT("Invalid Message"), cbBuf);
+ _tcsncpy(buf, msg ? msg : TranslateT("Invalid message"), cbBuf);
buf[ cbBuf-1 ] = 0;
mir_free(msg);
}
@@ -110,8 +110,8 @@ static void GetObjectSummary(DBEVENTINFO *dbei, TCHAR* str, int cbStr)
break;
case EVENTTYPE_FILE:
- if (dbei->flags & DBEF_SENT) pszSrc = TranslateT("Outgoing File");
- else pszSrc = TranslateT("Incoming File");
+ if (dbei->flags & DBEF_SENT) pszSrc = TranslateT("Outgoing file");
+ else pszSrc = TranslateT("Incoming file");
break;
default:
@@ -270,7 +270,7 @@ static INT_PTR CALLBACK DlgProcHistory(HWND hwndDlg, UINT msg, WPARAM wParam, LP
if (index == LB_ERR)
break;
- if (MessageBox(hwndDlg, TranslateT("Are you sure you want to delete this history item?"), TranslateT("Delete History"), MB_YESNO|MB_ICONQUESTION) == IDYES) {
+ if (MessageBox(hwndDlg, TranslateT("Are you sure you want to delete this history item?"), TranslateT("Delete history"), MB_YESNO|MB_ICONQUESTION) == IDYES) {
hDbevent = (HANDLE)SendDlgItemMessage(hwndDlg, IDC_LIST, LB_GETITEMDATA, index, 0);
db_event_delete(hContact, hDbevent);
SendMessage(hwndDlg, DM_HREBUILD, 0, 0);
@@ -407,7 +407,7 @@ int LoadHistoryModule(void)
CLISTMENUITEM mi = { sizeof(mi) };
mi.position = 1000090000;
mi.icolibItem = GetSkinIconHandle(SKINICON_OTHER_HISTORY);
- mi.pszName = LPGEN("View &History");
+ mi.pszName = LPGEN("View &history");
mi.pszService = MS_HISTORY_SHOWCONTACTHISTORY;
Menu_AddContactMenuItem(&mi);