]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/config.cpp
don't set focus to [ok] in text entry dialog (leave the text zone have it)
[wxWidgets.git] / src / common / config.cpp
index 629a359f918d2228950efcf893fc3228fe6b8ac5..667d25e5fe854dea4885f14fb414ee26d31b0436 100644 (file)
@@ -200,7 +200,7 @@ wxString ExpandEnvVars(const wxString& str)
           // check the closing bracket
           if ( bracket != Bracket_None ) {
             if ( m == str.Len() || str[m] != (char)bracket ) {
-              wxLogWarning("missing '%c' at position %d in '%s'.",
+              wxLogWarning(_("missing '%c' at position %d in '%s'."),
                            (char)bracket, m + 1, str.c_str());
             }
             else {
@@ -238,7 +238,7 @@ void SplitPath(wxArrayString& aParts, const char *sz)
       else if ( strCurrent == ".." ) {
         // go up one level
         if ( aParts.IsEmpty() )
-          wxLogWarning("'%s' has extra '..', ignored.", sz);
+          wxLogWarning(_("'%s' has extra '..', ignored."), sz);
         else
           aParts.Remove(aParts.Count() - 1);