]> git.saurik.com Git - wxWidgets.git/commitdiff
don't define ngettext, causes problems
authorVáclav Slavík <vslavik@fastmail.fm>
Wed, 19 Nov 2003 20:51:05 +0000 (20:51 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Wed, 19 Nov 2003 20:51:05 +0000 (20:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24608 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/intl.h
samples/internat/internat.cpp

index 56e21256a9b45be0cae1aaec4ba87a0cff64b0d4..5347ebf0de0f3cd322bd545ad366ff18778feffa 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
@@ -560,9 +559,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)
index acdc2ccdcb9c88db99925b1da8b1a8a2df17e946..1bf57ba9a401e92eab9d232cb0856cfaf1ab7293 100644 (file)
@@ -349,7 +349,7 @@ void MyFrame::OnTest2(wxCommandEvent& WXUNUSED(event))
        for (int n = first; n <= last; ++n)
         {
                    s << n << _T(" ") << 
-                     ngettext("file deleted", "files deleted", n) << _T("\n");
+                     wxGetTranslation("file deleted", "files deleted", n) << _T("\n");
        }
         wxMessageBox(s);
     }