From 55fb27f8953f2b311abcc0efece88dd912ba4b1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Sch=C3=BCmann?= Date: Fri, 22 Aug 2014 20:14:40 +0000 Subject: IEHistory: partially revert of r10283 : either do it right, or don't do it at all. capitalization was chosen wisely because it's already used by Miranda and thus doesn't bloat the language files. I also chose to use the very same naming as History++ did. It's our responsibility as developers to not bloat language files. They are already bloated enough, don't extend it even further. (and I wish someone would write a "string search program" to find similar already translated/used strings :P) You may decapitialize it again, but then also do it for History++ and Import. (we could actually different dialog name, as Import uses the same spelling, but as said, History++ doesn't. The menu what so ever must be upper case. Or change it in History++ as well) git-svn-id: http://svn.miranda-ng.org/main/trunk@10305 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/IEHistory/src/IEHistory.cpp | 2 +- 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); -- cgit v1.2.3