summaryrefslogtreecommitdiff
path: root/plugins/WebView/src/webview.cpp
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-10-27 22:41:05 +0000
committerDart Raiden <wowemuh@gmail.com>2013-10-27 22:41:05 +0000
commit70c938b678146fb3ae65be2173e3ff27a513889c (patch)
treeff5ea26fe36e407a2c070f4d60f125e44d620866 /plugins/WebView/src/webview.cpp
parent4475f7c71b774faae68a1272cbf0e8df4b8161a4 (diff)
WebView: so much capitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@6654 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WebView/src/webview.cpp')
-rw-r--r--plugins/WebView/src/webview.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/WebView/src/webview.cpp b/plugins/WebView/src/webview.cpp
index b47f9a63d1..5ce833865b 100644
--- a/plugins/WebView/src/webview.cpp
+++ b/plugins/WebView/src/webview.cpp
@@ -55,9 +55,9 @@ void ChangeMenuItem1()
mi.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_SITE));
if (!db_get_b(NULL, MODULENAME, DISABLE_AUTOUPDATE_KEY, 0))
- mi.ptszName = LPGENT("Auto Update Enabled");
+ mi.ptszName = LPGENT("Auto update enabled");
else
- mi.ptszName = LPGENT("Auto Update Disabled");
+ mi.ptszName = LPGENT("Auto update disabled");
CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItem1, (LPARAM)&mi);
}
@@ -73,7 +73,7 @@ void ChangeMenuItemCountdown()
mi.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_UPDATEALL));
TCHAR countername[100];
- mir_sntprintf(countername,SIZEOF(countername), TranslateT("%d Minutes to Update"), db_get_dw(NULL, MODULENAME, COUNTDOWN_KEY, 0));
+ mir_sntprintf(countername,SIZEOF(countername), TranslateT("%d minutes to update"), db_get_dw(NULL, MODULENAME, COUNTDOWN_KEY, 0));
mi.ptszName = countername;
CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItemCountdown, (LPARAM)&mi);