updated plugin Jetpack Protect version 1.1.2

This commit is contained in:
2022-12-19 23:08:19 +00:00
committed by Gitium
parent dcc5b4d910
commit 7b2202370c
91 changed files with 1019 additions and 656 deletions

View File

@ -30,10 +30,10 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '2.4.0';
const PACKAGE_VERSION = '2.5.1';
/**
* Initialize My Jetapack
* Initialize My Jetpack
*
* @return void
*/
@ -240,11 +240,6 @@ class Initializer {
$should = false;
}
// Do not initialize My Jetpack if site is not connected.
if ( ! ( new Connection_Manager() )->is_connected() ) {
$should = false;
}
/**
* Allows filtering whether My Jetpack should be initialized.
*

View File

@ -49,7 +49,7 @@ class Anti_Spam extends Product {
* @return string
*/
public static function get_name() {
return __( 'Anti-Spam', 'jetpack-my-jetpack' );
return __( 'Akismet Anti-spam', 'jetpack-my-jetpack' );
}
/**
@ -58,7 +58,7 @@ class Anti_Spam extends Product {
* @return string
*/
public static function get_title() {
return __( 'Jetpack Anti-Spam', 'jetpack-my-jetpack' );
return __( 'Jetpack Akismet Anti-spam', 'jetpack-my-jetpack' );
}
/**

View File

@ -50,7 +50,7 @@ class Backup extends Hybrid_Product {
* @return string
*/
public static function get_name() {
return __( 'Backup', 'jetpack-my-jetpack' );
return __( 'VaultPress Backup', 'jetpack-my-jetpack' );
}
/**
@ -59,7 +59,7 @@ class Backup extends Hybrid_Product {
* @return string
*/
public static function get_title() {
return __( 'Jetpack Backup', 'jetpack-my-jetpack' );
return __( 'Jetpack VaultPress Backup', 'jetpack-my-jetpack' );
}
/**

View File

@ -56,7 +56,7 @@ class Security extends Module_Product {
* @return string
*/
public static function get_description() {
return __( 'Comprehensive site security, including Backup, Scan, and Anti-spam.', 'jetpack-my-jetpack' );
return __( 'Comprehensive site security, including VaultPress Backup, Scan, and Akismet Anti-spam.', 'jetpack-my-jetpack' );
}
/**
@ -65,7 +65,7 @@ class Security extends Module_Product {
* @return string
*/
public static function get_long_description() {
return __( 'Comprehensive site security, including Backup, Scan, and Anti-spam.', 'jetpack-my-jetpack' );
return __( 'Comprehensive site security, including VaultPress Backup, Scan, and Akismet Anti-spam.', 'jetpack-my-jetpack' );
}
/**