Changeset 38510
- Timestamp:
- 09/02/2016 04:12:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r38509 r38510 5813 5813 $upload = wp_upload_bits($name, null, $bits); 5814 5814 if ( ! empty($upload['error']) ) { 5815 $errorString = sprintf(__('Could not write file %1$s (%2$s).'), $name, $upload['error']); 5816 return new IXR_Error(500, $errorString); 5815 /* translators: 1: file name, 2: error message */ 5816 $errorString = sprintf( __( 'Could not write file %1$s (%2$s).' ), $name, $upload['error'] ); 5817 return new IXR_Error( 500, $errorString ); 5817 5818 } 5818 5819 // Construct the attachment array … … 6384 6385 do_action( 'pingback_post', $comment_ID ); 6385 6386 6386 return sprintf(__('Pingback from %1$s to %2$s registered. Keep the web talking! :-)'), $pagelinkedfrom, $pagelinkedto); 6387 /* translators: 1: URL of the page linked from, 2: URL of the page linked to */ 6388 return sprintf( __( 'Pingback from %1$s to %2$s registered. Keep the web talking! :-)' ), $pagelinkedfrom, $pagelinkedto ); 6387 6389 } 6388 6390
Note: See TracChangeset
for help on using the changeset viewer.