diff options
author | dartraiden <wowemuh@gmail.com> | 2020-05-02 21:30:45 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-05-02 21:30:45 +0300 |
commit | e59cb2e8ac2d6c21016f773f0f26148343a5839c (patch) | |
tree | 691509fc094aa3ee04f253f98e9e446449acf55f /plugins/NewStory/src/options.cpp | |
parent | a31f8593ccadbd503bac842fd6b6e4c9e84b62aa (diff) |
NewStory: grammarly fixes
Diffstat (limited to 'plugins/NewStory/src/options.cpp')
-rw-r--r-- | plugins/NewStory/src/options.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/NewStory/src/options.cpp b/plugins/NewStory/src/options.cpp index 2bec24a2a8..36f1a4cdfb 100644 --- a/plugins/NewStory/src/options.cpp +++ b/plugins/NewStory/src/options.cpp @@ -68,7 +68,7 @@ public: gpreview(this, IDC_GPREVIEW), btnReset(this, IDC_RESET, Skin_LoadIcon(SKINICON_OTHER_UNDO), LPGEN("Reset to default")), btnDiscard(this, IDC_DISCARD, g_plugin.getIcon(ICO_RESET), LPGEN("Cancel edit")), - bthVarHelp(this, IDC_VARHELP, g_plugin.getIcon(ICO_VARHELP), LPGEN("Help on variables")), + bthVarHelp(this, IDC_VARHELP, g_plugin.getIcon(ICO_VARHELP), LPGEN("Variables help")), btnPreview(this, IDC_UPDATEPREVIEW, g_plugin.getIcon(ICO_PREVIEW), LPGEN("Update preview")) { btnReset.OnClick = Callback(this, &CTemplateOptsDlg::onClick_Reset); @@ -176,9 +176,9 @@ 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"%n", TranslateT("line break"), - L"%S", TranslateT("my nick"), - L"%N", TranslateT("buddy\'s nick"), + L"%n", TranslateT("a \"hard\" line break (cr/lf - will break indent)"), + L"%S", TranslateT("my nickname"), + L"%N", TranslateT("buddy\'s nickname"), L"%c", TranslateT("event count"), L"%I", TranslateT("icon"), L"%i", TranslateT("direction icon"), @@ -190,7 +190,7 @@ public: L"%s", TranslateT("second"), L"%o", TranslateT("month"), L"%d", TranslateT("day of month"), - L"%y", TranslateT("year"), + L"%y", TranslateT("year (4 digits)"), L"%w", TranslateT("day of week (Sunday, Monday... translatable)"), L"%p", TranslateT("AM/PM symbol"), L"%O", TranslateT("name of month, translatable"), |