diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php index 8878a723bd..1b23358c3c 100644 --- a/src/wp-admin/nav-menus.php +++ b/src/wp-admin/nav-menus.php @@ -562,7 +562,11 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' ); ?> ' . sprintf( _n( 'Your theme supports %s menu. Select which menu you would like to use.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n( $num_locations ) ) . '
'; + if ( 1 == $num_locations ) { + echo '' . __( 'Your theme supports one menu. Select which menu you would like to use.' ) . '
'; + } else { + echo '' . sprintf( _n( 'Your theme supports %s menu. Select which menu appears in each location.', 'Your theme supports %s menus. Select which menu appears in each location.', $num_locations ), number_format_i18n( $num_locations ) ) . '
'; + } ?>