From ce311c10359502ed45085193d9ffe576fced6c2d Mon Sep 17 00:00:00 2001 From: nacin Date: Sun, 29 Jan 2012 20:49:34 +0000 Subject: [PATCH] Load admin-$locale.mo in setup-config.php. see #19852, see #18180. git-svn-id: http://svn.automattic.com/wordpress/trunk@19787 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/load.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wp-includes/load.php b/wp-includes/load.php index a744e9ad7..0f1e06378 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -724,6 +724,8 @@ function wp_load_translations_early() { foreach ( $locations as $location ) { if ( file_exists( $location . '/' . $locale . '.mo' ) ) { load_textdomain( 'default', $location . '/' . $locale . '.mo' ); + if ( defined( 'WP_SETUP_CONFIG' ) && file_exists( $location . '/admin-' . $locale . '.mo' ) ) + load_textdomain( 'default', $location . '/admin-' . $locale . '.mo' ); if ( WP_Locale::is_locale_rtl( $locale ) ) $text_direction = 'rtl'; break 2;