Core_Upgrader::upgrade_strings() WordPress Method
The Core_Upgrader::upgrade_strings() method is used to upgrade the WordPress core. This is a necessary process when a new version of WordPress is released. The method takes an array of parameters and returns an array of results.
Core_Upgrader::upgrade_strings() #
Initialize the upgrade strings.
Source
File: wp-admin/includes/class-core-upgrader.php
	public function upgrade_strings() {
		$this->strings['up_to_date'] = __( 'WordPress is at the latest version.' );
		$this->strings['locked']     = __( 'Another update is currently in progress.' );
		$this->strings['no_package'] = __( 'Update package not available.' );
		/* translators: %s: Package URL. */
		$this->strings['downloading_package']   = sprintf( __( 'Downloading update from %s…' ), '<span class="code">%s</span>' );
		$this->strings['unpack_package']        = __( 'Unpacking the update…' );
		$this->strings['copy_failed']           = __( 'Could not copy files.' );
		$this->strings['copy_failed_space']     = __( 'Could not copy files. You may have run out of disk space.' );
		$this->strings['start_rollback']        = __( 'Attempting to roll back to previous version.' );
		$this->strings['rollback_was_required'] = __( 'Due to an error during updating, WordPress has rolled back to your previous version.' );
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 2.8.0 | Introduced. |