wxLaunchDefaultBrowser messages should be localized

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2007-12-04 20:24:30 +00:00
parent b86c4f960e
commit 5519074c00

View File

@ -1137,11 +1137,11 @@ bool wxLaunchDefaultBrowser(const wxString& urlOrig, int flags)
return ok;
// no file type for HTML extension
wxLogError(_T("No default application configured for HTML files."));
wxLogError(_("No default application configured for HTML files."));
#endif // !wxUSE_MIMETYPE && !__WXMSW__
wxLogSysError(_T("Failed to open URL \"%s\" in default browser."),
wxLogSysError(_("Failed to open URL \"%s\" in default browser."),
url.c_str());
return false;