diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-01-14 20:30:11 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-01-14 20:30:11 +0000 |
commit | 096cc752812b9c175c713b59e8ad38b092fd24ba (patch) | |
tree | 227277b9b60b41a990ef7231686198d8a3489f6c | |
parent | 271e854c4e92c0f15ec53e7a5209d0c6da182f22 (diff) |
uneeded capitalization in Ping
git-svn-id: http://svn.miranda-ng.org/main/trunk@7654 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/Ping/src/menu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Ping/src/menu.cpp b/plugins/Ping/src/menu.cpp index 2c8dc45bab..18fd96d8b3 100644 --- a/plugins/Ping/src/menu.cpp +++ b/plugins/Ping/src/menu.cpp @@ -12,7 +12,7 @@ void InitMenus() mi.ptszPopupName = LPGENT("PING");
mi.position = 2000060000;
mi.hIcon = hIconResponding;
- mi.ptszName = LPGENT("Enable All Pings");
+ mi.ptszName = LPGENT("Enable all pings");
mi.pszService = PLUG "/EnableAll";
Menu_AddMainMenuItem(&mi);
@@ -20,7 +20,7 @@ void InitMenus() mi.position = 2000060001;
mi.popupPosition = 0;
mi.hIcon = hIconDisabled;
- mi.ptszName = LPGENT("Disable All Pings");
+ mi.ptszName = LPGENT("Disable all pings");
mi.pszService = PLUG "/DisableAll";
Menu_AddMainMenuItem(&mi);
}
|