]> git.saurik.com Git - wxWidgets.git/commitdiff
format strings with no real text don't need translating
authorVáclav Slavík <vslavik@fastmail.fm>
Tue, 4 Mar 2008 22:18:57 +0000 (22:18 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Tue, 4 Mar 2008 22:18:57 +0000 (22:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52320 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/debugrpt.cpp

index 2b56ed7159b4bf1cefd61e2049b46cef1bb3fb2a..2fa3683d07ad4baed89dd435496948c2e3a4b96f 100644 (file)
@@ -572,7 +572,7 @@ bool wxDebugReport::DoProcess()
     for ( size_t n = 0; n < count; n++ )
     {
         GetFile(n, &name, &desc);
-        msg += wxString::Format(_("\t%s: %s\n"), name.c_str(), desc.c_str());
+        msg += wxString::Format("\t%s: %s\n", name, desc);
     }
 
     msg += _("\nPlease send this report to the program maintainer, thank you!\n");