diff options
Diffstat (limited to 'plugins/Msg_Export')
-rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 2 | ||||
-rw-r--r-- | plugins/Msg_Export/src/Version.h | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index 21b8396764..b3f46b2dc6 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -525,7 +525,7 @@ bool bOpenExternaly( MCONTACT hContact ) &sStartupInfo,
&stProcesses))
{
- DisplayLastError( LPGENT("Faile to execute external file view"));
+ DisplayLastError( LPGENT("Failed to execute external file view"));
}
return true;
}
diff --git a/plugins/Msg_Export/src/Version.h b/plugins/Msg_Export/src/Version.h index 573ac7a98a..f97c21c63b 100644 --- a/plugins/Msg_Export/src/Version.h +++ b/plugins/Msg_Export/src/Version.h @@ -7,7 +7,7 @@ #define __PLUGIN_NAME "Message export"
#define __FILENAME "Msg_Export.dll"
-#define __DESCRIPTION "Exports every message, URL or File you receive to a text file."
+#define __DESCRIPTION "Exports every message, URL or file you receive to a text file."
#define __AUTHOR "Kennet Nielsen, mod by ring0"
#define __AUTHOREMAIL "Kennet_N@ofir.dk"
#define __AUTHORWEB "http://miranda-ng.org/p/Msg_Export/"
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index cee3a516be..f6dfa69f44 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -244,7 +244,7 @@ int nExportCompleatList(HWND hParent, bool bOnlySelected ) { // window text update
- SetWindowText( hStatus, TranslateT("Sorting and writing database information ( Phase 2 of 2 )"));
+ SetWindowText( hStatus, TranslateT("Sorting and writing database information (Phase 2 of 2)"));
SendMessage( hProg, PBM_SETRANGE, 0, MAKELPARAM( 0, AllEvents.size()));
SendMessage( hProg, PBM_SETPOS, 0, 0);
}
@@ -594,7 +594,7 @@ void OpenHelp(HWND hwndDlg) }
}
- MessageBox(hwndDlg, TranslateT("Failed to get the path to Msg_Export.dll\nPlease locate Msg_Export.txt your self"), MSG_BOX_TITEL, MB_OK);
+ MessageBox(hwndDlg, TranslateT("Failed to get the path to Msg_Export.dll\nPlease locate Msg_Export.txt yourself"), MSG_BOX_TITEL, MB_OK);
}
/////////////////////////////////////////////////////////////////////
|