Make WordPress Core

Ticket #24227: 24227.patch

File 24227.patch, 3.6 KB (added by pankajxdx, 11 years ago)

I have changed the labels to make it more clear.

  • wp-admin/edit-form-advanced.php

     
    157157
    158158        $all_post_formats = array(
    159159                'standard' => array (
    160                         'description' => __( 'Use the editor below to compose your post.' )
    161                 ),
    162                 'image' => array (
    163                         'description' => __( 'Select or upload an image for your post.' )
    164                 ),
    165                 'gallery' => array (
    166                         'description' => __( 'Use the Add Media button to select or upload images for your gallery.' )
    167                 ),
    168                 'link' => array (
    169                         'description' => __( 'Add a link URL below.' )
    170                 ),
    171                 'video' => array (
    172                         'description' => __( 'Select or upload a video, or paste a video embed code into the box.' )
    173                 ),
    174                 'audio' => array (
    175                         'description' => __( 'Select or upload an audio file, or paste an audio embed code into the box.' )
    176                 ),
    177                 'chat' => array (
    178                         'description' => __( 'Copy a chat or Q&A transcript into the editor.' )
    179                 ),
    180                 'status' => array (
    181                         'description' => __( 'Use the editor to compose a status update. What’s new?' )
    182                 ),
    183                 'quote' => array (
    184                         'description' => __( 'Add a source and URL if you have them. Use the editor to compose the quote.' )
    185                 ),
    186                 'aside' => array (
    187                         'description' => __( 'Use the editor to share a quick thought or side topic.' )
    188                 )
     160                                'title'       => $post_type_object->labels->formats->standard_item,
     161            'description' => __( 'Add a title and use the editor to compose your post.' )
     162        ),
     163        'image' => array (
     164                                'title'       => $post_type_object->labels->formats->image_item,
     165            'description' => __( 'Select or upload an image to use for your post.' )
     166        ),
     167        'gallery' => array (
     168                                'title'       => $post_type_object->labels->formats->gallery_item,
     169            'description' => __( 'Use the Add Media button to select or upload images for your gallery.' )
     170        ),
     171        'link' => array (
     172                                'title'       => $post_type_object->labels->formats->link_item,
     173            'description' => __( 'Add a title and link URL below, use the editor to describe it.' )
     174        ),
     175        'video' => array (
     176                                'title'       => $post_type_object->labels->formats->video_item,
     177            'description' => __( 'Select or upload a video, or paste a video embed code into the box.' )
     178        ),
     179        'audio' => array (
     180                                'title'       => $post_type_object->labels->formats->audio_item,
     181            'description' => __( 'Select or upload an audio file, or paste an audio embed code into the box.' )
     182        ),
     183        'chat' => array (
     184                                'title'       => $post_type_object->labels->formats->chat_item,
     185            'description' => __( 'Copy a chat or Q&A transcript into the editor.' )
     186        ),
     187        'status' => array (
     188                                'title'       => $post_type_object->labels->formats->status_item,
     189            'description' => __( 'Use the editor to compose a status update. What’s new?' )
     190        ),
     191        'quote' => array (
     192                                'title'       => $post_type_object->labels->formats->quote_item,
     193            'description' => __( 'Copy a quotation into the editor box. Also add the source and it\'s URL if you have them.' )
     194        ),
     195        'aside' => array (
     196                                'title'       => $post_type_object->labels->formats->aside_item,
     197            'description' => __( 'An aside is a quick thought or side topic. Use the editor to compose one.' )
     198        )
    189199        );
    190200
    191201        foreach ( $all_post_formats as $slug => $attr ) {