summaryrefslogtreecommitdiff
path: root/plugins/SeenPlugin
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2018-01-08 15:47:00 +0300
committerdartraiden <wowemuh@gmail.com>2018-01-08 15:47:00 +0300
commit1c6bcb36c8b19d6a40e23dc9a71944e48bb67295 (patch)
tree51fe4b4015bf7c1bab43642e8a10a0c292f4740d /plugins/SeenPlugin
parent5cd78cdeda6ff0faf27da5f32c2dee7323113ef4 (diff)
SeenPlugin: add missing LPGENW, proper capitalization
Diffstat (limited to 'plugins/SeenPlugin')
-rw-r--r--plugins/SeenPlugin/src/options.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/plugins/SeenPlugin/src/options.cpp b/plugins/SeenPlugin/src/options.cpp
index 39337ea123..00f5eaf808 100644
--- a/plugins/SeenPlugin/src/options.cpp
+++ b/plugins/SeenPlugin/src/options.cpp
@@ -52,15 +52,15 @@ static helpstring section3[] =
{ 'n', LPGENW("username") },
{ 'N', LPGENW("nick") },
{ 'u', LPGENW("UIN/handle") },
- { 'G', LPGENW("Group") },
- { 's', LPGENW("Status") },
- { 'T', LPGENW("Status message") },
- { 'o', LPGENW("Old status") },
+ { 'G', LPGENW("group") },
+ { 's', LPGENW("status") },
+ { 'T', LPGENW("status message") },
+ { 'o', LPGENW("old status") },
{ 'i', LPGENW("external IP") },
{ 'r', LPGENW("internal IP") },
- { 'C', LPGENW("Client info") },
- { 'P', LPGENW("Protocol") },
- { 'A', LPGENW("Account") },
+ { 'C', LPGENW("client info") },
+ { 'P', LPGENW("protocol") },
+ { 'A', LPGENW("account") },
};
static helpstring section4[] =
@@ -333,12 +333,12 @@ INT_PTR CALLBACK OptsSettingsDlgProc(HWND hdlg, UINT msg, WPARAM wparam, LPARAM
if (LOWORD(wparam) == IDC_VARIABLES) {
CMStringW str;
- addSection(str, L"-- Date --", section1, _countof(section1));
- addSection(str, L"-- Time --", section2, _countof(section2));
- addSection(str, L"-- User --", section3, _countof(section3));
- addSection(str, L"-- Format --", section4, _countof(section4));
- str.AppendFormat(L"%s\t%s \"#\" %s\n\t%s %s", TranslateT("Note:"), TranslateT("Use"), TranslateT("for empty string"), TranslateT("instead of"), TranslateT("<unknown>"));
- MessageBoxW(hdlg, str, TranslateT("Last Seen Variables"), MB_OK | MB_TOPMOST);
+ addSection(str, LPGENW("-- Date --"), section1, _countof(section1));
+ addSection(str, LPGENW("-- Time --"), section2, _countof(section2));
+ addSection(str, LPGENW("-- User --"), section3, _countof(section3));
+ addSection(str, LPGENW("-- Format --"), section4, _countof(section4));
+ str.AppendFormat(L"%s\t%s\n\t%s", TranslateT("Note:"), TranslateT("Use # for empty string"), TranslateT("instead of <unknown>"));
+ MessageBoxW(hdlg, str, TranslateT("Last Seen variables"), MB_OK | MB_TOPMOST);
}
break; //case WM_COMMAND