summaryrefslogtreecommitdiff
path: root/src/modules/clist/groups.cpp
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/modules/clist/groups.cpp
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/modules/clist/groups.cpp')
-rw-r--r--src/modules/clist/groups.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/clist/groups.cpp b/src/modules/clist/groups.cpp
index 73aba22dab..560261259f 100644
--- a/src/modules/clist/groups.cpp
+++ b/src/modules/clist/groups.cpp
@@ -73,7 +73,7 @@ static INT_PTR CreateGroupInternal(INT_PTR iParent, const TCHAR *ptszName)
char str[33];
int i;
- const TCHAR* grpName = ptszName ? ptszName : TranslateT("New Group");
+ const TCHAR* grpName = ptszName ? ptszName : TranslateT("New group");
if (iParent) {
_itoa(iParent - 1, str, 10);
DBVARIANT dbv;
@@ -190,7 +190,7 @@ static INT_PTR DeleteGroup(WPARAM wParam, LPARAM)
{
TCHAR szQuestion[256+100];
mir_sntprintf(szQuestion, SIZEOF(szQuestion), TranslateT("Are you sure you want to delete group '%s'? This operation cannot be undone."), name);
- if (MessageBox(cli.hwndContactList, szQuestion, TranslateT("Delete Group"), MB_YESNO|MB_ICONQUESTION) == IDNO)
+ if (MessageBox(cli.hwndContactList, szQuestion, TranslateT("Delete group"), MB_YESNO|MB_ICONQUESTION) == IDNO)
return 1;
}
SetCursor(LoadCursor(NULL, IDC_WAIT));
@@ -276,7 +276,7 @@ static int RenameGroupWithMove(int groupId, const TCHAR *szName, int move)
DBVARIANT dbv;
if (GroupNameExists(szName, groupId)) {
- MessageBox(NULL, TranslateT("You already have a group with that name. Please enter a unique name for the group."), TranslateT("Rename Group"), MB_ICONERROR | MB_OK);
+ MessageBox(NULL, TranslateT("You already have a group with that name. Please enter a unique name for the group."), TranslateT("Rename group"), MB_ICONERROR | MB_OK);
return 1;
}