Changeset 17014
- Timestamp:
- 12/17/2010 03:32:46 AM (14 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r17006 r17014 161 161 $help =''; 162 162 if ( 'category' == $taxonomy ) 163 $help .= '<p>' . sprintf(__( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ) , 'options-writing.php' ) . '</p>';164 elseif ( 'link_category' == $taxonomy ) 165 $help .= '<p>' . __( 'You can create groups of links by using link categories. Link category names must be unique and link categories are separate from the categories you use for posts.' ) . '</p>';166 else 167 $help .= '<p>' . __( 'You can assign keywords to your posts using Post Tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>';168 169 if ( 'link_category' == $taxonomy ) 163 $help = '<p>' . sprintf(__( 'You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your <a href="%s">writing settings</a>.' ) , 'options-writing.php' ) . '</p>'; 164 elseif ( 'link_category' == $taxonomy ) 165 $help = '<p>' . __( 'You can create groups of links by using link categories. Link category names must be unique and link categories are separate from the categories you use for posts.' ) . '</p>'; 166 else 167 $help = '<p>' . __( 'You can assign keywords to your posts using Post Tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another.' ) . '</p>'; 168 169 if ( 'link_category' == $taxonomy ) 170 170 $help .= '<p>' . __( 'You can delete link categories in the Bulk Action pulldown, but that action does not delete the links within the category. Instead, it moves them to the default link category.' ) . '</p>'; 171 171 else … … 174 174 if ( 'category' == $taxonomy ) 175 175 $help .= '<p>' . __( 'When adding a new category on this screen, you’ll fill in the following fields:' ) . '</p>'; 176 elseif ( 'post_tag' == $taxonomy ) 176 elseif ( 'post_tag' == $taxonomy ) 177 177 $help .= '<p>' . __( 'When adding a new tag on this screen, you’ll fill in the following fields:' ) . '</p>'; 178 178 … … 181 181 $help .= '<ul>' . 182 182 '<li>' . __( '<strong>Name</strong> - The name is how it appears on your site.' ) . '</li>'; 183 183 184 184 if ( ! global_terms_enabled() ) 185 185 if ( 'category' == $taxonomy || 'post_tag' == $taxonomy ) -
trunk/wp-admin/my-sites.php
r16061 r17014 43 43 '<p>' . __('Up until WordPress version 3.0, what is now called a Multi-site Network had to be installed separately as WordPress MU (multi-user).') . '</p>' . 44 44 '<p><strong>' . __('For more information:') . '</strong></p>' . 45 '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_My_Sites_SubPanel" target="_blank"> My Sites Documentation</a>') . '</p>' .45 '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_My_Sites_SubPanel" target="_blank">Documentation on My Sites</a>') . '</p>' . 46 46 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 47 47 ); -
trunk/wp-admin/nav-menus.php
r16980 r17014 454 454 $help .= '<p>' . __('To create a new custom menu, click on the + tab, give the menu a name, and click Create Menu. Next, add menu items from the appropriate boxes. You’ll be able to edit the information for each menu item, and can drag and drop to put them in order. You can also drag a menu item a little to the right to make it a submenu, to create menus with hierarchy. Drop the item into its new nested placement when the dotted rectangle target shifts over, also a little to the right. Don’t forget to click Save when you’re finished.') . '</p>'; 455 455 $help .= '<p><strong>' . __('For more information:') . '</strong></p>'; 456 $help .= '<p>' . __('<a href="http://codex.wordpress.org/Appearance_Menus_SubPanel" target="_blank"> Menus Documentation</a>') . '</p>';456 $help .= '<p>' . __('<a href="http://codex.wordpress.org/Appearance_Menus_SubPanel" target="_blank">Documentation on Menus</a>') . '</p>'; 457 457 $help .= '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'; 458 458 -
trunk/wp-admin/network.php
r16921 r17014 112 112 '<p>' . __('The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed soon in a future version.') . '</p>' . 113 113 '<p><strong>' . __('For more information:') . '</strong></p>' . 114 '<p>' . __('<a href="http://codex.wordpress.org/Create_A_Network" target="_blank"> General Network Creation Documentation</a>') . '</p>' .115 '<p>' . __('<a href="http://codex.wordpress.org/Tools_Network_SubPanel" target="_blank"> Tools > Network Documentation</a>') . '</p>' .114 '<p>' . __('<a href="http://codex.wordpress.org/Create_A_Network" target="_blank">Documentation on Creating a Network</a>') . '</p>' . 115 '<p>' . __('<a href="http://codex.wordpress.org/Tools_Network_SubPanel" target="_blank">Documentation on the Network Screen</a>') . '</p>' . 116 116 '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>' 117 117 );
Note: See TracChangeset
for help on using the changeset viewer.