don't try to translate the standard encoding names

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11591 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-09-11 17:04:41 +00:00
parent 9968ba85be
commit a4a6984d5e

View File

@@ -133,7 +133,7 @@ static const wxChar* gs_encodingDescs[] =
wxTRANSLATE( "Unicode 8 bit (UTF-8)" ), wxTRANSLATE( "Unicode 8 bit (UTF-8)" ),
}; };
// and the internal names // and the internal names (these are not translated on purpose!)
static const wxChar* gs_encodingNames[] = static const wxChar* gs_encodingNames[] =
{ {
wxT( "iso-8859-1" ), wxT( "iso-8859-1" ),
@@ -385,7 +385,7 @@ wxString wxFontMapper::GetEncodingName(wxFontEncoding encoding)
{ {
if ( gs_encodings[i] == encoding ) if ( gs_encodings[i] == encoding )
{ {
return wxGetTranslation(gs_encodingNames[i]); return gs_encodingNames[i];
} }
} }
@@ -712,7 +712,8 @@ bool wxFontMapper::GetAltForEncoding(wxFontEncoding encoding,
// wxFatalError doesn't return // wxFatalError doesn't return
} }
wxString configEntry, encName = GetEncodingName(encoding); wxString configEntry,
encName = GetEncodingName(encoding);
if ( !!facename ) if ( !!facename )
{ {
configEntry = facename + _T("_"); configEntry = facename + _T("_");