summaryrefslogtreecommitdiff
path: root/plugins/HistoryLinkListPlus/src
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2014-06-25 10:41:00 +0000
committerDart Raiden <wowemuh@gmail.com>2014-06-25 10:41:00 +0000
commitef3d78ced8e7f00cce5907993ff928f733899d67 (patch)
treee5f28551193661e864deb9617c1f89bb5fd84db1 /plugins/HistoryLinkListPlus/src
parentdb0d799d1f72a3b49e54bb2e81ec091e636353b3 (diff)
LinkList: decapitalization
IRC: removed unneeded spaces git-svn-id: http://svn.miranda-ng.org/main/trunk@9577 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistoryLinkListPlus/src')
-rw-r--r--plugins/HistoryLinkListPlus/src/language.h2
-rw-r--r--plugins/HistoryLinkListPlus/src/linklist_dlg.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HistoryLinkListPlus/src/language.h b/plugins/HistoryLinkListPlus/src/language.h
index 7fa3deb742..762ae0d58d 100644
--- a/plugins/HistoryLinkListPlus/src/language.h
+++ b/plugins/HistoryLinkListPlus/src/language.h
@@ -31,7 +31,7 @@
#define TXT_URLSONLY TranslateT("Web addresses only")
#define TXT_MAILSONLY TranslateT("Mail addresses only")
#define TXT_SEARCH TranslateT("Search")
-#define TXT_SEARCHFILTER TranslateT("Search Filter")
+#define TXT_SEARCHFILTER TranslateT("Search filter")
#define TXT_NOSETTING TranslateT("no settings")
#define TXT_DATE TranslateT("Date")
diff --git a/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp b/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp
index 711eb41639..8ed8ba5cd9 100644
--- a/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp
+++ b/plugins/HistoryLinkListPlus/src/linklist_dlg.cpp
@@ -84,7 +84,7 @@ INT_PTR WINAPI MainDlgProc( HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam )
SetClassLongPtr(hDlg, GCLP_HICON, (LONG_PTR)LoadIcon(hInst, MAKEINTRESOURCE(IDI_LINKLISTICON)));
WindowList_Add(hWindowList, hDlg, DlgParam->hContact);
- mir_sntprintf(title, _countof(title), _T("%s [%s]"), TranslateT("Linklist Plugin"), (LPCTSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)DlgParam->hContact, GCDNF_TCHAR));
+ mir_sntprintf(title, _countof(title), _T("%s [%s]"), TranslateT("Linklist plugin"), (LPCTSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)DlgParam->hContact, GCDNF_TCHAR));
SetWindowText(hDlg, title);
GetFilterText(listMenu, filter, _countof(filter));
SetDlgItemText(hDlg, IDC_STATUS, filter);