Changeset 55196 for trunk/src/wp-includes/l10n.php
- Timestamp:
- 02/02/2023 09:29:53 PM (20 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r55161 r55196 726 726 * 727 727 * @since 2.9.0 728 * 729 * @param bool $override Whether to override the .mo file loading. Default false. 730 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 731 * @param string $mofile Path to the MO file. 732 */ 733 $plugin_override = apply_filters( 'override_load_textdomain', false, $domain, $mofile ); 728 * @since 6.2.0 Added the `$locale` parameter. 729 * 730 * @param bool $override Whether to override the .mo file loading. Default false. 731 * @param string $domain Text domain. Unique identifier for retrieving translated strings. 732 * @param string $mofile Path to the MO file. 733 * @param string|null $locale Locale. 734 */ 735 $plugin_override = apply_filters( 'override_load_textdomain', false, $domain, $mofile, $locale ); 734 736 735 737 if ( true === (bool) $plugin_override ) {
Note: See TracChangeset
for help on using the changeset viewer.