diff --git a/wp-content/themes/twentyfourteen/inc/widgets.php b/wp-content/themes/twentyfourteen/inc/widgets.php index 1e8b484ea1..dec749c952 100644 --- a/wp-content/themes/twentyfourteen/inc/widgets.php +++ b/wp-content/themes/twentyfourteen/inc/widgets.php @@ -43,7 +43,7 @@ class Twenty_Fourteen_Ephemera_Widget extends WP_Widget { public function __construct() { parent::__construct( 'widget_twentyfourteen_ephemera', __( 'Twenty Fourteen Ephemera', 'twentyfourteen' ), array( 'classname' => 'widget_twentyfourteen_ephemera', - 'description' => __( 'Use this widget to list your recent Aside, Quote, Video, Audio, Image, Gallery, and Link posts', 'twentyfourteen' ), + 'description' => __( 'Use this widget to list your recent Aside, Quote, Video, Audio, Image, Gallery, and Link posts.', 'twentyfourteen' ), ) ); /* diff --git a/wp-includes/default-widgets.php b/wp-includes/default-widgets.php index 8863c5dbf5..851e94c1e4 100644 --- a/wp-includes/default-widgets.php +++ b/wp-includes/default-widgets.php @@ -191,7 +191,7 @@ class WP_Widget_Search extends WP_Widget { function __construct() { $widget_ops = array('classname' => 'widget_search', 'description' => __( "A search form for your site.") ); - parent::__construct('search', __('Search'), $widget_ops); + parent::__construct( 'search', _x( 'Search', 'Search widget' ), $widget_ops ); } function widget( $args, $instance ) {