diff options
author | dartraiden <wowemuh@gmail.com> | 2020-04-14 17:11:39 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-04-14 17:12:16 +0300 |
commit | b254b1118f3d1ed386b9ac39837ce045c1c02cc5 (patch) | |
tree | fd5110e16cba5d9b7d1d3b59a30b3c8f1fbb8642 /plugins/NewStory/src/options.cpp | |
parent | 83bf1b335e6650b1df77dc712e5a39d4141f8db0 (diff) |
NewStory: decapitalization
Diffstat (limited to 'plugins/NewStory/src/options.cpp')
-rw-r--r-- | plugins/NewStory/src/options.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/NewStory/src/options.cpp b/plugins/NewStory/src/options.cpp index 85b5d93d69..566a3c4bec 100644 --- a/plugins/NewStory/src/options.cpp +++ b/plugins/NewStory/src/options.cpp @@ -43,9 +43,9 @@ public: m_tree(this, IDC_TEMPLATES), preview(this, IDC_PREVIEW), gpreview(this, IDC_GPREVIEW), - 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")), - btnPreview(this, IDC_UPDATEPREVIEW, g_plugin.getIcon(ICO_PREVIEW), LPGEN("Update Preview")) + 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")), + btnPreview(this, IDC_UPDATEPREVIEW, g_plugin.getIcon(ICO_PREVIEW), LPGEN("Update preview")) { btnDiscard.OnClick = Callback(this, &COptionsDlg::onClick_Discard); btnPreview.OnClick = Callback(this, &COptionsDlg::UpdatePreview); @@ -150,11 +150,11 @@ public: L"%o", TranslateT("month"), L"%d", TranslateT("day of month"), L"%y", TranslateT("year"), - L"%w", TranslateT("day of week (Sunday, Monday.. translateable)"), + L"%w", TranslateT("day of week (Sunday, Monday... translatable)"), L"%p", TranslateT("am/pm symbol"), - L"%O", TranslateT("name of month, translateable"), + L"%O", TranslateT("name of month, translatable"), L"%M", TranslateT("the message string itself")); - MessageBox(m_hwnd, wszVarHelp, TranslateT("Variables Help"), MB_OK); + MessageBox(m_hwnd, wszVarHelp, TranslateT("Variables help"), MB_OK); } void onSelChanged(CCtrlTreeView::TEventInfo*) @@ -208,7 +208,7 @@ int OptionsInitialize(WPARAM wParam, LPARAM) OPTIONSDIALOGPAGE odp = {}; odp.position = 100000000; odp.szGroup.a = LPGEN("History"); - odp.szTitle.a = LPGEN("Newstory"); + odp.szTitle.a = LPGEN("NewStory"); odp.flags = ODPF_BOLDGROUPS; odp.szTab.a = LPGEN("Templates"); |