Make WordPress Core

Ticket #16515: dashboard.diff

File dashboard.diff, 1.5 KB (added by settle, 14 years ago)
  • wp-admin/includes/dashboard.php

     
    506506?>
    507507
    508508        <form name="post" action="<?php echo esc_url( admin_url( 'post.php' ) ); ?>" method="post" id="quick-press">
    509                 <h4 id="quick-post-title"><label for="title"><?php _e('Title') ?></label></h4>
     509                <h4 id="quick-post-title"><label for="title"><?php _ex('Title', 'QuickPress') ?></label></h4>
    510510                <div class="input-text-wrap">
    511511                        <input type="text" name="post_title" id="title" tabindex="1" autocomplete="off" value="<?php echo esc_attr( $post->post_title ); ?>" />
    512512                </div>
     
    517517                </div>
    518518                <?php endif; ?>
    519519
    520                 <h4 id="content-label"><label for="content"><?php _e('Content') ?></label></h4>
     520                <h4 id="content-label"><label for="content"><?php _ex('Content', 'QuickPress') ?></label></h4>
    521521                <div class="textarea-wrap">
    522522                        <textarea name="content" id="content" class="mceEditor" rows="3" cols="15" tabindex="2"><?php echo esc_textarea( $post->post_content ); ?></textarea>
    523523                </div>
    524524
    525525                <script type="text/javascript">edCanvas = document.getElementById('content');edInsertContent = null;</script>
    526526
    527                 <h4><label for="tags-input"><?php _e('Tags') ?></label></h4>
     527                <h4><label for="tags-input"><?php _ex('Tags', 'QuickPress') ?></label></h4>
    528528                <div class="input-text-wrap">
    529529                        <input type="text" name="tags_input" id="tags-input" tabindex="3" value="<?php echo get_tags_to_edit( $post->ID ); ?>" />
    530530                </div>