From b69d318af974f5f58cc6e2d456c9da7e109fa49f Mon Sep 17 00:00:00 2001 From: Gary Jones Date: Tue, 20 Aug 2013 03:40:55 +0100 Subject: [PATCH] Fix incorrect text domain --- plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.php b/plugin.php index 290877f..bb75b0e 100644 --- a/plugin.php +++ b/plugin.php @@ -45,7 +45,7 @@ function ss_activation_check() { function ss_deactivate( $genesis_version = '1.8.0', $wp_version = '3.3' ) { deactivate_plugins( plugin_basename( __FILE__ ) ); - wp_die( sprintf( __( 'Sorry, you cannot run Simple Sidebars without WordPress %s and Genesis %s, or greater.', 'simplehooks' ), $wp_version, 'http://my.studiopress.com/?download_id=91046d629e74d525b3f2978e404e7ffa', $genesis_version ) ); + wp_die( sprintf( __( 'Sorry, you cannot run Simple Sidebars without WordPress %s and Genesis %s, or greater.', 'ss' ), $wp_version, 'http://my.studiopress.com/?download_id=91046d629e74d525b3f2978e404e7ffa', $genesis_version ) ); }