diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index bfc659897e..4bfb9891f0 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -519,11 +519,11 @@ function load_textdomain( $domain, $mofile ) { global $l10n; /** - * Filter text domain and/or MO file path for loading translations. + * Filter whether to override the .mo file loading. * * @since 2.9.0 * - * @param bool $override Whether to override the text domain. Default false. + * @param bool $override Whether to override the .mo file loading. Default false. * @param string $domain Text domain. Unique identifier for retrieving translated strings. * @param string $mofile Path to the MO file. */ @@ -580,11 +580,11 @@ function unload_textdomain( $domain ) { global $l10n; /** - * Filter the text domain for loading translation. + * Filter whether to override the text domain unloading. * * @since 3.0.0 * - * @param bool $override Whether to override unloading the text domain. Default false. + * @param bool $override Whether to override the text domain unloading. Default false. * @param string $domain Text domain. Unique identifier for retrieving translated strings. */ $plugin_override = apply_filters( 'override_unload_textdomain', false, $domain ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 444ac4dc00..0fe07840c7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37213'; +$wp_version = '4.6-alpha-37214'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.