diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-08-22 08:15:14 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-08-22 08:15:14 +0000 |
commit | 646177e3dba3d04a7def90fb8d9b5111ae941eb0 (patch) | |
tree | 30dc2d132c7ffe398583c7c65a6d238bcdde4707 /plugins | |
parent | 6a982a76ad18667fe206e59d67433b5b2cc10c51 (diff) |
IEHistory: decapitalization, description
git-svn-id: http://svn.miranda-ng.org/main/trunk@10283 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/IEHistory/src/IEHistory.cpp | 2 | ||||
-rw-r--r-- | plugins/IEHistory/src/dlgHandlers.cpp | 2 | ||||
-rw-r--r-- | plugins/IEHistory/src/version.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp index babf561f3d..3b62aa6667 100644 --- a/plugins/IEHistory/src/IEHistory.cpp +++ b/plugins/IEHistory/src/IEHistory.cpp @@ -83,7 +83,7 @@ extern "C" int __declspec(dllexport) Load(void) menuItem.pszService = MS_HISTORY_SHOWCONTACTHISTORY; Menu_AddContactMenuItem(&menuItem); /// @todo (White-Tiger#1#08/19/14): fully implement System History someday^^ - menuItem.ptszName = LPGENT("&System History"); + menuItem.ptszName = LPGENT("&System history"); Menu_AddMainMenuItem(&menuItem); HookEvents(); diff --git a/plugins/IEHistory/src/dlgHandlers.cpp b/plugins/IEHistory/src/dlgHandlers.cpp index 2f9b645692..4bb9dd3ef4 100644 --- a/plugins/IEHistory/src/dlgHandlers.cpp +++ b/plugins/IEHistory/src/dlgHandlers.cpp @@ -66,7 +66,7 @@ void LoadName(HWND hWnd) { HistoryWindowData *data = (HistoryWindowData *)GetWindowLongPtr(hWnd, DWLP_USER); if (!data->contact) { - SetWindowText(hWnd, TranslateT("System History")); + SetWindowText(hWnd, TranslateT("System history")); return; } TCHAR *szOther = GetContactName(data->contact); diff --git a/plugins/IEHistory/src/version.h b/plugins/IEHistory/src/version.h index e29d334179..b96b853c56 100644 --- a/plugins/IEHistory/src/version.h +++ b/plugins/IEHistory/src/version.h @@ -28,12 +28,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include <stdver.h> -#define __DESC "IEView History Viewer" +#define __DESC "Shows the history for a given contact using IEView" #define __AUTHOR "Cristian Libotean, Miranda NG team" //#define __AUTHOREMAIL "eblis102@yahoo.com" #define __AUTHOREMAIL "" #define __COPYRIGHT "© 2006 Cristian Libotean, 2014 Miranda NG team" #define __AUTHORWEB "http://miranda-ng.org/p/IEHistory" -#define __PLUGIN_DISPLAY_NAME "IEView History Viewer" +#define __PLUGIN_DISPLAY_NAME "IEView history viewer" #endif //M_IEHISTORY_VERSION_H |