Changeset 37517
- Timestamp:
- 05/22/2016 06:47:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r37440 r37517 33 33 if ( isset( $locale ) ) { 34 34 /** 35 * Filter WordPress install's locale ID.35 * Filters WordPress install's locale ID. 36 36 * 37 37 * @since 1.5.0 … … 95 95 96 96 /** 97 * Filter text with its translation.97 * Filters text with its translation. 98 98 * 99 99 * @since 2.0.11 … … 146 146 $translations = $translations->translate( $text, $context ); 147 147 /** 148 * Filter text with its translation based on context information.148 * Filters text with its translation based on context information. 149 149 * 150 150 * @since 2.8.0 … … 335 335 336 336 /** 337 * Filter the singular or plural form of a string.337 * Filters the singular or plural form of a string. 338 338 * 339 339 * @since 2.2.0 … … 375 375 376 376 /** 377 * Filter the singular or plural form of a string with gettext context.377 * Filters the singular or plural form of a string with gettext context. 378 378 * 379 379 * @since 2.8.0 … … 520 520 521 521 /** 522 * Filter whether to override the .mo file loading.522 * Filters whether to override the .mo file loading. 523 523 * 524 524 * @since 2.9.0 … … 545 545 546 546 /** 547 * Filter MO file path for loading translations for a specific text domain.547 * Filters MO file path for loading translations for a specific text domain. 548 548 * 549 549 * @since 2.9.0 … … 581 581 582 582 /** 583 * Filter whether to override the text domain unloading.583 * Filters whether to override the text domain unloading. 584 584 * 585 585 * @since 3.0.0 … … 666 666 function load_plugin_textdomain( $domain, $deprecated = false, $plugin_rel_path = false ) { 667 667 /** 668 * Filter a plugin's locale.668 * Filters a plugin's locale. 669 669 * 670 670 * @since 3.0.0 … … 739 739 function load_theme_textdomain( $domain, $path = false ) { 740 740 /** 741 * Filter a theme's locale.741 * Filters a theme's locale. 742 742 * 743 743 * @since 3.0.0
Note: See TracChangeset
for help on using the changeset viewer.