I18N: Load new translation library in `wp_load_translations_early()`.
Ensures localization continues to work as expected with the new library in case translations need to be loaded early in the process. See #59656. Built from https://develop.svn.wordpress.org/trunk@57504 git-svn-id: http://core.svn.wordpress.org/trunk@57005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d8996a3c77
commit
e9b8c1cd49
|
@ -1484,6 +1484,11 @@ function wp_load_translations_early() {
|
|||
|
||||
// Translation and localization.
|
||||
require_once ABSPATH . WPINC . '/pomo/mo.php';
|
||||
require_once ABSPATH . WPINC . '/l10n/class-wp-translation-controller.php';
|
||||
require_once ABSPATH . WPINC . '/l10n/class-wp-translations.php';
|
||||
require_once ABSPATH . WPINC . '/l10n/class-wp-translation-file.php';
|
||||
require_once ABSPATH . WPINC . '/l10n/class-wp-translation-file-mo.php';
|
||||
require_once ABSPATH . WPINC . '/l10n/class-wp-translation-file-php.php';
|
||||
require_once ABSPATH . WPINC . '/l10n.php';
|
||||
require_once ABSPATH . WPINC . '/class-wp-textdomain-registry.php';
|
||||
require_once ABSPATH . WPINC . '/class-wp-locale.php';
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57503';
|
||||
$wp_version = '6.5-alpha-57504';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue