diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/IEHistory/src/IEHistory.cpp | 2 | ||||
-rw-r--r-- | plugins/IEHistory/src/dlgHandlers.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp index 3b62aa6667..babf561f3d 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 0ba668d6b9..c664bbcca1 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); |