Make WordPress Core

Ticket #35064: 35064.2.patch

File 35064.2.patch, 5.0 KB (added by afercia, 9 years ago)
  • src/wp-admin/css/forms.css

     
    655655        margin-bottom: 0;
    656656}
    657657
     658.form-table p.timezone-info {
     659        margin: 1em 0;
     660}
     661
    658662.form-table td fieldset label {
    659663        margin: 0.25em 0 0.5em !important;
    660664        display: inline-block;
     
    893897  20.0 - Settings
    894898------------------------------------------------------------------------------*/
    895899
    896 #utc-time, #local-time {
    897         padding-left: 25px;
     900#utc-time,
     901#local-time {
    898902        font-style: italic;
    899903}
    900904
     905.timezone-info code {
     906        white-space: nowrap;
     907}
     908
    901909.defaultavatarpicker .avatar {
    902910        margin: 2px 0;
    903911        vertical-align: middle;
     
    11281136
    11291137        .form-table th,
    11301138        .form-table td,
    1131         .label-responsive {
     1139        .label-responsive,
     1140        .span-responsive {
    11321141                display: block;
    11331142                width: auto;
    11341143                vertical-align: middle;
     
    12681277                display: block;
    12691278        }
    12701279
    1271         #utc-time {
    1272                 margin-top: 10px;
    1273         }
    1274 
    12751280        #utc-time,
    12761281        #local-time {
    12771282                display: block;
    12781283                float: none;
    1279                 padding: 0;
    1280                 line-height: 2;
     1284                margin-top: 0.5em;
    12811285        }
    12821286
    12831287        .form-field #domain {
  • src/wp-admin/options-general.php

     
    145145<?php echo wp_timezone_choice($tzstring); ?>
    146146</select>
    147147
     148<p class="description" id="timezone-description"><?php _e( 'Choose a city in the same timezone as you.' ); ?></p>
     149<?php if ($check_zone_info && $tzstring) : ?>
     150
     151<p class="timezone-info">
    148152        <span id="utc-time"><?php
    149                 /* translators: %s: UTC time */
    150                 printf( __( '<abbr title="Coordinated Universal Time">UTC</abbr> time is %s' ),
    151                         '<code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code>'
     153                /* translators: 1: UTC abbreviation, 2: UTC time */
     154                printf( __( 'Universal time (%1$s) is %2$s' ),
     155                        '<abbr>' . __( 'UTC' ) . '</abbr>',
     156                        '<span class="span-responsive"><code>' . date_i18n( $timezone_format, false, 'gmt' ) . '</code></span>'
    152157                );
    153158        ?></span>
    154 <?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?>
     159<?php if ( get_option( 'timezone_string' ) || ! empty( $current_offset ) ) : ?>
    155160        <span id="local-time"><?php
    156161                /* translators: %s: local time */
    157162                printf( __( 'Local time is %s' ),
    158                         '<code>' . date_i18n( $timezone_format ) . '</code>'
     163                        '<span class="span-responsive"><code>' . date_i18n( $timezone_format ) . '</code></span>'
    159164                );
    160165        ?></span>
    161166<?php endif; ?>
    162 <p class="description" id="timezone-description"><?php _e( 'Choose a city in the same timezone as you.' ); ?></p>
    163 <?php if ($check_zone_info && $tzstring) : ?>
    164 <br />
     167</p>
     168
     169<p class="timezone-info">
    165170<span>
    166171        <?php
    167172        // Set TZ so localtime works.
     
    192197                        echo ' ';
    193198                        $message = $tr['isdst'] ?
    194199                                /* translators: %s: date and time  */
    195                                 __( 'Daylight saving time begins on: %s.')  :
     200                                __( 'Daylight saving time begins on: %s')  :
    196201                                /* translators: %s: date and time  */
    197                                 __( 'Standard time begins on: %s.' );
     202                                __( 'Standard time begins on: %s' );
    198203                        // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n().
    199204                        printf( $message,
    200                                 '<code>' . date_i18n(
     205                                '<span class="span-responsive"><code>' . date_i18n(
    201206                                        __( 'F j, Y' ) . ' ' . __( 'g:i a' ),
    202207                                        $tr['ts'] + ( $tz_offset - $tr['offset'] )
    203                                 ) . '</code>'
     208                                ) . '</code></span>'
    204209                        );
    205210                } else {
    206211                        _e( 'This timezone does not observe daylight saving time.' );
     
    211216        ?>
    212217        </span>
    213218<?php endif; ?>
     219</p>
    214220</td>
    215221
    216222</tr>
     
    232238        $custom = true;
    233239
    234240        foreach ( $date_formats as $format ) {
    235                 echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='date_format' value='" . esc_attr($format) . "'";
     241                echo "\t<label><input type='radio' name='date_format' value='" . esc_attr( $format ) . "'";
    236242                if ( get_option('date_format') === $format ) { // checked() uses "==" rather than "==="
    237243                        echo " checked='checked'";
    238244                        $custom = false;
    239245                }
    240                 echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
     246                echo ' /> ' . date_i18n( $format ) . ' <code>' . $format . "</code></label><br />\n";
    241247        }
    242248
    243249        echo '  <label><input type="radio" name="date_format" id="date_format_custom_radio" value="\c\u\s\t\o\m"';
     
    265271        $custom = true;
    266272
    267273        foreach ( $time_formats as $format ) {
    268                 echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='time_format' value='" . esc_attr($format) . "'";
     274                echo "\t<label><input type='radio' name='time_format' value='" . esc_attr( $format ) . "'";
    269275                if ( get_option('time_format') === $format ) { // checked() uses "==" rather than "==="
    270276                        echo " checked='checked'";
    271277                        $custom = false;
    272278                }
    273                 echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
     279                echo ' /> ' . date_i18n( $format ) . ' <code>' . $format . "</code></label><br />\n";
    274280        }
    275281
    276282        echo '  <label><input type="radio" name="time_format" id="time_format_custom_radio" value="\c\u\s\t\o\m"';