summaryrefslogtreecommitdiff
path: root/plugins/TabSRMM
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2013-12-30 13:10:45 +0000
committerDart Raiden <wowemuh@gmail.com>2013-12-30 13:10:45 +0000
commitb3ab8a9c737cbd5753b1914087d91ef3558cf9fd (patch)
treee51b112319339b4bcd933157a6e9c79787da1c09 /plugins/TabSRMM
parentbb4dacc84d5edf29afb4352af1b1ad742949c0b3 (diff)
"Nickname" occurs much more frequently in sources
git-svn-id: http://svn.miranda-ng.org/main/trunk@7427 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r--plugins/TabSRMM/res/chat.rc4
-rw-r--r--plugins/TabSRMM/src/chat/window.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/res/chat.rc b/plugins/TabSRMM/res/chat.rc
index a2b69bbc5a..98bfd23542 100644
--- a/plugins/TabSRMM/res/chat.rc
+++ b/plugins/TabSRMM/res/chat.rc
@@ -215,8 +215,8 @@ BEGIN
CONTROL "Enable highlighting for message text",IDC_HIGHLIGHTTEXTENABLE,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,125,278,11
EDITTEXT IDC_HIGHLIGHTTEXTPATTERN,11,170,283,35,ES_AUTOHSCROLL
- LTEXT "Words to highlight, wildcards like * and ? are allowed, separate multiple entries with spaces. Leave it empty if you only want to highlight your own nick name.",IDC_STATIC,10,141,284,23
- CONTROL "Highlight messages containing my own nick name",IDC_HIGHLIGHTME,
+ LTEXT "Words to highlight, wildcards like * and ? are allowed, separate multiple entries with spaces. Leave it empty if you only want to highlight your own nickname.",IDC_STATIC,10,141,284,23
+ CONTROL "Highlight messages containing my own nickname",IDC_HIGHLIGHTME,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,11,211,278,11
END
diff --git a/plugins/TabSRMM/src/chat/window.cpp b/plugins/TabSRMM/src/chat/window.cpp
index 417be331ec..8866ceeb7e 100644
--- a/plugins/TabSRMM/src/chat/window.cpp
+++ b/plugins/TabSRMM/src/chat/window.cpp
@@ -1409,7 +1409,7 @@ static void ProcessNickListHovering(HWND hwnd, int hoveredItem, POINT * pt, SESS
if (tszBuf[0] == 0)
mir_sntprintf(tszBuf, SIZEOF(tszBuf), _T("%s: %s\r\n%s: %s\r\n%s: %s"),
- TranslateT("Nick name"), ui1->pszNick,
+ TranslateT("Nickname"), ui1->pszNick,
TranslateT("Unique ID"), ui1->pszUID,
TranslateT("Status"), TM_WordToString( parentdat->pStatuses, ui1->Status));
ti.lpszText = tszBuf;