diff options
| -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  | 
