diff --git a/src/wp-admin/includes/class-wp-automatic-updater.php b/src/wp-admin/includes/class-wp-automatic-updater.php
index c8227c3fc3..3e9bc6d257 100644
a
|
b
|
class WP_Automatic_Updater { |
829 | 829 | } |
830 | 830 | |
831 | 831 | if ( $critical_support ) { |
832 | | $body .= ' ' . __( "If you reach out to us, we'll also ensure you'll never have this problem again." ); |
| 832 | $body .= ' ' . __( "Reach out to WordPress Core developers to ensure you'll never have this problem again." ); |
833 | 833 | } |
834 | 834 | |
835 | 835 | // If things are successful and we're now on the latest, mention plugins and themes if any are out of date. |
diff --git a/src/wp-admin/includes/class-wp-site-health-auto-updates.php b/src/wp-admin/includes/class-wp-site-health-auto-updates.php
index 5393b6f3c9..378c90d389 100644
a
|
b
|
class WP_Site_Health_Auto_Updates { |
166 | 166 | if ( ! empty( $failed['critical'] ) ) { |
167 | 167 | $description = __( 'A previous automatic background update ended with a critical failure, so updates are now disabled.' ); |
168 | 168 | $description .= ' ' . __( 'You would have received an email because of this.' ); |
169 | | $description .= ' ' . __( "When you've been able to update using the \"Update now\" button on Dashboard > Updates, we'll clear this error for future update attempts." ); |
| 169 | $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." ); |
170 | 170 | $description .= ' ' . sprintf( |
171 | 171 | /* translators: %s: Code of error shown. */ |
172 | 172 | __( 'The error code was %s.' ), |
… |
… |
class WP_Site_Health_Auto_Updates { |
183 | 183 | $description .= ' ' . __( 'You would have received an email because of this.' ); |
184 | 184 | } |
185 | 185 | |
186 | | $description .= ' ' . __( "We'll try again with the next release." ); |
| 186 | $description .= ' ' . __( "Another attempt will be made with the next release." ); |
187 | 187 | $description .= ' ' . sprintf( |
188 | 188 | /* translators: %s: Code of error shown. */ |
189 | 189 | __( 'The error code was %s.' ), |
diff --git a/src/wp-admin/includes/update-core.php b/src/wp-admin/includes/update-core.php
index 2ccea37caa..38110d0844 100644
a
|
b
|
function update_core( $from, $to ) { |
1168 | 1168 | if ( $files_not_writable ) { |
1169 | 1169 | return new WP_Error( |
1170 | 1170 | 'files_not_writable', |
1171 | | __( 'The update cannot be installed because we will be unable 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 | ); |
1174 | 1174 | } |
… |
… |
function update_core( $from, $to ) { |
1204 | 1204 | $wp_filesystem->delete( $from, true ); |
1205 | 1205 | $result = new WP_Error( |
1206 | 1206 | 'copy_failed_for_version_file', |
1207 | | __( 'The update cannot be installed because we will be unable 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 | ); |
1210 | 1210 | } |
diff --git a/src/wp-load.php b/src/wp-load.php
index c813cba56e..9e8241fef5 100644
a
|
b
|
if ( file_exists( ABSPATH . 'wp-config.php' ) ) { |
87 | 87 | // Die with an error message. |
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>'; |
93 | 93 | $die .= '<p>' . sprintf( |