Ticket #22451: 22451-settings.diff
File 22451-settings.diff, 4.2 KB (added by , 12 years ago) |
---|
-
wp-admin/options-general.php
58 58 add_action('admin_head', 'options_general_add_js'); 59 59 60 60 $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>'; 62 62 63 63 if ( ! is_multisite() ) { 64 64 $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/options-media.php
15 15 $title = __('Media Settings'); 16 16 $parent_file = 'options-general.php'; 17 17 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>'; 19 19 20 20 if ( ! is_multisite() ) { 21 21 $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
18 18 get_current_screen()->add_help_tab( array( 19 19 'id' => 'overview', 20 20 '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 — 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 — 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 23 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>', 24 24 ) ); -
wp-admin/options-writing.php
18 18 get_current_screen()->add_help_tab( array( 19 19 'id' => 'overview', 20 20 '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>' . 22 22 '<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>', 23 23 ) ); 24 24