Changeset 10774 for trunk/wp-includes/l10n.php
- Timestamp:
- 03/13/2009 03:53:39 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/l10n.php
r10767 r10774 223 223 * @param $single Single form to be i18ned 224 224 * @param $plural Plural form to be i18ned 225 * @param $number Not used, here for compatibility with _n, optional226 * @param $domain Not used, here for compatibility with _n, optional227 225 * @return array array($single, $plural) 228 226 */ 229 function _n_noop( $single, $plural , $number = 1, $domain = 'default') {227 function _n_noop( $single, $plural ) { 230 228 return array( $single, $plural ); 231 229 } 230 231 /** 232 * Register plural strings with context in POT file, but don't translate them. 233 * 234 * @see _n_noop() 235 */ 236 function _nx_noop( $single, $plural, $context ) { 237 return array( $single, $plural, $context ); 238 } 239 232 240 233 241 /**
Note: See TracChangeset
for help on using the changeset viewer.