summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-05-19 00:17:06 +0000
committerDart Raiden <wowemuh@gmail.com>2014-05-19 00:17:06 +0000
commitb4aea87dc0c96776fe8461266718b79dcaea692a (patch)
tree6bfc5d8d5f0fba7a751b86d5c705e8888ad3b086 /plugins
parent89fd1e3f4f03914eaa8f16bd613b2b8fde113620 (diff)
GmailNotifier: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@9240 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r--plugins/GmailNotifier/res/options.rc14
-rw-r--r--plugins/GmailNotifier/src/check.cpp2
-rw-r--r--plugins/GmailNotifier/src/main.cpp4
3 files changed, 10 insertions, 10 deletions
diff --git a/plugins/GmailNotifier/res/options.rc b/plugins/GmailNotifier/res/options.rc
index 84ef0333c9..5c193fe17c 100644
--- a/plugins/GmailNotifier/res/options.rc
+++ b/plugins/GmailNotifier/res/options.rc
@@ -33,19 +33,19 @@ FONT 8, "Tahoma"
BEGIN
LTEXT "Name:",IDC_STATIC,26,19,36,9,NOT WS_GROUP
LTEXT "Password:",IDC_STATIC,26,35,36,9,NOT WS_GROUP
- LTEXT "Check Gmail Inbox every",IDC_STATIC,40,78,81,9
+ LTEXT "Check Gmail inbox every",IDC_STATIC,40,78,81,9
LTEXT "minutes",IDC_STATIC,141,78,26,9
LTEXT "Notifier on:",IDC_STATIC,26,93,51,9
LTEXT "<",IDC_STATIC_LESS,133,105,8,10,NOT WS_VISIBLE | NOT
WS_GROUP
LTEXT "Duration:",IDC_STATIC_DURATION,140,100,29,9,NOT
WS_VISIBLE | NOT WS_GROUP
- LTEXT "TXT|BG:",IDC_STATIC_COLOR,140,110,27,9,NOT WS_VISIBLE |
+ LTEXT "Text|Background:",IDC_STATIC_COLOR,140,110,27,9,NOT WS_VISIBLE |
NOT WS_GROUP
LTEXT "custom program",IDC_STATIC_CUSTOM,104,146,52,9,NOT
WS_GROUP
LTEXT "sec.",IDC_STATIC_SEC,185,100,14,9,NOT WS_VISIBLE
- LTEXT "On DBClick:",IDC_STATIC,26,123,51,9
+ LTEXT "On double click:",IDC_STATIC,26,123,51,9
COMBOBOX IDC_NAME,63,17,114,50,CBS_DROPDOWN | CBS_AUTOHSCROLL |
WS_VSCROLL | WS_TABSTOP | 0x8000
EDITTEXT IDC_PASS,63,33,114,11,ES_PASSWORD | ES_AUTOHSCROLL | NOT
@@ -54,9 +54,9 @@ BEGIN
PUSHBUTTON "Save",IDC_BTNSAV,191,26,43,11,0,WS_EX_STATICEDGE
PUSHBUTTON "Delete",IDC_BTNDEL,191,39,43,11,0,WS_EX_STATICEDGE
EDITTEXT IDC_CIRCLE,121,77,18,10,NOT WS_BORDER,WS_EX_STATICEDGE
- CONTROL "System Tray",IDC_OPTTRAY,"Button",BS_AUTOCHECKBOX |
+ CONTROL "System tray",IDC_OPTTRAY,"Button",BS_AUTOCHECKBOX |
WS_TABSTOP,78,93,56,10
- CONTROL "PopUp Plugin",IDC_OPTPOP,"Button",BS_AUTOCHECKBOX |
+ CONTROL "Popup plugin",IDC_OPTPOP,"Button",BS_AUTOCHECKBOX |
WS_TABSTOP,78,104,54,10
CONTROL "Login using default browser",IDC_SYSDEF,"Button",
BS_AUTORADIOBUTTON,78,123,145,10
@@ -73,13 +73,13 @@ BEGIN
CONTROL "Enable icon selection and icon in status bar (restart)",
IDC_SHOWICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,26,
172,186,10
- CONTROL "This is a shared computer so disable Auto Login",
+ CONTROL "This is a shared computer so disable auto login",
IDC_AUTOLOGIN,"Button",BS_AUTO3STATE | WS_TABSTOP,26,184,
186,10
CONTROL "Log unread threads into database (enable history)",
IDC_LOGTHREADS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,26,
196,186,10
- GROUPBOX "Gmail Account",IDC_GROUPMAIN,5,2,250,56
+ GROUPBOX "Gmail account",IDC_GROUPMAIN,5,2,250,56
GROUPBOX "Configuration",IDC_CONFIG,5,65,250,148
EDITTEXT IDC_DURATION,170,100,14,8,NOT WS_VISIBLE | NOT WS_BORDER,
WS_EX_STATICEDGE
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;
}