Changeset 54200
- Timestamp:
- 09/19/2022 08:57:08 AM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-automatic-updater.php
r54133 r54200 831 831 832 832 if ( $critical_support ) { 833 $body .= ' ' . __( " If you reach out to us, we'll also ensure you'll never have this problem again." );833 $body .= ' ' . __( "Reach out to WordPress Core developers to ensure you'll never have this problem again." ); 834 834 } 835 835 -
trunk/src/wp-admin/includes/class-wp-site-health-auto-updates.php
r54133 r54200 168 168 $description = __( 'A previous automatic background update ended with a critical failure, so updates are now disabled.' ); 169 169 $description .= ' ' . __( 'You would have received an email because of this.' ); 170 $description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, we'll clear this errorfor future update attempts." );170 $description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, this error will be cleared for future update attempts." ); 171 171 $description .= ' ' . sprintf( 172 172 /* translators: %s: Code of error shown. */ … … 185 185 } 186 186 187 $description .= ' ' . __( " We'll try againwith the next release." );187 $description .= ' ' . __( "Another attempt will be made with the next release." ); 188 188 $description .= ' ' . sprintf( 189 189 /* translators: %s: Code of error shown. */ -
trunk/src/wp-admin/includes/update-core.php
r54143 r54200 1169 1169 return new WP_Error( 1170 1170 'files_not_writable', 1171 __( 'The update cannot be installed because we will beunable to copy some files. This is usually due to inconsistent file permissions.' ),1171 __( 'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.' ), 1172 1172 implode( ', ', $error_data ) 1173 1173 ); … … 1205 1205 $result = new WP_Error( 1206 1206 'copy_failed_for_version_file', 1207 __( 'The update cannot be installed because we will beunable to copy some files. This is usually due to inconsistent file permissions.' ),1207 __( 'The update cannot be installed because your site is unable to copy some files. This is usually due to inconsistent file permissions.' ), 1208 1208 'wp-includes/version.php' 1209 1209 ); -
trunk/src/wp-load.php
r53148 r54200 88 88 $die = '<p>' . sprintf( 89 89 /* translators: %s: wp-config.php */ 90 __( "There doesn't seem to be a %s file. I need this before we can get started." ),90 __( "There doesn't seem to be a %s file. It is needed before the installation can continue." ), 91 91 '<code>wp-config.php</code>' 92 92 ) . '</p>';
Note: See TracChangeset
for help on using the changeset viewer.