@@ 28-31 (lines=4) @@ | ||
25 | $options_help = '<p>' . __('The fields on this screen determine some of the basics of your site setup.') . '</p>' . |
|
26 | '<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>'; |
|
27 | ||
28 | if ( ! is_multisite() ) { |
|
29 | $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>' . |
|
30 | '<p>' . __('If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin.') . '</p>'; |
|
31 | } |
|
32 | ||
33 | $options_help .= '<p>' . __( 'You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable).' ) . '</p>' . |
|
34 | '<p>' . __( 'UTC means Coordinated Universal Time.' ) . '</p>' . |
@@ 51-54 (lines=4) @@ | ||
48 | '<ul>' . |
|
49 | '<li>' . __('Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username.') . '</li>'; |
|
50 | ||
51 | if ( is_multisite() ) |
|
52 | $help .= '<li>' . __( 'Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions.' ) . '</li>'; |
|
53 | else |
|
54 | $help .= '<li>' . __( 'Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using Bulk Actions.' ) . '</li>'; |
|
55 | ||
56 | $help .= '</ul>'; |
|
57 |