Changeset 54222 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 09/19/2022 10:13:21 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r54215 r54222 1534 1534 sprintf( 1535 1535 /* translators: %s: The $link_data argument. */ 1536 __( 'The <code>%s</code>argument must be an array.' ),1537 ' $link_data'1536 __( 'The %s argument must be an array.' ), 1537 '<code>$link_data</code>' 1538 1538 ), 1539 1539 '6.1.0' … … 1550 1550 sprintf( 1551 1551 /* translators: %1$s: The argument name. %2$s: The view name. */ 1552 __( 'The <code>%1$s</code> argument must be a non-empty string for <code>%2$s</code>.' ),1553 ' url',1554 esc_html( $view )1552 __( 'The %1$s argument must be a non-empty string for %2$s.' ), 1553 '<code>url</code>', 1554 '<code>' . esc_html( $view ) . '</code>' 1555 1555 ), 1556 1556 '6.1.0' … … 1565 1565 sprintf( 1566 1566 /* translators: %1$s: The argument name. %2$s: The view name. */ 1567 __( 'The <code>%1$s</code> argument must be a non-empty string for <code>%2$s</code>.' ),1568 ' label',1569 esc_html( $view )1567 __( 'The %1$s argument must be a non-empty string for %2$s.' ), 1568 '<code>label</code>', 1569 '<code>' . esc_html( $view ) . '</code>' 1570 1570 ), 1571 1571 '6.1.0'
Note: See TracChangeset
for help on using the changeset viewer.