Ticket #19501: double_spaces.patch
File double_spaces.patch, 5.5 KB (added by , 13 years ago) |
---|
-
wp-admin/import.php
20 20 'id' => 'overview', 21 21 'title' => __('Overview'), 22 22 'content' => '<p>' . __('This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform.') . '</p>' . 23 '<p>' . __('In previous versions of WordPress, all importers were built-in. 23 '<p>' . __('In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently.') . '</p>', 24 24 ) ); 25 25 26 26 -
wp-admin/includes/dashboard.php
1290 1290 <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div> 1291 1291 1292 1292 <div class="welcome-panel-content"> 1293 <h3><?php _e( 'Welcome to your new WordPress site! 1293 <h3><?php _e( 'Welcome to your new WordPress site!' ); ?></h3> 1294 1294 <p class="about-description"><?php _e( 'If you need help getting started, check out our documentation on <a href="http://codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>. If you’d rather dive right in, here are a few things most people do first when they set up a new WordPress site. If you need help, use the Help tabs in the upper right corner to get information on how to use your current screen and where to go for more assistance.' ); ?></p> 1295 1295 <div class="welcome-panel-column-container"> 1296 1296 <div class="welcome-panel-column"> -
wp-admin/options-writing.php
32 32 if ( is_multisite() ) { 33 33 $post_email_help = '<p>' . __('Due to security issues, you cannot use Post By Email on Multisite Installs.') . '</p>'; 34 34 } else { 35 $post_email_help = '<p>' . __('Post via email settings allow you to send your WordPress install an email with the content of your post. 35 $post_email_help = '<p>' . __('Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret e-mail account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret.') . '</p>'; 36 36 } 37 37 38 38 get_current_screen()->add_help_tab( array( -
wp-admin/tools.php
20 20 'id' => 'converter', 21 21 'title' => __('Categories and Tags Converter'), 22 22 'content' => '<p>' . __('Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierachy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content.' ) . '</p>' . 23 '<p>' . __( 'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, return to this screen 23 '<p>' . __( 'The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, return to this screen and the link will take you to a screen where you can choose to convert tags into categories or vice versa.' ) . '</p>', 24 24 ) ); 25 25 26 26 get_current_screen()->set_help_sidebar( -
wp-admin/users.php
33 33 'content' => '<p>' . __('You can customize the display of this screen in a number of ways:') . '</p>' . 34 34 '<ul>' . 35 35 '<li>' . __('You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab.') . '</li>' . 36 '<li>' . __('You can filter the list of users by User Role using the text links in the upper left to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. 36 '<li>' . __('You can filter the list of users by User Role using the text links in the upper left to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed.') . '</li>' . 37 37 '<li>' . __('You can view all posts made by a user by clicking on the number under the Posts column.') . '</li>' . 38 38 '</ul>' 39 39 ) );