From 49fcef804e8211a1bc031313e15d7a1882757d3c Mon Sep 17 00:00:00 2001 From: John Bintz Date: Mon, 21 Dec 2009 08:25:36 -0500 Subject: [PATCH] replace lost comicpress prefix after merge --- widgets/BuyThisPrintWidget.inc | 2 +- widgets/GraphicalNavigationWidget.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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); } }