diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index 868978d55f..897895d21a 100644
|
a
|
b
|
code { |
| 645 | 645 | color: #124964; |
| 646 | 646 | } |
| 647 | 647 | |
| | 648 | /* Dashicon for language options on General Settings and Profile screens */ |
| | 649 | .form-table th label[for="locale"] .dashicons, |
| | 650 | .form-table th label[for="WPLANG"] .dashicons { |
| | 651 | margin-left: 5px; |
| | 652 | } |
| | 653 | |
| 648 | 654 | .wrap .page-title-action:focus { |
| 649 | 655 | border-color: #5b9dd9; |
| 650 | 656 | box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); |
diff --git a/src/wp-admin/options-general.php b/src/wp-admin/options-general.php
index f47011aa0b..260d785424 100644
|
a
|
b
|
if ( ! is_multisite() && defined( 'WPLANG' ) && '' !== WPLANG && 'en_US' !== WPL |
| 162 | 162 | if ( ! empty( $languages ) || ! empty( $translations ) ) { |
| 163 | 163 | ?> |
| 164 | 164 | <tr> |
| 165 | | <th scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?></label></th> |
| | 165 | <th scope="row"><label for="WPLANG"><?php _e( 'Site Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span></label></th> |
| 166 | 166 | <td> |
| 167 | 167 | <?php |
| 168 | 168 | $locale = get_locale(); |
diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php
index f478c3be57..fcb86e4bea 100644
|
a
|
b
|
endif; // $_wp_admin_css_colors |
| 327 | 327 | <tr class="user-language-wrap"> |
| 328 | 328 | <th scope="row"> |
| 329 | 329 | <?php /* translators: The user language selection field label */ ?> |
| 330 | | <label for="locale"><?php _e( 'Language' ); ?></label> |
| | 330 | <label for="locale"><?php _e( 'Language' ); ?><span class="dashicons dashicons-translation" aria-hidden="true"></span></label> |
| 331 | 331 | </th> |
| 332 | 332 | <td> |
| 333 | 333 | <?php |