diff --git a/admin/widgets/league-table.php b/admin/widgets/league-table.php index 74f7499d..47099e8e 100644 --- a/admin/widgets/league-table.php +++ b/admin/widgets/league-table.php @@ -2,7 +2,7 @@ class SportsPress_Widget_League_Table extends WP_Widget { function __construct() { - $widget_ops = array('classname' => 'widget_league_table widget_sp_league_table', 'description' => __( 'Displays a league table.', 'sportspress' ) ); + $widget_ops = array('classname' => 'widget_league_table widget_sp_league_table', 'description' => __( 'Display a league table.', 'sportspress' ) ); parent::__construct('sp_league_table', __( 'SportsPress League Table', 'sportspress' ), $widget_ops); } diff --git a/admin/widgets/player-list.php b/admin/widgets/player-list.php index cc5ae278..4b159805 100644 --- a/admin/widgets/player-list.php +++ b/admin/widgets/player-list.php @@ -2,7 +2,7 @@ class SportsPress_Widget_Player_list extends WP_Widget { function __construct() { - $widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'Displays a list of players.', 'sportspress' ) ); + $widget_ops = array('classname' => 'widget_player_list widget_sp_player_list', 'description' => __( 'Display a list of players.', 'sportspress' ) ); parent::__construct('sp_player_list', __( 'SportsPress Player List', 'sportspress' ), $widget_ops); }