|
14 | 14 | class WP_Widget_Pages extends WP_Widget { |
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 | } |
20 | 20 |
|
@@ -190,7 +190,7 @@ function form( $instance ) { |
190 | 190 | class WP_Widget_Search extends WP_Widget { |
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 | } |
196 | 196 |
|
@@ -233,7 +233,7 @@ function update( $new_instance, $old_instance ) { |
233 | 233 | class WP_Widget_Archives extends WP_Widget { |
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 | } |
239 | 239 |
|
@@ -298,7 +298,7 @@ function form( $instance ) { |
298 | 298 | class WP_Widget_Meta extends WP_Widget { |
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 | } |
304 | 304 |
|
@@ -350,7 +350,7 @@ function form( $instance ) { |
350 | 350 | class WP_Widget_Calendar extends WP_Widget { |
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 | } |
356 | 356 |
|
@@ -391,7 +391,7 @@ function form( $instance ) { |
391 | 391 | class WP_Widget_Text extends WP_Widget { |
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); |
397 | 397 | } |
@@ -441,7 +441,7 @@ function form( $instance ) { |
441 | 441 | class WP_Widget_Categories extends WP_Widget { |
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 | } |
447 | 447 |
|
@@ -533,7 +533,7 @@ function form( $instance ) { |
533 | 533 | class WP_Widget_Recent_Posts extends WP_Widget { |
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'; |
539 | 539 |
|
@@ -635,7 +635,7 @@ function form( $instance ) { |
635 | 635 | class WP_Widget_Recent_Comments extends WP_Widget { |
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'; |
641 | 641 |
|
@@ -742,7 +742,7 @@ function form( $instance ) { |
742 | 742 | class WP_Widget_RSS extends WP_Widget { |
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 ); |
748 | 748 | } |
@@ -1033,7 +1033,7 @@ function wp_widget_rss_process( $widget_rss, $check_feed = true ) { |
1033 | 1033 | class WP_Widget_Tag_Cloud extends WP_Widget { |
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 | } |
1039 | 1039 |
|
@@ -1100,7 +1100,7 @@ function _get_current_taxonomy($instance) { |
1100 | 1100 | class WP_Nav_Menu_Widget extends WP_Widget { |
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 | } |
1106 | 1106 |
|
|
0 commit comments