diff options
| author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-04 13:53:21 +0000 |
|---|---|---|
| committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-04 13:53:21 +0000 |
| commit | c16ebfc18413357db69e199f3886abd6bbafd0cf (patch) | |
| tree | 0855f925b70a2629e6dffd1e2aa6bc0a9af720bd /plugins/PackUpdater/src/Notifications.cpp | |
| parent | 2def6c5339047390dbda130db4d77cdb19820961 (diff) | |
PackUpdater renamed to PluginUpdater - part 1
git-svn-id: http://svn.miranda-ng.org/main/trunk@1350 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PackUpdater/src/Notifications.cpp')
| -rw-r--r-- | plugins/PackUpdater/src/Notifications.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/PackUpdater/src/Notifications.cpp b/plugins/PackUpdater/src/Notifications.cpp index a531fe69a6..9abd58265f 100644 --- a/plugins/PackUpdater/src/Notifications.cpp +++ b/plugins/PackUpdater/src/Notifications.cpp @@ -199,7 +199,7 @@ void DlgDownloadProc(FILEURL *pFileUrl, PopupDataText temp) }
if (!DownloadFile(pFileUrl->tszDownloadURL, pFileUrl->tszDiskPath)) {
- LPCTSTR Title = TranslateT("Pack Updater");
+ LPCTSTR Title = TranslateT("Plugin Updater");
LPCTSTR Text = TranslateT("An error occured while downloading the update.");
if (ServiceExists(MS_POPUP_ADDPOPUPEX) && DBGetContactSettingByte(NULL, "PopUp", "ModuleIsEnabled", 1) && DBGetContactSettingByte(NULL, MODNAME, "Popups1", DEFAULT_POPUP_ENABLED)) {
Number = 1;
@@ -248,9 +248,9 @@ LBL_Skip: // download update
FILEURL *pFileUrl = &todo[i].File;
PopupDataText temp;
- temp.Title = TranslateT("Pack Updater");
+ temp.Title = TranslateT("Plugin Updater");
if (todo[i].FileType == 1)
- temp.Text = TranslateT("Downloading pack updates...");
+ temp.Text = TranslateT("Downloading plugin updates...");
else
temp.Text = TranslateT("Downloading update...");
DlgDownloadProc(pFileUrl, temp);
@@ -263,7 +263,7 @@ LBL_Skip: INT rc = -1;
PopupDataText temp;
- temp.Title = TranslateT("Pack Updater");
+ temp.Title = TranslateT("Plugin Updater");
temp.Text = tszBuff;
lstrcpyn(tszBuff, TranslateT("Download complete. Start updating? All your data will be saved and Miranda IM will be closed."), SIZEOF(tszBuff));
if (ServiceExists(MS_POPUP_ADDPOPUPEX) && ServiceExists(MS_POPUP_REGISTERACTIONS) && DBGetContactSettingByte(NULL, "PopUp", "ModuleIsEnabled", 1) && DBGetContactSettingByte(NULL,MODNAME, "Popups0", DEFAULT_POPUP_ENABLED) && (DBGetContactSettingDword(NULL, "PopUp", "Actions", 0) & 1))
@@ -271,8 +271,8 @@ LBL_Skip: else
rc = MessageBox(NULL, temp.Text, temp.Title, MB_YESNO | MB_ICONQUESTION);
if (rc != IDYES) {
- mir_sntprintf(tszBuff, SIZEOF(tszBuff), TranslateT("You have chosen not to install the pack update immediately.\nYou can install it manually from this location:\n\n%s"), tszFileBack);
- LPCTSTR Title = TranslateT("Pack Updater");
+ mir_sntprintf(tszBuff, SIZEOF(tszBuff), TranslateT("You have chosen not to install the plugin updates immediately.\nYou can install it manually from this location:\n\n%s"), tszFileBack);
+ LPCTSTR Title = TranslateT("Plugin Updater");
LPCTSTR Text = tszBuff;
if (ServiceExists(MS_POPUP_ADDPOPUPEX) && DBGetContactSettingByte(NULL, "PopUp", "ModuleIsEnabled", 1) && DBGetContactSettingByte(NULL, MODNAME, "Popups2", DEFAULT_POPUP_ENABLED)) {
Number = 2;
|
