diff --git a/src/wp-admin/includes/class-wp-theme-install-list-table.php b/src/wp-admin/includes/class-wp-theme-install-list-table.php
index d02d56b5b8..02ab9c226b 100644
a
|
b
|
class WP_Theme_Install_List_Table extends WP_Themes_List_Table { |
230 | 230 | * @param object $theme { |
231 | 231 | * An object that contains theme data returned by the WordPress.org API. |
232 | 232 | * |
233 | | * @type string $name Theme name, e.g. 'Twenty Seventeen'. |
234 | | * @type string $slug Theme slug, e.g. 'twentyseventeen'. |
| 233 | * @type string $name Theme name, e.g. 'Twenty Nineteen'. |
| 234 | * @type string $slug Theme slug, e.g. 'twentynineteen'. |
235 | 235 | * @type string $version Theme version, e.g. '1.1'. |
236 | 236 | * @type string $author Theme author username, e.g. 'melchoyce'. |
237 | | * @type string $preview_url Preview URL, e.g. 'http://2017.wordpress.net/'. |
238 | | * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentyseventeen/'. |
| 237 | * @type string $preview_url Preview URL, e.g. 'http://2019.wordpress.net/'. |
| 238 | * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentynineteen/'. |
239 | 239 | * @type float $rating Rating score. |
240 | 240 | * @type int $num_ratings The number of ratings. |
241 | | * @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentyseventeen/'. |
| 241 | * @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentynineteen/'. |
242 | 242 | * @type string $description Theme description. |
243 | 243 | * @type string $download_link Theme ZIP download URL. |
244 | 244 | * } |
diff --git a/src/wp-admin/nav-menus.php b/src/wp-admin/nav-menus.php
index 185d54b1b7..1bc1c2e530 100644
a
|
b
|
if ( ! current_theme_supports( 'menus' ) && ! $num_locations ) |
519 | 519 | if ( ! $locations_screen ) : // Main tab |
520 | 520 | $overview = '<p>' . __( 'This screen is used for managing your navigation menus.' ) . '</p>'; |
521 | 521 | /* translators: 1: Widgets admin screen URL, 2 and 3: The name of the default themes */ |
522 | | $overview .= '<p>' . sprintf( __( '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.' ), admin_url( 'widgets.php' ), 'Twenty Sixteen', 'Twenty Seventeen' ) . '</p>'; |
| 522 | $overview .= '<p>' . sprintf( __( '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.' ), admin_url( 'widgets.php' ), 'Twenty Seventeen', 'Twenty Nineteen' ) . '</p>'; |
523 | 523 | $overview .= '<p>' . __( 'From this screen you can:' ) . '</p>'; |
524 | 524 | $overview .= '<ul><li>' . __( 'Create, edit, and delete menus' ) . '</li>'; |
525 | 525 | $overview .= '<li>' . __( 'Add, organize, and modify individual menu items' ) . '</li></ul>'; |