diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-04-06 13:45:03 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-04-06 13:45:03 +0000 |
commit | 4110a3ae07db6fecafbee1ceb69a51c427a0d7c9 (patch) | |
tree | dff3859f67be8ae4f7a91442eb39801d3a7fcc86 /plugins/Scriver/src/msgs.cpp | |
parent | 76771752262e40fa41c189bbac761de9fb5eb1e0 (diff) |
Scriver: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@12630 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/msgs.cpp')
-rw-r--r-- | plugins/Scriver/src/msgs.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Scriver/src/msgs.cpp b/plugins/Scriver/src/msgs.cpp index 1bd21e47dd..910a7ee1dd 100644 --- a/plugins/Scriver/src/msgs.cpp +++ b/plugins/Scriver/src/msgs.cpp @@ -213,7 +213,7 @@ static int TypingMessage(WPARAM hContact, LPARAM lParam) MIRANDASYSTRAYNOTIFY tn;
tn.szProto = NULL;
tn.cbSize = sizeof(tn);
- tn.tszInfoTitle = TranslateT("Typing Notification");
+ tn.tszInfoTitle = TranslateT("Typing notification");
tn.tszInfo = szTip;
tn.dwInfoFlags = NIIF_INFO | NIIF_INTERN_UNICODE;
tn.uTimeout = 1000 * 4;
@@ -563,9 +563,9 @@ int OnLoadModule(void) hHookWinPopup = CreateHookableEvent(ME_MSG_WINDOWPOPUP);
hHookWinWrite = CreateHookableEvent(ME_MSG_PRECREATEEVENT);
- SkinAddNewSoundEx("RecvMsgActive", LPGEN("Instant messages"), LPGEN("Incoming (Focused Window)"));
- SkinAddNewSoundEx("RecvMsgInactive", LPGEN("Instant messages"), LPGEN("Incoming (Unfocused Window)"));
- SkinAddNewSoundEx("AlertMsg", LPGEN("Instant messages"), LPGEN("Incoming (New Session)"));
+ SkinAddNewSoundEx("RecvMsgActive", LPGEN("Instant messages"), LPGEN("Incoming (focused window)"));
+ SkinAddNewSoundEx("RecvMsgInactive", LPGEN("Instant messages"), LPGEN("Incoming (unfocused window)"));
+ SkinAddNewSoundEx("AlertMsg", LPGEN("Instant messages"), LPGEN("Incoming (new session)"));
SkinAddNewSoundEx("SendMsg", LPGEN("Instant messages"), LPGEN("Outgoing"));
SkinAddNewSoundEx("TNStart", LPGEN("Instant messages"), LPGEN("Contact started typing"));
SkinAddNewSoundEx("TNStop", LPGEN("Instant messages"), LPGEN("Contact stopped typing"));
|