Theme_Upgrader::upgrade_strings
Initializes the upgrade strings.
Метод класса: Theme_Upgrader{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Theme_Upgrader = new Theme_Upgrader(); $Theme_Upgrader->upgrade_strings();
Список изменений
| С версии 2.8.0 | Введена. |
Код Theme_Upgrader::upgrade_strings() Theme Upgrader::upgrade strings WP 6.9.4
public function upgrade_strings() {
$this->strings['up_to_date'] = __( 'The theme is at the latest version.' );
$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['remove_old'] = __( 'Removing the old version of the theme…' );
$this->strings['remove_old_failed'] = __( 'Could not remove the old theme.' );
$this->strings['process_failed'] = __( 'Theme update failed.' );
$this->strings['process_success'] = __( 'Theme updated successfully.' );
}