Text Changes: Add missing periods to some error messages, for consistency.
Props Presskopp. Fixes #42735. git-svn-id: https://develop.svn.wordpress.org/trunk@47153 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9e8a7292c1
commit
db8a038541
@ -114,7 +114,7 @@ class WP_Community_Events {
|
||||
$response_error = new WP_Error(
|
||||
'api-error',
|
||||
/* translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. */
|
||||
sprintf( __( 'Invalid API response code (%d)' ), $response_code )
|
||||
sprintf( __( 'Invalid API response code (%d).' ), $response_code )
|
||||
);
|
||||
} elseif ( ! isset( $response_body['location'], $response_body['events'] ) ) {
|
||||
$response_error = new WP_Error(
|
||||
|
@ -981,7 +981,7 @@ function media_sideload_image( $file, $post_id = 0, $desc = null, $return = 'htm
|
||||
preg_match( '/[^\?]+\.(jpe?g|jpe|gif|png)\b/i', $file, $matches );
|
||||
|
||||
if ( ! $matches ) {
|
||||
return new WP_Error( 'image_sideload_failed', __( 'Invalid image URL' ) );
|
||||
return new WP_Error( 'image_sideload_failed', __( 'Invalid image URL.' ) );
|
||||
}
|
||||
|
||||
$file_array = array();
|
||||
|
@ -74,7 +74,7 @@ class WP_Metadata_Lazyloader {
|
||||
*/
|
||||
public function queue_objects( $object_type, $object_ids ) {
|
||||
if ( ! isset( $this->settings[ $object_type ] ) ) {
|
||||
return new WP_Error( 'invalid_object_type', __( 'Invalid object type' ) );
|
||||
return new WP_Error( 'invalid_object_type', __( 'Invalid object type.' ) );
|
||||
}
|
||||
|
||||
$type_settings = $this->settings[ $object_type ];
|
||||
@ -114,7 +114,7 @@ class WP_Metadata_Lazyloader {
|
||||
*/
|
||||
public function reset_queue( $object_type ) {
|
||||
if ( ! isset( $this->settings[ $object_type ] ) ) {
|
||||
return new WP_Error( 'invalid_object_type', __( 'Invalid object type' ) );
|
||||
return new WP_Error( 'invalid_object_type', __( 'Invalid object type.' ) );
|
||||
}
|
||||
|
||||
$type_settings = $this->settings[ $object_type ];
|
||||
|
Loading…
Reference in New Issue
Block a user