I18n: Add missing translator comments in `wp-admin/includes/class-wp-plugins-list-table.php`.
Fixes #45898. Built from https://develop.svn.wordpress.org/trunk@44541 git-svn-id: http://core.svn.wordpress.org/trunk@44372 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ca36ed433b
commit
f251342de7
|
@ -348,6 +348,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
if ( ! empty( $_REQUEST['s'] ) ) {
|
||||
$s = esc_html( wp_unslash( $_REQUEST['s'] ) );
|
||||
|
||||
/* translators: %s: plugin search term */
|
||||
printf( __( 'No plugins found for “%s”.' ), $s );
|
||||
|
||||
// We assume that somebody who can install plugins in multisite is experienced enough to not need this helper link.
|
||||
|
@ -428,21 +429,27 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
|
||||
switch ( $type ) {
|
||||
case 'all':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _nx( 'All <span class="count">(%s)</span>', 'All <span class="count">(%s)</span>', $count, 'plugins' );
|
||||
break;
|
||||
case 'active':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Active <span class="count">(%s)</span>', 'Active <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'recently_activated':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Recently Active <span class="count">(%s)</span>', 'Recently Active <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'inactive':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Inactive <span class="count">(%s)</span>', 'Inactive <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'mustuse':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Must-Use <span class="count">(%s)</span>', 'Must-Use <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'dropins':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Drop-ins <span class="count">(%s)</span>', 'Drop-ins <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'paused':
|
||||
|
@ -450,6 +457,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
$text = _n( 'Paused <span class="count">(%s)</span>', 'Paused <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
case 'upgrade':
|
||||
/* translators: %s: plugin count */
|
||||
$text = _n( 'Update Available <span class="count">(%s)</span>', 'Update Available <span class="count">(%s)</span>', $count );
|
||||
break;
|
||||
}
|
||||
|
@ -526,14 +534,14 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
if ( 'recently_activated' == $status ) {
|
||||
submit_button( __( 'Clear List' ), '', 'clear-recent-list', false );
|
||||
} elseif ( 'top' === $which && 'mustuse' === $status ) {
|
||||
/* translators: %s: mu-plugins directory name */
|
||||
echo '<p>' . sprintf(
|
||||
/* translators: %s: mu-plugins directory name */
|
||||
__( 'Files in the %s directory are executed automatically.' ),
|
||||
'<code>' . str_replace( ABSPATH, '/', WPMU_PLUGIN_DIR ) . '</code>'
|
||||
) . '</p>';
|
||||
} elseif ( 'top' === $which && 'dropins' === $status ) {
|
||||
/* translators: %s: wp-content directory name */
|
||||
echo '<p>' . sprintf(
|
||||
/* translators: %s: wp-content directory name */
|
||||
__( 'Drop-ins are advanced plugins in the %s directory that replace WordPress functionality when present.' ),
|
||||
'<code>' . str_replace( ABSPATH, '', WP_CONTENT_DIR ) . '</code>'
|
||||
) . '</p>';
|
||||
|
@ -611,8 +619,8 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
} else {
|
||||
$is_active = false;
|
||||
$description = '<p><strong>' . $dropins[ $plugin_file ][0] . ' <span class="error-message">' . __( 'Inactive:' ) . '</span></strong> ' .
|
||||
/* translators: 1: drop-in constant name, 2: wp-config.php */
|
||||
sprintf(
|
||||
/* translators: 1: drop-in constant name, 2: wp-config.php */
|
||||
__( 'Requires %1$s in %2$s file.' ),
|
||||
"<code>define('" . $dropins[ $plugin_file ][1] . "', true);</code>",
|
||||
'<code>wp-config.php</code>'
|
||||
|
@ -770,6 +778,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
if ( $restrict_network_active || $restrict_network_only || in_array( $status, array( 'mustuse', 'dropins' ) ) ) {
|
||||
$checkbox = '';
|
||||
} else {
|
||||
/* translators: %s: plugin name */
|
||||
$checkbox = "<label class='screen-reader-text' for='" . $checkbox_id . "' >" . sprintf( __( 'Select %s' ), $plugin_data['Name'] ) . '</label>'
|
||||
. "<input type='checkbox' name='checked[]' value='" . esc_attr( $plugin_file ) . "' id='" . $checkbox_id . "' />";
|
||||
}
|
||||
|
@ -822,6 +831,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
|
||||
$plugin_meta = array();
|
||||
if ( ! empty( $plugin_data['Version'] ) ) {
|
||||
/* translators: %s: plugin version number */
|
||||
$plugin_meta[] = sprintf( __( 'Version %s' ), $plugin_data['Version'] );
|
||||
}
|
||||
if ( ! empty( $plugin_data['Author'] ) ) {
|
||||
|
@ -829,6 +839,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
if ( ! empty( $plugin_data['AuthorURI'] ) ) {
|
||||
$author = '<a href="' . $plugin_data['AuthorURI'] . '">' . $plugin_data['Author'] . '</a>';
|
||||
}
|
||||
/* translators: %s: plugin version number */
|
||||
$plugin_meta[] = sprintf( __( 'By %s' ), $author );
|
||||
}
|
||||
|
||||
|
@ -842,6 +853,7 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
|||
'&TB_iframe=true&width=600&height=550'
|
||||
)
|
||||
),
|
||||
/* translators: %s: plugin name */
|
||||
esc_attr( sprintf( __( 'More information about %s' ), $plugin_name ) ),
|
||||
esc_attr( $plugin_name ),
|
||||
__( 'View details' )
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.1-alpha-44540';
|
||||
$wp_version = '5.1-alpha-44541';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue