diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Yahoo/src/proto.cpp | 4 | ||||
-rw-r--r-- | protocols/Yahoo/src/services.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
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;
}
|