From: Václav Slavík Date: Tue, 4 Dec 2007 20:24:30 +0000 (+0000) Subject: wxLaunchDefaultBrowser messages should be localized X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5519074c00c5b79c574e3bea13edc069dc7dd1a1?ds=inline wxLaunchDefaultBrowser messages should be localized git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp index f3893507e5..2beddfe3a6 100644 --- a/src/common/utilscmn.cpp +++ b/src/common/utilscmn.cpp @@ -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;