removed extremely user-unfriendly translations

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18235 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2002-12-14 21:16:58 +00:00
parent 59da340790
commit a949e8fac2
2 changed files with 4 additions and 4 deletions

View File

@@ -333,14 +333,14 @@ void *wxDllLoader::GetSymbol(wxDllType dllHandle, const wxString &name, bool *su
if ( !symbol ) if ( !symbol )
{ {
wxString msg(_("wxDllLoader failed to GetSymbol '%s'"));
#ifdef HAVE_DLERROR #ifdef HAVE_DLERROR
const wxChar *err = dlerror(); const wxChar *err = dlerror();
if( err ) if( err )
{ {
failed = TRUE; failed = TRUE;
wxLogError( msg, err ); wxLogError( msg, err );
wxLogError(_("Couldn't find symbol '%s' in a dynamic library"),
err);
} }
#else #else
failed = TRUE; failed = TRUE;

View File

@@ -279,7 +279,6 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
if ( !symbol ) if ( !symbol )
{ {
wxString msg(_("wxDynamicLibrary failed to GetSymbol '%s'"));
#if defined(HAVE_DLERROR) && !defined(__EMX__) #if defined(HAVE_DLERROR) && !defined(__EMX__)
#if wxUSE_UNICODE #if wxUSE_UNICODE
@@ -292,7 +291,8 @@ void *wxDynamicLibrary::GetSymbol(const wxString &name, bool *success) const
if( err ) if( err )
{ {
failed = TRUE; failed = TRUE;
wxLogError( msg, err ); wxLogError(_("Couldn't find symbol '%s' in a dynamic library"),
err);
} }
#else #else
failed = TRUE; failed = TRUE;