summaryrefslogtreecommitdiff
path: root/protocols/Yahoo
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2016-04-01 21:07:06 +0000
committerDart Raiden <wowemuh@gmail.com>2016-04-01 21:07:06 +0000
commit11bcf4605f7a15604f8154c7b1daceb83e5f2566 (patch)
tree0d3c089d6d64211482b4fe2237b6fff4980ec71c /protocols/Yahoo
parentd00f1a1eef9f3435cefbe8e59723d5eb18fa4f30 (diff)
unificate reconnect warnings (as in Jabber)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16571 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo')
-rw-r--r--protocols/Yahoo/src/options.cpp4
-rw-r--r--protocols/Yahoo/src/proto.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Yahoo/src/options.cpp b/protocols/Yahoo/src/options.cpp
index 284dca5c0b..592f0a455e 100644
--- a/protocols/Yahoo/src/options.cpp
+++ b/protocols/Yahoo/src/options.cpp
@@ -137,7 +137,7 @@ static INT_PTR CALLBACK DlgProcYahooOpts(HWND hwndDlg, UINT msg, WPARAM wParam,
if (reconnectRequired) {
ppro->delSetting(YAHOO_PWTOKEN);
if (ppro->m_bLoggedIn)
- MessageBox(hwndDlg, TranslateT("The changes you have made require you to reconnect to the Yahoo network before they take effect"), TranslateT("YAHOO Options"), MB_OK);
+ MessageBox(hwndDlg, TranslateT("These changes will take effect the next time you connect to the Yahoo network."), TranslateT("Yahoo options"), MB_OK);
}
@@ -230,7 +230,7 @@ YAHOO_DEFAULT_JAPAN_LOGIN_SERVER :
ppro->setByte("YahooJapan", (BYTE)IsDlgButtonChecked(hwndDlg, IDC_YAHOO_JAPAN));
if (reconnectRequired && ppro->m_bLoggedIn)
- MessageBox(hwndDlg, TranslateT("The changes you have made require you to reconnect to the Yahoo network before they take effect"), TranslateT("YAHOO Options"), MB_OK);
+ MessageBox(hwndDlg, TranslateT("These changes will take effect the next time you connect to the Yahoo network."), TranslateT("Yahoo options"), MB_OK);
return TRUE;
}
diff --git a/protocols/Yahoo/src/proto.cpp b/protocols/Yahoo/src/proto.cpp
index 519573f3aa..645bbb95bb 100644
--- a/protocols/Yahoo/src/proto.cpp
+++ b/protocols/Yahoo/src/proto.cpp
@@ -723,7 +723,7 @@ INT_PTR CALLBACK first_run_dialog(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM
if (reconnectRequired) {
ppro->delSetting(YAHOO_PWTOKEN);
if (ppro->m_bLoggedIn)
- MessageBox(hwndDlg, TranslateT("The changes you have made require you to reconnect to the Yahoo network before they take effect"), TranslateT("YAHOO Options"), MB_OK);
+ MessageBox(hwndDlg, TranslateT("These changes will take effect the next time you connect to the Yahoo network."), TranslateT("Yahoo options"), MB_OK);
}
return TRUE;
}