Changeset 36024 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 12/19/2015 08:47:12 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r36023 r36024 1758 1758 1759 1759 /** 1760 * A version of _n(), which supports contexts. 1760 * Legacy version of _n(), which supports contexts. 1761 * 1761 1762 * Strips everything from the translation after the last bar. 1762 1763 * … … 1764 1765 * @deprecated 3.0.0 Use _nx() 1765 1766 * @see _nx() 1767 * 1768 * @param string $single The text to be used if the number is singular. 1769 * @param string $plural The text to be used if the number is plural. 1770 * @param int $number The number to compare against to use either the singular or plural form. 1771 * @param string $domain Optional. Text domain. Unique identifier for retrieving translated strings. 1772 * Default 'default'. 1773 * @return string The translated singular or plural form. 1766 1774 */ 1767 1775 function _nc( $single, $plural, $number, $domain = 'default' ) {
Note: See TracChangeset
for help on using the changeset viewer.