Bulk_Theme_Upgrader_Skin::add_strings() –

You appear to be a bot. Output may be restricted

Description

Theme info.

The Theme_Upgrader::bulk_upgrade() method will fill this in with info retrieved from the Theme_Upgrader::theme_info() method, which in turn calls the wp_get_theme() function.

Usage

Bulk_Theme_Upgrader_Skin::add_strings();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/class-bulk-theme-upgrader-skin.php
Lines:

1 to 5 of 5
  public function add_strings() {
    parent::add_strings();
    /* translators: 1: Theme name, 2: Number of the theme, 3: Total number of themes being updated. */
    $this->upgrader->strings['skin_before_update_header'] = __( 'Updating Theme %1$s (%2$d/%3$d)' );
  }
 

 View on GitHub View on Trac