Core_Upgrader::upgrade_strings()
Initializes the upgrade strings.
Method of the class: Core_Upgrader{}
No Hooks.
Return
null
. Nothing (null).
Usage
$Core_Upgrader = new Core_Upgrader(); $Core_Upgrader->upgrade_strings();
Changelog
Since 2.8.0 | Introduced. |
Core_Upgrader::upgrade_strings() Core Upgrader::upgrade strings code WP 6.6.2
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 pre">%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 restore the previous version.' ); $this->strings['rollback_was_required'] = __( 'Due to an error during updating, WordPress has been restored to your previous version.' ); }