]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/intl.h
renamed wxWave to wxSound
[wxWidgets.git] / include / wx / intl.h
index 56e21256a9b45be0cae1aaec4ba87a0cff64b0d4..c7845628994c226cc6a9d6e60b7fb6fe5ee6b3a4 100644 (file)
 // ----------------------------------------------------------------------------
 
 // gettext() style macros (notice that xgettext should be invoked with 
-// --keyword="_" --keyword="ngettext:1,2" options
+// --keyword="_" --keyword="wxGetTranslation:1,2" options
 // to extract the strings from the sources)
 #ifndef WXINTL_NO_GETTEXT_MACRO
     #define _(s)                  wxGetTranslation(_T(s))
-    #define ngettext(s1, s2, n)   wxGetTranslation(_T(s1), _T(s2), n)
 #endif
 
 // another one which just marks the strings for extraction, but doesn't
@@ -521,6 +520,8 @@ private:
 
     bool           m_bConvertEncoding;
 
+    bool           m_initialized;
+
     static wxLanguageInfoArray *ms_languagesDB;
 
     DECLARE_NO_COPY_CLASS(wxLocale)
@@ -560,9 +561,6 @@ inline const wxChar *wxGetTranslation(const wxChar *sz1, const wxChar *sz2,
     #if !defined(_)
         #define _(s)                 (_T(s))
     #endif
-    #if !defined(ngettext)
-        #define ngettext(s1, s2, n)  ((n) == 1 ? _T(s1) : _T(s2))
-    #endif
 #endif
 
 #define wxTRANSLATE(str) _T(str)