diff --git a/src/common/intl.cpp b/src/common/intl.cpp index f25bc8849e..3f46ff1bb6 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -1243,6 +1243,8 @@ static wxString TranslateFromUnicodeFormat(const wxString& fmt) fmtWX += "%A"; break; case 5: // EEEEE + case 6: // EEEEEE + // no "narrow form" in strftime(), use abbrev. fmtWX += "%a"; break; @@ -1268,6 +1270,11 @@ static wxString TranslateFromUnicodeFormat(const wxString& fmt) fmtWX += "%B"; break; + case 5: + // no "narrow form" in strftime(), use abbrev. + fmtWX += "%b"; + break; + default: wxFAIL_MSG( "too many 'M's" ); }