diff options
Diffstat (limited to 'src/modules/database')
-rw-r--r-- | src/modules/database/database.cpp | 6 | ||||
-rw-r--r-- | src/modules/database/profilemanager.cpp | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp index 13ce6bbfa9..65bb98fb6d 100644 --- a/src/modules/database/database.cpp +++ b/src/modules/database/database.cpp @@ -235,7 +235,7 @@ static void moveProfileDirProfiles(TCHAR *profiledir, BOOL isRootDir = TRUE) TCHAR buf[512];
mir_sntprintf(buf, SIZEOF(buf), TranslateTS(tszMoveMsg), path, path2);
- MessageBox(NULL, buf, _T("Miranda IM"), MB_ICONERROR | MB_OK);
+ MessageBox(NULL, buf, _T("Miranda NG"), MB_ICONERROR | MB_OK);
}
else if (MoveFile(path, path2) == 0)
{
@@ -246,7 +246,7 @@ static void moveProfileDirProfiles(TCHAR *profiledir, BOOL isRootDir = TRUE) TCHAR buf[512];
mir_sntprintf(buf, SIZEOF(buf), TranslateTS(tszMoveMsg), path, path2);
- MessageBox(NULL, buf, _T("Miranda IM"), MB_ICONERROR | MB_OK);
+ MessageBox(NULL, buf, _T("Miranda NG"), MB_ICONERROR | MB_OK);
break;
}
mir_free(profile);
@@ -333,7 +333,7 @@ static int getProfile(TCHAR *szProfile, size_t cch) MessageBox(NULL,
_T("Profile cannot be placed into Miranda root folder.\n")
_T("Please move Miranda profile to some other location."),
- _T("Miranda IM"), MB_ICONERROR | MB_OK);
+ _T("Miranda NG"), MB_ICONERROR | MB_OK);
return 0;
}
if (getProfileAutoRun(szProfile))
diff --git a/src/modules/database/profilemanager.cpp b/src/modules/database/profilemanager.cpp index 6ca3206574..4303aeddf9 100644 --- a/src/modules/database/profilemanager.cpp +++ b/src/modules/database/profilemanager.cpp @@ -78,7 +78,7 @@ static void ThemeDialogBackground(HWND hwnd) static int findProfiles(TCHAR *szProfileDir, ENUMPROFILECALLBACK callback, LPARAM lParam)
{
- // find in Miranda IM profile subfolders
+ // find in Miranda NG profile subfolders
HANDLE hFind = INVALID_HANDLE_VALUE;
WIN32_FIND_DATA ffd;
TCHAR searchspec[MAX_PATH];
@@ -303,7 +303,7 @@ void DeleteProfile(HWND hwndList, int iItem, DlgProfData* dat) mir_sntprintf(profilef, SIZEOF(profilef), TranslateT("Are you sure you want to remove profile \"%s\"?"), profile);
- if (IDYES != MessageBox(NULL, profilef, _T("Miranda IM"), MB_YESNO | MB_TASKMODAL | MB_ICONWARNING))
+ if (IDYES != MessageBox(NULL, profilef, _T("Miranda NG"), MB_YESNO | MB_TASKMODAL | MB_ICONWARNING))
return;
mir_sntprintf(profilef, SIZEOF(profilef), _T("%s\\%s%c"), dat->pd->szProfileDir, profile, 0);
@@ -512,7 +512,7 @@ static INT_PTR CALLBACK DlgProfileManager(HWND hwndDlg, UINT msg, WPARAM wParam, {
TCHAR buf[512];
mir_sntprintf(buf, SIZEOF(buf), _T("%s: %s\n%s"), TranslateT("Miranda Profiles from"), prof->pd->szProfileDir,
- TranslateT("Select or create your Miranda IM user profile"));
+ TranslateT("Select or create your Miranda NG user profile"));
SetDlgItemText(hwndDlg, IDC_NAME, buf);
}
|