Searched defs:ngettext (Results 1 - 4 of 4) sorted by relevance

/external/libexif/libexif/
H A Di18n.h38 # define ngettext(String1,String2,Count) (Count==1?String1:String2) macro
/external/e2fsprogs/intl/
H A Dintl-compat.c41 #undef ngettext macro
85 ngettext (const char *msgid1, const char *msgid2, unsigned long int n) function
/external/bison/lib/
H A Dgettext.h28 the gettext() and ngettext() macros. This is an alternative to calling
34 # undef ngettext macro
35 # define ngettext(Msgid1, Msgid2, N) \ macro
73 # undef ngettext macro
74 # define ngettext(Msgid1, Msgid2, N) \ macro
80 ((void) (Domainname), ngettext (Msgid1, Msgid2, N))
/external/chromium_org/third_party/jinja2/
H A Dext.py29 GETTEXT_FUNCTIONS = ('_', 'gettext', 'ngettext')
147 def ngettext(__context, __singular, __plural, __num, **variables): function in function:_make_new_ngettext
153 return ngettext
165 # the other time for the n-parameter of the ngettext function.
183 ngettext = getattr(translations, 'ungettext', None)
184 if ngettext is None:
185 ngettext = translations.ngettext
186 self._install_callables(gettext, ngettext, newstyle)
195 def _install_callables(self, gettext, ngettext, newstyl
[all...]

Completed in 4300 milliseconds