Changeset 45932 for trunk/src/wp-admin/nav-menus.php
- Timestamp:
- 09/03/2019 12:39:13 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/nav-menus.php
r45926 r45932 429 429 'moveDown' => __( 'Move down one' ), 430 430 'moveToTop' => __( 'Move to the top' ), 431 /* translators: %s: previous item name*/431 /* translators: %s: Previous item name. */ 432 432 'moveUnder' => __( 'Move under %s' ), 433 /* translators: %s: previous item name*/433 /* translators: %s: Previous item name. */ 434 434 'moveOutFrom' => __( 'Move out from under %s' ), 435 /* translators: %s: previous item name*/435 /* translators: %s: Previous item name. */ 436 436 'under' => __( 'Under %s' ), 437 /* translators: %s: previous item name*/437 /* translators: %s: Previous item name. */ 438 438 'outFrom' => __( 'Out from under %s' ), 439 /* translators: 1: item name, 2: item position, 3: total number of items*/439 /* translators: 1: Item name, 2: Item position, 3: Total number of items. */ 440 440 'menuFocus' => __( '%1$s. Menu item %2$d of %3$d.' ), 441 /* translators: 1: item name, 2: item position, 3: parent item name*/441 /* translators: 1: Item name, 2: Item position, 3: Parent item name. */ 442 442 'subMenuFocus' => __( '%1$s. Sub item number %2$d under %3$s.' ), 443 443 ); … … 531 531 if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) { 532 532 $messages[] = '<div id="message" class="updated"><p>' . sprintf( 533 /* translators: URL to Widgets screen */533 /* translators: URL to Widgets screen. */ 534 534 __( 'Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the <a href="%s">Widgets</a> screen.' ), 535 535 admin_url( 'widgets.php' ) … … 540 540 $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; 541 541 $overview .= '<p>' . sprintf( 542 /* translators: 1: Widgets admin screen URL, 2 and 3: The names of the default themes*/542 /* translators: 1: URL to Widgets screen, 2 and 3: The names of the default themes. */ 543 543 __( 'Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the <a href="%1$s">Widgets</a> screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side.' ), 544 544 admin_url( 'widgets.php' ), … … 666 666 } else { 667 667 echo '<p>' . sprintf( 668 /* translators: %s: number of menus*/668 /* translators: %s: Number of menus. */ 669 669 _n( 670 670 'Your theme supports %s menu. Select which menu appears in each location.', … … 773 773 <?php 774 774 printf( 775 /* translators: %s: URL to create a new menu */775 /* translators: %s: URL to create a new menu. */ 776 776 __( 'Edit your menu below, or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), 777 777 esc_url( … … 835 835 <?php 836 836 printf( 837 /* translators: %s: URL to create a new menu */837 /* translators: %s: URL to create a new menu. */ 838 838 __( 'or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), 839 839 esc_url( … … 981 981 <?php 982 982 printf( 983 /* translators: %s: menu name*/983 /* translators: %s: Menu name. */ 984 984 _x( '(Currently set to: %s)', 'menu location' ), 985 985 wp_get_nav_menu_object( $menu_locations[ $location ] )->name
Note: See TracChangeset
for help on using the changeset viewer.