Changeset 45932 for trunk/src/wp-includes/nav-menu.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/nav-menu.php
r45926 r45932 329 329 'menu_exists', 330 330 sprintf( 331 /* translators: %s: menu name*/331 /* translators: %s: Menu name. */ 332 332 __( 'The menu name %s conflicts with another menu name. Please try another.' ), 333 333 '<strong>' . esc_html( $menu_data['menu-name'] ) . '</strong>' … … 344 344 'menu_exists', 345 345 sprintf( 346 /* translators: %s: menu name*/346 /* translators: %s: Menu name. */ 347 347 __( 'The menu name %s conflicts with another menu name. Please try another.' ), 348 348 '<strong>' . esc_html( $menu_data['menu-name'] ) . '</strong>' … … 833 833 834 834 if ( '' === $original_title ) { 835 /* translators: %d: ID of a post */835 /* translators: %d: ID of a post. */ 836 836 $original_title = sprintf( __( '#%d (no title)' ), $menu_item->object_id ); 837 837 } … … 875 875 876 876 if ( '' === $original_title ) { 877 /* translators: %d: ID of a term */877 /* translators: %d: ID of a term. */ 878 878 $original_title = sprintf( __( '#%d (no title)' ), $menu_item->object_id ); 879 879 } … … 922 922 923 923 if ( '' === $menu_item->post_title ) { 924 /* translators: %d: ID of a post */924 /* translators: %d: ID of a post. */ 925 925 $menu_item->post_title = sprintf( __( '#%d (no title)' ), $menu_item->ID ); 926 926 }
Note: See TracChangeset
for help on using the changeset viewer.