DP:
1. _() calls added where needed. 2. const added in params in postscrp.[h,cpp] in order to compile with _(). 3. Some .cvsignore added. (I did not found any .cvsignore in repository, it is rather hard to compile something without them...) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -115,7 +115,7 @@ wxTextFile::Type wxTextFile::GuessType() const
|
||||
case Type_Unix: nUnix++; break; \
|
||||
case Type_Dos: nDos++; break; \
|
||||
case Type_Mac: nMac++; break; \
|
||||
default: wxFAIL_MSG("unknown line terminator"); \
|
||||
default: wxFAIL_MSG(_("unknown line terminator")); \
|
||||
}
|
||||
|
||||
uint n;
|
||||
@@ -131,7 +131,7 @@ wxTextFile::Type wxTextFile::GuessType() const
|
||||
// interpret the results (@@ far from being even 50% fool proof)
|
||||
if ( nDos + nUnix + nMac == 0 ) {
|
||||
// no newlines at all
|
||||
wxLogWarning("'%s' is probably a binary file.", m_strFile.c_str());
|
||||
wxLogWarning(_("'%s' is probably a binary file."), m_strFile.c_str());
|
||||
}
|
||||
else {
|
||||
#define GREATER_OF(t1, t2) n##t1 == n##t2 ? typeDefault \
|
||||
@@ -224,7 +224,7 @@ bool wxTextFile::Write(Type typeNew)
|
||||
wxTempFile fileTmp(m_strFile);
|
||||
|
||||
if ( !fileTmp.IsOpened() ) {
|
||||
wxLogError("can't write file '%s' to disk.", m_strFile.c_str());
|
||||
wxLogError(_("can't write file '%s' to disk."), m_strFile.c_str());
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user