Make WordPress Core


Ignore:
Timestamp:
02/26/2010 05:46:08 AM (17 years ago)
Author:
nacin
Message:

A call to arms for grammarians. Fixes #12228 fixes #11875 props kurtmckee, filosofo, jjj

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-general.php

    r12753 r13425  
    144144<?php endif; ?>
    145145<br />
    146 <span class="description"><?php _e('Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future.'); ?></span>
     146<span class="description"><?php _e('Unfortunately, you have to manually update this for daylight saving time. Lame, we know, but will be fixed in the future.'); ?></span>
    147147</td>
    148148<?php
     
    186186        <?php
    187187        $now = localtime(time(),true);
    188         if ($now['tm_isdst']) _e('This timezone is currently in daylight savings time.');
     188        if ($now['tm_isdst']) _e('This timezone is currently in daylight saving time.');
    189189        else _e('This timezone is currently in standard time.');
    190190        ?>
     
    203203                        echo ' ';
    204204                        $message = $tr['isdst'] ?
    205                                 __('Daylight savings time begins on: <code>%s</code>.') :
     205                                __('Daylight saving time begins on: <code>%s</code>.') :
    206206                                __('Standard time begins  on: <code>%s</code>.');
    207207                        printf( $message, date_i18n(get_option('date_format').' '.get_option('time_format'), $tr['ts'] ) );
    208208                } else {
    209                         _e('This timezone does not observe daylight savings time.');
     209                        _e('This timezone does not observe daylight saving time.');
    210210                }
    211211        }
Note: See TracChangeset for help on using the changeset viewer.