diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php
index dafcda9..ed84513 100644
a
|
b
|
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
742 | 742 | <span class="add-edit-menu-action"> |
743 | 743 | <?php |
744 | 744 | printf( |
745 | | __( 'Edit your menu below, or <a href="%s">create a new menu</a>.' ), esc_url( |
| 745 | __( 'Edit your menu below, or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), esc_url( |
746 | 746 | add_query_arg( |
747 | 747 | array( |
748 | 748 | 'action' => 'edit', |
… |
… |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
752 | 752 | ) |
753 | 753 | ); |
754 | 754 | ?> |
| 755 | <span class="screen-reader-text"><?php _e( 'Activate "Save menu" button to save your changes.' ); ?></span> |
755 | 756 | </span><!-- /add-edit-menu-action --> |
756 | 757 | <?php else : ?> |
757 | 758 | <form method="get" action="<?php echo admin_url( 'nav-menus.php' ); ?>"> |
… |
… |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
800 | 801 | <span class="add-new-menu-action"> |
801 | 802 | <?php |
802 | 803 | printf( |
803 | | __( 'or <a href="%s">create a new menu</a>.' ), esc_url( |
| 804 | __( 'or <a href="%s">create a new menu</a>. Don’t forget to save your changes!' ), esc_url( |
804 | 805 | add_query_arg( |
805 | 806 | array( |
806 | 807 | 'action' => 'edit', |
… |
… |
require_once( ABSPATH . 'wp-admin/admin-header.php' ); |
810 | 811 | ) |
811 | 812 | ); |
812 | 813 | ?> |
| 814 | <span class="screen-reader-text"><?php _e( 'Activate "Save menu" button to save your changes.' ); ?></span> |
813 | 815 | </span><!-- /add-new-menu-action --> |
814 | 816 | </form> |
815 | 817 | <?php |
… |
… |
if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { |
830 | 832 | <input type="hidden" name="menu" id="nav-menu-meta-object-id" value="<?php echo esc_attr( $nav_menu_selected_id ); ?>" /> |
831 | 833 | <input type="hidden" name="action" value="add-menu-item" /> |
832 | 834 | <?php wp_nonce_field( 'add-menu_item', 'menu-settings-column-nonce' ); ?> |
| 835 | <h2><?php _e( 'Add menu items' ); ?></h2> |
833 | 836 | <?php do_accordion_sections( 'nav-menus', 'side', null ); ?> |
834 | 837 | </form> |
835 | 838 | |
… |
… |
if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { |
843 | 846 | $new_screen_class = 'blank-slate'; |
844 | 847 | } |
845 | 848 | ?> |
| 849 | <h2><?php _e( 'Menu structure' ); ?></h2> |
846 | 850 | <div class="menu-edit <?php echo $new_screen_class; ?>"> |
847 | 851 | <input type="hidden" name="nav-menu-data"> |
848 | 852 | <?php |
… |
… |
if ( isset( $_GET['menu'] ) && '0' == $_GET['menu'] ) { |
875 | 879 | <div id="post-body"> |
876 | 880 | <div id="post-body-content" class="wp-clearfix"> |
877 | 881 | <?php if ( ! $add_new_screen ) : ?> |
878 | | <h3><?php _e( 'Menu Structure' ); ?></h3> |
879 | 882 | <?php |
880 | 883 | $hide_style = ''; |
881 | 884 | if ( isset( $menu_items ) && 0 == count( $menu_items ) ) { |