diff options
author | René Schümann <white06tiger@gmail.com> | 2014-08-22 20:14:40 +0000 |
---|---|---|
committer | René Schümann <white06tiger@gmail.com> | 2014-08-22 20:14:40 +0000 |
commit | 55fb27f8953f2b311abcc0efece88dd912ba4b1e (patch) | |
tree | d5531a6b4eccbf0d7e44370d969fe20d0a1bbdc8 /plugins | |
parent | d0cf1b15c75f56ea7a9df146101d9b6779f3eeee (diff) |
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
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); |