diff --git a/widgets/BuyThisPrintWidget.inc b/widgets/BuyThisPrintWidget.inc index 21fecc0..099015f 100644 --- a/widgets/BuyThisPrintWidget.inc +++ b/widgets/BuyThisPrintWidget.inc @@ -13,7 +13,7 @@ class BuyThisPrintWidget extends WP_Widget { function BuyThisPrintWidget($skip_widget_init = false) { if (!$skip_widget_init) { $widget_ops = array('classname' => __CLASS__, 'description' => __('Adds a button that goes to the buy print template page.','comicpress') ); - $this->WP_Widget(__CLASS__, __('Buy This Print','comicpress'), $widget_ops); + $this->WP_Widget(__CLASS__, __('ComicPress Buy This Print','comicpress'), $widget_ops); } } diff --git a/widgets/GraphicalNavigationWidget.inc b/widgets/GraphicalNavigationWidget.inc index a6cb3f6..82f18f4 100644 --- a/widgets/GraphicalNavigationWidget.inc +++ b/widgets/GraphicalNavigationWidget.inc @@ -14,7 +14,7 @@ class GraphicalNavigationWidget extends WP_Widget { function GraphicalNavigationWidget($skip_widget_init = false) { if (!$skip_widget_init) { $widget_ops = array('classname' => __CLASS__, 'description' => __('Displays Graphical Navigation Buttons. (used in comic sidebars)','comicpress') ); - $this->WP_Widget(__CLASS__, __('Comic Navigation','comicpress'), $widget_ops); + $this->WP_Widget(__CLASS__, __('ComicPress Comic Navigation','comicpress'), $widget_ops); } }