From 1c6bcb36c8b19d6a40e23dc9a71944e48bb67295 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Mon, 8 Jan 2018 15:47:00 +0300 Subject: SeenPlugin: add missing LPGENW, proper capitalization --- plugins/SeenPlugin/src/options.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'plugins') 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("")); - 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 ")); + MessageBoxW(hdlg, str, TranslateT("Last Seen variables"), MB_OK | MB_TOPMOST); } break; //case WM_COMMAND -- cgit v1.2.3