diff --git a/include/wx/intl.h b/include/wx/intl.h index 15319eb79a..8b3aa2530e 100644 --- a/include/wx/intl.h +++ b/include/wx/intl.h @@ -592,7 +592,7 @@ wxGetTranslation(const wxChar *sz1, const wxChar *sz2, #if !defined(_) #define _(s) (_T(s)) #endif - #define wxPLURAL(sing, plur, n) ((n) == 1 ? (sing) : (plur)) + #define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur)) #endif #define wxTRANSLATE(str) _T(str)