summaryrefslogtreecommitdiff
path: root/plugins/Popup/src/history.cpp
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2019-03-26 14:58:30 +0300
committerdartraiden <wowemuh@gmail.com>2019-03-26 14:58:30 +0300
commite7424b22cd63cfbd3be99790bd080acd431a4f3e (patch)
tree70e304dc6536a53a7e9eb90537d773e1c5d3d05c /plugins/Popup/src/history.cpp
parentaec8f049d43d79c6c8c26a7d9ddfd9460d267275 (diff)
StdPopup and Popup decapitalization
Diffstat (limited to 'plugins/Popup/src/history.cpp')
-rw-r--r--plugins/Popup/src/history.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Popup/src/history.cpp b/plugins/Popup/src/history.cpp
index c4da220b9c..dd9f6afa62 100644
--- a/plugins/Popup/src/history.cpp
+++ b/plugins/Popup/src/history.cpp
@@ -98,7 +98,7 @@ void PopupHistoryAdd(POPUPDATA2 *ppdNew)
void PopupHistoryShow()
{
if (!PopupOptions.EnableHistory) {
- MessageBox(nullptr, TranslateT("Popup History is disabled"), TranslateT("Popup History message"), MB_OK);
+ MessageBox(nullptr, TranslateT("Popup history is disabled"), TranslateT("Popup history message"), MB_OK);
return;
}
@@ -110,7 +110,7 @@ void PopupHistoryShow()
}
else {
hwndHistory = CreateDialog(g_plugin.getInst(), MAKEINTRESOURCE(IDD_HISTORY), nullptr, HistoryDlgProc);
- SetWindowText(hwndHistory, TranslateT("Popup History"));
+ SetWindowText(hwndHistory, TranslateT("Popup history"));
}
}