Ticket #8805: l10n.diff
| File l10n.diff, 755 bytes (added by CharlesClarkson, 15 months ago) |
|---|
-
l10n.php
269 269 * $message = $messages[$type]; 270 270 * $usable_text = sprintf( translate_nooped_plural( $message, $count ), $count ); 271 271 * 272 * @see _nx_noop() 272 273 * @since 2.5 273 274 * @param string $single Single form to be i18ned 274 275 * @param string $plural Plural form to be i18ned … … 282 283 * Register plural strings with context in POT file, but don't translate them. 283 284 * 284 285 * @see _n_noop() 286 * @since 2.5 285 287 */ 286 288 function _nx_noop( $singular, $plural, $context ) { 287 289 return array( 0 => $singular, 1 => $plural, 2 => $context, 'singular' => $singular, 'plural' => $plural, 'context' => $context );
