#if !defined(_)
#define _(s) (_T(s))
#endif
+ #define wxPLURAL(sing, plur, n) ((n) == 1 ? _T(sing) : _T(plur))
#endif
#define wxTRANSLATE(str) _T(str)
return str;
}
+inline const wxString& wxGetTranslation(const wxString& str1,
+ const wxString& str2,
+ size_t n,
+ const wxString& WXUNUSED(domain) = wxEmptyString)
+{
+ if ( n == 1 )
+ return str1;
+ else
+ return str2;
+}
+
#endif // wxUSE_INTL/!wxUSE_INTL
// define this one just in case it occurs somewhere (instead of preferred