diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index 86f12e1a38..6f33849fd2 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -3456,7 +3456,7 @@ function wp_ajax_install_theme() { /* * See WP_Theme_Install_List_Table::_get_theme_status() if we wanted to check - * on post-install status. + * on post-installation status. */ wp_send_json_success( $status ); } @@ -3701,7 +3701,7 @@ function wp_ajax_install_plugin() { $install_status = install_plugin_install_status( $api ); $pagenow = isset( $_POST['pagenow'] ) ? sanitize_key( $_POST['pagenow'] ) : ''; - // If install request is coming from import page, do not return network activation link. + // If installation request is coming from import page, do not return network activation link. $plugins_url = ( 'import' === $pagenow ) ? admin_url( 'plugins.php' ) : network_admin_url( 'plugins.php' ); if ( current_user_can( 'activate_plugins' ) && is_plugin_inactive( $install_status['file'] ) ) { diff --git a/wp-admin/includes/class-core-upgrader.php b/wp-admin/includes/class-core-upgrader.php index ebfc1d657e..dfd6404616 100644 --- a/wp-admin/includes/class-core-upgrader.php +++ b/wp-admin/includes/class-core-upgrader.php @@ -95,7 +95,7 @@ class Core_Upgrader extends WP_Upgrader { /* * If partial update is returned from the API, use that, unless we're doing - * a reinstall. If we cross the new_bundled version number, then use + * a reinstallation. If we cross the new_bundled version number, then use * the new_bundled zip. Don't though if the constant is set to skip bundled items. * If the API returns a no_content zip, go with it. Finally, default to the full zip. */ diff --git a/wp-admin/includes/class-file-upload-upgrader.php b/wp-admin/includes/class-file-upload-upgrader.php index 4584122a23..a182b62ccd 100644 --- a/wp-admin/includes/class-file-upload-upgrader.php +++ b/wp-admin/includes/class-file-upload-upgrader.php @@ -79,7 +79,7 @@ class File_Upload_Upgrader { // Save the data. $this->id = wp_insert_attachment( $object, $file['file'] ); - // Schedule a cleanup for 2 hours from now in case of failed install. + // Schedule a cleanup for 2 hours from now in case of failed installation. wp_schedule_single_event( time() + 2 * HOUR_IN_SECONDS, 'upgrader_scheduled_cleanup', array( $this->id ) ); } elseif ( is_numeric( $_GET[$urlholder] ) ) { diff --git a/wp-admin/includes/class-language-pack-upgrader.php b/wp-admin/includes/class-language-pack-upgrader.php index e3ae953132..ee98cf79db 100644 --- a/wp-admin/includes/class-language-pack-upgrader.php +++ b/wp-admin/includes/class-language-pack-upgrader.php @@ -28,7 +28,7 @@ class Language_Pack_Upgrader extends WP_Upgrader { public $result; /** - * Whether a bulk upgrade/install is being performed. + * Whether a bulk upgrade/installation is being performed. * * @since 3.7.0 * @var bool $bulk @@ -60,7 +60,7 @@ class Language_Pack_Upgrader extends WP_Upgrader { } /* - * Avoid messing with VCS installs, at least for now. + * Avoid messing with VCS installations, at least for now. * Noted: this is not the ideal way to accomplish this. */ $check_vcs = new WP_Automatic_Updater; diff --git a/wp-admin/includes/class-plugin-upgrader.php b/wp-admin/includes/class-plugin-upgrader.php index f66f202de4..969a5b4ff7 100644 --- a/wp-admin/includes/class-plugin-upgrader.php +++ b/wp-admin/includes/class-plugin-upgrader.php @@ -31,7 +31,7 @@ class Plugin_Upgrader extends WP_Upgrader { public $result; /** - * Whether a bulk upgrade/install is being performed. + * Whether a bulk upgrade/installation is being performed. * * @since 2.9.0 * @var bool $bulk @@ -56,17 +56,17 @@ class Plugin_Upgrader extends WP_Upgrader { } /** - * Initialize the install strings. + * Initialize the installation strings. * * @since 2.8.0 */ public function install_strings() { - $this->strings['no_package'] = __('Install package not available.'); - $this->strings['downloading_package'] = __('Downloading install package from %s…'); + $this->strings['no_package'] = __('Installation package not available.'); + $this->strings['downloading_package'] = __('Downloading installation package from %s…'); $this->strings['unpack_package'] = __('Unpacking the package…'); $this->strings['installing_package'] = __('Installing the plugin…'); $this->strings['no_files'] = __('The plugin contains no files.'); - $this->strings['process_failed'] = __('Plugin install failed.'); + $this->strings['process_failed'] = __('Plugin installation failed.'); $this->strings['process_success'] = __('Plugin installed successfully.'); } @@ -83,7 +83,7 @@ class Plugin_Upgrader extends WP_Upgrader { * @type bool $clear_update_cache Whether to clear the plugin updates cache if successful. * Default true. * } - * @return bool|WP_Error True if the install was successful, false or a WP_Error otherwise. + * @return bool|WP_Error True if the installation was successful, false or a WP_Error otherwise. */ public function install( $package, $args = array() ) { diff --git a/wp-admin/includes/class-theme-upgrader.php b/wp-admin/includes/class-theme-upgrader.php index 11e8f2de9a..6515698052 100644 --- a/wp-admin/includes/class-theme-upgrader.php +++ b/wp-admin/includes/class-theme-upgrader.php @@ -54,17 +54,17 @@ class Theme_Upgrader extends WP_Upgrader { } /** - * Initialize the install strings. + * Initialize the installation strings. * * @since 2.8.0 */ public function install_strings() { - $this->strings['no_package'] = __('Install package not available.'); - $this->strings['downloading_package'] = __('Downloading install package from %s…'); + $this->strings['no_package'] = __('Installation package not available.'); + $this->strings['downloading_package'] = __('Downloading installation package from %s…'); $this->strings['unpack_package'] = __('Unpacking the package…'); $this->strings['installing_package'] = __('Installing the theme…'); $this->strings['no_files'] = __('The theme contains no files.'); - $this->strings['process_failed'] = __('Theme install failed.'); + $this->strings['process_failed'] = __('Theme installation failed.'); $this->strings['process_success'] = __('Theme installed successfully.'); /* translators: 1: theme name, 2: version */ $this->strings['process_success_specific'] = __('Successfully installed the theme %1$s %2$s.'); @@ -110,7 +110,7 @@ class Theme_Upgrader extends WP_Upgrader { if ( ! $api || is_wp_error($api) ) { $this->skin->feedback( 'parent_theme_not_found', $theme_info->get('Template') ); - // Don't show activate or preview actions after install + // Don't show activate or preview actions after installation add_filter('install_theme_complete_actions', array($this, 'hide_activate_preview_actions') ); return $install_result; } @@ -180,7 +180,7 @@ class Theme_Upgrader extends WP_Upgrader { * Default true. * } * - * @return bool|WP_Error True if the install was successful, false or a WP_Error object otherwise. + * @return bool|WP_Error True if the installation was successful, false or a WP_Error object otherwise. */ public function install( $package, $args = array() ) { diff --git a/wp-admin/includes/class-wp-automatic-updater.php b/wp-admin/includes/class-wp-automatic-updater.php index 0e586473d7..fbde7320d0 100644 --- a/wp-admin/includes/class-wp-automatic-updater.php +++ b/wp-admin/includes/class-wp-automatic-updater.php @@ -443,7 +443,7 @@ class WP_Automatic_Updater { wp_update_plugins(); // Check for Plugin updates } - // Send debugging email to all development installs. + // Send debugging email to admin for all development installations. if ( ! empty( $this->update_results ) ) { $development_version = false !== strpos( get_bloginfo( 'version' ), '-' ); diff --git a/wp-admin/includes/class-wp-ms-sites-list-table.php b/wp-admin/includes/class-wp-ms-sites-list-table.php index 14dbd16378..f639b36ecf 100644 --- a/wp-admin/includes/class-wp-ms-sites-list-table.php +++ b/wp-admin/includes/class-wp-ms-sites-list-table.php @@ -551,7 +551,7 @@ class WP_MS_Sites_List_Table extends WP_List_Table { * @param array $actions An array of action links to be displayed. * @param int $blog_id The site ID. * @param string $blogname Site path, formatted depending on whether it is a sub-domain - * or subdirectory multisite install. + * or subdirectory multisite installation. */ $actions = apply_filters( 'manage_sites_action_links', array_filter( $actions ), $blog['blog_id'], $blogname ); return $this->row_actions( $actions ); diff --git a/wp-admin/includes/class-wp-plugin-install-list-table.php b/wp-admin/includes/class-wp-plugin-install-list-table.php index 99dd1c74cf..bf6cf3d71b 100644 --- a/wp-admin/includes/class-wp-plugin-install-list-table.php +++ b/wp-admin/includes/class-wp-plugin-install-list-table.php @@ -559,13 +559,13 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
+ | ' . __( 'Warning!' ) . ' ' . __( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; + echo ' ' . __( 'Warning!' ) . ' ' . __( 'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; ?> | ||
---|---|---|---|
+ | ' . __( 'Warning!' ) . ' ' . __( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; + echo ' ' . __( 'Warning!' ) . ' ' . __( 'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; ?> | ||
- | ' . __( 'The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; + | + | ' . __( 'The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links.' ) . ''; ?> |