Changeset 26505
- Timestamp:
- 12/01/2013 06:28:12 PM (12 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
-
wp-admin/widgets.php (modified) (1 diff)
-
wp-includes/default-widgets.php (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/widgets.php
r26426 r26505 338 338 <div class="widget-holder"> 339 339 <div class="sidebar-description"> 340 <p class="description"><?php _e(' Drag widgets from here to a sidebar on the right to activate them. Drag widgets back here to deactivate them and delete their settings.'); ?></p>340 <p class="description"><?php _e('To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back.'); ?></p> 341 341 </div> 342 342 <div id="widget-list"> -
trunk/src/wp-includes/default-widgets.php
r26230 r26505 15 15 16 16 function __construct() { 17 $widget_ops = array('classname' => 'widget_pages', 'description' => __( ' Your site’s WordPress Pages') );17 $widget_ops = array('classname' => 'widget_pages', 'description' => __( 'A list of your site’s Pages.') ); 18 18 parent::__construct('pages', __('Pages'), $widget_ops); 19 19 } … … 191 191 192 192 function __construct() { 193 $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site ") );193 $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site.") ); 194 194 parent::__construct('search', __('Search'), $widget_ops); 195 195 } … … 234 234 235 235 function __construct() { 236 $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s posts') );236 $widget_ops = array('classname' => 'widget_archive', 'description' => __( 'A monthly archive of your site’s Posts.') ); 237 237 parent::__construct('archives', __('Archives'), $widget_ops); 238 238 } … … 299 299 300 300 function __construct() { 301 $widget_ops = array('classname' => 'widget_meta', 'description' => __( "Log in/out, admin, feed and WordPress links") );301 $widget_ops = array('classname' => 'widget_meta', 'description' => __( "Login, RSS, & WordPress.org links.") ); 302 302 parent::__construct('meta', __('Meta'), $widget_ops); 303 303 } … … 351 351 352 352 function __construct() { 353 $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site’s posts') );353 $widget_ops = array('classname' => 'widget_calendar', 'description' => __( 'A calendar of your site’s Posts.') ); 354 354 parent::__construct('calendar', __('Calendar'), $widget_ops); 355 355 } … … 392 392 393 393 function __construct() { 394 $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML '));394 $widget_ops = array('classname' => 'widget_text', 'description' => __('Arbitrary text or HTML.')); 395 395 $control_ops = array('width' => 400, 'height' => 350); 396 396 parent::__construct('text', __('Text'), $widget_ops, $control_ops); … … 442 442 443 443 function __construct() { 444 $widget_ops = array( 'classname' => 'widget_categories', 'description' => __( "A list or dropdown of categories " ) );444 $widget_ops = array( 'classname' => 'widget_categories', 'description' => __( "A list or dropdown of categories." ) ); 445 445 parent::__construct('categories', __('Categories'), $widget_ops); 446 446 } … … 534 534 535 535 function __construct() { 536 $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( " The most recent posts on your site") );536 $widget_ops = array('classname' => 'widget_recent_entries', 'description' => __( "Your site’s most recent Posts.") ); 537 537 parent::__construct('recent-posts', __('Recent Posts'), $widget_ops); 538 538 $this->alt_option_name = 'widget_recent_entries'; … … 636 636 637 637 function __construct() { 638 $widget_ops = array('classname' => 'widget_recent_comments', 'description' => __( ' The most recent comments' ) );638 $widget_ops = array('classname' => 'widget_recent_comments', 'description' => __( 'Your site’s most recent comments.' ) ); 639 639 parent::__construct('recent-comments', __('Recent Comments'), $widget_ops); 640 640 $this->alt_option_name = 'widget_recent_comments'; … … 743 743 744 744 function __construct() { 745 $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed ') );745 $widget_ops = array( 'description' => __('Entries from any RSS or Atom feed.') ); 746 746 $control_ops = array( 'width' => 400, 'height' => 200 ); 747 747 parent::__construct( 'rss', __('RSS'), $widget_ops, $control_ops ); … … 1034 1034 1035 1035 function __construct() { 1036 $widget_ops = array( 'description' => __( " Your most used tags in cloud format") );1036 $widget_ops = array( 'description' => __( "A cloud of your most used tags.") ); 1037 1037 parent::__construct('tag_cloud', __('Tag Cloud'), $widget_ops); 1038 1038 } … … 1101 1101 1102 1102 function __construct() { 1103 $widget_ops = array( 'description' => __(' Use this widget to add one of your custom menus as a widget.') );1103 $widget_ops = array( 'description' => __('Add a custom menu to your sidebar.') ); 1104 1104 parent::__construct( 'nav_menu', __('Custom Menu'), $widget_ops ); 1105 1105 }
Note: See TracChangeset
for help on using the changeset viewer.