Backup type – change “Plugins” to “Plugins list”
-
When viewing the list of jobs the Type column lists the contents of each job (DB Backup, Plugins, Files, XML Export, DB Check).
Screenshot: https://imgur.com/a/PfXRYZJI think that it would be clearer if “Plugins” was changed to “Plugins list” in inc/class-jobtype-wpplugin.php
Here’s the patch:
— inc/class-jobtype-wpplugin.php.orig 2018-11-22 09:02:26.000000000 +0000
+++ inc/class-jobtype-wpplugin.php 2019-09-30 09:42:45.135788000 +0100
@@ -10,7 +10,7 @@
public function __construct() {$this->info[ ‘ID’ ] = ‘WPPLUGIN’;
– $this->info[ ‘name’ ] = __( ‘Plugins’, ‘backwpup’ );
+ $this->info[ ‘name’ ] = __( ‘Plugins list’, ‘backwpup’ );
$this->info[ ‘description’ ] = __( ‘Installed plugins list’, ‘backwpup’ );
$this->info[ ‘URI’ ] = __( ‘https://backwpup.com’, ‘backwpup’ );
$this->info[ ‘author’ ] = ‘Inpsyde GmbH’;
- The topic ‘Backup type – change “Plugins” to “Plugins list”’ is closed to new replies.