summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-05-12 13:54:31 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-05-12 13:54:31 +0000
commit6dbfe2bfd862a6eb29d2265038664fc8919283da (patch)
tree921701e4a605277e2b768e478d1ed28bec04cd62 /src/core
parent7e3de4d68f777be7834ec59a735bb0f938e9b7c8 (diff)
remove \ befor '
git-svn-id: http://svn.miranda-ng.org/main/trunk@9163 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core')
-rw-r--r--src/core/stdchat/src/options.cpp6
-rw-r--r--src/core/stdchat/src/tools.cpp2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/stdchat/src/options.cpp b/src/core/stdchat/src/options.cpp
index 1006a9bcbb..7d36dde011 100644
--- a/src/core/stdchat/src/options.cpp
+++ b/src/core/stdchat/src/options.cpp
@@ -62,9 +62,9 @@ static const struct branch_t branch2[] = {
{ LPGENT("Timestamp has same color as the event"), "TimeStampEventColour", 0,0},
{ LPGENT("Indent the second line of a message"), "LogIndentEnabled", 0,1},
{ LPGENT("Limit user names in the message log to 20 characters"), "LogLimitNames", 0,1},
- { LPGENT("Add \':\' to auto-completed user names"), "AddColonToAutoComplete", 0, 1},
+ { LPGENT("Add ':' to auto-completed user names"), "AddColonToAutoComplete", 0, 1},
{ LPGENT("Strip colors from messages in the log"), "StripFormatting", 0, 0},
- { LPGENT("Enable the \'event filter\' for new rooms"), "FilterEnabled", 0,0}
+ { LPGENT("Enable the 'event filter' for new rooms"), "FilterEnabled", 0,0}
};
static const struct branch_t branch3[] = {
@@ -338,7 +338,7 @@ static INT_PTR CALLBACK DlgProcOptions1(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPA
hListHeading0 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Options for using a tabbed interface"), db_get_b(NULL, CHAT_MODULE, "Branch0Exp", 0)?TRUE:FALSE);
hListHeading1 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Appearance and functionality of chat room windows"), db_get_b(NULL, CHAT_MODULE, "Branch1Exp", 0)?TRUE:FALSE);
hListHeading2 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Appearance of the message log"), db_get_b(NULL, CHAT_MODULE, "Branch2Exp", 0)?TRUE:FALSE);
- hListHeading3 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Default events to show in new chat rooms if the \'event filter\' is enabled"), db_get_b(NULL, CHAT_MODULE, "Branch3Exp", 0)?TRUE:FALSE);
+ hListHeading3 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Default events to show in new chat rooms if the 'event filter' is enabled"), db_get_b(NULL, CHAT_MODULE, "Branch3Exp", 0)?TRUE:FALSE);
hListHeading4 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Icons to display in the message log"), db_get_b(NULL, CHAT_MODULE, "Branch4Exp", 0)?TRUE:FALSE);
hListHeading5 = InsertBranch(GetDlgItem(hwndDlg, IDC_CHECKBOXES), LPGEN("Icons to display in the tray"), db_get_b(NULL, CHAT_MODULE, "Branch5Exp", 0)?TRUE:FALSE);
if (PopupInstalled)
diff --git a/src/core/stdchat/src/tools.cpp b/src/core/stdchat/src/tools.cpp
index 173aaee7a7..81d154ce41 100644
--- a/src/core/stdchat/src/tools.cpp
+++ b/src/core/stdchat/src/tools.cpp
@@ -135,7 +135,7 @@ UINT CreateGCMenu(HWND hwndDlg, HMENU *hMenu, int iIndex, POINT pt, SESSION_INFO
if (pszWordText && pszWordText[0]) {
TCHAR szMenuText[4096];
- mir_sntprintf(szMenuText, 4096, TranslateT("Look up \'%s\':"), pszWordText);
+ mir_sntprintf(szMenuText, 4096, TranslateT("Look up '%s':"), pszWordText);
ModifyMenu(*hMenu, 4, MF_STRING | MF_BYPOSITION, 4, szMenuText);
}
else ModifyMenu(*hMenu, 4, MF_STRING | MF_GRAYED | MF_BYPOSITION, 4, TranslateT("No word to look up"));