Changes in trunk/wp-includes/l10n.php [17925:16438]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/l10n.php
r17925 r16438 187 187 * @return string Translated context string without pipe 188 188 */ 189 function _x( $ text, $context, $domain = 'default' ) {190 return translate_with_gettext_context( $ text, $context, $domain );189 function _x( $single, $context, $domain = 'default' ) { 190 return translate_with_gettext_context( $single, $context, $domain ); 191 191 } 192 192 … … 202 202 * @return string Translated context string without pipe 203 203 */ 204 function _ex( $ text, $context, $domain = 'default' ) {205 echo _x( $ text, $context, $domain );204 function _ex( $single, $context, $domain = 'default' ) { 205 echo _x( $single, $context, $domain ); 206 206 } 207 207 … … 271 271 * 272 272 * @since 2.5 273 * @param string $sing ularSingle form to be i18ned273 * @param string $single Single form to be i18ned 274 274 * @param string $plural Plural form to be i18ned 275 * @return array array($sing ular, $plural)275 * @return array array($single, $plural) 276 276 */ 277 277 function _n_noop( $singular, $plural ) {
Note: See TracChangeset
for help on using the changeset viewer.