Make WordPress Core

Ticket #26285: 26285.2.diff

File 26285.2.diff, 3.6 KB (added by designsimply, 11 years ago)
  • wp-admin/themes.php

     
    3737
    3838if ( current_user_can( 'switch_themes' ) ) :
    3939
    40 $help_manage = '<p>' . __('Aside from the default theme included with your WordPress installation, themes are designed and developed by third parties.') . '</p>' .
    41         '<p>' . __('You can see your active theme at the top of the screen. Below are the other themes you have installed that are not currently in use. You can see what your site would look like with one of these themes by clicking the Live Preview link (see "Previewing and Customizing" help tab). To change themes, click the Activate link.') . '</p>';
     40$help_manage  = '<p>' . __( 'This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties.') . '</p>' .
     41        '<p>' . __( 'From this screen you can:' ) . '</p>' .
     42        '<ul><li>' . __( 'Hover or tap to see Activate and Preview buttons' ) . '</li>' .
     43        '<ul><li>' . __( 'Click on the theme to see the theme name, version, author, description, tags, and the Delete link' ) . '</li>' .
     44        '<ul><li>' . __( 'Click Customize for the current theme or Preview for any other theme to see a live preview' ) . '</li></ul>' .
     45        '<p>' . __( 'The current theme is the first listed.' ) . '</p>';
    4246
    4347get_current_screen()->add_help_tab( array(
    4448        'id'      => 'overview',
     
    6468
    6569if ( current_user_can( 'edit_theme_options' ) ) {
    6670        $help_customize =
    67                 '<p>' . __('Click on the "Live Preview" link under any theme to preview that theme and change theme options in a separate, full-screen view. Any installed theme can be previewed and customized in this way.') . '</p>'.
    68                 '<p>' . __('The theme being previewed is fully interactive &mdash; navigate to different pages to see how the theme handles posts, archives, and other page templates.') . '</p>' .
    69                 '<p>' . __('In the left-hand pane you can edit the theme settings. The settings will differ, depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the "Save &amp; Activate" button at the top of the left-hand pane.') . '</p>' .
    70                 '<p>' . __('When previewing on smaller monitors, you can use the "Collapse" icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the Collapse icon again.') . '</p>';
     71                '<p>' . __( 'Tap or hover on any theme then click the preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way.' ) . '</p>'.
     72                '<p>' . __( 'The theme being previewed is fully interactive &mdash; navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Save &amp; Activate button above the menu.' ) . '</p>' .
     73                '<p>' . __( 'When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again.' ) . '</p>';
    7174
    7275        get_current_screen()->add_help_tab( array(
    7376                'id'            => 'customize-preview-themes',