Make WordPress Core

Changeset 53132


Ignore:
Timestamp:
04/11/2022 11:48:58 AM (4 years ago)
Author:
audrasjb
Message:

Administration: Replace "can not" with "cannot" after [53131].

Follow-up to [53131], [52979].

See #46057, #38913

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-core-upgrader.php

    r53131 r53132  
    158158                        $wp_filesystem->delete( $working_dir, true );
    159159                        WP_Upgrader::release_lock( 'core_updater' );
    160                         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' );
     160                        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' );
    161161                }
    162162                $wp_filesystem->chmod( $wp_dir . 'wp-admin/includes/update-core.php', FS_CHMOD_FILE );
  • trunk/src/wp-admin/includes/class-wp-upgrader.php

    r53131 r53132  
    163163                $this->strings['mkdir_failed']         = __( 'Could not create directory.' );
    164164                $this->strings['incompatible_archive'] = __( 'The package could not be installed.' );
    165                 $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.' );
     165                $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.' );
    166166
    167167                $this->strings['maintenance_start'] = __( 'Enabling Maintenance mode…' );
  • trunk/src/wp-admin/includes/update-core.php

    r53131 r53132  
    995995                return new WP_Error(
    996996                        'copy_failed_for_version_file',
    997                         __( 'The update can not be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ),
     997                        __( 'The update cannot be installed because some files could not be copied. This is usually due to inconsistent file permissions.' ),
    998998                        'wp-includes/version.php'
    999999                );
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r53131 r53132  
    69646964                $title = isset( $matchtitle[1] ) ? $matchtitle[1] : '';
    69656965                if ( empty( $title ) ) {
    6966                         return $this->pingback_error( 32, __( 'A title on that page can not be found.' ) );
     6966                        return $this->pingback_error( 32, __( 'A title on that page cannot be found.' ) );
    69676967                }
    69686968
Note: See TracChangeset for help on using the changeset viewer.