Make WordPress Core


Ignore:
Timestamp:
10/03/2016 07:03:41 AM (8 years ago)
Author:
swissspidy
Message:

I18N: Introduce a user-specific language setting.

By enabling the user to select their preferred locale when editing the profile, we allow for greater personalization of the WordPress admin and therefore a better user experience.

The back end will be displayed in the user's individual locale while the locale used on the front end equals the one set for the whole site. If the user didn't specify a locale, the site's locale will be used as a fallback. The new locale property of the WP_User class can be used to retrieve the user's locale setting.

Props ocean90, ipm-frommen, swissspidy.
Fixes #29783.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/user.php

    r38369 r38705  
    9595        $user->admin_color = isset( $_POST['admin_color'] ) ? sanitize_text_field( $_POST['admin_color'] ) : 'fresh';
    9696        $user->show_admin_bar_front = isset( $_POST['admin_bar_front'] ) ? 'true' : 'false';
     97        $user->locale = '';
     98
     99        if ( isset( $_POST['locale'] ) ) {
     100            $locale = sanitize_text_field( $_POST['locale'] );
     101            if ( ! in_array( $locale, get_available_languages(), true ) ) {
     102                $locale = '';
     103            }
     104
     105            $user->locale = ( '' === $locale ) ? 'en_US' : $locale;
     106        }
    97107    }
    98108
Note: See TracChangeset for help on using the changeset viewer.