Language_Pack_Upgrader::upgrade_strings()publicWP 3.7.0

Initializes the upgrade strings.

Method of the class: Language_Pack_Upgrader{}

No Hooks.

Return

null. Nothing (null).

Usage

$Language_Pack_Upgrader = new Language_Pack_Upgrader();
$Language_Pack_Upgrader->upgrade_strings();

Changelog

Since 3.7.0 Introduced.

Language_Pack_Upgrader::upgrade_strings() code WP 6.7.1

public function upgrade_strings() {
	$this->strings['starting_upgrade'] = __( 'Some of your translations need updating. Sit tight for a few more seconds while they are updated as well.' );
	$this->strings['up_to_date']       = __( 'Your translations are all up to date.' );
	$this->strings['no_package']       = __( 'Update package not available.' );
	/* translators: %s: Package URL. */
	$this->strings['downloading_package'] = sprintf( __( 'Downloading translation from %s&#8230;' ), '<span class="code pre">%s</span>' );
	$this->strings['unpack_package']      = __( 'Unpacking the update&#8230;' );
	$this->strings['process_failed']      = __( 'Translation update failed.' );
	$this->strings['process_success']     = __( 'Translation updated successfully.' );
	$this->strings['remove_old']          = __( 'Removing the old version of the translation&#8230;' );
	$this->strings['remove_old_failed']   = __( 'Could not remove the old translation.' );
}