Ticket #12228: dst-spelling.diff
| File dst-spelling.diff, 1.6 KB (added by , 16 years ago) |
|---|
-
options-general.php
143 143 <span id="local-time"><?php printf(__('UTC %1$s is <code>%2$s</code>'), $current_offset_name, date_i18n($time_format)); ?></span> 144 144 <?php endif; ?> 145 145 <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> 147 147 </td> 148 148 <?php 149 149 else: // looks like we can do nice timezone selection! … … 185 185 <?php if ($check_zone_info && $tzstring) : ?> 186 186 <?php 187 187 $now = localtime(time(),true); 188 if ($now['tm_isdst']) _e('This timezone is currently in daylight saving stime.');188 if ($now['tm_isdst']) _e('This timezone is currently in daylight saving time.'); 189 189 else _e('This timezone is currently in standard time.'); 190 190 ?> 191 191 <br /> … … 202 202 if ( isset($found) && $found === true ) { 203 203 echo ' '; 204 204 $message = $tr['isdst'] ? 205 __('Daylight saving stime begins on: <code>%s</code>.') :205 __('Daylight saving time begins on: <code>%s</code>.') : 206 206 __('Standard time begins on: <code>%s</code>.'); 207 207 printf( $message, date_i18n(get_option('date_format').' '.get_option('time_format'), $tr['ts'] ) ); 208 208 } else { 209 _e('This timezone does not observe daylight saving stime.');209 _e('This timezone does not observe daylight saving time.'); 210 210 } 211 211 } 212 212 ?>