Make WordPress Core

Ticket #22451: 22451.diff

File 22451.diff, 6.3 KB (added by DrewAPicture, 12 years ago)

Dashboard + Settings

  • wp-admin/options-general.php

     
    5858add_action('admin_head', 'options_general_add_js');
    5959
    6060$options_help = '<p>' . __('The fields on this screen determine some of the basics of your site setup.') . '</p>' .
    61         '<p>' . __('Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes.') . '</p>';
     61        '<p>' . __('Most themes display the Site Title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The Tagline is also displayed by many themes.') . '</p>';
    6262
    6363if ( ! is_multisite() ) {
    6464        $options_help .= '<p>' . __('The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory.') . '</p>' .
  • wp-admin/index.php

     
    5050// Help tabs
    5151
    5252$help  = '<p>' . __('The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom.') . '</p>';
    53 $help .= '<p>' . __('Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.') . '</p>';
     53$help .= '<p>' . __('Links in the Toolbar at the top of the screen connect your Dashboard and the front end of your site, and provide access to your profile and helpful WordPress information.') . '</p>';
    5454
    5555$screen->add_help_tab( array(
    5656        'id'      => 'help-navigation',
     
    6161$help  = '<p>' . __('You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well.') . '</p>';
    6262$help .= '<p>' . __('<strong>Screen Options</strong> - Use the Screen Options tab to choose which Dashboard boxes to show, and how many columns to display.') . '</p>';
    6363$help .= '<p>' . __('<strong>Drag and Drop</strong> - To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box.') . '</p>';
    64 $help .= '<p>' . __('<strong>Box Controls</strong> - Click the title bar of the box to expand or collapse it. In addition, some box have configurable content, and will show a &#8220;Configure&#8221; link in the title bar if you hover over it.') . '</p>';
     64$help .= '<p>' . __('<strong>Box Controls</strong> - Click the title bar of the box to expand or collapse it. In addition, some boxes have configurable content, and will show a &#8220;Configure&#8221; link in the title bar if you hover over it.') . '</p>';
    6565
    6666$screen->add_help_tab( array(
    6767        'id'      => 'help-layout',
  • wp-admin/options-media.php

     
    1515$title = __('Media Settings');
    1616$parent_file = 'options-general.php';
    1717
    18 $media_options_help = '<p>' . __('You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size.') . '</p>';
     18$media_options_help = '<p>' . __('On this screen, you can set maximum height and width dimensions for images that will be inserted into your written content; you will still have the option to insert full-sized images.') . '</p>';
    1919
    2020if ( ! is_multisite() ) {
    2121        $media_options_help .= '<p>' . __('Uploading Files allows you to choose the folder and path for storing your uploaded files.') . '</p>';
  • wp-admin/options-permalink.php

     
    1818get_current_screen()->add_help_tab( array(
    1919        'id'      => 'overview',
    2020        'title'   => __('Overview'),
    21         'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.') . '</p>' .
     21        'content' => '<p>' . __('Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the Web address used to link to your content. The URL to each post should be permanent, and never change &#8212; hence the name permalink.') . '</p>' .
    2222                '<p>' . __('This screen allows you to choose your default permalink structure. You can choose from common settings or create custom URL structures.') . '</p>' .
    2323                '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    2424) );
  • wp-admin/options-writing.php

     
    1818get_current_screen()->add_help_tab( array(
    1919        'id'      => 'overview',
    2020        'title'   => __('Overview'),
    21         'content' => '<p>' . __('You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.') . '</p>' .
     21        'content' => '<p>' . __('You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the Dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links.') . '</p>' .
    2222                '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    2323) );
    2424