Consolidate some strings. Props ramiy. see #20216

git-svn-id: http://svn.automattic.com/wordpress/trunk@20215 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2012-03-19 19:04:49 +00:00
parent 127632b10d
commit 7faddb72bc
2 changed files with 3 additions and 3 deletions

View File

@ -499,7 +499,7 @@ EOD;
*/ */
function get_attachment($postID = null) { function get_attachment($postID = null) {
if ( !current_user_can( 'upload_files' ) ) if ( !current_user_can( 'upload_files' ) )
$this->auth_required( __( 'Sorry, you do not have permission to upload files.' ) ); $this->auth_required( __( 'You do not have permission to upload files.' ) );
if ( !isset($postID) ) { if ( !isset($postID) ) {
$this->get_attachments(); $this->get_attachments();
@ -520,7 +520,7 @@ EOD;
$type = $this->get_accepted_content_type(); $type = $this->get_accepted_content_type();
if ( !current_user_can('upload_files') ) if ( !current_user_can('upload_files') )
$this->auth_required(__('You do not have permission to upload files.')); $this->auth_required( __( 'You do not have permission to upload files.' ) );
$fp = fopen("php://input", "rb"); $fp = fopen("php://input", "rb");
$bits = null; $bits = null;

View File

@ -3097,7 +3097,7 @@ class wp_xmlrpc_server extends IXR_Server {
do_action('xmlrpc_call', 'blogger.getTemplate'); do_action('xmlrpc_call', 'blogger.getTemplate');
if ( !current_user_can('edit_themes') ) if ( !current_user_can('edit_themes') )
return new IXR_Error(401, __('Sorry, this user can not edit the template.')); return new IXR_Error(401, __('Sorry, this user cannot edit the template.'));
/* warning: here we make the assumption that the blog's URL is on the same server */ /* warning: here we make the assumption that the blog's URL is on the same server */
$filename = get_option('home') . '/'; $filename = get_option('home') . '/';