Make WordPress Core

Changeset 21917


Ignore:
Timestamp:
09/19/2012 04:55:43 PM (11 years ago)
Author:
nacin
Message:

It is 'Alternative Text', not 'Alternate Text'. props alecrust, RyanJKoehler. fixes #21176.

Location:
trunk
Files:
3 edited

Legend:

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

    r21889 r21917  
    808808        $form_fields['image_alt'] = array(
    809809            'value' => $alt,
    810             'label' => __('Alternate Text'),
     810            'label' => __('Alternative Text'),
    811811            'helps' => __('Alt text for the image, e.g. “The Mona Lisa”')
    812812        );
     
    19761976        <tr class="image-only">
    19771977            <th valign="top" scope="row" class="label">
    1978                 <span class="alignleft"><label for="alt">' . __('Alternate Text') . '</label></span>
     1978                <span class="alignleft"><label for="alt">' . __('Alternative Text') . '</label></span>
    19791979            </th>
    19801980            <td class="field"><input id="alt" name="alt" value="" type="text" aria-required="true" />
  • trunk/wp-includes/js/tinymce/langs/wp-langs.php

    r21415 r21917  
    547547        'img_title' => __('Title'),
    548548        'caption' => __('Caption'),
    549         'alt' => __('Alternate Text')
     549        'alt' => __('Alternative Text')
    550550    );
    551551
  • trunk/wp-includes/pluggable.php

    r21837 r21917  
    15791579 * @param int $size Size of the avatar image
    15801580 * @param string $default URL to a default image to use if no avatar is available
    1581  * @param string $alt Alternate text to use in image tag. Defaults to blank
     1581 * @param string $alt Alternative text to use in image tag. Defaults to blank
    15821582 * @return string <img> tag for the user's avatar
    15831583*/
Note: See TracChangeset for help on using the changeset viewer.