From b4aea87dc0c96776fe8461266718b79dcaea692a Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Mon, 19 May 2014 00:17:06 +0000 Subject: GmailNotifier: decapitalization git-svn-id: http://svn.miranda-ng.org/main/trunk@9240 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/GmailNotifier/src/check.cpp | 2 +- plugins/GmailNotifier/src/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'plugins/GmailNotifier/src') diff --git a/plugins/GmailNotifier/src/check.cpp b/plugins/GmailNotifier/src/check.cpp index a57a12879e..06f73d6326 100644 --- a/plugins/GmailNotifier/src/check.cpp +++ b/plugins/GmailNotifier/src/check.cpp @@ -93,7 +93,7 @@ void CheckMailInbox(Account *curAcc) InternetSetOption(hHTTPRequest, INTERNET_OPTION_USERNAME, _A2T(curAcc->name), (int)strlen(curAcc->name) + 1); InternetSetOption(hHTTPRequest, INTERNET_OPTION_PASSWORD, _A2T(curAcc->pass), (int)strlen(curAcc->pass) + 1); if (!HttpSendRequest(hHTTPRequest, NULL, 0, NULL, 0)) { - lstrcatA(curAcc->results.content, Translate("Can't get rss feed!")); + lstrcatA(curAcc->results.content, Translate("Can't get RSS feed!")); goto error_handle; } while (InternetReadFile(hHTTPRequest, temp, _MAX_DOWN_BUFFER, &bufferLength) && bufferLength > 0) { diff --git a/plugins/GmailNotifier/src/main.cpp b/plugins/GmailNotifier/src/main.cpp index 88ae72888e..6428e1f151 100644 --- a/plugins/GmailNotifier/src/main.cpp +++ b/plugins/GmailNotifier/src/main.cpp @@ -135,11 +135,11 @@ extern "C" int __declspec(dllexport) Load() mi.position = -0x7FFFFFFF; mi.flags = 0; mi.hIcon = LoadSkinnedProtoIcon(pluginName, ID_STATUS_ONLINE); - mi.pszName = LPGEN("&Check All Gmail Inboxes"); + mi.pszName = LPGEN("&Check all Gmail inboxes"); mi.pszContactOwner = pluginName; mi.pszService = "GmailMNotifier/MenuCommand"; Menu_AddMainMenuItem(&mi); - mi.pszName = LPGEN("&Check Gmail Inbox"); + mi.pszName = LPGEN("&Check Gmail inbox"); Menu_AddContactMenuItem(&mi); return 0; } -- cgit v1.2.3