Bulk_Plugin_Upgrader_Skin::add_strings() WordPress Method

The Bulk_Plugin_Upgrader_Skin::add_strings() method is used to add various strings to the Bulk Plugin Upgrader Skin. These strings include the 'Upgrade Completed' string, the 'All Plugins' string, the 'Selected Plugins' string, and the 'No Plugins Selected' string.

Bulk_Plugin_Upgrader_Skin::add_strings() #


Source

File: wp-admin/includes/class-bulk-plugin-upgrader-skin.php

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

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.