mirror of
git://develop.git.wordpress.org/
synced 2025-01-18 05:18:42 +01:00
Administration: Replace "can not" with "cannot" after [53131].
Follow-up to [53131], [52979]. See #46057, #38913 git-svn-id: https://develop.svn.wordpress.org/trunk@53132 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
60e372dd2e
commit
e592e3303a
@ -157,7 +157,7 @@ class Core_Upgrader extends WP_Upgrader {
|
||||
if ( ! $wp_filesystem->copy( $working_dir . '/wordpress/wp-admin/includes/update-core.php', $wp_dir . 'wp-admin/includes/update-core.php', true ) ) {
|
||||
$wp_filesystem->delete( $working_dir, true );
|
||||
WP_Upgrader::release_lock( 'core_updater' );
|
||||
return new WP_Error( 'copy_failed_for_update_core_file', __( 'The update can not be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ), 'wp-admin/includes/update-core.php' );
|
||||
return new WP_Error( 'copy_failed_for_update_core_file', __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ), 'wp-admin/includes/update-core.php' );
|
||||
}
|
||||
$wp_filesystem->chmod( $wp_dir . 'wp-admin/includes/update-core.php', FS_CHMOD_FILE );
|
||||
|
||||
|
@ -162,7 +162,7 @@ class WP_Upgrader {
|
||||
$this->strings['folder_exists'] = __( 'Destination folder already exists.' );
|
||||
$this->strings['mkdir_failed'] = __( 'Could not create directory.' );
|
||||
$this->strings['incompatible_archive'] = __( 'The package could not be installed.' );
|
||||
$this->strings['files_not_writable'] = __( 'The update can not be installed because some files could not be copied. This is usually due to inconsistent file permissions.' );
|
||||
$this->strings['files_not_writable'] = __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' );
|
||||
|
||||
$this->strings['maintenance_start'] = __( 'Enabling Maintenance mode…' );
|
||||
$this->strings['maintenance_end'] = __( 'Disabling Maintenance mode…' );
|
||||
|
@ -994,7 +994,7 @@ function update_core( $from, $to ) {
|
||||
|
||||
return new WP_Error(
|
||||
'copy_failed_for_version_file',
|
||||
__( 'The update can not be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ),
|
||||
__( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ),
|
||||
'wp-includes/version.php'
|
||||
);
|
||||
}
|
||||
|
@ -6963,7 +6963,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||
preg_match( '|<title>([^<]*?)</title>|is', $remote_source, $matchtitle );
|
||||
$title = isset( $matchtitle[1] ) ? $matchtitle[1] : '';
|
||||
if ( empty( $title ) ) {
|
||||
return $this->pingback_error( 32, __( 'A title on that page can not be found.' ) );
|
||||
return $this->pingback_error( 32, __( 'A title on that page cannot be found.' ) );
|
||||
}
|
||||
|
||||
// Remove all script and style tags including their content.
|
||||
|
Loading…
x
Reference in New Issue
Block a user