Changeset 45932 for trunk/src/wp-includes/class-wp-xmlrpc-server.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r45906 r45932 6316 6316 401, 6317 6317 sprintf( 6318 /* translators: %s: allowed space allocation*/6318 /* translators: %s: Allowed space allocation. */ 6319 6319 __( 'Sorry, you have used your space allocation of %s. Please delete some files to upload more files.' ), 6320 6320 size_format( get_space_allowed() * MB_IN_BYTES ) … … 6341 6341 $upload = wp_upload_bits( $name, null, $bits ); 6342 6342 if ( ! empty( $upload['error'] ) ) { 6343 /* translators: 1: file name, 2: error message*/6343 /* translators: 1: File name, 2: Error message. */ 6344 6344 $errorString = sprintf( __( 'Could not write file %1$s (%2$s).' ), $name, $upload['error'] ); 6345 6345 return new IXR_Error( 500, $errorString ); … … 6973 6973 do_action( 'pingback_post', $comment_ID ); 6974 6974 6975 /* translators: 1: URL of the page linked from, 2: URL of the page linked to */6975 /* translators: 1: URL of the page linked from, 2: URL of the page linked to. */ 6976 6976 return sprintf( __( 'Pingback from %1$s to %2$s registered. Keep the web talking! :-)' ), $pagelinkedfrom, $pagelinkedto ); 6977 6977 }
Note: See TracChangeset
for help on using the changeset viewer.