Changeset 41618
- Timestamp:
- 09/27/2017 02:38:40 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/wp-admin/edit-tag-form.php ¶
r41522 r41618 76 76 <?php if ( $wp_http_referer ) { ?> 77 77 <p><a href="<?php echo esc_url( wp_validate_redirect( esc_url_raw( $wp_http_referer ), admin_url( 'term.php?taxonomy=' . $taxonomy ) ) ); ?>"><?php 78 /* translators: %s: taxonomy name */ 79 printf( _x( '← Back to %s', 'admin screen' ), $tax->labels->name ); 78 echo esc_html( $tax->labels->back_to_items ); 80 79 ?></a></p> 81 80 <?php } ?> -
TabularUnified trunk/src/wp-includes/taxonomy.php ¶
r41326 r41618 121 121 'add_or_remove_items' => null, 122 122 'choose_from_most_used' => null, 123 'back_to_items' => __( '← Back to Link Categories' ), 123 124 ), 124 125 'capabilities' => array( … … 453 454 * @since 4.3.0 Added the `no_terms` label. 454 455 * @since 4.4.0 Added the `items_list_navigation` and `items_list` labels. 455 * @since 4.9.0 Added the `most_used` label.456 * @since 4.9.0 Added the `most_used` and `back_to_items` labels. 456 457 * 457 458 * @param WP_Taxonomy $tax Taxonomy object. … … 490 491 * @type string $most_used Title used for the Most Used panel. Not used for non-hierarchical 491 492 * taxonomies. Default 'Most Used'. 493 * @type string $back_to_items Label displayed after a term has been updated. 492 494 * } 493 495 */ … … 522 524 'items_list' => array( __( 'Tags list' ), __( 'Categories list' ) ), 523 525 'most_used' => array( null, __( 'Most Used' ) ), 526 'back_to_items' => array( __( '← Back to Tags' ), __( '← Back to Categories' ) ), 524 527 ); 525 528 $nohier_vs_hier_defaults['menu_name'] = $nohier_vs_hier_defaults['name'];
Note: See TracChangeset
for help on using the changeset viewer.