Make WordPress Core

Ticket #26511: 26511.patch

File 26511.patch, 38.2 KB (added by tfrommen, 9 years ago)
  • src/wp-includes/class-wp-locale.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
     1<?php
     2/**
     3 * Date and Time Locale object
     4 *
     5 * @package WordPress
     6 * @subpackage i18n
     7 */
     8
     9/**
     10 * Class that loads the calendar locale.
     11 *
     12 * @since 2.1.0
     13 */
     14class WP_Locale {
     15        /**
     16         * Stores the translated strings for the full weekday names.
     17         *
     18         * @since 2.1.0
     19         * @var array
     20         */
     21        public $weekday;
     22
     23        /**
     24         * Stores the translated strings for the one character weekday names.
     25         *
     26         * There is a hack to make sure that Tuesday and Thursday, as well
     27         * as Sunday and Saturday, don't conflict. See init() method for more.
     28         *
     29         * @see WP_Locale::init() for how to handle the hack.
     30         *
     31         * @since 2.1.0
     32         * @var array
     33         */
     34        public $weekday_initial;
     35
     36        /**
     37         * Stores the translated strings for the abbreviated weekday names.
     38         *
     39         * @since 2.1.0
     40         * @var array
     41         */
     42        public $weekday_abbrev;
     43
     44        /**
     45         * Stores the default start of the week.
     46         *
     47         * @since 4.4.0
     48         * @var string
     49         */
     50        public $start_of_week;
     51
     52        /**
     53         * Stores the translated strings for the full month names.
     54         *
     55         * @since 2.1.0
     56         * @var array
     57         */
     58        public $month;
     59
     60        /**
     61         * Stores the translated strings for the abbreviated month names.
     62         *
     63         * @since 2.1.0
     64         * @var array
     65         */
     66        public $month_abbrev;
     67
     68        /**
     69         * Stores the translated strings for 'am' and 'pm'.
     70         *
     71         * Also the capitalized versions.
     72         *
     73         * @since 2.1.0
     74         * @var array
     75         */
     76        public $meridiem;
     77
     78        /**
     79         * The text direction of the locale language.
     80         *
     81         * Default is left to right 'ltr'.
     82         *
     83         * @since 2.1.0
     84         * @var string
     85         */
     86        public $text_direction = 'ltr';
     87
     88        /**
     89         * The thousands separator and decimal point values used for localizing numbers.
     90         *
     91         * @since 2.3.0
     92         * @access public
     93         * @var array
     94         */
     95        public $number_format;
     96
     97        /**
     98         * Sets up the translated strings and object properties.
     99         *
     100         * The method creates the translatable strings for various
     101         * calendar elements. Which allows for specifying locale
     102         * specific calendar names and text direction.
     103         *
     104         * @since 2.1.0
     105         * @access private
     106         *
     107         * @global string $text_direction
     108         * @global string $wp_version
     109         */
     110        public function init() {
     111                // The Weekdays
     112                $this->weekday[0] = /* translators: weekday */ __('Sunday');
     113                $this->weekday[1] = /* translators: weekday */ __('Monday');
     114                $this->weekday[2] = /* translators: weekday */ __('Tuesday');
     115                $this->weekday[3] = /* translators: weekday */ __('Wednesday');
     116                $this->weekday[4] = /* translators: weekday */ __('Thursday');
     117                $this->weekday[5] = /* translators: weekday */ __('Friday');
     118                $this->weekday[6] = /* translators: weekday */ __('Saturday');
     119
     120                // The first letter of each day.
     121                $this->weekday_initial[ __( 'Sunday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'S', 'Sunday initial' );
     122                $this->weekday_initial[ __( 'Monday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'M', 'Monday initial' );
     123                $this->weekday_initial[ __( 'Tuesday' ) ]   = /* translators: one-letter abbreviation of the weekday */ _x( 'T', 'Tuesday initial' );
     124                $this->weekday_initial[ __( 'Wednesday' ) ] = /* translators: one-letter abbreviation of the weekday */ _x( 'W', 'Wednesday initial' );
     125                $this->weekday_initial[ __( 'Thursday' ) ]  = /* translators: one-letter abbreviation of the weekday */ _x( 'T', 'Thursday initial' );
     126                $this->weekday_initial[ __( 'Friday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'F', 'Friday initial' );
     127                $this->weekday_initial[ __( 'Saturday' ) ]  = /* translators: one-letter abbreviation of the weekday */ _x( 'S', 'Saturday initial' );
     128
     129                // Abbreviations for each day.
     130                $this->weekday_abbrev[__('Sunday')]    = /* translators: three-letter abbreviation of the weekday */ __('Sun');
     131                $this->weekday_abbrev[__('Monday')]    = /* translators: three-letter abbreviation of the weekday */ __('Mon');
     132                $this->weekday_abbrev[__('Tuesday')]   = /* translators: three-letter abbreviation of the weekday */ __('Tue');
     133                $this->weekday_abbrev[__('Wednesday')] = /* translators: three-letter abbreviation of the weekday */ __('Wed');
     134                $this->weekday_abbrev[__('Thursday')]  = /* translators: three-letter abbreviation of the weekday */ __('Thu');
     135                $this->weekday_abbrev[__('Friday')]    = /* translators: three-letter abbreviation of the weekday */ __('Fri');
     136                $this->weekday_abbrev[__('Saturday')]  = /* translators: three-letter abbreviation of the weekday */ __('Sat');
     137
     138                // The Months
     139                $this->month['01'] = /* translators: month name */ __( 'January' );
     140                $this->month['02'] = /* translators: month name */ __( 'February' );
     141                $this->month['03'] = /* translators: month name */ __( 'March' );
     142                $this->month['04'] = /* translators: month name */ __( 'April' );
     143                $this->month['05'] = /* translators: month name */ __( 'May' );
     144                $this->month['06'] = /* translators: month name */ __( 'June' );
     145                $this->month['07'] = /* translators: month name */ __( 'July' );
     146                $this->month['08'] = /* translators: month name */ __( 'August' );
     147                $this->month['09'] = /* translators: month name */ __( 'September' );
     148                $this->month['10'] = /* translators: month name */ __( 'October' );
     149                $this->month['11'] = /* translators: month name */ __( 'November' );
     150                $this->month['12'] = /* translators: month name */ __( 'December' );
     151
     152                // The Months, genitive
     153                $this->month_genitive['01'] = /* translators: month name, genitive */ _x( 'January', 'genitive' );
     154                $this->month_genitive['02'] = /* translators: month name, genitive */ _x( 'February', 'genitive' );
     155                $this->month_genitive['03'] = /* translators: month name, genitive */ _x( 'March', 'genitive' );
     156                $this->month_genitive['04'] = /* translators: month name, genitive */ _x( 'April', 'genitive' );
     157                $this->month_genitive['05'] = /* translators: month name, genitive */ _x( 'May', 'genitive' );
     158                $this->month_genitive['06'] = /* translators: month name, genitive */ _x( 'June', 'genitive' );
     159                $this->month_genitive['07'] = /* translators: month name, genitive */ _x( 'July', 'genitive' );
     160                $this->month_genitive['08'] = /* translators: month name, genitive */ _x( 'August', 'genitive' );
     161                $this->month_genitive['09'] = /* translators: month name, genitive */ _x( 'September', 'genitive' );
     162                $this->month_genitive['10'] = /* translators: month name, genitive */ _x( 'October', 'genitive' );
     163                $this->month_genitive['11'] = /* translators: month name, genitive */ _x( 'November', 'genitive' );
     164                $this->month_genitive['12'] = /* translators: month name, genitive */ _x( 'December', 'genitive' );
     165
     166                // Abbreviations for each month.
     167                $this->month_abbrev[ __( 'January' ) ]   = /* translators: three-letter abbreviation of the month */ _x( 'Jan', 'January abbreviation' );
     168                $this->month_abbrev[ __( 'February' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Feb', 'February abbreviation' );
     169                $this->month_abbrev[ __( 'March' ) ]     = /* translators: three-letter abbreviation of the month */ _x( 'Mar', 'March abbreviation' );
     170                $this->month_abbrev[ __( 'April' ) ]     = /* translators: three-letter abbreviation of the month */ _x( 'Apr', 'April abbreviation' );
     171                $this->month_abbrev[ __( 'May' ) ]       = /* translators: three-letter abbreviation of the month */ _x( 'May', 'May abbreviation' );
     172                $this->month_abbrev[ __( 'June' ) ]      = /* translators: three-letter abbreviation of the month */ _x( 'Jun', 'June abbreviation' );
     173                $this->month_abbrev[ __( 'July' ) ]      = /* translators: three-letter abbreviation of the month */ _x( 'Jul', 'July abbreviation' );
     174                $this->month_abbrev[ __( 'August' ) ]    = /* translators: three-letter abbreviation of the month */ _x( 'Aug', 'August abbreviation' );
     175                $this->month_abbrev[ __( 'September' ) ] = /* translators: three-letter abbreviation of the month */ _x( 'Sep', 'September abbreviation' );
     176                $this->month_abbrev[ __( 'October' ) ]   = /* translators: three-letter abbreviation of the month */ _x( 'Oct', 'October abbreviation' );
     177                $this->month_abbrev[ __( 'November' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Nov', 'November abbreviation' );
     178                $this->month_abbrev[ __( 'December' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Dec', 'December abbreviation' );
     179
     180                // The Meridiems
     181                $this->meridiem['am'] = __('am');
     182                $this->meridiem['pm'] = __('pm');
     183                $this->meridiem['AM'] = __('AM');
     184                $this->meridiem['PM'] = __('PM');
     185
     186                // Numbers formatting
     187                // See http://php.net/number_format
     188
     189                /* translators: $thousands_sep argument for http://php.net/number_format, default is , */
     190                $thousands_sep = __( 'number_format_thousands_sep' );
     191
     192                if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) {
     193                        // Replace space with a non-breaking space to avoid wrapping.
     194                        $thousands_sep = str_replace( ' ', '&nbsp;', $thousands_sep );
     195                } else {
     196                        // PHP < 5.4.0 does not support multiple bytes in thousands separator.
     197                        $thousands_sep = str_replace( array( '&nbsp;', '&#160;' ), ' ', $thousands_sep );
     198                }
     199
     200                $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;
     201
     202                /* translators: $dec_point argument for http://php.net/number_format, default is . */
     203                $decimal_point = __( 'number_format_decimal_point' );
     204
     205                $this->number_format['decimal_point'] = ( 'number_format_decimal_point' === $decimal_point ) ? '.' : $decimal_point;
     206
     207                // Set text direction.
     208                if ( isset( $GLOBALS['text_direction'] ) )
     209                        $this->text_direction = $GLOBALS['text_direction'];
     210                /* translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. */
     211                elseif ( 'rtl' == _x( 'ltr', 'text direction' ) )
     212                        $this->text_direction = 'rtl';
     213
     214                if ( 'rtl' === $this->text_direction && strpos( $GLOBALS['wp_version'], '-src' ) ) {
     215                        $this->text_direction = 'ltr';
     216                        add_action( 'all_admin_notices', array( $this, 'rtl_src_admin_notice' ) );
     217                }
     218        }
     219
     220        /**
     221         * Outputs an admin notice if the /build directory must be used for RTL.
     222         *
     223         * @since 3.8.0
     224         * @access public
     225         */
     226        public function rtl_src_admin_notice() {
     227                /* translators: %s: Name of the directory (build) */
     228                echo '<div class="error"><p>' . sprintf( __( 'The %s directory of the develop repository must be used for RTL.' ), '<code>build</code>' ) . '</p></div>';
     229        }
     230
     231        /**
     232         * Retrieve the full translated weekday word.
     233         *
     234         * Week starts on translated Sunday and can be fetched
     235         * by using 0 (zero). So the week starts with 0 (zero)
     236         * and ends on Saturday with is fetched by using 6 (six).
     237         *
     238         * @since 2.1.0
     239         * @access public
     240         *
     241         * @param int $weekday_number 0 for Sunday through 6 Saturday
     242         * @return string Full translated weekday
     243         */
     244        public function get_weekday($weekday_number) {
     245                return $this->weekday[$weekday_number];
     246        }
     247
     248        /**
     249         * Retrieve the translated weekday initial.
     250         *
     251         * The weekday initial is retrieved by the translated
     252         * full weekday word. When translating the weekday initial
     253         * pay attention to make sure that the starting letter does
     254         * not conflict.
     255         *
     256         * @since 2.1.0
     257         * @access public
     258         *
     259         * @param string $weekday_name
     260         * @return string
     261         */
     262        public function get_weekday_initial($weekday_name) {
     263                return $this->weekday_initial[$weekday_name];
     264        }
     265
     266        /**
     267         * Retrieve the translated weekday abbreviation.
     268         *
     269         * The weekday abbreviation is retrieved by the translated
     270         * full weekday word.
     271         *
     272         * @since 2.1.0
     273         * @access public
     274         *
     275         * @param string $weekday_name Full translated weekday word
     276         * @return string Translated weekday abbreviation
     277         */
     278        public function get_weekday_abbrev($weekday_name) {
     279                return $this->weekday_abbrev[$weekday_name];
     280        }
     281
     282        /**
     283         * Retrieve the full translated month by month number.
     284         *
     285         * The $month_number parameter has to be a string
     286         * because it must have the '0' in front of any number
     287         * that is less than 10. Starts from '01' and ends at
     288         * '12'.
     289         *
     290         * You can use an integer instead and it will add the
     291         * '0' before the numbers less than 10 for you.
     292         *
     293         * @since 2.1.0
     294         * @access public
     295         *
     296         * @param string|int $month_number '01' through '12'
     297         * @return string Translated full month name
     298         */
     299        public function get_month($month_number) {
     300                return $this->month[zeroise($month_number, 2)];
     301        }
     302
     303        /**
     304         * Retrieve translated version of month abbreviation string.
     305         *
     306         * The $month_name parameter is expected to be the translated or
     307         * translatable version of the month.
     308         *
     309         * @since 2.1.0
     310         * @access public
     311         *
     312         * @param string $month_name Translated month to get abbreviated version
     313         * @return string Translated abbreviated month
     314         */
     315        public function get_month_abbrev($month_name) {
     316                return $this->month_abbrev[$month_name];
     317        }
     318
     319        /**
     320         * Retrieve translated version of meridiem string.
     321         *
     322         * The $meridiem parameter is expected to not be translated.
     323         *
     324         * @since 2.1.0
     325         * @access public
     326         *
     327         * @param string $meridiem Either 'am', 'pm', 'AM', or 'PM'. Not translated version.
     328         * @return string Translated version
     329         */
     330        public function get_meridiem($meridiem) {
     331                return $this->meridiem[$meridiem];
     332        }
     333
     334        /**
     335         * Global variables are deprecated.
     336         *
     337         * For backward compatibility only.
     338         *
     339         * @deprecated For backward compatibility only.
     340         * @access private
     341         *
     342         * @global array $weekday
     343         * @global array $weekday_initial
     344         * @global array $weekday_abbrev
     345         * @global array $month
     346         * @global array $month_abbrev
     347         *
     348         * @since 2.1.0
     349         */
     350        public function register_globals() {
     351                $GLOBALS['weekday']         = $this->weekday;
     352                $GLOBALS['weekday_initial'] = $this->weekday_initial;
     353                $GLOBALS['weekday_abbrev']  = $this->weekday_abbrev;
     354                $GLOBALS['month']           = $this->month;
     355                $GLOBALS['month_abbrev']    = $this->month_abbrev;
     356        }
     357
     358        /**
     359         * Constructor which calls helper methods to set up object variables
     360         *
     361         * @since 2.1.0
     362         */
     363        public function __construct() {
     364                $this->init();
     365                $this->register_globals();
     366        }
     367
     368        /**
     369         * Checks if current locale is RTL.
     370         *
     371         * @since 3.0.0
     372         * @return bool Whether locale is RTL.
     373         */
     374        public function is_rtl() {
     375                return 'rtl' == $this->text_direction;
     376        }
     377
     378        /**
     379         * Register date/time format strings for general POT.
     380         *
     381         * Private, unused method to add some date/time formats translated
     382         * on wp-admin/options-general.php to the general POT that would
     383         * otherwise be added to the admin POT.
     384         *
     385         * @since 3.6.0
     386         */
     387        public function _strings_for_pot() {
     388                /* translators: localized date format, see http://php.net/date */
     389                __( 'F j, Y' );
     390                /* translators: localized time format, see http://php.net/date */
     391                __( 'g:i a' );
     392                /* translators: localized date and time format, see http://php.net/date */
     393                __( 'F j, Y g:i a' );
     394        }
     395}
  • src/wp-includes/class-wp-locale-switcher.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
     1<?php
     2/**
     3 * Locale switcher object.
     4 *
     5 * @package    WordPress
     6 * @subpackage i18n
     7 */
     8
     9/**
     10 * Class for switching locales.
     11 *
     12 * @since 4.6.0
     13 */
     14class WP_Locale_Switcher {
     15
     16        /**
     17         * Filter callbacks.
     18         *
     19         * @since 4.6.0
     20         * @var callback[]
     21         */
     22        private $filters = array();
     23
     24        /**
     25         * Locale stack.
     26         *
     27         * @since 4.6.0
     28         * @var string[]
     29         */
     30        private $locales = array();
     31
     32        /**
     33         * Original locale.
     34         *
     35         * @since 4.6.0
     36         * @var string
     37         */
     38        private $original_locale;
     39
     40        /**
     41         * Translation objects.
     42         *
     43         * @since 4.6.0
     44         * @var NOOP_Translations[][]
     45         */
     46        private $translations = array();
     47
     48        /**
     49         * Constructor. Stores the original locale.
     50         *
     51         * @since 4.6.0
     52         */
     53        public function __construct() {
     54
     55                $this->original_locale = get_locale();
     56        }
     57
     58        /**
     59         * Switches the translations according to the given locale.
     60         *
     61         * @since 4.6.0
     62         *
     63         * @param string $locale The locale.
     64         */
     65        public function switch_to_locale( $locale ) {
     66
     67                $this->locales[] = $locale;
     68
     69                $current_locale = get_locale();
     70                if ( $current_locale === $locale ) {
     71                        return;
     72                }
     73
     74                /**
     75                 * @global MO[] $l10n
     76                 */
     77                global $l10n;
     78
     79                $textdomains = array_keys( $l10n );
     80
     81                if ( ! $this->has_translations_for_locale( $current_locale ) ) {
     82                        foreach ( $textdomains as $textdomain ) {
     83                                $this->translations[ $current_locale ][ $textdomain ] = get_translations_for_domain( $textdomain );
     84                        }
     85                }
     86
     87                $this->remove_filters();
     88
     89                $this->add_filter_for_locale( $locale );
     90
     91                if ( $this->has_translations_for_locale( $locale ) ) {
     92                        foreach ( $textdomains as $textdomain ) {
     93                                if ( isset( $this->translations[ $locale ][ $textdomain ] ) ) {
     94                                        $l10n[ $textdomain ] = $this->translations[ $locale ][ $textdomain ];
     95                                }
     96                        }
     97                } else {
     98                        foreach ( $l10n as $textdomain => $mo ) {
     99                                if ( 'default' === $textdomain ) {
     100                                        load_default_textdomain();
     101
     102                                        continue;
     103                                }
     104
     105                                unload_textdomain( $textdomain );
     106
     107                                if ( $mofile = $mo->get_filename() ) {
     108                                        load_textdomain( $textdomain, $mofile );
     109                                }
     110
     111                                $this->translations[ $locale ][ $textdomain ] = get_translations_for_domain( $textdomain );
     112                        }
     113                }
     114
     115                /**
     116                 * @global WP_Locale $wp_locale
     117                 */
     118                $GLOBALS['wp_locale'] = new WP_Locale();
     119        }
     120
     121        /**
     122         * Restores the translations according to the previous locale.
     123         *
     124         * @since 4.6.0
     125         *
     126         * @return string|false Locale on success, false on error.
     127         */
     128        public function restore_locale() {
     129
     130                if ( ! array_pop( $this->locales ) ) {
     131                        // The stack is empty, bail.
     132                        return false;
     133                }
     134
     135                $this->remove_filters();
     136
     137                if ( $locale = end( $this->locales ) ) {
     138                        if ( isset( $filters[ $locale ] ) ) {
     139                                add_filter( 'locale', $filters[ $locale ] );
     140                        }
     141                } else {
     142                        // There's nothing left in the stack: go back to the original locale.
     143                        $locale = $this->original_locale;
     144                }
     145
     146                /**
     147                 * @global MO[] $l10n
     148                 */
     149                global $l10n;
     150
     151                foreach ( array_keys( $l10n ) as $textdomain ) {
     152                        if ( isset( $this->translations[ $locale ][ $textdomain ] ) ) {
     153                                $l10n[ $textdomain ] = $this->translations[ $locale ][ $textdomain ];
     154                        }
     155                }
     156
     157                /**
     158                 * @global WP_Locale $wp_locale
     159                 */
     160                $GLOBALS['wp_locale'] = new WP_Locale();
     161
     162                return $locale;
     163        }
     164
     165        /**
     166         * Checks if there are cached translations for the given locale.
     167         *
     168         * @since 4.6.0
     169         *
     170         * @param string $locale The locale.
     171         * @return bool True if there are cached translations for the given locale, false otherwise.
     172         */
     173        private function has_translations_for_locale( $locale ) {
     174
     175                return ! empty( $this->translations[ $locale ] );
     176        }
     177
     178        /**
     179         * Removes all filter callbacks added before.
     180         *
     181         * @since 4.6.0
     182         */
     183        private function remove_filters() {
     184
     185                foreach ( $this->filters as $filter ) {
     186                        remove_filter( 'locale', $filter );
     187                }
     188        }
     189
     190        /**
     191         * Adds a filter callback returning the given locale.
     192         *
     193         * @since 4.6.0
     194         *
     195         * @param string $locale The locale.
     196         */
     197        private function add_filter_for_locale( $locale ) {
     198
     199                if ( ! isset( $this->filters[ $locale ] ) ) {
     200                        require_once dirname( __FILE__ ) . '/class-wp-locale-storage.php';
     201
     202                        // This SHOULD be a closure.
     203                        $this->filters[ $locale ] = array( new WP_Locale_Storage( $locale ), 'get' );
     204                }
     205
     206                add_filter( 'locale', $this->filters[ $locale ] );
     207        }
     208}
  • src/wp-includes/locale.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    11<?php
    2 /**
    3  * Date and Time Locale object
    4  *
    5  * @package WordPress
    6  * @subpackage i18n
    7  */
    82
    9 /**
    10  * Class that loads the calendar locale.
    11  *
    12  * @since 2.1.0
    13  */
    14 class WP_Locale {
    15         /**
    16          * Stores the translated strings for the full weekday names.
    17          *
    18          * @since 2.1.0
    19          * @var array
    20          */
    21         public $weekday;
     3$dir = dirname( __FILE__ );
    224
    23         /**
    24          * Stores the translated strings for the one character weekday names.
    25          *
    26          * There is a hack to make sure that Tuesday and Thursday, as well
    27          * as Sunday and Saturday, don't conflict. See init() method for more.
    28          *
    29          * @see WP_Locale::init() for how to handle the hack.
    30          *
    31          * @since 2.1.0
    32          * @var array
    33          */
    34         public $weekday_initial;
     5require_once "$dir/class-wp-locale.php";
    356
    36         /**
    37          * Stores the translated strings for the abbreviated weekday names.
    38          *
    39          * @since 2.1.0
    40          * @var array
    41          */
    42         public $weekday_abbrev;
     7require_once "$dir/class-wp-locale-switcher.php";
    438
    44         /**
    45          * Stores the default start of the week.
    46          *
    47          * @since 4.4.0
    48          * @var string
    49          */
    50         public $start_of_week;
     9unset( $dir );
    5110
    52         /**
    53          * Stores the translated strings for the full month names.
    54          *
    55          * @since 2.1.0
    56          * @var array
    57          */
    58         public $month;
    59 
    60         /**
    61          * Stores the translated strings for the abbreviated month names.
    62          *
    63          * @since 2.1.0
    64          * @var array
    65          */
    66         public $month_abbrev;
    67 
    68         /**
    69          * Stores the translated strings for 'am' and 'pm'.
    70          *
    71          * Also the capitalized versions.
    72          *
    73          * @since 2.1.0
    74          * @var array
    75          */
    76         public $meridiem;
    77 
    78         /**
    79          * The text direction of the locale language.
    80          *
    81          * Default is left to right 'ltr'.
    82          *
    83          * @since 2.1.0
    84          * @var string
    85          */
    86         public $text_direction = 'ltr';
    87 
    88         /**
    89          * The thousands separator and decimal point values used for localizing numbers.
    90          *
    91          * @since 2.3.0
    92          * @access public
    93          * @var array
    94          */
    95         public $number_format;
    96 
    97         /**
    98          * Sets up the translated strings and object properties.
    99          *
    100          * The method creates the translatable strings for various
    101          * calendar elements. Which allows for specifying locale
    102          * specific calendar names and text direction.
    103          *
    104          * @since 2.1.0
    105          * @access private
    106          *
    107          * @global string $text_direction
    108          * @global string $wp_version
    109          */
    110         public function init() {
    111                 // The Weekdays
    112                 $this->weekday[0] = /* translators: weekday */ __('Sunday');
    113                 $this->weekday[1] = /* translators: weekday */ __('Monday');
    114                 $this->weekday[2] = /* translators: weekday */ __('Tuesday');
    115                 $this->weekday[3] = /* translators: weekday */ __('Wednesday');
    116                 $this->weekday[4] = /* translators: weekday */ __('Thursday');
    117                 $this->weekday[5] = /* translators: weekday */ __('Friday');
    118                 $this->weekday[6] = /* translators: weekday */ __('Saturday');
    119 
    120                 // The first letter of each day.
    121                 $this->weekday_initial[ __( 'Sunday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'S', 'Sunday initial' );
    122                 $this->weekday_initial[ __( 'Monday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'M', 'Monday initial' );
    123                 $this->weekday_initial[ __( 'Tuesday' ) ]   = /* translators: one-letter abbreviation of the weekday */ _x( 'T', 'Tuesday initial' );
    124                 $this->weekday_initial[ __( 'Wednesday' ) ] = /* translators: one-letter abbreviation of the weekday */ _x( 'W', 'Wednesday initial' );
    125                 $this->weekday_initial[ __( 'Thursday' ) ]  = /* translators: one-letter abbreviation of the weekday */ _x( 'T', 'Thursday initial' );
    126                 $this->weekday_initial[ __( 'Friday' ) ]    = /* translators: one-letter abbreviation of the weekday */ _x( 'F', 'Friday initial' );
    127                 $this->weekday_initial[ __( 'Saturday' ) ]  = /* translators: one-letter abbreviation of the weekday */ _x( 'S', 'Saturday initial' );
    128 
    129                 // Abbreviations for each day.
    130                 $this->weekday_abbrev[__('Sunday')]    = /* translators: three-letter abbreviation of the weekday */ __('Sun');
    131                 $this->weekday_abbrev[__('Monday')]    = /* translators: three-letter abbreviation of the weekday */ __('Mon');
    132                 $this->weekday_abbrev[__('Tuesday')]   = /* translators: three-letter abbreviation of the weekday */ __('Tue');
    133                 $this->weekday_abbrev[__('Wednesday')] = /* translators: three-letter abbreviation of the weekday */ __('Wed');
    134                 $this->weekday_abbrev[__('Thursday')]  = /* translators: three-letter abbreviation of the weekday */ __('Thu');
    135                 $this->weekday_abbrev[__('Friday')]    = /* translators: three-letter abbreviation of the weekday */ __('Fri');
    136                 $this->weekday_abbrev[__('Saturday')]  = /* translators: three-letter abbreviation of the weekday */ __('Sat');
    137 
    138                 // The Months
    139                 $this->month['01'] = /* translators: month name */ __( 'January' );
    140                 $this->month['02'] = /* translators: month name */ __( 'February' );
    141                 $this->month['03'] = /* translators: month name */ __( 'March' );
    142                 $this->month['04'] = /* translators: month name */ __( 'April' );
    143                 $this->month['05'] = /* translators: month name */ __( 'May' );
    144                 $this->month['06'] = /* translators: month name */ __( 'June' );
    145                 $this->month['07'] = /* translators: month name */ __( 'July' );
    146                 $this->month['08'] = /* translators: month name */ __( 'August' );
    147                 $this->month['09'] = /* translators: month name */ __( 'September' );
    148                 $this->month['10'] = /* translators: month name */ __( 'October' );
    149                 $this->month['11'] = /* translators: month name */ __( 'November' );
    150                 $this->month['12'] = /* translators: month name */ __( 'December' );
    151 
    152                 // The Months, genitive
    153                 $this->month_genitive['01'] = /* translators: month name, genitive */ _x( 'January', 'genitive' );
    154                 $this->month_genitive['02'] = /* translators: month name, genitive */ _x( 'February', 'genitive' );
    155                 $this->month_genitive['03'] = /* translators: month name, genitive */ _x( 'March', 'genitive' );
    156                 $this->month_genitive['04'] = /* translators: month name, genitive */ _x( 'April', 'genitive' );
    157                 $this->month_genitive['05'] = /* translators: month name, genitive */ _x( 'May', 'genitive' );
    158                 $this->month_genitive['06'] = /* translators: month name, genitive */ _x( 'June', 'genitive' );
    159                 $this->month_genitive['07'] = /* translators: month name, genitive */ _x( 'July', 'genitive' );
    160                 $this->month_genitive['08'] = /* translators: month name, genitive */ _x( 'August', 'genitive' );
    161                 $this->month_genitive['09'] = /* translators: month name, genitive */ _x( 'September', 'genitive' );
    162                 $this->month_genitive['10'] = /* translators: month name, genitive */ _x( 'October', 'genitive' );
    163                 $this->month_genitive['11'] = /* translators: month name, genitive */ _x( 'November', 'genitive' );
    164                 $this->month_genitive['12'] = /* translators: month name, genitive */ _x( 'December', 'genitive' );
    165 
    166                 // Abbreviations for each month.
    167                 $this->month_abbrev[ __( 'January' ) ]   = /* translators: three-letter abbreviation of the month */ _x( 'Jan', 'January abbreviation' );
    168                 $this->month_abbrev[ __( 'February' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Feb', 'February abbreviation' );
    169                 $this->month_abbrev[ __( 'March' ) ]     = /* translators: three-letter abbreviation of the month */ _x( 'Mar', 'March abbreviation' );
    170                 $this->month_abbrev[ __( 'April' ) ]     = /* translators: three-letter abbreviation of the month */ _x( 'Apr', 'April abbreviation' );
    171                 $this->month_abbrev[ __( 'May' ) ]       = /* translators: three-letter abbreviation of the month */ _x( 'May', 'May abbreviation' );
    172                 $this->month_abbrev[ __( 'June' ) ]      = /* translators: three-letter abbreviation of the month */ _x( 'Jun', 'June abbreviation' );
    173                 $this->month_abbrev[ __( 'July' ) ]      = /* translators: three-letter abbreviation of the month */ _x( 'Jul', 'July abbreviation' );
    174                 $this->month_abbrev[ __( 'August' ) ]    = /* translators: three-letter abbreviation of the month */ _x( 'Aug', 'August abbreviation' );
    175                 $this->month_abbrev[ __( 'September' ) ] = /* translators: three-letter abbreviation of the month */ _x( 'Sep', 'September abbreviation' );
    176                 $this->month_abbrev[ __( 'October' ) ]   = /* translators: three-letter abbreviation of the month */ _x( 'Oct', 'October abbreviation' );
    177                 $this->month_abbrev[ __( 'November' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Nov', 'November abbreviation' );
    178                 $this->month_abbrev[ __( 'December' ) ]  = /* translators: three-letter abbreviation of the month */ _x( 'Dec', 'December abbreviation' );
    179 
    180                 // The Meridiems
    181                 $this->meridiem['am'] = __('am');
    182                 $this->meridiem['pm'] = __('pm');
    183                 $this->meridiem['AM'] = __('AM');
    184                 $this->meridiem['PM'] = __('PM');
    185 
    186                 // Numbers formatting
    187                 // See http://php.net/number_format
    188 
    189                 /* translators: $thousands_sep argument for http://php.net/number_format, default is , */
    190                 $thousands_sep = __( 'number_format_thousands_sep' );
    191 
    192                 if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) {
    193                         // Replace space with a non-breaking space to avoid wrapping.
    194                         $thousands_sep = str_replace( ' ', '&nbsp;', $thousands_sep );
    195                 } else {
    196                         // PHP < 5.4.0 does not support multiple bytes in thousands separator.
    197                         $thousands_sep = str_replace( array( '&nbsp;', '&#160;' ), ' ', $thousands_sep );
    198                 }
     11/**
     12 * Checks if current locale is RTL.
     13 *
     14 * @since 3.0.0
     15 *
     16 * @global WP_Locale $wp_locale
     17 *
     18 * @return bool Whether locale is RTL.
     19 */
     20function is_rtl() {
     21        global $wp_locale;
     22        return $wp_locale->is_rtl();
     23}
    19924
    200                 $this->number_format['thousands_sep'] = ( 'number_format_thousands_sep' === $thousands_sep ) ? ',' : $thousands_sep;
    201 
    202                 /* translators: $dec_point argument for http://php.net/number_format, default is . */
    203                 $decimal_point = __( 'number_format_decimal_point' );
    204 
    205                 $this->number_format['decimal_point'] = ( 'number_format_decimal_point' === $decimal_point ) ? '.' : $decimal_point;
    206 
    207                 // Set text direction.
    208                 if ( isset( $GLOBALS['text_direction'] ) )
    209                         $this->text_direction = $GLOBALS['text_direction'];
    210                 /* translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. */
    211                 elseif ( 'rtl' == _x( 'ltr', 'text direction' ) )
    212                         $this->text_direction = 'rtl';
    213 
    214                 if ( 'rtl' === $this->text_direction && strpos( $GLOBALS['wp_version'], '-src' ) ) {
    215                         $this->text_direction = 'ltr';
    216                         add_action( 'all_admin_notices', array( $this, 'rtl_src_admin_notice' ) );
    217                 }
    218         }
    219 
    220         /**
    221          * Outputs an admin notice if the /build directory must be used for RTL.
    222          *
    223          * @since 3.8.0
    224          * @access public
    225          */
    226         public function rtl_src_admin_notice() {
    227                 /* translators: %s: Name of the directory (build) */
    228                 echo '<div class="error"><p>' . sprintf( __( 'The %s directory of the develop repository must be used for RTL.' ), '<code>build</code>' ) . '</p></div>';
    229         }
    230 
    231         /**
    232          * Retrieve the full translated weekday word.
    233          *
    234          * Week starts on translated Sunday and can be fetched
    235          * by using 0 (zero). So the week starts with 0 (zero)
    236          * and ends on Saturday with is fetched by using 6 (six).
    237          *
    238          * @since 2.1.0
    239          * @access public
    240          *
    241          * @param int $weekday_number 0 for Sunday through 6 Saturday
    242          * @return string Full translated weekday
    243          */
    244         public function get_weekday($weekday_number) {
    245                 return $this->weekday[$weekday_number];
    246         }
     25/**
     26 * Switches the translations according to the given locale.
     27 *
     28 * @since 4.6.0
     29 *
     30 * @param string $locale The locale.
     31 */
     32function switch_to_locale( $locale ) {
    24733
    24834        /**
    249          * Retrieve the translated weekday initial.
    250          *
    251          * The weekday initial is retrieved by the translated
    252          * full weekday word. When translating the weekday initial
    253          * pay attention to make sure that the starting letter does
    254          * not conflict.
    255          *
    256          * @since 2.1.0
    257          * @access public
    258          *
    259          * @param string $weekday_name
    260          * @return string
     35         * @global WP_Locale_Switcher $wp_locale_switcher
    26136         */
    262         public function get_weekday_initial($weekday_name) {
    263                 return $this->weekday_initial[$weekday_name];
    264         }
     37        global $wp_locale_switcher;
    26538
    266         /**
    267          * Retrieve the translated weekday abbreviation.
    268          *
    269          * The weekday abbreviation is retrieved by the translated
    270          * full weekday word.
    271          *
    272          * @since 2.1.0
    273          * @access public
    274          *
    275          * @param string $weekday_name Full translated weekday word
    276          * @return string Translated weekday abbreviation
    277          */
    278         public function get_weekday_abbrev($weekday_name) {
    279                 return $this->weekday_abbrev[$weekday_name];
    280         }
     39        $wp_locale_switcher->switch_to_locale( $locale );
     40}
    28141
    282         /**
    283          * Retrieve the full translated month by month number.
    284          *
    285          * The $month_number parameter has to be a string
    286          * because it must have the '0' in front of any number
    287          * that is less than 10. Starts from '01' and ends at
    288          * '12'.
    289          *
    290          * You can use an integer instead and it will add the
    291          * '0' before the numbers less than 10 for you.
    292          *
    293          * @since 2.1.0
    294          * @access public
    295          *
    296          * @param string|int $month_number '01' through '12'
    297          * @return string Translated full month name
    298          */
    299         public function get_month($month_number) {
    300                 return $this->month[zeroise($month_number, 2)];
    301         }
     42/**
     43 * Restores the translations according to the previous locale.
     44 *
     45 * @since 4.6.0
     46 *
     47 * @return string|false Locale on success, false on error.
     48 */
     49function restore_locale() {
    30250
    30351        /**
    304          * Retrieve translated version of month abbreviation string.
    305          *
    306          * The $month_name parameter is expected to be the translated or
    307          * translatable version of the month.
    308          *
    309          * @since 2.1.0
    310          * @access public
    311          *
    312          * @param string $month_name Translated month to get abbreviated version
    313          * @return string Translated abbreviated month
     52         * @global WP_Locale_Switcher $wp_locale_switcher
    31453         */
    315         public function get_month_abbrev($month_name) {
    316                 return $this->month_abbrev[$month_name];
    317         }
     54        global $wp_locale_switcher;
    31855
    319         /**
    320          * Retrieve translated version of meridiem string.
    321          *
    322          * The $meridiem parameter is expected to not be translated.
    323          *
    324          * @since 2.1.0
    325          * @access public
    326          *
    327          * @param string $meridiem Either 'am', 'pm', 'AM', or 'PM'. Not translated version.
    328          * @return string Translated version
    329          */
    330         public function get_meridiem($meridiem) {
    331                 return $this->meridiem[$meridiem];
    332         }
    333 
    334         /**
    335          * Global variables are deprecated.
    336          *
    337          * For backward compatibility only.
    338          *
    339          * @deprecated For backward compatibility only.
    340          * @access private
    341          *
    342          * @global array $weekday
    343          * @global array $weekday_initial
    344          * @global array $weekday_abbrev
    345          * @global array $month
    346          * @global array $month_abbrev
    347          *
    348          * @since 2.1.0
    349          */
    350         public function register_globals() {
    351                 $GLOBALS['weekday']         = $this->weekday;
    352                 $GLOBALS['weekday_initial'] = $this->weekday_initial;
    353                 $GLOBALS['weekday_abbrev']  = $this->weekday_abbrev;
    354                 $GLOBALS['month']           = $this->month;
    355                 $GLOBALS['month_abbrev']    = $this->month_abbrev;
    356         }
    357 
    358         /**
    359          * Constructor which calls helper methods to set up object variables
    360          *
    361          * @since 2.1.0
    362          */
    363         public function __construct() {
    364                 $this->init();
    365                 $this->register_globals();
    366         }
    367 
    368         /**
    369          * Checks if current locale is RTL.
    370          *
    371          * @since 3.0.0
    372          * @return bool Whether locale is RTL.
    373          */
    374         public function is_rtl() {
    375                 return 'rtl' == $this->text_direction;
    376         }
    377 
    378         /**
    379          * Register date/time format strings for general POT.
    380          *
    381          * Private, unused method to add some date/time formats translated
    382          * on wp-admin/options-general.php to the general POT that would
    383          * otherwise be added to the admin POT.
    384          *
    385          * @since 3.6.0
    386          */
    387         public function _strings_for_pot() {
    388                 /* translators: localized date format, see http://php.net/date */
    389                 __( 'F j, Y' );
    390                 /* translators: localized time format, see http://php.net/date */
    391                 __( 'g:i a' );
    392                 /* translators: localized date and time format, see http://php.net/date */
    393                 __( 'F j, Y g:i a' );
    394         }
    395 }
    396 
    397 /**
    398  * Checks if current locale is RTL.
    399  *
    400  * @since 3.0.0
    401  *
    402  * @global WP_Locale $wp_locale
    403  *
    404  * @return bool Whether locale is RTL.
    405  */
    406 function is_rtl() {
    407         global $wp_locale;
    408         return $wp_locale->is_rtl();
     56        return $wp_locale_switcher->restore_locale();
    40957}
  • src/wp-includes/pomo/mo.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    1616        var $_nplurals = 2;
    1717
    1818        /**
     19         * Loaded MO file.
     20         *
     21         * @since 4.6.0
     22         * @var string
     23         */
     24        private $filename = '';
     25
     26        /**
     27         * Returns the loaded MO file.
     28         *
     29         * @since 4.6.0
     30         *
     31         * @return string The loaded MO file.
     32         */
     33        public function get_filename() {
     34
     35                return $this->filename;
     36        }
     37
     38        /**
    1939         * Fills up with the entries from MO file $filename
    2040         *
    2141         * @param string $filename MO file to load
     
    2444                $reader = new POMO_FileReader($filename);
    2545                if (!$reader->is_resource())
    2646                        return false;
     47                $this->filename = (string) $filename;
    2748                return $this->import_from_reader($reader);
    2849        }
    2950
     
    299320                return $this->_nplurals;
    300321        }
    301322}
    302 endif;
    303  No newline at end of file
     323endif;
  • src/wp-settings.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
    362362 */
    363363$GLOBALS['wp_locale'] = new WP_Locale();
    364364
     365/**
     366 * WordPress Locale Switcher object for switching locales.
     367 * @global WP_Locale_Switcher $wp_locale_switcher
     368 * @since 4.6.0
     369 */
     370$GLOBALS['wp_locale_switcher'] = new WP_Locale_Switcher();
     371
    365372// Load the functions for the active theme, for both parent and child theme if applicable.
    366373if ( ! wp_installing() || 'wp-activate.php' === $pagenow ) {
    367374        if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) )
  • src/wp-includes/class-wp-locale-storage.php

    IDEA additional info:
    Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
    <+>UTF-8
     
     1<?php
     2/**
     3 * Simple single (locale) value storage.
     4 *
     5 * @package    WordPress
     6 * @subpackage i18n
     7 */
     8
     9/**
     10 * Class for locale storage objects with a getter.
     11 *
     12 * @since 4.6.0
     13 */
     14class WP_Locale_Storage {
     15
     16        /**
     17         * The stored locale.
     18         *
     19         * @since 4.6.0
     20         * @var string
     21         */
     22        private $locale;
     23
     24        /**
     25         * Constructor. Stores the given locale.
     26         *
     27         * @since 4.6.0
     28         *
     29         * @param string $locale The locale.
     30         */
     31        public function __construct( $locale ) {
     32
     33                $this->locale = (string) $locale;
     34        }
     35
     36        /**
     37         * Returns the stored locale.
     38         *
     39         * @since 4.6.0
     40         *
     41         * @return string The stored locale.
     42         */
     43        public function get() {
     44
     45                return $this->locale;
     46        }
     47}