Changeset 7026

Show
Ignore:
Timestamp:
02/25/08 19:13:21 (8 months ago)
Author:
ryan
Message:

Grammar fixes from takayukister and thenlich. fixes #5992

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-admin/import/stp.php

    r6943 r7026  
    9292        $tags_added = $this->tag2post(); 
    9393 
    94         echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tags where added!', 'Done! <strong>%s</strong> tags where added!', $tags_added), $tags_added ) . '<br /></p>'; 
     94        echo '<p>' . sprintf( __ngettext('Done! <strong>%s</strong> tag was added!', 'Done! <strong>%s</strong> tags were added!', $tags_added), $tags_added ) . '<br /></p>'; 
    9595        echo '<form action="admin.php?import=stp&amp;step=3" method="post">'; 
    9696        wp_nonce_field('import-stp'); 
  • trunk/xmlrpc.php

    r7021 r7026  
    637637        set_current_user(0, $username); 
    638638        if( !current_user_can("manage_categories") ) { 
    639             return new IXR_Error( 401, __( "Sorry, you do not the right to delete a category." ) ); 
     639            return new IXR_Error( 401, __( "Sorry, you do not have the right to delete a category." ) ); 
    640640        } 
    641641