Make WordPress Core

Ticket #18218: 18218.4.patch

File 18218.4.patch, 40.7 KB (added by ramiy, 13 years ago)
  • wp-admin/edit-comments.php

     
    194194                if ( $same > 0 && $comment = get_comment( $same ) ) {
    195195                        switch ( $comment->comment_approved ) {
    196196                                case '1' :
    197                                         $messages[] = __('This comment is already approved.') . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
     197                                        $messages[] = __('This comment is already approved.') . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit Comment' ) . '</a>';
    198198                                        break;
    199199                                case 'trash' :
    200200                                        $messages[] = __( 'This comment is already in the Trash.' ) . ' <a href="' . esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ) . '"> ' . __( 'View Trash' ) . '</a>';
    201201                                        break;
    202202                                case 'spam' :
    203                                         $messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>';
     203                                        $messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit Comment' ) . '</a>';
    204204                                        break;
    205205                        }
    206206                }
  • wp-admin/edit-form-comment.php

     
    106106        <td class="first">
    107107        <?php
    108108                if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) {
    109                         $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('visit site') . '</a>';
     109                        $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('Visit Site') . '</a>';
    110110                        printf( __( 'URL (%s):' ), apply_filters('get_comment_author_link', $link ) );
    111111                } else {
    112112                        _e( 'URL:' );
  • wp-admin/includes/class-wp-comments-list-table.php

     
    411411                        }
    412412
    413413                        if ( 'trash' != $the_comment_status ) {
    414                                 $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit comment' ) . "'>". __( 'Edit' ) . '</a>';
    415                                 $actions['quickedit'] = '<a onclick="commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\' );return false;" class="vim-q" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick&nbsp;Edit' ) . '</a>';
     414                                $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit Comment' ) . "'>". __( 'Edit' ) . '</a>';
     415                                $actions['quickedit'] = '<a onclick="commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\',\'edit\' );return false;" class="vim-q" title="'.esc_attr__( 'Quick Edit' ).'" href="#">' . __( 'Quick Edit' ) . '</a>';
    416416                                if ( 'spam' != $the_comment_status )
    417417                                        $actions['reply'] = '<a onclick="commentReply.open( \''.$comment->comment_ID.'\',\''.$post->ID.'\' );return false;" class="vim-r" title="'.esc_attr__( 'Reply to this comment' ).'" href="#">' . __( 'Reply' ) . '</a>';
    418418                        }
  • wp-admin/includes/class-wp-plugins-list-table.php

     
    365365                        if ( $screen->is_network ) {
    366366                                if ( $is_active_for_network ) {
    367367                                        if ( current_user_can( 'manage_network_plugins' ) )
    368                                                 $actions['network_deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Network Deactivate') . '</a>';
     368                                                $actions['network_deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate plugin') . '">' . __('Network Deactivate') . '</a>';
    369369                                } else {
    370370                                        if ( current_user_can( 'manage_network_plugins' ) )
    371                                                 $actions['network_activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
     371                                                $actions['network_activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;networkwide=1&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate plugin for all sites in this network') . '" class="edit">' . __('Network Activate') . '</a>';
    372372                                        if ( current_user_can( 'delete_plugins' ) && ! is_plugin_active( $plugin_file ) )
    373                                                 $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
     373                                                $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete Plugin') . '" class="delete">' . __('Delete') . '</a>';
    374374                                }
    375375                        } else {
    376376                                if ( $is_active ) {
    377                                         $actions['deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate this plugin') . '">' . __('Deactivate') . '</a>';
     377                                        $actions['deactivate'] = '<a href="' . wp_nonce_url('plugins.php?action=deactivate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'deactivate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Deactivate Plugin') . '">' . __('Deactivate') . '</a>';
    378378                                } else {
    379                                         $actions['activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate this plugin') . '" class="edit">' . __('Activate') . '</a>';
     379                                        $actions['activate'] = '<a href="' . wp_nonce_url('plugins.php?action=activate&amp;plugin=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'activate-plugin_' . $plugin_file) . '" title="' . esc_attr__('Activate Plugin') . '" class="edit">' . __('Activate') . '</a>';
    380380
    381381                                        if ( ! is_multisite() && current_user_can('delete_plugins') )
    382                                                 $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete this plugin') . '" class="delete">' . __('Delete') . '</a>';
     382                                                $actions['delete'] = '<a href="' . wp_nonce_url('plugins.php?action=delete-selected&amp;checked[]=' . $plugin_file . '&amp;plugin_status=' . $context . '&amp;paged=' . $page . '&amp;s=' . $s, 'bulk-plugins') . '" title="' . esc_attr__('Delete Plugin') . '" class="delete">' . __('Delete') . '</a>';
    383383                                } // end if $is_active
    384384                         } // end if $screen->is_network
    385385
  • wp-admin/includes/class-wp-posts-list-table.php

     
    540540                                $actions = array();
    541541                                if ( $can_edit_post && 'trash' != $post->post_status ) {
    542542                                        $actions['edit'] = '<a href="' . get_edit_post_link( $post->ID, true ) . '" title="' . esc_attr( __( 'Edit this item' ) ) . '">' . __( 'Edit' ) . '</a>';
    543                                         $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Edit this item inline' ) ) . '">' . __( 'Quick&nbsp;Edit' ) . '</a>';
     543                                        $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Quick Edit' ) ) . '">' . __( 'Quick Edit' ) . '</a>';
    544544                                }
    545545                                if ( current_user_can( $post_type_object->cap->delete_post, $post->ID ) ) {
    546546                                        if ( 'trash' == $post->post_status )
  • wp-admin/includes/class-wp-terms-list-table.php

     
    257257                $actions = array();
    258258                if ( current_user_can( $tax->cap->edit_terms ) ) {
    259259                        $actions['edit'] = '<a href="' . $edit_link . '">' . __( 'Edit' ) . '</a>';
    260                         $actions['inline hide-if-no-js'] = '<a href="#" class="editinline">' . __( 'Quick&nbsp;Edit' ) . '</a>';
     260                        $actions['inline hide-if-no-js'] = '<a href="#" class="editinline" title="' . esc_attr( __( 'Quick Edit' ) ) . '">' . __( 'Quick Edit' ) . '</a>';
    261261                }
    262262                if ( current_user_can( $tax->cap->delete_terms ) && $tag->term_id != $default_term )
    263263                        $actions['delete'] = "<a class='delete-tag' href='" . wp_nonce_url( "edit-tags.php?action=delete&amp;taxonomy=$taxonomy&amp;tag_ID=$tag->term_id", 'delete-tag_' . $tag->term_id ) . "'>" . __( 'Delete' ) . "</a>";
  • wp-admin/includes/dashboard.php

     
    126126        }
    127127
    128128        foreach ( $dashboard_widgets as $widget_id ) {
    129                 $name = empty( $wp_registered_widgets[$widget_id]['all_link'] ) ? $wp_registered_widgets[$widget_id]['name'] : $wp_registered_widgets[$widget_id]['name'] . " <a href='{$wp_registered_widgets[$widget_id]['all_link']}' class='edit-box open-box'>" . __('View all') . '</a>';
     129                $name = empty( $wp_registered_widgets[$widget_id]['all_link'] ) ? $wp_registered_widgets[$widget_id]['name'] : $wp_registered_widgets[$widget_id]['name'] . " <a href='{$wp_registered_widgets[$widget_id]['all_link']}' class='edit-box open-box'>" . __('View All') . '</a>';
    130130                wp_add_dashboard_widget( $widget_id, $name, $wp_registered_widgets[$widget_id]['callback'], $wp_registered_widget_controls[$widget_id]['callback'] );
    131131        }
    132132
     
    596596        <ul>
    597597                <li><?php echo join( "</li>\n<li>", $list ); ?></li>
    598598        </ul>
    599         <p class="textright"><a href="edit.php?post_status=draft" ><?php _e('View all'); ?></a></p>
     599        <p class="textright"><a href="edit.php?post_status=draft" ><?php _e('View All'); ?></a></p>
    600600<?php
    601601        } else {
    602602                _e('There are no drafts at the moment');
     
    694694
    695695                $actions['approve'] = "<a href='$approve_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
    696696                $actions['unapprove'] = "<a href='$unapprove_url' class='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
    697                 $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>';
     697                $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit Comment') . "'>". __('Edit') . '</a>';
    698698                $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
    699699                $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */  _x( 'Spam', 'verb' ) . '</a>';
    700700                if ( !EMPTY_TRASH_DAYS )
  • wp-admin/includes/deprecated.php

     
    521521                if ( $this->results )
    522522                        $this->total_users_for_query = $wpdb->get_var("SELECT COUNT(DISTINCT($wpdb->users.ID))" . $this->query_from . $this->query_where); // no limit
    523523                else
    524                         $this->search_errors = new WP_Error('no_matching_users_found', __('No matching users were found!'));
     524                        $this->search_errors = new WP_Error('no_matching_users_found', __('No matching users were found.'));
    525525        }
    526526
    527527        /**
  • wp-admin/includes/internal-linking.php

     
    8282                        <label><span><?php _e( 'Title' ); ?></span><input id="link-title-field" type="text" tabindex="20" name="linktitle" /></label>
    8383                </div>
    8484                <div class="link-target">
    85                         <label><input type="checkbox" id="link-target-checkbox" tabindex="30" /> <?php _e( 'Open link in a new window/tab' ); ?></label>
     85                        <label><input type="checkbox" id="link-target-checkbox" tabindex="30" /> <?php _e( 'Open link in a new window' ); ?></label>
    8686                </div>
    8787        </div>
    8888        <?php $show_internal = '1' == get_user_setting( 'wplink', '0' ); ?>
  • wp-admin/includes/media.php

     
    16441644?>
    16451645</div>
    16461646<p class="savebutton ml-submit">
    1647 <?php submit_button( __( 'Save all changes' ), 'button', 'save', false ); ?>
     1647<?php submit_button( __( 'Save Changes' ), 'button', 'save', false ); ?>
    16481648</p>
    16491649</form>
    16501650<?php
     
    18241824</div>
    18251825
    18261826<p class="ml-submit">
    1827 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
     1827<?php submit_button( __( 'Save Changes' ), 'button savebutton', 'save', false, array( 'id' => 'save-all', 'style' => 'display: none;' ) ); ?>
    18281828<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
    18291829<input type="hidden" name="type" value="<?php echo esc_attr( $GLOBALS['type'] ); ?>" />
    18301830<input type="hidden" name="tab" value="<?php echo esc_attr( $GLOBALS['tab'] ); ?>" />
     
    20652065<?php echo get_media_items(null, $errors); ?>
    20662066</div>
    20672067<p class="ml-submit">
    2068 <?php submit_button( __( 'Save all changes' ), 'button savebutton', 'save', false ); ?>
     2068<?php submit_button( __( 'Save Changes' ), 'button savebutton', 'save', false ); ?>
    20692069<input type="hidden" name="post_id" id="post_id" value="<?php echo (int) $post_id; ?>" />
    20702070</p>
    20712071</form>
     
    21452145                        <td class="field"><input id="url" name="url" value="" type="text" /><br />
    21462146
    21472147                        <button type="button" class="button" value="" onclick="document.forms[0].url.value=null">' . __('None') . '</button>
    2148                         <button type="button" class="button" value="" onclick="document.forms[0].url.value=document.forms[0].src.value">' . __('Link to image') . '</button>
     2148                        <button type="button" class="button" value="" onclick="document.forms[0].url.value=document.forms[0].src.value">' . __('Link to Image') . '</button>
    21492149                        <p class="help">' . __('Enter a link URL or click above for presets.') . '</p></td>
    21502150                </tr>
    21512151        ' . _insert_into_post_button('image') . '
  • wp-admin/includes/meta-boxes.php

     
    116116        $visibility_trans = __('Private');
    117117} elseif ( !empty( $post->post_password ) ) {
    118118        $visibility = 'password';
    119         $visibility_trans = __('Password protected');
     119        $visibility_trans = __('Password Protected');
    120120} elseif ( $post_type == 'post' && is_sticky( $post->ID ) ) {
    121121        $visibility = 'public';
    122122        $visibility_trans = __('Public, Sticky');
     
    141141<?php if ( $post_type == 'post' && current_user_can( 'edit_others_posts' ) ) : ?>
    142142<span id="sticky-span"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked( is_sticky( $post->ID ) ); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e( 'Stick this post to the front page' ); ?></label><br /></span>
    143143<?php endif; ?>
    144 <input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password protected'); ?></label><br />
     144<input type="radio" name="visibility" id="visibility-radio-password" value="password" <?php checked( $visibility, 'password' ); ?> /> <label for="visibility-radio-password" class="selectit"><?php _e('Password Protected'); ?></label><br />
    145145<span id="password-span"><label for="post_password"><?php _e('Password:'); ?></label> <input type="text" name="post_password" id="post_password" value="<?php echo esc_attr($post->post_password); ?>" /><br /></span>
    146146<input type="radio" name="visibility" id="visibility-radio-private" value="private" <?php checked( $visibility, 'private' ); ?> /> <label for="visibility-radio-private" class="selectit"><?php _e('Private'); ?></label><br />
    147147
     
    448448?>
    449449<input name="advanced_view" type="hidden" value="1" />
    450450<p class="meta-options">
    451         <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow comments.' ) ?></label><br />
    452         <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">trackbacks and pingbacks</a> on this page.' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>
     451        <label for="comment_status" class="selectit"><input name="comment_status" type="checkbox" id="comment_status" value="open" <?php checked($post->comment_status, 'open'); ?> /> <?php _e( 'Allow Comments' ) ?></label><br />
     452        <label for="ping_status" class="selectit"><input name="ping_status" type="checkbox" id="ping_status" value="open" <?php checked($post->ping_status, 'open'); ?> /> <?php printf( __( 'Allow <a href="%s" target="_blank">Trackbacks and Pingbacks</a>' ), __( 'http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments' ) ); ?></label>
    453453        <?php do_action('post_comment_status_meta_box-options', $post); ?>
    454454</p>
    455455<?php
     
    682682        <h4><a id="category-add-toggle" href="#category-add"><?php _e( '+ Add New Category' ); ?></a></h4>
    683683        <p id="link-category-add" class="wp-hidden-child">
    684684                <label class="screen-reader-text" for="newcat"><?php _e( '+ Add New Category' ); ?></label>
    685                 <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New category name' ); ?>" aria-required="true" />
     685                <input type="text" name="newcat" id="newcat" class="form-required form-input-tip" value="<?php esc_attr_e( 'New Category Name' ); ?>" aria-required="true" />
    686686                <input type="button" id="category-add-submit" class="add:categorychecklist:linkcategorydiv button" value="<?php esc_attr_e( 'Add' ); ?>" />
    687687                <?php wp_nonce_field( 'add-link-category', '_ajax_nonce', false ); ?>
    688688                <span id="category-ajax-response"></span>
     
    765765                <td colspan="2">
    766766                        <table cellpadding="3" cellspacing="5" class="form-table">
    767767                                <tr>
    768                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </th>
    769                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('identity') ?> </span></legend>
     768                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Identity') ?> </th>
     769                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Identity') ?> </span></legend>
    770770                                                <label for="me">
    771771                                                <input type="checkbox" name="identity" value="me" id="me" <?php xfn_check('identity', 'me'); ?> />
    772                                                 <?php _e('another web address of mine') ?></label>
     772                                                <?php _e('Another web address of mine') ?></label>
    773773                                        </fieldset></td>
    774774                                </tr>
    775775                                <tr>
    776                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </th>
    777                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friendship') ?> </span></legend>
     776                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Friendship') ?> </th>
     777                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Friendship') ?> </span></legend>
    778778                                                <label for="contact">
    779                                                 <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('contact') ?></label>
     779                                                <input class="valinp" type="radio" name="friendship" value="contact" id="contact" <?php xfn_check('friendship', 'contact'); ?> />
     780                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Contact') ?></label>
    780781                                                <label for="acquaintance">
    781                                                 <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> />  <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('acquaintance') ?></label>
     782                                                <input class="valinp" type="radio" name="friendship" value="acquaintance" id="acquaintance" <?php xfn_check('friendship', 'acquaintance'); ?> />
     783                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Acquaintance') ?></label>
    782784                                                <label for="friend">
    783                                                 <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('friend') ?></label>
     785                                                <input class="valinp" type="radio" name="friendship" value="friend" id="friend" <?php xfn_check('friendship', 'friend'); ?> />
     786                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Friend') ?></label>
    784787                                                <label for="friendship">
    785                                                 <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship'); ?> /> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?></label>
     788                                                <input name="friendship" type="radio" class="valinp" value="" id="friendship" <?php xfn_check('friendship'); ?> />
     789                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('None') ?></label>
    786790                                        </fieldset></td>
    787791                                </tr>
    788792                                <tr>
    789                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </th>
    790                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('physical') ?> </span></legend>
     793                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Physical') ?> </th>
     794                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Physical') ?> </span></legend>
    791795                                                <label for="met">
    792796                                                <input class="valinp" type="checkbox" name="physical" value="met" id="met" <?php xfn_check('physical', 'met'); ?> />
    793                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('met') ?></label>
     797                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Met') ?></label>
    794798                                        </fieldset></td>
    795799                                </tr>
    796800                                <tr>
    797                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </th>
    798                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('professional') ?> </span></legend>
     801                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Professional') ?> </th>
     802                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Professional') ?> </span></legend>
    799803                                                <label for="co-worker">
    800804                                                <input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" <?php xfn_check('professional', 'co-worker'); ?> />
    801                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-worker') ?></label>
     805                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Co-worker') ?></label>
    802806                                                <label for="colleague">
    803807                                                <input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" <?php xfn_check('professional', 'colleague'); ?> />
    804                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('colleague') ?></label>
     808                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Colleague') ?></label>
    805809                                        </fieldset></td>
    806810                                </tr>
    807811                                <tr>
    808                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </th>
    809                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('geographical') ?> </span></legend>
     812                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Geographical') ?> </th>
     813                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Geographical') ?> </span></legend>
    810814                                                <label for="co-resident">
    811815                                                <input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" <?php xfn_check('geographical', 'co-resident'); ?> />
    812                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('co-resident') ?></label>
     816                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('No-resident') ?></label>
    813817                                                <label for="neighbor">
    814818                                                <input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" <?php xfn_check('geographical', 'neighbor'); ?> />
    815                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('neighbor') ?></label>
     819                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Neighbor') ?></label>
    816820                                                <label for="geographical">
    817821                                                <input class="valinp" type="radio" name="geographical" value="" id="geographical" <?php xfn_check('geographical'); ?> />
    818                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?></label>
     822                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('None') ?></label>
    819823                                        </fieldset></td>
    820824                                </tr>
    821825                                <tr>
    822                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </th>
    823                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('family') ?> </span></legend>
     826                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Family') ?> </th>
     827                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Family') ?> </span></legend>
    824828                                                <label for="child">
    825829                                                <input class="valinp" type="radio" name="family" value="child" id="child" <?php xfn_check('family', 'child'); ?>  />
    826                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('child') ?></label>
     830                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Child') ?></label>
    827831                                                <label for="kin">
    828832                                                <input class="valinp" type="radio" name="family" value="kin" id="kin" <?php xfn_check('family', 'kin'); ?>  />
    829                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('kin') ?></label>
     833                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Kin') ?></label>
    830834                                                <label for="parent">
    831835                                                <input class="valinp" type="radio" name="family" value="parent" id="parent" <?php xfn_check('family', 'parent'); ?> />
    832                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('parent') ?></label>
     836                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Parent') ?></label>
    833837                                                <label for="sibling">
    834838                                                <input class="valinp" type="radio" name="family" value="sibling" id="sibling" <?php xfn_check('family', 'sibling'); ?> />
    835                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sibling') ?></label>
     839                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Sibling') ?></label>
    836840                                                <label for="spouse">
    837841                                                <input class="valinp" type="radio" name="family" value="spouse" id="spouse" <?php xfn_check('family', 'spouse'); ?> />
    838                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('spouse') ?></label>
     842                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Spouse') ?></label>
    839843                                                <label for="family">
    840844                                                <input class="valinp" type="radio" name="family" value="" id="family" <?php xfn_check('family'); ?> />
    841                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('none') ?></label>
     845                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('None') ?></label>
    842846                                        </fieldset></td>
    843847                                </tr>
    844848                                <tr>
    845                                         <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </th>
    846                                         <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('romantic') ?> </span></legend>
     849                                        <th scope="row"> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Romantic') ?> </th>
     850                                        <td><fieldset><legend class="screen-reader-text"><span> <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Romantic') ?> </span></legend>
    847851                                                <label for="muse">
    848852                                                <input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" <?php xfn_check('romantic', 'muse'); ?> />
    849                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('muse') ?></label>
     853                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Muse') ?></label>
    850854                                                <label for="crush">
    851855                                                <input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" <?php xfn_check('romantic', 'crush'); ?> />
    852                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('crush') ?></label>
     856                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Crush') ?></label>
    853857                                                <label for="date">
    854858                                                <input class="valinp" type="checkbox" name="romantic" value="date" id="date" <?php xfn_check('romantic', 'date'); ?> />
    855                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('date') ?></label>
     859                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Date') ?></label>
    856860                                                <label for="romantic">
    857861                                                <input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="romantic" <?php xfn_check('romantic', 'sweetheart'); ?> />
    858                                                 <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('sweetheart') ?></label>
     862                                                <?php /* translators: xfn: http://gmpg.org/xfn/ */ _e('Sweetheart') ?></label>
    859863                                        </fieldset></td>
    860864                                </tr>
    861865                        </table>
  • wp-admin/includes/plugin-install.php

     
    8787        <p class="install-help"><?php _e('Search for plugins by keyword, author, or tag.') ?></p>
    8888        <?php install_search_form(); ?>
    8989
    90         <h4><?php _e('Popular tags') ?></h4>
     90        <h4><?php _e('Popular Tags') ?></h4>
    9191        <p class="install-help"><?php _e('You may also browse based on the most popular tags in the Plugin Directory:') ?></p>
    9292        <?php
    9393
  • wp-admin/includes/template.php

     
    16291629                $post_status = '';
    16301630
    16311631        if ( !empty($post->post_password) )
    1632                 $post_states['protected'] = __('Password protected');
     1632                $post_states['protected'] = __('Password Protected');
    16331633        if ( 'private' == $post->post_status && 'private' != $post_status )
    16341634                $post_states['private'] = __('Private');
    16351635        if ( 'draft' == $post->post_status && 'draft' != $post_status )
  • wp-admin/includes/theme-install.php

     
    298298        break;
    299299case 'newer_installed':
    300300        if ( current_user_can('install_themes') || current_user_can('update_themes') ) :
    301         ?><p><?php printf(__('Newer version (%s) is installed.'), $newer_version); ?></p><?php
     301        ?><p><?php printf(__('Newer Version (%s) Installed.'), $newer_version); ?></p><?php
    302302        endif;
    303303        break;
    304304case 'latest_installed':
    305305        if ( current_user_can('install_themes') || current_user_can('update_themes') ) :
    306         ?><p><?php _e('This version is already installed.'); ?></p><?php
     306        ?><p><?php _e('Latest Version Installed.'); ?></p><?php
    307307        endif;
    308308        break;
    309309} ?>
  • wp-admin/includes/theme.php

     
    9090        //Get the base plugin folder
    9191        $themes_dir = $wp_filesystem->wp_themes_dir();
    9292        if ( empty($themes_dir) )
    93                 return new WP_Error('fs_no_themes_dir', __('Unable to locate WordPress theme directory.'));
     93                return new WP_Error('fs_no_themes_dir', __('Unable to locate WordPress Theme directory.'));
    9494
    9595        $themes_dir = trailingslashit( $themes_dir );
    9696        $theme_dir = trailingslashit($themes_dir . $template);
  • wp-admin/media-upload.php

     
    9393        <input type="hidden" name="post_id" id="post_id" value="0" />
    9494        <?php wp_nonce_field('media-form'); ?>
    9595        <div id="media-items" class="hide-if-no-js"> </div>
    96         <?php submit_button( __( 'Save all changes' ), 'button savebutton hide-if-no-js', 'save' ); ?>
     96        <?php submit_button( __( 'Save Changes' ), 'button savebutton hide-if-no-js', 'save' ); ?>
    9797        </form>
    9898        </div>
    9999
  • wp-admin/options-permalink.php

     
    134134                else if ( $permalink_structure && ! $usingpi && $writable )
    135135                        _e('Permalink structure updated. Remove write access on web.config file now!');
    136136                else
    137                         _e('Permalink structure updated');
     137                        _e('Permalink structure updated.');
    138138        } else {
    139139                if ( $permalink_structure && ! $usingpi && ! $writable )
    140140                        _e('You should update your .htaccess now.');
  • wp-admin/options-reading.php

     
    9898</tr>
    9999<?php endif; ?>
    100100<tr valign="top">
    101 <th scope="row"><label for="posts_per_page"><?php _e( 'Blog pages show at most' ); ?></label></th>
     101<th scope="row"><label for="posts_per_page"><?php _e( 'Maximum number of post to show on site' ); ?></label></th>
    102102<td>
    103 <input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option( 'posts_per_page' ); ?>" class="small-text" /> <?php _e( 'posts' ); ?>
     103<input name="posts_per_page" type="text" id="posts_per_page" value="<?php form_option( 'posts_per_page' ); ?>" class="small-text" />
    104104</td>
    105105</tr>
    106106<tr valign="top">
    107 <th scope="row"><label for="posts_per_rss"><?php _e( 'Syndication feeds show the most recent' ); ?></label></th>
     107<th scope="row"><label for="posts_per_rss"><?php _e( 'Maximum number of items to show on feeds' ); ?></label></th>
    108108<td><input name="posts_per_rss" type="text" id="posts_per_rss" value="<?php form_option( 'posts_per_rss' ); ?>" class="small-text" /> <?php _e( 'items' ); ?></td>
    109109</tr>
    110110<tr valign="top">
    111111<th scope="row"><?php _e( 'For each article in a feed, show' ); ?> </th>
    112 <td><fieldset><legend class="screen-reader-text"><span><?php _e( 'For each article in a feed, show' ); ?> </span></legend>
     112<td><fieldset><legend class="screen-reader-text"><span><?php _e( 'For each item in a feed, show' ); ?> </span></legend>
    113113<p><label><input name="rss_use_excerpt"  type="radio" value="0" <?php checked( 0, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Full text' ); ?></label><br />
    114114<label><input name="rss_use_excerpt" type="radio" value="1" <?php checked( 1, get_option( 'rss_use_excerpt' ) ); ?> /> <?php _e( 'Summary' ); ?></label></p>
    115115</fieldset></td>
    116116</tr>
    117117
    118118<tr valign="top">
    119 <th scope="row"><label for="blog_charset"><?php _e( 'Encoding for pages and feeds' ); ?></label></th>
     119<th scope="row"><label for="blog_charset"><?php _e( 'Encoding for site and for feeds' ); ?></label></th>
    120120<td><input name="blog_charset" type="text" id="blog_charset" value="<?php form_option( 'blog_charset' ); ?>" class="regular-text" />
    121121<span class="description"><?php _e( 'The <a href="http://codex.wordpress.org/Glossary#Character_set">character encoding</a> of your site (UTF-8 is recommended, if you are adventurous there are some <a href="http://en.wikipedia.org/wiki/Character_set">other encodings</a>)' ); ?></span></td>
    122122</tr>
  • wp-admin/upload.php

     
    9595                                        wp_die( __( 'You are not allowed to move this post to the trash.' ) );
    9696
    9797                                if ( !wp_trash_post( $post_id ) )
    98                                         wp_die( __( 'Error in moving to trash...' ) );
     98                                        wp_die( __( 'Error in moving to Trash.' ) );
    9999                        }
    100100                        $location = add_query_arg( array( 'trashed' => count( $post_ids ), 'ids' => join( ',', $post_ids ) ), $location );
    101101                        break;
     
    105105                                        wp_die( __( 'You are not allowed to move this post out of the trash.' ) );
    106106
    107107                                if ( !wp_untrash_post( $post_id ) )
    108                                         wp_die( __( 'Error in restoring from trash...' ) );
     108                                        wp_die( __( 'Error in restoring from Trash.' ) );
    109109                        }
    110110                        $location = add_query_arg( 'untrashed', count( $post_ids ), $location );
    111111                        break;
     
    115115                                        wp_die( __( 'You are not allowed to delete this post.' ) );
    116116
    117117                                if ( !wp_delete_attachment( $post_id_del ) )
    118                                         wp_die( __( 'Error in deleting...' ) );
     118                                        wp_die( __( 'Error in deleting.' ) );
    119119                        }
    120120                        $location = add_query_arg( 'deleted', count( $post_ids ), $location );
    121121                        break;
  • wp-admin/user-new.php

     
    255255        </tr>
    256256<?php } ?>
    257257</table>
    258 <?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
     258<?php submit_button( __( 'Add Existing User' ), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
    259259</form>
    260260<?php
    261261} // is_multisite()
     
    340340        <?php } ?>
    341341</table>
    342342
    343 <?php submit_button( __( 'Add New User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
     343<?php submit_button( __( 'Add New User' ), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
    344344
    345345</form>
    346346<?php } // current_user_can('create_users') ?>
  • wp-includes/category-template.php

     
    834834                $cat_name = apply_filters( 'list_cats', $cat_name, $category );
    835835                $link = '<a href="' . esc_attr( get_term_link($category) ) . '" ';
    836836                if ( $use_desc_for_title == 0 || empty($category->description) )
    837                         $link .= 'title="' . esc_attr( sprintf(__( 'View all posts filed under %s' ), $cat_name) ) . '"';
     837                        $link .= 'title="' . esc_attr( sprintf(__( 'View all posts in %s' ), $cat_name) ) . '"';
    838838                else
    839839                        $link .= 'title="' . esc_attr( strip_tags( apply_filters( 'category_description', $category->description, $category ) ) ) . '"';
    840840                $link .= '>';
  • wp-includes/link-template.php

     
    10121012        if ( null === $link )
    10131013                $link = __('Edit This');
    10141014
    1015         $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment->comment_ID ) . '" title="' . esc_attr__( 'Edit comment' ) . '">' . $link . '</a>';
     1015        $link = '<a class="comment-edit-link" href="' . get_edit_comment_link( $comment->comment_ID ) . '" title="' . esc_attr__( 'Edit Comment' ) . '">' . $link . '</a>';
    10161016        echo $before . apply_filters( 'edit_comment_link', $link, $comment->comment_ID ) . $after;
    10171017}
    10181018