You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$message = __( 'Your site does not appear to be using a secure connection (SSL). You might face issues when connecting to your account. Please add HTTPS to your site to make sure you have no issues connecting.', 'cc-woo' );
111
+
$message = __( 'Your site does not appear to be using a secure connection (SSL). You might face issues when connecting to your account. Please add HTTPS to your site to make sure you have no issues connecting.', 'constant-contact-woocommerce' );
112
112
newNotice(
113
113
newNoticeMessage( $message, 'error', true )
114
114
);
@@ -138,7 +138,7 @@ private function deactivate( $reason ) {
@@ -167,13 +167,13 @@ public function check_for_required_dependencies() {
167
167
// Ensure requirements.
168
168
if ( ! $compatibility_checker->is_available() ) {
169
169
// translators: placeholder is the minimum supported WooCommerce version.
170
-
$message = sprintf( esc_html__( 'WooCommerce version "%1$s" or greater must be installed and activated to use %2$s.', 'cc-woo' ), PluginCompatibilityCheck::MINIMUM_WOO_VERSION, self::PLUGIN_NAME );
170
+
$message = sprintf( esc_html__( 'WooCommerce version "%1$s" or greater must be installed and activated to use %2$s.', 'constant-contact-woocommerce' ), PluginCompatibilityCheck::MINIMUM_WOO_VERSION, self::PLUGIN_NAME );
171
171
thrownewException( $message );
172
172
}
173
173
174
174
if ( ! $compatibility_checker->is_compatible( \WooCommerce::instance() ) ) {
175
175
// translators: placeholder is the minimum supported WooCommerce version.
176
-
$message = sprintf( esc_html__( 'WooCommerce version "%1$s" or greater is required to use %2$s.', 'cc-woo' ), PluginCompatibilityCheck::MINIMUM_WOO_VERSION, self::PLUGIN_NAME );
176
+
$message = sprintf( esc_html__( 'WooCommerce version "%1$s" or greater is required to use %2$s.', 'constant-contact-woocommerce' ), PluginCompatibilityCheck::MINIMUM_WOO_VERSION, self::PLUGIN_NAME );
177
177
thrownewException( $message );
178
178
}
179
179
} catch ( Exception$e ) {
@@ -210,6 +210,7 @@ public function register_hooks() {
0 commit comments