Make WordPress Core

Changeset 19538


Ignore:
Timestamp:
12/02/2011 04:31:01 AM (13 years ago)
Author:
nacin
Message:

Standardize some final help strings. We're done, aside from typos. props zeo, jane, duck_, fixes #19020.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/custom-background.php

    r19515 r19538  
    8787                '<p>' . __( 'You can customize the look of your site without touching any of your theme&#8217;s code by using a custom background. Your background can be an image or a color.' ) . '</p>' .
    8888                '<p>' . __( 'To use a background image, simply upload it, then choose your display options below. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site.' ) . '</p>' .
    89                 '<p>' . __( 'You can also choose a background color. If you know the hexadecimal code for the color you want, enter it in the Color field. If not, click on the Select a Color link, and a color picker will allow you to choose the exact shade you want.' ) . '</p>' .
     89                '<p>' . __( 'You can also choose a background color. If you know the hexadecimal code for the color you want, enter it in the Background Color field. If not, click on the Select a Color link, and a color picker will allow you to choose the exact shade you want.' ) . '</p>' .
    9090                '<p>' . __( 'Don&#8217;t forget to click on the Save Changes button when you are finished.' ) . '</p>'
    9191        ) );
  • trunk/wp-admin/index.php

    r19512 r19538  
    2929
    3030
    31 $help = '<p>' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the top bar.' ) . '</p>';
     31$help = '<p>' . __( 'Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab in the upper corner.' ) . '</p>';
    3232
    3333get_current_screen()->add_help_tab( array(
  • trunk/wp-admin/options-general.php

    r19507 r19538  
    6868
    6969$options_help .= '<p>' . __('UTC means Coordinated Universal Time.') . '</p>' .
    70     '<p>' . __('Remember to click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>';
     70    '<p>' . __( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.' ) . '</p>';
    7171
    7272get_current_screen()->add_help_tab( array(
  • trunk/wp-admin/options-permalink.php

    r19530 r19538  
    2121    '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>' .
    23         '<p>' . __('When making changes, you must click the Save Changes button at the bottom of the screen for the new settings to take effect.') . '</p>',
     23        '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>',
    2424) );
    2525
  • trunk/wp-content/themes/twentyeleven/inc/theme-options.php

    r19502 r19538  
    4949
    5050    // Register our settings field group
    51     add_settings_section( 
     51    add_settings_section(
    5252        'general', // Unique identifier for the settings section
    5353        '', // Section title (we don't want one)
    54         '__return_false', // Section callback (we don't want anything) 
     54        '__return_false', // Section callback (we don't want anything)
    5555        'theme_options' // Menu slug, used to uniquely identify the page; see twentyeleven_theme_options_add_page()
    5656    );
    5757
    5858    // Register our individual settings fields
    59     add_settings_field( 
     59    add_settings_field(
    6060        'color_scheme',  // Unique identifier for the field for this section
    6161        __( 'Color Scheme', 'twentyeleven' ), // Setting field label
     
    6565    );
    6666
    67     add_settings_field( 'link_color', __( 'Link Color', 'twentyeleven' ), 'twentyeleven_settings_field_link_color', 'theme_options', 'general' );
    68     add_settings_field( 'layout',     __( 'Layout',    'twentyeleven' ), 'twentyeleven_settings_field_layout',     'theme_options', 'general' );
     67    add_settings_field( 'link_color', __( 'Link Color',     'twentyeleven' ), 'twentyeleven_settings_field_link_color', 'theme_options', 'general' );
     68    add_settings_field( 'layout',     __( 'Default Layout', 'twentyeleven' ), 'twentyeleven_settings_field_layout',     'theme_options', 'general' );
    6969}
    7070add_action( 'admin_init', 'twentyeleven_theme_options_init' );
     
    119119        'title' => __( 'Overview', 'twentyeleven' ),
    120120        'id' => 'theme-options-help',
    121         'content' => 
     121        'content' =>
    122122            '<p>' . __( 'Some themes provide customization options that are grouped together on a Theme Options screen. If you change themes, options may change or disappear, as they are theme-specific. Your current theme, Twenty Eleven, provides the following Theme Options:', 'twentyeleven' ) . '</p>' .
    123123            '<ol>' .
     
    238238/**
    239239 * Renders the Color Scheme setting field.
    240  * 
     240 *
    241241 * @since Twenty Eleven 1.3
    242242 */
     
    262262/**
    263263 * Renders the Link Color setting field.
    264  * 
     264 *
    265265 * @since Twenty Eleven 1.3
    266266 */
     
    279279/**
    280280 * Renders the Layout setting field.
    281  * 
     281 *
    282282 * @since Twenty Eleven 1.3
    283283 */
Note: See TracChangeset for help on using the changeset viewer.