Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: ngettext

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
169  * @param string $plural The text that will be used if $number is not 1
170  * @param int $number The number to compare against to use either $single or $plural
171  * @param string $domain Optional. The domain identifier the text should be retrieved in
172  * @return string Either $single or $plural translated text
173  */
174 function __ngettext($single, $plural, $number, $domain = 'default') {
175      global $l10n;
176
177      if (isset($l10n[$domain])) {
178           return apply_filters('ngettext', $l10n[$domain]->ngettext($single, $plural, $number), $single, $plural, $number);
179      } else {
180           if ($number != 1)
181                return $plural;
182           else
183                return $single;
184      }
185 }
186
187 /**