replace lost comicpress prefix after merge

This commit is contained in:
John Bintz 2009-12-21 08:25:36 -05:00
parent 4896100fbe
commit 49fcef804e
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}