diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-26 13:08:44 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-08-26 13:08:44 +0000 |
commit | 5eade73f11a544aeda8aa01f2e82f3e32c40e2b8 (patch) | |
tree | bfea33e999ad27b63e1564521492eb0caec09d40 /src/modules/database/database.cpp | |
parent | 25939fa107807f884c05db7377cb47fcaf1805cf (diff) |
- spelling correction (patch from RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@5840 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/database/database.cpp')
-rw-r--r-- | src/modules/database/database.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp index f9718181cf..240daf3277 100644 --- a/src/modules/database/database.cpp +++ b/src/modules/database/database.cpp @@ -198,7 +198,7 @@ static void moveProfileDirProfiles(TCHAR *profiledir, BOOL isRootDir = TRUE) if (_taccess(path2, 0) == 0) {
TCHAR buf[512];
mir_sntprintf(buf, SIZEOF(buf),
- TranslateT("Miranda is trying to upgrade your profile structure.\nIt cannot move profile %s to the new location %s\nBecause profile with this name already exist. Please resolve the issue manually."),
+ TranslateT("Miranda is trying to upgrade your profile structure.\nIt cannot move profile %s to the new location %s\nBecause profile with this name already exists. Please resolve the issue manually."),
path, path2);
MessageBox(NULL, buf, _T("Miranda NG"), MB_ICONERROR | MB_OK);
}
@@ -460,7 +460,7 @@ int LoadDatabaseModule(void) // file isn't locked, just no driver could open it.
TCHAR buf[256];
TCHAR* p = _tcsrchr(szProfile, '\\');
- mir_sntprintf(buf, SIZEOF(buf), TranslateT("Miranda was unable to open '%s', it's in an unknown format.\nThis profile might also be damaged, please run DBChecker which should be installed."), p ? ++p : szProfile);
+ mir_sntprintf(buf, SIZEOF(buf), TranslateT("Miranda was unable to open '%s', it's in an unknown format.\nThis profile might also be damaged, please run DbChecker which should be installed."), p ? ++p : szProfile);
MessageBox(0, buf, TranslateT("Miranda can't understand that profile"), MB_OK | MB_ICONERROR);
}
else if ( !FindMirandaForProfile(szProfile)) {
|