diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index 38c30b84e8..b4f1701fe7 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -1189,7 +1189,7 @@ function load_script_textdomain( $handle, $domain = 'default', $path = '' ) { $relative = trim( $relative, '/' ); $relative = explode( '/', $relative ); - $languages_path = WP_LANG_DIR . '/' . $relative[0]; + $languages_path = WP_LANG_DIR . '/plugins'; $relative = array_slice( $relative, 2 ); // Remove plugins/ or themes/. $relative = implode( '/', $relative ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 787874b2cb..e2ba1dab69 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-57921'; +$wp_version = '6.6-alpha-57922'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.