Changeset 59790
- Timestamp:
- 02/08/2025 03:58:11 PM (10 months ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
-
wp-includes/class-wp-customize-manager.php (modified) (1 diff)
-
wp-includes/class-wp-xmlrpc-server.php (modified) (3 diffs)
-
wp-includes/functions.php (modified) (1 diff)
-
wp-includes/script-loader.php (modified) (2 diffs)
-
wp-mail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r59078 r59790 455 455 456 456 if ( ! $message ) { 457 $message = __( ' Something went wrong.' );457 $message = __( 'An error occurred while customizing. Please refresh the page and try again.' ); 458 458 } 459 459 -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r59754 r59790 4032 4032 4033 4033 if ( ! $comment_id ) { 4034 return new IXR_Error( 403, __( ' Something went wrong.' ) );4034 return new IXR_Error( 403, __( 'An error occurred while processing your comment. Please ensure all fields are filled correctly and try again.' ) ); 4035 4035 } 4036 4036 … … 5052 5052 5053 5053 if ( ! $posts_list ) { 5054 $this->error = new IXR_Error( 500, __( ' Either there are no posts, or something went wrong.' ) );5054 $this->error = new IXR_Error( 500, __( 'No posts found or an error occurred while retrieving posts.' ) ); 5055 5055 return $this->error; 5056 5056 } … … 6585 6585 6586 6586 if ( ! $posts_list ) { 6587 $this->error = new IXR_Error( 500, __( ' Either there are no posts, or something went wrong.' ) );6587 $this->error = new IXR_Error( 500, __( 'No posts found or an error occurred while retrieving posts.' ) ); 6588 6588 return $this->error; 6589 6589 } -
trunk/src/wp-includes/functions.php
r59724 r59790 3673 3673 function wp_nonce_ays( $action ) { 3674 3674 // Default title and response code. 3675 $title = __( ' Something went wrong.' );3675 $title = __( 'An error occurred.' ); 3676 3676 $response_code = 403; 3677 3677 -
trunk/src/wp-includes/script-loader.php
r59770 r59790 811 811 array( 812 812 'noPerm' => __( 'Sorry, you are not allowed to do that.' ), 813 'broken' => __( ' Something went wrong.' ),813 'broken' => __( 'An error occurred while processing your request. Please try again later.' ), 814 814 ) 815 815 ); … … 1293 1293 'action' => __( 'Action' ), 1294 1294 'discardChanges' => __( 'Discard changes' ), 1295 'cheatin' => __( ' Something went wrong.' ),1295 'cheatin' => __( 'An error occurred. Please try again later.' ), 1296 1296 'notAllowedHeading' => __( 'You need a higher level of permission.' ), 1297 1297 'notAllowed' => __( 'Sorry, you are not allowed to customize this site.' ), -
trunk/src/wp-mail.php
r59064 r59790 40 40 41 41 if ( $last_checked ) { 42 wp_die( __( 'Slow down cowboy, no need to check for new mails so often!' ) ); 42 wp_die( 43 sprintf( 44 // translators: %s human readable rate limit. 45 __( 'Email checks are rate limited to once every %s.' ), 46 human_time_diff( time() - WP_MAIL_INTERVAL, time() ) 47 ), 48 __( 'Slow down, no need to check for new mails so often!' ), 49 429 50 ); 43 51 } 44 52
Note: See TracChangeset
for help on using the changeset viewer.