diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-10-10 15:05:58 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-10-10 15:05:58 +0000 |
commit | 5fd4cb7cbf50a154c356b0a16171d6f56977b57e (patch) | |
tree | 17dbb829989d8257b3b89ec75cc64aecb48c1d69 /plugins/AvatarHistory/src/utils.cpp | |
parent | 25b33996e85b86570e0dd53bb235488a655acc2d (diff) |
Avatar History: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@17356 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AvatarHistory/src/utils.cpp')
-rw-r--r-- | plugins/AvatarHistory/src/utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/AvatarHistory/src/utils.cpp b/plugins/AvatarHistory/src/utils.cpp index ac3e3ab1fd..2f15252694 100644 --- a/plugins/AvatarHistory/src/utils.cpp +++ b/plugins/AvatarHistory/src/utils.cpp @@ -102,7 +102,7 @@ wchar_t* GetProtocolFolder(wchar_t *fn, char *proto) GetHistoryFolder(fn);
if (proto == NULL)
- proto = Translate("Unknown Protocol");
+ proto = Translate("Unknown protocol");
mir_snwprintf(fn, MAX_PATH, L"%s\\%S", fn, proto);
CreateDirectoryTreeW(fn);
@@ -140,7 +140,7 @@ wchar_t* GetOldStyleAvatarName(wchar_t *fn, MCONTACT hContact) L"%s\\%04d-%02d-%02d %02dh%02dm%02ds", fn,
curtime.wYear, curtime.wMonth, curtime.wDay,
curtime.wHour, curtime.wMinute, curtime.wSecond);
- ShowDebugPopup(hContact,L"AVH Debug: GetOldStyleAvatarName",fn);
+ ShowDebugPopup(hContact, L"AVH Debug: GetOldStyleAvatarName",fn);
return fn;
}
@@ -155,11 +155,11 @@ void CreateOldStyleShortcut(MCONTACT hContact, wchar_t *history_filename) if (!CreateShortcut(history_filename, shortcut))
{
- ShowPopup(hContact, TranslateT("Avatar History: Unable to create shortcut"), shortcut);
+ ShowPopup(hContact, TranslateT("Avatar history: Unable to create shortcut"), shortcut);
}
else
{
- ShowDebugPopup(hContact, L"AVH Debug: Shortcut created successfully", shortcut);
+ ShowDebugPopup(hContact, L"AVH Debug: Shortcut created successfully"), shortcut);
}
}
|