Changeset 19538
- Timestamp:
- 12/02/2011 04:31:01 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/custom-background.php
r19515 r19538 87 87 '<p>' . __( 'You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color.' ) . '</p>' . 88 88 '<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>' . 90 90 '<p>' . __( 'Don’t forget to click on the Save Changes button when you are finished.' ) . '</p>' 91 91 ) ); -
trunk/wp-admin/index.php
r19512 r19538 29 29 30 30 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>'; 32 32 33 33 get_current_screen()->add_help_tab( array( -
trunk/wp-admin/options-general.php
r19507 r19538 68 68 69 69 $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>'; 71 71 72 72 get_current_screen()->add_help_tab( array( -
trunk/wp-admin/options-permalink.php
r19530 r19538 21 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 — hence the name permalink.') . '</p>' . 22 22 '<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 thenew 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>', 24 24 ) ); 25 25 -
trunk/wp-content/themes/twentyeleven/inc/theme-options.php
r19502 r19538 49 49 50 50 // Register our settings field group 51 add_settings_section( 51 add_settings_section( 52 52 'general', // Unique identifier for the settings section 53 53 '', // 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) 55 55 'theme_options' // Menu slug, used to uniquely identify the page; see twentyeleven_theme_options_add_page() 56 56 ); 57 57 58 58 // Register our individual settings fields 59 add_settings_field( 59 add_settings_field( 60 60 'color_scheme', // Unique identifier for the field for this section 61 61 __( 'Color Scheme', 'twentyeleven' ), // Setting field label … … 65 65 ); 66 66 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' ); 69 69 } 70 70 add_action( 'admin_init', 'twentyeleven_theme_options_init' ); … … 119 119 'title' => __( 'Overview', 'twentyeleven' ), 120 120 'id' => 'theme-options-help', 121 'content' => 121 'content' => 122 122 '<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>' . 123 123 '<ol>' . … … 238 238 /** 239 239 * Renders the Color Scheme setting field. 240 * 240 * 241 241 * @since Twenty Eleven 1.3 242 242 */ … … 262 262 /** 263 263 * Renders the Link Color setting field. 264 * 264 * 265 265 * @since Twenty Eleven 1.3 266 266 */ … … 279 279 /** 280 280 * Renders the Layout setting field. 281 * 281 * 282 282 * @since Twenty Eleven 1.3 283 283 */
Note: See TracChangeset
for help on using the changeset viewer.