Ticket #21890: 21890.2.alt.diff
File 21890.2.alt.diff, 1.1 KB (added by , 8 years ago) |
---|
-
wp-admin/css/wp-admin.css
8523 8523 .locale-ru-ru.press-this #side-sortables { 8524 8524 width: 245px; /* default 200px + 45px */ 8525 8525 } 8526 .locale-ru-ru #customize-header-actions .button { 8527 padding: 0 8px 1px; /* default 0 10px 1px; */ 8528 } 8526 8529 8527 8530 /* lt_LT: QuickEdit */ 8528 8531 .locale-lt-lt .inline-edit-row fieldset label span.title { -
wp-admin/customize.php
57 57 if ( $is_ios ) 58 58 $body_class .= ' ios'; 59 59 60 if ( is_rtl() ) 61 $body_class .= ' rtl'; 62 $body_class .= ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); 63 60 64 $admin_title = sprintf( __( '%1$s — WordPress' ), strip_tags( sprintf( __( 'Customize %s' ), $wp_customize->theme()->display('Name') ) ) ); 61 65 ?><title><?php echo $admin_title; ?></title><?php 62 66