diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-01-21 15:05:27 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-01-21 15:05:27 +0000 |
commit | 1b921530cc6cd0dfd51bb9b89ccb40f7fc7eef9e (patch) | |
tree | 78c0186746af0ddc01726e888f73f2508fb5c850 /plugins/TabSRMM | |
parent | 9db3a9f7728b62eba6f25deca7238a55ba7078d1 (diff) |
"userlist", "user list", "nicklist" -> "nick list"
git-svn-id: http://svn.miranda-ng.org/main/trunk@7812 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/res/chat.rc | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/chat/options.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/TabSRMM/res/chat.rc b/plugins/TabSRMM/res/chat.rc index 98bfd23542..ae0e1e9258 100644 --- a/plugins/TabSRMM/res/chat.rc +++ b/plugins/TabSRMM/res/chat.rc @@ -129,7 +129,7 @@ BEGIN LTEXT "Maximum number of events in the message window",IDC_STATIC,10,142,225,11
EDITTEXT IDC_LOGLIMIT,248,139,38,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
CONTROL "Spin1",IDC_CHAT_SPIN2,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS | UDS_HOTTRACK,281,138,11,14
- LTEXT "Group chat userlist row height (pixels)",IDC_STATIC_ULIST,10,167,221,8
+ LTEXT "Group chat nick list row height (pixels)",IDC_STATIC_ULIST,10,167,221,8
EDITTEXT IDC_NICKROW2,247,164,29,14,ES_RIGHT | ES_AUTOHSCROLL | ES_NUMBER
CONTROL "",IDC_CHAT_SPIN3,"msctls_updown32",UDS_SETBUDDYINT | UDS_ALIGNRIGHT | UDS_AUTOBUDDY | UDS_ARROWKEYS | UDS_NOTHOUSANDS | UDS_HOTTRACK,275,167,11,14
PUSHBUTTON "Open log file base folder",IDC_MUC_OPENLOGBASEDIR,16,76,155,14
diff --git a/plugins/TabSRMM/src/chat/options.cpp b/plugins/TabSRMM/src/chat/options.cpp index 538f15ae9f..ba995964ef 100644 --- a/plugins/TabSRMM/src/chat/options.cpp +++ b/plugins/TabSRMM/src/chat/options.cpp @@ -154,7 +154,7 @@ static branch_t branch1[] = { { LPGENT("Sync splitter position with standard IM sessions"), "SyncSplitter", 0, 0, NULL },
{ LPGENT("Show contact's status modes if supported by the protocol"), "ShowContactStatus", 0, 1, NULL },
{ LPGENT("Display contact's status icon before user role icon"), "ContactStatusFirst", 0, 0, NULL },
- { LPGENT("Use IRC style status indicators in the user list"), "ClassicIndicators", 0, 0, NULL },
+ { LPGENT("Use IRC style status indicators in the nick list"), "ClassicIndicators", 0, 0, NULL },
{ LPGENT("Use alternative sorting method in member list"), "AlternativeSorting", 0, 1, NULL },
};
@@ -691,7 +691,7 @@ void RegisterFontServiceFonts() { ColourRegisterT(&cid);
}
cid.order++;
- _tcsncpy_s(cid.name, SIZEOF(cid.name), LPGENT("Userlist background"), _TRUNCATE);
+ _tcsncpy_s(cid.name, SIZEOF(cid.name), LPGENT("Nick list background"), _TRUNCATE);
strncpy_s(cid.setting, SIZEOF(cid.setting), "ColorNicklistBG", _TRUNCATE);
cid.defcolour = SRMSGDEFSET_BKGCOLOUR;
ColourRegisterT(&cid);
|