diff options
-rw-r--r-- | plugins/HistoryPlusPlus/historypp.dpr | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/HistoryPlusPlus/historypp.dpr b/plugins/HistoryPlusPlus/historypp.dpr index 4f7865cb7e..682377d73e 100644 --- a/plugins/HistoryPlusPlus/historypp.dpr +++ b/plugins/HistoryPlusPlus/historypp.dpr @@ -171,7 +171,7 @@ begin begin
hppMessagebox(hppMainWindow, FormatCString( // single line to translation script
TranslateW
- ('History++ module could not be loaded, richedit 2.0+ module is missing.\nPress OK to continue loading Miranda.')
+ ('History++ module could not be loaded, Rich Edit 2.0+ module is missing.\nPress OK to continue loading Miranda.')
), hppName + ' Information', MB_OK or MB_ICONINFORMATION);
Result := 1;
exit;
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index fca90eae40..d649dd39ef 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -203,7 +203,7 @@ int CLStreamRTFInfo::nWriteHeader(char *pszTarget, int nLen) if (nSrcLen > nLen)
{
- MessageBox(NULL, TranslateT("Failed to write to the RichEdit the buffer was to small."), MSG_BOX_TITEL, MB_OK);
+ MessageBox(NULL, TranslateT("Failed to write to the Rich Edit the buffer was to small."), MSG_BOX_TITEL, MB_OK);
return 0; // target buffer to small
}
@@ -525,10 +525,10 @@ bool bUseInternalViewer(bool bNew) bUseIntViewer = bNew;
if (bUseIntViewer && !hRichEditDll)
{
- hRichEditDll = LoadLibraryA("Msftedit.DLL");
+ hRichEditDll = LoadLibraryA("Msftedit.dll");
if (!hRichEditDll)
{
- DisplayLastError(LPGENT("Failed to load Rich Edit ( Msftedit.DLL )"));
+ DisplayLastError(LPGENT("Failed to load Rich Edit (Msftedit.dll)"));
return false;
}
}
@@ -609,7 +609,7 @@ bool bLoadFile(HWND hwndDlg, CLHistoryDlg * pclDlg) HWND hRichEdit = GetDlgItem(hwndDlg, IDC_RICHEDIT);
if (!hRichEdit) {
- MessageBox(hwndDlg, TranslateT("Failed to get handle to RichEdit!"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(hwndDlg, TranslateT("Failed to get handle to Rich Edit!"), MSG_BOX_TITEL, MB_OK);
return false;
}
|