diff options
-rw-r--r-- | plugins/Clist_nicer/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/FileAsMessage/res/resources.rc | 2 | ||||
-rw-r--r-- | plugins/Popup/res/resource.rc | 6 | ||||
-rw-r--r-- | protocols/Yahoo/src/proto.cpp | 4 | ||||
-rw-r--r-- | protocols/Yahoo/src/services.cpp | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/plugins/Clist_nicer/res/resource.rc b/plugins/Clist_nicer/res/resource.rc index 89ecad8057..1cdbe1c538 100644 --- a/plugins/Clist_nicer/res/resource.rc +++ b/plugins/Clist_nicer/res/resource.rc @@ -41,7 +41,7 @@ END IDD_CLNABOUT DIALOGEX 0, 0, 228, 140
STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_CONTROLPARENT
-CAPTION "About CList nicer"
+CAPTION "About Clist nicer"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
LTEXT "",IDC_WHITERECT,0,0,228,116
diff --git a/plugins/FileAsMessage/res/resources.rc b/plugins/FileAsMessage/res/resources.rc index db9a10b5b3..356021379a 100644 --- a/plugins/FileAsMessage/res/resources.rc +++ b/plugins/FileAsMessage/res/resources.rc @@ -71,7 +71,7 @@ BEGIN CONTROL "Use only alphanumeric encoding on transfer",
IDC_ALPHANUM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,57,
217,10
- LTEXT "Extra options: Events > File Transfers, ""Receiving files"" group",
+ LTEXT "Extra options: Events -> File Transfers, ""Receiving files"" group",
IDC_STATIC,10,160,220,8
END
diff --git a/plugins/Popup/res/resource.rc b/plugins/Popup/res/resource.rc index 988e0ab49c..75cd04bd35 100644 --- a/plugins/Popup/res/resource.rc +++ b/plugins/Popup/res/resource.rc @@ -61,8 +61,8 @@ STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD EXSTYLE WS_EX_CONTROLPARENT
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- GROUPBOX "Content && Style",IDC_STATIC,3,3,143,151
- LTEXT "Go to Customize > Fonts && Colors for fonts and colors options",IDC_STATIC,28,60,113,18
+ GROUPBOX "Content and Style",IDC_STATIC,3,3,143,151
+ LTEXT "Go to Customize -> Fonts and Colors for fonts and colors options",IDC_STATIC,28,60,113,18
GROUPBOX "Miscellaneous",IDC_STATIC,3,159,143,38
GROUPBOX "Effects",IDC_STATIC,151,84,146,113
PUSHBUTTON "Live Preview",IDC_PREVIEW,219,203,73,14
@@ -249,7 +249,7 @@ BEGIN CONTROL "",IDC_SPHONE2,"MButtonClass",WS_TABSTOP,260,151,15,14
CONTROL "",IDC_SLUNCH2,"MButtonClass",WS_TABSTOP,276,151,16,14
ICON IDI_MB_INFO,IDC_ICO_INFO,112,170,20,20,SS_CENTERIMAGE | SS_REALSIZEIMAGE
- LTEXT "Colors can be configured in\r\nCustomize > Fonts and colors",IDC_TXT_COLORS,132,171,108,24
+ LTEXT "Colors can be configured in\r\nCustomize -> Fonts and colors",IDC_TXT_COLORS,132,171,108,24
PUSHBUTTON "More...",IDC_MORE,242,176,50,14
PUSHBUTTON "Live Preview",IDC_PREVIEW,219,203,73,14
CONTROL "Disable if message window is open",IDC_CHECKWINDOW,
diff --git a/protocols/Yahoo/src/proto.cpp b/protocols/Yahoo/src/proto.cpp index dd2ecdb1b9..519573f3aa 100644 --- a/protocols/Yahoo/src/proto.cpp +++ b/protocols/Yahoo/src/proto.cpp @@ -396,7 +396,7 @@ int __cdecl CYahooProto::SetStatus(int iNewStatus) }
if (err)
- mir_strncpy(errmsg, Translate("Please enter your Yahoo ID in Options/Network/Yahoo"), 80);
+ mir_strncpy(errmsg, Translate("Please enter your Yahoo ID in Options -> Network -> Yahoo"), 80);
else {
if (!getString(YAHOO_PASSWORD, &dbv)) {
if (mir_strlen(dbv.pszVal) > 0)
@@ -412,7 +412,7 @@ int __cdecl CYahooProto::SetStatus(int iNewStatus) }
if (err)
- mir_strncpy(errmsg, Translate("Please enter your Yahoo password in Options/Network/Yahoo"), 80);
+ mir_strncpy(errmsg, Translate("Please enter your Yahoo password in Options -> Network -> Yahoo"), 80);
}
if (err != 0) {
diff --git a/protocols/Yahoo/src/services.cpp b/protocols/Yahoo/src/services.cpp index 4f33076be5..7e25b7c459 100644 --- a/protocols/Yahoo/src/services.cpp +++ b/protocols/Yahoo/src/services.cpp @@ -279,7 +279,7 @@ INT_PTR __cdecl CYahooProto::OnShowMyProfileCommand(WPARAM, LPARAM) DBVARIANT dbv;
if (getString(YAHOO_LOGINID, &dbv) != 0) {
- ShowError(TranslateT("Yahoo Error"), TranslateT("Please enter your Yahoo ID in Options/Network/Yahoo"));
+ ShowError(TranslateT("Yahoo Error"), TranslateT("Please enter your Yahoo ID in Options -> Network -> Yahoo"));
return 0;
}
|