diff options
author | dartraiden <wowemuh@gmail.com> | 2020-04-24 03:16:44 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-04-24 03:17:49 +0300 |
commit | bba45ab87060e850282d744d9663a34a34b978aa (patch) | |
tree | 9209ed435c37d38262586df5d67d29b9332a729a /plugins | |
parent | 38418bfefb15124e9f40a8b4c47e12ac7a1680a4 (diff) |
NewStory: fix variable name
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/NewStory/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewStory/src/options.cpp b/plugins/NewStory/src/options.cpp index f6e3d0895a..dae3d07a52 100644 --- a/plugins/NewStory/src/options.cpp +++ b/plugins/NewStory/src/options.cpp @@ -151,7 +151,7 @@ public: { CMStringW wszVarHelp; wszVarHelp.Format(L"%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s\n%s - %s", - L"%", TranslateT("simply % character"), + L"%%", TranslateT("simply % character"), L"%n", TranslateT("line break"), L"%S", TranslateT("my nick"), L"%N", TranslateT("buddy\'s nick"), @@ -168,7 +168,7 @@ public: L"%d", TranslateT("day of month"), L"%y", TranslateT("year"), L"%w", TranslateT("day of week (Sunday, Monday... translatable)"), - L"%p", TranslateT("am/pm symbol"), + L"%p", TranslateT("AM/PM symbol"), L"%O", TranslateT("name of month, translatable"), L"%M", TranslateT("the message string itself")); MessageBox(m_hwnd, wszVarHelp, TranslateT("Variables help"), MB_OK); |