Make WordPress Core


Ignore:
Timestamp:
03/24/2008 02:57:19 AM (16 years ago)
Author:
ryan
Message:

Gallery display enhancements from tellyworth. fixes #6368

File:
1 edited

Legend:

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

    r7491 r7496  
    461461    if ( substr($post->post_mime_type, 0, 5) == 'image' ) {
    462462        $form_fields['post_title']['required'] = true;
    463         $form_fields['post_excerpt']['label'] = __('Description');
     463        $form_fields['post_excerpt']['label'] = __('Caption');
    464464        $form_fields['post_excerpt']['helps'][] = __('Alternate text, e.g. "The Mona Lisa"');
    465465
    466         $form_fields['post_content']['label'] = __('Long Description');
     466        $form_fields['post_content']['label'] = __('Description');
    467467
    468468        $thumb = wp_get_attachment_thumb_url($post->ID);
     
    555555        ),
    556556        'post_excerpt' => array(
    557             'label'      => __('Description'),
     557            'label'      => __('Caption'),
    558558            'value'      => $edit_post->post_excerpt,
    559559        ),
    560560        'post_content' => array(
    561             'label'      => __('Long description'),
     561            'label'      => __('Description'),
    562562            'value'      => $edit_post->post_content,
    563563            'input'      => 'textarea',
Note: See TracChangeset for help on using the changeset viewer.