Make WordPress Core

Ticket #26285: 26285.diff

File 26285.diff, 3.8 KB (added by Hanni, 11 years ago)
  • 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>' . __('Aside from the default themes bundled with your WordPress installation, themes are designed and developed by third parties.') . '</p>' .
     41        '<p>' . __('The active theme appears first, at the top left of the screen. Next, are the other themes you have installed which are not currently in use. You can see what your site would look like with one of these themes by hovering over it and clicking the Live Preview button (see "Previewing and Customizing" help tab). To change themes, click the Activate button.') . '</p>';
    4242
    4343get_current_screen()->add_help_tab( array(
    4444        'id'      => 'overview',
     
    5050        if ( is_multisite() ) {
    5151                $help_install = '<p>' . __('Installing themes on Multisite can only be done from the Network Admin section.') . '</p>';
    5252        } else {
    53                 $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Install Themes&#8221; tab and you will be able to browse or search for additional themes from the <a href="%s" target="_blank">WordPress.org Theme Directory</a>. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!'), 'http://wordpress.org/themes/' ) . '</p>';
     53                $help_install = '<p>' . sprintf( __('If you would like to see more themes to choose from, click on the &#8220;Add New&#8221; button and you will be able to browse or search for additional themes from the <a href="%s" target="_blank">WordPress.org Theme Directory</a>. Themes in the WordPress.org Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they&#8217;re free!'), 'http://wordpress.org/themes/' ) . '</p>';
    5454        }
    5555
    5656        get_current_screen()->add_help_tab( array(
     
    6464
    6565if ( current_user_can( 'edit_theme_options' ) ) {
    6666        $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>'.
     67                '<p>' . __('Click on the "Live Preview" button 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>'.
    6868                '<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>' .
    6969                '<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>' .
    7070                '<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>';