Make WordPress Core

Changeset 13425


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

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

Location:
trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/misc.php

    r13409 r13425  
    129129    $htaccess_file = $home_path.'.htaccess';
    130130
    131     // If the file doesn't already exists check for write access to the directory and whether we have some rules.
     131    // If the file doesn't already exist check for write access to the directory and whether we have some rules.
    132132    // else check for write access to the file.
    133133    if ((!file_exists($htaccess_file) && is_writable($home_path) && $wp_rewrite->using_mod_rewrite_permalinks()) || is_writable($htaccess_file)) {
  • trunk/wp-admin/includes/template.php

    r13423 r13425  
    18231823    if ( current_user_can( 'edit_user', $user_object->ID ) ) {
    18241824        // Set up the user editing link
    1825         // TODO: make profile/user-edit determination a seperate function
     1825        // TODO: make profile/user-edit determination a separate function
    18261826        if ($current_user->ID == $user_object->ID) {
    18271827            $edit_link = 'profile.php';
  • 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    }
  • trunk/wp-includes/class-smtp.php

    r11341 r13425  
    266266   * that is to be send with the headers. Each header needs to be
    267267   * on a single line followed by a <CRLF> with the message headers
    268    * and the message body being seperated by and additional <CRLF>.
     268   * and the message body being separated by and additional <CRLF>.
    269269   *
    270270   * Implements rfc 821: DATA <CRLF>
  • trunk/wp-includes/classes.php

    r13323 r13425  
    923923        /*
    924924         * need to display in hierarchical order
    925          * seperate elements into two buckets: top level and children elements
     925         * separate elements into two buckets: top level and children elements
    926926         * children_elements is two dimensional array, eg.
    927927         * children_elements[10][] contains all sub-elements whose parent is 10.
     
    10371037
    10381038        /*
    1039          * seperate elements into two buckets: top level and children elements
     1039         * separate elements into two buckets: top level and children elements
    10401040         * children_elements is two dimensional array, eg.
    10411041         * children_elements[10][] contains all sub-elements whose parent is 10.
  • trunk/wp-includes/deprecated.php

    r13399 r13425  
    12561256 *
    12571257 * @param int $comment_ID The ID of the comment
    1258  * @param int $no_cache Whether to use the cache (casted to bool)
     1258 * @param int $no_cache Whether to use the cache (cast to bool)
    12591259 * @param bool $include_unapproved Whether to include unapproved comments
    12601260 * @return array The comment data
  • trunk/wp-includes/general-template.php

    r13398 r13425  
    168168 * Display the Log In/Out link.
    169169 *
    170  * Displays a link, which allows the user to navigate to the Log In page to log in
     170 * Displays a link, which allows users to navigate to the Log In page to log in
    171171 * or log out depending on whether they are currently logged in.
    172172 *
  • trunk/wp-includes/load.php

    r13253 r13425  
    229229 *
    230230 * WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless WP_DEBUG is true.
    231  * WP_DEBUG defaults defaults to false.
     231 * WP_DEBUG defaults to false.
    232232 *
    233233 * When WP_DEBUG is true, all PHP notices are reported. WordPress will also display
  • trunk/wp-includes/post-template.php

    r13382 r13425  
    10071007 *
    10081008 * This template tag allows you to determine if you are in a page template.
    1009  * You can optional provide a template name and then the check will be
     1009 * You can optionally provide a template name and then the check will be
    10101010 * specific to that template.
    10111011 *
Note: See TracChangeset for help on using the changeset viewer.