WP Security Audit Log - Version 3.5.2

Version Description

(2019-10-26) =

Release notes: Update 3.5.2 - New filter hooks & better support for CPT on multisite networks

  • New Filter Hooks

    • Disable the email notification sent when plugin is deactivated.
    • Change the email address of the notification email sent when plugin is deactivated.
    • Disable support for User Switching plugin.
  • Improvements

    • Updated database queries to better support MySQL 8.
    • New setting to enable/disable milliseconds in timestamps.
    • New option in wizard to enable the WordPress activity log mirror once set up.
    • Added the wsal_ prefix to all cron jobs.
    • Fine tuned the WooCommerce activity log sensor to report only the neccessary events when there are coupon changes.
    • Updated the WordPress activity log custom events API to only require one sensor on a multisite network.
    • Removed old version specific checks used during upgrades.
    • Daily summary email now includes more accurate user logins details.
  • Bug Fixes

    • Custom post types on sub sites were not recognized on multisite network install.
    • Background events were not being excluded from the logs even when the plugin is configured to exclude them.
Download this release

Release Info

Developer WPWhiteSecurity
Plugin Icon 128x128 WP Security Audit Log
Version 3.5.2
Comparing to
See all releases

Code changes from version 3.5.1.1 to 3.5.2

classes/Adapters/MySQL/ActiveRecordAdapter.php CHANGED
@@ -127,7 +127,7 @@ class WSAL_Adapters_MySQL_ActiveRecord implements WSAL_Adapters_ActiveRecordInte
127
  */
128
  public function IsInstalled() {
129
  $_wpdb = $this->connection;
130
- $sql = 'SHOW TABLES LIKE "' . $this->GetTable() . '"';
131
 
132
  // Table transient.
133
  $wsal_table_transient = 'wsal_' . strtolower( $this->GetTable() ) . '_status';
@@ -178,7 +178,7 @@ class WSAL_Adapters_MySQL_ActiveRecord implements WSAL_Adapters_ActiveRecordInte
178
  $_wpdb = $this->connection;
179
 
180
  // Query table exists.
181
- $table_exists_query = 'SHOW TABLES LIKE "' . $this->GetTable() . '"';
182
  $result = $_wpdb->query( $table_exists_query );
183
  return $result;
184
  }
127
  */
128
  public function IsInstalled() {
129
  $_wpdb = $this->connection;
130
+ $sql = "SHOW TABLES LIKE '" . $this->GetTable() . "'";
131
 
132
  // Table transient.
133
  $wsal_table_transient = 'wsal_' . strtolower( $this->GetTable() ) . '_status';
178
  $_wpdb = $this->connection;
179
 
180
  // Query table exists.
181
+ $table_exists_query = "SHOW TABLES LIKE '" . $this->GetTable() . "'";
182
  $result = $_wpdb->query( $table_exists_query );
183
  return $result;
184
  }
classes/AlertManager.php CHANGED
@@ -132,6 +132,7 @@ final class WSAL_AlertManager {
132
  'customize_changeset', // Customize changeset CPT.
133
  'custom_css', // Custom CSS CPT.
134
  'product', // WooCommerce Product CPT.
 
135
  'shop_order', // WooCommerce Order CPT.
136
  'shop_order_refund', // WooCommerce Order Refund CPT.
137
  'product_variation', // WooCommerce Product Variation CPT.
@@ -241,12 +242,35 @@ final class WSAL_AlertManager {
241
 
242
  // Get username.
243
  $username = wp_get_current_user()->user_login;
 
 
 
 
 
 
 
 
 
 
 
 
244
  if ( empty( $username ) && ! empty( $data['Username'] ) ) {
245
  $username = $data['Username'];
246
  }
247
 
248
  // Get current user roles.
249
- $roles = $this->plugin->settings->GetCurrentUserRoles();
 
 
 
 
 
 
 
 
 
 
 
250
  if ( empty( $roles ) && ! empty( $data['CurrentUserRoles'] ) ) {
251
  $roles = $data['CurrentUserRoles'];
252
  }
132
  'customize_changeset', // Customize changeset CPT.
133
  'custom_css', // Custom CSS CPT.
134
  'product', // WooCommerce Product CPT.
135
+ 'shop_coupon', // WooCommerse Coupon CPT.
136
  'shop_order', // WooCommerce Order CPT.
137
  'shop_order_refund', // WooCommerce Order Refund CPT.
138
  'product_variation', // WooCommerce Product Variation CPT.
242
 
243
  // Get username.
244
  $username = wp_get_current_user()->user_login;
245
+ // if user switching plugin class exists and filter is set to disable then try get the old user.
246
+ if ( apply_filters( 'wsal_disable_user_switching_plugin_tracking', false ) && class_exists( 'user_switching' ) ) {
247
+ $old_user = user_switching::get_old_user();
248
+ if ( isset( $old_user->user_login ) ) {
249
+ // looks like this is a switched user so setup original user
250
+ // values for use when logging.
251
+ $username = $old_user->user_login;
252
+ $data['Username'] = $old_user->user_login;
253
+ $data['CurrentUserID'] = $old_user->ID;
254
+ }
255
+ }
256
+
257
  if ( empty( $username ) && ! empty( $data['Username'] ) ) {
258
  $username = $data['Username'];
259
  }
260
 
261
  // Get current user roles.
262
+ if ( isset( $old_user ) ) {
263
+ // looks like this is a switched user so setup original user
264
+ // roles and values for later user.
265
+ $roles = $old_user->roles;
266
+ if ( function_exists( 'is_super_admin' ) && is_super_admin() ) {
267
+ $roles[] = 'superadmin';
268
+ }
269
+ $data['CurrentUserRoles'] = $roles;
270
+ } else {
271
+ // not a switched user so get the current user roles.
272
+ $roles = $this->plugin->settings->GetCurrentUserRoles();
273
+ }
274
  if ( empty( $roles ) && ! empty( $data['CurrentUserRoles'] ) ) {
275
  $roles = $data['CurrentUserRoles'];
276
  }
classes/AuditLogListView.php CHANGED
@@ -410,7 +410,13 @@ class WSAL_AuditLogListView extends WP_List_Table {
410
  . ( $item->is_read ? 'old' : 'new' )
411
  . '" title="' . __( 'Click to toggle.', 'wp-security-audit-log' ) . '"></span>';
412
  case 'type':
413
- $code = $this->_plugin->alerts->GetAlert( $item->alert_id );
 
 
 
 
 
 
414
  $extra_msg = '';
415
  $data_link = '';
416
  $modification_alerts = array( 1002, 1003, 6007, 6023 );
@@ -447,6 +453,11 @@ class WSAL_AuditLogListView extends WP_List_Table {
447
  }
448
  return '<a class="tooltip" href="#" data-tooltip="' . esc_html( $const->name ) . '"><span class="log-type log-type-' . $const->value . '"></span></a>';
449
  case 'crtd':
 
 
 
 
 
450
  return $item->created_on ? (
451
  str_replace(
452
  '$$$',
@@ -1020,19 +1031,19 @@ class WSAL_AuditLogListView extends WP_List_Table {
1020
  $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1021
  $query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1022
  $query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
 
 
 
 
 
 
 
1023
  } else {
1024
  $tmp = new WSAL_Models_Occurrence();
1025
  // Making sure the field exists to order by.
1026
  if ( isset( $tmp->{$order_by} ) ) {
1027
  // TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
1028
  $query->addOrderBy( $order_by, $is_descending );
1029
- } elseif ( 'code' === $order_by ) {
1030
- /*
1031
- * Handle the 'code' (Severity) column sorting.
1032
- */
1033
- $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1034
- $query->addCondition( 'meta.name = %s', 'Severity' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1035
- $query->addOrderBy( 'CASE WHEN meta.name = "Severity" THEN meta.value END', $is_descending );
1036
  } else {
1037
  $query->addOrderBy( 'created_on', true );
1038
  }
410
  . ( $item->is_read ? 'old' : 'new' )
411
  . '" title="' . __( 'Click to toggle.', 'wp-security-audit-log' ) . '"></span>';
412
  case 'type':
413
+ $code = $this->_plugin->alerts->GetAlert(
414
+ $item->alert_id,
415
+ (object) array(
416
+ 'mesg' => __( 'Alert message not found.', 'wp-security-audit-log' ),
417
+ 'desc' => __( 'Alert description not found.', 'wp-security-audit-log' ),
418
+ )
419
+ );
420
  $extra_msg = '';
421
  $data_link = '';
422
  $modification_alerts = array( 1002, 1003, 6007, 6023 );
453
  }
454
  return '<a class="tooltip" href="#" data-tooltip="' . esc_html( $const->name ) . '"><span class="log-type log-type-' . $const->value . '"></span></a>';
455
  case 'crtd':
456
+ $show_microseconds = $this->_plugin->settings->get_show_microseconds();
457
+ if ( 'no' === $show_microseconds ) {
458
+ // remove the microseconds placeholder from format string.
459
+ $datetime_format = str_replace( '.$$$', '', $datetime_format );
460
+ }
461
  return $item->created_on ? (
462
  str_replace(
463
  '$$$',
1031
  $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1032
  $query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1033
  $query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
1034
+ } elseif ( 'code' === $order_by ) {
1035
+ /*
1036
+ * Handle the 'code' (Severity) column sorting.
1037
+ */
1038
+ $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1039
+ $query->addCondition( 'meta.name = %s', 'Severity' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1040
+ $query->addOrderBy( 'CASE WHEN meta.name = "Severity" THEN meta.value END', $is_descending );
1041
  } else {
1042
  $tmp = new WSAL_Models_Occurrence();
1043
  // Making sure the field exists to order by.
1044
  if ( isset( $tmp->{$order_by} ) ) {
1045
  // TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
1046
  $query->addOrderBy( $order_by, $is_descending );
 
 
 
 
 
 
 
1047
  } else {
1048
  $query->addOrderBy( 'created_on', true );
1049
  }
classes/Connector/MySQLDB.php CHANGED
@@ -144,7 +144,7 @@ class WSAL_Connector_MySQLDB extends WSAL_Connector_AbstractConnector implements
144
  public function isInstalled() {
145
  $wpdb = $this->getConnection();
146
  $table = $wpdb->base_prefix . 'wsal_occurrences';
147
- return $table === $wpdb->get_var( 'SHOW TABLES LIKE "' . $table . '"' );
148
  }
149
 
150
  /**
@@ -155,7 +155,7 @@ class WSAL_Connector_MySQLDB extends WSAL_Connector_AbstractConnector implements
155
  public function canMigrate() {
156
  $wpdb = $this->getConnection();
157
  $table = $wpdb->base_prefix . 'wordpress_auditlog_events';
158
- return $table === $wpdb->get_var( 'SHOW TABLES LIKE "' . $table . '"' );
159
  }
160
 
161
  /**
144
  public function isInstalled() {
145
  $wpdb = $this->getConnection();
146
  $table = $wpdb->base_prefix . 'wsal_occurrences';
147
+ return $table === $wpdb->get_var( "SHOW TABLES LIKE '" . $table . "'" );
148
  }
149
 
150
  /**
155
  public function canMigrate() {
156
  $wpdb = $this->getConnection();
157
  $table = $wpdb->base_prefix . 'wordpress_auditlog_events';
158
+ return $table === $wpdb->get_var( "SHOW TABLES LIKE '" . $table . "'" );
159
  }
160
 
161
  /**
classes/Models/Occurrence.php CHANGED
@@ -77,7 +77,13 @@ class WSAL_Models_Occurrence extends WSAL_Models_ActiveRecord {
77
  * @return WSAL_Alert
78
  */
79
  public function GetAlert() {
80
- return WpSecurityAuditLog::GetInstance()->alerts->GetAlert( $this->alert_id );
 
 
 
 
 
 
81
  }
82
 
83
  /**
@@ -172,8 +178,18 @@ class WSAL_Models_Occurrence extends WSAL_Models_ActiveRecord {
172
  $this->_cachedmessage = $this->GetAlert()->mesg;
173
  }
174
  // Fill variables in message.
175
- $meta_array = null === $meta ? $this->GetMetaArray() : $meta;
176
- $this->_cachedmessage = $this->GetAlert()->GetMessage( $meta_array, $meta_formatter, $this->_cachedmessage, $this->getId(), $highlight );
 
 
 
 
 
 
 
 
 
 
177
  }
178
  return $this->_cachedmessage;
179
  }
77
  * @return WSAL_Alert
78
  */
79
  public function GetAlert() {
80
+ return WpSecurityAuditLog::GetInstance()->alerts->GetAlert(
81
+ $this->alert_id,
82
+ (object) array(
83
+ 'mesg' => __( 'Alert message not found.', 'wp-security-audit-log' ),
84
+ 'desc' => __( 'Alert description not found.', 'wp-security-audit-log' ),
85
+ )
86
+ );
87
  }
88
 
89
  /**
178
  $this->_cachedmessage = $this->GetAlert()->mesg;
179
  }
180
  // Fill variables in message.
181
+ $meta_array = null === $meta ? $this->GetMetaArray() : $meta;
182
+ $alert_object = $this->GetAlert();
183
+ if ( null !== $alert_object && method_exists( $alert_object, 'GetMessage' ) ) {
184
+ $this->_cachedmessage = $alert_object->GetMessage( $meta_array, $meta_formatter, $this->_cachedmessage, $this->getId(), $highlight );
185
+ } else {
186
+ $this->_cachedmessage = sprintf(
187
+ /* Translators: 1: html that opens a link, 2: html that closes a link. */
188
+ __( 'Alert message was not available, this may have been a custom alert that no longer exists. Read more about custom events %1$shere%2$s.', 'wp-security-audit-log' ),
189
+ '<a href="https://www.wpsecurityauditlog.com/support-documentation/create-custom-alerts-wordpress-audit-trail/" target="_blank">',
190
+ '</a>'
191
+ );
192
+ }
193
  }
194
  return $this->_cachedmessage;
195
  }
classes/Multisite/NetworkWide/AbstractTracker.php ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Abstract Class: AbstractTracker
4
+ *
5
+ * Abstract class that defines the basic items that I want to exist for network
6
+ * wide data tracking of items that are expansive or require code to be
7
+ * executed directly (CPTs or taxonomies for example).
8
+ *
9
+ * @since 3.5.2
10
+ * @package Wsal
11
+ */
12
+
13
+ namespace WSAL\Multisite\NetworkWide;
14
+
15
+ /**
16
+ * Defines a way of storing individual groups of network wide data and local
17
+ * site data.
18
+ *
19
+ * You need to setup the condition and hook both an action for generating $data
20
+ * as well as the save method you want in at an appropriate hook.
21
+ *
22
+ * NOTE: This class doesn't do any direct network or multisite checks. Check
23
+ * those before using the class.
24
+ *
25
+ * NOTE: Aim to attach to late hooks in most castes as this class can be
26
+ * instansiated late in certain conditions of the main plugin.
27
+ *
28
+ * @since 3.5.2
29
+ */
30
+ abstract class AbstractTracker implements TrackerInterface {
31
+
32
+ /**
33
+ * The key used to store data under.
34
+ *
35
+ * You should always redine this in extended classes.
36
+ *
37
+ * @since 3.5.2
38
+ * @var string
39
+ */
40
+ const STORAGE_KEY = 'wsal_networkwide_tracker_suffix';
41
+
42
+ /**
43
+ * The cache time to store data for. Default is 1 hour in seconds.
44
+ *
45
+ * @since 3.5.2
46
+ * @var int
47
+ */
48
+ public $ttl = 30;
49
+
50
+ /**
51
+ * An instance of the main plugin class that can be used to get options or
52
+ * settings.
53
+ *
54
+ * @since 3.5.2
55
+ * @var \WpSecurityAuditLog
56
+ */
57
+ public $plugin;
58
+
59
+ /**
60
+ * The data to be stored.
61
+ *
62
+ * @since 3.5.2
63
+ * @var mixed
64
+ */
65
+ public $data;
66
+
67
+ /**
68
+ * Responsible for setting up the plugin instance in the class, extending
69
+ * this you can use any site data and setup addional properties.
70
+ *
71
+ * @method __construct
72
+ * @since 3.5.2
73
+ * @param \WpSecurityAuditLog $plugin An istance of the main plugin class.
74
+ */
75
+ public function __construct( \WpSecurityAuditLog $plugin ) {
76
+ $this->plugin = $plugin;
77
+ $this->data = array();
78
+ }
79
+
80
+ /**
81
+ * This is the intended entrypoint for the class. This should be called
82
+ * only after confirming that this is running as part of a multisite
83
+ * instance.
84
+ *
85
+ * @method setup
86
+ * @since 3.5.2
87
+ * @return void
88
+ */
89
+ public function setup() {
90
+ /*
91
+ * To make sure we don't need to run every request we store CPTs in an
92
+ * option attached to each local site with a timestamp.
93
+ */
94
+ if ( $this->conditions() ) {
95
+ /*
96
+ * The option doesn't yet exist or it is not fresh so record CPTs
97
+ * and fire off a late storage method.
98
+ */
99
+ $this->actions();
100
+ }
101
+ }
102
+
103
+ /**
104
+ * Needs to return a boolean true if the actions are to be hooked in.
105
+ *
106
+ * You can use this for basic conditional testing but it's also useful for
107
+ * freshness/cache checking.
108
+ *
109
+ * @method conditions
110
+ * @since 3.5.2
111
+ * @return bool
112
+ */
113
+ abstract public function conditions();
114
+
115
+ /**
116
+ * Adds any actions that need registered to handle the gathering, storing
117
+ * or processing of the data and uptimately storing it in $this->data.
118
+ *
119
+ * @method actions
120
+ * @since 3.5.2
121
+ * @return void
122
+ */
123
+ abstract public function actions();
124
+
125
+ /**
126
+ * Should setup the $data property to hold it's data. In format of a
127
+ * single dimentional array.
128
+ *
129
+ * @method generate_data
130
+ * @since 3.5.2
131
+ * @return void
132
+ */
133
+ abstract public function generate_data();
134
+
135
+ /**
136
+ * Method to store this site data locally to the sites own options.
137
+ *
138
+ * Prefered data format:
139
+ * array(
140
+ * timestamp => (int) of the save time in seconds ( time(); )
141
+ * data => single dimentional (array) of (string)s
142
+ * );
143
+ *
144
+ * @method update_storage_site
145
+ * @since 3.5.2
146
+ * @return bool
147
+ */
148
+ abstract public function update_storage_site();
149
+
150
+ /**
151
+ * Method to store this sites local data as part of the global network wide
152
+ * data store. This should merge the data rather than overwrite in most
153
+ * cases.
154
+ *
155
+ * NOTE: Data should be stored on network with an UPDATE.
156
+ *
157
+ * Prefered data format:
158
+ * array(
159
+ * site => (array) containing multiple: [ (int) $site_id ] => 1D (array) of stings.
160
+ * list => (array) of (string)s generated by a compair of all site data stings
161
+ * );
162
+ *
163
+ * @method update_storage_network
164
+ * @since 3.5.2
165
+ * @return bool
166
+ */
167
+ abstract public function update_storage_network();
168
+
169
+ /**
170
+ * Return a list of data about a specific requested site, or the network
171
+ * wide list of data otherwise. Empty array if neither exist.
172
+ *
173
+ * @method get_network_data_list
174
+ * @since 3.5.2
175
+ * @param integer $site_id if a specific site is there. This is technically nullable type but for back compat isn't.
176
+ * @return array
177
+ */
178
+ abstract public static function get_network_data_list( $site_id = 0 );
179
+
180
+ }
classes/Multisite/NetworkWide/CPTsTracker.php ADDED
@@ -0,0 +1,170 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Class: NetworkMultisiteTracker
4
+ *
5
+ * Helper class used for tracking various bits of network wide data.
6
+ *
7
+ * @since 3.5.2
8
+ * @package Wsal
9
+ */
10
+
11
+ namespace WSAL\Multisite\NetworkWide;
12
+
13
+ /**
14
+ * Tracks what CPTs exist across the network.
15
+ *
16
+ * @since 3.5.2
17
+ */
18
+ final class CPTsTracker extends AbstractTracker {
19
+
20
+ /**
21
+ * Options key used to this data.
22
+ *
23
+ * @since 3.5.2
24
+ * @var string
25
+ */
26
+ const STORAGE_KEY = 'wsal_networkwide_tracker_cpts';
27
+
28
+ /**
29
+ * Tests if the actions need run to store update this sites and the network
30
+ * sites cached options for CPTs.
31
+ *
32
+ * Returns true or false based on the current sites option value being
33
+ * present and considered valid.
34
+ *
35
+ * @method conditions
36
+ * @since 3.5.2
37
+ * @return bool
38
+ */
39
+ public function conditions() {
40
+ $conditions_met = false;
41
+ $local_post_types_wrapper = get_option( self::STORAGE_KEY );
42
+ if (
43
+ ! $local_post_types_wrapper ||
44
+ ! is_array( $local_post_types_wrapper ) ||
45
+ ! isset( $local_post_types_wrapper['timestamp'] ) ||
46
+ (int) $local_post_types_wrapper['timestamp'] + $this->ttl < time()
47
+ ) {
48
+ $conditions_met = true;
49
+ }
50
+ return $conditions_met;
51
+ }
52
+
53
+ /**
54
+ * The actions that are used to track CPT registration and store the list
55
+ * at a later point.
56
+ *
57
+ * @method actions
58
+ * @since 3.5.2
59
+ * @return void
60
+ */
61
+ public function actions() {
62
+ add_action( 'wp_loaded', array( $this, 'generate_data' ) );
63
+ add_action( 'wp_loaded', array( $this, 'update_storage_site' ) );
64
+ add_action( 'wp_loaded', array( $this, 'update_storage_network' ) );
65
+ }
66
+
67
+ /**
68
+ * Gets this sites registered post types and stores them in the $data
69
+ * property for saving at a later point.
70
+ *
71
+ * @method generate_data
72
+ * @since 3.5.2
73
+ * @return void
74
+ */
75
+ public function generate_data() {
76
+ $this->data = $this->get_registered_post_types();
77
+ }
78
+
79
+ /**
80
+ * Gets a list of post types registered on this site.
81
+ *
82
+ * @method get_registered_post_types
83
+ * @since 3.5.2
84
+ * @return array
85
+ */
86
+ private function get_registered_post_types() {
87
+ $post_types = get_post_types( array(), 'names' );
88
+ $post_types = array_diff( $post_types, array( 'attachment', 'revision', 'nav_menu_item', 'customize_changeset', 'custom_css', 'oembed_cache', 'user_request', 'wp_block' ) );
89
+ $data = array();
90
+ foreach ( $post_types as $post_type ) {
91
+ $data[] = $post_type;
92
+ }
93
+ return $data;
94
+ }
95
+
96
+ /**
97
+ * Method to store this site data locally to the site.
98
+ *
99
+ * Stores the data in an array containing a timestamp for freshness
100
+ * invalidation at on later checks or updates.
101
+ *
102
+ * @method update_storage_site
103
+ * @since 3.5.2
104
+ * @return bool
105
+ */
106
+ public function update_storage_site() {
107
+ $local_data = array(
108
+ 'timestamp' => time(),
109
+ 'data' => $this->data,
110
+ );
111
+ return update_option( self::STORAGE_KEY, $local_data );
112
+ }
113
+
114
+ /**
115
+ * Method to store this sites local data as part of the global network wide
116
+ * data store. This should merge the data rather than overwrite in most
117
+ * cases.
118
+ *
119
+ * @method update_storage_network
120
+ * @since 3.5.2
121
+ * @return bool
122
+ */
123
+ public function update_storage_network() {
124
+ // get any network stored data.
125
+ $network_data = get_network_option( null, self::STORAGE_KEY );
126
+ $current_blog_id = get_current_blog_id();
127
+ $data_updated = false;
128
+ if (
129
+ ! isset( $network_data['site'][ $current_blog_id ] )
130
+ || ( isset( $network_data['site'][ $current_blog_id ] ) && $network_data['site'][ get_current_blog_id() ] !== $this->data )
131
+ ) {
132
+ $network_data['site'][ $current_blog_id ] = $this->data;
133
+ // if the network doesn't have data for this site or the data it
134
+ // has is differs then perform the update.
135
+ $network_wide_list = array();
136
+ foreach ( $network_data['site'] as $site => $list ) {
137
+ $items_list = array();
138
+ // loop through each item in a site and add uniques to a list.
139
+ foreach ( $list as $item ) {
140
+ if ( ! in_array( $item, $network_wide_list, true ) ) {
141
+ $network_wide_list[] = $item;
142
+ }
143
+ }
144
+ }
145
+ // save the data on the network with the latest list and the current
146
+ // sites data updated in it.
147
+ $network_data['list'] = $network_wide_list;
148
+ // update the site data on the network.
149
+ $data_updated = update_network_option( null, self::STORAGE_KEY, $network_data );
150
+ }
151
+ return $data_updated;
152
+ }
153
+
154
+ /**
155
+ * Return a list of data about a specific requested site, or the network
156
+ * wide list of data otherwise. Empty array if neither exist.
157
+ *
158
+ * @method get_network_data_list
159
+ * @since 3.5.2
160
+ * @param integer $site_id if a specific site is there. This is technically nullable type but for back compat isn't.
161
+ * @return array
162
+ */
163
+ public static function get_network_data_list( $site_id = 0 ) {
164
+ $network_data = get_network_option( null, self::STORAGE_KEY );
165
+ // get the site list requested otherwise get the network list.
166
+ $list = ( 0 !== $site_id && isset( $network_data['site'][ $site_id ] ) ) ? $network_data['site'][ $site_id ] : $network_data['list'];
167
+ return ( ! empty( $list ) ) ? $list : array();
168
+ }
169
+
170
+ }
classes/Multisite/NetworkWide/TrackerInterface.php ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Interface: TrackerInterface
4
+ *
5
+ * Helper class used for tracking various bits of network wide data.
6
+ *
7
+ * @since 3.5.2
8
+ * @package Wsal
9
+ */
10
+
11
+ namespace WSAL\Multisite\NetworkWide;
12
+
13
+ /**
14
+ * The interface that ensures network wide data tracking is handled with a
15
+ * consistent public interface.
16
+ *
17
+ * @since 3.5.2
18
+ */
19
+ interface TrackerInterface {
20
+
21
+ /**
22
+ * The entrypoint to setup of the tracking.
23
+ *
24
+ * NOTE: Check for is_multisite() before calling setup.
25
+ *
26
+ * @method setup
27
+ * @since 3.5.2
28
+ * @return void
29
+ */
30
+ public function setup();
31
+
32
+ /**
33
+ * Tests if the actions need run to store update this sites and the network
34
+ * sites cached options for CPTs.
35
+ *
36
+ * Returns true or false based on the current sites option value being
37
+ * present and considered valid.
38
+ *
39
+ * @method conditions
40
+ * @since 3.5.2
41
+ * @return bool
42
+ */
43
+ public function conditions();
44
+
45
+ /**
46
+ * The actions that are used to track CPT registration and store the list
47
+ * at a later point.
48
+ *
49
+ * @method actions
50
+ * @since 3.5.2
51
+ * @return void
52
+ */
53
+ public function actions();
54
+
55
+ /**
56
+ * Return a list of data about a specific requested site, or the network
57
+ * wide list of data otherwise. Empty array if neither exist.
58
+ *
59
+ * @method get_network_data_list
60
+ * @since 3.5.2
61
+ * @param integer $site_id if a specific site is there. This is technically nullable type but for back compat isn't.
62
+ * @return array
63
+ */
64
+ public static function get_network_data_list( $site_id = 0 );
65
+
66
+ /**
67
+ * Should setup the $data property to hold it's data. In format of a
68
+ * single dimentional array.
69
+ *
70
+ * @method generate_data
71
+ * @since 3.5.2
72
+ * @return void
73
+ */
74
+ public function generate_data();
75
+ }
classes/SensorManager.php CHANGED
@@ -55,22 +55,39 @@ final class WSAL_SensorManager extends WSAL_AbstractSensor {
55
  $upload_dir = wp_upload_dir();
56
  $uploads_dir_path = trailingslashit( $upload_dir['basedir'] ) . 'wp-security-audit-log' . DIRECTORY_SEPARATOR . 'custom-sensors' . DIRECTORY_SEPARATOR;
57
 
58
- // Check directory.
59
- if ( is_dir( $uploads_dir_path ) && is_readable( $uploads_dir_path ) ) {
60
- foreach ( glob( $uploads_dir_path . '*.php' ) as $file ) {
61
- // Include custom sensor file.
62
- require_once $file;
63
- $file = substr( $file, 0, -4 );
64
- $sensor = str_replace( $uploads_dir_path, '', $file );
65
-
66
- // Skip if the file is index.php for security.
67
- if ( 'index' === $sensor ) {
68
- continue;
69
- }
 
 
 
 
 
 
 
 
 
 
70
 
71
- // Generate and initiate custom sensor file.
72
- $class = 'WSAL_Sensors_' . $sensor;
73
- $this->AddFromClass( $class );
 
 
 
 
 
 
 
74
  }
75
  }
76
  }
55
  $upload_dir = wp_upload_dir();
56
  $uploads_dir_path = trailingslashit( $upload_dir['basedir'] ) . 'wp-security-audit-log' . DIRECTORY_SEPARATOR . 'custom-sensors' . DIRECTORY_SEPARATOR;
57
 
58
+ /*
59
+ * Get an array of directories to loop through to add custom sensors.
60
+ *
61
+ * Passed through a filter so other plugins or code can add own custom
62
+ * sensor class files by adding the containing directory to this array.
63
+ *
64
+ * @since 3.5.2 - Added the `wsal_custom_sensors_classes_dirs` filter.
65
+ */
66
+ $paths = apply_filters( 'wsal_custom_sensors_classes_dirs', array( $uploads_dir_path ) );
67
+ foreach ( $paths as $inc_path ) {
68
+ // Check directory.
69
+ if ( is_dir( $inc_path ) && is_readable( $inc_path ) ) {
70
+ foreach ( glob( $inc_path . '*.php' ) as $file ) {
71
+ // Include custom sensor file.
72
+ require_once $file;
73
+ $file = substr( $file, 0, -4 );
74
+ $sensor = str_replace( $inc_path, '', $file );
75
+
76
+ // Skip if the file is index.php for security.
77
+ if ( 'index' === $sensor ) {
78
+ continue;
79
+ }
80
 
81
+ /*
82
+ * @since 3.5.2 Allow loading classes where names match the
83
+ * filename 1:1. Prior to version 3.5.2 sensors were always
84
+ * asummed to be defined WITH `WSAL_Sensors_` prefis in the
85
+ * class name but WITHOUT it in the filename. This behavor
86
+ * is retained for back-compat.
87
+ */
88
+ $class = ( class_exists( $sensor ) ) ? $sensor : 'WSAL_Sensors_' . $sensor;
89
+ $this->AddFromClass( $class );
90
+ }
91
  }
92
  }
93
  }
classes/Sensors/Content.php CHANGED
@@ -1419,10 +1419,11 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
1419
  * @return boolean
1420
  */
1421
  private function check_auto_draft( $code, $title ) {
1422
- if ( 2008 === $code && 'auto-draft' === $title ) {
1423
- return 1 === (int) $this->plugin->settings->IsWPBackend();
 
1424
  }
1425
- return false;
1426
  }
1427
 
1428
  /**
1419
  * @return boolean
1420
  */
1421
  private function check_auto_draft( $code, $title ) {
1422
+ $ignore = 0;
1423
+ if ( 2008 === $code && ( 'auto-draft' === $title || 'Auto Draft' === $title ) ) {
1424
+ $ignore = ( $this->plugin->settings->IsWPBackend() ) ? 0 : 1;
1425
  }
1426
+ return $ignore;
1427
  }
1428
 
1429
  /**
classes/Sensors/System.php CHANGED
@@ -46,6 +46,7 @@ if ( ! defined( 'ABSPATH' ) ) {
46
  */
47
  class WSAL_Sensors_System extends WSAL_AbstractSensor {
48
 
 
49
  /**
50
  * 404 User Transient.
51
  *
@@ -81,11 +82,12 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor {
81
  $visitor_upload_path = trailingslashit( $upload_dir['basedir'] . '/wp-security-audit-log/404s/visitors/' );
82
  $this->remove_sub_directories( $visitor_upload_path ); // Remove it.
83
 
84
- // Cron Job 404 log files pruning.
85
- add_action( 'log_files_pruning', array( $this, 'LogFilesPruning' ) );
86
- if ( ! wp_next_scheduled( 'log_files_pruning' ) ) {
87
- wp_schedule_event( time(), 'daily', 'log_files_pruning' );
88
  }
 
 
89
  // whitelist options.
90
  add_action( 'whitelist_options', array( $this, 'EventOptions' ), 10, 1 );
91
 
46
  */
47
  class WSAL_Sensors_System extends WSAL_AbstractSensor {
48
 
49
+ const SCHEDULED_HOOK_LOG_FILE_PRUDING = 'wsal_log_files_pruning';
50
  /**
51
  * 404 User Transient.
52
  *
82
  $visitor_upload_path = trailingslashit( $upload_dir['basedir'] . '/wp-security-audit-log/404s/visitors/' );
83
  $this->remove_sub_directories( $visitor_upload_path ); // Remove it.
84
 
85
+
86
+ if ( ! wp_next_scheduled( self::SCHEDULED_HOOK_LOG_FILE_PRUDING ) ) {
87
+ wp_schedule_event( time(), 'daily', self::SCHEDULED_HOOK_LOG_FILE_PRUDING );
 
88
  }
89
+ // Cron Job 404 log files pruning.
90
+ add_action( self::SCHEDULED_HOOK_LOG_FILE_PRUDING, array( $this, 'LogFilesPruning' ) );
91
  // whitelist options.
92
  add_action( 'whitelist_options', array( $this, 'EventOptions' ), 10, 1 );
93
 
classes/Sensors/WooCommerce.php CHANGED
@@ -355,7 +355,7 @@ class WSAL_Sensors_WooCommerce extends WSAL_AbstractSensor {
355
  );
356
  return 1;
357
  }
358
- } elseif ( 'shop_coupon' === $old_post->post_type && 'publish' === $new_post->post_status ) {
359
  $coupon_data = $this->get_coupon_event_data( $new_post );
360
  $this->plugin->alerts->Trigger( 9063, $coupon_data );
361
  return 1;
355
  );
356
  return 1;
357
  }
358
+ } elseif ( 'shop_coupon' === $old_post->post_type && 'publish' === $new_post->post_status && 'publish' !== $old_post->post_status ) {
359
  $coupon_data = $this->get_coupon_event_data( $new_post );
360
  $this->plugin->alerts->Trigger( 9063, $coupon_data );
361
  return 1;
classes/Settings.php CHANGED
@@ -1130,6 +1130,33 @@ class WSAL_Settings {
1130
  $this->_plugin->SetGlobalOption( 'timezone', $newvalue );
1131
  }
1132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1133
  /**
1134
  * Get type of username to display.
1135
  */
@@ -1443,6 +1470,14 @@ class WSAL_Settings {
1443
 
1444
  // Get custom post types.
1445
  $post_types = get_post_types( array(), 'names', 'and' );
 
 
 
 
 
 
 
 
1446
 
1447
  // Check if the token matched users.
1448
  if ( in_array( $token, $users ) ) {
1130
  $this->_plugin->SetGlobalOption( 'timezone', $newvalue );
1131
  }
1132
 
1133
+ /**
1134
+ * Helper method to get the stored setting to determine if microseconds
1135
+ * appear in the admin list view. This should always be a bool.
1136
+ *
1137
+ * @method get_show_microseconds
1138
+ * @since 3.5.2
1139
+ * @return bool
1140
+ */
1141
+ public function get_show_microseconds() {
1142
+ return $this->_plugin->GetGlobalOption( 'show_microseconds', 'yes' );
1143
+ }
1144
+
1145
+ /**
1146
+ * Stores the option that dicates if microseconds show in admin list view
1147
+ * for event times. This is always a bool. When it's not a bool it's set
1148
+ * to `true` to match default.
1149
+ *
1150
+ * @method set_show_microseconds
1151
+ * @since 3.5.2
1152
+ * @param mixed $newvalue ideally always bool. If not bool then it's cast to true.
1153
+ */
1154
+ public function set_show_microseconds( $newvalue ) {
1155
+ $newvalue = ( ! empty( $newvalue ) ) ? 'yes' : 'no';
1156
+ $this->_plugin->SetGlobalOption( 'show_microseconds', $newvalue );
1157
+ }
1158
+
1159
+
1160
  /**
1161
  * Get type of username to display.
1162
  */
1470
 
1471
  // Get custom post types.
1472
  $post_types = get_post_types( array(), 'names', 'and' );
1473
+ // if we are running multisite and have networkwide cpt tracker get the
1474
+ // list from and merge to the post_types array.
1475
+ if ( is_multisite() && class_exists( '\WSAL\Multisite\NetworkWide\CPTsTracker' ) ) {
1476
+ $network_cpts = \WSAL\Multisite\NetworkWide\CPTsTracker::get_network_data_list();
1477
+ foreach ( $network_cpts as $cpt ) {
1478
+ $post_types[ $cpt ] = $cpt;
1479
+ }
1480
+ }
1481
 
1482
  // Check if the token matched users.
1483
  if ( in_array( $token, $users ) ) {
classes/Update/Task/CronNameRemap.php ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Task to handle remapping cron names that were renamed in later versions.
4
+ *
5
+ * NOTE: This in intended to be run as part of the plugin update routine when
6
+ * it detects a version change.
7
+ *
8
+ * @package Wsal
9
+ * @since 3.5.1
10
+ */
11
+
12
+ namespace WSAL\Update\Task;
13
+
14
+ /**
15
+ * Remaps remaps old cron names to new ones and schedules them at the same
16
+ * time as the original was scheduled.
17
+ */
18
+ class CronNameRemap {
19
+
20
+ /**
21
+ * Holds the main plugin instance to work on.
22
+ *
23
+ * @var \WpSecurityAuditLog
24
+ */
25
+ private $wsal;
26
+
27
+ /**
28
+ * Setups up the class properties.
29
+ *
30
+ * @method __construct
31
+ * @since 3.5.1
32
+ * @param \WpSecurityAuditLog $wsal An instance of the main plugin.
33
+ */
34
+ public function __construct( $wsal ) {
35
+ $this->wsal = $wsal;
36
+ }
37
+ /**
38
+ * Loop through an array of cron tasks and remap them if the name changed.
39
+ *
40
+ * @method run
41
+ * @since 3.5.1
42
+ */
43
+ public function run() {
44
+ // Get crons to be remapped.
45
+ $crons = $this->get_crons_to_remap();
46
+
47
+ // Loop through list of crons and check if scheduled.
48
+ foreach ( $crons as $cron ) {
49
+ $args = ( isset( $cron['args'] ) ) ? $cron['args'] : array();
50
+ $time = wp_next_scheduled( $cron['name_old'], $args );
51
+ if ( $time ) {
52
+ // Cron with old name is scheduled - unschedule.
53
+ wp_unschedule_event( $time, $cron['name_old'], $args );
54
+ $rescheduled = wp_next_scheduled( $cron['name_new'], $args );
55
+ if ( ! $rescheduled ) {
56
+ // New cron is not scheduled already - schedule it.
57
+ wp_schedule_event( $time, $cron['frequency'], $cron['name_new'], $args );
58
+ }
59
+ }
60
+ }
61
+ }
62
+
63
+ /**
64
+ * Gets an array of cron tasks and their remapped names, frequencies, args.
65
+ *
66
+ * @method get_crons_to_remap
67
+ * @since 3.5.1
68
+ * @return array
69
+ */
70
+ private function get_crons_to_remap() {
71
+ // Get an array of crons that have args.
72
+ $complex_crons = $this->get_crons_with_args_for_remap();
73
+ // This is a list of _mostly_ static crons that are to be remapped.
74
+ $simple_crons = array(
75
+ array(
76
+ 'name_old' => 'summary_email_reports',
77
+ 'name_new' => 'wsal_summary_email_reports',
78
+ 'frequency' => 'hourly',
79
+ ),
80
+ array(
81
+ 'name_old' => 'log_files_pruning',
82
+ 'name_new' => 'wsal_log_files_pruning',
83
+ 'frequency' => 'daily',
84
+ ),
85
+ array(
86
+ 'name_old' => 'reports_pruning',
87
+ 'name_new' => 'wsal_reports_pruning',
88
+ 'frequency' => 'daily',
89
+ ),
90
+ array(
91
+ 'name_old' => 'destroy_expired',
92
+ 'name_new' => 'wsal_destroy_expired',
93
+ 'frequency' => 'hourly',
94
+ ),
95
+ array(
96
+ 'name_old' => 'run_archiving',
97
+ 'name_new' => 'wsal_run_archiving',
98
+ 'frequency' => strtolower( $this->wsal->wsalCommonClass->GetArchivingRunEvery() ), // this is not static data.
99
+ ),
100
+ );
101
+
102
+ // Return an array of all the crons that are flagged for unscheduling.
103
+ return array_merge( $simple_crons, $complex_crons );
104
+ }
105
+
106
+ /**
107
+ * Get a list of crons that have args to maybe reschedule.
108
+ *
109
+ * @method get_crons_with_args_for_remap
110
+ * @since 3.5.1
111
+ * @param array $crons an array of existing crons we might add to.
112
+ * @return array
113
+ */
114
+ private function get_crons_with_args_for_remap( $crons = array() ) {
115
+ /*
116
+ * Get the scheduled mirrors and their args.
117
+ */
118
+ $mirrors = $this->wsal->GetNotificationsSetting( 'mirror-' );
119
+ if ( ! empty( $mirrors ) && is_array( $mirrors ) ) {
120
+ foreach ( $mirrors as $mirror ) {
121
+ $mirror_details = maybe_unserialize( $mirror->option_value );
122
+ // Check if mirror details are valid.
123
+ if ( ! empty( $mirror_details ) && $mirror_details instanceof \stdClass ) {
124
+ // Got a mirror to check.
125
+ if ( isset( $mirror_details->state ) && true === $mirror_details->state ) {
126
+ // Mirror is enabled so add it to the $crons array.
127
+ $crons[] = array(
128
+ 'name_old' => 'run_mirroring',
129
+ 'name_new' => 'wsal_run_mirroring',
130
+ 'frequency' => $mirror_details->frequency,
131
+ 'args' => array( $mirror_details->name ),
132
+ );
133
+ }
134
+ }
135
+ }
136
+ }
137
+ return $crons;
138
+ }
139
+
140
+ }
classes/Utilities/Emailer.php CHANGED
@@ -60,8 +60,20 @@ class WSAL_Utilities_Emailer {
60
  /* Translators: 1. User display name, 2. Home URL, 3. Date and time */
61
  $body .= sprintf( esc_html__( 'This is a notification to let you know that the user %1$s has deactivated the plugin WP Security Audit Log on the website %2$s on %3$s.', 'wp-security-audit-log' ), $display_name, '<a href="' . $home_url . '" target="_blank">' . $safe_url . '</a>', $date_time );
62
 
63
- // Send the email.
64
- self::send_email( get_bloginfo( 'admin_email' ), $subject, $body );
 
 
 
 
 
 
 
 
 
 
 
 
65
  }
66
 
67
  /**
60
  /* Translators: 1. User display name, 2. Home URL, 3. Date and time */
61
  $body .= sprintf( esc_html__( 'This is a notification to let you know that the user %1$s has deactivated the plugin WP Security Audit Log on the website %2$s on %3$s.', 'wp-security-audit-log' ), $display_name, '<a href="' . $home_url . '" target="_blank">' . $safe_url . '</a>', $date_time );
62
 
63
+ /**
64
+ * Get the email address to deliver the deactivation email to.
65
+ *
66
+ * Filterable and defaults to the admin email address.
67
+ *
68
+ * @since 3.5.2
69
+ *
70
+ * @var string
71
+ */
72
+ $delivery_address = apply_filters( 'wsal_filter_deactivation_email_delivery_address', get_bloginfo( 'admin_email' ) );
73
+ if ( filter_var( $delivery_address, FILTER_VALIDATE_EMAIL ) ) {
74
+ // Send the email.
75
+ self::send_email( $delivery_address, $subject, $body );
76
+ }
77
  }
78
 
79
  /**
classes/ViewManager.php CHANGED
@@ -464,7 +464,13 @@ class WSAL_ViewManager {
464
  $event = $this->_plugin->alerts->get_admin_bar_event( 'page-refresh' === $adn_updates ? true : false );
465
 
466
  if ( $event ) {
467
- $code = $this->_plugin->alerts->GetAlert( $event->alert_id );
 
 
 
 
 
 
468
  $admin_bar->add_node(
469
  array(
470
  'id' => 'wsal-menu',
464
  $event = $this->_plugin->alerts->get_admin_bar_event( 'page-refresh' === $adn_updates ? true : false );
465
 
466
  if ( $event ) {
467
+ $code = $this->_plugin->alerts->GetAlert(
468
+ $event->alert_id,
469
+ (object) array(
470
+ 'mesg' => __( 'Alert message not found.', 'wp-security-audit-log' ),
471
+ 'desc' => __( 'Alert description not found.', 'wp-security-audit-log' ),
472
+ )
473
+ );
474
  $admin_bar->add_node(
475
  array(
476
  'id' => 'wsal-menu',
classes/Views/Settings.php CHANGED
@@ -734,7 +734,24 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
734
  <!-- Reverse Proxy -->
735
 
736
  <h3><?php esc_html_e( 'Who can change the plugin settings?', 'wp-security-audit-log' ); ?></h3>
737
- <p class="description"><?php esc_html_e( 'By default only users with administrator or super administrator (multisite) roles can change the settings of the plugin. Though you can change these privileges from this section.', 'wp-security-audit-log' ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  <table class="form-table wsal-tab">
739
  <tbody>
740
  <tr>
@@ -793,7 +810,24 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
793
  <!-- Restrict Plugin Access -->
794
 
795
  <h3><?php esc_html_e( 'Allow other users to view the activity log', 'wp-security-audit-log' ); ?></h3>
796
- <p class="description"><?php esc_html_e( 'By default only users with administrator and super administrator (multisite) role can view the WordPress activity log. Though you can allow other users with no admin role to view the events.', 'wp-security-audit-log' ); ?></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
797
  <table class="form-table wsal-tab">
798
  <tbody>
799
  <tr>
@@ -1089,6 +1123,29 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1089
  </td>
1090
  </tr>
1091
  <!-- Alerts Timestamp -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1092
  </tbody>
1093
  </table>
1094
  <!-- Timestamp -->
@@ -1211,6 +1268,8 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1211
  if ( ! empty( $post_array['Columns'] ) ) {
1212
  $this->_plugin->settings->SetColumns( $post_array['Columns'] );
1213
  }
 
 
1214
  }
1215
 
1216
  /**
@@ -2332,10 +2391,16 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
2332
 
2333
  // Get custom post types.
2334
  $custom_post_types = array();
2335
- $output = 'names'; // names or objects, note names is the default
2336
- $operator = 'and'; // Conditions: and, or.
2337
- $post_types = get_post_types( array(), $output, $operator );
2338
- $post_types = array_diff( $post_types, array( 'attachment', 'revision', 'nav_menu_item', 'customize_changeset', 'custom_css' ) );
 
 
 
 
 
 
2339
  foreach ( $post_types as $post_type ) {
2340
  if ( strpos( $post_type, $get_array['term'] ) !== false ) {
2341
  array_push( $custom_post_types, $post_type );
734
  <!-- Reverse Proxy -->
735
 
736
  <h3><?php esc_html_e( 'Who can change the plugin settings?', 'wp-security-audit-log' ); ?></h3>
737
+ <p class="description">
738
+ <?php
739
+ $allowed_tags = array(
740
+ 'a' => array(
741
+ 'href' => true,
742
+ 'target' => true,
743
+ ),
744
+ );
745
+ echo wp_kses(
746
+ sprintf(
747
+ /* translators: Learn more link. */
748
+ esc_html__( 'By default only users with administrator or super administrator (multisite) roles can change the settings of the plugin. Though you can change these privileges from this section - %s.', 'wp-security-audit-log' ),
749
+ '<a href="https://www.wpsecurityauditlog.com/support-documentation/managing-wordpress-activity-log-plugin-privileges/" target="_blank">' . __( 'learn more', 'wp-security-audit-log' ) . '</a>'
750
+ ),
751
+ $allowed_tags
752
+ );
753
+ ?>
754
+ </p>
755
  <table class="form-table wsal-tab">
756
  <tbody>
757
  <tr>
810
  <!-- Restrict Plugin Access -->
811
 
812
  <h3><?php esc_html_e( 'Allow other users to view the activity log', 'wp-security-audit-log' ); ?></h3>
813
+ <p class="description">
814
+ <?php
815
+ $allowed_tags = array(
816
+ 'a' => array(
817
+ 'href' => true,
818
+ 'target' => true,
819
+ ),
820
+ );
821
+ echo wp_kses(
822
+ sprintf(
823
+ /* translators: Learn more link. */
824
+ esc_html__( 'By default only users with administrator and super administrator (multisite) role can view the WordPress activity log. Though you can allow other users with no admin role to view the events - %s.', 'wp-security-audit-log' ),
825
+ '<a href="https://www.wpsecurityauditlog.com/support-documentation/can-allow-users-access-audit-trail/" target="_blank">' . __( 'learn more', 'wp-security-audit-log' ) . '</a>'
826
+ ),
827
+ $allowed_tags
828
+ );
829
+ ?>
830
+ </p>
831
  <table class="form-table wsal-tab">
832
  <tbody>
833
  <tr>
1123
  </td>
1124
  </tr>
1125
  <!-- Alerts Timestamp -->
1126
+ <tr>
1127
+ <th><?php esc_html_e( 'Show Microseconds', 'wp-security-audit-log' ); ?></th>
1128
+ <td>
1129
+ <fieldset>
1130
+ <?php
1131
+ $show_microseconds = $this->_plugin->settings->get_show_microseconds();
1132
+
1133
+ /**
1134
+ * Transform microsecond values incase of bool.
1135
+ */
1136
+ if ( 'no' !== $show_microseconds ) {
1137
+ $show_microseconds = 'yes';
1138
+ }
1139
+ ?>
1140
+ <label for="show_microseconds">
1141
+ <input type="checkbox" name="show_microseconds" id="show_microseconds" style="margin-top: -2px;"
1142
+ <?php checked( $show_microseconds, 'yes' ); ?> value="yes">
1143
+ <?php esc_html_e( 'Show Microseconds in list view', 'wp-security-audit-log' ); ?>
1144
+ </label>
1145
+ </fieldset>
1146
+ </td>
1147
+ </tr>
1148
+ <!-- Alerts Timestamp -->
1149
  </tbody>
1150
  </table>
1151
  <!-- Timestamp -->
1268
  if ( ! empty( $post_array['Columns'] ) ) {
1269
  $this->_plugin->settings->SetColumns( $post_array['Columns'] );
1270
  }
1271
+ $show_microseconds = ( isset( $post_array['show_microseconds'] ) && 'yes' === $post_array['show_microseconds'] ) ? true : false;
1272
+ $this->_plugin->settings->set_show_microseconds( $show_microseconds );
1273
  }
1274
 
1275
  /**
2391
 
2392
  // Get custom post types.
2393
  $custom_post_types = array();
2394
+ $post_types = get_post_types( array(), 'names' );
2395
+ // if we are running multisite and have networkwide cpt tracker get the
2396
+ // list from and merge to the post_types array.
2397
+ if ( is_multisite() && class_exists( '\WSAL\Multisite\NetworkWide\CPTsTracker' ) ) {
2398
+ $network_cpts = \WSAL\Multisite\NetworkWide\CPTsTracker::get_network_data_list();
2399
+ foreach ( $network_cpts as $cpt ) {
2400
+ $post_types[ $cpt ] = $cpt;
2401
+ }
2402
+ }
2403
+ $post_types = array_diff( $post_types, array( 'attachment', 'revision', 'nav_menu_item', 'customize_changeset', 'custom_css' ) );
2404
  foreach ( $post_types as $post_type ) {
2405
  if ( strpos( $post_type, $get_array['term'] ) !== false ) {
2406
  array_push( $custom_post_types, $post_type );
defaults.php CHANGED
@@ -30,18 +30,33 @@ defined( 'E_USER_DEPRECATED' ) || define( 'E_USER_DEPRECATED', 'E_USER_DEPRECATE
30
  * @param WpSecurityAuditLog $wsal - Instance of main plugin.
31
  */
32
  function load_include_custom_file( $wsal ) {
 
 
33
  $upload_dir = wp_upload_dir();
34
  $uploads_dir_path = trailingslashit( $upload_dir['basedir'] ) . 'wp-security-audit-log';
35
- // Check directory.
36
- if ( is_dir( $uploads_dir_path ) && is_readable( $uploads_dir_path ) ) {
37
- $file = $uploads_dir_path . DIRECTORY_SEPARATOR . 'custom-alerts.php';
38
- if ( file_exists( $file ) ) {
39
- require_once $file;
40
- if ( ! empty( $custom_alerts ) && is_array( $custom_alerts ) ) {
41
- try {
42
- $wsal->alerts->RegisterGroup( $custom_alerts );
43
- } catch ( Exception $ex ) {
44
- $wsal->wsal_log( $ex->getMessage() );
 
 
 
 
 
 
 
 
 
 
 
 
 
45
  }
46
  }
47
  }
30
  * @param WpSecurityAuditLog $wsal - Instance of main plugin.
31
  */
32
  function load_include_custom_file( $wsal ) {
33
+ // Custom alerts can be added via a special file inside the file and dir
34
+ // wp-uploads/wp-security-audit-log/custom-alerts.php.
35
  $upload_dir = wp_upload_dir();
36
  $uploads_dir_path = trailingslashit( $upload_dir['basedir'] ) . 'wp-security-audit-log';
37
+
38
+ /*
39
+ * Get an array of directories to loop through to add custom alerts.
40
+ *
41
+ * Passed through a filter so other plugins or code can add own custom
42
+ * alerts files by adding the containing directory to this array.
43
+ *
44
+ * @since 3.5.2 - Added the `wsal_custom_alerts_dirs` filter.
45
+ */
46
+ $paths = apply_filters( 'wsal_custom_alerts_dirs', array( $uploads_dir_path ) );
47
+ foreach ( $paths as $inc_path ) {
48
+ // Check directory.
49
+ if ( is_dir( $inc_path ) && is_readable( $inc_path ) ) {
50
+ $file = $inc_path . DIRECTORY_SEPARATOR . 'custom-alerts.php';
51
+ if ( file_exists( $file ) ) {
52
+ // A file exists that should contain custom alerts - require it.
53
+ require_once $file;
54
+ if ( ! empty( $custom_alerts ) && is_array( $custom_alerts ) ) {
55
+ try {
56
+ $wsal->alerts->RegisterGroup( $custom_alerts );
57
+ } catch ( Exception $ex ) {
58
+ $wsal->wsal_log( $ex->getMessage() );
59
+ }
60
  }
61
  }
62
  }
languages/wp-security-audit-log.pot CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: WP Security Audit Log\n"
6
- "POT-Creation-Date: 2019-10-24 11:30+0200\n"
7
- "PO-Revision-Date: 2019-10-24 11:30+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -22,60 +22,60 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
  #. translators: Event ID
25
- #: classes/AlertManager.php:340
26
  #, php-format
27
  msgid "Event with code %d has not be registered."
28
  msgstr ""
29
 
30
- #: classes/AlertManager.php:395
31
  #, php-format
32
  msgid "Event %s already registered with WP Security Audit Log."
33
  msgstr ""
34
 
35
- #: classes/AlertManager.php:430
36
  msgid ""
37
  "You have custom events that are using the same ID or IDs which are already "
38
  "registered in the plugin, so they have been disabled."
39
  msgstr ""
40
 
41
- #: classes/AlertManager.php:433
42
  #, php-format
43
  msgid "%4$s to help you solve this issue."
44
  msgstr ""
45
 
46
- #: classes/AlertManager.php:435
47
  msgid "ERROR:"
48
  msgstr ""
49
 
50
- #: classes/AlertManager.php:437
51
  msgid "Contact us"
52
  msgstr ""
53
 
54
- #: classes/AlertManager.php:1216 classes/Views/ToggleAlerts.php:239
55
- #: classes/Views/ToggleAlerts.php:271 defaults.php:306
56
  msgid "Pages"
57
  msgstr ""
58
 
59
- #: classes/AlertManager.php:1216 classes/Views/ToggleAlerts.php:239
60
- #: classes/Views/ToggleAlerts.php:271 defaults.php:266
61
  msgid "Custom Post Types"
62
  msgstr ""
63
 
64
- #: classes/AlertManager.php:1538
65
  msgid "System Activity"
66
  msgstr ""
67
 
68
- #: classes/AlertManager.php:1598 classes/AuditLogListView.php:438
69
  msgid "Unknown error code."
70
  msgstr ""
71
 
72
- #: classes/AlertManager.php:1605 classes/AlertManager.php:1617
73
  msgid "Unknown Site"
74
  msgstr ""
75
 
76
- #: classes/AlertManager.php:1639 classes/AuditLogListView.php:513
77
  #: classes/Views/ToggleAlerts.php:424 classes/Views/ToggleAlerts.php:462
78
- #: defaults.php:390
79
  msgid "System"
80
  msgstr ""
81
 
@@ -107,7 +107,7 @@ msgstr ""
107
  msgid "Archive Database"
108
  msgstr ""
109
 
110
- #: classes/AuditLogListView.php:303 classes/Views/Settings.php:1147
111
  #: classes/WidgetManager.php:82
112
  msgid "User"
113
  msgstr ""
@@ -117,12 +117,12 @@ msgid "Username"
117
  msgstr ""
118
 
119
  #: classes/AuditLogListView.php:310 classes/AuditLogListView.php:336
120
- #: classes/Views/Settings.php:1141
121
  msgid "Event ID"
122
  msgstr ""
123
 
124
  #: classes/AuditLogListView.php:311 classes/AuditLogListView.php:339
125
- #: classes/Views/Settings.php:1143 classes/Views/ToggleAlerts.php:320
126
  msgid "Severity"
127
  msgstr ""
128
 
@@ -146,78 +146,88 @@ msgstr ""
146
  msgid "Click to toggle."
147
  msgstr ""
148
 
149
- #: classes/AuditLogListView.php:430
 
 
 
 
 
 
 
 
 
 
150
  msgid "Disable this type of events."
151
  msgstr ""
152
 
153
- #: classes/AuditLogListView.php:442 classes/Views/ToggleAlerts.php:496
154
  msgid "Critical"
155
  msgstr ""
156
 
157
- #: classes/AuditLogListView.php:444 classes/Views/ToggleAlerts.php:498
158
  msgid "Warning"
159
  msgstr ""
160
 
161
- #: classes/AuditLogListView.php:446 classes/Views/ToggleAlerts.php:500
162
  #: classes/Views/ToggleAlerts.php:502
163
  msgid "Notification"
164
  msgstr ""
165
 
166
- #: classes/AuditLogListView.php:456 classes/AuditLogListView.php:497
167
  msgid "Unknown"
168
  msgstr ""
169
 
170
- #: classes/AuditLogListView.php:482
171
  msgid "Show me all activity by this User"
172
  msgstr ""
173
 
174
- #: classes/AuditLogListView.php:501 classes/Views/Licensing.php:113
175
  #: classes/Views/Licensing.php:153
176
  msgid "Plugin"
177
  msgstr ""
178
 
179
- #: classes/AuditLogListView.php:505 defaults.php:357
180
  msgid "Plugins"
181
  msgstr ""
182
 
183
- #: classes/AuditLogListView.php:509
184
  msgid "Website Visitor"
185
  msgstr ""
186
 
187
- #: classes/AuditLogListView.php:545 classes/AuditLogListView.php:558
188
  msgid "Show me all activity originating from this IP Address"
189
  msgstr ""
190
 
191
- #: classes/AuditLogListView.php:587
192
  msgid "View all details of this change"
193
  msgstr ""
194
 
195
- #: classes/AuditLogListView.php:588 classes/AuditLogListView.php:738
196
- #: classes/Settings.php:1714
197
  msgid "Alert Data Inspector"
198
  msgstr ""
199
 
200
- #: classes/AuditLogListView.php:690 classes/Settings.php:1653
201
  msgid "Download the log file"
202
  msgstr ""
203
 
204
- #: classes/AuditLogListView.php:710 classes/Settings.php:1678
205
  msgid "Download the log file."
206
  msgstr ""
207
 
208
- #: classes/AuditLogListView.php:718 classes/Settings.php:1686
209
- #: classes/Settings.php:1932
210
  msgid "published"
211
  msgstr ""
212
 
213
  #. translators: Mailto link for support.
214
- #: classes/AuditLogListView.php:746 classes/Settings.php:1725
215
- #: classes/Settings.php:1958
216
  #, php-format
217
  msgid "Contact us on %s for assistance"
218
  msgstr ""
219
 
220
- #: classes/AuditLogListView.php:880
221
  msgid "Select All"
222
  msgstr ""
223
 
@@ -321,6 +331,13 @@ msgstr ""
321
  msgid "More Information"
322
  msgstr ""
323
 
 
 
 
 
 
 
 
324
  #: classes/Sensors/Content.php:985 classes/Sensors/Content.php:993
325
  #: classes/Sensors/WooCommerce.php:581 classes/Sensors/WooCommerce.php:589
326
  msgid "Password Protected"
@@ -368,48 +385,48 @@ msgstr ""
368
  msgid "This function is deprecated"
369
  msgstr ""
370
 
371
- #: classes/Settings.php:1620
372
  msgid "View Order"
373
  msgstr ""
374
 
375
- #: classes/Settings.php:1737 classes/Settings.php:1970
376
  msgid "plugin settings"
377
  msgstr ""
378
 
379
- #: classes/Settings.php:1740 classes/Settings.php:1973
380
  msgid "contact our support"
381
  msgstr ""
382
 
383
- #: classes/Settings.php:2176
384
  msgid "Root directory of WordPress (excluding sub directories)"
385
  msgstr ""
386
 
387
- #: classes/Settings.php:2177
388
  msgid "WP Admin directory (/wp-admin/)"
389
  msgstr ""
390
 
391
- #: classes/Settings.php:2178
392
  msgid "WP Includes directory (/wp-includes/)"
393
  msgstr ""
394
 
395
- #: classes/Settings.php:2179
396
  msgid ""
397
  "/wp-content/ directory (excluding plugins, themes & uploads directories)"
398
  msgstr ""
399
 
400
- #: classes/Settings.php:2180
401
  msgid "Themes directory (/wp-content/themes/)"
402
  msgstr ""
403
 
404
- #: classes/Settings.php:2181
405
  msgid "Plugins directory (/wp-content/plugins/)"
406
  msgstr ""
407
 
408
- #: classes/Settings.php:2182
409
  msgid "Uploads directory (/wp-content/uploads/)"
410
  msgstr ""
411
 
412
- #: classes/Settings.php:2187
413
  msgid ""
414
  "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
415
  msgstr ""
@@ -430,30 +447,30 @@ msgid ""
430
  "the plugin WP Security Audit Log on the website %2$s on %3$s."
431
  msgstr ""
432
 
433
- #: classes/ViewManager.php:260
434
  msgid "Free Premium Trial"
435
  msgstr ""
436
 
437
- #: classes/ViewManager.php:485 classes/Views/Settings.php:255
438
- #: classes/Views/Settings.php:2703 classes/Views/Settings.php:2732
439
  #: classes/Views/SetupWizard.php:66
440
  msgid "Access Denied."
441
  msgstr ""
442
 
443
- #: classes/ViewManager.php:516
444
  msgid "Log count parameter expected."
445
  msgstr ""
446
 
447
- #: classes/ViewManager.php:524 classes/Views/AuditLog.php:651
448
  #: classes/Views/AuditLog.php:728 classes/Views/AuditLog.php:754
449
  #: classes/Views/AuditLog.php:1059 classes/Views/AuditLog.php:1129
450
  #: classes/Views/Licensing.php:90 classes/Views/Settings.php:270
451
- #: classes/Views/Settings.php:2272 classes/Views/Settings.php:2300
452
- #: classes/Views/Settings.php:2330 classes/Views/Settings.php:2369
453
- #: classes/Views/Settings.php:2371 classes/Views/Settings.php:2373
454
- #: classes/Views/Settings.php:2488 classes/Views/Settings.php:2490
455
- #: classes/Views/Settings.php:2492 classes/Views/Settings.php:2586
456
- #: classes/Views/Settings.php:2679 classes/Views/SetupWizard.php:81
457
  msgid "Nonce verification failed."
458
  msgstr ""
459
 
@@ -557,10 +574,10 @@ msgstr ""
557
 
558
  #: classes/Views/AuditLog.php:427 classes/Views/Settings.php:564
559
  #: classes/Views/Settings.php:591 classes/Views/Settings.php:657
560
- #: classes/Views/Settings.php:715 classes/Views/Settings.php:1176
561
- #: classes/Views/Settings.php:1241 classes/Views/Settings.php:2006
562
- #: classes/Views/Settings.php:2067 classes/Views/Settings.php:2095
563
- #: classes/Views/Settings.php:2116 classes/Views/Settings.php:2126
564
  #: classes/Views/SetupWizard.php:465 classes/Views/SetupWizard.php:513
565
  #: classes/Views/SetupWizard.php:676
566
  msgid "Yes"
@@ -568,10 +585,10 @@ msgstr ""
568
 
569
  #: classes/Views/AuditLog.php:428 classes/Views/Settings.php:569
570
  #: classes/Views/Settings.php:596 classes/Views/Settings.php:687
571
- #: classes/Views/Settings.php:725 classes/Views/Settings.php:1181
572
- #: classes/Views/Settings.php:1248 classes/Views/Settings.php:2011
573
- #: classes/Views/Settings.php:2074 classes/Views/Settings.php:2102
574
- #: classes/Views/Settings.php:2117 classes/Views/Settings.php:2127
575
  #: classes/Views/SetupWizard.php:470 classes/Views/SetupWizard.php:518
576
  #: classes/Views/SetupWizard.php:671
577
  msgid "No"
@@ -1240,7 +1257,7 @@ msgstr ""
1240
  msgid "Login Page Notification"
1241
  msgstr ""
1242
 
1243
- #: classes/Views/Settings.php:663 wp-security-audit-log.php:1847
1244
  msgid ""
1245
  "For security and auditing purposes, a record of all of your logged-in "
1246
  "actions and changes within the WordPress dashboard will be recorded in an "
@@ -1271,7 +1288,8 @@ msgid ""
1271
  "plugin retrieves the end user’s IP address from the proxy header - %s."
1272
  msgstr ""
1273
 
1274
- #: classes/Views/Settings.php:703
 
1275
  msgid "learn more"
1276
  msgstr ""
1277
 
@@ -1290,96 +1308,100 @@ msgstr ""
1290
  msgid "Who can change the plugin settings?"
1291
  msgstr ""
1292
 
1293
- #: classes/Views/Settings.php:737
 
 
1294
  msgid ""
1295
  "By default only users with administrator or super administrator (multisite) "
1296
  "roles can change the settings of the plugin. Though you can change these "
1297
- "privileges from this section."
1298
  msgstr ""
1299
 
1300
- #: classes/Views/Settings.php:741
1301
  msgid "Restrict Plugin Access"
1302
  msgstr ""
1303
 
1304
- #: classes/Views/Settings.php:747
1305
  msgid "Only me"
1306
  msgstr ""
1307
 
1308
- #: classes/Views/Settings.php:752
1309
  msgid "Only administrators"
1310
  msgstr ""
1311
 
1312
- #: classes/Views/Settings.php:758
1313
  msgid "Only superadmins"
1314
  msgstr ""
1315
 
1316
- #: classes/Views/Settings.php:764
1317
  msgid "All these users or users with these roles"
1318
  msgstr ""
1319
 
1320
- #: classes/Views/Settings.php:766
1321
  msgid ""
1322
  "Specify the username or the users which can change the plugin settings. You "
1323
  "can also specify roles."
1324
  msgstr ""
1325
 
1326
- #: classes/Views/Settings.php:795
1327
  msgid "Allow other users to view the activity log"
1328
  msgstr ""
1329
 
1330
- #: classes/Views/Settings.php:796
 
 
1331
  msgid ""
1332
  "By default only users with administrator and super administrator (multisite) "
1333
  "role can view the WordPress activity log. Though you can allow other users "
1334
- "with no admin role to view the events."
1335
  msgstr ""
1336
 
1337
- #: classes/Views/Settings.php:800
1338
  msgid "Can View Events"
1339
  msgstr ""
1340
 
1341
- #: classes/Views/Settings.php:808
1342
  msgid ""
1343
  "Specify the username or the users which do not have an admin role but can "
1344
  "also see the WordPress activity role. You can also specify roles."
1345
  msgstr ""
1346
 
1347
- #: classes/Views/Settings.php:834
1348
  msgid "Which email address should the plugin use as a from address?"
1349
  msgstr ""
1350
 
1351
- #: classes/Views/Settings.php:835
1352
  msgid ""
1353
  "By default when the plugin sends an email notification it uses the email "
1354
  "address specified in this website’s general settings. Though you can change "
1355
  "the email address and display name from this section."
1356
  msgstr ""
1357
 
1358
- #: classes/Views/Settings.php:839
1359
  msgid "From Email & Name"
1360
  msgstr ""
1361
 
1362
- #: classes/Views/Settings.php:845
1363
  msgid "Use the email address from the WordPress general settings"
1364
  msgstr ""
1365
 
1366
- #: classes/Views/Settings.php:850
1367
  msgid "Use another email address"
1368
  msgstr ""
1369
 
1370
- #: classes/Views/Settings.php:854
1371
  msgid "Email Address"
1372
  msgstr ""
1373
 
1374
- #: classes/Views/Settings.php:859
1375
  msgid "Display Name"
1376
  msgstr ""
1377
 
1378
- #: classes/Views/Settings.php:870
1379
  msgid "Do you want to hide the plugin from the list of installed plugins?"
1380
  msgstr ""
1381
 
1382
- #: classes/Views/Settings.php:871
1383
  msgid ""
1384
  "By default all installed plugins are listed in the plugins page. If you do "
1385
  "not want other administrators to see that you installed this plugin set this "
@@ -1387,32 +1409,32 @@ msgid ""
1387
  "plugin on this website."
1388
  msgstr ""
1389
 
1390
- #: classes/Views/Settings.php:875
1391
  msgid "Hide Plugin in Plugins Page"
1392
  msgstr ""
1393
 
1394
- #: classes/Views/Settings.php:880
1395
  msgid "Yes, hide the plugin from the list of installed plugins"
1396
  msgstr ""
1397
 
1398
- #: classes/Views/Settings.php:885
1399
  msgid "No, do not hide the plugin"
1400
  msgstr ""
1401
 
1402
- #: classes/Views/Settings.php:955
1403
  msgid ""
1404
  "For how long do you want to keep the activity log events (Retention "
1405
  "settings) ?"
1406
  msgstr ""
1407
 
1408
- #: classes/Views/Settings.php:958
1409
  msgid ""
1410
  "The plugin uses an efficient way to store the activity log data in the "
1411
  "WordPress database, though the more data you keep the more disk space will "
1412
  "be required. "
1413
  msgstr ""
1414
 
1415
- #: classes/Views/Settings.php:959
1416
  msgid ""
1417
  "<a href=\"https://www.wpsecurityauditlog.com/pricing/\" target=\"_blank"
1418
  "\">Upgrade to Premium</a> to store the activity log data in an external "
@@ -1420,74 +1442,82 @@ msgid ""
1420
  msgstr ""
1421
 
1422
  #. translators: 1: Archive page link tag. 2: Link closing tag.
1423
- #: classes/Views/Settings.php:977
1424
  #, php-format
1425
  msgid ""
1426
  "Retention settings moved to %1$s archiving settings %2$s because archiving "
1427
  "is enabled"
1428
  msgstr ""
1429
 
1430
- #: classes/Views/Settings.php:984
1431
  msgid "Audit Log Retention"
1432
  msgstr ""
1433
 
1434
- #: classes/Views/Settings.php:990
1435
  msgid "Keep all data"
1436
  msgstr ""
1437
 
1438
- #: classes/Views/Settings.php:1017
1439
  msgid "Delete events older than"
1440
  msgstr ""
1441
 
1442
- #: classes/Views/Settings.php:1024
1443
  msgid "Months"
1444
  msgstr ""
1445
 
1446
- #: classes/Views/Settings.php:1025
1447
  msgid "Years"
1448
  msgstr ""
1449
 
1450
- #: classes/Views/Settings.php:1033
1451
  msgid "The next scheduled purging of activity log data that is older than "
1452
  msgstr ""
1453
 
1454
- #: classes/Views/Settings.php:1040
1455
  msgid "You can run the purging process now by clicking the button below."
1456
  msgstr ""
1457
 
1458
- #: classes/Views/Settings.php:1044
1459
  msgid "Purge Old Data"
1460
  msgstr ""
1461
 
1462
- #: classes/Views/Settings.php:1055
1463
  msgid "What timestamp you would like to see in the WordPress activity log?"
1464
  msgstr ""
1465
 
1466
- #: classes/Views/Settings.php:1056
1467
  msgid ""
1468
  "Note that the WordPress' timezone might be different from that configured on "
1469
  "the server so when you switch from UTC to WordPress timezone or vice versa "
1470
  "you might notice a big difference."
1471
  msgstr ""
1472
 
1473
- #: classes/Views/Settings.php:1060
1474
  msgid "Events Timestamp"
1475
  msgstr ""
1476
 
1477
- #: classes/Views/Settings.php:1080
1478
  msgid "UTC"
1479
  msgstr ""
1480
 
1481
- #: classes/Views/Settings.php:1086
1482
  msgid "Timezone configured on this WordPress website"
1483
  msgstr ""
1484
 
1485
- #: classes/Views/Settings.php:1096
 
 
 
 
 
 
 
 
1486
  msgid ""
1487
  "What user information should be displayed in the WordPress activity log?"
1488
  msgstr ""
1489
 
1490
- #: classes/Views/Settings.php:1097
1491
  msgid ""
1492
  "Usernames might not be the same as a user's first and last name so it can be "
1493
  "difficult to recognize whose user was that did a change. When there is no "
@@ -1495,50 +1525,50 @@ msgid ""
1495
  "back to the WordPress username."
1496
  msgstr ""
1497
 
1498
- #: classes/Views/Settings.php:1101
1499
  msgid "User Information in Audit Log"
1500
  msgstr ""
1501
 
1502
- #: classes/Views/Settings.php:1107
1503
  msgid "WordPress Username"
1504
  msgstr ""
1505
 
1506
- #: classes/Views/Settings.php:1112
1507
  msgid "First Name & Last Name"
1508
  msgstr ""
1509
 
1510
- #: classes/Views/Settings.php:1117
1511
  msgid "Configured Public Display Name"
1512
  msgstr ""
1513
 
1514
- #: classes/Views/Settings.php:1127
1515
  msgid "Select the columns to be displayed in the WordPress activity log"
1516
  msgstr ""
1517
 
1518
- #: classes/Views/Settings.php:1128
1519
  msgid ""
1520
  "When you deselect a column it won’t be shown in the activity log viewer but "
1521
  "the data will still be recorded by the plugin, so when you select it again "
1522
  "all the data will be displayed."
1523
  msgstr ""
1524
 
1525
- #: classes/Views/Settings.php:1132
1526
  msgid "Audit Log Columns Selection"
1527
  msgstr ""
1528
 
1529
- #: classes/Views/Settings.php:1145
1530
  msgid "Date & Time"
1531
  msgstr ""
1532
 
1533
- #: classes/Views/Settings.php:1149
1534
  msgid "Source IP Address"
1535
  msgstr ""
1536
 
1537
- #: classes/Views/Settings.php:1164
1538
  msgid "Do you want to keep a log of WordPress background activity?"
1539
  msgstr ""
1540
 
1541
- #: classes/Views/Settings.php:1166
1542
  msgid ""
1543
  "WordPress does a lot of things in the background that you do not necessarily "
1544
  "need to know about, such as; deletion of post revisions, deletion of auto "
@@ -1546,38 +1576,38 @@ msgid ""
1546
  "might be a lot and are irrelevant to the user."
1547
  msgstr ""
1548
 
1549
- #: classes/Views/Settings.php:1171
1550
  msgid "Enable Events for WordPress Background Activity"
1551
  msgstr ""
1552
 
1553
- #: classes/Views/Settings.php:1224
1554
  msgid ""
1555
  "The plugin runs file integrity scans on your website so it keeps a log when "
1556
  "a file is added, modified or deleted. All the settings for the file "
1557
  "integrity scans can be found in this page."
1558
  msgstr ""
1559
 
1560
- #: classes/Views/Settings.php:1225
1561
  msgid ""
1562
  "<a href=\"https://www.wpsecurityauditlog.com/support-documentation/wordpress-"
1563
  "files-changes-warning-activity-logs/\" target=\"_blank\">Refer to the "
1564
  "WordPress file integrity scans feature page</a> for more information."
1565
  msgstr ""
1566
 
1567
- #: classes/Views/Settings.php:1228
1568
  msgid "Do you want the plugin to scan your website for file changes?"
1569
  msgstr ""
1570
 
1571
- #: classes/Views/Settings.php:1233
1572
  msgid "Keep a Log of File Changes"
1573
  msgstr ""
1574
 
1575
- #: classes/Views/Settings.php:1257
1576
  msgid ""
1577
  "Which file changes events do you want to keep a log of in the activity log?"
1578
  msgstr ""
1579
 
1580
- #: classes/Views/Settings.php:1259
1581
  msgid ""
1582
  "By default the plugin will keep a log whenever a file has been added, "
1583
  "modified or deleted. It will also log an event in the activity log when a "
@@ -1585,19 +1615,19 @@ msgid ""
1585
  "link to specify which of these events the plugin should keep a log of."
1586
  msgstr ""
1587
 
1588
- #: classes/Views/Settings.php:1265
1589
  msgid "Alert me when"
1590
  msgstr ""
1591
 
1592
- #: classes/Views/Settings.php:1278
1593
  msgid "Configure Events"
1594
  msgstr ""
1595
 
1596
- #: classes/Views/Settings.php:1287
1597
  msgid "When should the plugin scan your website for file changes?"
1598
  msgstr ""
1599
 
1600
- #: classes/Views/Settings.php:1289
1601
  msgid ""
1602
  "By default the plugin will run file integrity scans once a week. If you can, "
1603
  "ideally you should run file integrity scans on a daily basis. The file "
@@ -1607,283 +1637,283 @@ msgid ""
1607
  "complete."
1608
  msgstr ""
1609
 
1610
- #: classes/Views/Settings.php:1295
1611
  msgid "Scan Frequency"
1612
  msgstr ""
1613
 
1614
- #: classes/Views/Settings.php:1300
1615
  msgid "Daily"
1616
  msgstr ""
1617
 
1618
- #: classes/Views/Settings.php:1301
1619
  msgid "Weekly"
1620
  msgstr ""
1621
 
1622
- #: classes/Views/Settings.php:1302
1623
  msgid "Monthly"
1624
  msgstr ""
1625
 
1626
- #: classes/Views/Settings.php:1320
1627
  msgid "Scan Time"
1628
  msgstr ""
1629
 
1630
- #: classes/Views/Settings.php:1326
1631
  msgid "00:00"
1632
  msgstr ""
1633
 
1634
- #: classes/Views/Settings.php:1327
1635
  msgid "01:00"
1636
  msgstr ""
1637
 
1638
- #: classes/Views/Settings.php:1328
1639
  msgid "02:00"
1640
  msgstr ""
1641
 
1642
- #: classes/Views/Settings.php:1329
1643
  msgid "03:00"
1644
  msgstr ""
1645
 
1646
- #: classes/Views/Settings.php:1330
1647
  msgid "04:00"
1648
  msgstr ""
1649
 
1650
- #: classes/Views/Settings.php:1331
1651
  msgid "05:00"
1652
  msgstr ""
1653
 
1654
- #: classes/Views/Settings.php:1332
1655
  msgid "06:00"
1656
  msgstr ""
1657
 
1658
- #: classes/Views/Settings.php:1333
1659
  msgid "07:00"
1660
  msgstr ""
1661
 
1662
- #: classes/Views/Settings.php:1334
1663
  msgid "08:00"
1664
  msgstr ""
1665
 
1666
- #: classes/Views/Settings.php:1335
1667
  msgid "09:00"
1668
  msgstr ""
1669
 
1670
- #: classes/Views/Settings.php:1336
1671
  msgid "10:00"
1672
  msgstr ""
1673
 
1674
- #: classes/Views/Settings.php:1337
1675
  msgid "11:00"
1676
  msgstr ""
1677
 
1678
- #: classes/Views/Settings.php:1338
1679
  msgid "12:00"
1680
  msgstr ""
1681
 
1682
- #: classes/Views/Settings.php:1339
1683
  msgid "13:00"
1684
  msgstr ""
1685
 
1686
- #: classes/Views/Settings.php:1340
1687
  msgid "14:00"
1688
  msgstr ""
1689
 
1690
- #: classes/Views/Settings.php:1341
1691
  msgid "15:00"
1692
  msgstr ""
1693
 
1694
- #: classes/Views/Settings.php:1342
1695
  msgid "16:00"
1696
  msgstr ""
1697
 
1698
- #: classes/Views/Settings.php:1343
1699
  msgid "17:00"
1700
  msgstr ""
1701
 
1702
- #: classes/Views/Settings.php:1344
1703
  msgid "18:00"
1704
  msgstr ""
1705
 
1706
- #: classes/Views/Settings.php:1345
1707
  msgid "19:00"
1708
  msgstr ""
1709
 
1710
- #: classes/Views/Settings.php:1346
1711
  msgid "20:00"
1712
  msgstr ""
1713
 
1714
- #: classes/Views/Settings.php:1347
1715
  msgid "21:00"
1716
  msgstr ""
1717
 
1718
- #: classes/Views/Settings.php:1348
1719
  msgid "22:00"
1720
  msgstr ""
1721
 
1722
- #: classes/Views/Settings.php:1349
1723
  msgid "23:00"
1724
  msgstr ""
1725
 
1726
- #: classes/Views/Settings.php:1354
1727
  msgid "Monday"
1728
  msgstr ""
1729
 
1730
- #: classes/Views/Settings.php:1355
1731
  msgid "Tuesday"
1732
  msgstr ""
1733
 
1734
- #: classes/Views/Settings.php:1356
1735
  msgid "Wednesday"
1736
  msgstr ""
1737
 
1738
- #: classes/Views/Settings.php:1357
1739
  msgid "Thursday"
1740
  msgstr ""
1741
 
1742
- #: classes/Views/Settings.php:1358
1743
  msgid "Friday"
1744
  msgstr ""
1745
 
1746
- #: classes/Views/Settings.php:1359
1747
  msgid "Saturday"
1748
  msgstr ""
1749
 
1750
- #: classes/Views/Settings.php:1360
1751
  msgid "Sunday"
1752
  msgstr ""
1753
 
1754
- #: classes/Views/Settings.php:1365
1755
  msgid "01"
1756
  msgstr ""
1757
 
1758
- #: classes/Views/Settings.php:1366
1759
  msgid "02"
1760
  msgstr ""
1761
 
1762
- #: classes/Views/Settings.php:1367
1763
  msgid "03"
1764
  msgstr ""
1765
 
1766
- #: classes/Views/Settings.php:1368
1767
  msgid "04"
1768
  msgstr ""
1769
 
1770
- #: classes/Views/Settings.php:1369
1771
  msgid "05"
1772
  msgstr ""
1773
 
1774
- #: classes/Views/Settings.php:1370
1775
  msgid "06"
1776
  msgstr ""
1777
 
1778
- #: classes/Views/Settings.php:1371
1779
  msgid "07"
1780
  msgstr ""
1781
 
1782
- #: classes/Views/Settings.php:1372
1783
  msgid "08"
1784
  msgstr ""
1785
 
1786
- #: classes/Views/Settings.php:1373
1787
  msgid "09"
1788
  msgstr ""
1789
 
1790
- #: classes/Views/Settings.php:1374
1791
  msgid "10"
1792
  msgstr ""
1793
 
1794
- #: classes/Views/Settings.php:1375
1795
  msgid "11"
1796
  msgstr ""
1797
 
1798
- #: classes/Views/Settings.php:1376
1799
  msgid "12"
1800
  msgstr ""
1801
 
1802
- #: classes/Views/Settings.php:1377
1803
  msgid "13"
1804
  msgstr ""
1805
 
1806
- #: classes/Views/Settings.php:1378
1807
  msgid "14"
1808
  msgstr ""
1809
 
1810
- #: classes/Views/Settings.php:1379
1811
  msgid "15"
1812
  msgstr ""
1813
 
1814
- #: classes/Views/Settings.php:1380
1815
  msgid "16"
1816
  msgstr ""
1817
 
1818
- #: classes/Views/Settings.php:1381
1819
  msgid "17"
1820
  msgstr ""
1821
 
1822
- #: classes/Views/Settings.php:1382
1823
  msgid "18"
1824
  msgstr ""
1825
 
1826
- #: classes/Views/Settings.php:1383
1827
  msgid "19"
1828
  msgstr ""
1829
 
1830
- #: classes/Views/Settings.php:1384
1831
  msgid "20"
1832
  msgstr ""
1833
 
1834
- #: classes/Views/Settings.php:1385
1835
  msgid "21"
1836
  msgstr ""
1837
 
1838
- #: classes/Views/Settings.php:1386
1839
  msgid "22"
1840
  msgstr ""
1841
 
1842
- #: classes/Views/Settings.php:1387
1843
  msgid "23"
1844
  msgstr ""
1845
 
1846
- #: classes/Views/Settings.php:1388
1847
  msgid "24"
1848
  msgstr ""
1849
 
1850
- #: classes/Views/Settings.php:1389
1851
  msgid "25"
1852
  msgstr ""
1853
 
1854
- #: classes/Views/Settings.php:1390
1855
  msgid "26"
1856
  msgstr ""
1857
 
1858
- #: classes/Views/Settings.php:1391
1859
  msgid "27"
1860
  msgstr ""
1861
 
1862
- #: classes/Views/Settings.php:1392
1863
  msgid "28"
1864
  msgstr ""
1865
 
1866
- #: classes/Views/Settings.php:1393
1867
  msgid "29"
1868
  msgstr ""
1869
 
1870
- #: classes/Views/Settings.php:1394
1871
  msgid "30"
1872
  msgstr ""
1873
 
1874
- #: classes/Views/Settings.php:1410
1875
  msgid "Hour"
1876
  msgstr ""
1877
 
1878
- #: classes/Views/Settings.php:1426 classes/Views/Settings.php:1442
1879
  msgid "Day"
1880
  msgstr ""
1881
 
1882
- #: classes/Views/Settings.php:1452
1883
  msgid "Which directories should be scanned for file changes?"
1884
  msgstr ""
1885
 
1886
- #: classes/Views/Settings.php:1454
1887
  msgid ""
1888
  "The plugin will scan all the directories in your WordPress website by "
1889
  "default because that is the most secure option. Though if for some reason "
@@ -1891,15 +1921,15 @@ msgid ""
1891
  "them from the below list."
1892
  msgstr ""
1893
 
1894
- #: classes/Views/Settings.php:1460
1895
  msgid "Directories to scan"
1896
  msgstr ""
1897
 
1898
- #: classes/Views/Settings.php:1484
1899
  msgid "What is the biggest file size the plugin should scan?"
1900
  msgstr ""
1901
 
1902
- #: classes/Views/Settings.php:1485
1903
  msgid ""
1904
  "By default the plugin does not scan files that are bigger than 5MB. Such "
1905
  "files are not common, hence typically not a target. Though if you are "
@@ -1907,21 +1937,21 @@ msgid ""
1907
  "limit from the below option."
1908
  msgstr ""
1909
 
1910
- #: classes/Views/Settings.php:1488
1911
  msgid "File Size Limit"
1912
  msgstr ""
1913
 
1914
- #: classes/Views/Settings.php:1491
1915
  msgid "MB"
1916
  msgstr ""
1917
 
1918
- #: classes/Views/Settings.php:1497
1919
  msgid ""
1920
  "Do you want to exclude specific files or files with a particular extension "
1921
  "from the scan?"
1922
  msgstr ""
1923
 
1924
- #: classes/Views/Settings.php:1498
1925
  msgid ""
1926
  "The plugin will scan everything that is in the WordPress root directory or "
1927
  "below, even if the files and directories are not part of WordPress. It is "
@@ -1930,54 +1960,54 @@ msgid ""
1930
  "excluded by default."
1931
  msgstr ""
1932
 
1933
- #: classes/Views/Settings.php:1503
1934
  msgid "Exclude All Files in These Directories"
1935
  msgstr ""
1936
 
1937
- #: classes/Views/Settings.php:1516 classes/Views/Settings.php:1552
1938
- #: classes/Views/Settings.php:1582
1939
  msgid "REMOVE"
1940
  msgstr ""
1941
 
1942
- #: classes/Views/Settings.php:1521 classes/Views/Settings.php:1557
1943
- #: classes/Views/Settings.php:1587 classes/Views/SetupWizard.php:685
1944
  #: classes/Views/SetupWizard.php:693 classes/Views/SetupWizard.php:778
1945
  #: classes/Views/SetupWizard.php:797 classes/Views/SetupWizard.php:816
1946
  msgid "ADD"
1947
  msgstr ""
1948
 
1949
- #: classes/Views/Settings.php:1524
1950
  msgid ""
1951
  "Specify the name of the directory and the path to it in relation to the "
1952
  "website's root. For example, if you want to want to exclude all files in the "
1953
  "sub directory dir1/dir2 specify the following:"
1954
  msgstr ""
1955
 
1956
- #: classes/Views/Settings.php:1535
1957
  msgid "Exclude These Files"
1958
  msgstr ""
1959
 
1960
- #: classes/Views/Settings.php:1560
1961
  msgid ""
1962
  "Specify the name and extension of the file(s) you want to exclude. Wildcard "
1963
  "not supported. There is no need to specify the path of the file."
1964
  msgstr ""
1965
 
1966
- #: classes/Views/Settings.php:1569
1967
  msgid "Exclude these File Types"
1968
  msgstr ""
1969
 
1970
- #: classes/Views/Settings.php:1590
1971
  msgid ""
1972
  "Specify the extension of the file types you want to exclude. You should "
1973
  "exclude any type of logs and backup files that tend to be very big."
1974
  msgstr ""
1975
 
1976
- #: classes/Views/Settings.php:1599
1977
  msgid "Launch an instant file integrity scan"
1978
  msgstr ""
1979
 
1980
- #: classes/Views/Settings.php:1601
1981
  msgid ""
1982
  "Click the Scan Now button to launch an instant file integrity scan using the "
1983
  "configured settings. You can navigate away from this page during the scan. "
@@ -1985,25 +2015,25 @@ msgid ""
1985
  "scans."
1986
  msgstr ""
1987
 
1988
- #: classes/Views/Settings.php:1607
1989
  msgid "Launch Instant Scan"
1990
  msgstr ""
1991
 
1992
- #: classes/Views/Settings.php:1613 classes/Views/Settings.php:1620
1993
- #: classes/Views/Settings.php:2236
1994
  msgid "Scan Now"
1995
  msgstr ""
1996
 
1997
- #: classes/Views/Settings.php:1614 classes/Views/Settings.php:1617
1998
- #: classes/Views/Settings.php:1621
1999
  msgid "Stop Scan"
2000
  msgstr ""
2001
 
2002
- #: classes/Views/Settings.php:1616 classes/Views/Settings.php:2238
2003
  msgid "Scan in Progress"
2004
  msgstr ""
2005
 
2006
- #: classes/Views/Settings.php:1700
2007
  msgid ""
2008
  "By default the plugin keeps a log of all user changes done on your WordPress "
2009
  "website. Use the setting below to exclude any objects from the activity log. "
@@ -2011,173 +2041,173 @@ msgid ""
2011
  "object is referred will not be logged in the activity log."
2012
  msgstr ""
2013
 
2014
- #: classes/Views/Settings.php:1704
2015
  msgid "Exclude Users:"
2016
  msgstr ""
2017
 
2018
- #: classes/Views/Settings.php:1725
2019
  msgid "Exclude Roles:"
2020
  msgstr ""
2021
 
2022
- #: classes/Views/Settings.php:1746
2023
  msgid "Exclude IP Address(es):"
2024
  msgstr ""
2025
 
2026
- #: classes/Views/Settings.php:1762
2027
  msgid ""
2028
  "You can exclude an individual IP address or a range of IP addresses. To "
2029
  "exclude a range use the following format: [first IP]-[last octet of the last "
2030
  "IP]. Example: 172.16.180.6-127."
2031
  msgstr ""
2032
 
2033
- #: classes/Views/Settings.php:1768
2034
  msgid "Exclude Post Type:"
2035
  msgstr ""
2036
 
2037
- #: classes/Views/Settings.php:1784
2038
  msgid ""
2039
  "WordPress has the post and page post types by default though your website "
2040
  "might use more post types (custom post types). You can exclude all post "
2041
  "types, including the default WordPress ones."
2042
  msgstr ""
2043
 
2044
- #: classes/Views/Settings.php:1790
2045
  msgid "Exclude Custom Fields:"
2046
  msgstr ""
2047
 
2048
- #: classes/Views/Settings.php:1806
2049
  msgid ""
2050
  "You can use the * wildcard to exclude multiple matching custom fields. For "
2051
  "example to exclude all custom fields starting with wp123 enter wp123*"
2052
  msgstr ""
2053
 
2054
- #: classes/Views/Settings.php:1812
2055
  msgid "Exclude Non-Existing URLs:"
2056
  msgstr ""
2057
 
2058
- #: classes/Views/Settings.php:1828
2059
  msgid ""
2060
  "Add the non existing URLs for which you do not want to be alerted of HTTP "
2061
  "404 errors in the activity log by specifying the complete URL.\tExamples "
2062
  "below:"
2063
  msgstr ""
2064
 
2065
- #: classes/Views/Settings.php:1828
2066
  msgid "File: "
2067
  msgstr ""
2068
 
2069
- #: classes/Views/Settings.php:1828
2070
  msgid "Directory: "
2071
  msgstr ""
2072
 
2073
- #: classes/Views/Settings.php:1861
2074
  msgid ""
2075
  "You can export and import the plugin settings from here, which can also be "
2076
  "used as a plugin configuration backup. The plugin settings are exported to a "
2077
  "JSON file."
2078
  msgstr ""
2079
 
2080
- #: classes/Views/Settings.php:1862 classes/Views/Settings.php:1866
2081
- #: classes/Views/Settings.php:1889
2082
  msgid "Export Settings"
2083
  msgstr ""
2084
 
2085
- #: classes/Views/Settings.php:1896 classes/Views/Settings.php:1900
2086
- #: classes/Views/Settings.php:1904
2087
  msgid "Import Settings"
2088
  msgstr ""
2089
 
2090
- #: classes/Views/Settings.php:1970
2091
  msgid "The plugin settings have been imported successfully."
2092
  msgstr ""
2093
 
2094
- #: classes/Views/Settings.php:1972
2095
  msgid "No settings found to import."
2096
  msgstr ""
2097
 
2098
- #: classes/Views/Settings.php:1975
2099
  msgid "Invalid file or file size is too large."
2100
  msgstr ""
2101
 
2102
- #: classes/Views/Settings.php:1978
2103
  msgid "Error occurred while uploading the file."
2104
  msgstr ""
2105
 
2106
- #: classes/Views/Settings.php:1989
2107
  msgid "These settings are for advanced users."
2108
  msgstr ""
2109
 
2110
- #: classes/Views/Settings.php:1990
2111
  msgid ""
2112
  "If you have any questions <a href=\"https://www.wpsecurityauditlog.com/"
2113
  "contact/\" target=\"_blank\">contact us</a>."
2114
  msgstr ""
2115
 
2116
- #: classes/Views/Settings.php:1993
2117
  msgid ""
2118
  "Troubleshooting setting: Keep a debug log of all the requests this website "
2119
  "receives"
2120
  msgstr ""
2121
 
2122
- #: classes/Views/Settings.php:1994
2123
  msgid ""
2124
  "Only enable the request log on testing, staging and development website. "
2125
  "Never enable logging on a live website unless instructed to do so. Enabling "
2126
  "request logging on a live website may degrade the performance of the website."
2127
  msgstr ""
2128
 
2129
- #: classes/Views/Settings.php:1998
2130
  msgid "Request Log"
2131
  msgstr ""
2132
 
2133
- #: classes/Views/Settings.php:2016
2134
  msgid ""
2135
  "<strong>Note:</strong> The requests debug log file is saved as request.log."
2136
  "php in the /wp-content/uploads/wp-security-audit-log/ directory."
2137
  msgstr ""
2138
 
2139
- #: classes/Views/Settings.php:2028
2140
  msgid "Reset plugin settings to default"
2141
  msgstr ""
2142
 
2143
- #: classes/Views/Settings.php:2029
2144
  msgid ""
2145
  "Click the RESET button to reset ALL plugin settings to default. Note that "
2146
  "the activity log data will be retained and only the plugin settings will be "
2147
  "reset. To purge the data of the activity log use the setting below."
2148
  msgstr ""
2149
 
2150
- #: classes/Views/Settings.php:2033
2151
  msgid "Reset Settings"
2152
  msgstr ""
2153
 
2154
- #: classes/Views/Settings.php:2035
2155
  msgid "RESET"
2156
  msgstr ""
2157
 
2158
- #: classes/Views/Settings.php:2041
2159
  msgid "Purge the WordPress activity log"
2160
  msgstr ""
2161
 
2162
- #: classes/Views/Settings.php:2042
2163
  msgid ""
2164
  "Click the Purge button below to delete all the data from the WordPress "
2165
  "activity log and start afresh."
2166
  msgstr ""
2167
 
2168
- #: classes/Views/Settings.php:2046
2169
  msgid "Purge Activity Log"
2170
  msgstr ""
2171
 
2172
- #: classes/Views/Settings.php:2048
2173
  msgid "PURGE"
2174
  msgstr ""
2175
 
2176
- #: classes/Views/Settings.php:2054
2177
  msgid "MainWP Child Site Stealth Mode"
2178
  msgstr ""
2179
 
2180
- #: classes/Views/Settings.php:2055
2181
  msgid ""
2182
  "This option is enabled automatically when the plugin detects the MainWP "
2183
  "Child plugin on the site. When this setting is enabled plugin access is "
@@ -2186,15 +2216,15 @@ msgid ""
2186
  "Disable this option to change the plugin to the default setup."
2187
  msgstr ""
2188
 
2189
- #: classes/Views/Settings.php:2059
2190
  msgid "Enable MainWP Child Site Stealth Mode"
2191
  msgstr ""
2192
 
2193
- #: classes/Views/Settings.php:2083
2194
  msgid "Do you want to delete the plugin data from the database upon uninstall?"
2195
  msgstr ""
2196
 
2197
- #: classes/Views/Settings.php:2084
2198
  msgid ""
2199
  "The plugin saves the activity log data and settings in the WordPress "
2200
  "database. By default upon uninstalling the plugin the data is kept in the "
@@ -2203,107 +2233,107 @@ msgid ""
2203
  "access it again even when you reinstall the plugin."
2204
  msgstr ""
2205
 
2206
- #: classes/Views/Settings.php:2088
2207
  msgid "Remove Data on Uninstall"
2208
  msgstr ""
2209
 
2210
- #: classes/Views/Settings.php:2113
2211
  msgid "Are you sure you want to reset all the plugin settings to default?"
2212
  msgstr ""
2213
 
2214
- #: classes/Views/Settings.php:2123
2215
  msgid "Are you sure you want to purge all the activity log data?"
2216
  msgstr ""
2217
 
2218
- #: classes/Views/Settings.php:2153
2219
  msgid "MainWP Child plugin is not active on this website."
2220
  msgstr ""
2221
 
2222
- #: classes/Views/Settings.php:2229
2223
  msgid "The specified value is not a valid URL!"
2224
  msgstr ""
2225
 
2226
- #: classes/Views/Settings.php:2230
2227
  msgid "The specified value is not a valid post type!"
2228
  msgstr ""
2229
 
2230
- #: classes/Views/Settings.php:2231
2231
  msgid "The specified value is not a valid IP address!"
2232
  msgstr ""
2233
 
2234
- #: classes/Views/Settings.php:2232
2235
  msgid "The specified value is not a user nor a role!"
2236
  msgstr ""
2237
 
2238
- #: classes/Views/Settings.php:2233
2239
  msgid "Filename cannot be added because it contains invalid characters."
2240
  msgstr ""
2241
 
2242
- #: classes/Views/Settings.php:2234
2243
  msgid "File extension cannot be added because it contains invalid characters."
2244
  msgstr ""
2245
 
2246
- #: classes/Views/Settings.php:2235
2247
  msgid "Directory cannot be added because it contains invalid characters."
2248
  msgstr ""
2249
 
2250
- #: classes/Views/Settings.php:2237
2251
  msgid "Scan Failed"
2252
  msgstr ""
2253
 
2254
- #: classes/Views/Settings.php:2362 classes/Views/Settings.php:2481
2255
  msgid "Invalid setting type."
2256
  msgstr ""
2257
 
2258
- #: classes/Views/Settings.php:2417
2259
  msgid "You can exclude this directory using the check boxes above."
2260
  msgstr ""
2261
 
2262
- #: classes/Views/Settings.php:2438
2263
  msgid "Option added to excluded types."
2264
  msgstr ""
2265
 
2266
- #: classes/Views/Settings.php:2443
2267
  msgid "This file is already excluded from the scan."
2268
  msgstr ""
2269
 
2270
- #: classes/Views/Settings.php:2445
2271
  msgid "This file extension is already excluded from the scan."
2272
  msgstr ""
2273
 
2274
- #: classes/Views/Settings.php:2447
2275
  msgid "This directory is already excluded from the scan."
2276
  msgstr ""
2277
 
2278
- #: classes/Views/Settings.php:2460
2279
  msgid "Option name is empty."
2280
  msgstr ""
2281
 
2282
- #: classes/Views/Settings.php:2558
2283
  msgid "Option removed from excluded scan types."
2284
  msgstr ""
2285
 
2286
- #: classes/Views/Settings.php:2565 classes/Views/Settings.php:2655
2287
  msgid "Something went wrong."
2288
  msgstr ""
2289
 
2290
- #: classes/Views/Settings.php:2594
2291
  msgid "A cron job is in progress."
2292
  msgstr ""
2293
 
2294
- #: classes/Views/Settings.php:2648 classes/Views/Settings.php:2691
2295
  msgid "Scan started successfully."
2296
  msgstr ""
2297
 
2298
- #: classes/Views/Settings.php:2717 classes/Views/Settings.php:2744
2299
  msgid "Tables has been reset."
2300
  msgstr ""
2301
 
2302
- #: classes/Views/Settings.php:2719 classes/Views/Settings.php:2746
2303
  msgid "Reset query failed."
2304
  msgstr ""
2305
 
2306
- #: classes/Views/Settings.php:2722 classes/Views/Settings.php:2749
2307
  msgid "Nonce Verification Failed."
2308
  msgstr ""
2309
 
@@ -2589,7 +2619,7 @@ msgid ""
2589
  "on all the events the plugin can keep a log of."
2590
  msgstr ""
2591
 
2592
- #: classes/Views/ToggleAlerts.php:221 defaults.php:485
2593
  msgid "Third Party Plugins"
2594
  msgstr ""
2595
 
@@ -2598,28 +2628,28 @@ msgid "Front-end Events"
2598
  msgstr ""
2599
 
2600
  #: classes/Views/ToggleAlerts.php:274 classes/Views/ToggleAlerts.php:281
2601
- #: classes/Views/ToggleAlerts.php:331 defaults.php:489
2602
  msgid "BBPress Forum"
2603
  msgstr ""
2604
 
2605
  #: classes/Views/ToggleAlerts.php:275 classes/Views/ToggleAlerts.php:288
2606
- #: classes/Views/ToggleAlerts.php:344 defaults.php:564
2607
  msgid "WooCommerce"
2608
  msgstr ""
2609
 
2610
  #: classes/Views/ToggleAlerts.php:276 classes/Views/ToggleAlerts.php:289
2611
  #: classes/Views/ToggleAlerts.php:344 classes/Views/ToggleAlerts.php:352
2612
- #: defaults.php:519
2613
  msgid "WooCommerce Products"
2614
  msgstr ""
2615
 
2616
  #: classes/Views/ToggleAlerts.php:277 classes/Views/ToggleAlerts.php:296
2617
- #: classes/Views/ToggleAlerts.php:359 defaults.php:616
2618
  msgid "Yoast SEO"
2619
  msgstr ""
2620
 
2621
  #: classes/Views/ToggleAlerts.php:278 classes/Views/ToggleAlerts.php:303
2622
- #: classes/Views/ToggleAlerts.php:372 defaults.php:467
2623
  msgid "MultiSite"
2624
  msgstr ""
2625
 
@@ -2636,7 +2666,7 @@ msgstr ""
2636
  msgid "File Changes"
2637
  msgstr ""
2638
 
2639
- #: classes/Views/ToggleAlerts.php:325 defaults.php:197
2640
  msgid "Content"
2641
  msgstr ""
2642
 
@@ -2681,11 +2711,11 @@ msgid ""
2681
  "Your website is a single site so the multisite events have been disabled."
2682
  msgstr ""
2683
 
2684
- #: classes/Views/ToggleAlerts.php:382 defaults.php:171
2685
  msgid "User Profiles"
2686
  msgstr ""
2687
 
2688
- #: classes/Views/ToggleAlerts.php:385 defaults.php:152
2689
  msgid "Other User Activity"
2690
  msgstr ""
2691
 
@@ -2924,3450 +2954,3450 @@ msgstr ""
2924
  msgid "No events found."
2925
  msgstr ""
2926
 
2927
- #: defaults.php:72
2928
  msgid "Fatal run-time error."
2929
  msgstr ""
2930
 
2931
- #: defaults.php:76
2932
  msgid "Run-time warning (non-fatal error)."
2933
  msgstr ""
2934
 
2935
- #: defaults.php:80
2936
  msgid "Compile-time parse error."
2937
  msgstr ""
2938
 
2939
- #: defaults.php:84
2940
  msgid "Run-time notice."
2941
  msgstr ""
2942
 
2943
- #: defaults.php:88
2944
  msgid "Fatal error that occurred during startup."
2945
  msgstr ""
2946
 
2947
- #: defaults.php:92
2948
  msgid "Warnings that occurred during startup."
2949
  msgstr ""
2950
 
2951
- #: defaults.php:96
2952
  msgid "Fatal compile-time error."
2953
  msgstr ""
2954
 
2955
- #: defaults.php:100
2956
  msgid "Compile-time warning."
2957
  msgstr ""
2958
 
2959
- #: defaults.php:104
2960
  msgid "User-generated error message."
2961
  msgstr ""
2962
 
2963
- #: defaults.php:108
2964
  msgid "User-generated warning message."
2965
  msgstr ""
2966
 
2967
- #: defaults.php:112
2968
  msgid "User-generated notice message."
2969
  msgstr ""
2970
 
2971
- #: defaults.php:116
2972
  msgid "Non-standard/optimal code warning."
2973
  msgstr ""
2974
 
2975
- #: defaults.php:120
2976
  msgid "Catchable fatal error."
2977
  msgstr ""
2978
 
2979
- #: defaults.php:124
2980
  msgid "Run-time deprecation notices."
2981
  msgstr ""
2982
 
2983
- #: defaults.php:128
2984
  msgid "Run-time user deprecation notices."
2985
  msgstr ""
2986
 
2987
- #: defaults.php:133
2988
  msgid "Critical, high-impact messages."
2989
  msgstr ""
2990
 
2991
- #: defaults.php:137
2992
  msgid "Debug informational messages."
2993
  msgstr ""
2994
 
2995
- #: defaults.php:148
2996
  msgid "Users Profiles & Activity"
2997
  msgstr ""
2998
 
2999
- #: defaults.php:153
3000
  msgid "User logged in"
3001
  msgstr ""
3002
 
3003
- #: defaults.php:153
3004
  msgid "Successfully logged in."
3005
  msgstr ""
3006
 
3007
- #: defaults.php:154
3008
  msgid "User logged out"
3009
  msgstr ""
3010
 
3011
- #: defaults.php:154
3012
  msgid "Successfully logged out."
3013
  msgstr ""
3014
 
3015
- #: defaults.php:155
3016
  msgid "Login failed"
3017
  msgstr ""
3018
 
3019
- #: defaults.php:155
3020
  msgid "%Attempts% failed login(s) detected."
3021
  msgstr ""
3022
 
3023
- #: defaults.php:156
3024
  msgid "Login failed / non existing user"
3025
  msgstr ""
3026
 
3027
- #: defaults.php:156
3028
  msgid ""
3029
  "%Attempts% failed login(s) detected using non existing user. %LogFileText%"
3030
  msgstr ""
3031
 
3032
- #: defaults.php:157
3033
  msgid "Login blocked"
3034
  msgstr ""
3035
 
3036
- #: defaults.php:157
3037
  msgid ""
3038
  "Blocked from logging in because the same WordPress user is logged in from "
3039
  "%ClientIP%."
3040
  msgstr ""
3041
 
3042
- #: defaults.php:158
3043
  msgid "User logged in with existing session(s)"
3044
  msgstr ""
3045
 
3046
- #: defaults.php:158
3047
  msgid ""
3048
  "Successfully logged in. Another session from %IPAddress% for this user "
3049
  "already exist."
3050
  msgstr ""
3051
 
3052
- #: defaults.php:159
3053
  msgid "User logged out all other sessions with the same username"
3054
  msgstr ""
3055
 
3056
- #: defaults.php:159
3057
  msgid "Logged out all other sessions with the same username."
3058
  msgstr ""
3059
 
3060
- #: defaults.php:160
3061
  msgid "User session destroyed and logged out"
3062
  msgstr ""
3063
 
3064
- #: defaults.php:160
3065
  msgid "Logged out session %TargetSessionID% which belonged to %TargetUserName%"
3066
  msgstr ""
3067
 
3068
- #: defaults.php:161
3069
  msgid "Switched to another user"
3070
  msgstr ""
3071
 
3072
- #: defaults.php:161
3073
  msgid "Switched to %TargetUserName% with role %TargetUserRole%."
3074
  msgstr ""
3075
 
3076
- #: defaults.php:162
3077
  msgid "User uploaded file from Uploads directory"
3078
  msgstr ""
3079
 
3080
- #: defaults.php:162
3081
  msgid "Uploaded the file %FileName% in %FilePath%."
3082
  msgstr ""
3083
 
3084
- #: defaults.php:163
3085
  msgid "User deleted file from Uploads directory"
3086
  msgstr ""
3087
 
3088
- #: defaults.php:163
3089
  msgid "Deleted the file %FileName% from %FilePath%."
3090
  msgstr ""
3091
 
3092
- #: defaults.php:164
3093
  msgid "User requests non-existing pages (404 Error Pages)"
3094
  msgstr ""
3095
 
3096
- #: defaults.php:164
3097
  msgid ""
3098
  "Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
3099
  "%LinkFile%%URL%"
3100
  msgstr ""
3101
 
3102
- #: defaults.php:165
3103
  msgid "Website Visitor User requests non-existing pages (404 Error Pages)"
3104
  msgstr ""
3105
 
3106
- #: defaults.php:165
3107
  msgid ""
3108
  "Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
3109
  "% %Msg%. %LinkFile%%URL%"
3110
  msgstr ""
3111
 
3112
- #: defaults.php:172
3113
  msgid "New user was created on WordPress"
3114
  msgstr ""
3115
 
3116
- #: defaults.php:172
3117
  msgid ""
3118
  "A new user %NewUserData->Username% was created with role of %NewUserData-"
3119
  ">Roles%."
3120
  msgstr ""
3121
 
3122
- #: defaults.php:173
3123
  msgid "User created another WordPress user"
3124
  msgstr ""
3125
 
3126
- #: defaults.php:173
3127
  msgid ""
3128
  "%UserChanger% created a new user %NewUserData->Username% with the role of "
3129
  "%NewUserData->Roles%."
3130
  msgstr ""
3131
 
3132
- #: defaults.php:174
3133
  msgid "The role of a user was changed by another WordPress user"
3134
  msgstr ""
3135
 
3136
- #: defaults.php:174
3137
  msgid ""
3138
  "Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
3139
  "%multisite_text%."
3140
  msgstr ""
3141
 
3142
- #: defaults.php:175
3143
  msgid "User has changed his or her password"
3144
  msgstr ""
3145
 
3146
- #: defaults.php:175
3147
  msgid "Changed the password."
3148
  msgstr ""
3149
 
3150
- #: defaults.php:176
3151
  msgid "User changed another user's password"
3152
  msgstr ""
3153
 
3154
- #: defaults.php:176
3155
  msgid ""
3156
  "Changed the password for the user %TargetUserData->Username% with the role "
3157
  "of %TargetUserData->Roles%."
3158
  msgstr ""
3159
 
3160
- #: defaults.php:177
3161
  msgid "User changed his or her email address"
3162
  msgstr ""
3163
 
3164
- #: defaults.php:177
3165
  msgid "Changed the email address from %OldEmail% to %NewEmail%."
3166
  msgstr ""
3167
 
3168
- #: defaults.php:178
3169
  msgid "User changed another user's email address"
3170
  msgstr ""
3171
 
3172
- #: defaults.php:178
3173
  msgid ""
3174
  "Changed the email address of the user %TargetUsername% from %OldEmail% to "
3175
  "%NewEmail%."
3176
  msgstr ""
3177
 
3178
- #: defaults.php:179
3179
  msgid "User was deleted by another user"
3180
  msgstr ""
3181
 
3182
- #: defaults.php:179
3183
  msgid ""
3184
  "Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
3185
  ">Roles%."
3186
  msgstr ""
3187
 
3188
- #: defaults.php:180
3189
  msgid "User opened the profile page of another user"
3190
  msgstr ""
3191
 
3192
- #: defaults.php:180
3193
  msgid "%UserChanger% opened the profile page of the user %TargetUsername%."
3194
  msgstr ""
3195
 
3196
- #: defaults.php:181
3197
  msgid "User updated a custom field value for a user"
3198
  msgstr ""
3199
 
3200
- #: defaults.php:181
3201
  msgid ""
3202
  "Changed the value of the custom field %custom_field_name%%ReportText% for "
3203
  "the user %TargetUsername%.%ChangeText%"
3204
  msgstr ""
3205
 
3206
- #: defaults.php:182
3207
  msgid "User created a custom field value for a user"
3208
  msgstr ""
3209
 
3210
- #: defaults.php:182
3211
  msgid ""
3212
  "Created the value of the custom field %custom_field_name% with %new_value% "
3213
  "for the user %TargetUsername%."
3214
  msgstr ""
3215
 
3216
- #: defaults.php:183
3217
  msgid "User changed first name for a user"
3218
  msgstr ""
3219
 
3220
- #: defaults.php:183
3221
  msgid ""
3222
  "Changed the first name of the user %TargetUsername% from %old_firstname% to "
3223
  "%new_firstname%"
3224
  msgstr ""
3225
 
3226
- #: defaults.php:184
3227
  msgid "User changed last name for a user"
3228
  msgstr ""
3229
 
3230
- #: defaults.php:184
3231
  msgid ""
3232
  "Changed the last name of the user %TargetUsername% from %old_lastname% to "
3233
  "%new_lastname%"
3234
  msgstr ""
3235
 
3236
- #: defaults.php:185
3237
  msgid "User changed nickname for a user"
3238
  msgstr ""
3239
 
3240
- #: defaults.php:185
3241
  msgid ""
3242
  "Changed the nickname of the user %TargetUsername% from %old_nickname% to "
3243
  "%new_nickname%"
3244
  msgstr ""
3245
 
3246
- #: defaults.php:186
3247
  msgid "User changed the display name for a user"
3248
  msgstr ""
3249
 
3250
- #: defaults.php:186
3251
  msgid ""
3252
  "Changed the Display name publicly of user %TargetUsername% from "
3253
  "%old_displayname% to %new_displayname%"
3254
  msgstr ""
3255
 
3256
- #: defaults.php:193
3257
  msgid "Content & Comments"
3258
  msgstr ""
3259
 
3260
- #: defaults.php:198
3261
  msgid "User created a new post and saved it as draft"
3262
  msgstr ""
3263
 
3264
- #: defaults.php:198
3265
  msgid ""
3266
  "Created a new %PostType% titled %PostTitle% and saved it as draft. "
3267
  "%EditorLinkPost%."
3268
  msgstr ""
3269
 
3270
- #: defaults.php:199
3271
  msgid "User published a post"
3272
  msgstr ""
3273
 
3274
- #: defaults.php:199
3275
  msgid ""
3276
  "Published a %PostType% titled %PostTitle%. URL is %PostUrl%. %EditorLinkPost"
3277
  "%."
3278
  msgstr ""
3279
 
3280
- #: defaults.php:200
3281
  msgid "User modified a post"
3282
  msgstr ""
3283
 
3284
- #: defaults.php:200
3285
  msgid ""
3286
  "Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3287
  "%EditorLinkPost%."
3288
  msgstr ""
3289
 
3290
- #: defaults.php:201
3291
  msgid "User permanently deleted a post from the trash"
3292
  msgstr ""
3293
 
3294
- #: defaults.php:201
3295
  msgid ""
3296
  "Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
3297
  msgstr ""
3298
 
3299
- #: defaults.php:202
3300
  msgid "User moved a post to the trash"
3301
  msgstr ""
3302
 
3303
- #: defaults.php:202
3304
  msgid ""
3305
  "Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
3306
  "%PostUrl%."
3307
  msgstr ""
3308
 
3309
- #: defaults.php:203
3310
  msgid "User restored a post from trash"
3311
  msgstr ""
3312
 
3313
- #: defaults.php:203
3314
  msgid ""
3315
  "The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
3316
  "URL is: %PostUrl%. %EditorLinkPost%."
3317
  msgstr ""
3318
 
3319
- #: defaults.php:204
3320
  msgid "User changed post URL"
3321
  msgstr ""
3322
 
3323
- #: defaults.php:204
3324
  msgid ""
3325
  "Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
3326
  "%.%ChangeText% %EditorLinkPost%."
3327
  msgstr ""
3328
 
3329
- #: defaults.php:205
3330
  msgid "User changed post author"
3331
  msgstr ""
3332
 
3333
- #: defaults.php:205
3334
  msgid ""
3335
  "Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
3336
  "%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
3337
  msgstr ""
3338
 
3339
- #: defaults.php:206
3340
  msgid "User changed post status"
3341
  msgstr ""
3342
 
3343
- #: defaults.php:206
3344
  msgid ""
3345
  "Changed the status of the %PostType% titled %PostTitle% from %OldStatus% to "
3346
  "%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
3347
  msgstr ""
3348
 
3349
- #: defaults.php:207
3350
  msgid "User changed the visibility of a post"
3351
  msgstr ""
3352
 
3353
- #: defaults.php:207
3354
  msgid ""
3355
  "Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
3356
  "from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
3357
  msgstr ""
3358
 
3359
- #: defaults.php:208
3360
  msgid "User changed the date of a post"
3361
  msgstr ""
3362
 
3363
- #: defaults.php:208
3364
  msgid ""
3365
  "Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
3366
  "%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
3367
  msgstr ""
3368
 
3369
- #: defaults.php:209
3370
  msgid "User changed the parent of a page"
3371
  msgstr ""
3372
 
3373
- #: defaults.php:209
3374
  msgid ""
3375
  "Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
3376
  "%OldParentName% to %NewParentName%. %EditorLinkPost%."
3377
  msgstr ""
3378
 
3379
- #: defaults.php:210
3380
  msgid "User changed the template of a page"
3381
  msgstr ""
3382
 
3383
- #: defaults.php:210
3384
  msgid ""
3385
  "Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
3386
  "%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
3387
  msgstr ""
3388
 
3389
- #: defaults.php:211
3390
  msgid "User set a post as sticky"
3391
  msgstr ""
3392
 
3393
- #: defaults.php:211
3394
  msgid ""
3395
  "Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
3396
  msgstr ""
3397
 
3398
- #: defaults.php:212
3399
  msgid "User removed post from sticky"
3400
  msgstr ""
3401
 
3402
- #: defaults.php:212
3403
  msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
3404
  msgstr ""
3405
 
3406
- #: defaults.php:213
3407
  msgid "User modified the content of a post"
3408
  msgstr ""
3409
 
3410
- #: defaults.php:213
3411
  msgid ""
3412
  "Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
3413
  "URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
3414
  msgstr ""
3415
 
3416
- #: defaults.php:214
3417
  msgid "User submitted a post for review"
3418
  msgstr ""
3419
 
3420
- #: defaults.php:214
3421
  msgid ""
3422
  "Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
3423
  "%EditorLinkPost%."
3424
  msgstr ""
3425
 
3426
- #: defaults.php:215
3427
  msgid "User scheduled a post"
3428
  msgstr ""
3429
 
3430
- #: defaults.php:215
3431
  msgid ""
3432
  "Scheduled the %PostType% titled %PostTitle% to be published on "
3433
  "%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
3434
  msgstr ""
3435
 
3436
- #: defaults.php:216
3437
  msgid "User changed title of a post"
3438
  msgstr ""
3439
 
3440
- #: defaults.php:216
3441
  msgid ""
3442
  "Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
3443
  "%. URL is: %PostUrl%. %EditorLinkPost%."
3444
  msgstr ""
3445
 
3446
- #: defaults.php:217
3447
  msgid "User opened a post in the editor"
3448
  msgstr ""
3449
 
3450
- #: defaults.php:217
3451
  msgid ""
3452
  "Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
3453
  "%PostUrl%. %EditorLinkPost%."
3454
  msgstr ""
3455
 
3456
- #: defaults.php:218
3457
  msgid "User viewed a post"
3458
  msgstr ""
3459
 
3460
- #: defaults.php:218
3461
  msgid ""
3462
  "Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3463
  "%EditorLinkPost%."
3464
  msgstr ""
3465
 
3466
- #: defaults.php:219
3467
  msgid "A plugin modified a post"
3468
  msgstr ""
3469
 
3470
- #: defaults.php:219
3471
  msgid ""
3472
  "Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
3473
  "%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
3474
  msgstr ""
3475
 
3476
- #: defaults.php:220
3477
  msgid "User disabled Comments/Trackbacks and Pingbacks in a post"
3478
  msgstr ""
3479
 
3480
- #: defaults.php:220
3481
  msgid ""
3482
  "Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3483
  "%PostUrl%. %EditorLinkPost%."
3484
  msgstr ""
3485
 
3486
- #: defaults.php:221
3487
  msgid "User enabled Comments/Trackbacks and Pingbacks in a post"
3488
  msgstr ""
3489
 
3490
- #: defaults.php:221
3491
  msgid ""
3492
  "Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3493
  "%PostUrl%. %EditorLinkPost%."
3494
  msgstr ""
3495
 
3496
- #: defaults.php:222
3497
  msgid "User added post tag"
3498
  msgstr ""
3499
 
3500
- #: defaults.php:222
3501
  msgid ""
3502
  "Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
3503
  "%PostUrl%. %EditorLinkPost%."
3504
  msgstr ""
3505
 
3506
- #: defaults.php:223
3507
  msgid "User removed post tag"
3508
  msgstr ""
3509
 
3510
- #: defaults.php:223
3511
  msgid ""
3512
  "Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
3513
  "%PostUrl%. %EditorLinkPost%."
3514
  msgstr ""
3515
 
3516
- #: defaults.php:224
3517
  msgid "User created new tag"
3518
  msgstr ""
3519
 
3520
- #: defaults.php:224
3521
  msgid "Created a new tag called %TagName%. %TagLink%."
3522
  msgstr ""
3523
 
3524
- #: defaults.php:225
3525
  msgid "User deleted tag"
3526
  msgstr ""
3527
 
3528
- #: defaults.php:225
3529
  msgid "Deleted the tag %TagName%."
3530
  msgstr ""
3531
 
3532
- #: defaults.php:226
3533
  msgid "User renamed tag"
3534
  msgstr ""
3535
 
3536
- #: defaults.php:226
3537
  msgid "Renamed a tag from %old_name% to %new_name%. %TagLink%."
3538
  msgstr ""
3539
 
3540
- #: defaults.php:227
3541
  msgid "User changed tag slug"
3542
  msgstr ""
3543
 
3544
- #: defaults.php:227
3545
  msgid "Changed the slug of tag %tag% from %old_slug% to %new_slug%. %TagLink%."
3546
  msgstr ""
3547
 
3548
- #: defaults.php:228
3549
  msgid "User changed tag description"
3550
  msgstr ""
3551
 
3552
- #: defaults.php:228
3553
  msgid ""
3554
  "Changed the description of the tag %tag%%ReportText%.%ChangeText% %TagLink%."
3555
  msgstr ""
3556
 
3557
- #: defaults.php:229
3558
  msgid "User changed post category"
3559
  msgstr ""
3560
 
3561
- #: defaults.php:229
3562
  msgid ""
3563
  "Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
3564
  "%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
3565
  msgstr ""
3566
 
3567
- #: defaults.php:230
3568
  msgid "User created new category"
3569
  msgstr ""
3570
 
3571
- #: defaults.php:230
3572
  msgid ""
3573
  "Created a new category called %CategoryName%. Category slug is %Slug%. "
3574
  "%CategoryLink%."
3575
  msgstr ""
3576
 
3577
- #: defaults.php:231
3578
  msgid "User deleted category"
3579
  msgstr ""
3580
 
3581
- #: defaults.php:231
3582
  msgid ""
3583
  "Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
3584
  "%."
3585
  msgstr ""
3586
 
3587
- #: defaults.php:232
3588
  msgid "Changed the parent of a category"
3589
  msgstr ""
3590
 
3591
- #: defaults.php:232
3592
  msgid ""
3593
  "Changed the parent of the category %CategoryName% from %OldParent% to "
3594
  "%NewParent%. %CategoryLink%."
3595
  msgstr ""
3596
 
3597
- #: defaults.php:233
3598
  msgid "User changed category name"
3599
  msgstr ""
3600
 
3601
- #: defaults.php:233
3602
  msgid "Changed the name of the category %old_name% to %new_name%."
3603
  msgstr ""
3604
 
3605
- #: defaults.php:234
3606
  msgid "User changed category slug"
3607
  msgstr ""
3608
 
3609
- #: defaults.php:234
3610
  msgid ""
3611
  "Changed the slug of the category %CategoryName% from %old_slug% to %new_slug"
3612
  "%."
3613
  msgstr ""
3614
 
3615
- #: defaults.php:235
3616
  msgid "User created a custom field for a post"
3617
  msgstr ""
3618
 
3619
- #: defaults.php:235
3620
  msgid ""
3621
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3622
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3623
  "%EditorLinkPost%.<br>%MetaLink%."
3624
  msgstr ""
3625
 
3626
- #: defaults.php:236
3627
  msgid "User updated a custom field value for a post"
3628
  msgstr ""
3629
 
3630
- #: defaults.php:236
3631
  msgid ""
3632
  "Modified the value of the custom field %MetaKey%%ReportText% in the "
3633
  "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
3634
  "%EditorLinkPost%.<br>%MetaLink%."
3635
  msgstr ""
3636
 
3637
- #: defaults.php:237
3638
  msgid "User deleted a custom field from a post"
3639
  msgstr ""
3640
 
3641
- #: defaults.php:237
3642
  msgid ""
3643
  "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
3644
  "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
3645
  msgstr ""
3646
 
3647
- #: defaults.php:238
3648
  msgid "User updated a custom field name for a post"
3649
  msgstr ""
3650
 
3651
- #: defaults.php:238
3652
  msgid ""
3653
  "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
3654
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3655
  "%EditorLinkPost%.<br>%MetaLink%."
3656
  msgstr ""
3657
 
3658
- #: defaults.php:244
3659
  msgid "Comments"
3660
  msgstr ""
3661
 
3662
- #: defaults.php:245
3663
  msgid "User approved a comment"
3664
  msgstr ""
3665
 
3666
- #: defaults.php:245
3667
  msgid ""
3668
  "Approved the comment posted in response to the post %PostTitle% by %Author% "
3669
  "on %CommentLink%."
3670
  msgstr ""
3671
 
3672
- #: defaults.php:246
3673
  msgid "User unapproved a comment"
3674
  msgstr ""
3675
 
3676
- #: defaults.php:246
3677
  msgid ""
3678
  "Unapproved the comment posted in response to the post %PostTitle% by %Author"
3679
  "% on %CommentLink%."
3680
  msgstr ""
3681
 
3682
- #: defaults.php:247
3683
  msgid "User replied to a comment"
3684
  msgstr ""
3685
 
3686
- #: defaults.php:247
3687
  msgid ""
3688
  "Replied to the comment posted in response to the post %PostTitle% by %Author"
3689
  "% on %CommentLink%."
3690
  msgstr ""
3691
 
3692
- #: defaults.php:248
3693
  msgid "User edited a comment"
3694
  msgstr ""
3695
 
3696
- #: defaults.php:248
3697
  msgid ""
3698
  "Edited a comment posted in response to the post %PostTitle% by %Author% on "
3699
  "%CommentLink%."
3700
  msgstr ""
3701
 
3702
- #: defaults.php:249
3703
  msgid "User marked a comment as Spam"
3704
  msgstr ""
3705
 
3706
- #: defaults.php:249
3707
  msgid ""
3708
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3709
  "%CommentLink% as Spam."
3710
  msgstr ""
3711
 
3712
- #: defaults.php:250
3713
  msgid "User marked a comment as Not Spam"
3714
  msgstr ""
3715
 
3716
- #: defaults.php:250
3717
  msgid ""
3718
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3719
  "%CommentLink% as Not Spam."
3720
  msgstr ""
3721
 
3722
- #: defaults.php:251
3723
  msgid "User moved a comment to trash"
3724
  msgstr ""
3725
 
3726
- #: defaults.php:251
3727
  msgid ""
3728
  "Moved the comment posted in response to the post %PostTitle% by %Author% on "
3729
  "%Date% to trash."
3730
  msgstr ""
3731
 
3732
- #: defaults.php:252
3733
  msgid "User restored a comment from the trash"
3734
  msgstr ""
3735
 
3736
- #: defaults.php:252
3737
  msgid ""
3738
  "Restored the comment posted in response to the post %PostTitle% by %Author% "
3739
  "on %CommentLink% from the trash."
3740
  msgstr ""
3741
 
3742
- #: defaults.php:253
3743
  msgid "User permanently deleted a comment"
3744
  msgstr ""
3745
 
3746
- #: defaults.php:253
3747
  msgid ""
3748
  "Permanently deleted the comment posted in response to the post %PostTitle% "
3749
  "by %Author% on %Date%."
3750
  msgstr ""
3751
 
3752
- #: defaults.php:254
3753
  msgid "User posted a comment"
3754
  msgstr ""
3755
 
3756
- #: defaults.php:254 defaults.php:255
3757
  msgid "%CommentMsg% on %CommentLink%."
3758
  msgstr ""
3759
 
3760
- #: defaults.php:255
3761
  msgid "Visitor posted a comment"
3762
  msgstr ""
3763
 
3764
- #: defaults.php:267
3765
  msgid "User modified a draft blog post"
3766
  msgstr ""
3767
 
3768
- #: defaults.php:267
3769
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3770
  msgstr ""
3771
 
3772
- #: defaults.php:268
3773
  msgid "User created a new post with custom post type and saved it as draft"
3774
  msgstr ""
3775
 
3776
- #: defaults.php:268
3777
  msgid ""
3778
  "Created a new custom post called %PostTitle% of type %PostType%. "
3779
  "%EditorLinkPost%."
3780
  msgstr ""
3781
 
3782
- #: defaults.php:269
3783
  msgid "User published a post with custom post type"
3784
  msgstr ""
3785
 
3786
- #: defaults.php:269
3787
  msgid ""
3788
  "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3789
  "%. %EditorLinkPost%."
3790
  msgstr ""
3791
 
3792
- #: defaults.php:270
3793
  msgid "User modified a post with custom post type"
3794
  msgstr ""
3795
 
3796
- #: defaults.php:270
3797
  msgid ""
3798
  "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3799
  "%. %EditorLinkPost%."
3800
  msgstr ""
3801
 
3802
- #: defaults.php:271
3803
  msgid "User modified a draft post with custom post type"
3804
  msgstr ""
3805
 
3806
- #: defaults.php:271
3807
  msgid ""
3808
  "Modified the draft custom post %PostTitle% of type is %PostType%. "
3809
  "%EditorLinkPost%."
3810
  msgstr ""
3811
 
3812
- #: defaults.php:272
3813
  msgid "User permanently deleted post with custom post type"
3814
  msgstr ""
3815
 
3816
- #: defaults.php:272
3817
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3818
  msgstr ""
3819
 
3820
- #: defaults.php:273
3821
  msgid "User moved post with custom post type to trash"
3822
  msgstr ""
3823
 
3824
- #: defaults.php:273
3825
  msgid ""
3826
  "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
3827
  "%PostUrl%."
3828
  msgstr ""
3829
 
3830
- #: defaults.php:274
3831
  msgid "User restored post with custom post type from trash"
3832
  msgstr ""
3833
 
3834
- #: defaults.php:274
3835
  msgid ""
3836
  "The custom post %PostTitle% of type %PostType% has been restored from trash. "
3837
  "%EditorLinkPost%."
3838
  msgstr ""
3839
 
3840
- #: defaults.php:275
3841
  msgid "User changed the category of a post with custom post type"
3842
  msgstr ""
3843
 
3844
- #: defaults.php:275
3845
  msgid ""
3846
  "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
3847
  "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3848
  msgstr ""
3849
 
3850
- #: defaults.php:276
3851
  msgid "User changed the URL of a post with custom post type"
3852
  msgstr ""
3853
 
3854
- #: defaults.php:276
3855
  msgid ""
3856
  "Changed the URL of the custom post %PostTitle% of type %PostType% from "
3857
  "%OldUrl% to %NewUrl%. %EditorLinkPost%."
3858
  msgstr ""
3859
 
3860
- #: defaults.php:277
3861
  msgid "User changed the author or post with custom post type"
3862
  msgstr ""
3863
 
3864
- #: defaults.php:277
3865
  msgid ""
3866
  "Changed the author of custom post %PostTitle% of type %PostType% from "
3867
  "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3868
  msgstr ""
3869
 
3870
- #: defaults.php:278
3871
  msgid "User changed the status of post with custom post type"
3872
  msgstr ""
3873
 
3874
- #: defaults.php:278
3875
  msgid ""
3876
  "Changed the status of custom post %PostTitle% of type %PostType% from "
3877
  "%OldStatus% to %NewStatus%. %EditorLinkPost%."
3878
  msgstr ""
3879
 
3880
- #: defaults.php:279
3881
  msgid "User changed the visibility of a post with custom post type"
3882
  msgstr ""
3883
 
3884
- #: defaults.php:279
3885
  msgid ""
3886
  "Changed the visibility of the custom post %PostTitle% of type %PostType% "
3887
  "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3888
  msgstr ""
3889
 
3890
- #: defaults.php:280
3891
  msgid "User changed the date of post with custom post type"
3892
  msgstr ""
3893
 
3894
- #: defaults.php:280
3895
  msgid ""
3896
  "Changed the date of the custom post %PostTitle% of type %PostType% from "
3897
  "%OldDate% to %NewDate%. %EditorLinkPost%."
3898
  msgstr ""
3899
 
3900
- #: defaults.php:281
3901
  msgid "User created a custom field for a custom post type"
3902
  msgstr ""
3903
 
3904
- #: defaults.php:281
3905
  msgid ""
3906
  "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
3907
  "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3908
  msgstr ""
3909
 
3910
- #: defaults.php:282
3911
  msgid "User updated a custom field for a custom post type"
3912
  msgstr ""
3913
 
3914
- #: defaults.php:282
3915
  msgid ""
3916
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3917
  "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
3918
  "%.<br>%MetaLink%."
3919
  msgstr ""
3920
 
3921
- #: defaults.php:283
3922
  msgid "User deleted a custom field from a custom post type"
3923
  msgstr ""
3924
 
3925
- #: defaults.php:283
3926
  msgid ""
3927
  "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
3928
  "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3929
  msgstr ""
3930
 
3931
- #: defaults.php:284
3932
  msgid "User updated a custom field name for a custom post type"
3933
  msgstr ""
3934
 
3935
- #: defaults.php:284
3936
  msgid ""
3937
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
3938
  "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3939
  msgstr ""
3940
 
3941
- #: defaults.php:285
3942
  msgid "User modified content for a published custom post type"
3943
  msgstr ""
3944
 
3945
- #: defaults.php:285
3946
  msgid ""
3947
  "Modified the content of the published custom post type %PostTitle%. Post URL "
3948
  "is %PostUrl%.%EditorLinkPost%."
3949
  msgstr ""
3950
 
3951
- #: defaults.php:286
3952
  msgid "User modified content for a draft post"
3953
  msgstr ""
3954
 
3955
- #: defaults.php:286
3956
  msgid ""
3957
  "Modified the content of the draft post %PostTitle%.%RevisionLink% "
3958
  "%EditorLinkPost%."
3959
  msgstr ""
3960
 
3961
- #: defaults.php:287
3962
  msgid "User modified content for a draft custom post type"
3963
  msgstr ""
3964
 
3965
- #: defaults.php:287
3966
  msgid ""
3967
  "Modified the content of the draft custom post type %PostTitle%."
3968
  "%EditorLinkPost%."
3969
  msgstr ""
3970
 
3971
- #: defaults.php:288
3972
  msgid "User modified content of a post"
3973
  msgstr ""
3974
 
3975
- #: defaults.php:288
3976
  msgid ""
3977
  "Modified the content of post %PostTitle% which is submitted for review."
3978
  "%RevisionLink% %EditorLinkPost%."
3979
  msgstr ""
3980
 
3981
- #: defaults.php:289
3982
  msgid "User scheduled a custom post type"
3983
  msgstr ""
3984
 
3985
- #: defaults.php:289
3986
  msgid ""
3987
  "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
3988
  "%EditorLinkPost%."
3989
  msgstr ""
3990
 
3991
- #: defaults.php:290
3992
  msgid "User changed title of a custom post type"
3993
  msgstr ""
3994
 
3995
- #: defaults.php:290
3996
  msgid ""
3997
  "Changed the title of the custom post %OldTitle% to %NewTitle%. "
3998
  "%EditorLinkPost%."
3999
  msgstr ""
4000
 
4001
- #: defaults.php:291
4002
  msgid "User opened a custom post type in the editor"
4003
  msgstr ""
4004
 
4005
- #: defaults.php:291
4006
  msgid ""
4007
  "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
4008
  "the post: %EditorLinkPost%."
4009
  msgstr ""
4010
 
4011
- #: defaults.php:292
4012
  msgid "User viewed a custom post type"
4013
  msgstr ""
4014
 
4015
- #: defaults.php:292
4016
  msgid ""
4017
  "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
4018
  "%PostUrl%."
4019
  msgstr ""
4020
 
4021
- #: defaults.php:293
4022
  msgid "A plugin created a custom post"
4023
  msgstr ""
4024
 
4025
- #: defaults.php:293
4026
  msgid "A plugin automatically created the following custom post: %PostTitle%."
4027
  msgstr ""
4028
 
4029
- #: defaults.php:294
4030
  msgid "A plugin deleted a custom post"
4031
  msgstr ""
4032
 
4033
- #: defaults.php:294
4034
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
4035
  msgstr ""
4036
 
4037
- #: defaults.php:295
4038
  msgid "A plugin modified a custom post"
4039
  msgstr ""
4040
 
4041
- #: defaults.php:295
4042
  msgid ""
4043
  "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
4044
  msgstr ""
4045
 
4046
- #: defaults.php:307
4047
  msgid "User created a new WordPress page and saved it as draft"
4048
  msgstr ""
4049
 
4050
- #: defaults.php:307
4051
  msgid ""
4052
  "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
4053
  "%."
4054
  msgstr ""
4055
 
4056
- #: defaults.php:308
4057
  msgid "User published a WordPress page"
4058
  msgstr ""
4059
 
4060
- #: defaults.php:308
4061
  msgid ""
4062
  "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
4063
  msgstr ""
4064
 
4065
- #: defaults.php:309
4066
  msgid "User modified a published WordPress page"
4067
  msgstr ""
4068
 
4069
- #: defaults.php:309
4070
  msgid ""
4071
  "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
4072
  "%EditorLinkPage%."
4073
  msgstr ""
4074
 
4075
- #: defaults.php:310
4076
  msgid "User modified a draft WordPress page"
4077
  msgstr ""
4078
 
4079
- #: defaults.php:310
4080
  msgid ""
4081
  "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
4082
  msgstr ""
4083
 
4084
- #: defaults.php:311
4085
  msgid "User permanently deleted a page from the trash"
4086
  msgstr ""
4087
 
4088
- #: defaults.php:311
4089
  msgid "Permanently deleted the page %PostTitle%."
4090
  msgstr ""
4091
 
4092
- #: defaults.php:312
4093
  msgid "User moved WordPress page to the trash"
4094
  msgstr ""
4095
 
4096
- #: defaults.php:312
4097
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
4098
  msgstr ""
4099
 
4100
- #: defaults.php:313
4101
  msgid "User restored a WordPress page from trash"
4102
  msgstr ""
4103
 
4104
- #: defaults.php:313
4105
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
4106
  msgstr ""
4107
 
4108
- #: defaults.php:314
4109
  msgid "User changed page URL"
4110
  msgstr ""
4111
 
4112
- #: defaults.php:314
4113
  msgid ""
4114
  "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
4115
  "%EditorLinkPage%."
4116
  msgstr ""
4117
 
4118
- #: defaults.php:315
4119
  msgid "User changed page author"
4120
  msgstr ""
4121
 
4122
- #: defaults.php:315
4123
  msgid ""
4124
  "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
4125
  "%EditorLinkPage%."
4126
  msgstr ""
4127
 
4128
- #: defaults.php:316
4129
  msgid "User changed page status"
4130
  msgstr ""
4131
 
4132
- #: defaults.php:316
4133
  msgid ""
4134
  "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
4135
  "%EditorLinkPage%."
4136
  msgstr ""
4137
 
4138
- #: defaults.php:317
4139
  msgid "User changed the visibility of a page post"
4140
  msgstr ""
4141
 
4142
- #: defaults.php:317
4143
  msgid ""
4144
  "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
4145
  "%NewVisibility%. %EditorLinkPage%."
4146
  msgstr ""
4147
 
4148
- #: defaults.php:318
4149
  msgid "User changed the date of a page post"
4150
  msgstr ""
4151
 
4152
- #: defaults.php:318
4153
  msgid ""
4154
  "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
4155
  "%EditorLinkPage%."
4156
  msgstr ""
4157
 
4158
- #: defaults.php:319
4159
  msgid "User created a custom field for a page"
4160
  msgstr ""
4161
 
4162
- #: defaults.php:319
4163
  msgid ""
4164
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
4165
  "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4166
  msgstr ""
4167
 
4168
- #: defaults.php:320
4169
  msgid "User updated a custom field value for a page"
4170
  msgstr ""
4171
 
4172
- #: defaults.php:320
4173
  msgid ""
4174
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
4175
  "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4176
  msgstr ""
4177
 
4178
- #: defaults.php:321
4179
  msgid "User deleted a custom field from a page"
4180
  msgstr ""
4181
 
4182
- #: defaults.php:321
4183
  msgid ""
4184
  "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
4185
  "%EditorLinkPage%.<br>%MetaLink%."
4186
  msgstr ""
4187
 
4188
- #: defaults.php:322
4189
  msgid "User updated a custom field name for a page"
4190
  msgstr ""
4191
 
4192
- #: defaults.php:322
4193
  msgid ""
4194
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
4195
  "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4196
  msgstr ""
4197
 
4198
- #: defaults.php:323
4199
  msgid "User modified content for a published page"
4200
  msgstr ""
4201
 
4202
- #: defaults.php:323
4203
  msgid ""
4204
  "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
4205
  "%. %RevisionLink% %EditorLinkPage%."
4206
  msgstr ""
4207
 
4208
- #: defaults.php:324
4209
  msgid "User modified content for a draft page"
4210
  msgstr ""
4211
 
4212
- #: defaults.php:324
4213
  msgid ""
4214
  "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
4215
  "%."
4216
  msgstr ""
4217
 
4218
- #: defaults.php:325
4219
  msgid "User scheduled a page"
4220
  msgstr ""
4221
 
4222
- #: defaults.php:325
4223
  msgid ""
4224
  "Scheduled the page %PostTitle% to be published %PublishingDate%. "
4225
  "%EditorLinkPage%."
4226
  msgstr ""
4227
 
4228
- #: defaults.php:326
4229
  msgid "User changed title of a page"
4230
  msgstr ""
4231
 
4232
- #: defaults.php:326
4233
  msgid ""
4234
  "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
4235
  msgstr ""
4236
 
4237
- #: defaults.php:327
4238
  msgid "User opened a page in the editor"
4239
  msgstr ""
4240
 
4241
- #: defaults.php:327
4242
  msgid ""
4243
  "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
4244
  msgstr ""
4245
 
4246
- #: defaults.php:328
4247
  msgid "User viewed a page"
4248
  msgstr ""
4249
 
4250
- #: defaults.php:328
4251
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
4252
  msgstr ""
4253
 
4254
- #: defaults.php:329
4255
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
4256
  msgstr ""
4257
 
4258
- #: defaults.php:329
4259
  msgid ""
4260
  "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
4261
  msgstr ""
4262
 
4263
- #: defaults.php:330
4264
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
4265
  msgstr ""
4266
 
4267
- #: defaults.php:330
4268
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
4269
  msgstr ""
4270
 
4271
- #: defaults.php:331
4272
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
4273
  msgstr ""
4274
 
4275
- #: defaults.php:331
4276
  msgid ""
4277
  "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
4278
  msgstr ""
4279
 
4280
- #: defaults.php:332
4281
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
4282
  msgstr ""
4283
 
4284
- #: defaults.php:332
4285
  msgid ""
4286
  "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
4287
  msgstr ""
4288
 
4289
- #: defaults.php:333
4290
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
4291
  msgstr ""
4292
 
4293
- #: defaults.php:333
4294
  msgid ""
4295
  "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4296
  msgstr ""
4297
 
4298
- #: defaults.php:334
4299
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
4300
  msgstr ""
4301
 
4302
- #: defaults.php:334
4303
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4304
  msgstr ""
4305
 
4306
- #: defaults.php:335
4307
  msgid "A plugin created a page"
4308
  msgstr ""
4309
 
4310
- #: defaults.php:335
4311
  msgid "A plugin automatically created the following page: %PostTitle%."
4312
  msgstr ""
4313
 
4314
- #: defaults.php:336
4315
  msgid "A plugin deleted a page"
4316
  msgstr ""
4317
 
4318
- #: defaults.php:336
4319
  msgid "A plugin automatically deleted the following page: %PostTitle%."
4320
  msgstr ""
4321
 
4322
- #: defaults.php:337
4323
  msgid "A plugin modified a page"
4324
  msgstr ""
4325
 
4326
- #: defaults.php:337
4327
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
4328
  msgstr ""
4329
 
4330
- #: defaults.php:344
4331
  msgid "WordPress Install"
4332
  msgstr ""
4333
 
4334
- #: defaults.php:348
4335
  msgid "Database"
4336
  msgstr ""
4337
 
4338
- #: defaults.php:349
4339
  msgid "Unknown component created tables"
4340
  msgstr ""
4341
 
4342
- #: defaults.php:349
4343
  msgid ""
4344
  "An unknown component created these tables in the database: %TableNames%."
4345
  msgstr ""
4346
 
4347
- #: defaults.php:350
4348
  msgid "Unknown component modified tables structure"
4349
  msgstr ""
4350
 
4351
- #: defaults.php:350
4352
  msgid ""
4353
  "An unknown component modified the structure of these database tables: "
4354
  "%TableNames%."
4355
  msgstr ""
4356
 
4357
- #: defaults.php:351
4358
  msgid "Unknown component deleted tables"
4359
  msgstr ""
4360
 
4361
- #: defaults.php:351
4362
  msgid ""
4363
  "An unknown component deleted the following tables from the database: "
4364
  "%TableNames%."
4365
  msgstr ""
4366
 
4367
- #: defaults.php:358
4368
  msgid "User installed a plugin"
4369
  msgstr ""
4370
 
4371
- #: defaults.php:358
4372
  msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
4373
  msgstr ""
4374
 
4375
- #: defaults.php:359
4376
  msgid "User activated a WordPress plugin"
4377
  msgstr ""
4378
 
4379
- #: defaults.php:359
4380
  msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
4381
  msgstr ""
4382
 
4383
- #: defaults.php:360
4384
  msgid "User deactivated a WordPress plugin"
4385
  msgstr ""
4386
 
4387
- #: defaults.php:360
4388
  msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
4389
  msgstr ""
4390
 
4391
- #: defaults.php:361
4392
  msgid "User uninstalled a plugin"
4393
  msgstr ""
4394
 
4395
- #: defaults.php:361
4396
  msgid ""
4397
  "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
4398
  "%."
4399
  msgstr ""
4400
 
4401
- #: defaults.php:362
4402
  msgid "User upgraded a plugin"
4403
  msgstr ""
4404
 
4405
- #: defaults.php:362
4406
  msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
4407
  msgstr ""
4408
 
4409
- #: defaults.php:363
4410
  msgid "Plugin created tables"
4411
  msgstr ""
4412
 
4413
- #: defaults.php:363
4414
  msgid ""
4415
  "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
4416
  msgstr ""
4417
 
4418
- #: defaults.php:364
4419
  msgid "Plugin modified tables structure"
4420
  msgstr ""
4421
 
4422
- #: defaults.php:364
4423
  msgid ""
4424
  "Plugin %Plugin->Name% modified the structure of these database tables: "
4425
  "%TableNames%."
4426
  msgstr ""
4427
 
4428
- #: defaults.php:365
4429
  msgid "Plugin deleted tables"
4430
  msgstr ""
4431
 
4432
- #: defaults.php:365
4433
  msgid ""
4434
  "Plugin %Plugin->Name% deleted the following tables from the database: "
4435
  "%TableNames%."
4436
  msgstr ""
4437
 
4438
- #: defaults.php:366
4439
  msgid "A plugin created a post"
4440
  msgstr ""
4441
 
4442
- #: defaults.php:366
4443
  msgid ""
4444
  "A plugin automatically created the following %PostType% called %PostTitle%. "
4445
  "View the post: %EditorLinkPost%."
4446
  msgstr ""
4447
 
4448
- #: defaults.php:367
4449
  msgid "A plugin deleted a post"
4450
  msgstr ""
4451
 
4452
- #: defaults.php:367
4453
  msgid ""
4454
  "A plugin automatically deleted the following %PostType% called %PostTitle%."
4455
  msgstr ""
4456
 
4457
- #: defaults.php:368
4458
  msgid "User changed a file using the plugin editor"
4459
  msgstr ""
4460
 
4461
- #: defaults.php:368
4462
  msgid "Modified %File% with the Plugin Editor."
4463
  msgstr ""
4464
 
4465
- #: defaults.php:374
4466
  msgid "Themes"
4467
  msgstr ""
4468
 
4469
- #: defaults.php:375
4470
  msgid "User installed a theme"
4471
  msgstr ""
4472
 
4473
- #: defaults.php:375
4474
  msgid ""
4475
  "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
4476
  msgstr ""
4477
 
4478
- #: defaults.php:376
4479
  msgid "User activated a theme"
4480
  msgstr ""
4481
 
4482
- #: defaults.php:376
4483
  msgid ""
4484
  "Activated the theme \"%Theme->Name%\", installed in %Theme-"
4485
  ">get_template_directory%."
4486
  msgstr ""
4487
 
4488
- #: defaults.php:377
4489
  msgid "User uninstalled a theme"
4490
  msgstr ""
4491
 
4492
- #: defaults.php:377
4493
  msgid ""
4494
  "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
4495
  ">get_template_directory%."
4496
  msgstr ""
4497
 
4498
- #: defaults.php:378
4499
  msgid "Activated theme on network"
4500
  msgstr ""
4501
 
4502
- #: defaults.php:378
4503
  msgid ""
4504
  "Network activated the theme %Theme->Name% installed in %Theme-"
4505
  ">get_template_directory%."
4506
  msgstr ""
4507
 
4508
- #: defaults.php:379
4509
  msgid "Deactivated theme from network"
4510
  msgstr ""
4511
 
4512
- #: defaults.php:379
4513
  msgid ""
4514
  "Network deactivated the theme %Theme->Name% installed in %Theme-"
4515
  ">get_template_directory%."
4516
  msgstr ""
4517
 
4518
- #: defaults.php:380
4519
  msgid "Theme created tables"
4520
  msgstr ""
4521
 
4522
- #: defaults.php:380
4523
  msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
4524
  msgstr ""
4525
 
4526
- #: defaults.php:381
4527
  msgid "Theme modified tables structure"
4528
  msgstr ""
4529
 
4530
- #: defaults.php:381
4531
  msgid ""
4532
  "Theme %Theme->Name% modified the structure of these database tables: "
4533
  "%TableNames%."
4534
  msgstr ""
4535
 
4536
- #: defaults.php:382
4537
  msgid "Theme deleted tables"
4538
  msgstr ""
4539
 
4540
- #: defaults.php:382
4541
  msgid ""
4542
  "Theme %Theme->Name% deleted the following tables from the database: "
4543
  "%TableNames%."
4544
  msgstr ""
4545
 
4546
- #: defaults.php:383
4547
  msgid "User updated a theme"
4548
  msgstr ""
4549
 
4550
- #: defaults.php:383
4551
  msgid ""
4552
  "Updated the theme \"%Theme->Name%\" installed in %Theme-"
4553
  ">get_template_directory%."
4554
  msgstr ""
4555
 
4556
- #: defaults.php:384
4557
  msgid "User changed a file using the theme editor"
4558
  msgstr ""
4559
 
4560
- #: defaults.php:384
4561
  msgid "Modified %File% with the Theme Editor."
4562
  msgstr ""
4563
 
4564
- #: defaults.php:391
4565
  msgid "Unknown Error"
4566
  msgstr ""
4567
 
4568
- #: defaults.php:391
4569
  msgid "An unexpected error has occurred ."
4570
  msgstr ""
4571
 
4572
- #: defaults.php:392
4573
  msgid "PHP error"
4574
  msgstr ""
4575
 
4576
- #: defaults.php:392 defaults.php:393 defaults.php:394 defaults.php:395
4577
- #: defaults.php:396
4578
  msgid "%Message%."
4579
  msgstr ""
4580
 
4581
- #: defaults.php:393
4582
  msgid "PHP warning"
4583
  msgstr ""
4584
 
4585
- #: defaults.php:394
4586
  msgid "PHP notice"
4587
  msgstr ""
4588
 
4589
- #: defaults.php:395
4590
  msgid "PHP exception"
4591
  msgstr ""
4592
 
4593
- #: defaults.php:396
4594
  msgid "PHP shutdown error"
4595
  msgstr ""
4596
 
4597
- #: defaults.php:397
4598
  msgid "Events automatically pruned by system"
4599
  msgstr ""
4600
 
4601
- #: defaults.php:397
4602
  msgid "System automatically deleted %EventCount% event(s)."
4603
  msgstr ""
4604
 
4605
- #: defaults.php:398
4606
  msgid "WordPress was updated"
4607
  msgstr ""
4608
 
4609
- #: defaults.php:398
4610
  msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
4611
  msgstr ""
4612
 
4613
- #: defaults.php:399
4614
  msgid "Reset plugin's settings to default"
4615
  msgstr ""
4616
 
4617
- #: defaults.php:399
4618
  msgid "Reset plugin's settings to default."
4619
  msgstr ""
4620
 
4621
- #: defaults.php:400
4622
  msgid "Purged the activity log"
4623
  msgstr ""
4624
 
4625
- #: defaults.php:400
4626
  msgid "Purged the activity log."
4627
  msgstr ""
4628
 
4629
- #: defaults.php:401
4630
  msgid "File content has been modified"
4631
  msgstr ""
4632
 
4633
- #: defaults.php:401
4634
  msgid "The content of the file %FileLocation% has been modified."
4635
  msgstr ""
4636
 
4637
- #: defaults.php:402
4638
  msgid "File added to the site"
4639
  msgstr ""
4640
 
4641
- #: defaults.php:402
4642
  msgid "The file %FileLocation% has been added to your website."
4643
  msgstr ""
4644
 
4645
- #: defaults.php:403
4646
  msgid "File deleted from the site"
4647
  msgstr ""
4648
 
4649
- #: defaults.php:403
4650
  msgid "The file %FileLocation% has been deleted from your website."
4651
  msgstr ""
4652
 
4653
- #: defaults.php:404
4654
  msgid "File not scanned because it is bigger than the maximum file size limit"
4655
  msgstr ""
4656
 
4657
- #: defaults.php:404
4658
  msgid ""
4659
  "The file %FileLocation% was not scanned because it is bigger than the "
4660
  "maximum file size limit. If you want to include these files in the scan "
4661
  "increase the file size limit from the %FileSettings%."
4662
  msgstr ""
4663
 
4664
- #: defaults.php:405
4665
  msgid "File integrity scan stopped due to the limit of 1 million files"
4666
  msgstr ""
4667
 
4668
- #: defaults.php:405
4669
  msgid ""
4670
  "The file changes scanning engine has reached the limit of 1 million files "
4671
  "and stopped the scan. Please %ContactSupport% for more information."
4672
  msgstr ""
4673
 
4674
- #: defaults.php:406
4675
  msgid "File integrity scan started/stopped"
4676
  msgstr ""
4677
 
4678
- #: defaults.php:406
4679
  msgid "The file integrity scanner has %ScanStatus%."
4680
  msgstr ""
4681
 
4682
- #: defaults.php:407
4683
  msgid "Advertising Add-ons"
4684
  msgstr ""
4685
 
4686
- #: defaults.php:407
4687
  msgid "%PromoName% %PromoMessage%"
4688
  msgstr ""
4689
 
4690
- #: defaults.php:413
4691
  msgid "Menus"
4692
  msgstr ""
4693
 
4694
- #: defaults.php:414
4695
  msgid "User created new menu"
4696
  msgstr ""
4697
 
4698
- #: defaults.php:414
4699
  msgid "Created a new menu called %MenuName%."
4700
  msgstr ""
4701
 
4702
- #: defaults.php:415
4703
  msgid "User added content to a menu"
4704
  msgstr ""
4705
 
4706
- #: defaults.php:415
4707
  msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
4708
  msgstr ""
4709
 
4710
- #: defaults.php:416
4711
  msgid "User removed content from a menu"
4712
  msgstr ""
4713
 
4714
- #: defaults.php:416
4715
  msgid ""
4716
  "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
4717
  msgstr ""
4718
 
4719
- #: defaults.php:417
4720
  msgid "User deleted menu"
4721
  msgstr ""
4722
 
4723
- #: defaults.php:417
4724
  msgid "Deleted the menu %MenuName%."
4725
  msgstr ""
4726
 
4727
- #: defaults.php:418
4728
  msgid "User changed menu setting"
4729
  msgstr ""
4730
 
4731
- #: defaults.php:418
4732
  msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
4733
  msgstr ""
4734
 
4735
- #: defaults.php:419
4736
  msgid "User modified content in a menu"
4737
  msgstr ""
4738
 
4739
- #: defaults.php:419
4740
  msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
4741
  msgstr ""
4742
 
4743
- #: defaults.php:420
4744
  msgid "User changed name of a menu"
4745
  msgstr ""
4746
 
4747
- #: defaults.php:420
4748
  msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
4749
  msgstr ""
4750
 
4751
- #: defaults.php:421
4752
  msgid "User changed order of the objects in a menu"
4753
  msgstr ""
4754
 
4755
- #: defaults.php:421
4756
  msgid "Changed the order of the %ItemName% in menu %MenuName%."
4757
  msgstr ""
4758
 
4759
- #: defaults.php:422
4760
  msgid "User moved objects as a sub-item"
4761
  msgstr ""
4762
 
4763
- #: defaults.php:422
4764
  msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
4765
  msgstr ""
4766
 
4767
- #: defaults.php:428
4768
  msgid "Widgets"
4769
  msgstr ""
4770
 
4771
- #: defaults.php:429
4772
  msgid "User added a new widget"
4773
  msgstr ""
4774
 
4775
- #: defaults.php:429
4776
  msgid "Added a new %WidgetName% widget in %Sidebar%."
4777
  msgstr ""
4778
 
4779
- #: defaults.php:430
4780
  msgid "User modified a widget"
4781
  msgstr ""
4782
 
4783
- #: defaults.php:430
4784
  msgid "Modified the %WidgetName% widget in %Sidebar%."
4785
  msgstr ""
4786
 
4787
- #: defaults.php:431
4788
  msgid "User deleted widget"
4789
  msgstr ""
4790
 
4791
- #: defaults.php:431
4792
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
4793
  msgstr ""
4794
 
4795
- #: defaults.php:432
4796
  msgid "User moved widget"
4797
  msgstr ""
4798
 
4799
- #: defaults.php:432
4800
  msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
4801
  msgstr ""
4802
 
4803
- #: defaults.php:433
4804
  msgid "User changed widget position"
4805
  msgstr ""
4806
 
4807
- #: defaults.php:433
4808
  msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
4809
  msgstr ""
4810
 
4811
- #: defaults.php:439
4812
  msgid "WordPress Settings"
4813
  msgstr ""
4814
 
4815
- #: defaults.php:440
4816
  msgid "Option Anyone Can Register in WordPress settings changed"
4817
  msgstr ""
4818
 
4819
- #: defaults.php:440
4820
  msgid "%NewValue% the option \"Anyone can register\"."
4821
  msgstr ""
4822
 
4823
- #: defaults.php:441
4824
  msgid "New User Default Role changed"
4825
  msgstr ""
4826
 
4827
- #: defaults.php:441
4828
  msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
4829
  msgstr ""
4830
 
4831
- #: defaults.php:442
4832
  msgid "WordPress Administrator Notification email changed"
4833
  msgstr ""
4834
 
4835
- #: defaults.php:442
4836
  msgid ""
4837
  "Changed the WordPress administrator notifications email address from "
4838
  "%OldEmail% to %NewEmail%."
4839
  msgstr ""
4840
 
4841
- #: defaults.php:443
4842
  msgid "User changes the WordPress Permalinks"
4843
  msgstr ""
4844
 
4845
- #: defaults.php:443
4846
  msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
4847
  msgstr ""
4848
 
4849
- #: defaults.php:444
4850
  msgid ""
4851
  "Enabled/Disabled the option Discourage search engines from indexing this site"
4852
  msgstr ""
4853
 
4854
- #: defaults.php:444
4855
  msgid "%Status% the option Discourage search engines from indexing this site."
4856
  msgstr ""
4857
 
4858
- #: defaults.php:445
4859
  msgid "Enabled/Disabled comments on all the website"
4860
  msgstr ""
4861
 
4862
- #: defaults.php:445
4863
  msgid "%Status% comments on all the website."
4864
  msgstr ""
4865
 
4866
- #: defaults.php:446
4867
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
4868
  msgstr ""
4869
 
4870
- #: defaults.php:446
4871
  msgid "%Status% the option Comment author must fill out name and email."
4872
  msgstr ""
4873
 
4874
- #: defaults.php:447
4875
  msgid ""
4876
  "Enabled/Disabled the option Users must be logged in and registered to comment"
4877
  msgstr ""
4878
 
4879
- #: defaults.php:447
4880
  msgid "%Status% the option Users must be logged in and registered to comment."
4881
  msgstr ""
4882
 
4883
- #: defaults.php:448
4884
  msgid "Enabled/Disabled the option to automatically close comments"
4885
  msgstr ""
4886
 
4887
- #: defaults.php:448
4888
  msgid "%Status% the option to automatically close comments after %Value% days."
4889
  msgstr ""
4890
 
4891
- #: defaults.php:449
4892
  msgid "Changed the value of the option Automatically close comments"
4893
  msgstr ""
4894
 
4895
- #: defaults.php:449
4896
  msgid ""
4897
  "Changed the value of the option Automatically close comments from %OldValue% "
4898
  "to %NewValue% days."
4899
  msgstr ""
4900
 
4901
- #: defaults.php:450
4902
  msgid "Enabled/Disabled the option for comments to be manually approved"
4903
  msgstr ""
4904
 
4905
- #: defaults.php:450
4906
  msgid "%Status% the option for comments to be manually approved."
4907
  msgstr ""
4908
 
4909
- #: defaults.php:451
4910
  msgid ""
4911
  "Enabled/Disabled the option for an author to have previously approved "
4912
  "comments for the comments to appear"
4913
  msgstr ""
4914
 
4915
- #: defaults.php:451
4916
  msgid ""
4917
  "%Status% the option for an author to have previously approved comments for "
4918
  "the comments to appear."
4919
  msgstr ""
4920
 
4921
- #: defaults.php:452
4922
  msgid ""
4923
  "Changed the number of links that a comment must have to be held in the queue"
4924
  msgstr ""
4925
 
4926
- #: defaults.php:452
4927
  msgid ""
4928
  "Changed the number of links from %OldValue% to %NewValue% that a comment "
4929
  "must have to be held in the queue."
4930
  msgstr ""
4931
 
4932
- #: defaults.php:453
4933
  msgid "Modified the list of keywords for comments moderation"
4934
  msgstr ""
4935
 
4936
- #: defaults.php:453
4937
  msgid "Modified the list of keywords for comments moderation."
4938
  msgstr ""
4939
 
4940
- #: defaults.php:454
4941
  msgid "Modified the list of keywords for comments blacklisting"
4942
  msgstr ""
4943
 
4944
- #: defaults.php:454
4945
  msgid "Modified the list of keywords for comments blacklisting."
4946
  msgstr ""
4947
 
4948
- #: defaults.php:455
4949
  msgid "Option WordPress Address (URL) in WordPress settings changed"
4950
  msgstr ""
4951
 
4952
- #: defaults.php:455
4953
  msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
4954
  msgstr ""
4955
 
4956
- #: defaults.php:456
4957
  msgid "Option Site Address (URL) in WordPress settings changed"
4958
  msgstr ""
4959
 
4960
- #: defaults.php:456
4961
  msgid "Changed the site address (URL) from %old_url% to %new_url%."
4962
  msgstr ""
4963
 
4964
- #: defaults.php:463
4965
  msgid "Multisite Network"
4966
  msgstr ""
4967
 
4968
- #: defaults.php:468
4969
  msgid "User granted Super Admin privileges"
4970
  msgstr ""
4971
 
4972
- #: defaults.php:468
4973
  msgid "Granted Super Admin privileges to %TargetUsername%."
4974
  msgstr ""
4975
 
4976
- #: defaults.php:469
4977
  msgid "User revoked from Super Admin privileges"
4978
  msgstr ""
4979
 
4980
- #: defaults.php:469
4981
  msgid "Revoked Super Admin privileges from %TargetUsername%."
4982
  msgstr ""
4983
 
4984
- #: defaults.php:470
4985
  msgid "Existing user added to a site"
4986
  msgstr ""
4987
 
4988
- #: defaults.php:470
4989
  msgid ""
4990
  "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
4991
  "%SiteName%."
4992
  msgstr ""
4993
 
4994
- #: defaults.php:471
4995
  msgid "User removed from site"
4996
  msgstr ""
4997
 
4998
- #: defaults.php:471
4999
  msgid ""
5000
  "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
5001
  "site."
5002
  msgstr ""
5003
 
5004
- #: defaults.php:472
5005
  msgid "New network user created"
5006
  msgstr ""
5007
 
5008
- #: defaults.php:472
5009
  msgid "Created a new network user %NewUserData->Username%."
5010
  msgstr ""
5011
 
5012
- #: defaults.php:473
5013
  msgid "New site added on the network"
5014
  msgstr ""
5015
 
5016
- #: defaults.php:473
5017
  msgid "Added the site %SiteName% to the network."
5018
  msgstr ""
5019
 
5020
- #: defaults.php:474
5021
  msgid "Existing site archived"
5022
  msgstr ""
5023
 
5024
- #: defaults.php:474
5025
  msgid "Archived the site %SiteName%."
5026
  msgstr ""
5027
 
5028
- #: defaults.php:475
5029
  msgid "Archived site has been unarchived"
5030
  msgstr ""
5031
 
5032
- #: defaults.php:475
5033
  msgid "Unarchived the site %SiteName%."
5034
  msgstr ""
5035
 
5036
- #: defaults.php:476
5037
  msgid "Deactivated site has been activated"
5038
  msgstr ""
5039
 
5040
- #: defaults.php:476
5041
  msgid "Activated the site %SiteName%."
5042
  msgstr ""
5043
 
5044
- #: defaults.php:477
5045
  msgid "Site has been deactivated"
5046
  msgstr ""
5047
 
5048
- #: defaults.php:477
5049
  msgid "Deactivated the site %SiteName%."
5050
  msgstr ""
5051
 
5052
- #: defaults.php:478
5053
  msgid "Existing site deleted from network"
5054
  msgstr ""
5055
 
5056
- #: defaults.php:478
5057
  msgid "Deleted the site %SiteName%."
5058
  msgstr ""
5059
 
5060
- #: defaults.php:490
5061
  msgid "User created new forum"
5062
  msgstr ""
5063
 
5064
- #: defaults.php:490
5065
  msgid ""
5066
  "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
5067
  msgstr ""
5068
 
5069
- #: defaults.php:491
5070
  msgid "User changed status of a forum"
5071
  msgstr ""
5072
 
5073
- #: defaults.php:491
5074
  msgid ""
5075
  "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
5076
  "%EditorLinkForum%."
5077
  msgstr ""
5078
 
5079
- #: defaults.php:492
5080
  msgid "User changed visibility of a forum"
5081
  msgstr ""
5082
 
5083
- #: defaults.php:492
5084
  msgid ""
5085
  "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
5086
  "%NewVisibility%. %EditorLinkForum%."
5087
  msgstr ""
5088
 
5089
- #: defaults.php:493
5090
  msgid "User changed the URL of a forum"
5091
  msgstr ""
5092
 
5093
- #: defaults.php:493
5094
  msgid ""
5095
  "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
5096
  "%EditorLinkForum%."
5097
  msgstr ""
5098
 
5099
- #: defaults.php:494
5100
  msgid "User changed order of a forum"
5101
  msgstr ""
5102
 
5103
- #: defaults.php:494
5104
  msgid ""
5105
  "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
5106
  "%EditorLinkForum%."
5107
  msgstr ""
5108
 
5109
- #: defaults.php:495
5110
  msgid "User moved forum to trash"
5111
  msgstr ""
5112
 
5113
- #: defaults.php:495
5114
  msgid "Moved the forum %ForumName% to trash."
5115
  msgstr ""
5116
 
5117
- #: defaults.php:496
5118
  msgid "User permanently deleted forum"
5119
  msgstr ""
5120
 
5121
- #: defaults.php:496
5122
  msgid "Permanently deleted the forum %ForumName%."
5123
  msgstr ""
5124
 
5125
- #: defaults.php:497
5126
  msgid "User restored forum from trash"
5127
  msgstr ""
5128
 
5129
- #: defaults.php:497
5130
  msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
5131
  msgstr ""
5132
 
5133
- #: defaults.php:498
5134
  msgid "User changed the parent of a forum"
5135
  msgstr ""
5136
 
5137
- #: defaults.php:498
5138
  msgid ""
5139
  "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
5140
  "%EditorLinkForum%."
5141
  msgstr ""
5142
 
5143
- #: defaults.php:499
5144
  msgid "User changed type of a forum"
5145
  msgstr ""
5146
 
5147
- #: defaults.php:499
5148
  msgid ""
5149
  "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
5150
  "%EditorLinkForum%."
5151
  msgstr ""
5152
 
5153
- #: defaults.php:500
5154
  msgid "User changed forum's role"
5155
  msgstr ""
5156
 
5157
- #: defaults.php:500
5158
  msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
5159
  msgstr ""
5160
 
5161
- #: defaults.php:501
5162
  msgid "User changed option of a forum"
5163
  msgstr ""
5164
 
5165
- #: defaults.php:501
5166
  msgid "%Status% the option for anonymous posting on forum."
5167
  msgstr ""
5168
 
5169
- #: defaults.php:502
5170
  msgid "User changed time to disallow post editing"
5171
  msgstr ""
5172
 
5173
- #: defaults.php:502
5174
  msgid ""
5175
  "Changed the time to disallow post editing from %OldTime% to %NewTime% "
5176
  "minutes in the forums."
5177
  msgstr ""
5178
 
5179
- #: defaults.php:503
5180
  msgid "User changed the forum setting posting throttle time"
5181
  msgstr ""
5182
 
5183
- #: defaults.php:503
5184
  msgid ""
5185
  "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
5186
  "forums."
5187
  msgstr ""
5188
 
5189
- #: defaults.php:504
5190
  msgid "User created new topic"
5191
  msgstr ""
5192
 
5193
- #: defaults.php:504
5194
  msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
5195
  msgstr ""
5196
 
5197
- #: defaults.php:505
5198
  msgid "User changed status of a topic"
5199
  msgstr ""
5200
 
5201
- #: defaults.php:505
5202
  msgid ""
5203
  "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
5204
  "%EditorLinkTopic%."
5205
  msgstr ""
5206
 
5207
- #: defaults.php:506
5208
  msgid "User changed type of a topic"
5209
  msgstr ""
5210
 
5211
- #: defaults.php:506
5212
  msgid ""
5213
  "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
5214
  "%EditorLinkTopic%."
5215
  msgstr ""
5216
 
5217
- #: defaults.php:507
5218
  msgid "User changed URL of a topic"
5219
  msgstr ""
5220
 
5221
- #: defaults.php:507
5222
  msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
5223
  msgstr ""
5224
 
5225
- #: defaults.php:508
5226
  msgid "User changed the forum of a topic"
5227
  msgstr ""
5228
 
5229
- #: defaults.php:508
5230
  msgid ""
5231
  "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
5232
  "%EditorLinkTopic%."
5233
  msgstr ""
5234
 
5235
- #: defaults.php:509
5236
  msgid "User moved topic to trash"
5237
  msgstr ""
5238
 
5239
- #: defaults.php:509
5240
  msgid "Moved the topic %TopicName% to trash."
5241
  msgstr ""
5242
 
5243
- #: defaults.php:510
5244
  msgid "User permanently deleted topic"
5245
  msgstr ""
5246
 
5247
- #: defaults.php:510
5248
  msgid "Permanently deleted the topic %TopicName%."
5249
  msgstr ""
5250
 
5251
- #: defaults.php:511
5252
  msgid "User restored topic from trash"
5253
  msgstr ""
5254
 
5255
- #: defaults.php:511
5256
  msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
5257
  msgstr ""
5258
 
5259
- #: defaults.php:512
5260
  msgid "User changed visibility of a topic"
5261
  msgstr ""
5262
 
5263
- #: defaults.php:512
5264
  msgid ""
5265
  "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
5266
  "%NewVisibility%. %EditorLinkTopic%."
5267
  msgstr ""
5268
 
5269
- #: defaults.php:513
5270
  msgid "The forum role of a user was changed by another WordPress user"
5271
  msgstr ""
5272
 
5273
- #: defaults.php:513
5274
  msgid ""
5275
  "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
5276
  "% by %UserChanger%."
5277
  msgstr ""
5278
 
5279
- #: defaults.php:520
5280
  msgid "User created a new product"
5281
  msgstr ""
5282
 
5283
- #: defaults.php:520
5284
  msgid ""
5285
  "Created a new product called %ProductTitle% and saved it as draft. View the "
5286
  "product: %EditorLinkProduct%."
5287
  msgstr ""
5288
 
5289
- #: defaults.php:521
5290
  msgid "User published a product"
5291
  msgstr ""
5292
 
5293
- #: defaults.php:521
5294
  msgid ""
5295
  "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
5296
  "the product: %EditorLinkProduct%."
5297
  msgstr ""
5298
 
5299
- #: defaults.php:522
5300
  msgid "User changed the category of a product"
5301
  msgstr ""
5302
 
5303
- #: defaults.php:522
5304
  msgid ""
5305
  "Changed the category of the %ProductStatus% product %ProductTitle% from "
5306
  "%OldCategories% to %NewCategories%. View the product: %EditorLinkProduct%."
5307
  msgstr ""
5308
 
5309
- #: defaults.php:523
5310
  msgid "User modified the short description of a product"
5311
  msgstr ""
5312
 
5313
- #: defaults.php:523
5314
  msgid ""
5315
  "Modified the short description of the %ProductStatus% product %ProductTitle%."
5316
  "%ChangeText% View the product: %EditorLinkProduct%."
5317
  msgstr ""
5318
 
5319
- #: defaults.php:524
5320
  msgid "User modified the text of a product"
5321
  msgstr ""
5322
 
5323
- #: defaults.php:524
5324
  msgid ""
5325
  "Modified the text of the %ProductStatus% product %ProductTitle%. View the "
5326
  "product: %EditorLinkProduct%."
5327
  msgstr ""
5328
 
5329
- #: defaults.php:525
5330
  msgid "User changed the URL of a product"
5331
  msgstr ""
5332
 
5333
- #: defaults.php:525
5334
  msgid ""
5335
  "Changed the URL of the %ProductStatus% product %ProductTitle%%ReportText%."
5336
  "%ChangeText% View the product: %EditorLinkProduct%."
5337
  msgstr ""
5338
 
5339
- #: defaults.php:526
5340
  msgid "User changed the date of a product"
5341
  msgstr ""
5342
 
5343
- #: defaults.php:526
5344
  msgid ""
5345
  "Changed the date of the %ProductStatus% product %ProductTitle% from %OldDate"
5346
  "% to %NewDate%. View the product: %EditorLinkProduct%."
5347
  msgstr ""
5348
 
5349
- #: defaults.php:527
5350
  msgid "User changed the visibility of a product"
5351
  msgstr ""
5352
 
5353
- #: defaults.php:527
5354
  msgid ""
5355
  "Changed the visibility of the %ProductStatus% product %ProductTitle% from "
5356
  "%OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct%."
5357
  msgstr ""
5358
 
5359
- #: defaults.php:528
5360
  msgid "User modified the product"
5361
  msgstr ""
5362
 
5363
- #: defaults.php:528
5364
  msgid ""
5365
  "Modified the %ProductStatus% product %ProductTitle%. Product URL is "
5366
  "%ProductUrl%. View the product: %EditorLinkProduct%."
5367
  msgstr ""
5368
 
5369
- #: defaults.php:529
5370
  msgid "User modified the draft product"
5371
  msgstr ""
5372
 
5373
- #: defaults.php:529
5374
  msgid ""
5375
  "Modified the draft product %ProductTitle%. View the product: "
5376
  "%EditorLinkProduct%."
5377
  msgstr ""
5378
 
5379
- #: defaults.php:530
5380
  msgid "User moved a product to trash"
5381
  msgstr ""
5382
 
5383
- #: defaults.php:530
5384
  msgid ""
5385
  "Moved the %ProductStatus% product %ProductTitle% to trash. Product URL was "
5386
  "%ProductUrl%."
5387
  msgstr ""
5388
 
5389
- #: defaults.php:531
5390
  msgid "User permanently deleted a product"
5391
  msgstr ""
5392
 
5393
- #: defaults.php:531
5394
  msgid "Permanently deleted the product %ProductTitle%."
5395
  msgstr ""
5396
 
5397
- #: defaults.php:532
5398
  msgid "User restored a product from the trash"
5399
  msgstr ""
5400
 
5401
- #: defaults.php:532
5402
  msgid ""
5403
  "Product %ProductTitle% has been restored from trash. View product: "
5404
  "%EditorLinkProduct%."
5405
  msgstr ""
5406
 
5407
- #: defaults.php:533
5408
  msgid "User changed status of a product"
5409
  msgstr ""
5410
 
5411
- #: defaults.php:533
5412
  msgid ""
5413
  "Changed the status of the product %ProductTitle% from %OldStatus% to "
5414
  "%NewStatus%. View the product: %EditorLinkProduct%."
5415
  msgstr ""
5416
 
5417
- #: defaults.php:534
5418
  msgid "User opened a product in the editor"
5419
  msgstr ""
5420
 
5421
- #: defaults.php:534
5422
  msgid ""
5423
  "Opened the %ProductStatus% product page %ProductTitle% in editor. View the "
5424
  "product: %EditorLinkProduct%."
5425
  msgstr ""
5426
 
5427
- #: defaults.php:535
5428
  msgid "User viewed a product"
5429
  msgstr ""
5430
 
5431
- #: defaults.php:535
5432
  msgid ""
5433
  "Viewed the %ProductStatus% product page %ProductTitle%. View the product: "
5434
  "%EditorLinkProduct%."
5435
  msgstr ""
5436
 
5437
- #: defaults.php:536
5438
  msgid "User renamed a product"
5439
  msgstr ""
5440
 
5441
- #: defaults.php:536
5442
  msgid ""
5443
  "Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the "
5444
  "product: %EditorLinkProduct%."
5445
  msgstr ""
5446
 
5447
- #: defaults.php:537
5448
  msgid "User changed the Product Data of a product"
5449
  msgstr ""
5450
 
5451
- #: defaults.php:537
5452
  msgid ""
5453
  "Changed the Product Type of the %ProductStatus% product %ProductTitle% from "
5454
  "%OldType% to %NewType%. View the product: %EditorLinkProduct%."
5455
  msgstr ""
5456
 
5457
- #: defaults.php:538
5458
  msgid "User changed type of a price"
5459
  msgstr ""
5460
 
5461
- #: defaults.php:538
5462
  msgid ""
5463
  "Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from "
5464
  "%OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%."
5465
  msgstr ""
5466
 
5467
- #: defaults.php:539
5468
  msgid "User changed the SKU of a product"
5469
  msgstr ""
5470
 
5471
- #: defaults.php:539
5472
  msgid ""
5473
  "Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% "
5474
  "to %NewSku%. View the product: %EditorLinkProduct%."
5475
  msgstr ""
5476
 
5477
- #: defaults.php:540
5478
  msgid "User changed the stock status of a product"
5479
  msgstr ""
5480
 
5481
- #: defaults.php:540
5482
  msgid ""
5483
  "Changed the stock status of the %ProductStatus% product %ProductTitle% from "
5484
  "%OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%."
5485
  msgstr ""
5486
 
5487
- #: defaults.php:541
5488
  msgid "User changed the stock quantity"
5489
  msgstr ""
5490
 
5491
- #: defaults.php:541
5492
  msgid ""
5493
  "Changed the stock quantity of the %ProductStatus% product %ProductTitle% "
5494
  "from %OldValue% to %NewValue%. View the product: %EditorLinkProduct%"
5495
  msgstr ""
5496
 
5497
- #: defaults.php:542
5498
  msgid "User set a product type"
5499
  msgstr ""
5500
 
5501
- #: defaults.php:542
5502
  msgid ""
5503
  "Changed the type of the %ProductStatus% simple product %ProductTitle% from "
5504
  "%OldType% to %NewType%. View the product: %EditorLinkProduct%."
5505
  msgstr ""
5506
 
5507
- #: defaults.php:543
5508
  msgid "User changed the weight of a product"
5509
  msgstr ""
5510
 
5511
- #: defaults.php:543
5512
  msgid ""
5513
  "Changed the weight of the %ProductStatus% product %ProductTitle% from "
5514
  "%OldWeight% to %NewWeight%. View the product: %EditorLinkProduct%."
5515
  msgstr ""
5516
 
5517
- #: defaults.php:544
5518
  msgid "User changed the dimensions of a product"
5519
  msgstr ""
5520
 
5521
- #: defaults.php:544
5522
  msgid ""
5523
  "Changed the %DimensionType% dimensions of the %ProductStatus% product "
5524
  "%ProductTitle% from %OldDimension% to %NewDimension%. View the product: "
5525
  "%EditorLinkProduct%."
5526
  msgstr ""
5527
 
5528
- #: defaults.php:545
5529
  msgid "User added the Downloadable File to a product"
5530
  msgstr ""
5531
 
5532
- #: defaults.php:545
5533
  msgid ""
5534
  "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
5535
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5536
  "%."
5537
  msgstr ""
5538
 
5539
- #: defaults.php:546
5540
  msgid "User Removed the Downloadable File from a product"
5541
  msgstr ""
5542
 
5543
- #: defaults.php:546
5544
  msgid ""
5545
  "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
5546
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5547
  "%."
5548
  msgstr ""
5549
 
5550
- #: defaults.php:547
5551
  msgid "User changed the name of a Downloadable File in a product"
5552
  msgstr ""
5553
 
5554
- #: defaults.php:547
5555
  msgid ""
5556
  "Changed the name of a Downloadable File from %OldName% to %NewName% in "
5557
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5558
  "%."
5559
  msgstr ""
5560
 
5561
- #: defaults.php:548
5562
  msgid "User changed the URL of the Downloadable File in a product"
5563
  msgstr ""
5564
 
5565
- #: defaults.php:548
5566
  msgid ""
5567
  "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
5568
  "% in %ProductStatus% product %ProductTitle%. View the product: "
5569
  "%EditorLinkProduct%."
5570
  msgstr ""
5571
 
5572
- #: defaults.php:549
5573
  msgid "User changed the catalog visibility of a product"
5574
  msgstr ""
5575
 
5576
- #: defaults.php:549
5577
  msgid ""
5578
  "Changed the catalog visibility of the %ProductStatus% product %ProductTitle% "
5579
  "from %OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct"
5580
  "%."
5581
  msgstr ""
5582
 
5583
- #: defaults.php:550
5584
  msgid "User changed the setting Featured Product of a product"
5585
  msgstr ""
5586
 
5587
- #: defaults.php:550
5588
  msgid ""
5589
  "%Status% the setting Featured Product in the %ProductStatus% product "
5590
  "%ProductTitle%. View the product: %EditorLinkProduct%."
5591
  msgstr ""
5592
 
5593
- #: defaults.php:551
5594
  msgid "User changed the Allow Backorders setting of a product"
5595
  msgstr ""
5596
 
5597
- #: defaults.php:551
5598
  msgid ""
5599
  "Changed the Allow Backorders setting of the %ProductStatus% product "
5600
  "%ProductTitle% from %OldStatus% to %NewStatus%. View the product: "
5601
  "%EditorLinkProduct%."
5602
  msgstr ""
5603
 
5604
- #: defaults.php:552
5605
  msgid "User added/removed products to upsell of a product"
5606
  msgstr ""
5607
 
5608
- #: defaults.php:552
5609
  msgid ""
5610
  "%Status% the product %UpsellTitle% to Upsells in the %ProductStatus% product "
5611
  "%ProductTitle%. View the product: %EditorLinkProduct%."
5612
  msgstr ""
5613
 
5614
- #: defaults.php:553
5615
  msgid "User added/removed products to cross-sells of a product"
5616
  msgstr ""
5617
 
5618
- #: defaults.php:553
5619
  msgid ""
5620
  "%Status% the product %CrossSellTitle% to Cross-sells in the %ProductStatus% "
5621
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5622
  msgstr ""
5623
 
5624
- #: defaults.php:554
5625
  msgid "Added a new attribute of a product"
5626
  msgstr ""
5627
 
5628
- #: defaults.php:554
5629
  msgid ""
5630
  "Added a new attribute called %AttributeName% with value %AttributeValue% in "
5631
  "the %ProductStatus% product %ProductTitle%. View the product: "
5632
  "%EditorLinkProduct%."
5633
  msgstr ""
5634
 
5635
- #: defaults.php:555
5636
  msgid "Modified the value of an attribute of a product"
5637
  msgstr ""
5638
 
5639
- #: defaults.php:555
5640
  msgid ""
5641
  "Modified the value of the attribute %AttributeName% from %OldValue% to "
5642
  "%NewValue% in the %ProductStatus% product %ProductTitle%. View the product: "
5643
  "%EditorLinkProduct%."
5644
  msgstr ""
5645
 
5646
- #: defaults.php:556
5647
  msgid "Changed the name of an attribute of a product"
5648
  msgstr ""
5649
 
5650
- #: defaults.php:556
5651
  msgid ""
5652
  "Changed the attribute's name from %OldValue% to %NewValue% in the "
5653
  "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5654
  "product: %EditorLinkProduct%."
5655
  msgstr ""
5656
 
5657
- #: defaults.php:557
5658
  msgid "Deleted an attribute of a product"
5659
  msgstr ""
5660
 
5661
- #: defaults.php:557
5662
  msgid ""
5663
  "Deleted the attribute %AttributeName% with value %AttributeValue% from "
5664
  "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5665
  "product: %EditorLinkProduct%."
5666
  msgstr ""
5667
 
5668
- #: defaults.php:558
5669
  msgid "Set the attribute visibility of a product"
5670
  msgstr ""
5671
 
5672
- #: defaults.php:558
5673
  msgid ""
5674
  "Set the attribute %AttributeName% as %AttributeVisiblilty% on product page "
5675
  "in %ProductStatus% product %ProductTitle%. View the product: "
5676
  "%EditorLinkProduct%."
5677
  msgstr ""
5678
 
5679
- #: defaults.php:565
5680
  msgid "User changed the Weight Unit"
5681
  msgstr ""
5682
 
5683
- #: defaults.php:565
5684
  msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
5685
  msgstr ""
5686
 
5687
- #: defaults.php:566
5688
  msgid "User changed the Dimensions Unit"
5689
  msgstr ""
5690
 
5691
- #: defaults.php:566
5692
  msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
5693
  msgstr ""
5694
 
5695
- #: defaults.php:567
5696
  msgid "User changed the Base Location"
5697
  msgstr ""
5698
 
5699
- #: defaults.php:567
5700
  msgid ""
5701
  "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
5702
  msgstr ""
5703
 
5704
- #: defaults.php:568
5705
  msgid "User Enabled/Disabled taxes"
5706
  msgstr ""
5707
 
5708
- #: defaults.php:568
5709
  msgid "%Status% taxes in the WooCommerce store."
5710
  msgstr ""
5711
 
5712
- #: defaults.php:569
5713
  msgid "User changed the currency"
5714
  msgstr ""
5715
 
5716
- #: defaults.php:569
5717
  msgid ""
5718
  "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
5719
  msgstr ""
5720
 
5721
- #: defaults.php:570
5722
  msgid "User Enabled/Disabled the use of coupons during checkout"
5723
  msgstr ""
5724
 
5725
- #: defaults.php:570
5726
  msgid "%Status% the use of coupons during checkout in WooCommerce."
5727
  msgstr ""
5728
 
5729
- #: defaults.php:571
5730
  msgid "User Enabled/Disabled guest checkout"
5731
  msgstr ""
5732
 
5733
- #: defaults.php:571
5734
  msgid "%Status% guest checkout in WooCommerce."
5735
  msgstr ""
5736
 
5737
- #: defaults.php:572
5738
  msgid "User Enabled/Disabled cash on delivery"
5739
  msgstr ""
5740
 
5741
- #: defaults.php:572
5742
  msgid "%Status% the option Cash on Delivery in WooCommerce."
5743
  msgstr ""
5744
 
5745
- #: defaults.php:573
5746
  msgid "User enabled a payment gateway"
5747
  msgstr ""
5748
 
5749
- #: defaults.php:573
5750
  msgid "Enabled the payment gateway %GatewayName%."
5751
  msgstr ""
5752
 
5753
- #: defaults.php:574
5754
  msgid "User disabled a payment gateway"
5755
  msgstr ""
5756
 
5757
- #: defaults.php:574
5758
  msgid "Disabled the payment gateway %GatewayName%."
5759
  msgstr ""
5760
 
5761
- #: defaults.php:575
5762
  msgid "User modified a payment gateway"
5763
  msgstr ""
5764
 
5765
- #: defaults.php:575
5766
  msgid "Modified the payment gateway %GatewayName%."
5767
  msgstr ""
5768
 
5769
- #: defaults.php:576
5770
  msgid "User modified prices with tax option"
5771
  msgstr ""
5772
 
5773
- #: defaults.php:576
5774
  msgid "Set the option that prices are %TaxStatus% of tax."
5775
  msgstr ""
5776
 
5777
- #: defaults.php:577
5778
  msgid "User modified tax calculation base"
5779
  msgstr ""
5780
 
5781
- #: defaults.php:577
5782
  msgid "Set the setting Calculate tax based on to %Setting%."
5783
  msgstr ""
5784
 
5785
- #: defaults.php:578
5786
  msgid "User modified shipping tax class"
5787
  msgstr ""
5788
 
5789
- #: defaults.php:578
5790
  msgid "Set the Shipping tax class to %Setting%."
5791
  msgstr ""
5792
 
5793
- #: defaults.php:579
5794
  msgid "User enabled/disabled rounding of tax"
5795
  msgstr ""
5796
 
5797
- #: defaults.php:579
5798
  msgid "%Status% rounding of tax at subtotal level."
5799
  msgstr ""
5800
 
5801
- #: defaults.php:580
5802
  msgid "User modified a shipping zone"
5803
  msgstr ""
5804
 
5805
- #: defaults.php:580
5806
  msgid "%ShippingZoneStatus% the shipping zone %ShippingZoneName%."
5807
  msgstr ""
5808
 
5809
- #: defaults.php:581
5810
  msgid "User created a new product category"
5811
  msgstr ""
5812
 
5813
- #: defaults.php:581
5814
  msgid ""
5815
  "Created a new product category called %CategoryName% in WooCommerce. Product "
5816
  "category slug is %Slug%."
5817
  msgstr ""
5818
 
5819
- #: defaults.php:582
5820
  msgid "User deleted a product category"
5821
  msgstr ""
5822
 
5823
- #: defaults.php:582
5824
  msgid ""
5825
  "Deleted the product category called %CategoryName% in WooCommerce. Product "
5826
  "category slug was %CategorySlug%."
5827
  msgstr ""
5828
 
5829
- #: defaults.php:583
5830
  msgid "User changed the slug of a product category"
5831
  msgstr ""
5832
 
5833
- #: defaults.php:583
5834
  msgid ""
5835
  "Changed the Slug of the product category %CategoryName% in WooCommerce from "
5836
  "%OldSlug% to %NewSlug%."
5837
  msgstr ""
5838
 
5839
- #: defaults.php:584
5840
  msgid "User changed the parent category of a product category"
5841
  msgstr ""
5842
 
5843
- #: defaults.php:584
5844
  msgid ""
5845
  "Changed the Parent Category of the product category %CategoryName% in "
5846
  "WooCommerce from %OldParentCat% to %NewParentCat%."
5847
  msgstr ""
5848
 
5849
- #: defaults.php:585
5850
  msgid "User changed the display type of a product category"
5851
  msgstr ""
5852
 
5853
- #: defaults.php:585
5854
  msgid ""
5855
  "Changed the Display Type of the product category %CategoryName% in "
5856
  "WooCommerce from %OldDisplayType% to %NewDisplayType%."
5857
  msgstr ""
5858
 
5859
- #: defaults.php:586
5860
  msgid "User changed the name of a product category"
5861
  msgstr ""
5862
 
5863
- #: defaults.php:586
5864
  msgid ""
5865
  "Changed the name of the product category %CategoryName% in WooCommerce from "
5866
  "%OldName% to %NewName%."
5867
  msgstr ""
5868
 
5869
- #: defaults.php:587
5870
  msgid "User created a new attribute"
5871
  msgstr ""
5872
 
5873
- #: defaults.php:587
5874
  msgid ""
5875
  "Created a new Attribute called %AttributeName% with slug %AttributeSlug% in "
5876
  "WooCommerce."
5877
  msgstr ""
5878
 
5879
- #: defaults.php:588
5880
  msgid "User deleted an attribute"
5881
  msgstr ""
5882
 
5883
- #: defaults.php:588
5884
  msgid ""
5885
  "Deleted the Attribute called %AttributeName% with Slug %AttributeSlug% from "
5886
  "WooCommerce."
5887
  msgstr ""
5888
 
5889
- #: defaults.php:589
5890
  msgid "User changed the slug of an attribute"
5891
  msgstr ""
5892
 
5893
- #: defaults.php:589
5894
  msgid ""
5895
  "Changed the Slug of the Attribute %AttributeName% in WooCommerce from "
5896
  "%OldSlug% to %NewSlug%."
5897
  msgstr ""
5898
 
5899
- #: defaults.php:590
5900
  msgid "User changed the name of an attribute"
5901
  msgstr ""
5902
 
5903
- #: defaults.php:590
5904
  msgid ""
5905
  "Changed the Name of the Attribute %AttributeName% in WooCommerce from "
5906
  "%OldName% to %NewName%."
5907
  msgstr ""
5908
 
5909
- #: defaults.php:591
5910
  msgid "User changed the default sort order of an attribute"
5911
  msgstr ""
5912
 
5913
- #: defaults.php:591
5914
  msgid ""
5915
  "Changed the Default Sort Order of the Attribute %AttributeName% in "
5916
  "WooCommerce from %OldSortOrder% to %NewSortOrder%."
5917
  msgstr ""
5918
 
5919
- #: defaults.php:592
5920
  msgid "User enabled/disabled the option Enable Archives of an attribute"
5921
  msgstr ""
5922
 
5923
- #: defaults.php:592
5924
  msgid ""
5925
  "%ArchivesStatus% the option Enable Archives in the Attribute %AttributeName% "
5926
  "in WooCommerce."
5927
  msgstr ""
5928
 
5929
- #: defaults.php:593
5930
  msgid "User published a new coupon"
5931
  msgstr ""
5932
 
5933
- #: defaults.php:593
5934
  msgid "Published a new coupon called %CouponName% in WooCommerce."
5935
  msgstr ""
5936
 
5937
- #: defaults.php:594
5938
  msgid "User changed the discount type of a coupon"
5939
  msgstr ""
5940
 
5941
- #: defaults.php:594
5942
  msgid ""
5943
  "Changed the Discount Type of the %CouponStatus% WooCommerce coupon "
5944
  "%CouponName% from %OldDiscountType% to %NewDiscountType%."
5945
  msgstr ""
5946
 
5947
- #: defaults.php:595
5948
  msgid "User changed the coupon amount of a coupon"
5949
  msgstr ""
5950
 
5951
- #: defaults.php:595
5952
  msgid ""
5953
  "Changed the Coupon Amount of the %CouponStatus% WooCommerce coupon "
5954
  "%CouponName% from %OldAmount% to %NewAmount%."
5955
  msgstr ""
5956
 
5957
- #: defaults.php:596
5958
  msgid "User changed the coupon expire date of a coupon"
5959
  msgstr ""
5960
 
5961
- #: defaults.php:596
5962
  msgid ""
5963
  "Changed the Coupon Expire Date of the %CouponStatus% WooCommerce coupon "
5964
  "%CouponName% from %OldDate% to %NewDate%."
5965
  msgstr ""
5966
 
5967
- #: defaults.php:597
5968
  msgid "User changed the usage restriction settings of a coupon"
5969
  msgstr ""
5970
 
5971
- #: defaults.php:597
5972
  msgid ""
5973
  "Changed the Usage Restriction settings of the %CouponStatus% WooCommerce "
5974
  "coupon %CouponName%."
5975
  msgstr ""
5976
 
5977
- #: defaults.php:598
5978
  msgid "User changed the usage limits settings of a coupon"
5979
  msgstr ""
5980
 
5981
- #: defaults.php:598
5982
  msgid ""
5983
  "Changed the Usage Limits settings of the %CouponStatus% WooCommerce coupon "
5984
  "%CouponName%."
5985
  msgstr ""
5986
 
5987
- #: defaults.php:599
5988
  msgid "User changed the description of a coupon"
5989
  msgstr ""
5990
 
5991
- #: defaults.php:599
5992
  msgid ""
5993
  "Changed the Description of the %CouponStatus% WooCommerce coupon %CouponName"
5994
  "%."
5995
  msgstr ""
5996
 
5997
- #: defaults.php:600
5998
  msgid "User changed the status of a coupon"
5999
  msgstr ""
6000
 
6001
- #: defaults.php:600
6002
  msgid ""
6003
  "Changed the Status of the WooCommerce coupon %CouponName% from %OldStatus% "
6004
  "to %NewStatus%."
6005
  msgstr ""
6006
 
6007
- #: defaults.php:601
6008
  msgid "User renamed a WooCommerce coupon"
6009
  msgstr ""
6010
 
6011
- #: defaults.php:601
6012
  msgid "Renamed the WooCommerce coupon %OldName% to %NewName%."
6013
  msgstr ""
6014
 
6015
- #: defaults.php:602
6016
  msgid "A WooCommerce order has been placed"
6017
  msgstr ""
6018
 
6019
- #: defaults.php:602
6020
  msgid ""
6021
  "A WooCommerce order %OrderTitle% has just been placed. %EditorLinkOrder%."
6022
  msgstr ""
6023
 
6024
- #: defaults.php:603
6025
  msgid "WooCommerce order status changed"
6026
  msgstr ""
6027
 
6028
- #: defaults.php:603
6029
  msgid ""
6030
  "Marked the WooCommerce order %OrderTitle% as %OrderStatus%. %EditorLinkOrder"
6031
  "%."
6032
  msgstr ""
6033
 
6034
- #: defaults.php:604
6035
  msgid "User moved a WooCommerce order to trash"
6036
  msgstr ""
6037
 
6038
- #: defaults.php:604
6039
  msgid "Moved the WooCommerce order %OrderTitle% to trash."
6040
  msgstr ""
6041
 
6042
- #: defaults.php:605
6043
  msgid "User moved a WooCommerce order out of trash"
6044
  msgstr ""
6045
 
6046
- #: defaults.php:605
6047
  msgid ""
6048
  "Moved the WooCommerce order %OrderTitle% out of trash. %EditorLinkOrder%."
6049
  msgstr ""
6050
 
6051
- #: defaults.php:606
6052
  msgid "User permanently deleted a WooCommerce order"
6053
  msgstr ""
6054
 
6055
- #: defaults.php:606
6056
  msgid "Permanently deleted the WooCommerce order %OrderTitle%."
6057
  msgstr ""
6058
 
6059
- #: defaults.php:607
6060
  msgid "User edited a WooCommerce order"
6061
  msgstr ""
6062
 
6063
- #: defaults.php:607
6064
  msgid "Edited the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
6065
  msgstr ""
6066
 
6067
- #: defaults.php:608
6068
  msgid "User refunded a WooCommerce order"
6069
  msgstr ""
6070
 
6071
- #: defaults.php:608
6072
  msgid "Refunded the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
6073
  msgstr ""
6074
 
6075
- #: defaults.php:609
6076
  msgid "User changed the billing address details"
6077
  msgstr ""
6078
 
6079
- #: defaults.php:609
6080
  msgid ""
6081
  "Changed the %AddressField% in the user's %TargetUsername% billing address."
6082
  "%ChangeText%"
6083
  msgstr ""
6084
 
6085
- #: defaults.php:610
6086
  msgid "User changed the shipping address details"
6087
  msgstr ""
6088
 
6089
- #: defaults.php:610
6090
  msgid ""
6091
  "Changed the %AddressField% in the user's %TargetUsername% shipping address."
6092
  "%ChangeText%"
6093
  msgstr ""
6094
 
6095
- #: defaults.php:617
6096
  msgid "User changed title of a SEO post"
6097
  msgstr ""
6098
 
6099
- #: defaults.php:617
6100
  msgid ""
6101
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
6102
  "% %EditorLinkPost%."
6103
  msgstr ""
6104
 
6105
- #: defaults.php:618
6106
  msgid "User changed the meta description of a SEO post"
6107
  msgstr ""
6108
 
6109
- #: defaults.php:618
6110
  msgid ""
6111
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
6112
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
6113
  msgstr ""
6114
 
6115
- #: defaults.php:619
6116
  msgid ""
6117
  "User changed setting to allow search engines to show post in search results "
6118
  "of a SEO post"
6119
  msgstr ""
6120
 
6121
- #: defaults.php:619
6122
  msgid ""
6123
  "Changed the setting to allow search engines to show post in search results "
6124
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
6125
  "%PostTitle%. %EditorLinkPost%."
6126
  msgstr ""
6127
 
6128
- #: defaults.php:620
6129
  msgid ""
6130
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
6131
  "post"
6132
  msgstr ""
6133
 
6134
- #: defaults.php:620
6135
  msgid ""
6136
  "%NewStatus% the option for search engine to follow links in the %PostType% "
6137
  "titled %PostTitle%. %EditorLinkPost%."
6138
  msgstr ""
6139
 
6140
- #: defaults.php:621
6141
  msgid "User set the meta robots advanced setting of a SEO post"
6142
  msgstr ""
6143
 
6144
- #: defaults.php:621
6145
  msgid ""
6146
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
6147
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
6148
  msgstr ""
6149
 
6150
- #: defaults.php:622
6151
  msgid "User changed the canonical URL of a SEO post"
6152
  msgstr ""
6153
 
6154
- #: defaults.php:622
6155
  msgid ""
6156
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
6157
  "%ReportText%.%ChangeText% %EditorLinkPost%."
6158
  msgstr ""
6159
 
6160
- #: defaults.php:623
6161
  msgid "User changed the focus keyword of a SEO post"
6162
  msgstr ""
6163
 
6164
- #: defaults.php:623
6165
  msgid ""
6166
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
6167
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
6168
  msgstr ""
6169
 
6170
- #: defaults.php:624
6171
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
6172
  msgstr ""
6173
 
6174
- #: defaults.php:624
6175
  msgid ""
6176
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
6177
  "%PostTitle%. %EditorLinkPost%."
6178
  msgstr ""
6179
 
6180
- #: defaults.php:625
6181
  msgid "User changed the Title Separator setting"
6182
  msgstr ""
6183
 
6184
- #: defaults.php:625
6185
  msgid ""
6186
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
6187
  "settings."
6188
  msgstr ""
6189
 
6190
- #: defaults.php:626
6191
  msgid "User changed the Homepage Title setting"
6192
  msgstr ""
6193
 
6194
- #: defaults.php:626
6195
  msgid ""
6196
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
6197
  "%ChangeText%"
6198
  msgstr ""
6199
 
6200
- #: defaults.php:627
6201
  msgid "User changed the Homepage Meta description setting"
6202
  msgstr ""
6203
 
6204
- #: defaults.php:627
6205
  msgid ""
6206
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
6207
  "settings.%ChangeText%"
6208
  msgstr ""
6209
 
6210
- #: defaults.php:628
6211
  msgid "User changed the Company or Person setting"
6212
  msgstr ""
6213
 
6214
- #: defaults.php:628
6215
  msgid ""
6216
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
6217
  "plugin settings."
6218
  msgstr ""
6219
 
6220
- #: defaults.php:629
6221
  msgid ""
6222
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
6223
  "Yoast SEO plugin settings"
6224
  msgstr ""
6225
 
6226
- #: defaults.php:629
6227
  msgid ""
6228
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
6229
  "plugin settings."
6230
  msgstr ""
6231
 
6232
- #: defaults.php:630
6233
  msgid ""
6234
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
6235
  msgstr ""
6236
 
6237
- #: defaults.php:630
6238
  msgid ""
6239
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
6240
  "SEO plugin settings."
6241
  msgstr ""
6242
 
6243
- #: defaults.php:631
6244
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
6245
  msgstr ""
6246
 
6247
- #: defaults.php:631
6248
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
6249
  msgstr ""
6250
 
6251
- #: defaults.php:632
6252
  msgid ""
6253
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
6254
  msgstr ""
6255
 
6256
- #: defaults.php:632
6257
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
6258
  msgstr ""
6259
 
6260
- #: defaults.php:633
6261
  msgid ""
6262
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
6263
  msgstr ""
6264
 
6265
- #: defaults.php:633
6266
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
6267
  msgstr ""
6268
 
6269
- #: defaults.php:634
6270
  msgid ""
6271
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
6272
  msgstr ""
6273
 
6274
- #: defaults.php:634
6275
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
6276
  msgstr ""
6277
 
6278
- #: defaults.php:635
6279
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
6280
  msgstr ""
6281
 
6282
- #: defaults.php:635
6283
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
6284
  msgstr ""
6285
 
6286
- #: defaults.php:636
6287
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
6288
  msgstr ""
6289
 
6290
- #: defaults.php:636
6291
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
6292
  msgstr ""
6293
 
6294
- #: defaults.php:637
6295
  msgid ""
6296
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
6297
  msgstr ""
6298
 
6299
- #: defaults.php:637
6300
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
6301
  msgstr ""
6302
 
6303
- #: defaults.php:638
6304
  msgid ""
6305
  "User changed the Posts/Pages meta description template in the Yoast SEO "
6306
  "plugin settings"
6307
  msgstr ""
6308
 
6309
- #: defaults.php:638
6310
  msgid ""
6311
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
6312
  "the Yoast SEO plugin settings."
6313
  msgstr ""
6314
 
6315
- #: defaults.php:639
6316
  msgid ""
6317
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
6318
  "plugin settings"
6319
  msgstr ""
6320
 
6321
- #: defaults.php:639
6322
  msgid ""
6323
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
6324
  "SEO plugin settings."
6325
  msgstr ""
6326
 
6327
- #: defaults.php:640
6328
  msgid ""
6329
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
6330
  "plugin settings"
6331
  msgstr ""
6332
 
6333
- #: defaults.php:640
6334
  msgid ""
6335
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
6336
  "plugin settings."
6337
  msgstr ""
6338
 
6339
- #: defaults.php:641
6340
  msgid ""
6341
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
6342
  "plugin settings"
6343
  msgstr ""
6344
 
6345
- #: defaults.php:641
6346
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
6347
  msgstr ""
6348
 
6349
  #. translators: Username
6350
- #: wp-security-audit-log.php:750 wp-security-audit-log.php:777
6351
  #, php-format
6352
  msgid "Hey %1$s"
6353
  msgstr ""
6354
 
6355
- #: wp-security-audit-log.php:751
6356
  msgid ""
6357
  "Never miss an important update! Opt-in to our security and feature updates "
6358
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
6359
  msgstr ""
6360
 
6361
- #: wp-security-audit-log.php:752 wp-security-audit-log.php:780
6362
  msgid "Note: "
6363
  msgstr ""
6364
 
6365
- #: wp-security-audit-log.php:753 wp-security-audit-log.php:781
6366
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
6367
  msgstr ""
6368
 
6369
  #. translators: 1: Plugin name. 2: Freemius link.
6370
- #: wp-security-audit-log.php:779
6371
  #, php-format
6372
  msgid ""
6373
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
@@ -6376,7 +6406,7 @@ msgid ""
6376
  msgstr ""
6377
 
6378
  #. translators: Plugin name
6379
- #: wp-security-audit-log.php:801
6380
  #, php-format
6381
  msgid ""
6382
  "Get a free 7-day trial of the premium edition of %s. No credit card "
@@ -6384,150 +6414,150 @@ msgid ""
6384
  msgstr ""
6385
 
6386
  #. Plugin Name of the plugin/theme
6387
- #: wp-security-audit-log.php:802
6388
  msgid "WP Security Audit Log"
6389
  msgstr ""
6390
 
6391
- #: wp-security-audit-log.php:806
6392
  msgid "Start free trial"
6393
  msgstr ""
6394
 
6395
- #: wp-security-audit-log.php:873
6396
  #, php-format
6397
  msgid ""
6398
  "The license is limited to %s sub-sites. You need to upgrade your license to "
6399
  "cover all the sub-sites on this network."
6400
  msgstr ""
6401
 
6402
- #: wp-security-audit-log.php:972
6403
  msgid ""
6404
  "Error: You do not have sufficient permissions to disable this custom field."
6405
  msgstr ""
6406
 
6407
- #: wp-security-audit-log.php:1005
6408
  #, php-format
6409
  msgid ""
6410
  "Custom Field %1$s is no longer being monitored.<br />Enable the monitoring "
6411
  "of this custom field again from the"
6412
  msgstr ""
6413
 
6414
- #: wp-security-audit-log.php:1005
6415
  msgid "Excluded Objects"
6416
  msgstr ""
6417
 
6418
- #: wp-security-audit-log.php:1005
6419
  msgid " tab in the plugin settings"
6420
  msgstr ""
6421
 
6422
- #: wp-security-audit-log.php:1017
6423
  msgid "Error: You do not have sufficient permissions to disable this alert."
6424
  msgstr ""
6425
 
6426
- #: wp-security-audit-log.php:1041
6427
  #, php-format
6428
  msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
6429
  msgstr ""
6430
 
6431
- #: wp-security-audit-log.php:1041
6432
  msgid ""
6433
  "You can enable this alert again from the Enable/Disable Alerts node in the "
6434
  "plugin menu."
6435
  msgstr ""
6436
 
6437
- #: wp-security-audit-log.php:1137
6438
  #, php-format
6439
  msgid ""
6440
  "You are using a version of PHP that is older than %s, which is no longer "
6441
  "supported."
6442
  msgstr ""
6443
 
6444
- #: wp-security-audit-log.php:1139
6445
  msgid ""
6446
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
6447
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
6448
  "are using."
6449
  msgstr ""
6450
 
6451
- #: wp-security-audit-log.php:1141
6452
  msgid ""
6453
  "The WP Security Audit Log plugin is a multisite network tool, so it has to "
6454
  "be activated at network level."
6455
  msgstr ""
6456
 
6457
- #: wp-security-audit-log.php:1143
6458
  msgid "Redirect me to the network dashboard"
6459
  msgstr ""
6460
 
6461
- #: wp-security-audit-log.php:1148
6462
  #, php-format
6463
  msgid "Please install the %s plugin on the MainWP dashboard."
6464
  msgstr ""
6465
 
6466
- #: wp-security-audit-log.php:1148
6467
  msgid "Activity Log for MainWP"
6468
  msgstr ""
6469
 
6470
- #: wp-security-audit-log.php:1150
6471
  #, php-format
6472
  msgid ""
6473
  "The WP Security Audit Log should be installed on the child sites only. Refer "
6474
  "to the %s for more information."
6475
  msgstr ""
6476
 
6477
- #: wp-security-audit-log.php:1150
6478
  msgid "getting started guide"
6479
  msgstr ""
6480
 
6481
- #: wp-security-audit-log.php:1236
6482
  msgid ""
6483
  "This plugin uses 3 tables in the WordPress database to store the activity "
6484
  "log and settings. It seems that these tables were not created."
6485
  msgstr ""
6486
 
6487
- #: wp-security-audit-log.php:1238
6488
  msgid ""
6489
  "This could happen because the database user does not have the right "
6490
  "privileges to create the tables in the database. We recommend you to update "
6491
  "the privileges and try enabling the plugin again."
6492
  msgstr ""
6493
 
6494
- #: wp-security-audit-log.php:1240
6495
  #, php-format
6496
  msgid ""
6497
  "If after doing so you still have issues, please send us an email on %s for "
6498
  "assistance."
6499
  msgstr ""
6500
 
6501
- #: wp-security-audit-log.php:1240
6502
  msgid "support@wpsecurityauditlog.com"
6503
  msgstr ""
6504
 
6505
- #: wp-security-audit-log.php:1866
6506
  msgid "Every 6 hours"
6507
  msgstr ""
6508
 
6509
- #: wp-security-audit-log.php:1870
6510
  msgid "Every 45 minutes"
6511
  msgstr ""
6512
 
6513
- #: wp-security-audit-log.php:1874
6514
  msgid "Every 30 minutes"
6515
  msgstr ""
6516
 
6517
- #: wp-security-audit-log.php:1878
6518
  msgid "Every 15 minutes"
6519
  msgstr ""
6520
 
6521
- #: wp-security-audit-log.php:1882
6522
  msgid "Every 10 minutes"
6523
  msgstr ""
6524
 
6525
- #: wp-security-audit-log.php:1886
6526
  msgid "Every 1 minute"
6527
  msgstr ""
6528
 
6529
  #. translators: 1. Deprecated method name 2. Version since deprecated
6530
- #: wp-security-audit-log.php:1900
6531
  #, php-format
6532
  msgid "Method %1$s is deprecated since version %2$s!"
6533
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: WP Security Audit Log\n"
6
+ "POT-Creation-Date: 2019-11-26 07:53+0100\n"
7
+ "PO-Revision-Date: 2019-11-26 07:53+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
22
  "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
 
24
  #. translators: Event ID
25
+ #: classes/AlertManager.php:364
26
  #, php-format
27
  msgid "Event with code %d has not be registered."
28
  msgstr ""
29
 
30
+ #: classes/AlertManager.php:419
31
  #, php-format
32
  msgid "Event %s already registered with WP Security Audit Log."
33
  msgstr ""
34
 
35
+ #: classes/AlertManager.php:454
36
  msgid ""
37
  "You have custom events that are using the same ID or IDs which are already "
38
  "registered in the plugin, so they have been disabled."
39
  msgstr ""
40
 
41
+ #: classes/AlertManager.php:457
42
  #, php-format
43
  msgid "%4$s to help you solve this issue."
44
  msgstr ""
45
 
46
+ #: classes/AlertManager.php:459
47
  msgid "ERROR:"
48
  msgstr ""
49
 
50
+ #: classes/AlertManager.php:461
51
  msgid "Contact us"
52
  msgstr ""
53
 
54
+ #: classes/AlertManager.php:1240 classes/Views/ToggleAlerts.php:239
55
+ #: classes/Views/ToggleAlerts.php:271 defaults.php:321
56
  msgid "Pages"
57
  msgstr ""
58
 
59
+ #: classes/AlertManager.php:1240 classes/Views/ToggleAlerts.php:239
60
+ #: classes/Views/ToggleAlerts.php:271 defaults.php:281
61
  msgid "Custom Post Types"
62
  msgstr ""
63
 
64
+ #: classes/AlertManager.php:1562
65
  msgid "System Activity"
66
  msgstr ""
67
 
68
+ #: classes/AlertManager.php:1622 classes/AuditLogListView.php:444
69
  msgid "Unknown error code."
70
  msgstr ""
71
 
72
+ #: classes/AlertManager.php:1629 classes/AlertManager.php:1641
73
  msgid "Unknown Site"
74
  msgstr ""
75
 
76
+ #: classes/AlertManager.php:1663 classes/AuditLogListView.php:524
77
  #: classes/Views/ToggleAlerts.php:424 classes/Views/ToggleAlerts.php:462
78
+ #: defaults.php:405
79
  msgid "System"
80
  msgstr ""
81
 
107
  msgid "Archive Database"
108
  msgstr ""
109
 
110
+ #: classes/AuditLogListView.php:303 classes/Views/Settings.php:1204
111
  #: classes/WidgetManager.php:82
112
  msgid "User"
113
  msgstr ""
117
  msgstr ""
118
 
119
  #: classes/AuditLogListView.php:310 classes/AuditLogListView.php:336
120
+ #: classes/Views/Settings.php:1198
121
  msgid "Event ID"
122
  msgstr ""
123
 
124
  #: classes/AuditLogListView.php:311 classes/AuditLogListView.php:339
125
+ #: classes/Views/Settings.php:1200 classes/Views/ToggleAlerts.php:320
126
  msgid "Severity"
127
  msgstr ""
128
 
146
  msgid "Click to toggle."
147
  msgstr ""
148
 
149
+ #: classes/AuditLogListView.php:416 classes/Models/Occurrence.php:83
150
+ #: classes/ViewManager.php:470
151
+ msgid "Alert message not found."
152
+ msgstr ""
153
+
154
+ #: classes/AuditLogListView.php:417 classes/Models/Occurrence.php:84
155
+ #: classes/ViewManager.php:471
156
+ msgid "Alert description not found."
157
+ msgstr ""
158
+
159
+ #: classes/AuditLogListView.php:436
160
  msgid "Disable this type of events."
161
  msgstr ""
162
 
163
+ #: classes/AuditLogListView.php:448 classes/Views/ToggleAlerts.php:496
164
  msgid "Critical"
165
  msgstr ""
166
 
167
+ #: classes/AuditLogListView.php:450 classes/Views/ToggleAlerts.php:498
168
  msgid "Warning"
169
  msgstr ""
170
 
171
+ #: classes/AuditLogListView.php:452 classes/Views/ToggleAlerts.php:500
172
  #: classes/Views/ToggleAlerts.php:502
173
  msgid "Notification"
174
  msgstr ""
175
 
176
+ #: classes/AuditLogListView.php:467 classes/AuditLogListView.php:508
177
  msgid "Unknown"
178
  msgstr ""
179
 
180
+ #: classes/AuditLogListView.php:493
181
  msgid "Show me all activity by this User"
182
  msgstr ""
183
 
184
+ #: classes/AuditLogListView.php:512 classes/Views/Licensing.php:113
185
  #: classes/Views/Licensing.php:153
186
  msgid "Plugin"
187
  msgstr ""
188
 
189
+ #: classes/AuditLogListView.php:516 defaults.php:372
190
  msgid "Plugins"
191
  msgstr ""
192
 
193
+ #: classes/AuditLogListView.php:520
194
  msgid "Website Visitor"
195
  msgstr ""
196
 
197
+ #: classes/AuditLogListView.php:556 classes/AuditLogListView.php:569
198
  msgid "Show me all activity originating from this IP Address"
199
  msgstr ""
200
 
201
+ #: classes/AuditLogListView.php:598
202
  msgid "View all details of this change"
203
  msgstr ""
204
 
205
+ #: classes/AuditLogListView.php:599 classes/AuditLogListView.php:749
206
+ #: classes/Settings.php:1749
207
  msgid "Alert Data Inspector"
208
  msgstr ""
209
 
210
+ #: classes/AuditLogListView.php:701 classes/Settings.php:1688
211
  msgid "Download the log file"
212
  msgstr ""
213
 
214
+ #: classes/AuditLogListView.php:721 classes/Settings.php:1713
215
  msgid "Download the log file."
216
  msgstr ""
217
 
218
+ #: classes/AuditLogListView.php:729 classes/Settings.php:1721
219
+ #: classes/Settings.php:1967
220
  msgid "published"
221
  msgstr ""
222
 
223
  #. translators: Mailto link for support.
224
+ #: classes/AuditLogListView.php:757 classes/Settings.php:1760
225
+ #: classes/Settings.php:1993
226
  #, php-format
227
  msgid "Contact us on %s for assistance"
228
  msgstr ""
229
 
230
+ #: classes/AuditLogListView.php:891
231
  msgid "Select All"
232
  msgstr ""
233
 
331
  msgid "More Information"
332
  msgstr ""
333
 
334
+ #: classes/Models/Occurrence.php:188
335
+ #, php-format
336
+ msgid ""
337
+ "Alert message was not available, this may have been a custom alert that no "
338
+ "longer exists. Read more about custom events %1$shere%2$s."
339
+ msgstr ""
340
+
341
  #: classes/Sensors/Content.php:985 classes/Sensors/Content.php:993
342
  #: classes/Sensors/WooCommerce.php:581 classes/Sensors/WooCommerce.php:589
343
  msgid "Password Protected"
385
  msgid "This function is deprecated"
386
  msgstr ""
387
 
388
+ #: classes/Settings.php:1655
389
  msgid "View Order"
390
  msgstr ""
391
 
392
+ #: classes/Settings.php:1772 classes/Settings.php:2005
393
  msgid "plugin settings"
394
  msgstr ""
395
 
396
+ #: classes/Settings.php:1775 classes/Settings.php:2008
397
  msgid "contact our support"
398
  msgstr ""
399
 
400
+ #: classes/Settings.php:2211
401
  msgid "Root directory of WordPress (excluding sub directories)"
402
  msgstr ""
403
 
404
+ #: classes/Settings.php:2212
405
  msgid "WP Admin directory (/wp-admin/)"
406
  msgstr ""
407
 
408
+ #: classes/Settings.php:2213
409
  msgid "WP Includes directory (/wp-includes/)"
410
  msgstr ""
411
 
412
+ #: classes/Settings.php:2214
413
  msgid ""
414
  "/wp-content/ directory (excluding plugins, themes & uploads directories)"
415
  msgstr ""
416
 
417
+ #: classes/Settings.php:2215
418
  msgid "Themes directory (/wp-content/themes/)"
419
  msgstr ""
420
 
421
+ #: classes/Settings.php:2216
422
  msgid "Plugins directory (/wp-content/plugins/)"
423
  msgstr ""
424
 
425
+ #: classes/Settings.php:2217
426
  msgid "Uploads directory (/wp-content/uploads/)"
427
  msgstr ""
428
 
429
+ #: classes/Settings.php:2222
430
  msgid ""
431
  "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
432
  msgstr ""
447
  "the plugin WP Security Audit Log on the website %2$s on %3$s."
448
  msgstr ""
449
 
450
+ #: classes/ViewManager.php:265
451
  msgid "Free Premium Trial"
452
  msgstr ""
453
 
454
+ #: classes/ViewManager.php:496 classes/Views/Settings.php:255
455
+ #: classes/Views/Settings.php:2768 classes/Views/Settings.php:2797
456
  #: classes/Views/SetupWizard.php:66
457
  msgid "Access Denied."
458
  msgstr ""
459
 
460
+ #: classes/ViewManager.php:527
461
  msgid "Log count parameter expected."
462
  msgstr ""
463
 
464
+ #: classes/ViewManager.php:535 classes/Views/AuditLog.php:651
465
  #: classes/Views/AuditLog.php:728 classes/Views/AuditLog.php:754
466
  #: classes/Views/AuditLog.php:1059 classes/Views/AuditLog.php:1129
467
  #: classes/Views/Licensing.php:90 classes/Views/Settings.php:270
468
+ #: classes/Views/Settings.php:2331 classes/Views/Settings.php:2359
469
+ #: classes/Views/Settings.php:2389 classes/Views/Settings.php:2434
470
+ #: classes/Views/Settings.php:2436 classes/Views/Settings.php:2438
471
+ #: classes/Views/Settings.php:2553 classes/Views/Settings.php:2555
472
+ #: classes/Views/Settings.php:2557 classes/Views/Settings.php:2651
473
+ #: classes/Views/Settings.php:2744 classes/Views/SetupWizard.php:81
474
  msgid "Nonce verification failed."
475
  msgstr ""
476
 
574
 
575
  #: classes/Views/AuditLog.php:427 classes/Views/Settings.php:564
576
  #: classes/Views/Settings.php:591 classes/Views/Settings.php:657
577
+ #: classes/Views/Settings.php:715 classes/Views/Settings.php:1233
578
+ #: classes/Views/Settings.php:1300 classes/Views/Settings.php:2065
579
+ #: classes/Views/Settings.php:2126 classes/Views/Settings.php:2154
580
+ #: classes/Views/Settings.php:2175 classes/Views/Settings.php:2185
581
  #: classes/Views/SetupWizard.php:465 classes/Views/SetupWizard.php:513
582
  #: classes/Views/SetupWizard.php:676
583
  msgid "Yes"
585
 
586
  #: classes/Views/AuditLog.php:428 classes/Views/Settings.php:569
587
  #: classes/Views/Settings.php:596 classes/Views/Settings.php:687
588
+ #: classes/Views/Settings.php:725 classes/Views/Settings.php:1238
589
+ #: classes/Views/Settings.php:1307 classes/Views/Settings.php:2070
590
+ #: classes/Views/Settings.php:2133 classes/Views/Settings.php:2161
591
+ #: classes/Views/Settings.php:2176 classes/Views/Settings.php:2186
592
  #: classes/Views/SetupWizard.php:470 classes/Views/SetupWizard.php:518
593
  #: classes/Views/SetupWizard.php:671
594
  msgid "No"
1257
  msgid "Login Page Notification"
1258
  msgstr ""
1259
 
1260
+ #: classes/Views/Settings.php:663 wp-security-audit-log.php:1858
1261
  msgid ""
1262
  "For security and auditing purposes, a record of all of your logged-in "
1263
  "actions and changes within the WordPress dashboard will be recorded in an "
1288
  "plugin retrieves the end user’s IP address from the proxy header - %s."
1289
  msgstr ""
1290
 
1291
+ #: classes/Views/Settings.php:703 classes/Views/Settings.php:749
1292
+ #: classes/Views/Settings.php:825
1293
  msgid "learn more"
1294
  msgstr ""
1295
 
1308
  msgid "Who can change the plugin settings?"
1309
  msgstr ""
1310
 
1311
+ #. translators: Learn more link.
1312
+ #: classes/Views/Settings.php:748
1313
+ #, php-format
1314
  msgid ""
1315
  "By default only users with administrator or super administrator (multisite) "
1316
  "roles can change the settings of the plugin. Though you can change these "
1317
+ "privileges from this section - %s."
1318
  msgstr ""
1319
 
1320
+ #: classes/Views/Settings.php:758
1321
  msgid "Restrict Plugin Access"
1322
  msgstr ""
1323
 
1324
+ #: classes/Views/Settings.php:764
1325
  msgid "Only me"
1326
  msgstr ""
1327
 
1328
+ #: classes/Views/Settings.php:769
1329
  msgid "Only administrators"
1330
  msgstr ""
1331
 
1332
+ #: classes/Views/Settings.php:775
1333
  msgid "Only superadmins"
1334
  msgstr ""
1335
 
1336
+ #: classes/Views/Settings.php:781
1337
  msgid "All these users or users with these roles"
1338
  msgstr ""
1339
 
1340
+ #: classes/Views/Settings.php:783
1341
  msgid ""
1342
  "Specify the username or the users which can change the plugin settings. You "
1343
  "can also specify roles."
1344
  msgstr ""
1345
 
1346
+ #: classes/Views/Settings.php:812
1347
  msgid "Allow other users to view the activity log"
1348
  msgstr ""
1349
 
1350
+ #. translators: Learn more link.
1351
+ #: classes/Views/Settings.php:824
1352
+ #, php-format
1353
  msgid ""
1354
  "By default only users with administrator and super administrator (multisite) "
1355
  "role can view the WordPress activity log. Though you can allow other users "
1356
+ "with no admin role to view the events - %s."
1357
  msgstr ""
1358
 
1359
+ #: classes/Views/Settings.php:834
1360
  msgid "Can View Events"
1361
  msgstr ""
1362
 
1363
+ #: classes/Views/Settings.php:842
1364
  msgid ""
1365
  "Specify the username or the users which do not have an admin role but can "
1366
  "also see the WordPress activity role. You can also specify roles."
1367
  msgstr ""
1368
 
1369
+ #: classes/Views/Settings.php:868
1370
  msgid "Which email address should the plugin use as a from address?"
1371
  msgstr ""
1372
 
1373
+ #: classes/Views/Settings.php:869
1374
  msgid ""
1375
  "By default when the plugin sends an email notification it uses the email "
1376
  "address specified in this website’s general settings. Though you can change "
1377
  "the email address and display name from this section."
1378
  msgstr ""
1379
 
1380
+ #: classes/Views/Settings.php:873
1381
  msgid "From Email & Name"
1382
  msgstr ""
1383
 
1384
+ #: classes/Views/Settings.php:879
1385
  msgid "Use the email address from the WordPress general settings"
1386
  msgstr ""
1387
 
1388
+ #: classes/Views/Settings.php:884
1389
  msgid "Use another email address"
1390
  msgstr ""
1391
 
1392
+ #: classes/Views/Settings.php:888
1393
  msgid "Email Address"
1394
  msgstr ""
1395
 
1396
+ #: classes/Views/Settings.php:893
1397
  msgid "Display Name"
1398
  msgstr ""
1399
 
1400
+ #: classes/Views/Settings.php:904
1401
  msgid "Do you want to hide the plugin from the list of installed plugins?"
1402
  msgstr ""
1403
 
1404
+ #: classes/Views/Settings.php:905
1405
  msgid ""
1406
  "By default all installed plugins are listed in the plugins page. If you do "
1407
  "not want other administrators to see that you installed this plugin set this "
1409
  "plugin on this website."
1410
  msgstr ""
1411
 
1412
+ #: classes/Views/Settings.php:909
1413
  msgid "Hide Plugin in Plugins Page"
1414
  msgstr ""
1415
 
1416
+ #: classes/Views/Settings.php:914
1417
  msgid "Yes, hide the plugin from the list of installed plugins"
1418
  msgstr ""
1419
 
1420
+ #: classes/Views/Settings.php:919
1421
  msgid "No, do not hide the plugin"
1422
  msgstr ""
1423
 
1424
+ #: classes/Views/Settings.php:989
1425
  msgid ""
1426
  "For how long do you want to keep the activity log events (Retention "
1427
  "settings) ?"
1428
  msgstr ""
1429
 
1430
+ #: classes/Views/Settings.php:992
1431
  msgid ""
1432
  "The plugin uses an efficient way to store the activity log data in the "
1433
  "WordPress database, though the more data you keep the more disk space will "
1434
  "be required. "
1435
  msgstr ""
1436
 
1437
+ #: classes/Views/Settings.php:993
1438
  msgid ""
1439
  "<a href=\"https://www.wpsecurityauditlog.com/pricing/\" target=\"_blank"
1440
  "\">Upgrade to Premium</a> to store the activity log data in an external "
1442
  msgstr ""
1443
 
1444
  #. translators: 1: Archive page link tag. 2: Link closing tag.
1445
+ #: classes/Views/Settings.php:1011
1446
  #, php-format
1447
  msgid ""
1448
  "Retention settings moved to %1$s archiving settings %2$s because archiving "
1449
  "is enabled"
1450
  msgstr ""
1451
 
1452
+ #: classes/Views/Settings.php:1018
1453
  msgid "Audit Log Retention"
1454
  msgstr ""
1455
 
1456
+ #: classes/Views/Settings.php:1024
1457
  msgid "Keep all data"
1458
  msgstr ""
1459
 
1460
+ #: classes/Views/Settings.php:1051
1461
  msgid "Delete events older than"
1462
  msgstr ""
1463
 
1464
+ #: classes/Views/Settings.php:1058
1465
  msgid "Months"
1466
  msgstr ""
1467
 
1468
+ #: classes/Views/Settings.php:1059
1469
  msgid "Years"
1470
  msgstr ""
1471
 
1472
+ #: classes/Views/Settings.php:1067
1473
  msgid "The next scheduled purging of activity log data that is older than "
1474
  msgstr ""
1475
 
1476
+ #: classes/Views/Settings.php:1074
1477
  msgid "You can run the purging process now by clicking the button below."
1478
  msgstr ""
1479
 
1480
+ #: classes/Views/Settings.php:1078
1481
  msgid "Purge Old Data"
1482
  msgstr ""
1483
 
1484
+ #: classes/Views/Settings.php:1089
1485
  msgid "What timestamp you would like to see in the WordPress activity log?"
1486
  msgstr ""
1487
 
1488
+ #: classes/Views/Settings.php:1090
1489
  msgid ""
1490
  "Note that the WordPress' timezone might be different from that configured on "
1491
  "the server so when you switch from UTC to WordPress timezone or vice versa "
1492
  "you might notice a big difference."
1493
  msgstr ""
1494
 
1495
+ #: classes/Views/Settings.php:1094
1496
  msgid "Events Timestamp"
1497
  msgstr ""
1498
 
1499
+ #: classes/Views/Settings.php:1114
1500
  msgid "UTC"
1501
  msgstr ""
1502
 
1503
+ #: classes/Views/Settings.php:1120
1504
  msgid "Timezone configured on this WordPress website"
1505
  msgstr ""
1506
 
1507
+ #: classes/Views/Settings.php:1127
1508
+ msgid "Show Microseconds"
1509
+ msgstr ""
1510
+
1511
+ #: classes/Views/Settings.php:1143
1512
+ msgid "Show Microseconds in list view"
1513
+ msgstr ""
1514
+
1515
+ #: classes/Views/Settings.php:1153
1516
  msgid ""
1517
  "What user information should be displayed in the WordPress activity log?"
1518
  msgstr ""
1519
 
1520
+ #: classes/Views/Settings.php:1154
1521
  msgid ""
1522
  "Usernames might not be the same as a user's first and last name so it can be "
1523
  "difficult to recognize whose user was that did a change. When there is no "
1525
  "back to the WordPress username."
1526
  msgstr ""
1527
 
1528
+ #: classes/Views/Settings.php:1158
1529
  msgid "User Information in Audit Log"
1530
  msgstr ""
1531
 
1532
+ #: classes/Views/Settings.php:1164
1533
  msgid "WordPress Username"
1534
  msgstr ""
1535
 
1536
+ #: classes/Views/Settings.php:1169
1537
  msgid "First Name & Last Name"
1538
  msgstr ""
1539
 
1540
+ #: classes/Views/Settings.php:1174
1541
  msgid "Configured Public Display Name"
1542
  msgstr ""
1543
 
1544
+ #: classes/Views/Settings.php:1184
1545
  msgid "Select the columns to be displayed in the WordPress activity log"
1546
  msgstr ""
1547
 
1548
+ #: classes/Views/Settings.php:1185
1549
  msgid ""
1550
  "When you deselect a column it won’t be shown in the activity log viewer but "
1551
  "the data will still be recorded by the plugin, so when you select it again "
1552
  "all the data will be displayed."
1553
  msgstr ""
1554
 
1555
+ #: classes/Views/Settings.php:1189
1556
  msgid "Audit Log Columns Selection"
1557
  msgstr ""
1558
 
1559
+ #: classes/Views/Settings.php:1202
1560
  msgid "Date & Time"
1561
  msgstr ""
1562
 
1563
+ #: classes/Views/Settings.php:1206
1564
  msgid "Source IP Address"
1565
  msgstr ""
1566
 
1567
+ #: classes/Views/Settings.php:1221
1568
  msgid "Do you want to keep a log of WordPress background activity?"
1569
  msgstr ""
1570
 
1571
+ #: classes/Views/Settings.php:1223
1572
  msgid ""
1573
  "WordPress does a lot of things in the background that you do not necessarily "
1574
  "need to know about, such as; deletion of post revisions, deletion of auto "
1576
  "might be a lot and are irrelevant to the user."
1577
  msgstr ""
1578
 
1579
+ #: classes/Views/Settings.php:1228
1580
  msgid "Enable Events for WordPress Background Activity"
1581
  msgstr ""
1582
 
1583
+ #: classes/Views/Settings.php:1283
1584
  msgid ""
1585
  "The plugin runs file integrity scans on your website so it keeps a log when "
1586
  "a file is added, modified or deleted. All the settings for the file "
1587
  "integrity scans can be found in this page."
1588
  msgstr ""
1589
 
1590
+ #: classes/Views/Settings.php:1284
1591
  msgid ""
1592
  "<a href=\"https://www.wpsecurityauditlog.com/support-documentation/wordpress-"
1593
  "files-changes-warning-activity-logs/\" target=\"_blank\">Refer to the "
1594
  "WordPress file integrity scans feature page</a> for more information."
1595
  msgstr ""
1596
 
1597
+ #: classes/Views/Settings.php:1287
1598
  msgid "Do you want the plugin to scan your website for file changes?"
1599
  msgstr ""
1600
 
1601
+ #: classes/Views/Settings.php:1292
1602
  msgid "Keep a Log of File Changes"
1603
  msgstr ""
1604
 
1605
+ #: classes/Views/Settings.php:1316
1606
  msgid ""
1607
  "Which file changes events do you want to keep a log of in the activity log?"
1608
  msgstr ""
1609
 
1610
+ #: classes/Views/Settings.php:1318
1611
  msgid ""
1612
  "By default the plugin will keep a log whenever a file has been added, "
1613
  "modified or deleted. It will also log an event in the activity log when a "
1615
  "link to specify which of these events the plugin should keep a log of."
1616
  msgstr ""
1617
 
1618
+ #: classes/Views/Settings.php:1324
1619
  msgid "Alert me when"
1620
  msgstr ""
1621
 
1622
+ #: classes/Views/Settings.php:1337
1623
  msgid "Configure Events"
1624
  msgstr ""
1625
 
1626
+ #: classes/Views/Settings.php:1346
1627
  msgid "When should the plugin scan your website for file changes?"
1628
  msgstr ""
1629
 
1630
+ #: classes/Views/Settings.php:1348
1631
  msgid ""
1632
  "By default the plugin will run file integrity scans once a week. If you can, "
1633
  "ideally you should run file integrity scans on a daily basis. The file "
1637
  "complete."
1638
  msgstr ""
1639
 
1640
+ #: classes/Views/Settings.php:1354
1641
  msgid "Scan Frequency"
1642
  msgstr ""
1643
 
1644
+ #: classes/Views/Settings.php:1359
1645
  msgid "Daily"
1646
  msgstr ""
1647
 
1648
+ #: classes/Views/Settings.php:1360
1649
  msgid "Weekly"
1650
  msgstr ""
1651
 
1652
+ #: classes/Views/Settings.php:1361
1653
  msgid "Monthly"
1654
  msgstr ""
1655
 
1656
+ #: classes/Views/Settings.php:1379
1657
  msgid "Scan Time"
1658
  msgstr ""
1659
 
1660
+ #: classes/Views/Settings.php:1385
1661
  msgid "00:00"
1662
  msgstr ""
1663
 
1664
+ #: classes/Views/Settings.php:1386
1665
  msgid "01:00"
1666
  msgstr ""
1667
 
1668
+ #: classes/Views/Settings.php:1387
1669
  msgid "02:00"
1670
  msgstr ""
1671
 
1672
+ #: classes/Views/Settings.php:1388
1673
  msgid "03:00"
1674
  msgstr ""
1675
 
1676
+ #: classes/Views/Settings.php:1389
1677
  msgid "04:00"
1678
  msgstr ""
1679
 
1680
+ #: classes/Views/Settings.php:1390
1681
  msgid "05:00"
1682
  msgstr ""
1683
 
1684
+ #: classes/Views/Settings.php:1391
1685
  msgid "06:00"
1686
  msgstr ""
1687
 
1688
+ #: classes/Views/Settings.php:1392
1689
  msgid "07:00"
1690
  msgstr ""
1691
 
1692
+ #: classes/Views/Settings.php:1393
1693
  msgid "08:00"
1694
  msgstr ""
1695
 
1696
+ #: classes/Views/Settings.php:1394
1697
  msgid "09:00"
1698
  msgstr ""
1699
 
1700
+ #: classes/Views/Settings.php:1395
1701
  msgid "10:00"
1702
  msgstr ""
1703
 
1704
+ #: classes/Views/Settings.php:1396
1705
  msgid "11:00"
1706
  msgstr ""
1707
 
1708
+ #: classes/Views/Settings.php:1397
1709
  msgid "12:00"
1710
  msgstr ""
1711
 
1712
+ #: classes/Views/Settings.php:1398
1713
  msgid "13:00"
1714
  msgstr ""
1715
 
1716
+ #: classes/Views/Settings.php:1399
1717
  msgid "14:00"
1718
  msgstr ""
1719
 
1720
+ #: classes/Views/Settings.php:1400
1721
  msgid "15:00"
1722
  msgstr ""
1723
 
1724
+ #: classes/Views/Settings.php:1401
1725
  msgid "16:00"
1726
  msgstr ""
1727
 
1728
+ #: classes/Views/Settings.php:1402
1729
  msgid "17:00"
1730
  msgstr ""
1731
 
1732
+ #: classes/Views/Settings.php:1403
1733
  msgid "18:00"
1734
  msgstr ""
1735
 
1736
+ #: classes/Views/Settings.php:1404
1737
  msgid "19:00"
1738
  msgstr ""
1739
 
1740
+ #: classes/Views/Settings.php:1405
1741
  msgid "20:00"
1742
  msgstr ""
1743
 
1744
+ #: classes/Views/Settings.php:1406
1745
  msgid "21:00"
1746
  msgstr ""
1747
 
1748
+ #: classes/Views/Settings.php:1407
1749
  msgid "22:00"
1750
  msgstr ""
1751
 
1752
+ #: classes/Views/Settings.php:1408
1753
  msgid "23:00"
1754
  msgstr ""
1755
 
1756
+ #: classes/Views/Settings.php:1413
1757
  msgid "Monday"
1758
  msgstr ""
1759
 
1760
+ #: classes/Views/Settings.php:1414
1761
  msgid "Tuesday"
1762
  msgstr ""
1763
 
1764
+ #: classes/Views/Settings.php:1415
1765
  msgid "Wednesday"
1766
  msgstr ""
1767
 
1768
+ #: classes/Views/Settings.php:1416
1769
  msgid "Thursday"
1770
  msgstr ""
1771
 
1772
+ #: classes/Views/Settings.php:1417
1773
  msgid "Friday"
1774
  msgstr ""
1775
 
1776
+ #: classes/Views/Settings.php:1418
1777
  msgid "Saturday"
1778
  msgstr ""
1779
 
1780
+ #: classes/Views/Settings.php:1419
1781
  msgid "Sunday"
1782
  msgstr ""
1783
 
1784
+ #: classes/Views/Settings.php:1424
1785
  msgid "01"
1786
  msgstr ""
1787
 
1788
+ #: classes/Views/Settings.php:1425
1789
  msgid "02"
1790
  msgstr ""
1791
 
1792
+ #: classes/Views/Settings.php:1426
1793
  msgid "03"
1794
  msgstr ""
1795
 
1796
+ #: classes/Views/Settings.php:1427
1797
  msgid "04"
1798
  msgstr ""
1799
 
1800
+ #: classes/Views/Settings.php:1428
1801
  msgid "05"
1802
  msgstr ""
1803
 
1804
+ #: classes/Views/Settings.php:1429
1805
  msgid "06"
1806
  msgstr ""
1807
 
1808
+ #: classes/Views/Settings.php:1430
1809
  msgid "07"
1810
  msgstr ""
1811
 
1812
+ #: classes/Views/Settings.php:1431
1813
  msgid "08"
1814
  msgstr ""
1815
 
1816
+ #: classes/Views/Settings.php:1432
1817
  msgid "09"
1818
  msgstr ""
1819
 
1820
+ #: classes/Views/Settings.php:1433
1821
  msgid "10"
1822
  msgstr ""
1823
 
1824
+ #: classes/Views/Settings.php:1434
1825
  msgid "11"
1826
  msgstr ""
1827
 
1828
+ #: classes/Views/Settings.php:1435
1829
  msgid "12"
1830
  msgstr ""
1831
 
1832
+ #: classes/Views/Settings.php:1436
1833
  msgid "13"
1834
  msgstr ""
1835
 
1836
+ #: classes/Views/Settings.php:1437
1837
  msgid "14"
1838
  msgstr ""
1839
 
1840
+ #: classes/Views/Settings.php:1438
1841
  msgid "15"
1842
  msgstr ""
1843
 
1844
+ #: classes/Views/Settings.php:1439
1845
  msgid "16"
1846
  msgstr ""
1847
 
1848
+ #: classes/Views/Settings.php:1440
1849
  msgid "17"
1850
  msgstr ""
1851
 
1852
+ #: classes/Views/Settings.php:1441
1853
  msgid "18"
1854
  msgstr ""
1855
 
1856
+ #: classes/Views/Settings.php:1442
1857
  msgid "19"
1858
  msgstr ""
1859
 
1860
+ #: classes/Views/Settings.php:1443
1861
  msgid "20"
1862
  msgstr ""
1863
 
1864
+ #: classes/Views/Settings.php:1444
1865
  msgid "21"
1866
  msgstr ""
1867
 
1868
+ #: classes/Views/Settings.php:1445
1869
  msgid "22"
1870
  msgstr ""
1871
 
1872
+ #: classes/Views/Settings.php:1446
1873
  msgid "23"
1874
  msgstr ""
1875
 
1876
+ #: classes/Views/Settings.php:1447
1877
  msgid "24"
1878
  msgstr ""
1879
 
1880
+ #: classes/Views/Settings.php:1448
1881
  msgid "25"
1882
  msgstr ""
1883
 
1884
+ #: classes/Views/Settings.php:1449
1885
  msgid "26"
1886
  msgstr ""
1887
 
1888
+ #: classes/Views/Settings.php:1450
1889
  msgid "27"
1890
  msgstr ""
1891
 
1892
+ #: classes/Views/Settings.php:1451
1893
  msgid "28"
1894
  msgstr ""
1895
 
1896
+ #: classes/Views/Settings.php:1452
1897
  msgid "29"
1898
  msgstr ""
1899
 
1900
+ #: classes/Views/Settings.php:1453
1901
  msgid "30"
1902
  msgstr ""
1903
 
1904
+ #: classes/Views/Settings.php:1469
1905
  msgid "Hour"
1906
  msgstr ""
1907
 
1908
+ #: classes/Views/Settings.php:1485 classes/Views/Settings.php:1501
1909
  msgid "Day"
1910
  msgstr ""
1911
 
1912
+ #: classes/Views/Settings.php:1511
1913
  msgid "Which directories should be scanned for file changes?"
1914
  msgstr ""
1915
 
1916
+ #: classes/Views/Settings.php:1513
1917
  msgid ""
1918
  "The plugin will scan all the directories in your WordPress website by "
1919
  "default because that is the most secure option. Though if for some reason "
1921
  "them from the below list."
1922
  msgstr ""
1923
 
1924
+ #: classes/Views/Settings.php:1519
1925
  msgid "Directories to scan"
1926
  msgstr ""
1927
 
1928
+ #: classes/Views/Settings.php:1543
1929
  msgid "What is the biggest file size the plugin should scan?"
1930
  msgstr ""
1931
 
1932
+ #: classes/Views/Settings.php:1544
1933
  msgid ""
1934
  "By default the plugin does not scan files that are bigger than 5MB. Such "
1935
  "files are not common, hence typically not a target. Though if you are "
1937
  "limit from the below option."
1938
  msgstr ""
1939
 
1940
+ #: classes/Views/Settings.php:1547
1941
  msgid "File Size Limit"
1942
  msgstr ""
1943
 
1944
+ #: classes/Views/Settings.php:1550
1945
  msgid "MB"
1946
  msgstr ""
1947
 
1948
+ #: classes/Views/Settings.php:1556
1949
  msgid ""
1950
  "Do you want to exclude specific files or files with a particular extension "
1951
  "from the scan?"
1952
  msgstr ""
1953
 
1954
+ #: classes/Views/Settings.php:1557
1955
  msgid ""
1956
  "The plugin will scan everything that is in the WordPress root directory or "
1957
  "below, even if the files and directories are not part of WordPress. It is "
1960
  "excluded by default."
1961
  msgstr ""
1962
 
1963
+ #: classes/Views/Settings.php:1562
1964
  msgid "Exclude All Files in These Directories"
1965
  msgstr ""
1966
 
1967
+ #: classes/Views/Settings.php:1575 classes/Views/Settings.php:1611
1968
+ #: classes/Views/Settings.php:1641
1969
  msgid "REMOVE"
1970
  msgstr ""
1971
 
1972
+ #: classes/Views/Settings.php:1580 classes/Views/Settings.php:1616
1973
+ #: classes/Views/Settings.php:1646 classes/Views/SetupWizard.php:685
1974
  #: classes/Views/SetupWizard.php:693 classes/Views/SetupWizard.php:778
1975
  #: classes/Views/SetupWizard.php:797 classes/Views/SetupWizard.php:816
1976
  msgid "ADD"
1977
  msgstr ""
1978
 
1979
+ #: classes/Views/Settings.php:1583
1980
  msgid ""
1981
  "Specify the name of the directory and the path to it in relation to the "
1982
  "website's root. For example, if you want to want to exclude all files in the "
1983
  "sub directory dir1/dir2 specify the following:"
1984
  msgstr ""
1985
 
1986
+ #: classes/Views/Settings.php:1594
1987
  msgid "Exclude These Files"
1988
  msgstr ""
1989
 
1990
+ #: classes/Views/Settings.php:1619
1991
  msgid ""
1992
  "Specify the name and extension of the file(s) you want to exclude. Wildcard "
1993
  "not supported. There is no need to specify the path of the file."
1994
  msgstr ""
1995
 
1996
+ #: classes/Views/Settings.php:1628
1997
  msgid "Exclude these File Types"
1998
  msgstr ""
1999
 
2000
+ #: classes/Views/Settings.php:1649
2001
  msgid ""
2002
  "Specify the extension of the file types you want to exclude. You should "
2003
  "exclude any type of logs and backup files that tend to be very big."
2004
  msgstr ""
2005
 
2006
+ #: classes/Views/Settings.php:1658
2007
  msgid "Launch an instant file integrity scan"
2008
  msgstr ""
2009
 
2010
+ #: classes/Views/Settings.php:1660
2011
  msgid ""
2012
  "Click the Scan Now button to launch an instant file integrity scan using the "
2013
  "configured settings. You can navigate away from this page during the scan. "
2015
  "scans."
2016
  msgstr ""
2017
 
2018
+ #: classes/Views/Settings.php:1666
2019
  msgid "Launch Instant Scan"
2020
  msgstr ""
2021
 
2022
+ #: classes/Views/Settings.php:1672 classes/Views/Settings.php:1679
2023
+ #: classes/Views/Settings.php:2295
2024
  msgid "Scan Now"
2025
  msgstr ""
2026
 
2027
+ #: classes/Views/Settings.php:1673 classes/Views/Settings.php:1676
2028
+ #: classes/Views/Settings.php:1680
2029
  msgid "Stop Scan"
2030
  msgstr ""
2031
 
2032
+ #: classes/Views/Settings.php:1675 classes/Views/Settings.php:2297
2033
  msgid "Scan in Progress"
2034
  msgstr ""
2035
 
2036
+ #: classes/Views/Settings.php:1759
2037
  msgid ""
2038
  "By default the plugin keeps a log of all user changes done on your WordPress "
2039
  "website. Use the setting below to exclude any objects from the activity log. "
2041
  "object is referred will not be logged in the activity log."
2042
  msgstr ""
2043
 
2044
+ #: classes/Views/Settings.php:1763
2045
  msgid "Exclude Users:"
2046
  msgstr ""
2047
 
2048
+ #: classes/Views/Settings.php:1784
2049
  msgid "Exclude Roles:"
2050
  msgstr ""
2051
 
2052
+ #: classes/Views/Settings.php:1805
2053
  msgid "Exclude IP Address(es):"
2054
  msgstr ""
2055
 
2056
+ #: classes/Views/Settings.php:1821
2057
  msgid ""
2058
  "You can exclude an individual IP address or a range of IP addresses. To "
2059
  "exclude a range use the following format: [first IP]-[last octet of the last "
2060
  "IP]. Example: 172.16.180.6-127."
2061
  msgstr ""
2062
 
2063
+ #: classes/Views/Settings.php:1827
2064
  msgid "Exclude Post Type:"
2065
  msgstr ""
2066
 
2067
+ #: classes/Views/Settings.php:1843
2068
  msgid ""
2069
  "WordPress has the post and page post types by default though your website "
2070
  "might use more post types (custom post types). You can exclude all post "
2071
  "types, including the default WordPress ones."
2072
  msgstr ""
2073
 
2074
+ #: classes/Views/Settings.php:1849
2075
  msgid "Exclude Custom Fields:"
2076
  msgstr ""
2077
 
2078
+ #: classes/Views/Settings.php:1865
2079
  msgid ""
2080
  "You can use the * wildcard to exclude multiple matching custom fields. For "
2081
  "example to exclude all custom fields starting with wp123 enter wp123*"
2082
  msgstr ""
2083
 
2084
+ #: classes/Views/Settings.php:1871
2085
  msgid "Exclude Non-Existing URLs:"
2086
  msgstr ""
2087
 
2088
+ #: classes/Views/Settings.php:1887
2089
  msgid ""
2090
  "Add the non existing URLs for which you do not want to be alerted of HTTP "
2091
  "404 errors in the activity log by specifying the complete URL.\tExamples "
2092
  "below:"
2093
  msgstr ""
2094
 
2095
+ #: classes/Views/Settings.php:1887
2096
  msgid "File: "
2097
  msgstr ""
2098
 
2099
+ #: classes/Views/Settings.php:1887
2100
  msgid "Directory: "
2101
  msgstr ""
2102
 
2103
+ #: classes/Views/Settings.php:1920
2104
  msgid ""
2105
  "You can export and import the plugin settings from here, which can also be "
2106
  "used as a plugin configuration backup. The plugin settings are exported to a "
2107
  "JSON file."
2108
  msgstr ""
2109
 
2110
+ #: classes/Views/Settings.php:1921 classes/Views/Settings.php:1925
2111
+ #: classes/Views/Settings.php:1948
2112
  msgid "Export Settings"
2113
  msgstr ""
2114
 
2115
+ #: classes/Views/Settings.php:1955 classes/Views/Settings.php:1959
2116
+ #: classes/Views/Settings.php:1963
2117
  msgid "Import Settings"
2118
  msgstr ""
2119
 
2120
+ #: classes/Views/Settings.php:2029
2121
  msgid "The plugin settings have been imported successfully."
2122
  msgstr ""
2123
 
2124
+ #: classes/Views/Settings.php:2031
2125
  msgid "No settings found to import."
2126
  msgstr ""
2127
 
2128
+ #: classes/Views/Settings.php:2034
2129
  msgid "Invalid file or file size is too large."
2130
  msgstr ""
2131
 
2132
+ #: classes/Views/Settings.php:2037
2133
  msgid "Error occurred while uploading the file."
2134
  msgstr ""
2135
 
2136
+ #: classes/Views/Settings.php:2048
2137
  msgid "These settings are for advanced users."
2138
  msgstr ""
2139
 
2140
+ #: classes/Views/Settings.php:2049
2141
  msgid ""
2142
  "If you have any questions <a href=\"https://www.wpsecurityauditlog.com/"
2143
  "contact/\" target=\"_blank\">contact us</a>."
2144
  msgstr ""
2145
 
2146
+ #: classes/Views/Settings.php:2052
2147
  msgid ""
2148
  "Troubleshooting setting: Keep a debug log of all the requests this website "
2149
  "receives"
2150
  msgstr ""
2151
 
2152
+ #: classes/Views/Settings.php:2053
2153
  msgid ""
2154
  "Only enable the request log on testing, staging and development website. "
2155
  "Never enable logging on a live website unless instructed to do so. Enabling "
2156
  "request logging on a live website may degrade the performance of the website."
2157
  msgstr ""
2158
 
2159
+ #: classes/Views/Settings.php:2057
2160
  msgid "Request Log"
2161
  msgstr ""
2162
 
2163
+ #: classes/Views/Settings.php:2075
2164
  msgid ""
2165
  "<strong>Note:</strong> The requests debug log file is saved as request.log."
2166
  "php in the /wp-content/uploads/wp-security-audit-log/ directory."
2167
  msgstr ""
2168
 
2169
+ #: classes/Views/Settings.php:2087
2170
  msgid "Reset plugin settings to default"
2171
  msgstr ""
2172
 
2173
+ #: classes/Views/Settings.php:2088
2174
  msgid ""
2175
  "Click the RESET button to reset ALL plugin settings to default. Note that "
2176
  "the activity log data will be retained and only the plugin settings will be "
2177
  "reset. To purge the data of the activity log use the setting below."
2178
  msgstr ""
2179
 
2180
+ #: classes/Views/Settings.php:2092
2181
  msgid "Reset Settings"
2182
  msgstr ""
2183
 
2184
+ #: classes/Views/Settings.php:2094
2185
  msgid "RESET"
2186
  msgstr ""
2187
 
2188
+ #: classes/Views/Settings.php:2100
2189
  msgid "Purge the WordPress activity log"
2190
  msgstr ""
2191
 
2192
+ #: classes/Views/Settings.php:2101
2193
  msgid ""
2194
  "Click the Purge button below to delete all the data from the WordPress "
2195
  "activity log and start afresh."
2196
  msgstr ""
2197
 
2198
+ #: classes/Views/Settings.php:2105
2199
  msgid "Purge Activity Log"
2200
  msgstr ""
2201
 
2202
+ #: classes/Views/Settings.php:2107
2203
  msgid "PURGE"
2204
  msgstr ""
2205
 
2206
+ #: classes/Views/Settings.php:2113
2207
  msgid "MainWP Child Site Stealth Mode"
2208
  msgstr ""
2209
 
2210
+ #: classes/Views/Settings.php:2114
2211
  msgid ""
2212
  "This option is enabled automatically when the plugin detects the MainWP "
2213
  "Child plugin on the site. When this setting is enabled plugin access is "
2216
  "Disable this option to change the plugin to the default setup."
2217
  msgstr ""
2218
 
2219
+ #: classes/Views/Settings.php:2118
2220
  msgid "Enable MainWP Child Site Stealth Mode"
2221
  msgstr ""
2222
 
2223
+ #: classes/Views/Settings.php:2142
2224
  msgid "Do you want to delete the plugin data from the database upon uninstall?"
2225
  msgstr ""
2226
 
2227
+ #: classes/Views/Settings.php:2143
2228
  msgid ""
2229
  "The plugin saves the activity log data and settings in the WordPress "
2230
  "database. By default upon uninstalling the plugin the data is kept in the "
2233
  "access it again even when you reinstall the plugin."
2234
  msgstr ""
2235
 
2236
+ #: classes/Views/Settings.php:2147
2237
  msgid "Remove Data on Uninstall"
2238
  msgstr ""
2239
 
2240
+ #: classes/Views/Settings.php:2172
2241
  msgid "Are you sure you want to reset all the plugin settings to default?"
2242
  msgstr ""
2243
 
2244
+ #: classes/Views/Settings.php:2182
2245
  msgid "Are you sure you want to purge all the activity log data?"
2246
  msgstr ""
2247
 
2248
+ #: classes/Views/Settings.php:2212
2249
  msgid "MainWP Child plugin is not active on this website."
2250
  msgstr ""
2251
 
2252
+ #: classes/Views/Settings.php:2288
2253
  msgid "The specified value is not a valid URL!"
2254
  msgstr ""
2255
 
2256
+ #: classes/Views/Settings.php:2289
2257
  msgid "The specified value is not a valid post type!"
2258
  msgstr ""
2259
 
2260
+ #: classes/Views/Settings.php:2290
2261
  msgid "The specified value is not a valid IP address!"
2262
  msgstr ""
2263
 
2264
+ #: classes/Views/Settings.php:2291
2265
  msgid "The specified value is not a user nor a role!"
2266
  msgstr ""
2267
 
2268
+ #: classes/Views/Settings.php:2292
2269
  msgid "Filename cannot be added because it contains invalid characters."
2270
  msgstr ""
2271
 
2272
+ #: classes/Views/Settings.php:2293
2273
  msgid "File extension cannot be added because it contains invalid characters."
2274
  msgstr ""
2275
 
2276
+ #: classes/Views/Settings.php:2294
2277
  msgid "Directory cannot be added because it contains invalid characters."
2278
  msgstr ""
2279
 
2280
+ #: classes/Views/Settings.php:2296
2281
  msgid "Scan Failed"
2282
  msgstr ""
2283
 
2284
+ #: classes/Views/Settings.php:2427 classes/Views/Settings.php:2546
2285
  msgid "Invalid setting type."
2286
  msgstr ""
2287
 
2288
+ #: classes/Views/Settings.php:2482
2289
  msgid "You can exclude this directory using the check boxes above."
2290
  msgstr ""
2291
 
2292
+ #: classes/Views/Settings.php:2503
2293
  msgid "Option added to excluded types."
2294
  msgstr ""
2295
 
2296
+ #: classes/Views/Settings.php:2508
2297
  msgid "This file is already excluded from the scan."
2298
  msgstr ""
2299
 
2300
+ #: classes/Views/Settings.php:2510
2301
  msgid "This file extension is already excluded from the scan."
2302
  msgstr ""
2303
 
2304
+ #: classes/Views/Settings.php:2512
2305
  msgid "This directory is already excluded from the scan."
2306
  msgstr ""
2307
 
2308
+ #: classes/Views/Settings.php:2525
2309
  msgid "Option name is empty."
2310
  msgstr ""
2311
 
2312
+ #: classes/Views/Settings.php:2623
2313
  msgid "Option removed from excluded scan types."
2314
  msgstr ""
2315
 
2316
+ #: classes/Views/Settings.php:2630 classes/Views/Settings.php:2720
2317
  msgid "Something went wrong."
2318
  msgstr ""
2319
 
2320
+ #: classes/Views/Settings.php:2659
2321
  msgid "A cron job is in progress."
2322
  msgstr ""
2323
 
2324
+ #: classes/Views/Settings.php:2713 classes/Views/Settings.php:2756
2325
  msgid "Scan started successfully."
2326
  msgstr ""
2327
 
2328
+ #: classes/Views/Settings.php:2782 classes/Views/Settings.php:2809
2329
  msgid "Tables has been reset."
2330
  msgstr ""
2331
 
2332
+ #: classes/Views/Settings.php:2784 classes/Views/Settings.php:2811
2333
  msgid "Reset query failed."
2334
  msgstr ""
2335
 
2336
+ #: classes/Views/Settings.php:2787 classes/Views/Settings.php:2814
2337
  msgid "Nonce Verification Failed."
2338
  msgstr ""
2339
 
2619
  "on all the events the plugin can keep a log of."
2620
  msgstr ""
2621
 
2622
+ #: classes/Views/ToggleAlerts.php:221 defaults.php:500
2623
  msgid "Third Party Plugins"
2624
  msgstr ""
2625
 
2628
  msgstr ""
2629
 
2630
  #: classes/Views/ToggleAlerts.php:274 classes/Views/ToggleAlerts.php:281
2631
+ #: classes/Views/ToggleAlerts.php:331 defaults.php:504
2632
  msgid "BBPress Forum"
2633
  msgstr ""
2634
 
2635
  #: classes/Views/ToggleAlerts.php:275 classes/Views/ToggleAlerts.php:288
2636
+ #: classes/Views/ToggleAlerts.php:344 defaults.php:579
2637
  msgid "WooCommerce"
2638
  msgstr ""
2639
 
2640
  #: classes/Views/ToggleAlerts.php:276 classes/Views/ToggleAlerts.php:289
2641
  #: classes/Views/ToggleAlerts.php:344 classes/Views/ToggleAlerts.php:352
2642
+ #: defaults.php:534
2643
  msgid "WooCommerce Products"
2644
  msgstr ""
2645
 
2646
  #: classes/Views/ToggleAlerts.php:277 classes/Views/ToggleAlerts.php:296
2647
+ #: classes/Views/ToggleAlerts.php:359 defaults.php:631
2648
  msgid "Yoast SEO"
2649
  msgstr ""
2650
 
2651
  #: classes/Views/ToggleAlerts.php:278 classes/Views/ToggleAlerts.php:303
2652
+ #: classes/Views/ToggleAlerts.php:372 defaults.php:482
2653
  msgid "MultiSite"
2654
  msgstr ""
2655
 
2666
  msgid "File Changes"
2667
  msgstr ""
2668
 
2669
+ #: classes/Views/ToggleAlerts.php:325 defaults.php:212
2670
  msgid "Content"
2671
  msgstr ""
2672
 
2711
  "Your website is a single site so the multisite events have been disabled."
2712
  msgstr ""
2713
 
2714
+ #: classes/Views/ToggleAlerts.php:382 defaults.php:186
2715
  msgid "User Profiles"
2716
  msgstr ""
2717
 
2718
+ #: classes/Views/ToggleAlerts.php:385 defaults.php:167
2719
  msgid "Other User Activity"
2720
  msgstr ""
2721
 
2954
  msgid "No events found."
2955
  msgstr ""
2956
 
2957
+ #: defaults.php:87
2958
  msgid "Fatal run-time error."
2959
  msgstr ""
2960
 
2961
+ #: defaults.php:91
2962
  msgid "Run-time warning (non-fatal error)."
2963
  msgstr ""
2964
 
2965
+ #: defaults.php:95
2966
  msgid "Compile-time parse error."
2967
  msgstr ""
2968
 
2969
+ #: defaults.php:99
2970
  msgid "Run-time notice."
2971
  msgstr ""
2972
 
2973
+ #: defaults.php:103
2974
  msgid "Fatal error that occurred during startup."
2975
  msgstr ""
2976
 
2977
+ #: defaults.php:107
2978
  msgid "Warnings that occurred during startup."
2979
  msgstr ""
2980
 
2981
+ #: defaults.php:111
2982
  msgid "Fatal compile-time error."
2983
  msgstr ""
2984
 
2985
+ #: defaults.php:115
2986
  msgid "Compile-time warning."
2987
  msgstr ""
2988
 
2989
+ #: defaults.php:119
2990
  msgid "User-generated error message."
2991
  msgstr ""
2992
 
2993
+ #: defaults.php:123
2994
  msgid "User-generated warning message."
2995
  msgstr ""
2996
 
2997
+ #: defaults.php:127
2998
  msgid "User-generated notice message."
2999
  msgstr ""
3000
 
3001
+ #: defaults.php:131
3002
  msgid "Non-standard/optimal code warning."
3003
  msgstr ""
3004
 
3005
+ #: defaults.php:135
3006
  msgid "Catchable fatal error."
3007
  msgstr ""
3008
 
3009
+ #: defaults.php:139
3010
  msgid "Run-time deprecation notices."
3011
  msgstr ""
3012
 
3013
+ #: defaults.php:143
3014
  msgid "Run-time user deprecation notices."
3015
  msgstr ""
3016
 
3017
+ #: defaults.php:148
3018
  msgid "Critical, high-impact messages."
3019
  msgstr ""
3020
 
3021
+ #: defaults.php:152
3022
  msgid "Debug informational messages."
3023
  msgstr ""
3024
 
3025
+ #: defaults.php:163
3026
  msgid "Users Profiles & Activity"
3027
  msgstr ""
3028
 
3029
+ #: defaults.php:168
3030
  msgid "User logged in"
3031
  msgstr ""
3032
 
3033
+ #: defaults.php:168
3034
  msgid "Successfully logged in."
3035
  msgstr ""
3036
 
3037
+ #: defaults.php:169
3038
  msgid "User logged out"
3039
  msgstr ""
3040
 
3041
+ #: defaults.php:169
3042
  msgid "Successfully logged out."
3043
  msgstr ""
3044
 
3045
+ #: defaults.php:170
3046
  msgid "Login failed"
3047
  msgstr ""
3048
 
3049
+ #: defaults.php:170
3050
  msgid "%Attempts% failed login(s) detected."
3051
  msgstr ""
3052
 
3053
+ #: defaults.php:171
3054
  msgid "Login failed / non existing user"
3055
  msgstr ""
3056
 
3057
+ #: defaults.php:171
3058
  msgid ""
3059
  "%Attempts% failed login(s) detected using non existing user. %LogFileText%"
3060
  msgstr ""
3061
 
3062
+ #: defaults.php:172
3063
  msgid "Login blocked"
3064
  msgstr ""
3065
 
3066
+ #: defaults.php:172
3067
  msgid ""
3068
  "Blocked from logging in because the same WordPress user is logged in from "
3069
  "%ClientIP%."
3070
  msgstr ""
3071
 
3072
+ #: defaults.php:173
3073
  msgid "User logged in with existing session(s)"
3074
  msgstr ""
3075
 
3076
+ #: defaults.php:173
3077
  msgid ""
3078
  "Successfully logged in. Another session from %IPAddress% for this user "
3079
  "already exist."
3080
  msgstr ""
3081
 
3082
+ #: defaults.php:174
3083
  msgid "User logged out all other sessions with the same username"
3084
  msgstr ""
3085
 
3086
+ #: defaults.php:174
3087
  msgid "Logged out all other sessions with the same username."
3088
  msgstr ""
3089
 
3090
+ #: defaults.php:175
3091
  msgid "User session destroyed and logged out"
3092
  msgstr ""
3093
 
3094
+ #: defaults.php:175
3095
  msgid "Logged out session %TargetSessionID% which belonged to %TargetUserName%"
3096
  msgstr ""
3097
 
3098
+ #: defaults.php:176
3099
  msgid "Switched to another user"
3100
  msgstr ""
3101
 
3102
+ #: defaults.php:176
3103
  msgid "Switched to %TargetUserName% with role %TargetUserRole%."
3104
  msgstr ""
3105
 
3106
+ #: defaults.php:177
3107
  msgid "User uploaded file from Uploads directory"
3108
  msgstr ""
3109
 
3110
+ #: defaults.php:177
3111
  msgid "Uploaded the file %FileName% in %FilePath%."
3112
  msgstr ""
3113
 
3114
+ #: defaults.php:178
3115
  msgid "User deleted file from Uploads directory"
3116
  msgstr ""
3117
 
3118
+ #: defaults.php:178
3119
  msgid "Deleted the file %FileName% from %FilePath%."
3120
  msgstr ""
3121
 
3122
+ #: defaults.php:179
3123
  msgid "User requests non-existing pages (404 Error Pages)"
3124
  msgstr ""
3125
 
3126
+ #: defaults.php:179
3127
  msgid ""
3128
  "Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
3129
  "%LinkFile%%URL%"
3130
  msgstr ""
3131
 
3132
+ #: defaults.php:180
3133
  msgid "Website Visitor User requests non-existing pages (404 Error Pages)"
3134
  msgstr ""
3135
 
3136
+ #: defaults.php:180
3137
  msgid ""
3138
  "Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
3139
  "% %Msg%. %LinkFile%%URL%"
3140
  msgstr ""
3141
 
3142
+ #: defaults.php:187
3143
  msgid "New user was created on WordPress"
3144
  msgstr ""
3145
 
3146
+ #: defaults.php:187
3147
  msgid ""
3148
  "A new user %NewUserData->Username% was created with role of %NewUserData-"
3149
  ">Roles%."
3150
  msgstr ""
3151
 
3152
+ #: defaults.php:188
3153
  msgid "User created another WordPress user"
3154
  msgstr ""
3155
 
3156
+ #: defaults.php:188
3157
  msgid ""
3158
  "%UserChanger% created a new user %NewUserData->Username% with the role of "
3159
  "%NewUserData->Roles%."
3160
  msgstr ""
3161
 
3162
+ #: defaults.php:189
3163
  msgid "The role of a user was changed by another WordPress user"
3164
  msgstr ""
3165
 
3166
+ #: defaults.php:189
3167
  msgid ""
3168
  "Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
3169
  "%multisite_text%."
3170
  msgstr ""
3171
 
3172
+ #: defaults.php:190
3173
  msgid "User has changed his or her password"
3174
  msgstr ""
3175
 
3176
+ #: defaults.php:190
3177
  msgid "Changed the password."
3178
  msgstr ""
3179
 
3180
+ #: defaults.php:191
3181
  msgid "User changed another user's password"
3182
  msgstr ""
3183
 
3184
+ #: defaults.php:191
3185
  msgid ""
3186
  "Changed the password for the user %TargetUserData->Username% with the role "
3187
  "of %TargetUserData->Roles%."
3188
  msgstr ""
3189
 
3190
+ #: defaults.php:192
3191
  msgid "User changed his or her email address"
3192
  msgstr ""
3193
 
3194
+ #: defaults.php:192
3195
  msgid "Changed the email address from %OldEmail% to %NewEmail%."
3196
  msgstr ""
3197
 
3198
+ #: defaults.php:193
3199
  msgid "User changed another user's email address"
3200
  msgstr ""
3201
 
3202
+ #: defaults.php:193
3203
  msgid ""
3204
  "Changed the email address of the user %TargetUsername% from %OldEmail% to "
3205
  "%NewEmail%."
3206
  msgstr ""
3207
 
3208
+ #: defaults.php:194
3209
  msgid "User was deleted by another user"
3210
  msgstr ""
3211
 
3212
+ #: defaults.php:194
3213
  msgid ""
3214
  "Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
3215
  ">Roles%."
3216
  msgstr ""
3217
 
3218
+ #: defaults.php:195
3219
  msgid "User opened the profile page of another user"
3220
  msgstr ""
3221
 
3222
+ #: defaults.php:195
3223
  msgid "%UserChanger% opened the profile page of the user %TargetUsername%."
3224
  msgstr ""
3225
 
3226
+ #: defaults.php:196
3227
  msgid "User updated a custom field value for a user"
3228
  msgstr ""
3229
 
3230
+ #: defaults.php:196
3231
  msgid ""
3232
  "Changed the value of the custom field %custom_field_name%%ReportText% for "
3233
  "the user %TargetUsername%.%ChangeText%"
3234
  msgstr ""
3235
 
3236
+ #: defaults.php:197
3237
  msgid "User created a custom field value for a user"
3238
  msgstr ""
3239
 
3240
+ #: defaults.php:197
3241
  msgid ""
3242
  "Created the value of the custom field %custom_field_name% with %new_value% "
3243
  "for the user %TargetUsername%."
3244
  msgstr ""
3245
 
3246
+ #: defaults.php:198
3247
  msgid "User changed first name for a user"
3248
  msgstr ""
3249
 
3250
+ #: defaults.php:198
3251
  msgid ""
3252
  "Changed the first name of the user %TargetUsername% from %old_firstname% to "
3253
  "%new_firstname%"
3254
  msgstr ""
3255
 
3256
+ #: defaults.php:199
3257
  msgid "User changed last name for a user"
3258
  msgstr ""
3259
 
3260
+ #: defaults.php:199
3261
  msgid ""
3262
  "Changed the last name of the user %TargetUsername% from %old_lastname% to "
3263
  "%new_lastname%"
3264
  msgstr ""
3265
 
3266
+ #: defaults.php:200
3267
  msgid "User changed nickname for a user"
3268
  msgstr ""
3269
 
3270
+ #: defaults.php:200
3271
  msgid ""
3272
  "Changed the nickname of the user %TargetUsername% from %old_nickname% to "
3273
  "%new_nickname%"
3274
  msgstr ""
3275
 
3276
+ #: defaults.php:201
3277
  msgid "User changed the display name for a user"
3278
  msgstr ""
3279
 
3280
+ #: defaults.php:201
3281
  msgid ""
3282
  "Changed the Display name publicly of user %TargetUsername% from "
3283
  "%old_displayname% to %new_displayname%"
3284
  msgstr ""
3285
 
3286
+ #: defaults.php:208
3287
  msgid "Content & Comments"
3288
  msgstr ""
3289
 
3290
+ #: defaults.php:213
3291
  msgid "User created a new post and saved it as draft"
3292
  msgstr ""
3293
 
3294
+ #: defaults.php:213
3295
  msgid ""
3296
  "Created a new %PostType% titled %PostTitle% and saved it as draft. "
3297
  "%EditorLinkPost%."
3298
  msgstr ""
3299
 
3300
+ #: defaults.php:214
3301
  msgid "User published a post"
3302
  msgstr ""
3303
 
3304
+ #: defaults.php:214
3305
  msgid ""
3306
  "Published a %PostType% titled %PostTitle%. URL is %PostUrl%. %EditorLinkPost"
3307
  "%."
3308
  msgstr ""
3309
 
3310
+ #: defaults.php:215
3311
  msgid "User modified a post"
3312
  msgstr ""
3313
 
3314
+ #: defaults.php:215
3315
  msgid ""
3316
  "Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3317
  "%EditorLinkPost%."
3318
  msgstr ""
3319
 
3320
+ #: defaults.php:216
3321
  msgid "User permanently deleted a post from the trash"
3322
  msgstr ""
3323
 
3324
+ #: defaults.php:216
3325
  msgid ""
3326
  "Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
3327
  msgstr ""
3328
 
3329
+ #: defaults.php:217
3330
  msgid "User moved a post to the trash"
3331
  msgstr ""
3332
 
3333
+ #: defaults.php:217
3334
  msgid ""
3335
  "Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
3336
  "%PostUrl%."
3337
  msgstr ""
3338
 
3339
+ #: defaults.php:218
3340
  msgid "User restored a post from trash"
3341
  msgstr ""
3342
 
3343
+ #: defaults.php:218
3344
  msgid ""
3345
  "The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
3346
  "URL is: %PostUrl%. %EditorLinkPost%."
3347
  msgstr ""
3348
 
3349
+ #: defaults.php:219
3350
  msgid "User changed post URL"
3351
  msgstr ""
3352
 
3353
+ #: defaults.php:219
3354
  msgid ""
3355
  "Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
3356
  "%.%ChangeText% %EditorLinkPost%."
3357
  msgstr ""
3358
 
3359
+ #: defaults.php:220
3360
  msgid "User changed post author"
3361
  msgstr ""
3362
 
3363
+ #: defaults.php:220
3364
  msgid ""
3365
  "Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
3366
  "%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
3367
  msgstr ""
3368
 
3369
+ #: defaults.php:221
3370
  msgid "User changed post status"
3371
  msgstr ""
3372
 
3373
+ #: defaults.php:221
3374
  msgid ""
3375
  "Changed the status of the %PostType% titled %PostTitle% from %OldStatus% to "
3376
  "%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
3377
  msgstr ""
3378
 
3379
+ #: defaults.php:222
3380
  msgid "User changed the visibility of a post"
3381
  msgstr ""
3382
 
3383
+ #: defaults.php:222
3384
  msgid ""
3385
  "Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
3386
  "from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
3387
  msgstr ""
3388
 
3389
+ #: defaults.php:223
3390
  msgid "User changed the date of a post"
3391
  msgstr ""
3392
 
3393
+ #: defaults.php:223
3394
  msgid ""
3395
  "Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
3396
  "%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
3397
  msgstr ""
3398
 
3399
+ #: defaults.php:224
3400
  msgid "User changed the parent of a page"
3401
  msgstr ""
3402
 
3403
+ #: defaults.php:224
3404
  msgid ""
3405
  "Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
3406
  "%OldParentName% to %NewParentName%. %EditorLinkPost%."
3407
  msgstr ""
3408
 
3409
+ #: defaults.php:225
3410
  msgid "User changed the template of a page"
3411
  msgstr ""
3412
 
3413
+ #: defaults.php:225
3414
  msgid ""
3415
  "Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
3416
  "%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
3417
  msgstr ""
3418
 
3419
+ #: defaults.php:226
3420
  msgid "User set a post as sticky"
3421
  msgstr ""
3422
 
3423
+ #: defaults.php:226
3424
  msgid ""
3425
  "Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
3426
  msgstr ""
3427
 
3428
+ #: defaults.php:227
3429
  msgid "User removed post from sticky"
3430
  msgstr ""
3431
 
3432
+ #: defaults.php:227
3433
  msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
3434
  msgstr ""
3435
 
3436
+ #: defaults.php:228
3437
  msgid "User modified the content of a post"
3438
  msgstr ""
3439
 
3440
+ #: defaults.php:228
3441
  msgid ""
3442
  "Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
3443
  "URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
3444
  msgstr ""
3445
 
3446
+ #: defaults.php:229
3447
  msgid "User submitted a post for review"
3448
  msgstr ""
3449
 
3450
+ #: defaults.php:229
3451
  msgid ""
3452
  "Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
3453
  "%EditorLinkPost%."
3454
  msgstr ""
3455
 
3456
+ #: defaults.php:230
3457
  msgid "User scheduled a post"
3458
  msgstr ""
3459
 
3460
+ #: defaults.php:230
3461
  msgid ""
3462
  "Scheduled the %PostType% titled %PostTitle% to be published on "
3463
  "%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
3464
  msgstr ""
3465
 
3466
+ #: defaults.php:231
3467
  msgid "User changed title of a post"
3468
  msgstr ""
3469
 
3470
+ #: defaults.php:231
3471
  msgid ""
3472
  "Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
3473
  "%. URL is: %PostUrl%. %EditorLinkPost%."
3474
  msgstr ""
3475
 
3476
+ #: defaults.php:232
3477
  msgid "User opened a post in the editor"
3478
  msgstr ""
3479
 
3480
+ #: defaults.php:232
3481
  msgid ""
3482
  "Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
3483
  "%PostUrl%. %EditorLinkPost%."
3484
  msgstr ""
3485
 
3486
+ #: defaults.php:233
3487
  msgid "User viewed a post"
3488
  msgstr ""
3489
 
3490
+ #: defaults.php:233
3491
  msgid ""
3492
  "Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3493
  "%EditorLinkPost%."
3494
  msgstr ""
3495
 
3496
+ #: defaults.php:234
3497
  msgid "A plugin modified a post"
3498
  msgstr ""
3499
 
3500
+ #: defaults.php:234
3501
  msgid ""
3502
  "Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
3503
  "%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
3504
  msgstr ""
3505
 
3506
+ #: defaults.php:235
3507
  msgid "User disabled Comments/Trackbacks and Pingbacks in a post"
3508
  msgstr ""
3509
 
3510
+ #: defaults.php:235
3511
  msgid ""
3512
  "Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3513
  "%PostUrl%. %EditorLinkPost%."
3514
  msgstr ""
3515
 
3516
+ #: defaults.php:236
3517
  msgid "User enabled Comments/Trackbacks and Pingbacks in a post"
3518
  msgstr ""
3519
 
3520
+ #: defaults.php:236
3521
  msgid ""
3522
  "Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3523
  "%PostUrl%. %EditorLinkPost%."
3524
  msgstr ""
3525
 
3526
+ #: defaults.php:237
3527
  msgid "User added post tag"
3528
  msgstr ""
3529
 
3530
+ #: defaults.php:237
3531
  msgid ""
3532
  "Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
3533
  "%PostUrl%. %EditorLinkPost%."
3534
  msgstr ""
3535
 
3536
+ #: defaults.php:238
3537
  msgid "User removed post tag"
3538
  msgstr ""
3539
 
3540
+ #: defaults.php:238
3541
  msgid ""
3542
  "Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
3543
  "%PostUrl%. %EditorLinkPost%."
3544
  msgstr ""
3545
 
3546
+ #: defaults.php:239
3547
  msgid "User created new tag"
3548
  msgstr ""
3549
 
3550
+ #: defaults.php:239
3551
  msgid "Created a new tag called %TagName%. %TagLink%."
3552
  msgstr ""
3553
 
3554
+ #: defaults.php:240
3555
  msgid "User deleted tag"
3556
  msgstr ""
3557
 
3558
+ #: defaults.php:240
3559
  msgid "Deleted the tag %TagName%."
3560
  msgstr ""
3561
 
3562
+ #: defaults.php:241
3563
  msgid "User renamed tag"
3564
  msgstr ""
3565
 
3566
+ #: defaults.php:241
3567
  msgid "Renamed a tag from %old_name% to %new_name%. %TagLink%."
3568
  msgstr ""
3569
 
3570
+ #: defaults.php:242
3571
  msgid "User changed tag slug"
3572
  msgstr ""
3573
 
3574
+ #: defaults.php:242
3575
  msgid "Changed the slug of tag %tag% from %old_slug% to %new_slug%. %TagLink%."
3576
  msgstr ""
3577
 
3578
+ #: defaults.php:243
3579
  msgid "User changed tag description"
3580
  msgstr ""
3581
 
3582
+ #: defaults.php:243
3583
  msgid ""
3584
  "Changed the description of the tag %tag%%ReportText%.%ChangeText% %TagLink%."
3585
  msgstr ""
3586
 
3587
+ #: defaults.php:244
3588
  msgid "User changed post category"
3589
  msgstr ""
3590
 
3591
+ #: defaults.php:244
3592
  msgid ""
3593
  "Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
3594
  "%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
3595
  msgstr ""
3596
 
3597
+ #: defaults.php:245
3598
  msgid "User created new category"
3599
  msgstr ""
3600
 
3601
+ #: defaults.php:245
3602
  msgid ""
3603
  "Created a new category called %CategoryName%. Category slug is %Slug%. "
3604
  "%CategoryLink%."
3605
  msgstr ""
3606
 
3607
+ #: defaults.php:246
3608
  msgid "User deleted category"
3609
  msgstr ""
3610
 
3611
+ #: defaults.php:246
3612
  msgid ""
3613
  "Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
3614
  "%."
3615
  msgstr ""
3616
 
3617
+ #: defaults.php:247
3618
  msgid "Changed the parent of a category"
3619
  msgstr ""
3620
 
3621
+ #: defaults.php:247
3622
  msgid ""
3623
  "Changed the parent of the category %CategoryName% from %OldParent% to "
3624
  "%NewParent%. %CategoryLink%."
3625
  msgstr ""
3626
 
3627
+ #: defaults.php:248
3628
  msgid "User changed category name"
3629
  msgstr ""
3630
 
3631
+ #: defaults.php:248
3632
  msgid "Changed the name of the category %old_name% to %new_name%."
3633
  msgstr ""
3634
 
3635
+ #: defaults.php:249
3636
  msgid "User changed category slug"
3637
  msgstr ""
3638
 
3639
+ #: defaults.php:249
3640
  msgid ""
3641
  "Changed the slug of the category %CategoryName% from %old_slug% to %new_slug"
3642
  "%."
3643
  msgstr ""
3644
 
3645
+ #: defaults.php:250
3646
  msgid "User created a custom field for a post"
3647
  msgstr ""
3648
 
3649
+ #: defaults.php:250
3650
  msgid ""
3651
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3652
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3653
  "%EditorLinkPost%.<br>%MetaLink%."
3654
  msgstr ""
3655
 
3656
+ #: defaults.php:251
3657
  msgid "User updated a custom field value for a post"
3658
  msgstr ""
3659
 
3660
+ #: defaults.php:251
3661
  msgid ""
3662
  "Modified the value of the custom field %MetaKey%%ReportText% in the "
3663
  "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
3664
  "%EditorLinkPost%.<br>%MetaLink%."
3665
  msgstr ""
3666
 
3667
+ #: defaults.php:252
3668
  msgid "User deleted a custom field from a post"
3669
  msgstr ""
3670
 
3671
+ #: defaults.php:252
3672
  msgid ""
3673
  "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
3674
  "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
3675
  msgstr ""
3676
 
3677
+ #: defaults.php:253
3678
  msgid "User updated a custom field name for a post"
3679
  msgstr ""
3680
 
3681
+ #: defaults.php:253
3682
  msgid ""
3683
  "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
3684
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3685
  "%EditorLinkPost%.<br>%MetaLink%."
3686
  msgstr ""
3687
 
3688
+ #: defaults.php:259
3689
  msgid "Comments"
3690
  msgstr ""
3691
 
3692
+ #: defaults.php:260
3693
  msgid "User approved a comment"
3694
  msgstr ""
3695
 
3696
+ #: defaults.php:260
3697
  msgid ""
3698
  "Approved the comment posted in response to the post %PostTitle% by %Author% "
3699
  "on %CommentLink%."
3700
  msgstr ""
3701
 
3702
+ #: defaults.php:261
3703
  msgid "User unapproved a comment"
3704
  msgstr ""
3705
 
3706
+ #: defaults.php:261
3707
  msgid ""
3708
  "Unapproved the comment posted in response to the post %PostTitle% by %Author"
3709
  "% on %CommentLink%."
3710
  msgstr ""
3711
 
3712
+ #: defaults.php:262
3713
  msgid "User replied to a comment"
3714
  msgstr ""
3715
 
3716
+ #: defaults.php:262
3717
  msgid ""
3718
  "Replied to the comment posted in response to the post %PostTitle% by %Author"
3719
  "% on %CommentLink%."
3720
  msgstr ""
3721
 
3722
+ #: defaults.php:263
3723
  msgid "User edited a comment"
3724
  msgstr ""
3725
 
3726
+ #: defaults.php:263
3727
  msgid ""
3728
  "Edited a comment posted in response to the post %PostTitle% by %Author% on "
3729
  "%CommentLink%."
3730
  msgstr ""
3731
 
3732
+ #: defaults.php:264
3733
  msgid "User marked a comment as Spam"
3734
  msgstr ""
3735
 
3736
+ #: defaults.php:264
3737
  msgid ""
3738
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3739
  "%CommentLink% as Spam."
3740
  msgstr ""
3741
 
3742
+ #: defaults.php:265
3743
  msgid "User marked a comment as Not Spam"
3744
  msgstr ""
3745
 
3746
+ #: defaults.php:265
3747
  msgid ""
3748
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3749
  "%CommentLink% as Not Spam."
3750
  msgstr ""
3751
 
3752
+ #: defaults.php:266
3753
  msgid "User moved a comment to trash"
3754
  msgstr ""
3755
 
3756
+ #: defaults.php:266
3757
  msgid ""
3758
  "Moved the comment posted in response to the post %PostTitle% by %Author% on "
3759
  "%Date% to trash."
3760
  msgstr ""
3761
 
3762
+ #: defaults.php:267
3763
  msgid "User restored a comment from the trash"
3764
  msgstr ""
3765
 
3766
+ #: defaults.php:267
3767
  msgid ""
3768
  "Restored the comment posted in response to the post %PostTitle% by %Author% "
3769
  "on %CommentLink% from the trash."
3770
  msgstr ""
3771
 
3772
+ #: defaults.php:268
3773
  msgid "User permanently deleted a comment"
3774
  msgstr ""
3775
 
3776
+ #: defaults.php:268
3777
  msgid ""
3778
  "Permanently deleted the comment posted in response to the post %PostTitle% "
3779
  "by %Author% on %Date%."
3780
  msgstr ""
3781
 
3782
+ #: defaults.php:269
3783
  msgid "User posted a comment"
3784
  msgstr ""
3785
 
3786
+ #: defaults.php:269 defaults.php:270
3787
  msgid "%CommentMsg% on %CommentLink%."
3788
  msgstr ""
3789
 
3790
+ #: defaults.php:270
3791
  msgid "Visitor posted a comment"
3792
  msgstr ""
3793
 
3794
+ #: defaults.php:282
3795
  msgid "User modified a draft blog post"
3796
  msgstr ""
3797
 
3798
+ #: defaults.php:282
3799
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3800
  msgstr ""
3801
 
3802
+ #: defaults.php:283
3803
  msgid "User created a new post with custom post type and saved it as draft"
3804
  msgstr ""
3805
 
3806
+ #: defaults.php:283
3807
  msgid ""
3808
  "Created a new custom post called %PostTitle% of type %PostType%. "
3809
  "%EditorLinkPost%."
3810
  msgstr ""
3811
 
3812
+ #: defaults.php:284
3813
  msgid "User published a post with custom post type"
3814
  msgstr ""
3815
 
3816
+ #: defaults.php:284
3817
  msgid ""
3818
  "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3819
  "%. %EditorLinkPost%."
3820
  msgstr ""
3821
 
3822
+ #: defaults.php:285
3823
  msgid "User modified a post with custom post type"
3824
  msgstr ""
3825
 
3826
+ #: defaults.php:285
3827
  msgid ""
3828
  "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3829
  "%. %EditorLinkPost%."
3830
  msgstr ""
3831
 
3832
+ #: defaults.php:286
3833
  msgid "User modified a draft post with custom post type"
3834
  msgstr ""
3835
 
3836
+ #: defaults.php:286
3837
  msgid ""
3838
  "Modified the draft custom post %PostTitle% of type is %PostType%. "
3839
  "%EditorLinkPost%."
3840
  msgstr ""
3841
 
3842
+ #: defaults.php:287
3843
  msgid "User permanently deleted post with custom post type"
3844
  msgstr ""
3845
 
3846
+ #: defaults.php:287
3847
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3848
  msgstr ""
3849
 
3850
+ #: defaults.php:288
3851
  msgid "User moved post with custom post type to trash"
3852
  msgstr ""
3853
 
3854
+ #: defaults.php:288
3855
  msgid ""
3856
  "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
3857
  "%PostUrl%."
3858
  msgstr ""
3859
 
3860
+ #: defaults.php:289
3861
  msgid "User restored post with custom post type from trash"
3862
  msgstr ""
3863
 
3864
+ #: defaults.php:289
3865
  msgid ""
3866
  "The custom post %PostTitle% of type %PostType% has been restored from trash. "
3867
  "%EditorLinkPost%."
3868
  msgstr ""
3869
 
3870
+ #: defaults.php:290
3871
  msgid "User changed the category of a post with custom post type"
3872
  msgstr ""
3873
 
3874
+ #: defaults.php:290
3875
  msgid ""
3876
  "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
3877
  "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3878
  msgstr ""
3879
 
3880
+ #: defaults.php:291
3881
  msgid "User changed the URL of a post with custom post type"
3882
  msgstr ""
3883
 
3884
+ #: defaults.php:291
3885
  msgid ""
3886
  "Changed the URL of the custom post %PostTitle% of type %PostType% from "
3887
  "%OldUrl% to %NewUrl%. %EditorLinkPost%."
3888
  msgstr ""
3889
 
3890
+ #: defaults.php:292
3891
  msgid "User changed the author or post with custom post type"
3892
  msgstr ""
3893
 
3894
+ #: defaults.php:292
3895
  msgid ""
3896
  "Changed the author of custom post %PostTitle% of type %PostType% from "
3897
  "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3898
  msgstr ""
3899
 
3900
+ #: defaults.php:293
3901
  msgid "User changed the status of post with custom post type"
3902
  msgstr ""
3903
 
3904
+ #: defaults.php:293
3905
  msgid ""
3906
  "Changed the status of custom post %PostTitle% of type %PostType% from "
3907
  "%OldStatus% to %NewStatus%. %EditorLinkPost%."
3908
  msgstr ""
3909
 
3910
+ #: defaults.php:294
3911
  msgid "User changed the visibility of a post with custom post type"
3912
  msgstr ""
3913
 
3914
+ #: defaults.php:294
3915
  msgid ""
3916
  "Changed the visibility of the custom post %PostTitle% of type %PostType% "
3917
  "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3918
  msgstr ""
3919
 
3920
+ #: defaults.php:295
3921
  msgid "User changed the date of post with custom post type"
3922
  msgstr ""
3923
 
3924
+ #: defaults.php:295
3925
  msgid ""
3926
  "Changed the date of the custom post %PostTitle% of type %PostType% from "
3927
  "%OldDate% to %NewDate%. %EditorLinkPost%."
3928
  msgstr ""
3929
 
3930
+ #: defaults.php:296
3931
  msgid "User created a custom field for a custom post type"
3932
  msgstr ""
3933
 
3934
+ #: defaults.php:296
3935
  msgid ""
3936
  "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
3937
  "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3938
  msgstr ""
3939
 
3940
+ #: defaults.php:297
3941
  msgid "User updated a custom field for a custom post type"
3942
  msgstr ""
3943
 
3944
+ #: defaults.php:297
3945
  msgid ""
3946
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3947
  "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
3948
  "%.<br>%MetaLink%."
3949
  msgstr ""
3950
 
3951
+ #: defaults.php:298
3952
  msgid "User deleted a custom field from a custom post type"
3953
  msgstr ""
3954
 
3955
+ #: defaults.php:298
3956
  msgid ""
3957
  "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
3958
  "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3959
  msgstr ""
3960
 
3961
+ #: defaults.php:299
3962
  msgid "User updated a custom field name for a custom post type"
3963
  msgstr ""
3964
 
3965
+ #: defaults.php:299
3966
  msgid ""
3967
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
3968
  "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3969
  msgstr ""
3970
 
3971
+ #: defaults.php:300
3972
  msgid "User modified content for a published custom post type"
3973
  msgstr ""
3974
 
3975
+ #: defaults.php:300
3976
  msgid ""
3977
  "Modified the content of the published custom post type %PostTitle%. Post URL "
3978
  "is %PostUrl%.%EditorLinkPost%."
3979
  msgstr ""
3980
 
3981
+ #: defaults.php:301
3982
  msgid "User modified content for a draft post"
3983
  msgstr ""
3984
 
3985
+ #: defaults.php:301
3986
  msgid ""
3987
  "Modified the content of the draft post %PostTitle%.%RevisionLink% "
3988
  "%EditorLinkPost%."
3989
  msgstr ""
3990
 
3991
+ #: defaults.php:302
3992
  msgid "User modified content for a draft custom post type"
3993
  msgstr ""
3994
 
3995
+ #: defaults.php:302
3996
  msgid ""
3997
  "Modified the content of the draft custom post type %PostTitle%."
3998
  "%EditorLinkPost%."
3999
  msgstr ""
4000
 
4001
+ #: defaults.php:303
4002
  msgid "User modified content of a post"
4003
  msgstr ""
4004
 
4005
+ #: defaults.php:303
4006
  msgid ""
4007
  "Modified the content of post %PostTitle% which is submitted for review."
4008
  "%RevisionLink% %EditorLinkPost%."
4009
  msgstr ""
4010
 
4011
+ #: defaults.php:304
4012
  msgid "User scheduled a custom post type"
4013
  msgstr ""
4014
 
4015
+ #: defaults.php:304
4016
  msgid ""
4017
  "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
4018
  "%EditorLinkPost%."
4019
  msgstr ""
4020
 
4021
+ #: defaults.php:305
4022
  msgid "User changed title of a custom post type"
4023
  msgstr ""
4024
 
4025
+ #: defaults.php:305
4026
  msgid ""
4027
  "Changed the title of the custom post %OldTitle% to %NewTitle%. "
4028
  "%EditorLinkPost%."
4029
  msgstr ""
4030
 
4031
+ #: defaults.php:306
4032
  msgid "User opened a custom post type in the editor"
4033
  msgstr ""
4034
 
4035
+ #: defaults.php:306
4036
  msgid ""
4037
  "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
4038
  "the post: %EditorLinkPost%."
4039
  msgstr ""
4040
 
4041
+ #: defaults.php:307
4042
  msgid "User viewed a custom post type"
4043
  msgstr ""
4044
 
4045
+ #: defaults.php:307
4046
  msgid ""
4047
  "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
4048
  "%PostUrl%."
4049
  msgstr ""
4050
 
4051
+ #: defaults.php:308
4052
  msgid "A plugin created a custom post"
4053
  msgstr ""
4054
 
4055
+ #: defaults.php:308
4056
  msgid "A plugin automatically created the following custom post: %PostTitle%."
4057
  msgstr ""
4058
 
4059
+ #: defaults.php:309
4060
  msgid "A plugin deleted a custom post"
4061
  msgstr ""
4062
 
4063
+ #: defaults.php:309
4064
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
4065
  msgstr ""
4066
 
4067
+ #: defaults.php:310
4068
  msgid "A plugin modified a custom post"
4069
  msgstr ""
4070
 
4071
+ #: defaults.php:310
4072
  msgid ""
4073
  "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
4074
  msgstr ""
4075
 
4076
+ #: defaults.php:322
4077
  msgid "User created a new WordPress page and saved it as draft"
4078
  msgstr ""
4079
 
4080
+ #: defaults.php:322
4081
  msgid ""
4082
  "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
4083
  "%."
4084
  msgstr ""
4085
 
4086
+ #: defaults.php:323
4087
  msgid "User published a WordPress page"
4088
  msgstr ""
4089
 
4090
+ #: defaults.php:323
4091
  msgid ""
4092
  "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
4093
  msgstr ""
4094
 
4095
+ #: defaults.php:324
4096
  msgid "User modified a published WordPress page"
4097
  msgstr ""
4098
 
4099
+ #: defaults.php:324
4100
  msgid ""
4101
  "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
4102
  "%EditorLinkPage%."
4103
  msgstr ""
4104
 
4105
+ #: defaults.php:325
4106
  msgid "User modified a draft WordPress page"
4107
  msgstr ""
4108
 
4109
+ #: defaults.php:325
4110
  msgid ""
4111
  "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
4112
  msgstr ""
4113
 
4114
+ #: defaults.php:326
4115
  msgid "User permanently deleted a page from the trash"
4116
  msgstr ""
4117
 
4118
+ #: defaults.php:326
4119
  msgid "Permanently deleted the page %PostTitle%."
4120
  msgstr ""
4121
 
4122
+ #: defaults.php:327
4123
  msgid "User moved WordPress page to the trash"
4124
  msgstr ""
4125
 
4126
+ #: defaults.php:327
4127
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
4128
  msgstr ""
4129
 
4130
+ #: defaults.php:328
4131
  msgid "User restored a WordPress page from trash"
4132
  msgstr ""
4133
 
4134
+ #: defaults.php:328
4135
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
4136
  msgstr ""
4137
 
4138
+ #: defaults.php:329
4139
  msgid "User changed page URL"
4140
  msgstr ""
4141
 
4142
+ #: defaults.php:329
4143
  msgid ""
4144
  "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
4145
  "%EditorLinkPage%."
4146
  msgstr ""
4147
 
4148
+ #: defaults.php:330
4149
  msgid "User changed page author"
4150
  msgstr ""
4151
 
4152
+ #: defaults.php:330
4153
  msgid ""
4154
  "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
4155
  "%EditorLinkPage%."
4156
  msgstr ""
4157
 
4158
+ #: defaults.php:331
4159
  msgid "User changed page status"
4160
  msgstr ""
4161
 
4162
+ #: defaults.php:331
4163
  msgid ""
4164
  "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
4165
  "%EditorLinkPage%."
4166
  msgstr ""
4167
 
4168
+ #: defaults.php:332
4169
  msgid "User changed the visibility of a page post"
4170
  msgstr ""
4171
 
4172
+ #: defaults.php:332
4173
  msgid ""
4174
  "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
4175
  "%NewVisibility%. %EditorLinkPage%."
4176
  msgstr ""
4177
 
4178
+ #: defaults.php:333
4179
  msgid "User changed the date of a page post"
4180
  msgstr ""
4181
 
4182
+ #: defaults.php:333
4183
  msgid ""
4184
  "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
4185
  "%EditorLinkPage%."
4186
  msgstr ""
4187
 
4188
+ #: defaults.php:334
4189
  msgid "User created a custom field for a page"
4190
  msgstr ""
4191
 
4192
+ #: defaults.php:334
4193
  msgid ""
4194
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
4195
  "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4196
  msgstr ""
4197
 
4198
+ #: defaults.php:335
4199
  msgid "User updated a custom field value for a page"
4200
  msgstr ""
4201
 
4202
+ #: defaults.php:335
4203
  msgid ""
4204
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
4205
  "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4206
  msgstr ""
4207
 
4208
+ #: defaults.php:336
4209
  msgid "User deleted a custom field from a page"
4210
  msgstr ""
4211
 
4212
+ #: defaults.php:336
4213
  msgid ""
4214
  "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
4215
  "%EditorLinkPage%.<br>%MetaLink%."
4216
  msgstr ""
4217
 
4218
+ #: defaults.php:337
4219
  msgid "User updated a custom field name for a page"
4220
  msgstr ""
4221
 
4222
+ #: defaults.php:337
4223
  msgid ""
4224
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
4225
  "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
4226
  msgstr ""
4227
 
4228
+ #: defaults.php:338
4229
  msgid "User modified content for a published page"
4230
  msgstr ""
4231
 
4232
+ #: defaults.php:338
4233
  msgid ""
4234
  "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
4235
  "%. %RevisionLink% %EditorLinkPage%."
4236
  msgstr ""
4237
 
4238
+ #: defaults.php:339
4239
  msgid "User modified content for a draft page"
4240
  msgstr ""
4241
 
4242
+ #: defaults.php:339
4243
  msgid ""
4244
  "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
4245
  "%."
4246
  msgstr ""
4247
 
4248
+ #: defaults.php:340
4249
  msgid "User scheduled a page"
4250
  msgstr ""
4251
 
4252
+ #: defaults.php:340
4253
  msgid ""
4254
  "Scheduled the page %PostTitle% to be published %PublishingDate%. "
4255
  "%EditorLinkPage%."
4256
  msgstr ""
4257
 
4258
+ #: defaults.php:341
4259
  msgid "User changed title of a page"
4260
  msgstr ""
4261
 
4262
+ #: defaults.php:341
4263
  msgid ""
4264
  "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
4265
  msgstr ""
4266
 
4267
+ #: defaults.php:342
4268
  msgid "User opened a page in the editor"
4269
  msgstr ""
4270
 
4271
+ #: defaults.php:342
4272
  msgid ""
4273
  "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
4274
  msgstr ""
4275
 
4276
+ #: defaults.php:343
4277
  msgid "User viewed a page"
4278
  msgstr ""
4279
 
4280
+ #: defaults.php:343
4281
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
4282
  msgstr ""
4283
 
4284
+ #: defaults.php:344
4285
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
4286
  msgstr ""
4287
 
4288
+ #: defaults.php:344
4289
  msgid ""
4290
  "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
4291
  msgstr ""
4292
 
4293
+ #: defaults.php:345
4294
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
4295
  msgstr ""
4296
 
4297
+ #: defaults.php:345
4298
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
4299
  msgstr ""
4300
 
4301
+ #: defaults.php:346
4302
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
4303
  msgstr ""
4304
 
4305
+ #: defaults.php:346
4306
  msgid ""
4307
  "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
4308
  msgstr ""
4309
 
4310
+ #: defaults.php:347
4311
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
4312
  msgstr ""
4313
 
4314
+ #: defaults.php:347
4315
  msgid ""
4316
  "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
4317
  msgstr ""
4318
 
4319
+ #: defaults.php:348
4320
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
4321
  msgstr ""
4322
 
4323
+ #: defaults.php:348
4324
  msgid ""
4325
  "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4326
  msgstr ""
4327
 
4328
+ #: defaults.php:349
4329
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
4330
  msgstr ""
4331
 
4332
+ #: defaults.php:349
4333
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4334
  msgstr ""
4335
 
4336
+ #: defaults.php:350
4337
  msgid "A plugin created a page"
4338
  msgstr ""
4339
 
4340
+ #: defaults.php:350
4341
  msgid "A plugin automatically created the following page: %PostTitle%."
4342
  msgstr ""
4343
 
4344
+ #: defaults.php:351
4345
  msgid "A plugin deleted a page"
4346
  msgstr ""
4347
 
4348
+ #: defaults.php:351
4349
  msgid "A plugin automatically deleted the following page: %PostTitle%."
4350
  msgstr ""
4351
 
4352
+ #: defaults.php:352
4353
  msgid "A plugin modified a page"
4354
  msgstr ""
4355
 
4356
+ #: defaults.php:352
4357
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
4358
  msgstr ""
4359
 
4360
+ #: defaults.php:359
4361
  msgid "WordPress Install"
4362
  msgstr ""
4363
 
4364
+ #: defaults.php:363
4365
  msgid "Database"
4366
  msgstr ""
4367
 
4368
+ #: defaults.php:364
4369
  msgid "Unknown component created tables"
4370
  msgstr ""
4371
 
4372
+ #: defaults.php:364
4373
  msgid ""
4374
  "An unknown component created these tables in the database: %TableNames%."
4375
  msgstr ""
4376
 
4377
+ #: defaults.php:365
4378
  msgid "Unknown component modified tables structure"
4379
  msgstr ""
4380
 
4381
+ #: defaults.php:365
4382
  msgid ""
4383
  "An unknown component modified the structure of these database tables: "
4384
  "%TableNames%."
4385
  msgstr ""
4386
 
4387
+ #: defaults.php:366
4388
  msgid "Unknown component deleted tables"
4389
  msgstr ""
4390
 
4391
+ #: defaults.php:366
4392
  msgid ""
4393
  "An unknown component deleted the following tables from the database: "
4394
  "%TableNames%."
4395
  msgstr ""
4396
 
4397
+ #: defaults.php:373
4398
  msgid "User installed a plugin"
4399
  msgstr ""
4400
 
4401
+ #: defaults.php:373
4402
  msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
4403
  msgstr ""
4404
 
4405
+ #: defaults.php:374
4406
  msgid "User activated a WordPress plugin"
4407
  msgstr ""
4408
 
4409
+ #: defaults.php:374
4410
  msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
4411
  msgstr ""
4412
 
4413
+ #: defaults.php:375
4414
  msgid "User deactivated a WordPress plugin"
4415
  msgstr ""
4416
 
4417
+ #: defaults.php:375
4418
  msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
4419
  msgstr ""
4420
 
4421
+ #: defaults.php:376
4422
  msgid "User uninstalled a plugin"
4423
  msgstr ""
4424
 
4425
+ #: defaults.php:376
4426
  msgid ""
4427
  "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
4428
  "%."
4429
  msgstr ""
4430
 
4431
+ #: defaults.php:377
4432
  msgid "User upgraded a plugin"
4433
  msgstr ""
4434
 
4435
+ #: defaults.php:377
4436
  msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
4437
  msgstr ""
4438
 
4439
+ #: defaults.php:378
4440
  msgid "Plugin created tables"
4441
  msgstr ""
4442
 
4443
+ #: defaults.php:378
4444
  msgid ""
4445
  "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
4446
  msgstr ""
4447
 
4448
+ #: defaults.php:379
4449
  msgid "Plugin modified tables structure"
4450
  msgstr ""
4451
 
4452
+ #: defaults.php:379
4453
  msgid ""
4454
  "Plugin %Plugin->Name% modified the structure of these database tables: "
4455
  "%TableNames%."
4456
  msgstr ""
4457
 
4458
+ #: defaults.php:380
4459
  msgid "Plugin deleted tables"
4460
  msgstr ""
4461
 
4462
+ #: defaults.php:380
4463
  msgid ""
4464
  "Plugin %Plugin->Name% deleted the following tables from the database: "
4465
  "%TableNames%."
4466
  msgstr ""
4467
 
4468
+ #: defaults.php:381
4469
  msgid "A plugin created a post"
4470
  msgstr ""
4471
 
4472
+ #: defaults.php:381
4473
  msgid ""
4474
  "A plugin automatically created the following %PostType% called %PostTitle%. "
4475
  "View the post: %EditorLinkPost%."
4476
  msgstr ""
4477
 
4478
+ #: defaults.php:382
4479
  msgid "A plugin deleted a post"
4480
  msgstr ""
4481
 
4482
+ #: defaults.php:382
4483
  msgid ""
4484
  "A plugin automatically deleted the following %PostType% called %PostTitle%."
4485
  msgstr ""
4486
 
4487
+ #: defaults.php:383
4488
  msgid "User changed a file using the plugin editor"
4489
  msgstr ""
4490
 
4491
+ #: defaults.php:383
4492
  msgid "Modified %File% with the Plugin Editor."
4493
  msgstr ""
4494
 
4495
+ #: defaults.php:389
4496
  msgid "Themes"
4497
  msgstr ""
4498
 
4499
+ #: defaults.php:390
4500
  msgid "User installed a theme"
4501
  msgstr ""
4502
 
4503
+ #: defaults.php:390
4504
  msgid ""
4505
  "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
4506
  msgstr ""
4507
 
4508
+ #: defaults.php:391
4509
  msgid "User activated a theme"
4510
  msgstr ""
4511
 
4512
+ #: defaults.php:391
4513
  msgid ""
4514
  "Activated the theme \"%Theme->Name%\", installed in %Theme-"
4515
  ">get_template_directory%."
4516
  msgstr ""
4517
 
4518
+ #: defaults.php:392
4519
  msgid "User uninstalled a theme"
4520
  msgstr ""
4521
 
4522
+ #: defaults.php:392
4523
  msgid ""
4524
  "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
4525
  ">get_template_directory%."
4526
  msgstr ""
4527
 
4528
+ #: defaults.php:393
4529
  msgid "Activated theme on network"
4530
  msgstr ""
4531
 
4532
+ #: defaults.php:393
4533
  msgid ""
4534
  "Network activated the theme %Theme->Name% installed in %Theme-"
4535
  ">get_template_directory%."
4536
  msgstr ""
4537
 
4538
+ #: defaults.php:394
4539
  msgid "Deactivated theme from network"
4540
  msgstr ""
4541
 
4542
+ #: defaults.php:394
4543
  msgid ""
4544
  "Network deactivated the theme %Theme->Name% installed in %Theme-"
4545
  ">get_template_directory%."
4546
  msgstr ""
4547
 
4548
+ #: defaults.php:395
4549
  msgid "Theme created tables"
4550
  msgstr ""
4551
 
4552
+ #: defaults.php:395
4553
  msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
4554
  msgstr ""
4555
 
4556
+ #: defaults.php:396
4557
  msgid "Theme modified tables structure"
4558
  msgstr ""
4559
 
4560
+ #: defaults.php:396
4561
  msgid ""
4562
  "Theme %Theme->Name% modified the structure of these database tables: "
4563
  "%TableNames%."
4564
  msgstr ""
4565
 
4566
+ #: defaults.php:397
4567
  msgid "Theme deleted tables"
4568
  msgstr ""
4569
 
4570
+ #: defaults.php:397
4571
  msgid ""
4572
  "Theme %Theme->Name% deleted the following tables from the database: "
4573
  "%TableNames%."
4574
  msgstr ""
4575
 
4576
+ #: defaults.php:398
4577
  msgid "User updated a theme"
4578
  msgstr ""
4579
 
4580
+ #: defaults.php:398
4581
  msgid ""
4582
  "Updated the theme \"%Theme->Name%\" installed in %Theme-"
4583
  ">get_template_directory%."
4584
  msgstr ""
4585
 
4586
+ #: defaults.php:399
4587
  msgid "User changed a file using the theme editor"
4588
  msgstr ""
4589
 
4590
+ #: defaults.php:399
4591
  msgid "Modified %File% with the Theme Editor."
4592
  msgstr ""
4593
 
4594
+ #: defaults.php:406
4595
  msgid "Unknown Error"
4596
  msgstr ""
4597
 
4598
+ #: defaults.php:406
4599
  msgid "An unexpected error has occurred ."
4600
  msgstr ""
4601
 
4602
+ #: defaults.php:407
4603
  msgid "PHP error"
4604
  msgstr ""
4605
 
4606
+ #: defaults.php:407 defaults.php:408 defaults.php:409 defaults.php:410
4607
+ #: defaults.php:411
4608
  msgid "%Message%."
4609
  msgstr ""
4610
 
4611
+ #: defaults.php:408
4612
  msgid "PHP warning"
4613
  msgstr ""
4614
 
4615
+ #: defaults.php:409
4616
  msgid "PHP notice"
4617
  msgstr ""
4618
 
4619
+ #: defaults.php:410
4620
  msgid "PHP exception"
4621
  msgstr ""
4622
 
4623
+ #: defaults.php:411
4624
  msgid "PHP shutdown error"
4625
  msgstr ""
4626
 
4627
+ #: defaults.php:412
4628
  msgid "Events automatically pruned by system"
4629
  msgstr ""
4630
 
4631
+ #: defaults.php:412
4632
  msgid "System automatically deleted %EventCount% event(s)."
4633
  msgstr ""
4634
 
4635
+ #: defaults.php:413
4636
  msgid "WordPress was updated"
4637
  msgstr ""
4638
 
4639
+ #: defaults.php:413
4640
  msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
4641
  msgstr ""
4642
 
4643
+ #: defaults.php:414
4644
  msgid "Reset plugin's settings to default"
4645
  msgstr ""
4646
 
4647
+ #: defaults.php:414
4648
  msgid "Reset plugin's settings to default."
4649
  msgstr ""
4650
 
4651
+ #: defaults.php:415
4652
  msgid "Purged the activity log"
4653
  msgstr ""
4654
 
4655
+ #: defaults.php:415
4656
  msgid "Purged the activity log."
4657
  msgstr ""
4658
 
4659
+ #: defaults.php:416
4660
  msgid "File content has been modified"
4661
  msgstr ""
4662
 
4663
+ #: defaults.php:416
4664
  msgid "The content of the file %FileLocation% has been modified."
4665
  msgstr ""
4666
 
4667
+ #: defaults.php:417
4668
  msgid "File added to the site"
4669
  msgstr ""
4670
 
4671
+ #: defaults.php:417
4672
  msgid "The file %FileLocation% has been added to your website."
4673
  msgstr ""
4674
 
4675
+ #: defaults.php:418
4676
  msgid "File deleted from the site"
4677
  msgstr ""
4678
 
4679
+ #: defaults.php:418
4680
  msgid "The file %FileLocation% has been deleted from your website."
4681
  msgstr ""
4682
 
4683
+ #: defaults.php:419
4684
  msgid "File not scanned because it is bigger than the maximum file size limit"
4685
  msgstr ""
4686
 
4687
+ #: defaults.php:419
4688
  msgid ""
4689
  "The file %FileLocation% was not scanned because it is bigger than the "
4690
  "maximum file size limit. If you want to include these files in the scan "
4691
  "increase the file size limit from the %FileSettings%."
4692
  msgstr ""
4693
 
4694
+ #: defaults.php:420
4695
  msgid "File integrity scan stopped due to the limit of 1 million files"
4696
  msgstr ""
4697
 
4698
+ #: defaults.php:420
4699
  msgid ""
4700
  "The file changes scanning engine has reached the limit of 1 million files "
4701
  "and stopped the scan. Please %ContactSupport% for more information."
4702
  msgstr ""
4703
 
4704
+ #: defaults.php:421
4705
  msgid "File integrity scan started/stopped"
4706
  msgstr ""
4707
 
4708
+ #: defaults.php:421
4709
  msgid "The file integrity scanner has %ScanStatus%."
4710
  msgstr ""
4711
 
4712
+ #: defaults.php:422
4713
  msgid "Advertising Add-ons"
4714
  msgstr ""
4715
 
4716
+ #: defaults.php:422
4717
  msgid "%PromoName% %PromoMessage%"
4718
  msgstr ""
4719
 
4720
+ #: defaults.php:428
4721
  msgid "Menus"
4722
  msgstr ""
4723
 
4724
+ #: defaults.php:429
4725
  msgid "User created new menu"
4726
  msgstr ""
4727
 
4728
+ #: defaults.php:429
4729
  msgid "Created a new menu called %MenuName%."
4730
  msgstr ""
4731
 
4732
+ #: defaults.php:430
4733
  msgid "User added content to a menu"
4734
  msgstr ""
4735
 
4736
+ #: defaults.php:430
4737
  msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
4738
  msgstr ""
4739
 
4740
+ #: defaults.php:431
4741
  msgid "User removed content from a menu"
4742
  msgstr ""
4743
 
4744
+ #: defaults.php:431
4745
  msgid ""
4746
  "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
4747
  msgstr ""
4748
 
4749
+ #: defaults.php:432
4750
  msgid "User deleted menu"
4751
  msgstr ""
4752
 
4753
+ #: defaults.php:432
4754
  msgid "Deleted the menu %MenuName%."
4755
  msgstr ""
4756
 
4757
+ #: defaults.php:433
4758
  msgid "User changed menu setting"
4759
  msgstr ""
4760
 
4761
+ #: defaults.php:433
4762
  msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
4763
  msgstr ""
4764
 
4765
+ #: defaults.php:434
4766
  msgid "User modified content in a menu"
4767
  msgstr ""
4768
 
4769
+ #: defaults.php:434
4770
  msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
4771
  msgstr ""
4772
 
4773
+ #: defaults.php:435
4774
  msgid "User changed name of a menu"
4775
  msgstr ""
4776
 
4777
+ #: defaults.php:435
4778
  msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
4779
  msgstr ""
4780
 
4781
+ #: defaults.php:436
4782
  msgid "User changed order of the objects in a menu"
4783
  msgstr ""
4784
 
4785
+ #: defaults.php:436
4786
  msgid "Changed the order of the %ItemName% in menu %MenuName%."
4787
  msgstr ""
4788
 
4789
+ #: defaults.php:437
4790
  msgid "User moved objects as a sub-item"
4791
  msgstr ""
4792
 
4793
+ #: defaults.php:437
4794
  msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
4795
  msgstr ""
4796
 
4797
+ #: defaults.php:443
4798
  msgid "Widgets"
4799
  msgstr ""
4800
 
4801
+ #: defaults.php:444
4802
  msgid "User added a new widget"
4803
  msgstr ""
4804
 
4805
+ #: defaults.php:444
4806
  msgid "Added a new %WidgetName% widget in %Sidebar%."
4807
  msgstr ""
4808
 
4809
+ #: defaults.php:445
4810
  msgid "User modified a widget"
4811
  msgstr ""
4812
 
4813
+ #: defaults.php:445
4814
  msgid "Modified the %WidgetName% widget in %Sidebar%."
4815
  msgstr ""
4816
 
4817
+ #: defaults.php:446
4818
  msgid "User deleted widget"
4819
  msgstr ""
4820
 
4821
+ #: defaults.php:446
4822
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
4823
  msgstr ""
4824
 
4825
+ #: defaults.php:447
4826
  msgid "User moved widget"
4827
  msgstr ""
4828
 
4829
+ #: defaults.php:447
4830
  msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
4831
  msgstr ""
4832
 
4833
+ #: defaults.php:448
4834
  msgid "User changed widget position"
4835
  msgstr ""
4836
 
4837
+ #: defaults.php:448
4838
  msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
4839
  msgstr ""
4840
 
4841
+ #: defaults.php:454
4842
  msgid "WordPress Settings"
4843
  msgstr ""
4844
 
4845
+ #: defaults.php:455
4846
  msgid "Option Anyone Can Register in WordPress settings changed"
4847
  msgstr ""
4848
 
4849
+ #: defaults.php:455
4850
  msgid "%NewValue% the option \"Anyone can register\"."
4851
  msgstr ""
4852
 
4853
+ #: defaults.php:456
4854
  msgid "New User Default Role changed"
4855
  msgstr ""
4856
 
4857
+ #: defaults.php:456
4858
  msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
4859
  msgstr ""
4860
 
4861
+ #: defaults.php:457
4862
  msgid "WordPress Administrator Notification email changed"
4863
  msgstr ""
4864
 
4865
+ #: defaults.php:457
4866
  msgid ""
4867
  "Changed the WordPress administrator notifications email address from "
4868
  "%OldEmail% to %NewEmail%."
4869
  msgstr ""
4870
 
4871
+ #: defaults.php:458
4872
  msgid "User changes the WordPress Permalinks"
4873
  msgstr ""
4874
 
4875
+ #: defaults.php:458
4876
  msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
4877
  msgstr ""
4878
 
4879
+ #: defaults.php:459
4880
  msgid ""
4881
  "Enabled/Disabled the option Discourage search engines from indexing this site"
4882
  msgstr ""
4883
 
4884
+ #: defaults.php:459
4885
  msgid "%Status% the option Discourage search engines from indexing this site."
4886
  msgstr ""
4887
 
4888
+ #: defaults.php:460
4889
  msgid "Enabled/Disabled comments on all the website"
4890
  msgstr ""
4891
 
4892
+ #: defaults.php:460
4893
  msgid "%Status% comments on all the website."
4894
  msgstr ""
4895
 
4896
+ #: defaults.php:461
4897
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
4898
  msgstr ""
4899
 
4900
+ #: defaults.php:461
4901
  msgid "%Status% the option Comment author must fill out name and email."
4902
  msgstr ""
4903
 
4904
+ #: defaults.php:462
4905
  msgid ""
4906
  "Enabled/Disabled the option Users must be logged in and registered to comment"
4907
  msgstr ""
4908
 
4909
+ #: defaults.php:462
4910
  msgid "%Status% the option Users must be logged in and registered to comment."
4911
  msgstr ""
4912
 
4913
+ #: defaults.php:463
4914
  msgid "Enabled/Disabled the option to automatically close comments"
4915
  msgstr ""
4916
 
4917
+ #: defaults.php:463
4918
  msgid "%Status% the option to automatically close comments after %Value% days."
4919
  msgstr ""
4920
 
4921
+ #: defaults.php:464
4922
  msgid "Changed the value of the option Automatically close comments"
4923
  msgstr ""
4924
 
4925
+ #: defaults.php:464
4926
  msgid ""
4927
  "Changed the value of the option Automatically close comments from %OldValue% "
4928
  "to %NewValue% days."
4929
  msgstr ""
4930
 
4931
+ #: defaults.php:465
4932
  msgid "Enabled/Disabled the option for comments to be manually approved"
4933
  msgstr ""
4934
 
4935
+ #: defaults.php:465
4936
  msgid "%Status% the option for comments to be manually approved."
4937
  msgstr ""
4938
 
4939
+ #: defaults.php:466
4940
  msgid ""
4941
  "Enabled/Disabled the option for an author to have previously approved "
4942
  "comments for the comments to appear"
4943
  msgstr ""
4944
 
4945
+ #: defaults.php:466
4946
  msgid ""
4947
  "%Status% the option for an author to have previously approved comments for "
4948
  "the comments to appear."
4949
  msgstr ""
4950
 
4951
+ #: defaults.php:467
4952
  msgid ""
4953
  "Changed the number of links that a comment must have to be held in the queue"
4954
  msgstr ""
4955
 
4956
+ #: defaults.php:467
4957
  msgid ""
4958
  "Changed the number of links from %OldValue% to %NewValue% that a comment "
4959
  "must have to be held in the queue."
4960
  msgstr ""
4961
 
4962
+ #: defaults.php:468
4963
  msgid "Modified the list of keywords for comments moderation"
4964
  msgstr ""
4965
 
4966
+ #: defaults.php:468
4967
  msgid "Modified the list of keywords for comments moderation."
4968
  msgstr ""
4969
 
4970
+ #: defaults.php:469
4971
  msgid "Modified the list of keywords for comments blacklisting"
4972
  msgstr ""
4973
 
4974
+ #: defaults.php:469
4975
  msgid "Modified the list of keywords for comments blacklisting."
4976
  msgstr ""
4977
 
4978
+ #: defaults.php:470
4979
  msgid "Option WordPress Address (URL) in WordPress settings changed"
4980
  msgstr ""
4981
 
4982
+ #: defaults.php:470
4983
  msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
4984
  msgstr ""
4985
 
4986
+ #: defaults.php:471
4987
  msgid "Option Site Address (URL) in WordPress settings changed"
4988
  msgstr ""
4989
 
4990
+ #: defaults.php:471
4991
  msgid "Changed the site address (URL) from %old_url% to %new_url%."
4992
  msgstr ""
4993
 
4994
+ #: defaults.php:478
4995
  msgid "Multisite Network"
4996
  msgstr ""
4997
 
4998
+ #: defaults.php:483
4999
  msgid "User granted Super Admin privileges"
5000
  msgstr ""
5001
 
5002
+ #: defaults.php:483
5003
  msgid "Granted Super Admin privileges to %TargetUsername%."
5004
  msgstr ""
5005
 
5006
+ #: defaults.php:484
5007
  msgid "User revoked from Super Admin privileges"
5008
  msgstr ""
5009
 
5010
+ #: defaults.php:484
5011
  msgid "Revoked Super Admin privileges from %TargetUsername%."
5012
  msgstr ""
5013
 
5014
+ #: defaults.php:485
5015
  msgid "Existing user added to a site"
5016
  msgstr ""
5017
 
5018
+ #: defaults.php:485
5019
  msgid ""
5020
  "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
5021
  "%SiteName%."
5022
  msgstr ""
5023
 
5024
+ #: defaults.php:486
5025
  msgid "User removed from site"
5026
  msgstr ""
5027
 
5028
+ #: defaults.php:486
5029
  msgid ""
5030
  "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
5031
  "site."
5032
  msgstr ""
5033
 
5034
+ #: defaults.php:487
5035
  msgid "New network user created"
5036
  msgstr ""
5037
 
5038
+ #: defaults.php:487
5039
  msgid "Created a new network user %NewUserData->Username%."
5040
  msgstr ""
5041
 
5042
+ #: defaults.php:488
5043
  msgid "New site added on the network"
5044
  msgstr ""
5045
 
5046
+ #: defaults.php:488
5047
  msgid "Added the site %SiteName% to the network."
5048
  msgstr ""
5049
 
5050
+ #: defaults.php:489
5051
  msgid "Existing site archived"
5052
  msgstr ""
5053
 
5054
+ #: defaults.php:489
5055
  msgid "Archived the site %SiteName%."
5056
  msgstr ""
5057
 
5058
+ #: defaults.php:490
5059
  msgid "Archived site has been unarchived"
5060
  msgstr ""
5061
 
5062
+ #: defaults.php:490
5063
  msgid "Unarchived the site %SiteName%."
5064
  msgstr ""
5065
 
5066
+ #: defaults.php:491
5067
  msgid "Deactivated site has been activated"
5068
  msgstr ""
5069
 
5070
+ #: defaults.php:491
5071
  msgid "Activated the site %SiteName%."
5072
  msgstr ""
5073
 
5074
+ #: defaults.php:492
5075
  msgid "Site has been deactivated"
5076
  msgstr ""
5077
 
5078
+ #: defaults.php:492
5079
  msgid "Deactivated the site %SiteName%."
5080
  msgstr ""
5081
 
5082
+ #: defaults.php:493
5083
  msgid "Existing site deleted from network"
5084
  msgstr ""
5085
 
5086
+ #: defaults.php:493
5087
  msgid "Deleted the site %SiteName%."
5088
  msgstr ""
5089
 
5090
+ #: defaults.php:505
5091
  msgid "User created new forum"
5092
  msgstr ""
5093
 
5094
+ #: defaults.php:505
5095
  msgid ""
5096
  "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
5097
  msgstr ""
5098
 
5099
+ #: defaults.php:506
5100
  msgid "User changed status of a forum"
5101
  msgstr ""
5102
 
5103
+ #: defaults.php:506
5104
  msgid ""
5105
  "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
5106
  "%EditorLinkForum%."
5107
  msgstr ""
5108
 
5109
+ #: defaults.php:507
5110
  msgid "User changed visibility of a forum"
5111
  msgstr ""
5112
 
5113
+ #: defaults.php:507
5114
  msgid ""
5115
  "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
5116
  "%NewVisibility%. %EditorLinkForum%."
5117
  msgstr ""
5118
 
5119
+ #: defaults.php:508
5120
  msgid "User changed the URL of a forum"
5121
  msgstr ""
5122
 
5123
+ #: defaults.php:508
5124
  msgid ""
5125
  "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
5126
  "%EditorLinkForum%."
5127
  msgstr ""
5128
 
5129
+ #: defaults.php:509
5130
  msgid "User changed order of a forum"
5131
  msgstr ""
5132
 
5133
+ #: defaults.php:509
5134
  msgid ""
5135
  "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
5136
  "%EditorLinkForum%."
5137
  msgstr ""
5138
 
5139
+ #: defaults.php:510
5140
  msgid "User moved forum to trash"
5141
  msgstr ""
5142
 
5143
+ #: defaults.php:510
5144
  msgid "Moved the forum %ForumName% to trash."
5145
  msgstr ""
5146
 
5147
+ #: defaults.php:511
5148
  msgid "User permanently deleted forum"
5149
  msgstr ""
5150
 
5151
+ #: defaults.php:511
5152
  msgid "Permanently deleted the forum %ForumName%."
5153
  msgstr ""
5154
 
5155
+ #: defaults.php:512
5156
  msgid "User restored forum from trash"
5157
  msgstr ""
5158
 
5159
+ #: defaults.php:512
5160
  msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
5161
  msgstr ""
5162
 
5163
+ #: defaults.php:513
5164
  msgid "User changed the parent of a forum"
5165
  msgstr ""
5166
 
5167
+ #: defaults.php:513
5168
  msgid ""
5169
  "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
5170
  "%EditorLinkForum%."
5171
  msgstr ""
5172
 
5173
+ #: defaults.php:514
5174
  msgid "User changed type of a forum"
5175
  msgstr ""
5176
 
5177
+ #: defaults.php:514
5178
  msgid ""
5179
  "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
5180
  "%EditorLinkForum%."
5181
  msgstr ""
5182
 
5183
+ #: defaults.php:515
5184
  msgid "User changed forum's role"
5185
  msgstr ""
5186
 
5187
+ #: defaults.php:515
5188
  msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
5189
  msgstr ""
5190
 
5191
+ #: defaults.php:516
5192
  msgid "User changed option of a forum"
5193
  msgstr ""
5194
 
5195
+ #: defaults.php:516
5196
  msgid "%Status% the option for anonymous posting on forum."
5197
  msgstr ""
5198
 
5199
+ #: defaults.php:517
5200
  msgid "User changed time to disallow post editing"
5201
  msgstr ""
5202
 
5203
+ #: defaults.php:517
5204
  msgid ""
5205
  "Changed the time to disallow post editing from %OldTime% to %NewTime% "
5206
  "minutes in the forums."
5207
  msgstr ""
5208
 
5209
+ #: defaults.php:518
5210
  msgid "User changed the forum setting posting throttle time"
5211
  msgstr ""
5212
 
5213
+ #: defaults.php:518
5214
  msgid ""
5215
  "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
5216
  "forums."
5217
  msgstr ""
5218
 
5219
+ #: defaults.php:519
5220
  msgid "User created new topic"
5221
  msgstr ""
5222
 
5223
+ #: defaults.php:519
5224
  msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
5225
  msgstr ""
5226
 
5227
+ #: defaults.php:520
5228
  msgid "User changed status of a topic"
5229
  msgstr ""
5230
 
5231
+ #: defaults.php:520
5232
  msgid ""
5233
  "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
5234
  "%EditorLinkTopic%."
5235
  msgstr ""
5236
 
5237
+ #: defaults.php:521
5238
  msgid "User changed type of a topic"
5239
  msgstr ""
5240
 
5241
+ #: defaults.php:521
5242
  msgid ""
5243
  "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
5244
  "%EditorLinkTopic%."
5245
  msgstr ""
5246
 
5247
+ #: defaults.php:522
5248
  msgid "User changed URL of a topic"
5249
  msgstr ""
5250
 
5251
+ #: defaults.php:522
5252
  msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
5253
  msgstr ""
5254
 
5255
+ #: defaults.php:523
5256
  msgid "User changed the forum of a topic"
5257
  msgstr ""
5258
 
5259
+ #: defaults.php:523
5260
  msgid ""
5261
  "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
5262
  "%EditorLinkTopic%."
5263
  msgstr ""
5264
 
5265
+ #: defaults.php:524
5266
  msgid "User moved topic to trash"
5267
  msgstr ""
5268
 
5269
+ #: defaults.php:524
5270
  msgid "Moved the topic %TopicName% to trash."
5271
  msgstr ""
5272
 
5273
+ #: defaults.php:525
5274
  msgid "User permanently deleted topic"
5275
  msgstr ""
5276
 
5277
+ #: defaults.php:525
5278
  msgid "Permanently deleted the topic %TopicName%."
5279
  msgstr ""
5280
 
5281
+ #: defaults.php:526
5282
  msgid "User restored topic from trash"
5283
  msgstr ""
5284
 
5285
+ #: defaults.php:526
5286
  msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
5287
  msgstr ""
5288
 
5289
+ #: defaults.php:527
5290
  msgid "User changed visibility of a topic"
5291
  msgstr ""
5292
 
5293
+ #: defaults.php:527
5294
  msgid ""
5295
  "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
5296
  "%NewVisibility%. %EditorLinkTopic%."
5297
  msgstr ""
5298
 
5299
+ #: defaults.php:528
5300
  msgid "The forum role of a user was changed by another WordPress user"
5301
  msgstr ""
5302
 
5303
+ #: defaults.php:528
5304
  msgid ""
5305
  "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
5306
  "% by %UserChanger%."
5307
  msgstr ""
5308
 
5309
+ #: defaults.php:535
5310
  msgid "User created a new product"
5311
  msgstr ""
5312
 
5313
+ #: defaults.php:535
5314
  msgid ""
5315
  "Created a new product called %ProductTitle% and saved it as draft. View the "
5316
  "product: %EditorLinkProduct%."
5317
  msgstr ""
5318
 
5319
+ #: defaults.php:536
5320
  msgid "User published a product"
5321
  msgstr ""
5322
 
5323
+ #: defaults.php:536
5324
  msgid ""
5325
  "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
5326
  "the product: %EditorLinkProduct%."
5327
  msgstr ""
5328
 
5329
+ #: defaults.php:537
5330
  msgid "User changed the category of a product"
5331
  msgstr ""
5332
 
5333
+ #: defaults.php:537
5334
  msgid ""
5335
  "Changed the category of the %ProductStatus% product %ProductTitle% from "
5336
  "%OldCategories% to %NewCategories%. View the product: %EditorLinkProduct%."
5337
  msgstr ""
5338
 
5339
+ #: defaults.php:538
5340
  msgid "User modified the short description of a product"
5341
  msgstr ""
5342
 
5343
+ #: defaults.php:538
5344
  msgid ""
5345
  "Modified the short description of the %ProductStatus% product %ProductTitle%."
5346
  "%ChangeText% View the product: %EditorLinkProduct%."
5347
  msgstr ""
5348
 
5349
+ #: defaults.php:539
5350
  msgid "User modified the text of a product"
5351
  msgstr ""
5352
 
5353
+ #: defaults.php:539
5354
  msgid ""
5355
  "Modified the text of the %ProductStatus% product %ProductTitle%. View the "
5356
  "product: %EditorLinkProduct%."
5357
  msgstr ""
5358
 
5359
+ #: defaults.php:540
5360
  msgid "User changed the URL of a product"
5361
  msgstr ""
5362
 
5363
+ #: defaults.php:540
5364
  msgid ""
5365
  "Changed the URL of the %ProductStatus% product %ProductTitle%%ReportText%."
5366
  "%ChangeText% View the product: %EditorLinkProduct%."
5367
  msgstr ""
5368
 
5369
+ #: defaults.php:541
5370
  msgid "User changed the date of a product"
5371
  msgstr ""
5372
 
5373
+ #: defaults.php:541
5374
  msgid ""
5375
  "Changed the date of the %ProductStatus% product %ProductTitle% from %OldDate"
5376
  "% to %NewDate%. View the product: %EditorLinkProduct%."
5377
  msgstr ""
5378
 
5379
+ #: defaults.php:542
5380
  msgid "User changed the visibility of a product"
5381
  msgstr ""
5382
 
5383
+ #: defaults.php:542
5384
  msgid ""
5385
  "Changed the visibility of the %ProductStatus% product %ProductTitle% from "
5386
  "%OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct%."
5387
  msgstr ""
5388
 
5389
+ #: defaults.php:543
5390
  msgid "User modified the product"
5391
  msgstr ""
5392
 
5393
+ #: defaults.php:543
5394
  msgid ""
5395
  "Modified the %ProductStatus% product %ProductTitle%. Product URL is "
5396
  "%ProductUrl%. View the product: %EditorLinkProduct%."
5397
  msgstr ""
5398
 
5399
+ #: defaults.php:544
5400
  msgid "User modified the draft product"
5401
  msgstr ""
5402
 
5403
+ #: defaults.php:544
5404
  msgid ""
5405
  "Modified the draft product %ProductTitle%. View the product: "
5406
  "%EditorLinkProduct%."
5407
  msgstr ""
5408
 
5409
+ #: defaults.php:545
5410
  msgid "User moved a product to trash"
5411
  msgstr ""
5412
 
5413
+ #: defaults.php:545
5414
  msgid ""
5415
  "Moved the %ProductStatus% product %ProductTitle% to trash. Product URL was "
5416
  "%ProductUrl%."
5417
  msgstr ""
5418
 
5419
+ #: defaults.php:546
5420
  msgid "User permanently deleted a product"
5421
  msgstr ""
5422
 
5423
+ #: defaults.php:546
5424
  msgid "Permanently deleted the product %ProductTitle%."
5425
  msgstr ""
5426
 
5427
+ #: defaults.php:547
5428
  msgid "User restored a product from the trash"
5429
  msgstr ""
5430
 
5431
+ #: defaults.php:547
5432
  msgid ""
5433
  "Product %ProductTitle% has been restored from trash. View product: "
5434
  "%EditorLinkProduct%."
5435
  msgstr ""
5436
 
5437
+ #: defaults.php:548
5438
  msgid "User changed status of a product"
5439
  msgstr ""
5440
 
5441
+ #: defaults.php:548
5442
  msgid ""
5443
  "Changed the status of the product %ProductTitle% from %OldStatus% to "
5444
  "%NewStatus%. View the product: %EditorLinkProduct%."
5445
  msgstr ""
5446
 
5447
+ #: defaults.php:549
5448
  msgid "User opened a product in the editor"
5449
  msgstr ""
5450
 
5451
+ #: defaults.php:549
5452
  msgid ""
5453
  "Opened the %ProductStatus% product page %ProductTitle% in editor. View the "
5454
  "product: %EditorLinkProduct%."
5455
  msgstr ""
5456
 
5457
+ #: defaults.php:550
5458
  msgid "User viewed a product"
5459
  msgstr ""
5460
 
5461
+ #: defaults.php:550
5462
  msgid ""
5463
  "Viewed the %ProductStatus% product page %ProductTitle%. View the product: "
5464
  "%EditorLinkProduct%."
5465
  msgstr ""
5466
 
5467
+ #: defaults.php:551
5468
  msgid "User renamed a product"
5469
  msgstr ""
5470
 
5471
+ #: defaults.php:551
5472
  msgid ""
5473
  "Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the "
5474
  "product: %EditorLinkProduct%."
5475
  msgstr ""
5476
 
5477
+ #: defaults.php:552
5478
  msgid "User changed the Product Data of a product"
5479
  msgstr ""
5480
 
5481
+ #: defaults.php:552
5482
  msgid ""
5483
  "Changed the Product Type of the %ProductStatus% product %ProductTitle% from "
5484
  "%OldType% to %NewType%. View the product: %EditorLinkProduct%."
5485
  msgstr ""
5486
 
5487
+ #: defaults.php:553
5488
  msgid "User changed type of a price"
5489
  msgstr ""
5490
 
5491
+ #: defaults.php:553
5492
  msgid ""
5493
  "Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from "
5494
  "%OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%."
5495
  msgstr ""
5496
 
5497
+ #: defaults.php:554
5498
  msgid "User changed the SKU of a product"
5499
  msgstr ""
5500
 
5501
+ #: defaults.php:554
5502
  msgid ""
5503
  "Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% "
5504
  "to %NewSku%. View the product: %EditorLinkProduct%."
5505
  msgstr ""
5506
 
5507
+ #: defaults.php:555
5508
  msgid "User changed the stock status of a product"
5509
  msgstr ""
5510
 
5511
+ #: defaults.php:555
5512
  msgid ""
5513
  "Changed the stock status of the %ProductStatus% product %ProductTitle% from "
5514
  "%OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%."
5515
  msgstr ""
5516
 
5517
+ #: defaults.php:556
5518
  msgid "User changed the stock quantity"
5519
  msgstr ""
5520
 
5521
+ #: defaults.php:556
5522
  msgid ""
5523
  "Changed the stock quantity of the %ProductStatus% product %ProductTitle% "
5524
  "from %OldValue% to %NewValue%. View the product: %EditorLinkProduct%"
5525
  msgstr ""
5526
 
5527
+ #: defaults.php:557
5528
  msgid "User set a product type"
5529
  msgstr ""
5530
 
5531
+ #: defaults.php:557
5532
  msgid ""
5533
  "Changed the type of the %ProductStatus% simple product %ProductTitle% from "
5534
  "%OldType% to %NewType%. View the product: %EditorLinkProduct%."
5535
  msgstr ""
5536
 
5537
+ #: defaults.php:558
5538
  msgid "User changed the weight of a product"
5539
  msgstr ""
5540
 
5541
+ #: defaults.php:558
5542
  msgid ""
5543
  "Changed the weight of the %ProductStatus% product %ProductTitle% from "
5544
  "%OldWeight% to %NewWeight%. View the product: %EditorLinkProduct%."
5545
  msgstr ""
5546
 
5547
+ #: defaults.php:559
5548
  msgid "User changed the dimensions of a product"
5549
  msgstr ""
5550
 
5551
+ #: defaults.php:559
5552
  msgid ""
5553
  "Changed the %DimensionType% dimensions of the %ProductStatus% product "
5554
  "%ProductTitle% from %OldDimension% to %NewDimension%. View the product: "
5555
  "%EditorLinkProduct%."
5556
  msgstr ""
5557
 
5558
+ #: defaults.php:560
5559
  msgid "User added the Downloadable File to a product"
5560
  msgstr ""
5561
 
5562
+ #: defaults.php:560
5563
  msgid ""
5564
  "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
5565
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5566
  "%."
5567
  msgstr ""
5568
 
5569
+ #: defaults.php:561
5570
  msgid "User Removed the Downloadable File from a product"
5571
  msgstr ""
5572
 
5573
+ #: defaults.php:561
5574
  msgid ""
5575
  "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
5576
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5577
  "%."
5578
  msgstr ""
5579
 
5580
+ #: defaults.php:562
5581
  msgid "User changed the name of a Downloadable File in a product"
5582
  msgstr ""
5583
 
5584
+ #: defaults.php:562
5585
  msgid ""
5586
  "Changed the name of a Downloadable File from %OldName% to %NewName% in "
5587
  "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5588
  "%."
5589
  msgstr ""
5590
 
5591
+ #: defaults.php:563
5592
  msgid "User changed the URL of the Downloadable File in a product"
5593
  msgstr ""
5594
 
5595
+ #: defaults.php:563
5596
  msgid ""
5597
  "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
5598
  "% in %ProductStatus% product %ProductTitle%. View the product: "
5599
  "%EditorLinkProduct%."
5600
  msgstr ""
5601
 
5602
+ #: defaults.php:564
5603
  msgid "User changed the catalog visibility of a product"
5604
  msgstr ""
5605
 
5606
+ #: defaults.php:564
5607
  msgid ""
5608
  "Changed the catalog visibility of the %ProductStatus% product %ProductTitle% "
5609
  "from %OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct"
5610
  "%."
5611
  msgstr ""
5612
 
5613
+ #: defaults.php:565
5614
  msgid "User changed the setting Featured Product of a product"
5615
  msgstr ""
5616
 
5617
+ #: defaults.php:565
5618
  msgid ""
5619
  "%Status% the setting Featured Product in the %ProductStatus% product "
5620
  "%ProductTitle%. View the product: %EditorLinkProduct%."
5621
  msgstr ""
5622
 
5623
+ #: defaults.php:566
5624
  msgid "User changed the Allow Backorders setting of a product"
5625
  msgstr ""
5626
 
5627
+ #: defaults.php:566
5628
  msgid ""
5629
  "Changed the Allow Backorders setting of the %ProductStatus% product "
5630
  "%ProductTitle% from %OldStatus% to %NewStatus%. View the product: "
5631
  "%EditorLinkProduct%."
5632
  msgstr ""
5633
 
5634
+ #: defaults.php:567
5635
  msgid "User added/removed products to upsell of a product"
5636
  msgstr ""
5637
 
5638
+ #: defaults.php:567
5639
  msgid ""
5640
  "%Status% the product %UpsellTitle% to Upsells in the %ProductStatus% product "
5641
  "%ProductTitle%. View the product: %EditorLinkProduct%."
5642
  msgstr ""
5643
 
5644
+ #: defaults.php:568
5645
  msgid "User added/removed products to cross-sells of a product"
5646
  msgstr ""
5647
 
5648
+ #: defaults.php:568
5649
  msgid ""
5650
  "%Status% the product %CrossSellTitle% to Cross-sells in the %ProductStatus% "
5651
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5652
  msgstr ""
5653
 
5654
+ #: defaults.php:569
5655
  msgid "Added a new attribute of a product"
5656
  msgstr ""
5657
 
5658
+ #: defaults.php:569
5659
  msgid ""
5660
  "Added a new attribute called %AttributeName% with value %AttributeValue% in "
5661
  "the %ProductStatus% product %ProductTitle%. View the product: "
5662
  "%EditorLinkProduct%."
5663
  msgstr ""
5664
 
5665
+ #: defaults.php:570
5666
  msgid "Modified the value of an attribute of a product"
5667
  msgstr ""
5668
 
5669
+ #: defaults.php:570
5670
  msgid ""
5671
  "Modified the value of the attribute %AttributeName% from %OldValue% to "
5672
  "%NewValue% in the %ProductStatus% product %ProductTitle%. View the product: "
5673
  "%EditorLinkProduct%."
5674
  msgstr ""
5675
 
5676
+ #: defaults.php:571
5677
  msgid "Changed the name of an attribute of a product"
5678
  msgstr ""
5679
 
5680
+ #: defaults.php:571
5681
  msgid ""
5682
  "Changed the attribute's name from %OldValue% to %NewValue% in the "
5683
  "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5684
  "product: %EditorLinkProduct%."
5685
  msgstr ""
5686
 
5687
+ #: defaults.php:572
5688
  msgid "Deleted an attribute of a product"
5689
  msgstr ""
5690
 
5691
+ #: defaults.php:572
5692
  msgid ""
5693
  "Deleted the attribute %AttributeName% with value %AttributeValue% from "
5694
  "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5695
  "product: %EditorLinkProduct%."
5696
  msgstr ""
5697
 
5698
+ #: defaults.php:573
5699
  msgid "Set the attribute visibility of a product"
5700
  msgstr ""
5701
 
5702
+ #: defaults.php:573
5703
  msgid ""
5704
  "Set the attribute %AttributeName% as %AttributeVisiblilty% on product page "
5705
  "in %ProductStatus% product %ProductTitle%. View the product: "
5706
  "%EditorLinkProduct%."
5707
  msgstr ""
5708
 
5709
+ #: defaults.php:580
5710
  msgid "User changed the Weight Unit"
5711
  msgstr ""
5712
 
5713
+ #: defaults.php:580
5714
  msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
5715
  msgstr ""
5716
 
5717
+ #: defaults.php:581
5718
  msgid "User changed the Dimensions Unit"
5719
  msgstr ""
5720
 
5721
+ #: defaults.php:581
5722
  msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
5723
  msgstr ""
5724
 
5725
+ #: defaults.php:582
5726
  msgid "User changed the Base Location"
5727
  msgstr ""
5728
 
5729
+ #: defaults.php:582
5730
  msgid ""
5731
  "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
5732
  msgstr ""
5733
 
5734
+ #: defaults.php:583
5735
  msgid "User Enabled/Disabled taxes"
5736
  msgstr ""
5737
 
5738
+ #: defaults.php:583
5739
  msgid "%Status% taxes in the WooCommerce store."
5740
  msgstr ""
5741
 
5742
+ #: defaults.php:584
5743
  msgid "User changed the currency"
5744
  msgstr ""
5745
 
5746
+ #: defaults.php:584
5747
  msgid ""
5748
  "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
5749
  msgstr ""
5750
 
5751
+ #: defaults.php:585
5752
  msgid "User Enabled/Disabled the use of coupons during checkout"
5753
  msgstr ""
5754
 
5755
+ #: defaults.php:585
5756
  msgid "%Status% the use of coupons during checkout in WooCommerce."
5757
  msgstr ""
5758
 
5759
+ #: defaults.php:586
5760
  msgid "User Enabled/Disabled guest checkout"
5761
  msgstr ""
5762
 
5763
+ #: defaults.php:586
5764
  msgid "%Status% guest checkout in WooCommerce."
5765
  msgstr ""
5766
 
5767
+ #: defaults.php:587
5768
  msgid "User Enabled/Disabled cash on delivery"
5769
  msgstr ""
5770
 
5771
+ #: defaults.php:587
5772
  msgid "%Status% the option Cash on Delivery in WooCommerce."
5773
  msgstr ""
5774
 
5775
+ #: defaults.php:588
5776
  msgid "User enabled a payment gateway"
5777
  msgstr ""
5778
 
5779
+ #: defaults.php:588
5780
  msgid "Enabled the payment gateway %GatewayName%."
5781
  msgstr ""
5782
 
5783
+ #: defaults.php:589
5784
  msgid "User disabled a payment gateway"
5785
  msgstr ""
5786
 
5787
+ #: defaults.php:589
5788
  msgid "Disabled the payment gateway %GatewayName%."
5789
  msgstr ""
5790
 
5791
+ #: defaults.php:590
5792
  msgid "User modified a payment gateway"
5793
  msgstr ""
5794
 
5795
+ #: defaults.php:590
5796
  msgid "Modified the payment gateway %GatewayName%."
5797
  msgstr ""
5798
 
5799
+ #: defaults.php:591
5800
  msgid "User modified prices with tax option"
5801
  msgstr ""
5802
 
5803
+ #: defaults.php:591
5804
  msgid "Set the option that prices are %TaxStatus% of tax."
5805
  msgstr ""
5806
 
5807
+ #: defaults.php:592
5808
  msgid "User modified tax calculation base"
5809
  msgstr ""
5810
 
5811
+ #: defaults.php:592
5812
  msgid "Set the setting Calculate tax based on to %Setting%."
5813
  msgstr ""
5814
 
5815
+ #: defaults.php:593
5816
  msgid "User modified shipping tax class"
5817
  msgstr ""
5818
 
5819
+ #: defaults.php:593
5820
  msgid "Set the Shipping tax class to %Setting%."
5821
  msgstr ""
5822
 
5823
+ #: defaults.php:594
5824
  msgid "User enabled/disabled rounding of tax"
5825
  msgstr ""
5826
 
5827
+ #: defaults.php:594
5828
  msgid "%Status% rounding of tax at subtotal level."
5829
  msgstr ""
5830
 
5831
+ #: defaults.php:595
5832
  msgid "User modified a shipping zone"
5833
  msgstr ""
5834
 
5835
+ #: defaults.php:595
5836
  msgid "%ShippingZoneStatus% the shipping zone %ShippingZoneName%."
5837
  msgstr ""
5838
 
5839
+ #: defaults.php:596
5840
  msgid "User created a new product category"
5841
  msgstr ""
5842
 
5843
+ #: defaults.php:596
5844
  msgid ""
5845
  "Created a new product category called %CategoryName% in WooCommerce. Product "
5846
  "category slug is %Slug%."
5847
  msgstr ""
5848
 
5849
+ #: defaults.php:597
5850
  msgid "User deleted a product category"
5851
  msgstr ""
5852
 
5853
+ #: defaults.php:597
5854
  msgid ""
5855
  "Deleted the product category called %CategoryName% in WooCommerce. Product "
5856
  "category slug was %CategorySlug%."
5857
  msgstr ""
5858
 
5859
+ #: defaults.php:598
5860
  msgid "User changed the slug of a product category"
5861
  msgstr ""
5862
 
5863
+ #: defaults.php:598
5864
  msgid ""
5865
  "Changed the Slug of the product category %CategoryName% in WooCommerce from "
5866
  "%OldSlug% to %NewSlug%."
5867
  msgstr ""
5868
 
5869
+ #: defaults.php:599
5870
  msgid "User changed the parent category of a product category"
5871
  msgstr ""
5872
 
5873
+ #: defaults.php:599
5874
  msgid ""
5875
  "Changed the Parent Category of the product category %CategoryName% in "
5876
  "WooCommerce from %OldParentCat% to %NewParentCat%."
5877
  msgstr ""
5878
 
5879
+ #: defaults.php:600
5880
  msgid "User changed the display type of a product category"
5881
  msgstr ""
5882
 
5883
+ #: defaults.php:600
5884
  msgid ""
5885
  "Changed the Display Type of the product category %CategoryName% in "
5886
  "WooCommerce from %OldDisplayType% to %NewDisplayType%."
5887
  msgstr ""
5888
 
5889
+ #: defaults.php:601
5890
  msgid "User changed the name of a product category"
5891
  msgstr ""
5892
 
5893
+ #: defaults.php:601
5894
  msgid ""
5895
  "Changed the name of the product category %CategoryName% in WooCommerce from "
5896
  "%OldName% to %NewName%."
5897
  msgstr ""
5898
 
5899
+ #: defaults.php:602
5900
  msgid "User created a new attribute"
5901
  msgstr ""
5902
 
5903
+ #: defaults.php:602
5904
  msgid ""
5905
  "Created a new Attribute called %AttributeName% with slug %AttributeSlug% in "
5906
  "WooCommerce."
5907
  msgstr ""
5908
 
5909
+ #: defaults.php:603
5910
  msgid "User deleted an attribute"
5911
  msgstr ""
5912
 
5913
+ #: defaults.php:603
5914
  msgid ""
5915
  "Deleted the Attribute called %AttributeName% with Slug %AttributeSlug% from "
5916
  "WooCommerce."
5917
  msgstr ""
5918
 
5919
+ #: defaults.php:604
5920
  msgid "User changed the slug of an attribute"
5921
  msgstr ""
5922
 
5923
+ #: defaults.php:604
5924
  msgid ""
5925
  "Changed the Slug of the Attribute %AttributeName% in WooCommerce from "
5926
  "%OldSlug% to %NewSlug%."
5927
  msgstr ""
5928
 
5929
+ #: defaults.php:605
5930
  msgid "User changed the name of an attribute"
5931
  msgstr ""
5932
 
5933
+ #: defaults.php:605
5934
  msgid ""
5935
  "Changed the Name of the Attribute %AttributeName% in WooCommerce from "
5936
  "%OldName% to %NewName%."
5937
  msgstr ""
5938
 
5939
+ #: defaults.php:606
5940
  msgid "User changed the default sort order of an attribute"
5941
  msgstr ""
5942
 
5943
+ #: defaults.php:606
5944
  msgid ""
5945
  "Changed the Default Sort Order of the Attribute %AttributeName% in "
5946
  "WooCommerce from %OldSortOrder% to %NewSortOrder%."
5947
  msgstr ""
5948
 
5949
+ #: defaults.php:607
5950
  msgid "User enabled/disabled the option Enable Archives of an attribute"
5951
  msgstr ""
5952
 
5953
+ #: defaults.php:607
5954
  msgid ""
5955
  "%ArchivesStatus% the option Enable Archives in the Attribute %AttributeName% "
5956
  "in WooCommerce."
5957
  msgstr ""
5958
 
5959
+ #: defaults.php:608
5960
  msgid "User published a new coupon"
5961
  msgstr ""
5962
 
5963
+ #: defaults.php:608
5964
  msgid "Published a new coupon called %CouponName% in WooCommerce."
5965
  msgstr ""
5966
 
5967
+ #: defaults.php:609
5968
  msgid "User changed the discount type of a coupon"
5969
  msgstr ""
5970
 
5971
+ #: defaults.php:609
5972
  msgid ""
5973
  "Changed the Discount Type of the %CouponStatus% WooCommerce coupon "
5974
  "%CouponName% from %OldDiscountType% to %NewDiscountType%."
5975
  msgstr ""
5976
 
5977
+ #: defaults.php:610
5978
  msgid "User changed the coupon amount of a coupon"
5979
  msgstr ""
5980
 
5981
+ #: defaults.php:610
5982
  msgid ""
5983
  "Changed the Coupon Amount of the %CouponStatus% WooCommerce coupon "
5984
  "%CouponName% from %OldAmount% to %NewAmount%."
5985
  msgstr ""
5986
 
5987
+ #: defaults.php:611
5988
  msgid "User changed the coupon expire date of a coupon"
5989
  msgstr ""
5990
 
5991
+ #: defaults.php:611
5992
  msgid ""
5993
  "Changed the Coupon Expire Date of the %CouponStatus% WooCommerce coupon "
5994
  "%CouponName% from %OldDate% to %NewDate%."
5995
  msgstr ""
5996
 
5997
+ #: defaults.php:612
5998
  msgid "User changed the usage restriction settings of a coupon"
5999
  msgstr ""
6000
 
6001
+ #: defaults.php:612
6002
  msgid ""
6003
  "Changed the Usage Restriction settings of the %CouponStatus% WooCommerce "
6004
  "coupon %CouponName%."
6005
  msgstr ""
6006
 
6007
+ #: defaults.php:613
6008
  msgid "User changed the usage limits settings of a coupon"
6009
  msgstr ""
6010
 
6011
+ #: defaults.php:613
6012
  msgid ""
6013
  "Changed the Usage Limits settings of the %CouponStatus% WooCommerce coupon "
6014
  "%CouponName%."
6015
  msgstr ""
6016
 
6017
+ #: defaults.php:614
6018
  msgid "User changed the description of a coupon"
6019
  msgstr ""
6020
 
6021
+ #: defaults.php:614
6022
  msgid ""
6023
  "Changed the Description of the %CouponStatus% WooCommerce coupon %CouponName"
6024
  "%."
6025
  msgstr ""
6026
 
6027
+ #: defaults.php:615
6028
  msgid "User changed the status of a coupon"
6029
  msgstr ""
6030
 
6031
+ #: defaults.php:615
6032
  msgid ""
6033
  "Changed the Status of the WooCommerce coupon %CouponName% from %OldStatus% "
6034
  "to %NewStatus%."
6035
  msgstr ""
6036
 
6037
+ #: defaults.php:616
6038
  msgid "User renamed a WooCommerce coupon"
6039
  msgstr ""
6040
 
6041
+ #: defaults.php:616
6042
  msgid "Renamed the WooCommerce coupon %OldName% to %NewName%."
6043
  msgstr ""
6044
 
6045
+ #: defaults.php:617
6046
  msgid "A WooCommerce order has been placed"
6047
  msgstr ""
6048
 
6049
+ #: defaults.php:617
6050
  msgid ""
6051
  "A WooCommerce order %OrderTitle% has just been placed. %EditorLinkOrder%."
6052
  msgstr ""
6053
 
6054
+ #: defaults.php:618
6055
  msgid "WooCommerce order status changed"
6056
  msgstr ""
6057
 
6058
+ #: defaults.php:618
6059
  msgid ""
6060
  "Marked the WooCommerce order %OrderTitle% as %OrderStatus%. %EditorLinkOrder"
6061
  "%."
6062
  msgstr ""
6063
 
6064
+ #: defaults.php:619
6065
  msgid "User moved a WooCommerce order to trash"
6066
  msgstr ""
6067
 
6068
+ #: defaults.php:619
6069
  msgid "Moved the WooCommerce order %OrderTitle% to trash."
6070
  msgstr ""
6071
 
6072
+ #: defaults.php:620
6073
  msgid "User moved a WooCommerce order out of trash"
6074
  msgstr ""
6075
 
6076
+ #: defaults.php:620
6077
  msgid ""
6078
  "Moved the WooCommerce order %OrderTitle% out of trash. %EditorLinkOrder%."
6079
  msgstr ""
6080
 
6081
+ #: defaults.php:621
6082
  msgid "User permanently deleted a WooCommerce order"
6083
  msgstr ""
6084
 
6085
+ #: defaults.php:621
6086
  msgid "Permanently deleted the WooCommerce order %OrderTitle%."
6087
  msgstr ""
6088
 
6089
+ #: defaults.php:622
6090
  msgid "User edited a WooCommerce order"
6091
  msgstr ""
6092
 
6093
+ #: defaults.php:622
6094
  msgid "Edited the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
6095
  msgstr ""
6096
 
6097
+ #: defaults.php:623
6098
  msgid "User refunded a WooCommerce order"
6099
  msgstr ""
6100
 
6101
+ #: defaults.php:623
6102
  msgid "Refunded the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
6103
  msgstr ""
6104
 
6105
+ #: defaults.php:624
6106
  msgid "User changed the billing address details"
6107
  msgstr ""
6108
 
6109
+ #: defaults.php:624
6110
  msgid ""
6111
  "Changed the %AddressField% in the user's %TargetUsername% billing address."
6112
  "%ChangeText%"
6113
  msgstr ""
6114
 
6115
+ #: defaults.php:625
6116
  msgid "User changed the shipping address details"
6117
  msgstr ""
6118
 
6119
+ #: defaults.php:625
6120
  msgid ""
6121
  "Changed the %AddressField% in the user's %TargetUsername% shipping address."
6122
  "%ChangeText%"
6123
  msgstr ""
6124
 
6125
+ #: defaults.php:632
6126
  msgid "User changed title of a SEO post"
6127
  msgstr ""
6128
 
6129
+ #: defaults.php:632
6130
  msgid ""
6131
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
6132
  "% %EditorLinkPost%."
6133
  msgstr ""
6134
 
6135
+ #: defaults.php:633
6136
  msgid "User changed the meta description of a SEO post"
6137
  msgstr ""
6138
 
6139
+ #: defaults.php:633
6140
  msgid ""
6141
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
6142
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
6143
  msgstr ""
6144
 
6145
+ #: defaults.php:634
6146
  msgid ""
6147
  "User changed setting to allow search engines to show post in search results "
6148
  "of a SEO post"
6149
  msgstr ""
6150
 
6151
+ #: defaults.php:634
6152
  msgid ""
6153
  "Changed the setting to allow search engines to show post in search results "
6154
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
6155
  "%PostTitle%. %EditorLinkPost%."
6156
  msgstr ""
6157
 
6158
+ #: defaults.php:635
6159
  msgid ""
6160
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
6161
  "post"
6162
  msgstr ""
6163
 
6164
+ #: defaults.php:635
6165
  msgid ""
6166
  "%NewStatus% the option for search engine to follow links in the %PostType% "
6167
  "titled %PostTitle%. %EditorLinkPost%."
6168
  msgstr ""
6169
 
6170
+ #: defaults.php:636
6171
  msgid "User set the meta robots advanced setting of a SEO post"
6172
  msgstr ""
6173
 
6174
+ #: defaults.php:636
6175
  msgid ""
6176
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
6177
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
6178
  msgstr ""
6179
 
6180
+ #: defaults.php:637
6181
  msgid "User changed the canonical URL of a SEO post"
6182
  msgstr ""
6183
 
6184
+ #: defaults.php:637
6185
  msgid ""
6186
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
6187
  "%ReportText%.%ChangeText% %EditorLinkPost%."
6188
  msgstr ""
6189
 
6190
+ #: defaults.php:638
6191
  msgid "User changed the focus keyword of a SEO post"
6192
  msgstr ""
6193
 
6194
+ #: defaults.php:638
6195
  msgid ""
6196
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
6197
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
6198
  msgstr ""
6199
 
6200
+ #: defaults.php:639
6201
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
6202
  msgstr ""
6203
 
6204
+ #: defaults.php:639
6205
  msgid ""
6206
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
6207
  "%PostTitle%. %EditorLinkPost%."
6208
  msgstr ""
6209
 
6210
+ #: defaults.php:640
6211
  msgid "User changed the Title Separator setting"
6212
  msgstr ""
6213
 
6214
+ #: defaults.php:640
6215
  msgid ""
6216
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
6217
  "settings."
6218
  msgstr ""
6219
 
6220
+ #: defaults.php:641
6221
  msgid "User changed the Homepage Title setting"
6222
  msgstr ""
6223
 
6224
+ #: defaults.php:641
6225
  msgid ""
6226
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
6227
  "%ChangeText%"
6228
  msgstr ""
6229
 
6230
+ #: defaults.php:642
6231
  msgid "User changed the Homepage Meta description setting"
6232
  msgstr ""
6233
 
6234
+ #: defaults.php:642
6235
  msgid ""
6236
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
6237
  "settings.%ChangeText%"
6238
  msgstr ""
6239
 
6240
+ #: defaults.php:643
6241
  msgid "User changed the Company or Person setting"
6242
  msgstr ""
6243
 
6244
+ #: defaults.php:643
6245
  msgid ""
6246
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
6247
  "plugin settings."
6248
  msgstr ""
6249
 
6250
+ #: defaults.php:644
6251
  msgid ""
6252
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
6253
  "Yoast SEO plugin settings"
6254
  msgstr ""
6255
 
6256
+ #: defaults.php:644
6257
  msgid ""
6258
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
6259
  "plugin settings."
6260
  msgstr ""
6261
 
6262
+ #: defaults.php:645
6263
  msgid ""
6264
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
6265
  msgstr ""
6266
 
6267
+ #: defaults.php:645
6268
  msgid ""
6269
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
6270
  "SEO plugin settings."
6271
  msgstr ""
6272
 
6273
+ #: defaults.php:646
6274
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
6275
  msgstr ""
6276
 
6277
+ #: defaults.php:646
6278
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
6279
  msgstr ""
6280
 
6281
+ #: defaults.php:647
6282
  msgid ""
6283
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
6284
  msgstr ""
6285
 
6286
+ #: defaults.php:647
6287
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
6288
  msgstr ""
6289
 
6290
+ #: defaults.php:648
6291
  msgid ""
6292
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
6293
  msgstr ""
6294
 
6295
+ #: defaults.php:648
6296
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
6297
  msgstr ""
6298
 
6299
+ #: defaults.php:649
6300
  msgid ""
6301
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
6302
  msgstr ""
6303
 
6304
+ #: defaults.php:649
6305
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
6306
  msgstr ""
6307
 
6308
+ #: defaults.php:650
6309
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
6310
  msgstr ""
6311
 
6312
+ #: defaults.php:650
6313
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
6314
  msgstr ""
6315
 
6316
+ #: defaults.php:651
6317
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
6318
  msgstr ""
6319
 
6320
+ #: defaults.php:651
6321
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
6322
  msgstr ""
6323
 
6324
+ #: defaults.php:652
6325
  msgid ""
6326
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
6327
  msgstr ""
6328
 
6329
+ #: defaults.php:652
6330
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
6331
  msgstr ""
6332
 
6333
+ #: defaults.php:653
6334
  msgid ""
6335
  "User changed the Posts/Pages meta description template in the Yoast SEO "
6336
  "plugin settings"
6337
  msgstr ""
6338
 
6339
+ #: defaults.php:653
6340
  msgid ""
6341
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
6342
  "the Yoast SEO plugin settings."
6343
  msgstr ""
6344
 
6345
+ #: defaults.php:654
6346
  msgid ""
6347
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
6348
  "plugin settings"
6349
  msgstr ""
6350
 
6351
+ #: defaults.php:654
6352
  msgid ""
6353
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
6354
  "SEO plugin settings."
6355
  msgstr ""
6356
 
6357
+ #: defaults.php:655
6358
  msgid ""
6359
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
6360
  "plugin settings"
6361
  msgstr ""
6362
 
6363
+ #: defaults.php:655
6364
  msgid ""
6365
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
6366
  "plugin settings."
6367
  msgstr ""
6368
 
6369
+ #: defaults.php:656
6370
  msgid ""
6371
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
6372
  "plugin settings"
6373
  msgstr ""
6374
 
6375
+ #: defaults.php:656
6376
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
6377
  msgstr ""
6378
 
6379
  #. translators: Username
6380
+ #: wp-security-audit-log.php:760 wp-security-audit-log.php:787
6381
  #, php-format
6382
  msgid "Hey %1$s"
6383
  msgstr ""
6384
 
6385
+ #: wp-security-audit-log.php:761
6386
  msgid ""
6387
  "Never miss an important update! Opt-in to our security and feature updates "
6388
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
6389
  msgstr ""
6390
 
6391
+ #: wp-security-audit-log.php:762 wp-security-audit-log.php:790
6392
  msgid "Note: "
6393
  msgstr ""
6394
 
6395
+ #: wp-security-audit-log.php:763 wp-security-audit-log.php:791
6396
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
6397
  msgstr ""
6398
 
6399
  #. translators: 1: Plugin name. 2: Freemius link.
6400
+ #: wp-security-audit-log.php:789
6401
  #, php-format
6402
  msgid ""
6403
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
6406
  msgstr ""
6407
 
6408
  #. translators: Plugin name
6409
+ #: wp-security-audit-log.php:811
6410
  #, php-format
6411
  msgid ""
6412
  "Get a free 7-day trial of the premium edition of %s. No credit card "
6414
  msgstr ""
6415
 
6416
  #. Plugin Name of the plugin/theme
6417
+ #: wp-security-audit-log.php:812
6418
  msgid "WP Security Audit Log"
6419
  msgstr ""
6420
 
6421
+ #: wp-security-audit-log.php:816
6422
  msgid "Start free trial"
6423
  msgstr ""
6424
 
6425
+ #: wp-security-audit-log.php:883
6426
  #, php-format
6427
  msgid ""
6428
  "The license is limited to %s sub-sites. You need to upgrade your license to "
6429
  "cover all the sub-sites on this network."
6430
  msgstr ""
6431
 
6432
+ #: wp-security-audit-log.php:994
6433
  msgid ""
6434
  "Error: You do not have sufficient permissions to disable this custom field."
6435
  msgstr ""
6436
 
6437
+ #: wp-security-audit-log.php:1027
6438
  #, php-format
6439
  msgid ""
6440
  "Custom Field %1$s is no longer being monitored.<br />Enable the monitoring "
6441
  "of this custom field again from the"
6442
  msgstr ""
6443
 
6444
+ #: wp-security-audit-log.php:1027
6445
  msgid "Excluded Objects"
6446
  msgstr ""
6447
 
6448
+ #: wp-security-audit-log.php:1027
6449
  msgid " tab in the plugin settings"
6450
  msgstr ""
6451
 
6452
+ #: wp-security-audit-log.php:1039
6453
  msgid "Error: You do not have sufficient permissions to disable this alert."
6454
  msgstr ""
6455
 
6456
+ #: wp-security-audit-log.php:1063
6457
  #, php-format
6458
  msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
6459
  msgstr ""
6460
 
6461
+ #: wp-security-audit-log.php:1063
6462
  msgid ""
6463
  "You can enable this alert again from the Enable/Disable Alerts node in the "
6464
  "plugin menu."
6465
  msgstr ""
6466
 
6467
+ #: wp-security-audit-log.php:1159
6468
  #, php-format
6469
  msgid ""
6470
  "You are using a version of PHP that is older than %s, which is no longer "
6471
  "supported."
6472
  msgstr ""
6473
 
6474
+ #: wp-security-audit-log.php:1161
6475
  msgid ""
6476
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
6477
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
6478
  "are using."
6479
  msgstr ""
6480
 
6481
+ #: wp-security-audit-log.php:1163
6482
  msgid ""
6483
  "The WP Security Audit Log plugin is a multisite network tool, so it has to "
6484
  "be activated at network level."
6485
  msgstr ""
6486
 
6487
+ #: wp-security-audit-log.php:1165
6488
  msgid "Redirect me to the network dashboard"
6489
  msgstr ""
6490
 
6491
+ #: wp-security-audit-log.php:1170
6492
  #, php-format
6493
  msgid "Please install the %s plugin on the MainWP dashboard."
6494
  msgstr ""
6495
 
6496
+ #: wp-security-audit-log.php:1170
6497
  msgid "Activity Log for MainWP"
6498
  msgstr ""
6499
 
6500
+ #: wp-security-audit-log.php:1172
6501
  #, php-format
6502
  msgid ""
6503
  "The WP Security Audit Log should be installed on the child sites only. Refer "
6504
  "to the %s for more information."
6505
  msgstr ""
6506
 
6507
+ #: wp-security-audit-log.php:1172
6508
  msgid "getting started guide"
6509
  msgstr ""
6510
 
6511
+ #: wp-security-audit-log.php:1258
6512
  msgid ""
6513
  "This plugin uses 3 tables in the WordPress database to store the activity "
6514
  "log and settings. It seems that these tables were not created."
6515
  msgstr ""
6516
 
6517
+ #: wp-security-audit-log.php:1260
6518
  msgid ""
6519
  "This could happen because the database user does not have the right "
6520
  "privileges to create the tables in the database. We recommend you to update "
6521
  "the privileges and try enabling the plugin again."
6522
  msgstr ""
6523
 
6524
+ #: wp-security-audit-log.php:1262
6525
  #, php-format
6526
  msgid ""
6527
  "If after doing so you still have issues, please send us an email on %s for "
6528
  "assistance."
6529
  msgstr ""
6530
 
6531
+ #: wp-security-audit-log.php:1262
6532
  msgid "support@wpsecurityauditlog.com"
6533
  msgstr ""
6534
 
6535
+ #: wp-security-audit-log.php:1877
6536
  msgid "Every 6 hours"
6537
  msgstr ""
6538
 
6539
+ #: wp-security-audit-log.php:1881
6540
  msgid "Every 45 minutes"
6541
  msgstr ""
6542
 
6543
+ #: wp-security-audit-log.php:1885
6544
  msgid "Every 30 minutes"
6545
  msgstr ""
6546
 
6547
+ #: wp-security-audit-log.php:1889
6548
  msgid "Every 15 minutes"
6549
  msgstr ""
6550
 
6551
+ #: wp-security-audit-log.php:1893
6552
  msgid "Every 10 minutes"
6553
  msgstr ""
6554
 
6555
+ #: wp-security-audit-log.php:1897
6556
  msgid "Every 1 minute"
6557
  msgstr ""
6558
 
6559
  #. translators: 1. Deprecated method name 2. Version since deprecated
6560
+ #: wp-security-audit-log.php:1911
6561
  #, php-format
6562
  msgid "Method %1$s is deprecated since version %2$s!"
6563
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl.html
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, SMS messages, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
  Tested up to: 5.3
9
- Stable tag: 3.5.1.1
10
  Requires PHP: 5.5
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
@@ -204,33 +204,31 @@ Please refer to our [Support & Documentation pages](https://www.wpsecurityauditl
204
 
205
  == Changelog ==
206
 
207
- = 3.5.1.1 (2019-10-31) =
208
 
209
- * **Improvement**
210
 
211
- * Prevent classes of the wrong instance from being added to $views.
212
-
213
- = 3.5.1 (2019-10-22) =
214
-
215
- Release notes: [Update 3.5.1 - New filters for the activity log viewer & other improvements](https://www.wpsecurityauditlog.com/releases/update-3-5-1/)
216
-
217
- * **New Features**
218
-
219
- * Filters and sorting capabitilies added to the Severity column in the activity log viewer.
220
 
 
 
 
 
221
  * **Improvements**
222
 
223
- * Improved the way data is reported in some [WooCommerce activity log events](https://www.wpsecurityauditlog.com/woocommerce-activity-log-datasheet/).
224
- * Added more links to the [plugin documentation](https://www.wpsecurityauditlog.com/support-documentation/) in the settings pages.
225
- * Improved the reporting of Event ID 2022 (date change), it is no longer reported with every change on draft post.
226
- * Improved user logout detection to detect logouts when using plugins such as Login and Logout Redirect.
 
 
 
 
227
 
228
  * **Bug Fixes**
229
 
230
- * Multiple events reported when a new post is saved with the Classic Editor
231
- * List of failed logins IP addresses not displayed properly in daily email when using outlook.
232
- * Fixed compatibility issue with the Newspaper news theme.
233
- * Removed incorrect use of parameter in add_submenu_page (credits: [Chris Van Patten](https://github.com/chrisvanpatten)).
234
 
235
  = Earlier versions =
236
 
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, SMS messages, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
  Tested up to: 5.3
9
+ Stable tag: 3.5.2
10
  Requires PHP: 5.5
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
204
 
205
  == Changelog ==
206
 
207
+ = 3.5.2 (2019-10-26) =
208
 
209
+ Release notes: [Update 3.5.2 - New filter hooks & better support for CPT on multisite networks](https://www.wpsecurityauditlog.com/releases/update-3-5-2/)
210
 
211
+ * **New Filter Hooks**
 
 
 
 
 
 
 
 
212
 
213
+ * [Disable the email notification sent when plugin is deactivated](https://www.wpsecurityauditlog.com/support-documentation/list-hooks/#wsal_filter_prevent_deactivation_email_delivery).
214
+ * [Change the email address of the notification email sent when plugin is deactivated](https://www.wpsecurityauditlog.com/support-documentation/list-hooks/#wsal_filter_deactivation_email_delivery_address).
215
+ * [Disable support for User Switching plugin](https://www.wpsecurityauditlog.com/support-documentation/list-hooks/#wsal_disable_user_switching_plugin_tracking).
216
+
217
  * **Improvements**
218
 
219
+ * Updated database queries to better support MySQL 8.
220
+ * New setting to enable/disable milliseconds in timestamps.
221
+ * New option in wizard to enable the [WordPress activity log mirror](https://www.wpsecurityauditlog.com/premium-features/integration-mirroring-tools-wordpress-activity-log/) once set up.
222
+ * Added the wsal_ prefix to all cron jobs.
223
+ * Fine tuned the [WooCommerce activity log](https://www.wpsecurityauditlog.com/woocommerce-activity-log-datasheet/) sensor to report only the neccessary events when there are coupon changes.
224
+ * Updated the [WordPress activity log custom events API](https://www.wpsecurityauditlog.com/support-documentation/create-custom-alerts-wordpress-audit-trail/) to only require one sensor on a multisite network.
225
+ * Removed old version specific checks used during upgrades.
226
+ * Daily summary email now includes more accurate user logins details.
227
 
228
  * **Bug Fixes**
229
 
230
+ * Custom post types on sub sites were not recognized on multisite network install.
231
+ * Background events were not being excluded from the logs even when the plugin is configured to exclude them.
 
 
232
 
233
  = Earlier versions =
234
 
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://www.wpsecurityauditlog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
- * Version: 3.5.1.1
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -46,7 +46,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
46
  *
47
  * @var string
48
  */
49
- public $version = '3.5.1.1';
50
 
51
  // Plugin constants.
52
  const PLG_CLS_PRFX = 'WSAL_';
@@ -364,6 +364,16 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
364
  require_once 'classes/Adapters/OccurrenceInterface.php';
365
  require_once 'classes/Adapters/QueryInterface.php';
366
 
 
 
 
 
 
 
 
 
 
 
367
  // Load autoloader and register base paths.
368
  require_once 'classes/Autoloader.php';
369
  $this->autoloader = new WSAL_Autoloader( $this );
@@ -954,6 +964,18 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
954
  * @since 3.3.1
955
  */
956
  public function deactivate_actions() {
 
 
 
 
 
 
 
 
 
 
 
 
957
  // Send deactivation email.
958
  if ( class_exists( 'WSAL_Utilities_Emailer' ) ) {
959
  // Get email template.
@@ -1345,19 +1367,6 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
1345
  }
1346
  }
1347
 
1348
- /**
1349
- * IMPORTANT: VERSION SPECIFIC UPDATE
1350
- *
1351
- * It only needs to run when new version of the plugin is newwer than 3.2.3.2.
1352
- *
1353
- * @since 3.2.3.3
1354
- */
1355
- if ( version_compare( $new_version, '3.2.3', '>' ) ) {
1356
- if ( 'yes' !== $this->GetGlobalOption( 'wsal-setup-modal-dismissed', false ) ) {
1357
- $this->SetGlobalOption( 'wsal-setup-modal-dismissed', 'yes' );
1358
- }
1359
- }
1360
-
1361
  /**
1362
  * MainWP Child Stealth Mode Update
1363
  *
@@ -1382,20 +1391,6 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
1382
  $this->SetGlobalOption( 'dismissed-privacy-notice', '1,wsal_privacy' );
1383
  }
1384
 
1385
- /**
1386
- * IMPORTANT: VERSION SPECIFIC UPDATE
1387
- *
1388
- * It only needs to run when old version of the plugin is less than 3.3
1389
- * & the new version is later than 3.2.5.
1390
- *
1391
- * @since 3.3
1392
- */
1393
- if ( version_compare( $old_version, '3.3', '<' ) && version_compare( $new_version, '3.2.5', '>' ) ) {
1394
- if ( wsal_freemius()->is__premium_only() && wsal_freemius()->is_plan_or_trial__premium_only( 'professional' ) ) {
1395
- $this->extensions->update_external_db_options( $this );
1396
- }
1397
- }
1398
-
1399
  /**
1400
  * IMPORTANT: VERSION SPECIFIC UPDATE
1401
  *
@@ -1443,17 +1438,33 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
1443
 
1444
  $this->settings->set_frontend_events( $frontend_events );
1445
  }
1446
- }
1447
- }
1448
 
1449
- /**
1450
- * Method: Update external DB password.
1451
- *
1452
- * @since 2.6.3
1453
- * @deprecated 3.2.3.3
1454
- */
1455
- public function update_external_db_password() {
1456
- $this->wsal_deprecate( __METHOD__, '3.2.3.3' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1457
  }
1458
 
1459
  /**
4
  * Plugin URI: http://www.wpsecurityauditlog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
+ * Version: 3.5.2
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
46
  *
47
  * @var string
48
  */
49
+ public $version = '3.5.2';
50
 
51
  // Plugin constants.
52
  const PLG_CLS_PRFX = 'WSAL_';
364
  require_once 'classes/Adapters/OccurrenceInterface.php';
365
  require_once 'classes/Adapters/QueryInterface.php';
366
 
367
+ // Only include these if we are in multisite envirnoment.
368
+ if ( $this->isMultisite() ) {
369
+ require_once 'classes/Multisite/NetworkWide/TrackerInterface.php';
370
+ require_once 'classes/Multisite/NetworkWide/AbstractTracker.php';
371
+ require_once 'classes/Multisite/NetworkWide/CPTsTracker.php';
372
+ // setup the CPT tracker across the network.
373
+ $cpts_tracker = new \WSAL\Multisite\NetworkWide\CPTsTracker( $this );
374
+ $cpts_tracker->setup();
375
+ }
376
+
377
  // Load autoloader and register base paths.
378
  require_once 'classes/Autoloader.php';
379
  $this->autoloader = new WSAL_Autoloader( $this );
964
  * @since 3.3.1
965
  */
966
  public function deactivate_actions() {
967
+ /**
968
+ * Allow short circuting of the deactivation email sending by using
969
+ * this filter to return true here instead of default false.
970
+ *
971
+ * @since 3.5.2
972
+ *
973
+ * @var bool
974
+ */
975
+ if ( apply_filters( 'wsal_filter_prevent_deactivation_email_delivery', false ) ) {
976
+ return;
977
+ }
978
+
979
  // Send deactivation email.
980
  if ( class_exists( 'WSAL_Utilities_Emailer' ) ) {
981
  // Get email template.
1367
  }
1368
  }
1369
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1370
  /**
1371
  * MainWP Child Stealth Mode Update
1372
  *
1391
  $this->SetGlobalOption( 'dismissed-privacy-notice', '1,wsal_privacy' );
1392
  }
1393
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1394
  /**
1395
  * IMPORTANT: VERSION SPECIFIC UPDATE
1396
  *
1438
 
1439
  $this->settings->set_frontend_events( $frontend_events );
1440
  }
 
 
1441
 
1442
+ /**
1443
+ * Upgrade routine for versions of the plugin prior to 3.5.2+
1444
+ *
1445
+ * NOTE: this uses a version compare of 1 minor version in the
1446
+ * future to enure that when old crons need removed they are.
1447
+ *
1448
+ * @since 3.5.2
1449
+ */
1450
+ if ( version_compare( $old_version, '3.5.2', '<=' ) ) {
1451
+ /*
1452
+ * Handle remapping old, unprefixed, cron tasks to new ones
1453
+ * that have the prefix in the handle.
1454
+ *
1455
+ * NOTE: Not using 'wsal_init' because `wsalCommonClass`
1456
+ * isn't set on WpSecurityAuditLog that early.
1457
+ */
1458
+ add_action(
1459
+ 'init',
1460
+ function() {
1461
+ require_once 'classes/Update/Task/CronNameRemap.php';
1462
+ $cron_name_remapper = new WSAL\Update\Task\CronNameRemap( WpSecurityAuditLog::GetInstance() );
1463
+ $cron_name_remapper->run();
1464
+ }
1465
+ );
1466
+ }
1467
+ }
1468
  }
1469
 
1470
  /**