diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-25 22:02:05 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-25 22:02:05 +0300 |
commit | 35a613633a2bec681e2cb8e7dac583b16465efef (patch) | |
tree | 440904c52a3dee40f18cf1f5e9d3699140c3e6f3 /src | |
parent | 01e48461e3ddf45c2e9065276ff4b4c5f59ae77b (diff) |
string constants with word dbchecker fixed
Diffstat (limited to 'src')
-rw-r--r-- | src/mir_app/src/database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/database.cpp b/src/mir_app/src/database.cpp index 56710838e5..ce47bd9981 100644 --- a/src/mir_app/src/database.cpp +++ b/src/mir_app/src/database.cpp @@ -462,7 +462,7 @@ static int FindMirandaForProfile(wchar_t *szProfile) }
static wchar_t tszNoDrivers[] = LPGENW("Miranda is unable to open '%s' because you do not have any profile plugins installed.\nYou need to install dbx_mmap.dll");
-static wchar_t tszUnknownFormat[] = LPGENW("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.");
+static wchar_t tszUnknownFormat[] = LPGENW("Miranda was unable to open '%s', it's in an unknown format.");
static wchar_t tszProfileLocked[] = LPGENW("Miranda was unable to open '%s'\nIt's inaccessible or used by other application or Miranda instance");
static wchar_t tszNoSuitableDriver[] = LPGENW("Miranda was unable to open '%s'\nThere is no suitable database driver installed");
|