WP Security Audit Log - Version 4.3.3

Version Description

(2021-10-13) =

Release notes: WP Activity Log 4.3.3: Plugin setting importer & exporter, support for REST API

New activity log event IDs * ID 5028: Enabled or disabled automatic updates for a plugin. * ID 5029: Enabled or disabled automatic updates for a theme.

New activity log event IDs for notifications in the plugin * ID 6310: Changed the status of the "Daily activity log summary email". * ID 6311: Modified the list of recepients of the "Daily activity log summary email". * ID 6312: Changed the status of a built in notification. * ID 6313: Changed the recepient(s) of a built in notification. * ID 6314: Added a new custom notification. * ID 6315: Modified a custom notification. * ID 6316: Changed the status of a custom notification. * ID 6317: Deleted a custom notification. * ID 6318: Modified the default notification template.

New activity log event IDs for integrations & activity log mirrors * ID 6320: Added a new integration connection. * ID 6321: Modified an integration connection. * ID 6322: Deleted an integration connection. * ID 6323: Added a new activity log mirror. * ID 6324: Modified an activity log mirror. * ID 6325: Changed the status of an activity log morror (disabled/enabled). * ID 6326: Deleted an activity log mirror. * ID 6327: Changed the statues of the setting "Logging events to database".

New features * Plugin settings exporter & importer: easily export and import the plugin's settings configuration for backups, migration etc. * Options to delete specific data from the activity log, such as all events about a user, or an IP address. * Plugin keeps log of authenticated user changes done to the website via the REST API. * New button to only terminate the users' sessions that match the search criteria in Logged in users' session. * Added the new {first_name} and {last_name} tags to the custom notifications template. * New hook to edit the activity log event data before it is sent to mirrors.

Improvements * Logs from subsites on multisite networks can be mirrored to AWS Cloudwatch as individual log streams. * Activity log retention policy can now be specified by the number of days. * Plugin now reports user role changes done via the "Members" plugin (by Memberpress). * Event ID 2010 (user uploaded a file) now includes a link to the uploaded attachment. * Added "Blog ID" and "Site URL" to mirrored activity log events. * Hover over prompt for users entries in activity log viewer now displays more information about the user. * Improved the handling of post meta changes (support ticket). * Renamed menu entry "BD & Integrations" to "Integrations" to better reflect its purpose. * Contact us link in install wizard now points to contact us page on website instead of homepage. * Auto complete filters in Reports now check up to 100 records. * Added additional database checks to ensure all data is removed from database upon uninstall on a multisite network. * Improved coverage for the Members plugin - plugin now reports user role changes done via the Members plugin. * Updated the "Help" link in the first time install wizard. * change the "wsal_inactive_sessions_test" database override to a filter. * Improved in-context help messages in plugin settings and ensured all titles are uniform.

Bug fixes * Fixed a PHP warning which happened when visiting the plugin's settings pages (support ticket). * Fixed PHP notice which happened when visiting an archive page (support ticket). * Event IDs for "integration connections" changes wrongly reported for changes in "activity log mirroring connection" changes. * Fixed: Activity log retention policies appearing twice in some scenarios. * Fixed: Activity log retention settings and archive settings popup logic. * Added the missing argument in a multisite network that were creating a PHP error during plugin uninstall. * Setting the setting "Remove all data on uninstall" to "No" no longer leaves no option selected.

Refer to the complete plugin changelog for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.

Download this release

Release Info

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

Code changes from version 4.3.2 to 4.3.3

classes/AlertManager.php CHANGED
@@ -636,6 +636,12 @@ final class WSAL_AlertManager {
636
  $event_data['EventType'] = $alert_obj->event_type;
637
  }
638
 
 
 
 
 
 
 
639
  /**
640
  * WSAL Filter: `wsal_event_id_before_log`
641
  *
636
  $event_data['EventType'] = $alert_obj->event_type;
637
  }
638
 
639
+ // Append further details if in multisite.
640
+ if ( $this->plugin->IsMultisite() ) {
641
+ $event_data['SiteID'] = get_current_blog_id();
642
+ $event_data['SiteURL'] = get_site_url( $event_data['SiteID'] );
643
+ }
644
+
645
  /**
646
  * WSAL Filter: `wsal_event_id_before_log`
647
  *
classes/AuditLogGridView.php CHANGED
@@ -413,27 +413,14 @@ class WSAL_AuditLogGridView extends WP_List_Table {
413
  // Check if the username and user exists.
414
  if ( $username && $user ) {
415
 
416
- // Checks for display name.
417
- if ( 'display_name' === $this->name_type && ! empty( $user->display_name ) ) {
418
- $display_name = $user->display_name;
419
- } elseif (
420
- 'first_last_name' === $this->name_type
421
- && ( ! empty( $user->first_name ) || ! empty( $user->last_name ) )
422
- ) {
423
- $display_name = $user->first_name . ' ' . $user->last_name;
424
- } else {
425
- $display_name = $user->user_login;
426
- }
427
 
428
- if ( class_exists( 'WSAL_SearchExtension' ) ) {
429
- $tooltip = esc_attr__( 'Show me all activity by this User', 'wp-security-audit-log' );
430
 
431
- $uhtml = '<a class="search-user" data-tooltip="' . $tooltip . '" data-user="' . $user->user_login . '" href="' . admin_url( 'user-edit.php?user_id=' . $user->ID )
432
- . '" target="_blank">' . esc_html( $display_name ) . '</a>';
433
- } else {
434
- $uhtml = '<a href="' . admin_url( 'user-edit.php?user_id=' . $user->ID )
435
- . '" target="_blank">' . esc_html( $display_name ) . '</a>';
436
- }
437
 
438
  $roles = $item->GetUserRoles( $this->item_meta[ $item->getId() ] );
439
  if ( is_array( $roles ) && count( $roles ) ) {
413
  // Check if the username and user exists.
414
  if ( $username && $user ) {
415
 
416
+ $display_name = WSAL_Utilities_UsersUtils::get_display_label( $this->_plugin, $user );
417
+ $user_edit_link = admin_url( 'user-edit.php?user_id=' . $user->ID );
418
+
419
+ // Additional user info tooltip.
420
+ $tooltip = WSAL_Utilities_UsersUtils::get_tooltip_user_content( $user );
 
 
 
 
 
 
421
 
422
+ $uhtml = '<a class="tooltip" data-tooltip="' . esc_attr( $tooltip ) . '" data-user="' . $user->user_login . '" href="' . $user_edit_link . '" target="_blank">' . esc_html( $display_name ) . '</a>';
 
423
 
 
 
 
 
 
 
424
 
425
  $roles = $item->GetUserRoles( $this->item_meta[ $item->getId() ] );
426
  if ( is_array( $roles ) && count( $roles ) ) {
classes/AuditLogListView.php CHANGED
@@ -418,13 +418,18 @@ class WSAL_AuditLogListView extends WP_List_Table {
418
  $image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
419
 
420
  // check if there's a user with given username
421
- if ( $user instanceof WP_User) {
422
  // Get user avatar.
423
  $image = get_avatar( $user->ID, 32 );
424
 
425
  $display_name = WSAL_Utilities_UsersUtils::get_display_label( $this->_plugin, $user );
426
  $user_edit_link = admin_url( 'user-edit.php?user_id=' . $user->ID );
427
- $uhtml = '<a href="' . $user_edit_link . '" target="_blank">' . esc_html( $display_name ) . '</a>';
 
 
 
 
 
428
 
429
  $roles = $item->GetUserRoles( $this->item_meta[ $item->getId() ] );
430
  if ( is_array( $roles ) && count( $roles ) ) {
418
  $image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
419
 
420
  // check if there's a user with given username
421
+ if ( $user instanceof WP_User ) {
422
  // Get user avatar.
423
  $image = get_avatar( $user->ID, 32 );
424
 
425
  $display_name = WSAL_Utilities_UsersUtils::get_display_label( $this->_plugin, $user );
426
  $user_edit_link = admin_url( 'user-edit.php?user_id=' . $user->ID );
427
+
428
+ // Additional user info tooltip.
429
+ $tooltip = WSAL_Utilities_UsersUtils::get_tooltip_user_content( $user );
430
+
431
+ $uhtml = '<a class="tooltip" data-tooltip="' . esc_attr( $tooltip ) . '" data-user="' . $user->user_login . '" href="' . $user_edit_link . '" target="_blank">' . esc_html( $display_name ) . '</a>';
432
+
433
 
434
  $roles = $item->GetUserRoles( $this->item_meta[ $item->getId() ] );
435
  if ( is_array( $roles ) && count( $roles ) ) {
classes/Sensors/Content.php CHANGED
@@ -101,8 +101,8 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
101
  add_action( 'pre_delete_term', array( $this, 'check_taxonomy_term_deletion' ), 10, 2 );
102
  add_filter( 'wp_update_term_data', array( $this, 'event_update_term_data' ), 10, 4 );
103
  add_filter( 'add_post_metadata', array( $this, 'check_changed_meta' ), 10, 4 );
104
- add_filter( 'delete_post_metadata', array( $this, 'check_changed_meta' ), 10, 4 );
105
  add_filter( 'updated_post_meta', array( $this, 'check_changed_meta' ), 10, 4 );
 
106
 
107
 
108
  // Check if MainWP Child Plugin exists.
@@ -462,6 +462,11 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
462
  $current_path = preg_replace( '/' . $escaped . '/', '', $current_path );
463
  }
464
 
 
 
 
 
 
465
  $full_current_path = home_url( $current_path );
466
  if ( $full_current_path !== $post_data['PostUrl'] ) {
467
  $post_data['PostUrl'] = esc_url( $full_current_path );
@@ -668,10 +673,12 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
668
  * @param int $post_id Post ID.
669
  * @param string $meta_key Meta key.
670
  * @param mixed $meta_value Meta value.
 
 
671
  */
672
  public function check_changed_meta( $meta_id, $post_id, $meta_key, $meta_value ) {
673
  if ( ! $post_id ) {
674
- return;
675
  }
676
 
677
  switch ( $meta_key ) {
@@ -682,8 +689,39 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
682
  $this->check_featured_image_change( $post_id, $meta_value );
683
  break;
684
  default:
685
- // no other meta keys supported here.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
686
  }
 
 
 
 
 
 
 
 
 
 
 
 
687
  }
688
 
689
  /**
101
  add_action( 'pre_delete_term', array( $this, 'check_taxonomy_term_deletion' ), 10, 2 );
102
  add_filter( 'wp_update_term_data', array( $this, 'event_update_term_data' ), 10, 4 );
103
  add_filter( 'add_post_metadata', array( $this, 'check_changed_meta' ), 10, 4 );
 
104
  add_filter( 'updated_post_meta', array( $this, 'check_changed_meta' ), 10, 4 );
105
+ add_filter( 'delete_post_metadata', array( $this, 'check_deleted_meta' ), 10, 5 );
106
 
107
 
108
  // Check if MainWP Child Plugin exists.
462
  $current_path = preg_replace( '/' . $escaped . '/', '', $current_path );
463
  }
464
 
465
+ // Bail if this dont have this, as its probably an archive.
466
+ if ( ! isset( $post_data['PostUrl'] ) ) {
467
+ return;
468
+ }
469
+
470
  $full_current_path = home_url( $current_path );
471
  if ( $full_current_path !== $post_data['PostUrl'] ) {
472
  $post_data['PostUrl'] = esc_url( $full_current_path );
673
  * @param int $post_id Post ID.
674
  * @param string $meta_key Meta key.
675
  * @param mixed $meta_value Meta value.
676
+ *
677
+ * @return int $meta_id ID of updated metadata entry.
678
  */
679
  public function check_changed_meta( $meta_id, $post_id, $meta_key, $meta_value ) {
680
  if ( ! $post_id ) {
681
+ return $meta_id;
682
  }
683
 
684
  switch ( $meta_key ) {
689
  $this->check_featured_image_change( $post_id, $meta_value );
690
  break;
691
  default:
692
+ return $meta_id;
693
+ }
694
+
695
+ return $meta_id;
696
+ }
697
+
698
+ /**
699
+ * Check Page Template Update for delitions.
700
+ *
701
+ * @param bool|null $delete Whether to allow metadata deletion of the given type.
702
+ * @param int $meta_id ID of updated metadata entry.
703
+ * @param int $post_id Post ID.
704
+ * @param string $meta_key Meta key.
705
+ * @param mixed $meta_value Meta value.
706
+ *
707
+ * @return bool|null $delete Whether to allow metadata deletion of the given type.
708
+ */
709
+ public function check_deleted_meta( $delete, $meta_id, $post_id, $meta_key, $meta_value ) {
710
+ if ( ! $post_id ) {
711
+ return $delete;
712
  }
713
+
714
+ switch ( $meta_key ) {
715
+ case '_wp_page_template':
716
+ $this->check_template_change( $post_id, $meta_value );
717
+ break;
718
+ case '_thumbnail_id':
719
+ $this->check_featured_image_change( $post_id, $meta_value );
720
+ break;
721
+ default:
722
+ // no other meta keys supported here.
723
+ }
724
+ return $delete;
725
  }
726
 
727
  /**
classes/Sensors/Files.php CHANGED
@@ -52,13 +52,14 @@ class WSAL_Sensors_Files extends WSAL_AbstractSensor {
52
  $post_array = filter_input_array( INPUT_POST );
53
 
54
  $action = isset( $post_array['action'] ) ? $post_array['action'] : '';
55
- if ( 'upload-theme' !== $action && 'upload-plugin' !== $action ) {
56
  $file = get_attached_file( $attachment_id );
57
  $this->plugin->alerts->Trigger(
58
  2010, array(
59
- 'AttachmentID' => $attachment_id,
60
- 'FileName' => basename( $file ),
61
- 'FilePath' => dirname( $file ),
 
62
  )
63
  );
64
  }
52
  $post_array = filter_input_array( INPUT_POST );
53
 
54
  $action = isset( $post_array['action'] ) ? $post_array['action'] : '';
55
+ if ( 'upload-theme' !== $action && 'upload-plugin' !== $action ) {
56
  $file = get_attached_file( $attachment_id );
57
  $this->plugin->alerts->Trigger(
58
  2010, array(
59
+ 'AttachmentID' => $attachment_id,
60
+ 'FileName' => basename( $file ),
61
+ 'FilePath' => dirname( $file ),
62
+ 'AttachmentUrl' => get_attachment_link( $attachment_id ),
63
  )
64
  );
65
  }
classes/Sensors/System.php CHANGED
@@ -130,6 +130,31 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor {
130
  $actype = basename( $server_array['SCRIPT_NAME'], '.php' );
131
  }
132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  $is_option_page = 'options' === $actype;
134
  $is_network_settings = 'settings' === $actype;
135
  $is_permalink_page = 'options-permalink' === $actype;
130
  $actype = basename( $server_array['SCRIPT_NAME'], '.php' );
131
  }
132
 
133
+ if ( isset( $post_array['action'] ) && 'toggle-auto-updates' == $post_array['action'] ) {
134
+ $event_id = ( 'theme' == $post_array['type'] ) ? 5029 : 5028;
135
+
136
+ if ( 'theme' == $post_array['type'] ) {
137
+ $all_themes = wp_get_themes();
138
+ $our_theme = $all_themes[$post_array['asset']];
139
+ $install_location = $our_theme->get_template_directory();
140
+ $name = $our_theme->Name;
141
+ } else if ( 'plugin' == $post_array['type'] ) {
142
+ $all_plugins = get_plugins();
143
+ $our_plugin = $all_plugins[$post_array['asset']];
144
+ $install_location = plugin_dir_path( WP_PLUGIN_DIR . '/' . $post_array['asset'] );
145
+ $name = $our_plugin['Name'];
146
+ }
147
+
148
+ $this->plugin->alerts->Trigger(
149
+ $event_id,
150
+ array(
151
+ 'install_directory' => $install_location,
152
+ 'name' => $name,
153
+ 'EventType' => ( 'enable' == $post_array['state'] ) ? 'enabled' : 'disabled',
154
+ )
155
+ );
156
+ }
157
+
158
  $is_option_page = 'options' === $actype;
159
  $is_network_settings = 'settings' === $actype;
160
  $is_permalink_page = 'options-permalink' === $actype;
classes/Sensors/UserProfile.php CHANGED
@@ -214,6 +214,13 @@ class WSAL_Sensors_UserProfile extends WSAL_AbstractSensor {
214
  )
215
  );
216
  }
 
 
 
 
 
 
 
217
  }
218
 
219
  /**
@@ -223,7 +230,7 @@ class WSAL_Sensors_UserProfile extends WSAL_AbstractSensor {
223
  * @param string $new_role - New role.
224
  * @param array $old_roles - Array of old roles.
225
  */
226
- public function event_user_role_changed( $user_id, $new_role, $old_roles ) {
227
  // Get WP_User object.
228
  $user = get_userdata( $user_id );
229
 
@@ -232,8 +239,10 @@ class WSAL_Sensors_UserProfile extends WSAL_AbstractSensor {
232
  return;
233
  }
234
 
 
 
235
  $old_roles = array_map( array( $this, 'filter_role_names' ), $old_roles );
236
- $new_roles = array_map( array( $this, 'filter_role_names' ), $user->roles );
237
 
238
  // Get roles.
239
  $old_roles = is_array( $old_roles ) ? implode( ', ', $old_roles ) : '';
214
  )
215
  );
216
  }
217
+
218
+ // Alert if role has changed via Members plugin.
219
+ if ( isset( $_POST['members_user_roles'] ) && ! empty( $_POST['members_user_roles'] ) ) {
220
+ if ( $old_userdata->roles !== $_POST['members_user_roles'] ) {
221
+ $this->event_user_role_changed( $user_id, $_POST['members_user_roles'], $old_userdata->roles, true );
222
+ }
223
+ }
224
  }
225
 
226
  /**
230
  * @param string $new_role - New role.
231
  * @param array $old_roles - Array of old roles.
232
  */
233
+ public function event_user_role_changed( $user_id, $new_role, $old_roles, $use_posted_data = false ) {
234
  // Get WP_User object.
235
  $user = get_userdata( $user_id );
236
 
239
  return;
240
  }
241
 
242
+ $roles_to_process = ( $use_posted_data ) ? $new_role : $user->roles;
243
+
244
  $old_roles = array_map( array( $this, 'filter_role_names' ), $old_roles );
245
+ $new_roles = array_map( array( $this, 'filter_role_names' ), $roles_to_process );
246
 
247
  // Get roles.
248
  $old_roles = is_array( $old_roles ) ? implode( ', ', $old_roles ) : '';
classes/ThirdPartyExtensions/TablePressExtension.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! class_exists( 'WSAL_TablePressExtension' ) ) {
4
+
5
+ class WSAL_TablePressExtension extends WSAL_AbstractExtension {
6
+
7
+ public function filter_installable_plugins( $plugins ) {
8
+ $new_plugin = array(
9
+ array(
10
+ 'addon_for' => 'tablepress',
11
+ 'title' => $this->get_plugin_name(),
12
+ 'image_filename' => 'tablepress.png',
13
+ 'plugin_slug' => 'tablepress/tablepress.php',
14
+ 'plugin_basename' => 'tablepress.php',
15
+ 'plugin_url' => 'https://downloads.wordpress.org/plugin/activity-log-tablepress.latest-stable.zip',
16
+ 'event_tab_id' => '#tab-tablepress',
17
+ 'plugin_description' => 'Keep a log of all the changes in your TablePress tables.',
18
+ )
19
+ );
20
+
21
+ // combine the two arrays.
22
+ return array_merge( $plugins, $new_plugin );
23
+ }
24
+
25
+ public function add_event_codes( $addon_event_codes ) {
26
+ $new_event_codes = array(
27
+ 'yoast' => array(
28
+ 'name' => $this->get_plugin_name(),
29
+ 'event_ids' => array( 8900, 8901, 8902, 8903, 8904, 8905, 8906, 8907, 8908 ),
30
+ ),
31
+ );
32
+
33
+ // combine the two arrays.
34
+ return array_merge( $addon_event_codes, $new_event_codes );
35
+ }
36
+
37
+ public function get_custom_post_types() {
38
+ return [ 'tablepress_table' ];
39
+ }
40
+
41
+ public function get_plugin_name() {
42
+ return 'TablePress';
43
+ }
44
+
45
+ public function get_plugin_icon_url() {
46
+ return 'https://ps.w.org/activity-log-wp-seo/assets/icon-128x128.png?rev=2393849';
47
+ }
48
+
49
+ public function get_color() {
50
+ return '#a4286a';
51
+ }
52
+ }
53
+ }
classes/Uninstall.php CHANGED
@@ -86,6 +86,9 @@ class WSAL_Uninstall {
86
 
87
  // Remove wsal specific freemius entry.
88
  delete_option( 'fs_wsalp' );
 
 
 
89
 
90
  // @todo delete also options from site-level tables in multisite context
91
  }
86
 
87
  // Remove wsal specific freemius entry.
88
  delete_option( 'fs_wsalp' );
89
+
90
+ // Ensue entry is fully cleared.
91
+ delete_network_option( 0 ,'wsal_networkwide_tracker_cpts' );
92
 
93
  // @todo delete also options from site-level tables in multisite context
94
  }
classes/Utilities/UserUtils.php CHANGED
@@ -70,4 +70,28 @@ class WSAL_Utilities_UsersUtils {
70
 
71
  return '';
72
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
  }
70
 
71
  return '';
72
  }
73
+
74
+ /**
75
+ * Get the user details for the tooltip.
76
+ *
77
+ * @param WP_User $user - User data.
78
+ *
79
+ * @return string HTML representing a tooltip with user's details.
80
+ *
81
+ * @since latest.
82
+ */
83
+ public static function get_tooltip_user_content( $user ) {
84
+
85
+ if ( ! isset( $user->ID ) ) {
86
+ return '';
87
+ }
88
+
89
+ $tooltip = '<strong>' . esc_attr__( 'Username: ', 'wp-security-audit-log' ) . '</strong>' . $user->data->user_login . '</br>';
90
+ $tooltip .= ( ! empty( $user->data->first_name ) ) ? '<strong>' . esc_attr__( 'First name: ', 'wp-security-audit-log' ) . '</strong>' . $user->data->first_name . '</br>' : '';
91
+ $tooltip .= ( ! empty( $user->data->first_name ) ) ? '<strong>' . esc_attr__( 'Last Name: ', 'wp-security-audit-log' ) . '</strong>' . $user->data->first_name . '</br>' : '';
92
+ $tooltip .= '<strong>' . esc_attr__( 'Email: ', 'wp-security-audit-log' ) . '</strong>' . $user->data->user_email . '</br>';
93
+ $tooltip .= '<strong>' . esc_attr__( 'Nickname: ', 'wp-security-audit-log' ) . '</strong>' . $user->data->user_nicename . '</br></br>';
94
+
95
+ return $tooltip;
96
+ }
97
  }
classes/Views/AuditLog.php CHANGED
@@ -210,7 +210,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
210
  ?>
211
  <div class="notice notice-success">
212
  <p><strong><?php esc_html_e( 'Help WP Activity Log improve.', 'wp-security-audit-log' ); ?></strong></p>
213
- <p><?php echo esc_html__( 'Gathering non-sensitive diagnostic data about the plugin install helps us improve the plugin. When you opt-in, you also subscribe to our announcements (you can opt-out at any time). If you would rather opt-out, we will not collect any data.', 'wp-security-audit-log' ) . ' <a href="https://wpactivitylog.com/support/kb/non-sensitive-diagnostic-data/" target="_blank">' . esc_html__( 'Read more about what we collect.', 'wp-security-audit-log' ) . '</a>'; ?></p>
214
  <p>
215
  <a href="javascript:;" class="button button-primary" onclick="wsal_freemius_opt_in(this)" data-opt="yes"><?php esc_html_e( 'Sure, opt-in', 'wp-security-audit-log' ); ?></a>
216
  <a href="javascript:;" class="button" onclick="wsal_freemius_opt_in(this)" data-opt="no"><?php esc_html_e( 'No, thank you', 'wp-security-audit-log' ); ?></a>
210
  ?>
211
  <div class="notice notice-success">
212
  <p><strong><?php esc_html_e( 'Help WP Activity Log improve.', 'wp-security-audit-log' ); ?></strong></p>
213
+ <p><?php echo esc_html__( 'You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data.', 'wp-security-audit-log' ) . ' <a href="https://wpactivitylog.com/support/kb/non-sensitive-diagnostic-data/" target="_blank">' . esc_html__( 'Read more about what data we collect and how.', 'wp-security-audit-log' ) . '</a>'; ?></p>
214
  <p>
215
  <a href="javascript:;" class="button button-primary" onclick="wsal_freemius_opt_in(this)" data-opt="yes"><?php esc_html_e( 'Sure, opt-in', 'wp-security-audit-log' ); ?></a>
216
  <a href="javascript:;" class="button" onclick="wsal_freemius_opt_in(this)" data-opt="no"><?php esc_html_e( 'No, thank you', 'wp-security-audit-log' ); ?></a>
classes/Views/ExternalDB.php CHANGED
@@ -32,7 +32,7 @@ class WSAL_Views_ExternalDB extends WSAL_ExtensionPlaceholderView {
32
  * Method: Get View Name.
33
  */
34
  public function GetName() {
35
- return __( 'DB & Integrations &#8682;', 'wp-security-audit-log' );
36
  }
37
 
38
  /**
32
  * Method: Get View Name.
33
  */
34
  public function GetName() {
35
+ return __( 'Integrations &#8682;', 'wp-security-audit-log' );
36
  }
37
 
38
  /**
classes/Views/Settings.php CHANGED
@@ -62,6 +62,10 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
62
  add_action( 'wp_ajax_AjaxGetAllCPT', array( $this, 'AjaxGetAllCPT' ) );
63
  add_action( 'wp_ajax_wsal_reset_settings', array( $this, 'reset_settings' ) );
64
  add_action( 'wp_ajax_wsal_purge_activity', array( $this, 'purge_activity' ) );
 
 
 
 
65
  }
66
 
67
  /**
@@ -89,27 +93,27 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
89
  'priority' => 10,
90
  ),
91
  'audit-log' => array(
92
- 'name' => __( 'Activity Log Viewer', 'wp-security-audit-log' ),
93
  'link' => add_query_arg( 'tab', 'audit-log', $this->GetUrl() ),
94
  'render' => array( $this, 'tab_audit_log' ),
95
  'save' => array( $this, 'tab_audit_log_save' ),
96
  'priority' => 20,
97
  ),
98
  'file-changes' => array(
99
- 'name' => __( 'File Changes', 'wp-security-audit-log' ),
100
  'link' => add_query_arg( 'tab', 'file-changes', $this->GetUrl() ),
101
  'render' => array( $this, 'tab_file_changes' ),
102
  'priority' => 30,
103
  ),
104
  'exclude-objects' => array(
105
- 'name' => __( 'Exclude Objects', 'wp-security-audit-log' ),
106
  'link' => add_query_arg( 'tab', 'exclude-objects', $this->GetUrl() ),
107
  'render' => array( $this, 'tab_exclude_objects' ),
108
  'save' => array( $this, 'tab_exclude_objects_save' ),
109
  'priority' => 40,
110
  ),
111
  'advanced-settings' => array(
112
- 'name' => __( 'Advanced Settings', 'wp-security-audit-log' ),
113
  'link' => add_query_arg( 'tab', 'advanced-settings', $this->GetUrl() ),
114
  'render' => array( $this, 'tab_advanced_settings' ),
115
  'save' => array( $this, 'tab_advanced_settings_save' ),
@@ -398,8 +402,11 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
398
  <!--
399
  function delete_confirm(elementRef) {
400
  if (elementRef.checked) {
401
- if ( window.confirm('Do you want remove all data when the plugin is deleted?') == false )
402
- elementRef.checked = false;
 
 
 
403
  }
404
  }
405
 
@@ -963,9 +970,12 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
963
  ?>
964
  </p>
965
 
966
- <?php?>
967
- <?php $this->render_retention_settings_table(); ?>
968
- <?php?>
 
 
 
969
 
970
  <h3><?php esc_html_e( 'What timestamp you would like to see in the WordPress activity log?', 'wp-security-audit-log' ); ?></h3>
971
  <p class="description"><?php esc_html_e( 'Note that the WordPress\' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference.', 'wp-security-audit-log' ); ?></p>
@@ -1128,7 +1138,7 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1128
  private function tab_audit_log_save() {
1129
  // Get $_POST global array.
1130
  $post_array = filter_input_array( INPUT_POST );
1131
-
1132
  // Get pruning date.
1133
  $pruning_date = isset( $post_array['PruningDate'] ) ? (int) sanitize_text_field( $post_array['PruningDate'] ) : false;
1134
  $pruning_unit = isset( $post_array['pruning-unit'] ) ? sanitize_text_field( $post_array['pruning-unit'] ) : false;
@@ -1595,18 +1605,9 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1595
  * Method: Ajax Request handler for AjaxGetAllUsers.
1596
  */
1597
  public function AjaxGetAllUsers() {
1598
- // Die if user does not have permission to edit.
1599
- if ( ! $this->_plugin->settings()->CurrentUserCan( 'edit' ) ) {
1600
- die( 'Access Denied.' );
1601
- }
1602
-
1603
  // Filter $_GET array for security.
1604
  $get_array = filter_input_array( INPUT_GET );
1605
-
1606
- // Die if nonce verification failed.
1607
- if ( ! wp_verify_nonce( $get_array['wsal_nonce'], 'wsal-exclude-nonce' ) ) {
1608
- die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
1609
- }
1610
 
1611
  // Fetch users.
1612
  $users = array();
@@ -1623,18 +1624,9 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1623
  * Method: Ajax Request handler for AjaxGetAllRoles.
1624
  */
1625
  public function AjaxGetAllRoles() {
1626
- // Die if user does not have permission to edit.
1627
- if ( ! $this->_plugin->settings()->CurrentUserCan( 'edit' ) ) {
1628
- die( 'Access Denied.' );
1629
- }
1630
-
1631
  // Filter $_GET array for security.
1632
  $get_array = filter_input_array( INPUT_GET );
1633
-
1634
- // Die if nonce verification failed.
1635
- if ( ! wp_verify_nonce( $get_array['wsal_nonce'], 'wsal-exclude-nonce' ) ) {
1636
- die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
1637
- }
1638
 
1639
  // Get roles.
1640
  $roles = array();
@@ -1648,24 +1640,86 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1648
  }
1649
 
1650
  /**
1651
- * Method: Get CPTs ajax handle.
1652
  *
1653
- * @since 2.6.7
 
1654
  */
1655
- public function AjaxGetAllCPT() {
1656
- // Die if user does not have permission to edit.
1657
- if ( ! $this->_plugin->settings()->CurrentUserCan( 'edit' ) ) {
1658
- die( 'Access Denied.' );
1659
- }
 
 
 
1660
 
 
 
 
 
 
 
 
1661
  // Filter $_GET array for security.
1662
  $get_array = filter_input_array( INPUT_GET );
 
1663
 
1664
- // Die if nonce verification failed.
1665
- if ( ! wp_verify_nonce( $get_array['wsal_nonce'], 'wsal-exclude-nonce' ) ) {
1666
- die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1667
  }
1668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1669
  // Get custom post types.
1670
  $custom_post_types = array();
1671
  $post_types = get_post_types( array(
@@ -1689,6 +1743,23 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1689
  exit;
1690
  }
1691
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1692
  /**
1693
  * Method: Reset plugin settings table.
1694
  */
@@ -1765,10 +1836,16 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1765
 
1766
  // Find and replace ` months` in the string.
1767
  $pruning_date = $this->_plugin->settings()->GetPruningDate();
1768
- $pruning_date = str_replace( ' months', '', $pruning_date );
1769
- $pruning_date = str_replace( ' years', '', $pruning_date );
1770
  $pruning_unit = $this->_plugin->settings()->get_pruning_unit();
1771
 
 
 
 
 
 
 
1772
  // Check if pruning limit was enabled for backwards compatibility.
1773
  if ( $this->_plugin->settings()->IsPruningLimitEnabled() ) {
1774
  $nbld = true;
@@ -1789,8 +1866,9 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1789
  <?php if ( $retention_settings_enforced_by_mainwp ): ?> disabled="disabled"<?php endif; ?>
1790
  />
1791
  <select name="pruning-unit" id="pruning-unit"<?php if ( $retention_settings_enforced_by_mainwp ): ?> disabled="disabled"<?php endif; ?> >
1792
- <option value="months" <?php echo ( 'months' === $pruning_unit ) ? 'selected' : false; ?>><?php esc_html_e( 'Months', 'wp-security-audit-log' ); ?></option>
1793
- <option value="years" <?php echo ( 'years' === $pruning_unit ) ? 'selected' : false; ?>><?php esc_html_e( 'Years', 'wp-security-audit-log' ); ?></option>
 
1794
  </select>
1795
  </fieldset>
1796
 
62
  add_action( 'wp_ajax_AjaxGetAllCPT', array( $this, 'AjaxGetAllCPT' ) );
63
  add_action( 'wp_ajax_wsal_reset_settings', array( $this, 'reset_settings' ) );
64
  add_action( 'wp_ajax_wsal_purge_activity', array( $this, 'purge_activity' ) );
65
+ add_action( 'wp_ajax_wsal_ajax_get_all_severities', array( $this, 'ajax_get_all_severities' ) );
66
+ add_action( 'wp_ajax_wsal_ajax_get_all_event_types', array( $this, 'ajax_get_all_event_types' ) );
67
+ add_action( 'wp_ajax_wsal_ajax_get_all_object_types', array( $this, 'ajax_get_all_object_types' ) );
68
+ add_action( 'wp_ajax_wsal_ajax_get_all_event_ids', array( $this, 'ajax_get_all_event_ids' ) );
69
  }
70
 
71
  /**
93
  'priority' => 10,
94
  ),
95
  'audit-log' => array(
96
+ 'name' => __( 'Activity log viewer', 'wp-security-audit-log' ),
97
  'link' => add_query_arg( 'tab', 'audit-log', $this->GetUrl() ),
98
  'render' => array( $this, 'tab_audit_log' ),
99
  'save' => array( $this, 'tab_audit_log_save' ),
100
  'priority' => 20,
101
  ),
102
  'file-changes' => array(
103
+ 'name' => __( 'File changes', 'wp-security-audit-log' ),
104
  'link' => add_query_arg( 'tab', 'file-changes', $this->GetUrl() ),
105
  'render' => array( $this, 'tab_file_changes' ),
106
  'priority' => 30,
107
  ),
108
  'exclude-objects' => array(
109
+ 'name' => __( 'Exclude objects', 'wp-security-audit-log' ),
110
  'link' => add_query_arg( 'tab', 'exclude-objects', $this->GetUrl() ),
111
  'render' => array( $this, 'tab_exclude_objects' ),
112
  'save' => array( $this, 'tab_exclude_objects_save' ),
113
  'priority' => 40,
114
  ),
115
  'advanced-settings' => array(
116
+ 'name' => __( 'Advanced settings', 'wp-security-audit-log' ),
117
  'link' => add_query_arg( 'tab', 'advanced-settings', $this->GetUrl() ),
118
  'render' => array( $this, 'tab_advanced_settings' ),
119
  'save' => array( $this, 'tab_advanced_settings_save' ),
402
  <!--
403
  function delete_confirm(elementRef) {
404
  if (elementRef.checked) {
405
+ if ( window.confirm('<?php esc_html_e( 'Do you want to remove all data when the plugin is deleted?', 'wp-security-audit-log' ); ?>') == false ) {
406
+ elementRef.checked = false;
407
+ // Ensure the "no" option is reselected.
408
+ jQuery('#delete_data_no').click();
409
+ }
410
  }
411
  }
412
 
970
  ?>
971
  </p>
972
 
973
+ <?php
974
+ // Ensure it doesnt load a 2nd time for premium users.
975
+ if ( ! wsal_freemius()->can_use_premium_code() ) {
976
+ $this->render_retention_settings_table();
977
+ }
978
+ ?>
979
 
980
  <h3><?php esc_html_e( 'What timestamp you would like to see in the WordPress activity log?', 'wp-security-audit-log' ); ?></h3>
981
  <p class="description"><?php esc_html_e( 'Note that the WordPress\' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference.', 'wp-security-audit-log' ); ?></p>
1138
  private function tab_audit_log_save() {
1139
  // Get $_POST global array.
1140
  $post_array = filter_input_array( INPUT_POST );
1141
+
1142
  // Get pruning date.
1143
  $pruning_date = isset( $post_array['PruningDate'] ) ? (int) sanitize_text_field( $post_array['PruningDate'] ) : false;
1144
  $pruning_unit = isset( $post_array['pruning-unit'] ) ? sanitize_text_field( $post_array['pruning-unit'] ) : false;
1605
  * Method: Ajax Request handler for AjaxGetAllUsers.
1606
  */
1607
  public function AjaxGetAllUsers() {
 
 
 
 
 
1608
  // Filter $_GET array for security.
1609
  $get_array = filter_input_array( INPUT_GET );
1610
+ $this->check_ajax_request_is_valid( $get_array );
 
 
 
 
1611
 
1612
  // Fetch users.
1613
  $users = array();
1624
  * Method: Ajax Request handler for AjaxGetAllRoles.
1625
  */
1626
  public function AjaxGetAllRoles() {
 
 
 
 
 
1627
  // Filter $_GET array for security.
1628
  $get_array = filter_input_array( INPUT_GET );
1629
+ $this->check_ajax_request_is_valid( $get_array );
 
 
 
 
1630
 
1631
  // Get roles.
1632
  $roles = array();
1640
  }
1641
 
1642
  /**
1643
+ * Create json array of all possible severities.
1644
  *
1645
+ * @return void
1646
+ * @since 4.3.3
1647
  */
1648
+ public function ajax_get_all_severities() {
1649
+ // Filter $_GET array for security.
1650
+ $get_array = filter_input_array( INPUT_GET );
1651
+ $this->check_ajax_request_is_valid( $get_array );
1652
+
1653
+ echo wp_json_encode( array_values( WSAL_ConstantManager::getSeverities() ) );
1654
+ exit;
1655
+ }
1656
 
1657
+ /**
1658
+ * Create json array of all possible event types.
1659
+ *
1660
+ * @return void
1661
+ * @since 4.3.3
1662
+ */
1663
+ public function ajax_get_all_event_types() {
1664
  // Filter $_GET array for security.
1665
  $get_array = filter_input_array( INPUT_GET );
1666
+ $this->check_ajax_request_is_valid( $get_array );
1667
 
1668
+ $event_types = $this->_plugin->alerts->get_event_type_data();
1669
+
1670
+ echo wp_json_encode( array_values( $event_types ) );
1671
+ exit;
1672
+ }
1673
+
1674
+ /**
1675
+ * Create json array of all possible object types.
1676
+ *
1677
+ * @return void
1678
+ * @since 4.3.3
1679
+ */
1680
+ public function ajax_get_all_object_types() {
1681
+ // Filter $_GET array for security.
1682
+ $get_array = filter_input_array( INPUT_GET );
1683
+ $this->check_ajax_request_is_valid( $get_array );
1684
+
1685
+ $event_objects = $this->_plugin->alerts->get_event_objects_data();
1686
+
1687
+ echo wp_json_encode( array_values( $event_objects ) );
1688
+ exit;
1689
+ }
1690
+
1691
+ /**
1692
+ * Create json array of all possible event IDs.
1693
+ *
1694
+ * @return void
1695
+ * @since 4.3.3
1696
+ */
1697
+ public function ajax_get_all_event_ids() {
1698
+
1699
+ $get_array = filter_input_array( INPUT_GET );
1700
+ $this->check_ajax_request_is_valid( $get_array );
1701
+
1702
+ $registered_alerts = $this->_plugin->alerts->GetAlerts();
1703
+
1704
+ $alerts = [];
1705
+ foreach ( $registered_alerts as $alert => $details ) {
1706
+ $alerts[] = (string) $details->code;
1707
  }
1708
 
1709
+ echo wp_json_encode( $alerts );
1710
+ exit;
1711
+ }
1712
+
1713
+ /**
1714
+ * Method: Get CPTs ajax handle.
1715
+ *
1716
+ * @since 2.6.7
1717
+ */
1718
+ public function AjaxGetAllCPT() {
1719
+ // Filter $_GET array for security.
1720
+ $get_array = filter_input_array( INPUT_GET );
1721
+ $this->check_ajax_request_is_valid( $get_array );
1722
+
1723
  // Get custom post types.
1724
  $custom_post_types = array();
1725
  $post_types = get_post_types( array(
1743
  exit;
1744
  }
1745
 
1746
+ /**
1747
+ * Checks if provided GET array is valid and bails if not.
1748
+ *
1749
+ * @param array $get_array
1750
+ * @return void
1751
+ */
1752
+ public function check_ajax_request_is_valid( $get_array ) {
1753
+ // Die if user does not have permission to edit.
1754
+ if ( ! $this->_plugin->settings()->CurrentUserCan( 'edit' ) ) {
1755
+ die( 'Access Denied.' );
1756
+ }
1757
+ // Die if nonce verification failed.
1758
+ if ( ! wp_verify_nonce( $get_array['wsal_nonce'], 'wsal-exclude-nonce' ) ) {
1759
+ die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
1760
+ }
1761
+ }
1762
+
1763
  /**
1764
  * Method: Reset plugin settings table.
1765
  */
1836
 
1837
  // Find and replace ` months` in the string.
1838
  $pruning_date = $this->_plugin->settings()->GetPruningDate();
1839
+ $pruning_date = preg_replace( "/[^0-9]/", "", $pruning_date );
1840
+
1841
  $pruning_unit = $this->_plugin->settings()->get_pruning_unit();
1842
 
1843
+ $pruning_unit_options = [
1844
+ 'days' => esc_html__( 'Days', 'wp-security-audit-log' ),
1845
+ 'months' => esc_html__( 'Months', 'wp-security-audit-log' ),
1846
+ 'years' => esc_html__( 'Years', 'wp-security-audit-log' ),
1847
+ ];
1848
+
1849
  // Check if pruning limit was enabled for backwards compatibility.
1850
  if ( $this->_plugin->settings()->IsPruningLimitEnabled() ) {
1851
  $nbld = true;
1866
  <?php if ( $retention_settings_enforced_by_mainwp ): ?> disabled="disabled"<?php endif; ?>
1867
  />
1868
  <select name="pruning-unit" id="pruning-unit"<?php if ( $retention_settings_enforced_by_mainwp ): ?> disabled="disabled"<?php endif; ?> >
1869
+ <?php foreach ( $pruning_unit_options as $option => $label ) {
1870
+ echo '<option value="' . $option . '" ' . selected( $pruning_unit, $option, true ) . '>' . ucwords( $label ) . '</option>';
1871
+ } ?>
1872
  </select>
1873
  </fieldset>
1874
 
classes/Views/SetupWizard.php CHANGED
@@ -725,7 +725,12 @@ final class WSAL_Views_SetupWizard {
725
  </li>
726
  </ul>
727
 
728
- <p><?php echo wp_kses( __( 'We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback, <a href="https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=wizard+configuration" rel="noopener noreferrer" target="_blank">please get in touch!</a>', 'wp-security-audit-log' ), $this->wsal->allowed_html_tags ); ?></p>
 
 
 
 
 
729
 
730
  <form method="post" class="wsal-setup-form">
731
  <?php wp_nonce_field( 'wsal-step-finish' ); ?>
725
  </li>
726
  </ul>
727
 
728
+ <?php
729
+ // Link to contact form.
730
+ $help_page = 'https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages';
731
+ ?>
732
+
733
+ <p><?php echo wp_kses( __( 'We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback', 'wp-security-audit-log' ), $this->wsal->allowed_html_tags ); ?> <a href="<?php echo esc_url( $help_page ); ?>" rel="noopener noreferrer" target="_blank"><?php esc_html_e( 'please get in touch!', 'wp-security-audit-log' ); ?></a></p>
734
 
735
  <form method="post" class="wsal-setup-form">
736
  <?php wp_nonce_field( 'wsal-step-finish' ); ?>
css/auditlog.css CHANGED
@@ -240,6 +240,9 @@ td.column-user {
240
  .dashicons-dismiss:hover {
241
  color:#c00
242
  }
 
 
 
243
  .dark-tooltip.small{
244
  margin-left: 10px;
245
  font-size: 13px;
240
  .dashicons-dismiss:hover {
241
  color:#c00
242
  }
243
+ .dark-tooltip {
244
+ min-width: 260px;
245
+ }
246
  .dark-tooltip.small{
247
  margin-left: 10px;
248
  font-size: 13px;
defaults.php CHANGED
@@ -117,6 +117,10 @@ function wsaldefaults_build_links( $link_aliases = [] ) {
117
  $result[ __( 'URL', 'wp-security-audit-log' ) ] = '%PostUrl%';
118
  break;
119
 
 
 
 
 
120
  case 'PostUrlIfPlublished':
121
  case 'PostUrlIfPublished':
122
  $result[ __( 'URL', 'wp-security-audit-log' ) ] = '%PostUrlIfPlublished%';
@@ -284,6 +288,19 @@ function wsaldefaults_wsal_init() {
284
  'user',
285
  'login'
286
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  array(
288
  2010,
289
  WSAL_MEDIUM,
@@ -292,7 +309,7 @@ function wsaldefaults_wsal_init() {
292
  [
293
  __( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
294
  ],
295
- [],
296
  'file',
297
  'uploaded'
298
  ),
@@ -2139,6 +2156,33 @@ function wsaldefaults_wsal_init() {
2139
  'post',
2140
  'deleted'
2141
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2142
  array(
2143
  2051,
2144
  WSAL_HIGH,
@@ -2344,6 +2388,31 @@ function wsaldefaults_wsal_init() {
2344
  'deleted'
2345
  ),
2346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2347
  array(
2348
  6043,
2349
  WSAL_HIGH,
@@ -2612,7 +2681,7 @@ function wsaldefaults_wsal_init() {
2612
  6320,
2613
  WSAL_HIGH,
2614
  __( 'Added a new integrations connection', 'wp-security-audit-log' ),
2615
- __( 'Added a new integrations connection %name%', 'wp-security-audit-log' ),
2616
  [
2617
  __( 'Connection type', 'wp-security-audit-log' ) => '%type%',
2618
  ],
117
  $result[ __( 'URL', 'wp-security-audit-log' ) ] = '%PostUrl%';
118
  break;
119
 
120
+ case 'AttachmentUrl':
121
+ $result[ __( 'View attachment page', 'wp-security-audit-log' ) ] = '%AttachmentUrl%';
122
+ break;
123
+
124
  case 'PostUrlIfPlublished':
125
  case 'PostUrlIfPublished':
126
  $result[ __( 'URL', 'wp-security-audit-log' ) ] = '%PostUrlIfPlublished%';
288
  'user',
289
  'login'
290
  ),
291
+ array(
292
+ 1009,
293
+ WSAL_LOW,
294
+ __( 'The plugin terminated an idle session for a user', 'wp-security-audit-log' ),
295
+ __( 'The plugin terminated an idle session for the user %username%.', 'wp-security-audit-log' ),
296
+ [
297
+ __( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%',
298
+ __( 'Session ID', 'wp-security-audit-log' ) => '%SessionID%'
299
+ ],
300
+ [],
301
+ 'user',
302
+ 'logout'
303
+ ),
304
  array(
305
  2010,
306
  WSAL_MEDIUM,
309
  [
310
  __( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
311
  ],
312
+ wsaldefaults_build_links( [ 'AttachmentUrl' ] ),
313
  'file',
314
  'uploaded'
315
  ),
2156
  'post',
2157
  'deleted'
2158
  ),
2159
+
2160
+ array(
2161
+ 5028,
2162
+ WSAL_MEDIUM,
2163
+ __( 'Changed the Automatic updates setting for a plugin.', 'wp-security-audit-log' ),
2164
+ __( 'Changed the Automatic updates setting for the plugin %name%.', 'wp-security-audit-log' ),
2165
+ [
2166
+ __( 'Install location:', 'wp-security-audit-log' ) => '%install_directory%',
2167
+ ],
2168
+ [],
2169
+ 'wp-activity-log',
2170
+ 'enabled'
2171
+ ),
2172
+
2173
+ array(
2174
+ 5029,
2175
+ WSAL_MEDIUM,
2176
+ __( 'Changed the Automatic updates setting for a theme.', 'wp-security-audit-log' ),
2177
+ __( 'Changed the Automatic updates setting for the theme %name%.', 'wp-security-audit-log' ),
2178
+ [
2179
+ __( 'Install location:', 'wp-security-audit-log' ) => '%install_directory%',
2180
+ ],
2181
+ [],
2182
+ 'wp-activity-log',
2183
+ 'enabled'
2184
+ ),
2185
+
2186
  array(
2187
  2051,
2188
  WSAL_HIGH,
2388
  'deleted'
2389
  ),
2390
 
2391
+ array(
2392
+ 6038,
2393
+ WSAL_CRITICAL,
2394
+ __( 'Deleted all the data about a user from the activity log.', 'wp-security-audit-log' ),
2395
+ __( 'Deleted all the data about the user <strong>%user%</strong> from the activity log.', 'wp-security-audit-log' ),
2396
+ [
2397
+ __( 'Role', 'wp-security-audit-log' ) => '%Role%',
2398
+ __( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
2399
+ __( 'Last name', 'wp-security-audit-log' ) => '%LastName%'
2400
+ ],
2401
+ [],
2402
+ 'wp-activity-log',
2403
+ 'deleted'
2404
+ ),
2405
+ array(
2406
+ 6039,
2407
+ WSAL_CRITICAL,
2408
+ __( 'Deleted all the data of a specific type from the activity log.', 'wp-security-audit-log' ),
2409
+ __( 'Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log.', 'wp-security-audit-log' ),
2410
+ [],
2411
+ [],
2412
+ 'wp-activity-log',
2413
+ 'deleted'
2414
+ ),
2415
+
2416
  array(
2417
  6043,
2418
  WSAL_HIGH,
2681
  6320,
2682
  WSAL_HIGH,
2683
  __( 'Added a new integrations connection', 'wp-security-audit-log' ),
2684
+ __( 'Added / removed the integrations connection %name%', 'wp-security-audit-log' ),
2685
  [
2686
  __( 'Connection type', 'wp-security-audit-log' ) => '%type%',
2687
  ],
img/addons/tablepress.png ADDED
Binary file
js/settings.js CHANGED
@@ -250,3 +250,30 @@ jQuery( document ).ready( function() {
250
  });
251
 
252
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  });
251
 
252
  });
253
+
254
+ jQuery( document ).ready( function() {
255
+
256
+ var severitiesUrl = ajaxurl + '?action=wsal_ajax_get_all_severities&wsal_nonce=' + wsal_data.wp_nonce;
257
+ jQuery( '#SeveritiesQueryBox' ).autocomplete({
258
+ source: severitiesUrl,
259
+ minLength: 1
260
+ });
261
+
262
+ var eventTypesUrl = ajaxurl + '?action=wsal_ajax_get_all_event_types&wsal_nonce=' + wsal_data.wp_nonce;
263
+ jQuery( '#EventTypeQueryBox' ).autocomplete({
264
+ source: eventTypesUrl,
265
+ minLength: 1
266
+ });
267
+
268
+ var objectTypesUrl = ajaxurl + '?action=wsal_ajax_get_all_object_types&wsal_nonce=' + wsal_data.wp_nonce;
269
+ jQuery( '#ObjectTypeQueryBox' ).autocomplete({
270
+ source: objectTypesUrl,
271
+ minLength: 1
272
+ });
273
+
274
+ var eventIDTypesUrl = ajaxurl + '?action=wsal_ajax_get_all_event_ids&wsal_nonce=' + wsal_data.wp_nonce;
275
+ jQuery( '#EventIDQueryBox' ).autocomplete({
276
+ source: eventIDTypesUrl,
277
+ minLength: 1
278
+ });
279
+ });
languages/wp-security-audit-log.pot CHANGED
@@ -16,2806 +16,2837 @@ msgstr ""
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: defaults.php:173
20
  msgid "Critical severity events."
21
  msgstr ""
22
 
23
- #: defaults.php:175
24
  msgid "High severity events."
25
  msgstr ""
26
 
27
- #: defaults.php:177
28
  msgid "Medium severity events."
29
  msgstr ""
30
 
31
- #: defaults.php:179
32
  msgid "Low severity events."
33
  msgstr ""
34
 
35
- #: defaults.php:181
36
  msgid "Informational events."
37
  msgstr ""
38
 
39
- #: defaults.php:186
40
  msgid "Users Logins & Sessions Events"
41
  msgstr ""
42
 
43
- #: defaults.php:187, extensions/email-notifications/classes/Notifications.php:1339
44
  msgid "User Activity"
45
  msgstr ""
46
 
47
- #: defaults.php:191
48
  msgid "User logged in"
49
  msgstr ""
50
 
51
- #: defaults.php:192
52
  msgid "User logged in."
53
  msgstr ""
54
 
55
- #: defaults.php:201
56
  msgid "User logged out"
57
  msgstr ""
58
 
59
- #: defaults.php:202
60
  msgid "User logged out."
61
  msgstr ""
62
 
63
- #: defaults.php:211
64
  msgid "Login failed"
65
  msgstr ""
66
 
67
- #: defaults.php:212, defaults.php:222
68
  msgid "%Attempts% failed login(s)."
69
  msgstr ""
70
 
71
- #: defaults.php:221
72
  msgid "Login failed / non existing user"
73
  msgstr ""
74
 
75
- #: defaults.php:231
76
  msgid "Login blocked"
77
  msgstr ""
78
 
79
- #: defaults.php:232
80
  msgid "Login blocked because other session(s) already exist for this user."
81
  msgstr ""
82
 
83
- #: defaults.php:234, extensions/email-notifications/classes/Common.php:1106
84
  msgid "IP address"
85
  msgstr ""
86
 
87
- #: defaults.php:243
88
  msgid "User logged in with existing session(s)"
89
  msgstr ""
90
 
91
- #: defaults.php:244
92
  msgid "User logged in however there are other session(s) already for this user."
93
  msgstr ""
94
 
95
- #: defaults.php:246, extensions/reports/classes/HtmlReportGenerator.php:130
96
  msgid "IP address(es)"
97
  msgstr ""
98
 
99
- #: defaults.php:255
100
  msgid "User logged out all other sessions with the same username"
101
  msgstr ""
102
 
103
- #: defaults.php:256
104
  msgid "Logged out all other sessions with the same user."
105
  msgstr ""
106
 
107
- #: defaults.php:265
108
  msgid "User session destroyed and logged out"
109
  msgstr ""
110
 
111
- #: defaults.php:266
112
  msgid "Terminated the session of the user %TargetUserName%."
113
  msgstr ""
114
 
115
- #: defaults.php:268, defaults.php:281, defaults.php:1701, defaults.php:1729, defaults.php:1743, defaults.php:1757, defaults.php:1772, defaults.php:1787, defaults.php:1801, defaults.php:1815, defaults.php:1831, defaults.php:1846, defaults.php:1860, defaults.php:1874, defaults.php:1889, defaults.php:1905, defaults.php:1919, defaults.php:1934, defaults.php:1948, defaults.php:1962, defaults.php:1979, defaults.php:1993, defaults.php:2007, extensions/reports/classes/CsvReportGenerator.php:82, extensions/reports/classes/CsvReportGenerator.php:66, extensions/reports/classes/HtmlReportGenerator.php:246, extensions/reports/classes/HtmlReportGenerator.php:222
116
  msgid "Role"
117
  msgstr ""
118
 
119
- #: defaults.php:269
120
  msgid "Session ID"
121
  msgstr ""
122
 
123
- #: defaults.php:278
124
  msgid "Switched to another user"
125
  msgstr ""
126
 
127
- #: defaults.php:279
128
  msgid "Switched the session to being logged in as %TargetUserName%."
129
  msgstr ""
130
 
131
- #: defaults.php:290
 
 
 
 
 
 
 
 
132
  msgid "User uploaded file to the Uploads directory"
133
  msgstr ""
134
 
135
- #: defaults.php:291
136
  msgid "Uploaded a file called %FileName%."
137
  msgstr ""
138
 
139
- #: defaults.php:293, defaults.php:305
140
  msgid "Directory"
141
  msgstr ""
142
 
143
- #: defaults.php:302
144
  msgid "User deleted file from Uploads directory"
145
  msgstr ""
146
 
147
- #: defaults.php:303
148
  msgid "Deleted the file %FileName%."
149
  msgstr ""
150
 
151
- #: defaults.php:314
152
  msgid "User requested a password reset"
153
  msgstr ""
154
 
155
- #: defaults.php:315
156
  msgid "User requested a password reset. This does not mean that the password was changed."
157
  msgstr ""
158
 
159
- #: defaults.php:324
160
  msgid "Content & Comments"
161
  msgstr ""
162
 
163
- #: defaults.php:325
164
  msgid "Content"
165
  msgstr ""
166
 
167
- #: defaults.php:329
168
  msgid "User created a new post and saved it as draft"
169
  msgstr ""
170
 
171
- #: defaults.php:330
172
  msgid "Created the post %PostTitle%."
173
  msgstr ""
174
 
175
- #: defaults.php:332, defaults.php:346, defaults.php:360, defaults.php:374, defaults.php:388, defaults.php:402, defaults.php:416, defaults.php:432, defaults.php:447, defaults.php:461, defaults.php:476, defaults.php:491, defaults.php:506, defaults.php:521, defaults.php:535, defaults.php:549, defaults.php:563, defaults.php:577, defaults.php:591, defaults.php:605, defaults.php:619, defaults.php:633, defaults.php:647, defaults.php:661, defaults.php:677, defaults.php:791, defaults.php:870, defaults.php:885, defaults.php:901, defaults.php:916, defaults.php:933, defaults.php:948, defaults.php:969, defaults.php:984, defaults.php:999, defaults.php:1014, defaults.php:1029, defaults.php:1044, defaults.php:1059, defaults.php:1074, defaults.php:1089, defaults.php:1104, defaults.php:1123, defaults.php:2118, defaults.php:2133, extensions/search/classes/FilterManager.php:503, extensions/search/classes/Filters/PostIDFilter.php:29, extensions/search/classes/Filters/PostIDFilter.php:57
176
  msgid "Post ID"
177
  msgstr ""
178
 
179
- #: defaults.php:333, defaults.php:347, defaults.php:361, defaults.php:375, defaults.php:389, defaults.php:403, defaults.php:417, defaults.php:433, defaults.php:448, defaults.php:462, defaults.php:477, defaults.php:492, defaults.php:507, defaults.php:522, defaults.php:536, defaults.php:550, defaults.php:564, defaults.php:578, defaults.php:592, defaults.php:606, defaults.php:620, defaults.php:634, defaults.php:648, defaults.php:662, defaults.php:678, defaults.php:792, defaults.php:871, defaults.php:886, defaults.php:902, defaults.php:917, defaults.php:934, defaults.php:949, defaults.php:970, defaults.php:985, defaults.php:1000, defaults.php:1015, defaults.php:1030, defaults.php:1045, defaults.php:1060, defaults.php:1075, defaults.php:1090, defaults.php:1105, defaults.php:1124, defaults.php:2119, defaults.php:2134
180
  msgid "Post type"
181
  msgstr ""
182
 
183
- #: defaults.php:334, defaults.php:348, defaults.php:362, defaults.php:376, defaults.php:390, defaults.php:404, defaults.php:418, defaults.php:434, defaults.php:463, defaults.php:478, defaults.php:493, defaults.php:508, defaults.php:523, defaults.php:537, defaults.php:551, defaults.php:565, defaults.php:579, defaults.php:593, defaults.php:607, defaults.php:621, defaults.php:635, defaults.php:649, defaults.php:663, defaults.php:679, defaults.php:793, defaults.php:872, defaults.php:887, defaults.php:903, defaults.php:918, defaults.php:935, defaults.php:950, defaults.php:971, defaults.php:986, defaults.php:1001, defaults.php:1016, defaults.php:1031, defaults.php:1046, defaults.php:1061, defaults.php:1076, defaults.php:1091, defaults.php:1106, defaults.php:1125, defaults.php:2120, defaults.php:2135
184
  msgid "Post status"
185
  msgstr ""
186
 
187
- #: defaults.php:343
188
  msgid "User published a post"
189
  msgstr ""
190
 
191
- #: defaults.php:344
192
  msgid "Published the post %PostTitle%."
193
  msgstr ""
194
 
195
- #: defaults.php:357
196
  msgid "User modified a post"
197
  msgstr ""
198
 
199
- #: defaults.php:358
200
  msgid "Modified the post %PostTitle%."
201
  msgstr ""
202
 
203
- #: defaults.php:371
204
  msgid "User permanently deleted a post from the trash"
205
  msgstr ""
206
 
207
- #: defaults.php:372
208
  msgid "Permanently deleted the post %PostTitle%."
209
  msgstr ""
210
 
211
- #: defaults.php:385
212
  msgid "User moved a post to the trash"
213
  msgstr ""
214
 
215
- #: defaults.php:386
216
  msgid "Moved the post %PostTitle% to trash."
217
  msgstr ""
218
 
219
- #: defaults.php:399
220
  msgid "User restored a post from trash"
221
  msgstr ""
222
 
223
- #: defaults.php:400
224
  msgid "Restored the post %PostTitle% from trash."
225
  msgstr ""
226
 
227
- #: defaults.php:413
228
  msgid "User changed post URL"
229
  msgstr ""
230
 
231
- #: defaults.php:414
232
  msgid "Changed the URL of the post %PostTitle%."
233
  msgstr ""
234
 
235
- #: defaults.php:419, defaults.php:2874, defaults.php:2886
236
  msgid "Previous URL"
237
  msgstr ""
238
 
239
- #: defaults.php:420
240
  msgid "New URL"
241
  msgstr ""
242
 
243
- #: defaults.php:429
244
  msgid "User changed post author"
245
  msgstr ""
246
 
247
- #: defaults.php:430
248
  msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
249
  msgstr ""
250
 
251
- #: defaults.php:435
252
  msgid "Previous author"
253
  msgstr ""
254
 
255
- #: defaults.php:444
256
  msgid "User changed post status"
257
  msgstr ""
258
 
259
- #: defaults.php:445
260
  msgid "Changed the status of the post %PostTitle% to %NewStatus%."
261
  msgstr ""
262
 
263
- #: defaults.php:449
264
  msgid "Previous status"
265
  msgstr ""
266
 
267
- #: defaults.php:458
268
  msgid "User changed the visibility of a post"
269
  msgstr ""
270
 
271
- #: defaults.php:459
272
  msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
273
  msgstr ""
274
 
275
- #: defaults.php:464
276
  msgid "Previous visibility status"
277
  msgstr ""
278
 
279
- #: defaults.php:473
280
  msgid "User changed the date of a post"
281
  msgstr ""
282
 
283
- #: defaults.php:474
284
  msgid "Changed the date of the post %PostTitle% to %NewDate%."
285
  msgstr ""
286
 
287
- #: defaults.php:479
288
  msgid "Previous date"
289
  msgstr ""
290
 
291
- #: defaults.php:488
292
  msgid "User changed the parent of a page"
293
  msgstr ""
294
 
295
- #: defaults.php:489
296
  msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
297
  msgstr ""
298
 
299
- #: defaults.php:494, defaults.php:831
300
  msgid "Previous parent"
301
  msgstr ""
302
 
303
- #: defaults.php:503
304
  msgid "User changed the template of a page"
305
  msgstr ""
306
 
307
- #: defaults.php:504
308
  msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
309
  msgstr ""
310
 
311
- #: defaults.php:509
312
  msgid "Previous template"
313
  msgstr ""
314
 
315
- #: defaults.php:518
316
  msgid "User set a post as sticky"
317
  msgstr ""
318
 
319
- #: defaults.php:519
320
  msgid "Set the post %PostTitle% as sticky."
321
  msgstr ""
322
 
323
- #: defaults.php:532
324
  msgid "User removed post from sticky"
325
  msgstr ""
326
 
327
- #: defaults.php:533
328
  msgid "Removed the post %PostTitle% from sticky."
329
  msgstr ""
330
 
331
- #: defaults.php:546
332
  msgid "User modified the content of a post"
333
  msgstr ""
334
 
335
- #: defaults.php:547
336
  msgid "Modified the content of the post %PostTitle%."
337
  msgstr ""
338
 
339
- #: defaults.php:560
340
  msgid "User submitted a post for review"
341
  msgstr ""
342
 
343
- #: defaults.php:561
344
  msgid "Submitted the post %PostTitle% for review."
345
  msgstr ""
346
 
347
- #: defaults.php:574
348
  msgid "User scheduled a post"
349
  msgstr ""
350
 
351
- #: defaults.php:575
352
  msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
353
  msgstr ""
354
 
355
- #: defaults.php:588
356
  msgid "User changed title of a post"
357
  msgstr ""
358
 
359
- #: defaults.php:589
360
  msgid "Changed the title of the post %OldTitle% to %NewTitle%."
361
  msgstr ""
362
 
363
- #: defaults.php:602
364
  msgid "User opened a post in the editor"
365
  msgstr ""
366
 
367
- #: defaults.php:603
368
  msgid "Opened the post %PostTitle% in the editor."
369
  msgstr ""
370
 
371
- #: defaults.php:616
372
  msgid "User viewed a post"
373
  msgstr ""
374
 
375
- #: defaults.php:617
376
  msgid "Viewed the post %PostTitle%."
377
  msgstr ""
378
 
379
- #: defaults.php:630
380
  msgid "User enabled/disabled comments in a post"
381
  msgstr ""
382
 
383
- #: defaults.php:631
384
  msgid "Comments in the post %PostTitle%."
385
  msgstr ""
386
 
387
- #: defaults.php:644
388
  msgid "User enabled/disabled trackbacks and pingbacks in a post"
389
  msgstr ""
390
 
391
- #: defaults.php:645
392
  msgid "Pingbacks and Trackbacks in the post %PostTitle%."
393
  msgstr ""
394
 
395
- #: defaults.php:658
396
  msgid "User updated the excerpt in a post"
397
  msgstr ""
398
 
399
- #: defaults.php:659
400
  msgid "The excerpt of the post %PostTitle%."
401
  msgstr ""
402
 
403
- #: defaults.php:664
404
  msgid "Previous excerpt entry"
405
  msgstr ""
406
 
407
- #: defaults.php:665
408
  msgid "New excerpt entry"
409
  msgstr ""
410
 
411
- #: defaults.php:674
412
  msgid "User updated the featured image in a post"
413
  msgstr ""
414
 
415
- #: defaults.php:675
416
  msgid "The featured image of the post %PostTitle%."
417
  msgstr ""
418
 
419
- #: defaults.php:680
420
  msgid "Previous image"
421
  msgstr ""
422
 
423
- #: defaults.php:681
424
  msgid "New image"
425
  msgstr ""
426
 
427
- #: defaults.php:689
428
  msgid "Tags"
429
  msgstr ""
430
 
431
- #: defaults.php:693
432
  msgid "User added post tag"
433
  msgstr ""
434
 
435
- #: defaults.php:694
436
  msgid "Added tag(s) to the post %PostTitle%."
437
  msgstr ""
438
 
439
- #: defaults.php:696, defaults.php:711, classes/AuditLogGridView.php:271, classes/AuditLogGridView.php:295, classes/AuditLogListView.php:269, classes/AuditLogListView.php:297
440
  msgid "ID"
441
  msgstr ""
442
 
443
- #: defaults.php:697, defaults.php:712, extensions/external-db/classes/Connections.php:97, extensions/external-db/classes/Mirroring.php:92, extensions/reports/classes/CsvReportGenerator.php:78, extensions/reports/classes/HtmlReportGenerator.php:242
444
  msgid "Type"
445
  msgstr ""
446
 
447
- #: defaults.php:698, defaults.php:713
448
  msgid "Status"
449
  msgstr ""
450
 
451
- #: defaults.php:699
452
  msgid "Added tag(s)"
453
  msgstr ""
454
 
455
- #: defaults.php:708
456
  msgid "User removed post tag"
457
  msgstr ""
458
 
459
- #: defaults.php:709
460
  msgid "Removed tag(s) from the post %PostTitle%."
461
  msgstr ""
462
 
463
- #: defaults.php:714
464
  msgid "Removed tag(s)"
465
  msgstr ""
466
 
467
- #: defaults.php:723
468
  msgid "User created new tag"
469
  msgstr ""
470
 
471
- #: defaults.php:724
472
  msgid "Created the tag %TagName%."
473
  msgstr ""
474
 
475
- #: defaults.php:726, defaults.php:738, defaults.php:750, defaults.php:774, defaults.php:806, defaults.php:818, defaults.php:830, defaults.php:843
476
  msgid "Slug"
477
  msgstr ""
478
 
479
- #: defaults.php:735
480
  msgid "User deleted tag"
481
  msgstr ""
482
 
483
- #: defaults.php:736
484
  msgid "Deleted the tag %TagName%."
485
  msgstr ""
486
 
487
- #: defaults.php:747
488
  msgid "Renamed the tag %old_name% to %new_name%."
489
  msgstr ""
490
 
491
- #: defaults.php:759
492
  msgid "User changed tag slug"
493
  msgstr ""
494
 
495
- #: defaults.php:760
496
  msgid "Changed the slug of the tag %tag% to %new_slug%."
497
  msgstr ""
498
 
499
- #: defaults.php:762, defaults.php:855
500
  msgid "Previous slug"
501
  msgstr ""
502
 
503
- #: defaults.php:771
504
  msgid "User changed tag description"
505
  msgstr ""
506
 
507
- #: defaults.php:772
508
  msgid "Changed the description of the tag %tag%."
509
  msgstr ""
510
 
511
- #: defaults.php:775
512
  msgid "Previous description"
513
  msgstr ""
514
 
515
- #: defaults.php:776
516
  msgid "New description"
517
  msgstr ""
518
 
519
- #: defaults.php:784
520
  msgid "Categories"
521
  msgstr ""
522
 
523
- #: defaults.php:788
524
  msgid "User changed post category"
525
  msgstr ""
526
 
527
- #: defaults.php:789
528
  msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
529
  msgstr ""
530
 
531
- #: defaults.php:794
532
  msgid "Previous category(ies)"
533
  msgstr ""
534
 
535
- #: defaults.php:803
536
  msgid "User created new category"
537
  msgstr ""
538
 
539
- #: defaults.php:804
540
  msgid "Created the category %CategoryName%."
541
  msgstr ""
542
 
543
- #: defaults.php:815
544
  msgid "User deleted category"
545
  msgstr ""
546
 
547
- #: defaults.php:816
548
  msgid "Deleted the category %CategoryName%."
549
  msgstr ""
550
 
551
- #: defaults.php:827
552
  msgid "Changed the parent of a category"
553
  msgstr ""
554
 
555
- #: defaults.php:828
556
  msgid "Changed the parent of the category %CategoryName% to %NewParent%."
557
  msgstr ""
558
 
559
- #: defaults.php:840
560
  msgid "User changed category name"
561
  msgstr ""
562
 
563
- #: defaults.php:841
564
  msgid "Renamed the category %old_name% to %new_name%."
565
  msgstr ""
566
 
567
- #: defaults.php:852
568
  msgid "User changed category slug"
569
  msgstr ""
570
 
571
- #: defaults.php:853
572
  msgid "Changed the slug of the category %CategoryName% to %new_slug%."
573
  msgstr ""
574
 
575
- #: defaults.php:863
576
  msgid "Custom Fields"
577
  msgstr ""
578
 
579
- #: defaults.php:867
580
  msgid "User created a custom field for a post"
581
  msgstr ""
582
 
583
- #: defaults.php:868
584
  msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
585
  msgstr ""
586
 
587
- #: defaults.php:873, defaults.php:1834
588
  msgid "Custom field value"
589
  msgstr ""
590
 
591
- #: defaults.php:882
592
  msgid "User updated a custom field value for a post"
593
  msgstr ""
594
 
595
- #: defaults.php:883
596
  msgid "Modified the value of the custom field %MetaKey% in the post %PostTitle%."
597
  msgstr ""
598
 
599
- #: defaults.php:888
600
  msgid "Previous custom field value"
601
  msgstr ""
602
 
603
- #: defaults.php:889
604
  msgid "New custom field value"
605
  msgstr ""
606
 
607
- #: defaults.php:898
608
  msgid "User deleted a custom field from a post"
609
  msgstr ""
610
 
611
- #: defaults.php:899
612
  msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
613
  msgstr ""
614
 
615
- #: defaults.php:912
616
  msgid "User updated a custom field name for a post"
617
  msgstr ""
618
 
619
- #: defaults.php:913
620
  msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
621
  msgstr ""
622
 
623
- #: defaults.php:915, classes/AlertManager.php:1067
624
  msgid "Post"
625
  msgstr ""
626
 
627
- #: defaults.php:926
628
  msgid "Custom Fields (ACF)"
629
  msgstr ""
630
 
631
- #: defaults.php:930
632
  msgid "User added relationship to a custom field value for a post"
633
  msgstr ""
634
 
635
- #: defaults.php:931
636
  msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
637
  msgstr ""
638
 
639
- #: defaults.php:936
640
  msgid "New relationships"
641
  msgstr ""
642
 
643
- #: defaults.php:945
644
  msgid "User removed relationship from a custom field value for a post"
645
  msgstr ""
646
 
647
- #: defaults.php:946
648
  msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
649
  msgstr ""
650
 
651
- #: defaults.php:951
652
  msgid "Removed relationships"
653
  msgstr ""
654
 
655
- #: defaults.php:962
656
  msgid "Comments"
657
  msgstr ""
658
 
659
- #: defaults.php:966
660
  msgid "User approved a comment"
661
  msgstr ""
662
 
663
- #: defaults.php:967
664
  msgid "Approved the comment posted by %Author% on the post %PostTitle%."
665
  msgstr ""
666
 
667
- #: defaults.php:972, defaults.php:987, defaults.php:1002, defaults.php:1017, defaults.php:1032, defaults.php:1047, defaults.php:1062, defaults.php:1077, defaults.php:1092, defaults.php:1107, defaults.php:1126
668
  msgid "Comment ID"
669
  msgstr ""
670
 
671
- #: defaults.php:981
672
  msgid "User unapproved a comment"
673
  msgstr ""
674
 
675
- #: defaults.php:982
676
  msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
677
  msgstr ""
678
 
679
- #: defaults.php:996
680
  msgid "User replied to a comment"
681
  msgstr ""
682
 
683
- #: defaults.php:997
684
  msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
685
  msgstr ""
686
 
687
- #: defaults.php:1011
688
  msgid "User edited a comment"
689
  msgstr ""
690
 
691
- #: defaults.php:1012
692
  msgid "Edited the comment posted by %Author% on the post %PostTitle%."
693
  msgstr ""
694
 
695
- #: defaults.php:1026
696
  msgid "User marked a comment as Spam"
697
  msgstr ""
698
 
699
- #: defaults.php:1027
700
  msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
701
  msgstr ""
702
 
703
- #: defaults.php:1041
704
  msgid "User marked a comment as Not Spam"
705
  msgstr ""
706
 
707
- #: defaults.php:1042
708
  msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
709
  msgstr ""
710
 
711
- #: defaults.php:1056
712
  msgid "User moved a comment to trash"
713
  msgstr ""
714
 
715
- #: defaults.php:1057
716
  msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
717
  msgstr ""
718
 
719
- #: defaults.php:1071
720
  msgid "User restored a comment from the trash"
721
  msgstr ""
722
 
723
- #: defaults.php:1072
724
  msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
725
  msgstr ""
726
 
727
- #: defaults.php:1086
728
  msgid "User permanently deleted a comment"
729
  msgstr ""
730
 
731
- #: defaults.php:1087
732
  msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
733
  msgstr ""
734
 
735
- #: defaults.php:1101
736
  msgid "User posted a comment"
737
  msgstr ""
738
 
739
- #: defaults.php:1102, defaults.php:1121
740
  msgid "Posted a comment on the post %PostTitle%."
741
  msgstr ""
742
 
743
- #: defaults.php:1120
744
  msgid "Visitor posted a comment"
745
  msgstr ""
746
 
747
- #: defaults.php:1137
748
  msgid "Widgets"
749
  msgstr ""
750
 
751
- #: defaults.php:1141
752
  msgid "User added a new widget"
753
  msgstr ""
754
 
755
- #: defaults.php:1142
756
  msgid "Added a new %WidgetName% widget in %Sidebar%."
757
  msgstr ""
758
 
759
- #: defaults.php:1151
760
  msgid "User modified a widget"
761
  msgstr ""
762
 
763
- #: defaults.php:1152
764
  msgid "Modified the %WidgetName% widget in %Sidebar%."
765
  msgstr ""
766
 
767
- #: defaults.php:1161
768
  msgid "User deleted widget"
769
  msgstr ""
770
 
771
- #: defaults.php:1162
772
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
773
  msgstr ""
774
 
775
- #: defaults.php:1171
776
  msgid "User moved widget"
777
  msgstr ""
778
 
779
- #: defaults.php:1172
780
  msgid "Moved the %WidgetName% widget."
781
  msgstr ""
782
 
783
- #: defaults.php:1174, extensions/reports/inc/wsal-reporting-view.inc.php:1640
784
  msgid "From"
785
  msgstr ""
786
 
787
- #: defaults.php:1175, extensions/reports/inc/wsal-reporting-view.inc.php:1649
788
  msgid "To"
789
  msgstr ""
790
 
791
- #: defaults.php:1184
792
  msgid "User changed widget position"
793
  msgstr ""
794
 
795
- #: defaults.php:1185
796
  msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
797
  msgstr ""
798
 
799
- #: defaults.php:1196
800
  msgid "Menus"
801
  msgstr ""
802
 
803
- #: defaults.php:1200
804
  msgid "User created new menu"
805
  msgstr ""
806
 
807
- #: defaults.php:1201
808
  msgid "New menu called %MenuName%."
809
  msgstr ""
810
 
811
- #: defaults.php:1210
812
  msgid "User added content to a menu"
813
  msgstr ""
814
 
815
- #: defaults.php:1211
816
  msgid "Added the item %ContentName% to the menu %MenuName%."
817
  msgstr ""
818
 
819
- #: defaults.php:1213, defaults.php:1225, defaults.php:1257
820
  msgid "Item type"
821
  msgstr ""
822
 
823
- #: defaults.php:1222
824
  msgid "User removed content from a menu"
825
  msgstr ""
826
 
827
- #: defaults.php:1223
828
  msgid "Removed the item %ContentName% from the menu %MenuName%."
829
  msgstr ""
830
 
831
- #: defaults.php:1234
832
  msgid "User deleted menu"
833
  msgstr ""
834
 
835
- #: defaults.php:1235
836
  msgid "Deleted the menu %MenuName%."
837
  msgstr ""
838
 
839
- #: defaults.php:1244
840
  msgid "User changed menu setting"
841
  msgstr ""
842
 
843
- #: defaults.php:1245
844
  msgid "The setting %MenuSetting% in the menu %MenuName%."
845
  msgstr ""
846
 
847
- #: defaults.php:1254
848
  msgid "User modified content in a menu"
849
  msgstr ""
850
 
851
- #: defaults.php:1255
852
  msgid "Modified the item %ContentName% in the menu %MenuName%."
853
  msgstr ""
854
 
855
- #: defaults.php:1266
856
  msgid "User changed name of a menu"
857
  msgstr ""
858
 
859
- #: defaults.php:1267
860
  msgid "Renamed the menu %OldMenuName% to %MenuName%."
861
  msgstr ""
862
 
863
- #: defaults.php:1276
864
  msgid "User changed order of the objects in a menu"
865
  msgstr ""
866
 
867
- #: defaults.php:1277
868
  msgid "Changed the order of the items in the menu %MenuName%."
869
  msgstr ""
870
 
871
- #: defaults.php:1286
872
  msgid "User moved objects as a sub-item"
873
  msgstr ""
874
 
875
- #: defaults.php:1287
876
  msgid "Moved items as sub-items in the menu %MenuName%."
877
  msgstr ""
878
 
879
- #: defaults.php:1289
880
  msgid "Moved item"
881
  msgstr ""
882
 
883
- #: defaults.php:1290
884
  msgid "as a sub-item of"
885
  msgstr ""
886
 
887
- #: defaults.php:1306, extensions/reports/classes/HtmlReportGenerator.php:541
888
  msgid "Custom Post Types"
889
  msgstr ""
890
 
891
- #: defaults.php:1310
892
  msgid "User modified a draft blog post"
893
  msgstr ""
894
 
895
- #: defaults.php:1311
896
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
897
  msgstr ""
898
 
899
- #: defaults.php:1316
900
  msgid "User created a new post with custom post type and saved it as draft"
901
  msgstr ""
902
 
903
- #: defaults.php:1317
904
  msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
905
  msgstr ""
906
 
907
- #: defaults.php:1322
908
  msgid "User published a post with custom post type"
909
  msgstr ""
910
 
911
- #: defaults.php:1323
912
  msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
913
  msgstr ""
914
 
915
- #: defaults.php:1328
916
  msgid "User modified a post with custom post type"
917
  msgstr ""
918
 
919
- #: defaults.php:1329
920
  msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
921
  msgstr ""
922
 
923
- #: defaults.php:1334
924
  msgid "User modified a draft post with custom post type"
925
  msgstr ""
926
 
927
- #: defaults.php:1335
928
  msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
929
  msgstr ""
930
 
931
- #: defaults.php:1340
932
  msgid "User permanently deleted post with custom post type"
933
  msgstr ""
934
 
935
- #: defaults.php:1341
936
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
937
  msgstr ""
938
 
939
- #: defaults.php:1346
940
  msgid "User moved post with custom post type to trash"
941
  msgstr ""
942
 
943
- #: defaults.php:1347
944
  msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
945
  msgstr ""
946
 
947
- #: defaults.php:1352
948
  msgid "User restored post with custom post type from trash"
949
  msgstr ""
950
 
951
- #: defaults.php:1353
952
  msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
953
  msgstr ""
954
 
955
- #: defaults.php:1358
956
  msgid "User changed the category of a post with custom post type"
957
  msgstr ""
958
 
959
- #: defaults.php:1359
960
  msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
961
  msgstr ""
962
 
963
- #: defaults.php:1364
964
  msgid "User changed the URL of a post with custom post type"
965
  msgstr ""
966
 
967
- #: defaults.php:1365
968
  msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
969
  msgstr ""
970
 
971
- #: defaults.php:1370
972
  msgid "User changed the author or post with custom post type"
973
  msgstr ""
974
 
975
- #: defaults.php:1371
976
  msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
977
  msgstr ""
978
 
979
- #: defaults.php:1376
980
  msgid "User changed the status of post with custom post type"
981
  msgstr ""
982
 
983
- #: defaults.php:1377
984
  msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
985
  msgstr ""
986
 
987
- #: defaults.php:1382
988
  msgid "User changed the visibility of a post with custom post type"
989
  msgstr ""
990
 
991
- #: defaults.php:1383
992
  msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
993
  msgstr ""
994
 
995
- #: defaults.php:1388
996
  msgid "User changed the date of post with custom post type"
997
  msgstr ""
998
 
999
- #: defaults.php:1389
1000
  msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
1001
  msgstr ""
1002
 
1003
- #: defaults.php:1394
1004
  msgid "User created a custom field for a custom post type"
1005
  msgstr ""
1006
 
1007
- #: defaults.php:1395
1008
  msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
1009
  msgstr ""
1010
 
1011
- #: defaults.php:1400
1012
  msgid "User updated a custom field for a custom post type"
1013
  msgstr ""
1014
 
1015
- #: defaults.php:1401
1016
  msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1017
  msgstr ""
1018
 
1019
- #: defaults.php:1406
1020
  msgid "User deleted a custom field from a custom post type"
1021
  msgstr ""
1022
 
1023
- #: defaults.php:1407
1024
  msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1025
  msgstr ""
1026
 
1027
- #: defaults.php:1412
1028
  msgid "User updated a custom field name for a custom post type"
1029
  msgstr ""
1030
 
1031
- #: defaults.php:1413
1032
  msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1033
  msgstr ""
1034
 
1035
- #: defaults.php:1418
1036
  msgid "User modified content for a published custom post type"
1037
  msgstr ""
1038
 
1039
- #: defaults.php:1419
1040
  msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
1041
  msgstr ""
1042
 
1043
- #: defaults.php:1424
1044
  msgid "User modified content for a draft post"
1045
  msgstr ""
1046
 
1047
- #: defaults.php:1425
1048
  msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
1049
  msgstr ""
1050
 
1051
- #: defaults.php:1430
1052
  msgid "User modified content for a draft custom post type"
1053
  msgstr ""
1054
 
1055
- #: defaults.php:1431
1056
  msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
1057
  msgstr ""
1058
 
1059
- #: defaults.php:1436
1060
  msgid "User modified content of a post"
1061
  msgstr ""
1062
 
1063
- #: defaults.php:1437
1064
  msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
1065
  msgstr ""
1066
 
1067
- #: defaults.php:1442
1068
  msgid "User scheduled a custom post type"
1069
  msgstr ""
1070
 
1071
- #: defaults.php:1443
1072
  msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
1073
  msgstr ""
1074
 
1075
- #: defaults.php:1448
1076
  msgid "User changed title of a custom post type"
1077
  msgstr ""
1078
 
1079
- #: defaults.php:1449
1080
  msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
1081
  msgstr ""
1082
 
1083
- #: defaults.php:1454
1084
  msgid "User opened a custom post type in the editor"
1085
  msgstr ""
1086
 
1087
- #: defaults.php:1455
1088
  msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
1089
  msgstr ""
1090
 
1091
- #: defaults.php:1460
1092
  msgid "User viewed a custom post type"
1093
  msgstr ""
1094
 
1095
- #: defaults.php:1461
1096
  msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
1097
  msgstr ""
1098
 
1099
- #: defaults.php:1466
1100
  msgid "A plugin created a custom post"
1101
  msgstr ""
1102
 
1103
- #: defaults.php:1467
1104
  msgid "A plugin automatically created the following custom post: %PostTitle%."
1105
  msgstr ""
1106
 
1107
- #: defaults.php:1472
1108
  msgid "A plugin deleted a custom post"
1109
  msgstr ""
1110
 
1111
- #: defaults.php:1473
1112
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
1113
  msgstr ""
1114
 
1115
- #: defaults.php:1478
1116
  msgid "A plugin modified a custom post"
1117
  msgstr ""
1118
 
1119
- #: defaults.php:1479
1120
  msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
1121
  msgstr ""
1122
 
1123
- #: defaults.php:1491, extensions/reports/classes/HtmlReportGenerator.php:536
1124
  msgid "Pages"
1125
  msgstr ""
1126
 
1127
- #: defaults.php:1495
1128
  msgid "User created a new WordPress page and saved it as draft"
1129
  msgstr ""
1130
 
1131
- #: defaults.php:1496
1132
  msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
1133
  msgstr ""
1134
 
1135
- #: defaults.php:1501
1136
  msgid "User published a WordPress page"
1137
  msgstr ""
1138
 
1139
- #: defaults.php:1502
1140
  msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1141
  msgstr ""
1142
 
1143
- #: defaults.php:1507
1144
  msgid "User modified a published WordPress page"
1145
  msgstr ""
1146
 
1147
- #: defaults.php:1508
1148
  msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1149
  msgstr ""
1150
 
1151
- #: defaults.php:1513
1152
  msgid "User modified a draft WordPress page"
1153
  msgstr ""
1154
 
1155
- #: defaults.php:1514
1156
  msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
1157
  msgstr ""
1158
 
1159
- #: defaults.php:1519
1160
  msgid "User permanently deleted a page from the trash"
1161
  msgstr ""
1162
 
1163
- #: defaults.php:1520
1164
  msgid "Permanently deleted the page %PostTitle%."
1165
  msgstr ""
1166
 
1167
- #: defaults.php:1525
1168
  msgid "User moved WordPress page to the trash"
1169
  msgstr ""
1170
 
1171
- #: defaults.php:1526
1172
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
1173
  msgstr ""
1174
 
1175
- #: defaults.php:1531
1176
  msgid "User restored a WordPress page from trash"
1177
  msgstr ""
1178
 
1179
- #: defaults.php:1532
1180
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
1181
  msgstr ""
1182
 
1183
- #: defaults.php:1537
1184
  msgid "User changed page URL"
1185
  msgstr ""
1186
 
1187
- #: defaults.php:1538
1188
  msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
1189
  msgstr ""
1190
 
1191
- #: defaults.php:1543
1192
  msgid "User changed page author"
1193
  msgstr ""
1194
 
1195
- #: defaults.php:1544
1196
  msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
1197
  msgstr ""
1198
 
1199
- #: defaults.php:1549
1200
  msgid "User changed page status"
1201
  msgstr ""
1202
 
1203
- #: defaults.php:1550
1204
  msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
1205
  msgstr ""
1206
 
1207
- #: defaults.php:1555
1208
  msgid "User changed the visibility of a page post"
1209
  msgstr ""
1210
 
1211
- #: defaults.php:1556
1212
  msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
1213
  msgstr ""
1214
 
1215
- #: defaults.php:1561
1216
  msgid "User changed the date of a page post"
1217
  msgstr ""
1218
 
1219
- #: defaults.php:1562
1220
  msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
1221
  msgstr ""
1222
 
1223
- #: defaults.php:1567
1224
  msgid "User created a custom field for a page"
1225
  msgstr ""
1226
 
1227
- #: defaults.php:1568
1228
  msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1229
  msgstr ""
1230
 
1231
- #: defaults.php:1573
1232
  msgid "User updated a custom field value for a page"
1233
  msgstr ""
1234
 
1235
- #: defaults.php:1574
1236
  msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1237
  msgstr ""
1238
 
1239
- #: defaults.php:1579
1240
  msgid "User deleted a custom field from a page"
1241
  msgstr ""
1242
 
1243
- #: defaults.php:1580
1244
  msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
1245
  msgstr ""
1246
 
1247
- #: defaults.php:1585
1248
  msgid "User updated a custom field name for a page"
1249
  msgstr ""
1250
 
1251
- #: defaults.php:1586
1252
  msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1253
  msgstr ""
1254
 
1255
- #: defaults.php:1591
1256
  msgid "User modified content for a published page"
1257
  msgstr ""
1258
 
1259
- #: defaults.php:1592
1260
  msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
1261
  msgstr ""
1262
 
1263
- #: defaults.php:1597
1264
  msgid "User modified content for a draft page"
1265
  msgstr ""
1266
 
1267
- #: defaults.php:1598
1268
  msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
1269
  msgstr ""
1270
 
1271
- #: defaults.php:1603
1272
  msgid "User scheduled a page"
1273
  msgstr ""
1274
 
1275
- #: defaults.php:1604
1276
  msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
1277
  msgstr ""
1278
 
1279
- #: defaults.php:1609
1280
  msgid "User changed title of a page"
1281
  msgstr ""
1282
 
1283
- #: defaults.php:1610
1284
  msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
1285
  msgstr ""
1286
 
1287
- #: defaults.php:1615
1288
  msgid "User opened a page in the editor"
1289
  msgstr ""
1290
 
1291
- #: defaults.php:1616
1292
  msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
1293
  msgstr ""
1294
 
1295
- #: defaults.php:1621
1296
  msgid "User viewed a page"
1297
  msgstr ""
1298
 
1299
- #: defaults.php:1622
1300
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
1301
  msgstr ""
1302
 
1303
- #: defaults.php:1627
1304
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
1305
  msgstr ""
1306
 
1307
- #: defaults.php:1628
1308
  msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1309
  msgstr ""
1310
 
1311
- #: defaults.php:1633
1312
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
1313
  msgstr ""
1314
 
1315
- #: defaults.php:1634
1316
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1317
  msgstr ""
1318
 
1319
- #: defaults.php:1639
1320
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
1321
  msgstr ""
1322
 
1323
- #: defaults.php:1640
1324
  msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1325
  msgstr ""
1326
 
1327
- #: defaults.php:1645
1328
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
1329
  msgstr ""
1330
 
1331
- #: defaults.php:1646
1332
  msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1333
  msgstr ""
1334
 
1335
- #: defaults.php:1651
1336
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
1337
  msgstr ""
1338
 
1339
- #: defaults.php:1652
1340
  msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1341
  msgstr ""
1342
 
1343
- #: defaults.php:1657
1344
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
1345
  msgstr ""
1346
 
1347
- #: defaults.php:1658
1348
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1349
  msgstr ""
1350
 
1351
- #: defaults.php:1663
1352
  msgid "A plugin created a page"
1353
  msgstr ""
1354
 
1355
- #: defaults.php:1664
1356
  msgid "A plugin automatically created the following page: %PostTitle%."
1357
  msgstr ""
1358
 
1359
- #: defaults.php:1669
1360
  msgid "A plugin deleted a page"
1361
  msgstr ""
1362
 
1363
- #: defaults.php:1670
1364
  msgid "A plugin automatically deleted the following page: %PostTitle%."
1365
  msgstr ""
1366
 
1367
- #: defaults.php:1675
1368
  msgid "A plugin modified a page"
1369
  msgstr ""
1370
 
1371
- #: defaults.php:1676
1372
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
1373
  msgstr ""
1374
 
1375
- #: defaults.php:1681
1376
  msgid "User Accounts"
1377
  msgstr ""
1378
 
1379
- #: defaults.php:1682
1380
  msgid "User Profiles"
1381
  msgstr ""
1382
 
1383
- #: defaults.php:1686
1384
  msgid "New user was created on WordPress"
1385
  msgstr ""
1386
 
1387
- #: defaults.php:1687
1388
  msgid "A new user %NewUserData->Username% is created via registration."
1389
  msgstr ""
1390
 
1391
- #: defaults.php:1689, classes/AlertManager.php:1063, classes/AuditLogListView.php:272, classes/AuditLogListView.php:306, classes/WidgetManager.php:76, classes/Views/Settings.php:1076, extensions/reports/classes/CsvReportGenerator.php:81, extensions/reports/classes/CsvReportGenerator.php:65, extensions/reports/classes/HtmlReportGenerator.php:245, extensions/reports/classes/HtmlReportGenerator.php:221, extensions/search/classes/Filters/UserNameFilter.php:46, extensions/user-sessions/classes/View/Sessions.php:138
1392
  msgid "User"
1393
  msgstr ""
1394
 
1395
- #: defaults.php:1698
1396
  msgid "User created another WordPress user"
1397
  msgstr ""
1398
 
1399
- #: defaults.php:1699
1400
  msgid "Created the new user: %NewUserData->Username%."
1401
  msgstr ""
1402
 
1403
- #: defaults.php:1702, defaults.php:1716, defaults.php:1730, defaults.php:1744, defaults.php:1758, defaults.php:1773, defaults.php:1788, defaults.php:1802, defaults.php:1816, defaults.php:1832, defaults.php:1861, defaults.php:1875, defaults.php:1890, defaults.php:1906, defaults.php:1920, defaults.php:1935, defaults.php:1949, defaults.php:1963, defaults.php:1980, defaults.php:1994, defaults.php:2008, defaults.php:2022, defaults.php:2035
1404
  msgid "First name"
1405
  msgstr ""
1406
 
1407
- #: defaults.php:1703, defaults.php:1717, defaults.php:1731, defaults.php:1745, defaults.php:1759, defaults.php:1774, defaults.php:1789, defaults.php:1803, defaults.php:1817, defaults.php:1833, defaults.php:1848, defaults.php:1876, defaults.php:1891, defaults.php:1907, defaults.php:1921, defaults.php:1936, defaults.php:1950, defaults.php:1964, defaults.php:1981, defaults.php:1995, defaults.php:2009, defaults.php:2023, defaults.php:2036
1408
  msgid "Last name"
1409
  msgstr ""
1410
 
1411
- #: defaults.php:1712
1412
  msgid "The role of a user was changed by another WordPress user"
1413
  msgstr ""
1414
 
1415
- #: defaults.php:1713
1416
  msgid "Changed the role of user %TargetUsername% to %NewRole%."
1417
  msgstr ""
1418
 
1419
- #: defaults.php:1715, defaults.php:2720
1420
  msgid "Previous role"
1421
  msgstr ""
1422
 
1423
- #: defaults.php:1726
1424
  msgid "User has changed his or her password"
1425
  msgstr ""
1426
 
1427
- #: defaults.php:1727
1428
  msgid "Changed the password."
1429
  msgstr ""
1430
 
1431
- #: defaults.php:1740
1432
  msgid "User changed another user's password"
1433
  msgstr ""
1434
 
1435
- #: defaults.php:1741
1436
  msgid "Changed the password of the user %TargetUserData->Username%."
1437
  msgstr ""
1438
 
1439
- #: defaults.php:1754
1440
  msgid "User changed his or her email address"
1441
  msgstr ""
1442
 
1443
- #: defaults.php:1755
1444
  msgid "Changed the email address to %NewEmail%."
1445
  msgstr ""
1446
 
1447
- #: defaults.php:1760, defaults.php:1775
1448
  msgid "Previous email address"
1449
  msgstr ""
1450
 
1451
- #: defaults.php:1769
1452
  msgid "User changed another user's email address"
1453
  msgstr ""
1454
 
1455
- #: defaults.php:1770
1456
  msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
1457
  msgstr ""
1458
 
1459
- #: defaults.php:1784
1460
  msgid "User was deleted by another user"
1461
  msgstr ""
1462
 
1463
- #: defaults.php:1785
1464
  msgid "Deleted the user %TargetUserData->Username%."
1465
  msgstr ""
1466
 
1467
- #: defaults.php:1798
1468
  msgid "User opened the profile page of another user"
1469
  msgstr ""
1470
 
1471
- #: defaults.php:1799
1472
  msgid "Opened the profile page of user %TargetUsername%."
1473
  msgstr ""
1474
 
1475
- #: defaults.php:1812
1476
  msgid "User updated a custom field value for a user"
1477
  msgstr ""
1478
 
1479
- #: defaults.php:1813
1480
  msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
1481
  msgstr ""
1482
 
1483
- #: defaults.php:1818, defaults.php:2810, defaults.php:2842, defaults.php:3253
1484
  msgid "Previous value"
1485
  msgstr ""
1486
 
1487
- #: defaults.php:1819, defaults.php:3254
1488
  msgid "New value"
1489
  msgstr ""
1490
 
1491
- #: defaults.php:1828
1492
  msgid "User created a custom field value for a user"
1493
  msgstr ""
1494
 
1495
- #: defaults.php:1829
1496
  msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
1497
  msgstr ""
1498
 
1499
- #: defaults.php:1843
1500
  msgid "User changed first name for a user"
1501
  msgstr ""
1502
 
1503
- #: defaults.php:1844
1504
  msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
1505
  msgstr ""
1506
 
1507
- #: defaults.php:1847
1508
  msgid "Previous name"
1509
  msgstr ""
1510
 
1511
- #: defaults.php:1857
1512
  msgid "User changed last name for a user"
1513
  msgstr ""
1514
 
1515
- #: defaults.php:1858
1516
  msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
1517
  msgstr ""
1518
 
1519
- #: defaults.php:1862
1520
  msgid "Previous last name"
1521
  msgstr ""
1522
 
1523
- #: defaults.php:1871
1524
  msgid "User changed nickname for a user"
1525
  msgstr ""
1526
 
1527
- #: defaults.php:1872
1528
  msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
1529
  msgstr ""
1530
 
1531
- #: defaults.php:1877
1532
  msgid "Previous nickname"
1533
  msgstr ""
1534
 
1535
- #: defaults.php:1886
1536
  msgid "User changed the display name for a user"
1537
  msgstr ""
1538
 
1539
- #: defaults.php:1887
1540
  msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
1541
  msgstr ""
1542
 
1543
- #: defaults.php:1892
1544
  msgid "Previous display name"
1545
  msgstr ""
1546
 
1547
- #: defaults.php:1902, defaults.php:1916
1548
  msgid "User created an application password"
1549
  msgstr ""
1550
 
1551
- #: defaults.php:1903
1552
  msgid "The application password %friendly_name%."
1553
  msgstr ""
1554
 
1555
- #: defaults.php:1917
1556
  msgid "The application password %friendly_name% for the user %login%."
1557
  msgstr ""
1558
 
1559
- #: defaults.php:1931
1560
  msgid "User revoked all application passwords"
1561
  msgstr ""
1562
 
1563
- #: defaults.php:1932
1564
  msgid "All application passwords."
1565
  msgstr ""
1566
 
1567
- #: defaults.php:1945
1568
  msgid "User revoked all application passwords for a user"
1569
  msgstr ""
1570
 
1571
- #: defaults.php:1946
1572
  msgid "All application passwords from the user %login%."
1573
  msgstr ""
1574
 
1575
- #: defaults.php:1959
1576
  msgid "Admin sent a password reset request to a user"
1577
  msgstr ""
1578
 
1579
- #: defaults.php:1960
1580
  msgid "Sent a password reset request to the user %login%."
1581
  msgstr ""
1582
 
1583
- #: defaults.php:1972
1584
  msgid "Multisite User Profiles"
1585
  msgstr ""
1586
 
1587
- #: defaults.php:1976
1588
  msgid "User granted Super Admin privileges"
1589
  msgstr ""
1590
 
1591
- #: defaults.php:1977
1592
  msgid "Granted Super Admin privileges to the user %TargetUsername%."
1593
  msgstr ""
1594
 
1595
- #: defaults.php:1990
1596
  msgid "User revoked from Super Admin privileges"
1597
  msgstr ""
1598
 
1599
- #: defaults.php:1991
1600
  msgid "Revoked Super Admin privileges from %TargetUsername%."
1601
  msgstr ""
1602
 
1603
- #: defaults.php:2004
1604
  msgid "Existing user added to a site"
1605
  msgstr ""
1606
 
1607
- #: defaults.php:2005
1608
  msgid "Added user %TargetUsername% to the site %SiteName%."
1609
  msgstr ""
1610
 
1611
- #: defaults.php:2018
1612
  msgid "User removed from site"
1613
  msgstr ""
1614
 
1615
- #: defaults.php:2019
1616
  msgid "Removed user %TargetUsername% from the site %SiteName%"
1617
  msgstr ""
1618
 
1619
- #: defaults.php:2021
1620
  msgid "Site role"
1621
  msgstr ""
1622
 
1623
- #: defaults.php:2032
1624
  msgid "New network user created"
1625
  msgstr ""
1626
 
1627
- #: defaults.php:2033
1628
  msgid "Created the new network user %NewUserData->Username%."
1629
  msgstr ""
1630
 
1631
- #: defaults.php:2045
1632
  msgid "Plugins & Themes"
1633
  msgstr ""
1634
 
1635
- #: defaults.php:2046, classes/AuditLogGridView.php:450, classes/AuditLogListView.php:440
1636
  msgid "Plugins"
1637
  msgstr ""
1638
 
1639
- #: defaults.php:2050
1640
  msgid "User installed a plugin"
1641
  msgstr ""
1642
 
1643
- #: defaults.php:2051
1644
  msgid "Installed the plugin %Plugin->Name%."
1645
  msgstr ""
1646
 
1647
- #: defaults.php:2053, defaults.php:2066, defaults.php:2079, defaults.php:2092, defaults.php:2161, defaults.php:2174, defaults.php:2187, defaults.php:2226, defaults.php:2239
1648
  msgid "Version"
1649
  msgstr ""
1650
 
1651
- #: defaults.php:2054, defaults.php:2067, defaults.php:2080, defaults.php:2093, defaults.php:2106, defaults.php:2162, defaults.php:2175, defaults.php:2188, defaults.php:2201, defaults.php:2227, defaults.php:2240
1652
  msgid "Install location"
1653
  msgstr ""
1654
 
1655
- #: defaults.php:2063
1656
  msgid "User activated a WordPress plugin"
1657
  msgstr ""
1658
 
1659
- #: defaults.php:2064
1660
  msgid "Activated the plugin %PluginData->Name%."
1661
  msgstr ""
1662
 
1663
- #: defaults.php:2076
1664
  msgid "User deactivated a WordPress plugin"
1665
  msgstr ""
1666
 
1667
- #: defaults.php:2077
1668
  msgid "Deactivated the plugin %PluginData->Name%."
1669
  msgstr ""
1670
 
1671
- #: defaults.php:2089
1672
  msgid "User uninstalled a plugin"
1673
  msgstr ""
1674
 
1675
- #: defaults.php:2090
1676
  msgid "Uninstalled the plugin %PluginData->Name%."
1677
  msgstr ""
1678
 
1679
- #: defaults.php:2102
1680
  msgid "User upgraded a plugin"
1681
  msgstr ""
1682
 
1683
- #: defaults.php:2103
1684
  msgid "Updated the plugin %PluginData->Name%."
1685
  msgstr ""
1686
 
1687
- #: defaults.php:2105
1688
  msgid "Updated version"
1689
  msgstr ""
1690
 
1691
- #: defaults.php:2115
1692
  msgid "A plugin created a post"
1693
  msgstr ""
1694
 
1695
- #: defaults.php:2116
1696
  msgid "The plugin created the post %PostTitle%."
1697
  msgstr ""
1698
 
1699
- #: defaults.php:2121, defaults.php:2136, classes/AlertManager.php:1065, classes/AuditLogGridView.php:447, classes/AuditLogListView.php:438
1700
  msgid "Plugin"
1701
  msgstr ""
1702
 
1703
- #: defaults.php:2130
1704
  msgid "A plugin deleted a post"
1705
  msgstr ""
1706
 
1707
- #: defaults.php:2131
1708
  msgid "A plugin deleted the post %PostTitle%."
1709
  msgstr ""
1710
 
1711
- #: defaults.php:2145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1712
  msgid "User changed a file using the plugin editor"
1713
  msgstr ""
1714
 
1715
- #: defaults.php:2146
1716
  msgid "Modified the file %File% with the plugin editor."
1717
  msgstr ""
1718
 
1719
- #: defaults.php:2154
1720
  msgid "Themes"
1721
  msgstr ""
1722
 
1723
- #: defaults.php:2158
1724
  msgid "User installed a theme"
1725
  msgstr ""
1726
 
1727
- #: defaults.php:2159
1728
  msgid "Installed the theme %Theme->Name%."
1729
  msgstr ""
1730
 
1731
- #: defaults.php:2171
1732
  msgid "User activated a theme"
1733
  msgstr ""
1734
 
1735
- #: defaults.php:2172
1736
  msgid "Activated the theme %Theme->Name%."
1737
  msgstr ""
1738
 
1739
- #: defaults.php:2184
1740
  msgid "User uninstalled a theme"
1741
  msgstr ""
1742
 
1743
- #: defaults.php:2185
1744
  msgid "Deleted the theme %Theme->Name%."
1745
  msgstr ""
1746
 
1747
- #: defaults.php:2197
1748
  msgid "User updated a theme"
1749
  msgstr ""
1750
 
1751
- #: defaults.php:2198
1752
  msgid "Updated the theme %Theme->Name%."
1753
  msgstr ""
1754
 
1755
- #: defaults.php:2200, defaults.php:2294
1756
  msgid "New version"
1757
  msgstr ""
1758
 
1759
- #: defaults.php:2210
1760
  msgid "User changed a file using the theme editor"
1761
  msgstr ""
1762
 
1763
- #: defaults.php:2211
1764
  msgid "Modified the file %Theme%/%File% with the theme editor."
1765
  msgstr ""
1766
 
1767
- #: defaults.php:2219
1768
  msgid "Themes on Multisite"
1769
  msgstr ""
1770
 
1771
- #: defaults.php:2223
1772
  msgid "Activated theme on network"
1773
  msgstr ""
1774
 
1775
- #: defaults.php:2224
1776
  msgid "Network activated the theme %Theme->Name%."
1777
  msgstr ""
1778
 
1779
- #: defaults.php:2236
1780
  msgid "Deactivated theme from network"
1781
  msgstr ""
1782
 
1783
- #: defaults.php:2237
1784
  msgid "Network deactivated the theme %Theme->Name%."
1785
  msgstr ""
1786
 
1787
- #: defaults.php:2249
1788
  msgid "WordPress & System"
1789
  msgstr ""
1790
 
1791
- #: defaults.php:2250, classes/AlertManager.php:1064, classes/AlertManager.php:1754, classes/AuditLogGridView.php:456, classes/AuditLogListView.php:444, extensions/email-notifications/classes/DailyNotification.php:243, extensions/email-notifications/classes/Notifier.php:641, extensions/reports/classes/Common.php:1178
1792
  msgid "System"
1793
  msgstr ""
1794
 
1795
- #: defaults.php:2254
1796
  msgid "Unknown Error"
1797
  msgstr ""
1798
 
1799
- #: defaults.php:2255
1800
  msgid "An unexpected error has occurred."
1801
  msgstr ""
1802
 
1803
- #: defaults.php:2260
1804
  msgid "PHP error"
1805
  msgstr ""
1806
 
1807
- #: defaults.php:2261, defaults.php:2267, defaults.php:2273, defaults.php:2279, defaults.php:2285
1808
  msgid "%Message%."
1809
  msgstr ""
1810
 
1811
- #: defaults.php:2266
1812
  msgid "PHP warning"
1813
  msgstr ""
1814
 
1815
- #: defaults.php:2272
1816
  msgid "PHP notice"
1817
  msgstr ""
1818
 
1819
- #: defaults.php:2278
1820
  msgid "PHP exception"
1821
  msgstr ""
1822
 
1823
- #: defaults.php:2284
1824
  msgid "PHP shutdown error"
1825
  msgstr ""
1826
 
1827
- #: defaults.php:2290
1828
  msgid "WordPress was updated"
1829
  msgstr ""
1830
 
1831
- #: defaults.php:2291
1832
  msgid "Updated WordPress."
1833
  msgstr ""
1834
 
1835
- #: defaults.php:2293
1836
  msgid "Previous version"
1837
  msgstr ""
1838
 
1839
- #: defaults.php:2310
1840
  msgid "Advertising Extensions"
1841
  msgstr ""
1842
 
1843
- #: defaults.php:2311
1844
  msgid "%PromoName% %PromoMessage%"
1845
  msgstr ""
1846
 
1847
- #: defaults.php:2315
1848
  msgid "Activity log plugin"
1849
  msgstr ""
1850
 
1851
- #: defaults.php:2319
1852
  msgid "Events automatically pruned by system"
1853
  msgstr ""
1854
 
1855
- #: defaults.php:2320
1856
  msgid "System automatically deleted %EventCount% events from the activity log."
1857
  msgstr ""
1858
 
1859
- #: defaults.php:2329
1860
  msgid "Reset the plugin's settings to default"
1861
  msgstr ""
1862
 
1863
- #: defaults.php:2330
1864
  msgid "Reset the activity log plugin's settings to default."
1865
  msgstr ""
1866
 
1867
- #: defaults.php:2339
1868
  msgid "Purged the activity log"
1869
  msgstr ""
1870
 
1871
- #: defaults.php:2340
1872
  msgid "Purged the activity log."
1873
  msgstr ""
1874
 
1875
- #: defaults.php:2350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1876
  msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
1877
  msgstr ""
1878
 
1879
- #: defaults.php:2351
1880
  msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
1881
  msgstr ""
1882
 
1883
- #: defaults.php:2361
1884
  msgid "Changed the status of the Login Page Notification"
1885
  msgstr ""
1886
 
1887
- #: defaults.php:2362
1888
  msgid "Changed the status of the <strong>Login Page Notification.</strong>"
1889
  msgstr ""
1890
 
1891
- #: defaults.php:2371
1892
  msgid "Changed the text of the Login Page Notification"
1893
  msgstr ""
1894
 
1895
- #: defaults.php:2372
1896
  msgid "Changed the text of the <strong>Login Page Notification.</strong>"
1897
  msgstr ""
1898
 
1899
- #: defaults.php:2381
1900
  msgid "Changed the status of the Reverse proxy / firewall option"
1901
  msgstr ""
1902
 
1903
- #: defaults.php:2382
1904
  msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
1905
  msgstr ""
1906
 
1907
- #: defaults.php:2391
1908
  msgid "Changed the Restrict plugin access setting"
1909
  msgstr ""
1910
 
1911
- #: defaults.php:2392
1912
  msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
1913
  msgstr ""
1914
 
1915
- #: defaults.php:2394, defaults.php:2428, defaults.php:2898, defaults.php:2985, defaults.php:3278
1916
  msgid "Previous setting"
1917
  msgstr ""
1918
 
1919
- #: defaults.php:2403
1920
  msgid "The user %user% to / from the list of users who can view the activity log"
1921
  msgstr ""
1922
 
1923
- #: defaults.php:2404
1924
  msgid "The user %user% to / from the list of users who can view the activity log."
1925
  msgstr ""
1926
 
1927
- #: defaults.php:2406
1928
  msgid "Previous list of users who had access to view the activity log"
1929
  msgstr ""
1930
 
1931
- #: defaults.php:2415
1932
  msgid "Changed the status of the Hide plugin in plugins page setting"
1933
  msgstr ""
1934
 
1935
- #: defaults.php:2416
1936
  msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
1937
  msgstr ""
1938
 
1939
- #: defaults.php:2425
1940
  msgid "Changed the Activity log retention setting"
1941
  msgstr ""
1942
 
1943
- #: defaults.php:2426
1944
  msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
1945
  msgstr ""
1946
 
1947
- #: defaults.php:2437
1948
  msgid "A user was added to / from the list of excluded users from the activity log"
1949
  msgstr ""
1950
 
1951
- #: defaults.php:2438
1952
  msgid "The user %user% to / from the list of excluded users from the activity log."
1953
  msgstr ""
1954
 
1955
- #: defaults.php:2440, defaults.php:2452
1956
  msgid "Previous list of users"
1957
  msgstr ""
1958
 
1959
- #: defaults.php:2449
1960
  msgid "A user role was added to / from the list of excluded roles from the activity log"
1961
  msgstr ""
1962
 
1963
- #: defaults.php:2450
1964
  msgid "The user role %role% to / from the list of excluded roles from the activity log."
1965
  msgstr ""
1966
 
1967
- #: defaults.php:2461
1968
  msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
1969
  msgstr ""
1970
 
1971
- #: defaults.php:2462
1972
  msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
1973
  msgstr ""
1974
 
1975
- #: defaults.php:2464
1976
  msgid "Previous list of IPs"
1977
  msgstr ""
1978
 
1979
- #: defaults.php:2473
1980
  msgid "A post type was added to / from the list of excluded post types from the activity log"
1981
  msgstr ""
1982
 
1983
- #: defaults.php:2474
1984
  msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
1985
  msgstr ""
1986
 
1987
- #: defaults.php:2476
1988
  msgid "Previous list of Post types"
1989
  msgstr ""
1990
 
1991
- #: defaults.php:2485
1992
  msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
1993
  msgstr ""
1994
 
1995
- #: defaults.php:2486
1996
  msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
1997
  msgstr ""
1998
 
1999
- #: defaults.php:2488
2000
  msgid "Previous list of Custom fields"
2001
  msgstr ""
2002
 
2003
- #: defaults.php:2497
2004
  msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
2005
  msgstr ""
2006
 
2007
- #: defaults.php:2498
2008
  msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
2009
  msgstr ""
2010
 
2011
- #: defaults.php:2500
2012
  msgid "Previous list of user profile Custom fields"
2013
  msgstr ""
2014
 
2015
- #: defaults.php:2508
2016
  msgid "Notifications & Integrations"
2017
  msgstr ""
2018
 
2019
- #: defaults.php:2512
2020
  msgid "Changed the status of the Daily Summary of Activity Log"
2021
  msgstr ""
2022
 
2023
- #: defaults.php:2513
2024
  msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
2025
  msgstr ""
2026
 
2027
- #: defaults.php:2522
2028
  msgid "Modified the reciepients of the Daily Summary of Activity Log."
2029
  msgstr ""
2030
 
2031
- #: defaults.php:2523
2032
  msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
2033
  msgstr ""
2034
 
2035
- #: defaults.php:2525
2036
  msgid "New recipient"
2037
  msgstr ""
2038
 
2039
- #: defaults.php:2526
2040
  msgid "Previous recipient"
2041
  msgstr ""
2042
 
2043
- #: defaults.php:2535
2044
  msgid "Changed the status of a built in notification"
2045
  msgstr ""
2046
 
2047
- #: defaults.php:2536
2048
  msgid "Changed the status of the built in notification %notification_name%."
2049
  msgstr ""
2050
 
2051
- #: defaults.php:2545
2052
  msgid "Modified the recipient(s) of the built a notification"
2053
  msgstr ""
2054
 
2055
- #: defaults.php:2546
2056
  msgid "Modified the recipient(s) of the built in notification %notification_name%."
2057
  msgstr ""
2058
 
2059
- #: defaults.php:2548
2060
  msgid "New recipient(s)"
2061
  msgstr ""
2062
 
2063
- #: defaults.php:2549
2064
  msgid "Previous recipient(s)"
2065
  msgstr ""
2066
 
2067
- #: defaults.php:2558
2068
  msgid "Added a new custom notification"
2069
  msgstr ""
2070
 
2071
- #: defaults.php:2559
2072
  msgid "Added a new custom notification %notification_name%."
2073
  msgstr ""
2074
 
2075
- #: defaults.php:2561, defaults.php:2573
2076
  msgid "Recipient(s)"
2077
  msgstr ""
2078
 
2079
- #: defaults.php:2570
2080
  msgid "Modified a custom notification"
2081
  msgstr ""
2082
 
2083
- #: defaults.php:2571
2084
  msgid "Modified the custom notification %notification_name%."
2085
  msgstr ""
2086
 
2087
- #: defaults.php:2582
2088
  msgid "Changed the status of a custom notification"
2089
  msgstr ""
2090
 
2091
- #: defaults.php:2583
2092
  msgid "Changed the status of the custom notification %notification_name%."
2093
  msgstr ""
2094
 
2095
- #: defaults.php:2592
2096
  msgid "Deleted a custom notification"
2097
  msgstr ""
2098
 
2099
- #: defaults.php:2593
2100
  msgid "Deleted the custom notification %notification_name%."
2101
  msgstr ""
2102
 
2103
- #: defaults.php:2602
2104
  msgid "Modified a default notification template"
2105
  msgstr ""
2106
 
2107
- #: defaults.php:2603
2108
  msgid "Modified the default %template_name% notification template."
2109
  msgstr ""
2110
 
2111
- #: defaults.php:2614
2112
  msgid "Added a new integrations connection"
2113
  msgstr ""
2114
 
2115
- #: defaults.php:2615
2116
- msgid "Added a new integrations connection %name%"
2117
  msgstr ""
2118
 
2119
- #: defaults.php:2617, defaults.php:2629
2120
  msgid "Connection type"
2121
  msgstr ""
2122
 
2123
- #: defaults.php:2626
2124
  msgid "Modified an integrations connection"
2125
  msgstr ""
2126
 
2127
- #: defaults.php:2627
2128
  msgid "Modified the integrations connection %name%."
2129
  msgstr ""
2130
 
2131
- #: defaults.php:2638
2132
  msgid "Deleted a integrations connection"
2133
  msgstr ""
2134
 
2135
- #: defaults.php:2639
2136
  msgid "Deleted the integrations connection %name%."
2137
  msgstr ""
2138
 
2139
- #: defaults.php:2648
2140
  msgid "Added a new activity log mirror"
2141
  msgstr ""
2142
 
2143
- #: defaults.php:2649
2144
  msgid "Added a new activity log mirror %name%."
2145
  msgstr ""
2146
 
2147
- #: defaults.php:2651, defaults.php:2663, defaults.php:2675
2148
  msgid "Connection used by this mirror"
2149
  msgstr ""
2150
 
2151
- #: defaults.php:2660
2152
  msgid "Modified an activity log mirror"
2153
  msgstr ""
2154
 
2155
- #: defaults.php:2661
2156
  msgid "Modified the activity log mirror %name%."
2157
  msgstr ""
2158
 
2159
- #: defaults.php:2672
2160
  msgid "Changed the status of an activity log mirror"
2161
  msgstr ""
2162
 
2163
- #: defaults.php:2673
2164
  msgid "Changed the status of the activity log mirror %name%."
2165
  msgstr ""
2166
 
2167
- #: defaults.php:2684
2168
  msgid "Deleted an activity log mirror"
2169
  msgstr ""
2170
 
2171
- #: defaults.php:2685
2172
  msgid "Deleted the activity log mirror %name%."
2173
  msgstr ""
2174
 
2175
- #: defaults.php:2694
2176
  msgid "Changed the status of Logging of events to the database"
2177
  msgstr ""
2178
 
2179
- #: defaults.php:2695
2180
  msgid "Changed the status of <strong>Logging of events to the database</strong>."
2181
  msgstr ""
2182
 
2183
- #: defaults.php:2703
2184
  msgid "WordPress Site Settings"
2185
  msgstr ""
2186
 
2187
- #: defaults.php:2707
2188
  msgid "Option Anyone Can Register in WordPress settings changed"
2189
  msgstr ""
2190
 
2191
- #: defaults.php:2708
2192
  msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
2193
  msgstr ""
2194
 
2195
- #: defaults.php:2717
2196
  msgid "New User Default Role changed"
2197
  msgstr ""
2198
 
2199
- #: defaults.php:2718
2200
  msgid "Changed the <strong>New user default role</strong> WordPress setting."
2201
  msgstr ""
2202
 
2203
- #: defaults.php:2721
2204
  msgid "New role"
2205
  msgstr ""
2206
 
2207
- #: defaults.php:2730
2208
  msgid "WordPress Administrator Notification email changed"
2209
  msgstr ""
2210
 
2211
- #: defaults.php:2731
2212
  msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
2213
  msgstr ""
2214
 
2215
- #: defaults.php:2733
2216
  msgid "Previous address"
2217
  msgstr ""
2218
 
2219
- #: defaults.php:2734
2220
  msgid "New address"
2221
  msgstr ""
2222
 
2223
- #: defaults.php:2743
2224
  msgid "User changes the WordPress Permalinks"
2225
  msgstr ""
2226
 
2227
- #: defaults.php:2744
2228
  msgid "Changed the <strong>WordPress permalinks</strong>."
2229
  msgstr ""
2230
 
2231
- #: defaults.php:2746
2232
  msgid "Previous permalinks"
2233
  msgstr ""
2234
 
2235
- #: defaults.php:2747
2236
  msgid "New permalinks"
2237
  msgstr ""
2238
 
2239
- #: defaults.php:2756
2240
  msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
2241
  msgstr ""
2242
 
2243
- #: defaults.php:2757
2244
  msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
2245
  msgstr ""
2246
 
2247
- #: defaults.php:2766
2248
  msgid "Enabled/Disabled comments on all the website"
2249
  msgstr ""
2250
 
2251
- #: defaults.php:2767
2252
  msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
2253
  msgstr ""
2254
 
2255
- #: defaults.php:2777
2256
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
2257
  msgstr ""
2258
 
2259
- #: defaults.php:2778
2260
  msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
2261
  msgstr ""
2262
 
2263
- #: defaults.php:2787
2264
  msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
2265
  msgstr ""
2266
 
2267
- #: defaults.php:2788
2268
  msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
2269
  msgstr ""
2270
 
2271
- #: defaults.php:2797
2272
  msgid "Enabled/Disabled the option to automatically close comments"
2273
  msgstr ""
2274
 
2275
- #: defaults.php:2798
2276
  msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
2277
  msgstr ""
2278
 
2279
- #: defaults.php:2807
2280
  msgid "Changed the value of the option Automatically close comments"
2281
  msgstr ""
2282
 
2283
- #: defaults.php:2808
2284
  msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
2285
  msgstr ""
2286
 
2287
- #: defaults.php:2819
2288
  msgid "Enabled/Disabled the option for comments to be manually approved"
2289
  msgstr ""
2290
 
2291
- #: defaults.php:2820
2292
  msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
2293
  msgstr ""
2294
 
2295
- #: defaults.php:2829
2296
  msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
2297
  msgstr ""
2298
 
2299
- #: defaults.php:2830
2300
  msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
2301
  msgstr ""
2302
 
2303
- #: defaults.php:2839
2304
  msgid "Changed the number of links that a comment must have to be held in the queue"
2305
  msgstr ""
2306
 
2307
- #: defaults.php:2840
2308
  msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
2309
  msgstr ""
2310
 
2311
- #: defaults.php:2851
2312
  msgid "Modified the list of keywords for comments moderation"
2313
  msgstr ""
2314
 
2315
- #: defaults.php:2852
2316
  msgid "Modified the list of keywords for comments medoration in WordPress."
2317
  msgstr ""
2318
 
2319
- #: defaults.php:2861
2320
  msgid "Modified the list of keywords for comments blacklisting"
2321
  msgstr ""
2322
 
2323
- #: defaults.php:2862
2324
  msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
2325
  msgstr ""
2326
 
2327
- #: defaults.php:2871
2328
  msgid "Option WordPress Address (URL) in WordPress settings changed"
2329
  msgstr ""
2330
 
2331
- #: defaults.php:2872
2332
  msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
2333
  msgstr ""
2334
 
2335
- #: defaults.php:2883
2336
  msgid "Option Site Address (URL) in WordPress settings changed"
2337
  msgstr ""
2338
 
2339
- #: defaults.php:2884
2340
  msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
2341
  msgstr ""
2342
 
2343
- #: defaults.php:2895
2344
  msgid "Option Your homepage displays in WordPress settings changed"
2345
  msgstr ""
2346
 
2347
- #: defaults.php:2896
2348
  msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
2349
  msgstr ""
2350
 
2351
- #: defaults.php:2907
2352
  msgid "Option homepage in WordPress settings changed"
2353
  msgstr ""
2354
 
2355
- #: defaults.php:2908
2356
  msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
2357
  msgstr ""
2358
 
2359
- #: defaults.php:2910, defaults.php:2922
2360
  msgid "Previous page"
2361
  msgstr ""
2362
 
2363
- #: defaults.php:2919
2364
  msgid "Option posts page in WordPress settings changed"
2365
  msgstr ""
2366
 
2367
- #: defaults.php:2920
2368
  msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
2369
  msgstr ""
2370
 
2371
- #: defaults.php:2932
2372
  msgid "Option Timezone in WordPress settings changed"
2373
  msgstr ""
2374
 
2375
- #: defaults.php:2933
2376
  msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
2377
  msgstr ""
2378
 
2379
- #: defaults.php:2935
2380
  msgid "Previous timezone"
2381
  msgstr ""
2382
 
2383
- #: defaults.php:2944
2384
  msgid "Option Date format in WordPress settings changed"
2385
  msgstr ""
2386
 
2387
- #: defaults.php:2945
2388
  msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
2389
  msgstr ""
2390
 
2391
- #: defaults.php:2947, defaults.php:2959
2392
  msgid "Previous format"
2393
  msgstr ""
2394
 
2395
- #: defaults.php:2956
2396
  msgid "Option Time format in WordPress settings changed"
2397
  msgstr ""
2398
 
2399
- #: defaults.php:2957
2400
  msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
2401
  msgstr ""
2402
 
2403
- #: defaults.php:2969
2404
  msgid "Option Automatic updates setting changed"
2405
  msgstr ""
2406
 
2407
- #: defaults.php:2970
2408
  msgid "Changed the <strong>Automatic updates</strong> setting."
2409
  msgstr ""
2410
 
2411
- #: defaults.php:2972
2412
  msgid "New setting status"
2413
  msgstr ""
2414
 
2415
- #: defaults.php:2982
2416
  msgid "Option Site Language setting changed"
2417
  msgstr ""
2418
 
2419
- #: defaults.php:2983
2420
  msgid "Changed the <strong>Site Language</strong> to %new_value%."
2421
  msgstr ""
2422
 
2423
- #: defaults.php:2993
2424
  msgid "Database Events"
2425
  msgstr ""
2426
 
2427
- #: defaults.php:2997
2428
  msgid "Plugin created table"
2429
  msgstr ""
2430
 
2431
- #: defaults.php:2998
2432
  msgid "The plugin %Plugin->Name% created this table in the database."
2433
  msgstr ""
2434
 
2435
- #: defaults.php:3000, defaults.php:3012, defaults.php:3024, defaults.php:3036, defaults.php:3048
2436
  msgid "Table"
2437
  msgstr ""
2438
 
2439
- #: defaults.php:3009
2440
  msgid "Plugin modified table structure"
2441
  msgstr ""
2442
 
2443
- #: defaults.php:3010
2444
  msgid "The plugin %Plugin->Name% modified the structure of a database table."
2445
  msgstr ""
2446
 
2447
- #: defaults.php:3021
2448
  msgid "Plugin deleted table"
2449
  msgstr ""
2450
 
2451
- #: defaults.php:3022
2452
  msgid "The plugin %Plugin->Name% deleted this table from the database."
2453
  msgstr ""
2454
 
2455
- #: defaults.php:3033
2456
  msgid "Theme created tables"
2457
  msgstr ""
2458
 
2459
- #: defaults.php:3034
2460
  msgid "The theme %Theme->Name% created this tables in the database."
2461
  msgstr ""
2462
 
2463
- #: defaults.php:3045
2464
  msgid "Theme modified tables structure"
2465
  msgstr ""
2466
 
2467
- #: defaults.php:3046
2468
  msgid "The theme %Theme->Name% modified the structure of this database table"
2469
  msgstr ""
2470
 
2471
- #: defaults.php:3057
2472
  msgid "Theme deleted tables"
2473
  msgstr ""
2474
 
2475
- #: defaults.php:3058
2476
  msgid "The theme %Theme->Name% deleted this table from the database."
2477
  msgstr ""
2478
 
2479
- #: defaults.php:3060, defaults.php:3072, defaults.php:3084, defaults.php:3096, defaults.php:3108, defaults.php:3120, defaults.php:3132
2480
  msgid "Tables"
2481
  msgstr ""
2482
 
2483
- #: defaults.php:3069
2484
  msgid "Unknown component created tables"
2485
  msgstr ""
2486
 
2487
- #: defaults.php:3070
2488
  msgid "An unknown component created these tables in the database."
2489
  msgstr ""
2490
 
2491
- #: defaults.php:3081
2492
  msgid "Unknown component modified tables structure"
2493
  msgstr ""
2494
 
2495
- #: defaults.php:3082
2496
  msgid "An unknown component modified the structure of these database tables."
2497
  msgstr ""
2498
 
2499
- #: defaults.php:3093
2500
  msgid "Unknown component deleted tables"
2501
  msgstr ""
2502
 
2503
- #: defaults.php:3094
2504
  msgid "An unknown component deleted these tables from the database."
2505
  msgstr ""
2506
 
2507
- #: defaults.php:3105
2508
  msgid "WordPress created tables"
2509
  msgstr ""
2510
 
2511
- #: defaults.php:3106
2512
  msgid "WordPress has created these tables in the database."
2513
  msgstr ""
2514
 
2515
- #: defaults.php:3117
2516
  msgid "WordPress modified tables structure"
2517
  msgstr ""
2518
 
2519
- #: defaults.php:3118
2520
  msgid "WordPress modified the structure of these database tables."
2521
  msgstr ""
2522
 
2523
- #: defaults.php:3129
2524
  msgid "WordPress deleted tables"
2525
  msgstr ""
2526
 
2527
- #: defaults.php:3130
2528
  msgid "WordPress deleted these tables from the database."
2529
  msgstr ""
2530
 
2531
- #: defaults.php:3141
2532
  msgid "Multisite Network Sites"
2533
  msgstr ""
2534
 
2535
- #: defaults.php:3142
2536
  msgid "MultiSite"
2537
  msgstr ""
2538
 
2539
- #: defaults.php:3146
2540
  msgid "New site added on the network"
2541
  msgstr ""
2542
 
2543
- #: defaults.php:3147
2544
  msgid "Added the new site %SiteName% to the network."
2545
  msgstr ""
2546
 
2547
- #: defaults.php:3149, defaults.php:3161, defaults.php:3173, defaults.php:3185, defaults.php:3197, defaults.php:3209
2548
  msgid "URL"
2549
  msgstr ""
2550
 
2551
- #: defaults.php:3158
2552
  msgid "Existing site archived"
2553
  msgstr ""
2554
 
2555
- #: defaults.php:3159
2556
  msgid "Archived the site %SiteName% on the network."
2557
  msgstr ""
2558
 
2559
- #: defaults.php:3170
2560
  msgid "Archived site has been unarchived"
2561
  msgstr ""
2562
 
2563
- #: defaults.php:3171
2564
  msgid "Unarchived the site %SiteName%."
2565
  msgstr ""
2566
 
2567
- #: defaults.php:3182
2568
  msgid "Deactivated site has been activated"
2569
  msgstr ""
2570
 
2571
- #: defaults.php:3183
2572
  msgid "Activated the site %SiteName% on the network."
2573
  msgstr ""
2574
 
2575
- #: defaults.php:3194
2576
  msgid "Site has been deactivated"
2577
  msgstr ""
2578
 
2579
- #: defaults.php:3195
2580
  msgid "Deactiveated the site %SiteName% on the network."
2581
  msgstr ""
2582
 
2583
- #: defaults.php:3206
2584
  msgid "Existing site deleted from network"
2585
  msgstr ""
2586
 
2587
- #: defaults.php:3207
2588
  msgid "The site: %SiteName%."
2589
  msgstr ""
2590
 
2591
- #: defaults.php:3218
2592
  msgid "Allow site administrators to add new users to their sites settings changed"
2593
  msgstr ""
2594
 
2595
- #: defaults.php:3219
2596
  msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
2597
  msgstr ""
2598
 
2599
- #: defaults.php:3228
2600
  msgid "Site upload space settings changed"
2601
  msgstr ""
2602
 
2603
- #: defaults.php:3229
2604
  msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
2605
  msgstr ""
2606
 
2607
- #: defaults.php:3238
2608
  msgid "Site upload space file size settings changed"
2609
  msgstr ""
2610
 
2611
- #: defaults.php:3239
2612
  msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
2613
  msgstr ""
2614
 
2615
- #: defaults.php:3241
2616
  msgid "Previous size (MB)"
2617
  msgstr ""
2618
 
2619
- #: defaults.php:3250
2620
  msgid "Site Upload file types settings changed"
2621
  msgstr ""
2622
 
2623
- #: defaults.php:3251
2624
  msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
2625
  msgstr ""
2626
 
2627
- #: defaults.php:3263
2628
  msgid "Site Max upload file size settings changed"
2629
  msgstr ""
2630
 
2631
- #: defaults.php:3264
2632
  msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
2633
  msgstr ""
2634
 
2635
- #: defaults.php:3266
2636
  msgid "Previous size (KB)"
2637
  msgstr ""
2638
 
2639
- #: defaults.php:3275
2640
  msgid "Allow new registrations settings changed"
2641
  msgstr ""
2642
 
2643
- #: defaults.php:3276
2644
  msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
2645
  msgstr ""
2646
 
2647
- #: defaults.php:3292, classes/Views/Settings.php:99
2648
  msgid "File Changes"
2649
  msgstr ""
2650
 
2651
- #: defaults.php:3293
2652
  msgid "Monitor File Changes"
2653
  msgstr ""
2654
 
2655
- #: defaults.php:3297
2656
  msgid "Dummy"
2657
  msgstr ""
2658
 
2659
- #. translators: Username
2660
- #. translators: Username
2661
- #: wp-security-audit-log.php:940, wp-security-audit-log.php:967
2662
- msgid "Hey %1$s"
2663
  msgstr ""
2664
 
2665
- #: wp-security-audit-log.php:941
2666
  msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
2667
  msgstr ""
2668
 
2669
- #: wp-security-audit-log.php:942, wp-security-audit-log.php:970
2670
  msgid "Note: "
2671
  msgstr ""
2672
 
2673
- #: wp-security-audit-log.php:943, wp-security-audit-log.php:971
2674
  msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
2675
  msgstr ""
2676
 
2677
- #. translators: 1: Plugin name. 2: Freemius link.
2678
- #: wp-security-audit-log.php:969
2679
- msgid "Please help us improve %2$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %5$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
2680
- msgstr ""
2681
-
2682
- #. translators: Plugin name
2683
- #: wp-security-audit-log.php:991
2684
- msgid "Get a free 7-day trial of the premium edition of %s. No credit card required, no commitments!"
2685
  msgstr ""
2686
 
2687
- #: wp-security-audit-log.php:992, classes/AlertManager.php:1082
2688
- msgid "WP Activity Log"
2689
- msgstr ""
2690
-
2691
- #: wp-security-audit-log.php:996
2692
- msgid "Start free trial"
2693
- msgstr ""
2694
-
2695
- #: wp-security-audit-log.php:1064
2696
  msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
2697
  msgstr ""
2698
 
2699
- #: wp-security-audit-log.php:1065
2700
  msgid "Activate the licence key now"
2701
  msgstr ""
2702
 
2703
  #. translators: Number of sites
2704
- #: wp-security-audit-log.php:1087
2705
  msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
2706
  msgstr ""
2707
 
2708
- #: wp-security-audit-log.php:1083
2709
  msgid "%s You need to renew your license to continue using premium features."
2710
  msgstr ""
2711
 
2712
- #: wp-security-audit-log.php:1185
2713
  msgid "Error: You do not have sufficient permissions to disable this custom field."
2714
  msgstr ""
2715
 
2716
  #. translators: name of meta field (in bold)
2717
- #: wp-security-audit-log.php:1233
2718
  msgid "Custom field %s is no longer being monitored."
2719
  msgstr ""
2720
 
2721
  #. translators: setting tab name "Excluded Objects"
2722
- #: wp-security-audit-log.php:1238
2723
  msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
2724
  msgstr ""
2725
 
2726
- #: wp-security-audit-log.php:1239
2727
  msgid "Excluded Objects"
2728
  msgstr ""
2729
 
2730
- #: wp-security-audit-log.php:1252
2731
  msgid "Error: You do not have sufficient permissions to disable this alert."
2732
  msgstr ""
2733
 
2734
- #: wp-security-audit-log.php:1276
2735
  msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
2736
  msgstr ""
2737
 
2738
- #: wp-security-audit-log.php:1276
2739
  msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
2740
  msgstr ""
2741
 
2742
- #: wp-security-audit-log.php:1301, classes/Views/SetupWizard.php:270
2743
  msgid "Installing, please wait"
2744
  msgstr ""
2745
 
2746
- #: wp-security-audit-log.php:1302, classes/Views/SetupWizard.php:271
2747
  msgid "Already installed"
2748
  msgstr ""
2749
 
2750
- #: wp-security-audit-log.php:1303, classes/Utilities/PluginInstallAndActivate.php:108, classes/Views/SetupWizard.php:272, classes/Views/SetupWizard.php:836
2751
  msgid "Extension installed"
2752
  msgstr ""
2753
 
2754
- #: wp-security-audit-log.php:1304, classes/Views/SetupWizard.php:273
2755
  msgid "Extension activated"
2756
  msgstr ""
2757
 
2758
- #: wp-security-audit-log.php:1305, classes/Views/SetupWizard.php:274
2759
  msgid "Install failed"
2760
  msgstr ""
2761
 
2762
  #. translators: %s: PHP Version
2763
- #: wp-security-audit-log.php:1357
2764
  msgid "You are using a version of PHP that is older than %s, which is no longer supported."
2765
  msgstr ""
2766
 
2767
- #: wp-security-audit-log.php:1359
2768
  msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
2769
  msgstr ""
2770
 
2771
  #. translators: %s: Activity Log for MainWP plugin hyperlink
2772
- #: wp-security-audit-log.php:1364
2773
  msgid "Please install the %s plugin on the MainWP dashboard."
2774
  msgstr ""
2775
 
2776
- #: wp-security-audit-log.php:1364
2777
  msgid "Activity Log for MainWP"
2778
  msgstr ""
2779
 
2780
  #. translators: %s: Getting started guide hyperlink
2781
- #: wp-security-audit-log.php:1366
2782
  msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
2783
  msgstr ""
2784
 
2785
- #: wp-security-audit-log.php:1366
2786
  msgid "getting started guide"
2787
  msgstr ""
2788
 
2789
- #: wp-security-audit-log.php:1848
2790
  msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
2791
  msgstr ""
2792
 
2793
- #: wp-security-audit-log.php:1867
2794
  msgid "Every 6 hours"
2795
  msgstr ""
2796
 
2797
- #: wp-security-audit-log.php:1871
2798
  msgid "Every 45 minutes"
2799
  msgstr ""
2800
 
2801
- #: wp-security-audit-log.php:1875
2802
  msgid "Every 30 minutes"
2803
  msgstr ""
2804
 
2805
- #: wp-security-audit-log.php:1879
2806
  msgid "Every 15 minutes"
2807
  msgstr ""
2808
 
2809
- #: wp-security-audit-log.php:1883
2810
  msgid "Every 10 minutes"
2811
  msgstr ""
2812
 
2813
- #: wp-security-audit-log.php:1887
2814
  msgid "Every 1 minute"
2815
  msgstr ""
2816
 
2817
  #. translators: 1. Deprecated method name 2. Version since deprecated
2818
- #: wp-security-audit-log.php:1901
2819
  msgid "Method %1$s is deprecated since version %2$s!"
2820
  msgstr ""
2821
 
@@ -2862,203 +2893,207 @@ msgstr ""
2862
  msgid "Contact us"
2863
  msgstr ""
2864
 
2865
- #: classes/AlertManager.php:1066
2866
  msgid "Database"
2867
  msgstr ""
2868
 
2869
- #: classes/AlertManager.php:1068, classes/AlertManager.php:1072
2870
  msgid "File"
2871
  msgstr ""
2872
 
2873
- #: classes/AlertManager.php:1069
2874
  msgid "Tag"
2875
  msgstr ""
2876
 
2877
- #: classes/AlertManager.php:1070
2878
  msgid "Comment"
2879
  msgstr ""
2880
 
2881
- #: classes/AlertManager.php:1071
2882
  msgid "Setting"
2883
  msgstr ""
2884
 
2885
- #: classes/AlertManager.php:1073
2886
  msgid "System Setting"
2887
  msgstr ""
2888
 
2889
- #: classes/AlertManager.php:1074
2890
  msgid "MainWP Network"
2891
  msgstr ""
2892
 
2893
- #: classes/AlertManager.php:1075
2894
  msgid "MainWP"
2895
  msgstr ""
2896
 
2897
- #: classes/AlertManager.php:1076
2898
  msgid "Category"
2899
  msgstr ""
2900
 
2901
- #: classes/AlertManager.php:1077
2902
  msgid "Custom Field"
2903
  msgstr ""
2904
 
2905
- #: classes/AlertManager.php:1078
2906
  msgid "Widget"
2907
  msgstr ""
2908
 
2909
- #: classes/AlertManager.php:1079
2910
  msgid "Menu"
2911
  msgstr ""
2912
 
2913
- #: classes/AlertManager.php:1080
2914
  msgid "Theme"
2915
  msgstr ""
2916
 
2917
- #: classes/AlertManager.php:1081
2918
  msgid "Activity log"
2919
  msgstr ""
2920
 
2921
- #: classes/AlertManager.php:1083
 
 
 
 
2922
  msgid "Multisite Network"
2923
  msgstr ""
2924
 
2925
- #: classes/AlertManager.php:1084, extensions/email-notifications/classes/Common.php:1136, extensions/search/classes/Filters/IpFilter.php:88, extensions/user-sessions/classes/View/Sessions.php:298
2926
  msgid "IP Address"
2927
  msgstr ""
2928
 
2929
- #: classes/AlertManager.php:1100
2930
  msgid "unknown object"
2931
  msgstr ""
2932
 
2933
- #: classes/AlertManager.php:1137
2934
  msgid "Login"
2935
  msgstr ""
2936
 
2937
- #: classes/AlertManager.php:1138
2938
  msgid "Logout"
2939
  msgstr ""
2940
 
2941
- #: classes/AlertManager.php:1139
2942
  msgid "Installed"
2943
  msgstr ""
2944
 
2945
- #: classes/AlertManager.php:1140
2946
  msgid "Activated"
2947
  msgstr ""
2948
 
2949
- #: classes/AlertManager.php:1141
2950
  msgid "Deactivated"
2951
  msgstr ""
2952
 
2953
- #: classes/AlertManager.php:1142
2954
  msgid "Uninstalled"
2955
  msgstr ""
2956
 
2957
- #: classes/AlertManager.php:1143
2958
  msgid "Updated"
2959
  msgstr ""
2960
 
2961
- #: classes/AlertManager.php:1144, extensions/user-sessions/classes/View/Sessions.php:145
2962
  msgid "Created"
2963
  msgstr ""
2964
 
2965
- #: classes/AlertManager.php:1145
2966
  msgid "Modified"
2967
  msgstr ""
2968
 
2969
- #: classes/AlertManager.php:1146, extensions/search/search-init.php:300
2970
  msgid "Deleted"
2971
  msgstr ""
2972
 
2973
- #: classes/AlertManager.php:1147, extensions/reports/classes/CsvReportGenerator.php:273, extensions/reports/classes/HtmlReportGenerator.php:449
2974
  msgid "Published"
2975
  msgstr ""
2976
 
2977
- #: classes/AlertManager.php:1148
2978
  msgid "Approved"
2979
  msgstr ""
2980
 
2981
- #: classes/AlertManager.php:1149
2982
  msgid "Unapproved"
2983
  msgstr ""
2984
 
2985
- #: classes/AlertManager.php:1150, extensions/external-db/classes/Mirroring.php:162
2986
  msgid "Enabled"
2987
  msgstr ""
2988
 
2989
- #: classes/AlertManager.php:1151, extensions/email-notifications/classes/Notifications.php:1894, extensions/external-db/classes/Mirroring.php:164
2990
  msgid "Disabled"
2991
  msgstr ""
2992
 
2993
- #: classes/AlertManager.php:1152
2994
  msgid "Added"
2995
  msgstr ""
2996
 
2997
- #: classes/AlertManager.php:1153
2998
  msgid "Failed Login"
2999
  msgstr ""
3000
 
3001
- #: classes/AlertManager.php:1154
3002
  msgid "Blocked"
3003
  msgstr ""
3004
 
3005
- #: classes/AlertManager.php:1155
3006
  msgid "Uploaded"
3007
  msgstr ""
3008
 
3009
- #: classes/AlertManager.php:1156
3010
  msgid "Restored"
3011
  msgstr ""
3012
 
3013
- #: classes/AlertManager.php:1157
3014
  msgid "Opened"
3015
  msgstr ""
3016
 
3017
- #: classes/AlertManager.php:1158
3018
  msgid "Viewed"
3019
  msgstr ""
3020
 
3021
- #: classes/AlertManager.php:1159
3022
  msgid "Started"
3023
  msgstr ""
3024
 
3025
- #: classes/AlertManager.php:1160, extensions/external-db/classes/Settings.php:562
3026
  msgid "Stopped"
3027
  msgstr ""
3028
 
3029
- #: classes/AlertManager.php:1161
3030
  msgid "Removed"
3031
  msgstr ""
3032
 
3033
- #: classes/AlertManager.php:1162
3034
  msgid "Unblocked"
3035
  msgstr ""
3036
 
3037
- #: classes/AlertManager.php:1163
3038
  msgid "Renamed"
3039
  msgstr ""
3040
 
3041
- #: classes/AlertManager.php:1164
3042
  msgid "Duplicated"
3043
  msgstr ""
3044
 
3045
- #: classes/AlertManager.php:1165
3046
  msgid "Submitted"
3047
  msgstr ""
3048
 
3049
- #: classes/AlertManager.php:1166
3050
  msgid "Revoked"
3051
  msgstr ""
3052
 
3053
- #: classes/AlertManager.php:1183
3054
  msgid "unknown type"
3055
  msgstr ""
3056
 
3057
- #: classes/AlertManager.php:1716, classes/ConstantManager.php:147
3058
  msgid "Unknown error code."
3059
  msgstr ""
3060
 
3061
- #: classes/AlertManager.php:1735, classes/AlertManager.php:1723, extensions/reports/classes/Common.php:1161, extensions/reports/classes/Common.php:1151
3062
  msgid "Unknown Site"
3063
  msgstr ""
3064
 
@@ -3090,7 +3125,7 @@ msgstr ""
3090
  msgid "All Sites"
3091
  msgstr ""
3092
 
3093
- #: classes/AuditLogGridView.php:272, classes/AuditLogGridView.php:298, classes/AuditLogListView.php:270, classes/AuditLogListView.php:300, classes/Views/Settings.php:1072, classes/Views/ToggleAlerts.php:299, extensions/search/classes/Filters/CodeFilter.php:43, extensions/search/classes/Filters/CodeFilter.php:69
3094
  msgid "Severity"
3095
  msgstr ""
3096
 
@@ -3098,11 +3133,11 @@ msgstr ""
3098
  msgid "Info"
3099
  msgstr ""
3100
 
3101
- #: classes/AuditLogGridView.php:278, classes/AuditLogListView.php:280, classes/AuditLogListView.php:312, extensions/email-notifications/classes/Common.php:1134, extensions/email-notifications/classes/Common.php:1195, extensions/search/classes/Filters/SiteFilter.php:29
3102
  msgid "Site"
3103
  msgstr ""
3104
 
3105
- #: classes/AuditLogGridView.php:281, classes/AuditLogGridView.php:304, classes/AuditLogListView.php:283, classes/AuditLogListView.php:321, extensions/email-notifications/classes/Common.php:1139, extensions/email-notifications/classes/Common.php:1169, extensions/reports/classes/CsvReportGenerator.php:86, extensions/reports/classes/HtmlReportGenerator.php:250
3106
  msgid "Message"
3107
  msgstr ""
3108
 
@@ -3118,27 +3153,23 @@ msgstr ""
3118
  msgid "Message:"
3119
  msgstr ""
3120
 
3121
- #: classes/AuditLogGridView.php:401, classes/AuditLogGridView.php:405, classes/AuditLogGridView.php:444, classes/AuditLogListView.php:413, classes/AuditLogListView.php:435
3122
  msgid "Unknown"
3123
  msgstr ""
3124
 
3125
- #: classes/AuditLogGridView.php:453, classes/AuditLogListView.php:442
3126
  msgid "Unregistered user"
3127
  msgstr ""
3128
 
3129
- #: classes/AuditLogGridView.php:429
3130
- msgid "Show me all activity by this User"
3131
- msgstr ""
3132
-
3133
- #: classes/AuditLogGridView.php:490, classes/AuditLogGridView.php:503, classes/AuditLogListView.php:475, classes/AuditLogListView.php:488
3134
  msgid "Show me all activity originating from this IP Address"
3135
  msgstr ""
3136
 
3137
- #: classes/AuditLogGridView.php:560, classes/AuditLogListView.php:520
3138
  msgid "View all details of this change"
3139
  msgstr ""
3140
 
3141
- #: classes/AuditLogGridView.php:561, classes/AuditLogListView.php:521
3142
  msgid "Alert Data Inspector"
3143
  msgstr ""
3144
 
@@ -3150,11 +3181,11 @@ msgstr ""
3150
  msgid "IP"
3151
  msgstr ""
3152
 
3153
- #: classes/AuditLogListView.php:274, classes/AuditLogListView.php:315, classes/WidgetManager.php:77, extensions/email-notifications/classes/Common.php:1107, extensions/search/classes/Filters/ObjectFilter.php:29, extensions/search/classes/Filters/ObjectFilter.php:53
3154
  msgid "Object"
3155
  msgstr ""
3156
 
3157
- #: classes/AuditLogListView.php:275, classes/AuditLogListView.php:318, classes/WidgetManager.php:78, extensions/email-notifications/classes/Common.php:1053, extensions/email-notifications/classes/Common.php:1108, extensions/reports/classes/CsvReportGenerator.php:85, extensions/reports/classes/HtmlReportGenerator.php:249, extensions/search/classes/Filters/EventTypeFilter.php:29, extensions/search/classes/Filters/EventTypeFilter.php:53
3158
  msgid "Event Type"
3159
  msgstr ""
3160
 
@@ -3250,7 +3281,7 @@ msgstr ""
3250
  msgid "Description"
3251
  msgstr ""
3252
 
3253
- #: classes/WidgetManager.php:71
3254
  msgid "No events found."
3255
  msgstr ""
3256
 
@@ -3268,35 +3299,35 @@ msgstr ""
3268
  msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
3269
  msgstr ""
3270
 
3271
- #: classes/Sensors/Content.php:697
3272
  msgid "Default template"
3273
  msgstr ""
3274
 
3275
- #: classes/Sensors/Content.php:698, extensions/external-db/classes/ExternalStorageTab.php:235
3276
  msgid "Default"
3277
  msgstr ""
3278
 
3279
- #: classes/Sensors/Content.php:740
3280
  msgid "No previous image"
3281
  msgstr ""
3282
 
3283
- #: classes/Sensors/Content.php:741
3284
  msgid "No image"
3285
  msgstr ""
3286
 
3287
- #: classes/Sensors/Content.php:1099, classes/Sensors/Content.php:1107
3288
  msgid "Public"
3289
  msgstr ""
3290
 
3291
- #: classes/Sensors/Content.php:1097, classes/Sensors/Content.php:1105
3292
  msgid "Private"
3293
  msgstr ""
3294
 
3295
- #: classes/Sensors/Content.php:1095, classes/Sensors/Content.php:1103
3296
  msgid "Password Protected"
3297
  msgstr ""
3298
 
3299
- #: classes/Sensors/Content.php:1270
3300
  msgid "no tags"
3301
  msgstr ""
3302
 
@@ -3316,19 +3347,19 @@ msgstr ""
3316
  msgid "sites & users can be registered"
3317
  msgstr ""
3318
 
3319
- #: classes/Sensors/System.php:175, classes/Sensors/System.php:176
3320
  msgid "latest posts"
3321
  msgstr ""
3322
 
3323
- #: classes/Sensors/System.php:175, classes/Sensors/System.php:176
3324
  msgid "static page"
3325
  msgstr ""
3326
 
3327
- #: classes/Sensors/System.php:355
3328
  msgid "automatically update to all new versions of WordPress"
3329
  msgstr ""
3330
 
3331
- #: classes/Sensors/System.php:355
3332
  msgid "automatically update maintenance and security releases only"
3333
  msgstr ""
3334
 
@@ -3354,15 +3385,15 @@ msgstr ""
3354
  msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
3355
  msgstr ""
3356
 
3357
- #: classes/Utilities/PluginInstallAndActivate.php:101, classes/Views/SetupWizard.php:829
3358
  msgid "Extension for "
3359
  msgstr ""
3360
 
3361
- #: classes/Utilities/PluginInstallAndActivate.php:110, classes/Views/SetupWizard.php:838
3362
  msgid "Install Extension"
3363
  msgstr ""
3364
 
3365
- #: classes/Utilities/PluginInstallAndActivate.php:106, classes/Views/SetupWizard.php:834
3366
  msgid "Extension installed, activate now?"
3367
  msgstr ""
3368
 
@@ -3370,6 +3401,26 @@ msgstr ""
3370
  msgid "Tried to install a zip or slug that was not in the allowed list"
3371
  msgstr ""
3372
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3373
  #: classes/Views/AuditLog.php:98
3374
  msgid "Get instantly alerted of critical changes via SMS & email, search the activity log, generate user reports, see who is logged in and more!"
3375
  msgstr ""
@@ -3419,11 +3470,11 @@ msgid "Help WP Activity Log improve."
3419
  msgstr ""
3420
 
3421
  #: classes/Views/AuditLog.php:213
3422
- msgid "Gathering non-sensitive diagnostic data about the plugin install helps us improve the plugin. When you opt-in, you also subscribe to our announcements (you can opt-out at any time). If you would rather opt-out, we will not collect any data."
3423
  msgstr ""
3424
 
3425
  #: classes/Views/AuditLog.php:213
3426
- msgid "Read more about what we collect."
3427
  msgstr ""
3428
 
3429
  #: classes/Views/AuditLog.php:215
@@ -3446,7 +3497,7 @@ msgstr ""
3446
  msgid "Install extension"
3447
  msgstr ""
3448
 
3449
- #: classes/Views/AuditLog.php:320, classes/Views/Settings.php:92
3450
  msgid "Activity Log Viewer"
3451
  msgstr ""
3452
 
@@ -3454,7 +3505,7 @@ msgstr ""
3454
  msgid "Log Viewer"
3455
  msgstr ""
3456
 
3457
- #: classes/Views/AuditLog.php:504, classes/Views/Settings.php:320, classes/Views/ToggleAlerts.php:109, extensions/email-notifications/classes/AddNotification.php:224, extensions/email-notifications/classes/AddNotification.php:257, extensions/email-notifications/classes/EditNotification.php:226, extensions/email-notifications/classes/EditNotification.php:234, extensions/email-notifications/classes/EditNotification.php:230, extensions/email-notifications/classes/EditNotification.php:239, extensions/email-notifications/classes/EditNotification.php:267, extensions/external-db/classes/Settings.php:234
3458
  msgid "You do not have sufficient permissions to access this page."
3459
  msgstr ""
3460
 
@@ -3462,11 +3513,11 @@ msgstr ""
3462
  msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
3463
  msgstr ""
3464
 
3465
- #: classes/Views/AuditLog.php:555, classes/Views/Settings.php:525, classes/Views/Settings.php:552, classes/Views/Settings.php:618, classes/Views/Settings.php:676, classes/Views/Settings.php:1108, classes/Views/Settings.php:1392, classes/Views/Settings.php:1433, classes/Views/Settings.php:1464, classes/Views/SetupWizard.php:562
3466
  msgid "Yes"
3467
  msgstr ""
3468
 
3469
- #: classes/Views/AuditLog.php:556, classes/Views/Settings.php:530, classes/Views/Settings.php:557, classes/Views/Settings.php:648, classes/Views/Settings.php:686, classes/Views/Settings.php:1113, classes/Views/Settings.php:1399, classes/Views/Settings.php:1440, classes/Views/Settings.php:1465, classes/Views/SetupWizard.php:567
3470
  msgid "No"
3471
  msgstr ""
3472
 
@@ -3478,7 +3529,7 @@ msgstr ""
3478
  msgid "No Results"
3479
  msgstr ""
3480
 
3481
- #: classes/Views/AuditLog.php:726, classes/Views/AuditLog.php:769, classes/Views/AuditLog.php:1047, classes/Views/AuditLog.php:1109, classes/Views/AuditLog.php:1162, classes/Views/Settings.php:235, classes/Views/Settings.php:1608, classes/Views/Settings.php:1636, classes/Views/Settings.php:1666, classes/Views/SetupWizard.php:96, extensions/search/search-init.php:398, extensions/search/search-init.php:446, extensions/email-notifications/classes/Notifications.php:559, extensions/external-db/classes/Connections.php:825, extensions/external-db/classes/Connections.php:850, extensions/external-db/classes/Connections.php:981, extensions/external-db/classes/Mirroring.php:755, extensions/external-db/classes/Mirroring.php:805, extensions/external-db/classes/Settings.php:672, extensions/external-db/classes/Settings.php:848, extensions/external-db/classes/Settings.php:868, extensions/user-sessions/classes/Views.php:524, extensions/reports/classes/Views/Main.php:739
3482
  msgid "Nonce verification failed."
3483
  msgstr ""
3484
 
@@ -3588,7 +3639,7 @@ msgid "External DB Extension"
3588
  msgstr ""
3589
 
3590
  #: classes/Views/ExternalDB.php:35
3591
- msgid "DB & Integrations &#8682;"
3592
  msgstr ""
3593
 
3594
  #: classes/Views/ExternalDB.php:49
@@ -3627,11 +3678,11 @@ msgstr ""
3627
  msgid "Configure an unlimited number of connections to different databases and third party services."
3628
  msgstr ""
3629
 
3630
- #: classes/Views/Help.php:62, classes/Views/Help.php:113
3631
  msgid "Help"
3632
  msgstr ""
3633
 
3634
- #: classes/Views/Help.php:71, classes/Views/Help.php:242
3635
  msgid "Contact Us"
3636
  msgstr ""
3637
 
@@ -3887,635 +3938,651 @@ msgstr ""
3887
  msgid "Save search terms and filters to run the searches again in the future with just a single click."
3888
  msgstr ""
3889
 
3890
- #: classes/Views/Settings.php:85
3891
  msgid "General"
3892
  msgstr ""
3893
 
3894
- #: classes/Views/Settings.php:105
3895
- msgid "Exclude Objects"
 
 
 
 
 
 
 
 
3896
  msgstr ""
3897
 
3898
- #: classes/Views/Settings.php:112
3899
- msgid "Advanced Settings"
3900
  msgstr ""
3901
 
3902
- #: classes/Views/Settings.php:161, classes/Views/Settings.php:175, extensions/email-notifications/classes/SMSProviderSettings.php:143
3903
  msgid "Settings"
3904
  msgstr ""
3905
 
3906
- #: classes/Views/Settings.php:202
3907
  msgid "Current user is not allowed to save settings."
3908
  msgstr ""
3909
 
3910
- #: classes/Views/Settings.php:208
3911
  msgid "Unknown settings tab."
3912
  msgstr ""
3913
 
3914
- #: classes/Views/Settings.php:220, classes/Views/Settings.php:1698, classes/Views/Settings.php:1721, classes/Views/SetupWizard.php:83, extensions/email-notifications/classes/Notifications.php:158, extensions/external-db/classes/Connections.php:810, extensions/external-db/classes/Connections.php:841, extensions/external-db/classes/Connections.php:864, extensions/external-db/classes/Connections.php:977, extensions/external-db/classes/Mirroring.php:708, extensions/external-db/classes/Mirroring.php:774, extensions/external-db/classes/Settings.php:659, extensions/external-db/classes/Settings.php:832, extensions/external-db/classes/Settings.php:863
3915
  msgid "Access Denied."
3916
  msgstr ""
3917
 
3918
- #: classes/Views/Settings.php:245, classes/Views/SetupWizard.php:106
3919
  msgid "Invalid input."
3920
  msgstr ""
3921
 
3922
- #: classes/Views/Settings.php:336, classes/Views/ToggleAlerts.php:126, extensions/external-db/classes/Settings.php:247
3923
  msgid "Settings have been saved."
3924
  msgstr ""
3925
 
3926
- #: classes/Views/Settings.php:332
3927
  msgid "Message sent successfully."
3928
  msgstr ""
3929
 
3930
- #: classes/Views/Settings.php:342, classes/Views/ToggleAlerts.php:132, extensions/external-db/classes/Settings.php:252, extensions/user-sessions/classes/View/Sessions.php:130
3931
  msgid "Error: "
3932
  msgstr ""
3933
 
3934
- #: classes/Views/Settings.php:360
3935
  msgid "No data is old enough to be purged."
3936
  msgstr ""
3937
 
3938
- #: classes/Views/Settings.php:354
3939
  msgid "Old data successfully purged."
3940
  msgstr ""
3941
 
3942
- #: classes/Views/Settings.php:391
3943
  msgid "Send Message"
3944
  msgstr ""
3945
 
3946
- #: classes/Views/Settings.php:446
 
 
 
 
3947
  msgid "Use infinite scroll or pagination for the event viewer?"
3948
  msgstr ""
3949
 
3950
  #. translators: Learn more link.
3951
- #: classes/Views/Settings.php:451
3952
  msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
3953
  msgstr ""
3954
 
3955
- #: classes/Views/Settings.php:452
3956
  msgid "(Premium feature)"
3957
  msgstr ""
3958
 
3959
- #: classes/Views/Settings.php:459
3960
  msgid "Select event viewer view type:"
3961
  msgstr ""
3962
 
3963
- #: classes/Views/Settings.php:464
3964
  msgid "Infinite Scroll (Recommended)"
3965
  msgstr ""
3966
 
3967
- #: classes/Views/Settings.php:469
3968
  msgid "Pagination"
3969
  msgstr ""
3970
 
3971
- #: classes/Views/Settings.php:480
3972
  msgid "Do you want the activity log viewer to auto refresh?"
3973
  msgstr ""
3974
 
3975
- #: classes/Views/Settings.php:481
3976
  msgid "The activity log viewer auto refreshes every 30 seconds when opened so you can see the latest events as they happen almost in real time."
3977
  msgstr ""
3978
 
3979
- #: classes/Views/Settings.php:485
3980
  msgid "Refresh activity log viewer"
3981
  msgstr ""
3982
 
3983
- #: classes/Views/Settings.php:491
3984
  msgid "Auto refresh"
3985
  msgstr ""
3986
 
3987
- #: classes/Views/Settings.php:496
3988
  msgid "Do not auto refresh"
3989
  msgstr ""
3990
 
3991
- #: classes/Views/Settings.php:506
3992
  msgid "Display latest events widget in Dashboard & Admin bar"
3993
  msgstr ""
3994
 
3995
  #. translators: Max number of dashboard widget alerts.
3996
- #: classes/Views/Settings.php:511
3997
  msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
3998
  msgstr ""
3999
 
4000
- #: classes/Views/Settings.php:519
4001
  msgid "Dashboard Widget"
4002
  msgstr ""
4003
 
4004
- #: classes/Views/Settings.php:540
4005
  msgid "Admin Bar Notification"
4006
  msgstr ""
4007
 
4008
- #: classes/Views/Settings.php:543
4009
  msgid "Admin Bar Notification (Premium)"
4010
  msgstr ""
4011
 
4012
- #: classes/Views/Settings.php:567
4013
  msgid "Admin Bar Notification Updates"
4014
  msgstr ""
4015
 
4016
- #: classes/Views/Settings.php:570
4017
  msgid "Admin Bar Notification Updates (Premium)"
4018
  msgstr ""
4019
 
4020
- #: classes/Views/Settings.php:579
4021
  msgid "Update in near real time"
4022
  msgstr ""
4023
 
4024
- #: classes/Views/Settings.php:584
4025
  msgid "Update only on page refreshes"
4026
  msgstr ""
4027
 
4028
- #: classes/Views/Settings.php:594
4029
  msgid "Add user notification on the WordPress login page"
4030
  msgstr ""
4031
 
4032
- #: classes/Views/Settings.php:595
4033
  msgid "Many compliance regulations (such as the GDPR) require website administrators to tell the users of their website that all the changes they do when logged in are being logged."
4034
  msgstr ""
4035
 
4036
- #: classes/Views/Settings.php:599
4037
  msgid "Login Page Notification"
4038
  msgstr ""
4039
 
4040
- #: classes/Views/Settings.php:624
4041
  msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
4042
  msgstr ""
4043
 
4044
- #: classes/Views/Settings.php:642
4045
  msgid "<strong>Note: </strong>"
4046
  msgstr ""
4047
 
4048
- #: classes/Views/Settings.php:642
4049
  msgid "The only HTML code allowed in the login page notification is for links ( < a href >< /a > )."
4050
  msgstr ""
4051
 
4052
- #: classes/Views/Settings.php:658
4053
  msgid "Is your website running behind a firewall or reverse proxy?"
4054
  msgstr ""
4055
 
4056
  #. translators: Learn more link.
4057
- #: classes/Views/Settings.php:663
4058
  msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
4059
  msgstr ""
4060
 
4061
- #: classes/Views/Settings.php:664, classes/Views/Settings.php:710, classes/Views/Settings.php:765
4062
  msgid "learn more"
4063
  msgstr ""
4064
 
4065
- #: classes/Views/Settings.php:671
4066
  msgid "Reverse Proxy / Firewall Options"
4067
  msgstr ""
4068
 
4069
- #: classes/Views/Settings.php:681
4070
  msgid "Filter internal IP addresses from the proxy headers. Enable this option only if you are are still seeing the internal IP addresses of the firewall or proxy."
4071
  msgstr ""
4072
 
4073
- #: classes/Views/Settings.php:697
4074
  msgid "Who can change the plugin settings?"
4075
  msgstr ""
4076
 
4077
  #. translators: Learn more link.
4078
- #: classes/Views/Settings.php:709
4079
  msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
4080
  msgstr ""
4081
 
4082
- #: classes/Views/Settings.php:720
4083
  msgid "Restrict plugin access"
4084
  msgstr ""
4085
 
4086
- #: classes/Views/Settings.php:725, classes/Views/Settings.php:780
4087
  msgid "Only me"
4088
  msgstr ""
4089
 
4090
- #: classes/Views/Settings.php:734
4091
  msgid "All administrators"
4092
  msgstr ""
4093
 
4094
- #: classes/Views/Settings.php:732
4095
  msgid "All superadmins"
4096
  msgstr ""
4097
 
4098
- #: classes/Views/Settings.php:747
4099
  msgid "Allow other users to view the activity log"
4100
  msgstr ""
4101
 
4102
- #: classes/Views/Settings.php:761
4103
  msgid "By default only users with administrator role can view the WordPress activity log. To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4104
  msgstr ""
4105
 
4106
- #: classes/Views/Settings.php:759
4107
  msgid "By default only super administrators and the child sites' administrators can view the WordPress activity log. Though you can change this by using the setting below."
4108
  msgstr ""
4109
 
4110
- #: classes/Views/Settings.php:774, classes/Views/Settings.php:804
4111
  msgid "Can view events"
4112
  msgstr ""
4113
 
4114
- #: classes/Views/Settings.php:781
4115
  msgid "Super administators only"
4116
  msgstr ""
4117
 
4118
- #: classes/Views/Settings.php:782
4119
  msgid "Super administators and site administrators"
4120
  msgstr ""
4121
 
4122
- #: classes/Views/Settings.php:798
4123
  msgid "To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4124
  msgstr ""
4125
 
4126
- #: classes/Views/Settings.php:804
4127
  msgid "Can also view events"
4128
  msgstr ""
4129
 
4130
- #: classes/Views/Settings.php:810, classes/Views/Settings.php:1200, classes/Views/Settings.php:1221, classes/Views/Settings.php:1242, classes/Views/Settings.php:1264, classes/Views/Settings.php:1311
4131
  msgid "Add"
4132
  msgstr ""
4133
 
4134
- #: classes/Views/Settings.php:813
4135
  msgid "Specify the username or the users which do not have an admin role but can also see the WordPress activity role. You can also specify roles."
4136
  msgstr ""
4137
 
4138
- #: classes/Views/Settings.php:827, classes/Views/Settings.php:1207, classes/Views/Settings.php:1228, classes/Views/Settings.php:1249, classes/Views/Settings.php:1271, classes/Views/Settings.php:1319, classes/Views/Settings.php:1573, extensions/search/search-init.php:303, extensions/search/classes/FilterManager.php:387
4139
  msgid "Remove"
4140
  msgstr ""
4141
 
4142
- #: classes/Views/Settings.php:839
4143
  msgid "Which email address should the plugin use as a from address?"
4144
  msgstr ""
4145
 
4146
- #: classes/Views/Settings.php:840
4147
  msgid "By default when the plugin sends an email notification it uses the email address specified in this website’s general settings. Though you can change the email address and display name from this section."
4148
  msgstr ""
4149
 
4150
- #: classes/Views/Settings.php:844
4151
  msgid "From Email & Name"
4152
  msgstr ""
4153
 
4154
- #: classes/Views/Settings.php:850
4155
  msgid "Use the email address from the WordPress general settings"
4156
  msgstr ""
4157
 
4158
- #: classes/Views/Settings.php:855
4159
  msgid "Use another email address"
4160
  msgstr ""
4161
 
4162
- #: classes/Views/Settings.php:859
4163
  msgid "Email Address"
4164
  msgstr ""
4165
 
4166
- #: classes/Views/Settings.php:864
4167
  msgid "Display Name"
4168
  msgstr ""
4169
 
4170
- #: classes/Views/Settings.php:875
4171
  msgid "Do you want to hide the plugin from the list of installed plugins?"
4172
  msgstr ""
4173
 
4174
- #: classes/Views/Settings.php:876
4175
  msgid "By default all installed plugins are listed in the plugins page. Set this option to Yes remove WP Activity Log from the list of installed plugins for users who are unable to access the WP Activity Log settings."
4176
  msgstr ""
4177
 
4178
- #: classes/Views/Settings.php:880
4179
  msgid "Hide Plugin in Plugins Page"
4180
  msgstr ""
4181
 
4182
- #: classes/Views/Settings.php:885
4183
  msgid "Yes, hide the plugin and any WP Activity Log plugin extensions from the list of installed plugins"
4184
  msgstr ""
4185
 
4186
- #: classes/Views/Settings.php:890
4187
  msgid "No, do not hide the plugin"
4188
  msgstr ""
4189
 
4190
- #: classes/Views/Settings.php:956
4191
  msgid "For how long do you want to keep the activity log events (Retention settings) ?"
4192
  msgstr ""
4193
 
4194
- #: classes/Views/Settings.php:959
4195
  msgid "The plugin uses an efficient way to store the activity log data in the WordPress database, though the more data you keep the more disk space will be required. "
4196
  msgstr ""
4197
 
4198
- #: classes/Views/Settings.php:960
4199
  msgid "<a href=\"https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">Upgrade to Premium</a> to store the activity log data in an external database."
4200
  msgstr ""
4201
 
4202
- #: classes/Views/Settings.php:970
4203
  msgid "What timestamp you would like to see in the WordPress activity log?"
4204
  msgstr ""
4205
 
4206
- #: classes/Views/Settings.php:971
4207
  msgid "Note that the WordPress' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference."
4208
  msgstr ""
4209
 
4210
- #: classes/Views/Settings.php:975
4211
  msgid "Events Timestamp"
4212
  msgstr ""
4213
 
4214
- #: classes/Views/Settings.php:995
4215
  msgid "UTC"
4216
  msgstr ""
4217
 
4218
- #: classes/Views/Settings.php:1001
4219
  msgid "Timezone configured on this WordPress website"
4220
  msgstr ""
4221
 
4222
- #: classes/Views/Settings.php:1008
4223
  msgid "Show Milliseconds"
4224
  msgstr ""
4225
 
4226
- #: classes/Views/Settings.php:1015
4227
  msgid "Show Milliseconds in list view"
4228
  msgstr ""
4229
 
4230
- #: classes/Views/Settings.php:1025
4231
  msgid "What user information should be displayed in the WordPress activity log?"
4232
  msgstr ""
4233
 
4234
- #: classes/Views/Settings.php:1026
4235
  msgid "Usernames might not be the same as a user's first and last name so it can be difficult to recognize whose user was that did a change. When there is no first & last name or public display name configured the plugin will revert back to the WordPress username."
4236
  msgstr ""
4237
 
4238
- #: classes/Views/Settings.php:1030
4239
  msgid "User information in Activity log"
4240
  msgstr ""
4241
 
4242
- #: classes/Views/Settings.php:1036
4243
  msgid "WordPress username"
4244
  msgstr ""
4245
 
4246
- #: classes/Views/Settings.php:1041
4247
  msgid "First name & last name"
4248
  msgstr ""
4249
 
4250
- #: classes/Views/Settings.php:1046
4251
  msgid "Configured public display name"
4252
  msgstr ""
4253
 
4254
- #: classes/Views/Settings.php:1056
4255
  msgid "Select the columns to be displayed in the WordPress activity log"
4256
  msgstr ""
4257
 
4258
- #: classes/Views/Settings.php:1057
4259
  msgid "When you deselect a column it won’t be shown in the activity log viewer in both views. The data will still be recorded by the plugin."
4260
  msgstr ""
4261
 
4262
- #: classes/Views/Settings.php:1061
4263
  msgid "Activity log columns selection"
4264
  msgstr ""
4265
 
4266
- #: classes/Views/Settings.php:1080
4267
  msgid "Info (used in Grid view mode only)"
4268
  msgstr ""
4269
 
4270
- #: classes/Views/Settings.php:1078
4271
  msgid "Source IP Address"
4272
  msgstr ""
4273
 
4274
- #: classes/Views/Settings.php:1074
4275
  msgid "Date & Time"
4276
  msgstr ""
4277
 
4278
- #: classes/Views/Settings.php:1070, extensions/email-notifications/classes/Common.php:1103, extensions/email-notifications/classes/Common.php:1137, extensions/email-notifications/classes/Common.php:1166, extensions/search/classes/Filters/AlertFilter.php:26, extensions/search/classes/Filters/AlertFilter.php:51
4279
  msgid "Event ID"
4280
  msgstr ""
4281
 
4282
- #: classes/Views/Settings.php:1096
4283
  msgid "Do you want to keep a log of WordPress background activity?"
4284
  msgstr ""
4285
 
4286
- #: classes/Views/Settings.php:1098
4287
  msgid "WordPress does a lot of things in the background that you do not necessarily need to know about, such as; deletion of post revisions, deletion of auto saved drafts etc. By default the plugin does not report them since there might be a lot and are irrelevant to the user."
4288
  msgstr ""
4289
 
4290
- #: classes/Views/Settings.php:1103
4291
  msgid "Enable Events for WordPress Background Activity"
4292
  msgstr ""
4293
 
4294
- #: classes/Views/Settings.php:1178
4295
  msgid "Configure how often file changes scan run and other settings from the"
4296
  msgstr ""
4297
 
4298
- #: classes/Views/Settings.php:1178
4299
  msgid "Website File Changes plugin settings"
4300
  msgstr ""
4301
 
4302
- #: classes/Views/Settings.php:1162, classes/Views/ToggleAlerts.php:522
4303
  msgid "Website File Changes Monitor"
4304
  msgstr ""
4305
 
4306
- #: classes/Views/Settings.php:1163, classes/Views/ToggleAlerts.php:523
4307
  msgid "To keep a log of file changes please install Website File Changes Monitor, a plugin which is also developed by us."
4308
  msgstr ""
4309
 
4310
- #: classes/Views/Settings.php:1164, classes/Views/ToggleAlerts.php:524
4311
  msgid "Install plugin now"
4312
  msgstr ""
4313
 
4314
- #: classes/Views/Settings.php:1164, classes/Views/ToggleAlerts.php:524
4315
  msgid "Learn More"
4316
  msgstr ""
4317
 
4318
- #: classes/Views/Settings.php:1192
4319
  msgid "By default the plugin keeps a log of all user changes done on your WordPress website. Use the setting below to exclude any objects from the activity log. When an object is excluded from the activity log, any event in which that object is referred will not be logged in the activity log."
4320
  msgstr ""
4321
 
4322
- #: classes/Views/Settings.php:1196
4323
  msgid "Exclude Users:"
4324
  msgstr ""
4325
 
4326
- #: classes/Views/Settings.php:1217
4327
  msgid "Exclude Roles:"
4328
  msgstr ""
4329
 
4330
- #: classes/Views/Settings.php:1238
4331
  msgid "Exclude IP Address(es):"
4332
  msgstr ""
4333
 
4334
- #: classes/Views/Settings.php:1254
4335
  msgid "You can exclude an individual IP address or a range of IP addresses. To exclude a range use the following format: [first IP]-[last octet of the last IP]. Example: 172.16.180.6-127."
4336
  msgstr ""
4337
 
4338
- #: classes/Views/Settings.php:1260
4339
  msgid "Exclude Post Type:"
4340
  msgstr ""
4341
 
4342
- #: classes/Views/Settings.php:1276
4343
  msgid "WordPress has the post and page post types by default though your website might use more post types (custom post types). You can exclude all post types, including the default WordPress ones."
4344
  msgstr ""
4345
 
4346
- #: classes/Views/Settings.php:1283
4347
  msgid "Exclude custom post fields:"
4348
  msgstr ""
4349
 
4350
- #: classes/Views/Settings.php:1291
4351
  msgid "Exclude custom user fields:"
4352
  msgstr ""
4353
 
4354
- #: classes/Views/Settings.php:1324
4355
  msgid "You can use the * wildcard to exclude multiple matching custom fields. For example to exclude all custom fields starting with wp123 enter wp123*"
4356
  msgstr ""
4357
 
4358
- #: classes/Views/Settings.php:1351
4359
  msgid "These settings are for advanced users."
4360
  msgstr ""
4361
 
4362
- #: classes/Views/Settings.php:1352
4363
  msgid "If you have any questions <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">contact us</a>."
4364
  msgstr ""
4365
 
4366
- #: classes/Views/Settings.php:1355
4367
  msgid "Reset plugin settings to default"
4368
  msgstr ""
4369
 
4370
- #: classes/Views/Settings.php:1356
4371
  msgid "Use this button to <em>factory reset</em> the plugin. This means that all the configured settings will be reset to default and all email notifications, scheduled reports, external database / third party services connections, archiving and mirroring rule will be deleted. NOTE: the activity log data will not be purged. Use the setting below to purge the activity log."
4372
  msgstr ""
4373
 
4374
- #: classes/Views/Settings.php:1360
4375
  msgid "Reset Settings"
4376
  msgstr ""
4377
 
4378
- #: classes/Views/Settings.php:1362
4379
  msgid "RESET"
4380
  msgstr ""
4381
 
4382
- #: classes/Views/Settings.php:1368
4383
  msgid "Purge the WordPress activity log"
4384
  msgstr ""
4385
 
4386
- #: classes/Views/Settings.php:1369
4387
  msgid "Click the Purge button below to delete all the data from the WordPress activity log and start afresh."
4388
  msgstr ""
4389
 
4390
- #: classes/Views/Settings.php:1373
4391
  msgid "Purge Activity Log"
4392
  msgstr ""
4393
 
4394
- #: classes/Views/Settings.php:1375
4395
  msgid "PURGE"
4396
  msgstr ""
4397
 
4398
- #: classes/Views/Settings.php:1382
4399
  msgid "MainWP Child Site Stealth Mode"
4400
  msgstr ""
4401
 
4402
- #: classes/Views/Settings.php:1383
4403
  msgid "This option is enabled automatically when the plugin detects the MainWP Child plugin on the site. When this setting is enabled plugin access is restricted to the administrator who installs the plugin, the plugin is not shown in the list of installed plugins and no admin notifications are shown. Disable this option to change the plugin to the default setup."
4404
  msgstr ""
4405
 
4406
- #: classes/Views/Settings.php:1387
4407
  msgid "Enable MainWP Child Site Stealth Mode"
4408
  msgstr ""
4409
 
4410
- #: classes/Views/Settings.php:1407
4411
  msgid "Admin blocking plugins support"
4412
  msgstr ""
4413
 
4414
- #: classes/Views/Settings.php:1412
4415
  msgid "Enable early plugin loading on sites that use admin blocking plugins"
4416
  msgstr ""
4417
 
4418
- #: classes/Views/Settings.php:1421
4419
  msgid "Do you want to delete the plugin data from the database upon uninstall?"
4420
  msgstr ""
4421
 
4422
- #: classes/Views/Settings.php:1422
4423
  msgid "The plugin saves the activity log data and settings in the WordPress database. By default upon uninstalling the plugin the data is kept in the database so if it is installed again, you can still access the data. If the data is deleted it is not possible to recover it so you won't be able to access it again even when you reinstall the plugin."
4424
  msgstr ""
4425
 
4426
- #: classes/Views/Settings.php:1426
4427
  msgid "Remove Data on Uninstall"
4428
  msgstr ""
4429
 
4430
- #: classes/Views/Settings.php:1451
4431
  msgid "Are you sure you want to reset all the plugin settings to default? This action cannot be undone."
4432
  msgstr ""
4433
 
4434
- #: classes/Views/Settings.php:1461
4435
  msgid "Are you sure you want to purge all the activity log data?"
4436
  msgstr ""
4437
 
4438
- #: classes/Views/Settings.php:1485
4439
  msgid "MainWP Child plugin is not active on this website."
4440
  msgstr ""
4441
 
4442
- #: classes/Views/Settings.php:1566
4443
  msgid "The specified value is not a valid URL!"
4444
  msgstr ""
4445
 
4446
- #: classes/Views/Settings.php:1567
4447
  msgid "The specified value is not a valid post type!"
4448
  msgstr ""
4449
 
4450
- #: classes/Views/Settings.php:1568
4451
  msgid "The specified value is not a valid IP address!"
4452
  msgstr ""
4453
 
4454
- #: classes/Views/Settings.php:1569
4455
  msgid "The specified value is not a user nor a role!"
4456
  msgstr ""
4457
 
4458
- #: classes/Views/Settings.php:1570
4459
  msgid "Filename cannot be added because it contains invalid characters."
4460
  msgstr ""
4461
 
4462
- #: classes/Views/Settings.php:1571
4463
  msgid "File extension cannot be added because it contains invalid characters."
4464
  msgstr ""
4465
 
4466
- #: classes/Views/Settings.php:1572
4467
  msgid "Directory cannot be added because it contains invalid characters."
4468
  msgstr ""
4469
 
4470
- #: classes/Views/Settings.php:1574
4471
  msgid "Please save any changes before switching tabs."
4472
  msgstr ""
4473
 
4474
- #: classes/Views/Settings.php:1704, classes/Views/Settings.php:1727
4475
  msgid "Nonce Verification Failed."
4476
  msgstr ""
4477
 
4478
- #: classes/Views/Settings.php:1712
4479
  msgid "Plugin settings have been reset."
4480
  msgstr ""
4481
 
4482
- #: classes/Views/Settings.php:1738
4483
  msgid "Reset query failed."
4484
  msgstr ""
4485
 
4486
- #: classes/Views/Settings.php:1736
4487
  msgid "Tables has been reset."
4488
  msgstr ""
4489
 
4490
- #: classes/Views/Settings.php:1751
4491
  msgid "Activity log retention"
4492
  msgstr ""
4493
 
4494
- #: classes/Views/Settings.php:1757
4495
  msgid "Keep all data"
4496
  msgstr ""
4497
 
4498
- #: classes/Views/Settings.php:1784
4499
- msgid "Delete events older than"
4500
  msgstr ""
4501
 
4502
- #: classes/Views/Settings.php:1792
4503
  msgid "Months"
4504
  msgstr ""
4505
 
4506
- #: classes/Views/Settings.php:1793
4507
  msgid "Years"
4508
  msgstr ""
4509
 
4510
- #: classes/Views/Settings.php:1801
 
 
 
 
4511
  msgid "The next scheduled purging of activity log data that is older than "
4512
  msgstr ""
4513
 
4514
- #: classes/Views/Settings.php:1808
4515
  msgid "You can run the purging process now by clicking the button below."
4516
  msgstr ""
4517
 
4518
- #: classes/Views/Settings.php:1812
4519
  msgid "Purge Old Data"
4520
  msgstr ""
4521
 
@@ -4539,7 +4606,7 @@ msgstr ""
4539
  msgid "Log Retention"
4540
  msgstr ""
4541
 
4542
- #: classes/Views/SetupWizard.php:202, classes/Views/SetupWizard.php:736, classes/Views/SetupWizard.php:737
4543
  msgid "Finish"
4544
  msgstr ""
4545
 
@@ -4596,7 +4663,7 @@ msgstr ""
4596
  msgid "Note: You can change the WordPress logging level from the plugin’s settings anytime."
4597
  msgstr ""
4598
 
4599
- #: classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:634, classes/Views/SetupWizard.php:635, classes/Views/SetupWizard.php:851, classes/Views/SetupWizard.php:852, extensions/external-db/classes/Connections.php:627, extensions/external-db/classes/Mirroring.php:283, extensions/external-db/classes/Mirroring.php:607
4600
  msgid "Next"
4601
  msgstr ""
4602
 
@@ -4668,19 +4735,23 @@ msgstr ""
4668
  msgid "Benefits of keeping a WordPress activity log"
4669
  msgstr ""
4670
 
4671
- #: classes/Views/SetupWizard.php:728
4672
- msgid "We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback, <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=wizard+configuration\" rel=\"noopener noreferrer\" target=\"_blank\">please get in touch!</a>"
 
 
 
 
4673
  msgstr ""
4674
 
4675
- #: classes/Views/SetupWizard.php:764
4676
  msgid "Third Party Extensions"
4677
  msgstr ""
4678
 
4679
- #: classes/Views/SetupWizard.php:805
4680
  msgid "Monitoring changes done in third party plugins"
4681
  msgstr ""
4682
 
4683
- #: classes/Views/SetupWizard.php:806
4684
  msgid "We noticed that the below plugins are installed on this website. You can install our extensions to also keep a log of changes users do on these plugins."
4685
  msgstr ""
4686
 
@@ -4789,7 +4860,7 @@ msgstr ""
4789
  msgid "The %s log level has been successfully loaded and applied."
4790
  msgstr ""
4791
 
4792
- #: classes/Views/ToggleAlerts.php:563, extensions/email-notifications/classes/Notifications.php:339, extensions/email-notifications/classes/Notifications.php:962, extensions/email-notifications/classes/Notifications.php:2008
4793
  msgid "OK"
4794
  msgstr ""
4795
 
@@ -4809,11 +4880,116 @@ msgstr ""
4809
  msgid "DISABLE EVENT"
4810
  msgstr ""
4811
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4812
  #: extensions/search/search-init.php:198
4813
  msgid "An identical search filter already exists."
4814
  msgstr ""
4815
 
4816
- #: extensions/search/search-init.php:217, extensions/search/search-init.php:291, extensions/user-sessions/classes/View/Sessions.php:313
4817
  msgid "Search"
4818
  msgstr ""
4819
 
@@ -4845,7 +5021,7 @@ msgstr ""
4845
  msgid "Delete"
4846
  msgstr ""
4847
 
4848
- #: extensions/search/search-init.php:299, extensions/external-db/classes/Connections.php:625, extensions/external-db/classes/Mirroring.php:594
4849
  msgid "Deleting..."
4850
  msgstr ""
4851
 
@@ -4894,6 +5070,119 @@ msgstr ""
4894
  msgid "Saved search deleted."
4895
  msgstr ""
4896
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4897
  #: classes/Views/addons/html-view.php:95, classes/Views/addons/html-view.php:120
4898
  msgid "Upgrade to Premium"
4899
  msgstr ""
@@ -4973,7 +5262,7 @@ msgstr ""
4973
  msgid "Title"
4974
  msgstr ""
4975
 
4976
- #: extensions/email-notifications/classes/AddNotification.php:342, extensions/email-notifications/classes/EditNotification.php:432, extensions/email-notifications/classes/Notifications.php:1031, extensions/email-notifications/classes/Notifications.php:1054, extensions/email-notifications/classes/Notifications.php:1071, extensions/email-notifications/classes/Notifications.php:1095, extensions/email-notifications/classes/Notifications.php:1117, extensions/email-notifications/classes/Notifications.php:1130, extensions/email-notifications/classes/Notifications.php:1143, extensions/email-notifications/classes/Notifications.php:1156, extensions/email-notifications/classes/Notifications.php:1169, extensions/email-notifications/classes/Notifications.php:1182, extensions/email-notifications/classes/Notifications.php:1206, extensions/email-notifications/classes/Notifications.php:1221, extensions/email-notifications/classes/Notifications.php:1236, extensions/email-notifications/classes/Notifications.php:1251, extensions/email-notifications/classes/Notifications.php:1266, extensions/email-notifications/classes/Notifications.php:1288, extensions/email-notifications/classes/Notifications.php:1353, extensions/email-notifications/classes/Notifications.php:1368, extensions/email-notifications/classes/Notifications.php:1383, extensions/email-notifications/classes/Notifications.php:1407, extensions/email-notifications/classes/Notifications.php:1422, extensions/email-notifications/classes/Notifications.php:1437, extensions/email-notifications/classes/Notifications.php:1452, extensions/email-notifications/classes/Notifications.php:1514, extensions/email-notifications/classes/Notifications.php:1529, extensions/email-notifications/classes/Notifications.php:1544, extensions/email-notifications/classes/Notifications.php:1608, extensions/email-notifications/classes/Notifications.php:1625, extensions/email-notifications/classes/Notifications.php:1642, extensions/email-notifications/classes/Notifications.php:1659, extensions/email-notifications/classes/Notifications.php:1676, extensions/email-notifications/classes/Notifications.php:1693, extensions/email-notifications/classes/Notifications.php:1710, extensions/email-notifications/classes/Notifications.php:1776, extensions/email-notifications/classes/Notifications.php:1793, extensions/email-notifications/classes/Notifications.php:1810, extensions/email-notifications/classes/Notifications.php:1827, extensions/user-sessions/classes/View/Sessions.php:295
4977
  msgid "Email"
4978
  msgstr ""
4979
 
@@ -5111,102 +5400,118 @@ msgid "User Login Name"
5111
  msgstr ""
5112
 
5113
  #: extensions/email-notifications/classes/Common.php:1044
5114
- msgid "Role(s) of the User"
5115
  msgstr ""
5116
 
5117
  #: extensions/email-notifications/classes/Common.php:1045
5118
- msgid "Event generated on Date and Time"
5119
  msgstr ""
5120
 
5121
  #: extensions/email-notifications/classes/Common.php:1046
5122
- msgid "Event Code"
5123
  msgstr ""
5124
 
5125
  #: extensions/email-notifications/classes/Common.php:1047
 
 
 
 
 
 
 
 
5126
  msgid "Event Severity"
5127
  msgstr ""
5128
 
5129
- #: extensions/email-notifications/classes/Common.php:1048, extensions/email-notifications/classes/Common.php:1109
5130
  msgid "Event Message"
5131
  msgstr ""
5132
 
5133
- #: extensions/email-notifications/classes/Common.php:1049
5134
  msgid "Event Metadata"
5135
  msgstr ""
5136
 
5137
- #: extensions/email-notifications/classes/Common.php:1050
5138
  msgid "Event Links"
5139
  msgstr ""
5140
 
5141
- #: extensions/email-notifications/classes/Common.php:1051
5142
  msgid "Client IP Address"
5143
  msgstr ""
5144
 
5145
- #: extensions/email-notifications/classes/Common.php:1052
5146
  msgid "Event Object"
5147
  msgstr ""
5148
 
5149
- #: extensions/email-notifications/classes/Common.php:1099, extensions/email-notifications/classes/Common.php:1163
5150
  msgid "Notification {title} on website {site} triggered"
5151
  msgstr ""
5152
 
5153
- #: extensions/email-notifications/classes/Common.php:1100, extensions/email-notifications/classes/Common.php:1164
5154
  msgid "Notification <strong>{title}</strong> was triggered. Below are the notification details:"
5155
  msgstr ""
5156
 
5157
- #: extensions/email-notifications/classes/Common.php:1102
5158
  msgid "Website"
5159
  msgstr ""
5160
 
5161
- #: extensions/email-notifications/classes/Common.php:1104, extensions/email-notifications/classes/Common.php:1167, extensions/reports/classes/CsvReportGenerator.php:80, extensions/reports/classes/CsvReportGenerator.php:64, extensions/reports/classes/CsvReportGenerator.php:197, extensions/reports/classes/HtmlReportGenerator.php:244, extensions/reports/classes/HtmlReportGenerator.php:220, extensions/reports/classes/HtmlReportGenerator.php:358, extensions/search/classes/FilterManager.php:475, extensions/user-sessions/classes/View/Sessions.php:140, extensions/user-sessions/classes/View/Sessions.php:294
5162
  msgid "Username"
5163
  msgstr ""
5164
 
5165
- #: extensions/email-notifications/classes/Common.php:1105
 
 
 
 
 
 
 
 
5166
  msgid "User role"
5167
  msgstr ""
5168
 
5169
- #: extensions/email-notifications/classes/Common.php:1110
5170
  msgid "Event generated on"
5171
  msgstr ""
5172
 
5173
- #: extensions/email-notifications/classes/Common.php:1112
5174
  msgid "These email notifications are sent with <a href=\"http://wpactivitylog.com\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin solution."
5175
  msgstr ""
5176
 
5177
- #: extensions/email-notifications/classes/Common.php:1135, extensions/email-notifications/classes/Common.php:1196
5178
  msgid "User/Role"
5179
  msgstr ""
5180
 
5181
- #: extensions/email-notifications/classes/Common.php:1138
5182
  msgid "Event type"
5183
  msgstr ""
5184
 
5185
- #: extensions/email-notifications/classes/Common.php:1168, extensions/search/classes/FilterManager.php:487, extensions/search/classes/Filters/userrolefilter.php:49, extensions/search/classes/Filters/userrolefilter.php:87, extensions/user-sessions/classes/View/Sessions.php:299
5186
  msgid "User Role"
5187
  msgstr ""
5188
 
5189
- #: extensions/email-notifications/classes/Common.php:1170
5190
  msgid "Generated On"
5191
  msgstr ""
5192
 
5193
- #: extensions/email-notifications/classes/Common.php:1172
5194
  msgid "Monitoring of WordPress and Email Notifications provided by <a href=\"http://wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit trail plugin</a>."
5195
  msgstr ""
5196
 
5197
- #: extensions/email-notifications/classes/Common.php:1197
5198
  msgid "Event"
5199
  msgstr ""
5200
 
5201
- #: extensions/email-notifications/classes/Common.php:1212
5202
  msgid "Subject "
5203
  msgstr ""
5204
 
5205
- #: extensions/email-notifications/classes/Common.php:1221
5206
  msgid "Body "
5207
  msgstr ""
5208
 
5209
- #: extensions/email-notifications/classes/Common.php:1224
5210
  msgid "HTML is accepted. Available template tags:"
5211
  msgstr ""
5212
 
@@ -5391,10 +5696,6 @@ msgstr ""
5391
  msgid "Send"
5392
  msgstr ""
5393
 
5394
- #: extensions/email-notifications/classes/Notifications.php:955, extensions/external-db/classes/Connections.php:617, extensions/external-db/classes/ExternalStorageTab.php:176, extensions/external-db/classes/ExternalStorageTab.php:204, extensions/external-db/classes/Mirroring.php:284
5395
- msgid "Cancel"
5396
- msgstr ""
5397
-
5398
  #: extensions/email-notifications/classes/Notifications.php:1013
5399
  msgid "Daily Summary of Activity Log"
5400
  msgstr ""
@@ -5608,11 +5909,11 @@ msgstr ""
5608
  msgid "Bulk actions"
5609
  msgstr ""
5610
 
5611
- #: extensions/email-notifications/classes/Notifications.php:1916, extensions/email-notifications/classes/Notifications.php:1977, extensions/email-notifications/classes/Notifications.php:1994, extensions/external-db/classes/Mirroring.php:118, extensions/external-db/classes/Mirroring.php:735, extensions/external-db/classes/mirrors/PapertrailConnection.php:44
5612
  msgid "Enable"
5613
  msgstr ""
5614
 
5615
- #: extensions/email-notifications/classes/Notifications.php:1917, extensions/email-notifications/classes/Notifications.php:1975, extensions/email-notifications/classes/Notifications.php:1995, extensions/external-db/classes/Mirroring.php:121, extensions/external-db/classes/Mirroring.php:738
5616
  msgid "Disable"
5617
  msgstr ""
5618
 
@@ -5799,10 +6100,6 @@ msgstr ""
5799
  msgid "SMS notifications are available in the Professional and Business Plans. %s to configure and receive SMS notifications."
5800
  msgstr ""
5801
 
5802
- #: extensions/email-notifications/classes/SMSProviderSettings.php:172
5803
- msgid "Upgrade now"
5804
- msgstr ""
5805
-
5806
  #: extensions/email-notifications/classes/SMSProviderSettings.php:178
5807
  msgid "Account SID"
5808
  msgstr ""
@@ -5857,7 +6154,7 @@ msgstr ""
5857
  msgid "You are not allowed to view this page."
5858
  msgstr ""
5859
 
5860
- #: extensions/external-db/classes/Common.php:821, extensions/external-db/classes/Settings.php:102
5861
  msgid "External Storage"
5862
  msgstr ""
5863
 
@@ -5902,15 +6199,15 @@ msgstr ""
5902
  msgid "Configure Connection → "
5903
  msgstr ""
5904
 
5905
- #: extensions/external-db/classes/Connections.php:198, extensions/external-db/classes/Connections.php:534
5906
  msgid "Configure the connection"
5907
  msgstr ""
5908
 
5909
- #: extensions/external-db/classes/Connections.php:199, extensions/external-db/classes/Connections.php:535
5910
  msgid "Configure the connection details."
5911
  msgstr ""
5912
 
5913
- #: extensions/external-db/classes/Connections.php:203, extensions/external-db/classes/Connections.php:500, extensions/external-db/classes/Connections.php:626
5914
  msgid "Save Connection"
5915
  msgstr ""
5916
 
@@ -5990,127 +6287,127 @@ msgstr ""
5990
  msgid "Connection Name"
5991
  msgstr ""
5992
 
5993
- #: extensions/external-db/classes/Connections.php:488
5994
  msgid "MySQL Database"
5995
  msgstr ""
5996
 
5997
- #: extensions/external-db/classes/Connections.php:501
5998
  msgid "Select type"
5999
  msgstr ""
6000
 
6001
- #: extensions/external-db/classes/Connections.php:503
6002
  msgid "Select the type of connection"
6003
  msgstr ""
6004
 
6005
- #: extensions/external-db/classes/Connections.php:504
6006
  msgid "Select the type of connection you would like to setup."
6007
  msgstr ""
6008
 
6009
- #: extensions/external-db/classes/Connections.php:509
6010
  msgid "Type of Connection"
6011
  msgstr ""
6012
 
6013
- #: extensions/external-db/classes/Connections.php:525
6014
  msgid "Check requirements"
6015
  msgstr ""
6016
 
6017
- #: extensions/external-db/classes/Connections.php:527
6018
  msgid "Requirements check"
6019
  msgstr ""
6020
 
6021
- #: extensions/external-db/classes/Connections.php:532
6022
  msgid "Configure connection"
6023
  msgstr ""
6024
 
6025
- #: extensions/external-db/classes/Connections.php:542
6026
  msgid "Test connection"
6027
  msgstr ""
6028
 
6029
- #: extensions/external-db/classes/Connections.php:544
6030
  msgid "Connectivity test"
6031
  msgstr ""
6032
 
6033
- #: extensions/external-db/classes/Connections.php:549, extensions/external-db/classes/Connections.php:551
6034
  msgid "Name the connection"
6035
  msgstr ""
6036
 
6037
- #: extensions/external-db/classes/Connections.php:552
6038
  msgid "Please specify a friendly name for the connection. Connection names can be 25 characters long and can only contain letters, numbers and underscores."
6039
  msgstr ""
6040
 
6041
- #: extensions/external-db/classes/Connections.php:618
6042
  msgid "Checking requirements..."
6043
  msgstr ""
6044
 
6045
- #: extensions/external-db/classes/Connections.php:620, extensions/external-db/classes/Mirroring.php:602
6046
  msgid "Are you sure that you want to delete this connection?"
6047
  msgstr ""
6048
 
6049
- #: extensions/external-db/classes/Connections.php:621, extensions/external-db/classes/Mirroring.php:597, extensions/external-db/classes/Settings.php:800
6050
  msgid "Connection failed!"
6051
  msgstr ""
6052
 
6053
- #: extensions/external-db/classes/Connections.php:622
6054
  msgid "Connection test failed! Please check the connection configuration or try again later."
6055
  msgstr ""
6056
 
6057
- #: extensions/external-db/classes/Connections.php:623, extensions/external-db/classes/Mirroring.php:598
6058
  msgid "Connected"
6059
  msgstr ""
6060
 
6061
- #: extensions/external-db/classes/Connections.php:624, extensions/external-db/classes/Mirroring.php:593, extensions/external-db/classes/Settings.php:813
6062
  msgid "Testing..."
6063
  msgstr ""
6064
 
6065
- #: extensions/external-db/classes/Connections.php:628
6066
  msgid "Previous"
6067
  msgstr ""
6068
 
6069
- #: extensions/external-db/classes/Connections.php:629
6070
  msgid "Unable to check the requirements at the moment. Communication with the server failed. Try again later."
6071
  msgstr ""
6072
 
6073
- #: extensions/external-db/classes/Connections.php:630
6074
  msgid "Sending a test message..."
6075
  msgstr ""
6076
 
6077
- #: extensions/external-db/classes/Connections.php:632, extensions/external-db/classes/Mirroring.php:591
6078
  msgid "Connections Wizard"
6079
  msgstr ""
6080
 
6081
- #: extensions/external-db/classes/Connections.php:797
6082
  msgid "Connection failed. Please check the configuration again."
6083
  msgstr ""
6084
 
6085
- #: extensions/external-db/classes/Connections.php:965
6086
  msgid "Unknown connection type."
6087
  msgstr ""
6088
 
6089
- #: extensions/external-db/classes/Connections.php:960, extensions/external-db/classes/Connections.php:928
6090
  msgid "Connection successful."
6091
  msgstr ""
6092
 
6093
- #: extensions/external-db/classes/Connections.php:926
6094
  msgid "Connection failed."
6095
  msgstr ""
6096
 
6097
- #: extensions/external-db/classes/Connections.php:986
6098
  msgid "Connection type is missing."
6099
  msgstr ""
6100
 
6101
- #: extensions/external-db/classes/Connections.php:998
6102
  msgid "Unrecognized mirror type."
6103
  msgstr ""
6104
 
6105
- #: extensions/external-db/classes/Connections.php:1005
6106
  msgid "Requirements check failed."
6107
  msgstr ""
6108
 
6109
- #: extensions/external-db/classes/Connections.php:1010
6110
  msgid "All requirements are met. Your system is ready to use the selected connection type."
6111
  msgstr ""
6112
 
6113
- #: extensions/external-db/classes/Connections.php:1013
6114
  msgid "Selected connection type cannot be used on your system at the moment. The following requirements are not met."
6115
  msgstr ""
6116
 
@@ -6152,7 +6449,7 @@ msgstr ""
6152
  msgid "Note:"
6153
  msgstr ""
6154
 
6155
- #: extensions/external-db/classes/ExternalStorageTab.php:121, extensions/external-db/classes/Settings.php:798
6156
  msgid "Cancel migration"
6157
  msgstr ""
6158
 
@@ -6176,7 +6473,7 @@ msgstr ""
6176
  msgid "Switch to local database"
6177
  msgstr ""
6178
 
6179
- #: extensions/external-db/classes/ExternalStorageTab.php:142, extensions/external-db/classes/Settings.php:400
6180
  msgid "Test Connection"
6181
  msgstr ""
6182
 
@@ -6188,7 +6485,7 @@ msgstr ""
6188
  msgid "Do you want to change the plugin settings to start using the local database for storing the logs?"
6189
  msgstr ""
6190
 
6191
- #: extensions/external-db/classes/ExternalStorageTab.php:178, extensions/external-db/classes/ExternalStorageTab.php:206, extensions/external-db/classes/Settings.php:812
6192
  msgid "Switch connection"
6193
  msgstr ""
6194
 
@@ -6196,7 +6493,7 @@ msgstr ""
6196
  msgid "Select connection for external storage"
6197
  msgstr ""
6198
 
6199
- #: extensions/external-db/classes/ExternalStorageTab.php:196, extensions/external-db/classes/Mirroring.php:367, extensions/external-db/classes/Settings.php:333
6200
  msgid "Connection"
6201
  msgstr ""
6202
 
@@ -6277,7 +6574,7 @@ msgstr ""
6277
  msgid "When you mirror the activity log to a third party service, the plugin still keeps a copy of the activity log in the WordPress or external database (depending on what you have configured). Switch off the below setting so no copy of the activity log is written to the database."
6278
  msgstr ""
6279
 
6280
- #: extensions/external-db/classes/Mirroring.php:154, extensions/external-db/classes/Settings.php:550
6281
  msgid "Current status:"
6282
  msgstr ""
6283
 
@@ -6285,7 +6582,7 @@ msgstr ""
6285
  msgid "Failed :("
6286
  msgstr ""
6287
 
6288
- #: extensions/external-db/classes/Mirroring.php:185, extensions/external-db/classes/Mirroring.php:849
6289
  msgid "Enabling"
6290
  msgstr ""
6291
 
@@ -6394,7 +6691,7 @@ msgstr ""
6394
  msgid "Should mirror these severities:"
6395
  msgstr ""
6396
 
6397
- #: extensions/external-db/classes/Mirroring.php:378, extensions/external-db/classes/Settings.php:736
6398
  msgid "Select a connection"
6399
  msgstr ""
6400
 
@@ -6414,83 +6711,83 @@ msgstr ""
6414
  msgid "* Invalid Mirror Name"
6415
  msgstr ""
6416
 
6417
- #: extensions/external-db/classes/Mirroring.php:592
6418
  msgid "Mirroring Wizard"
6419
  msgstr ""
6420
 
6421
- #: extensions/external-db/classes/Mirroring.php:595
6422
  msgid "Enabling..."
6423
  msgstr ""
6424
 
6425
- #: extensions/external-db/classes/Mirroring.php:596
6426
  msgid "Disabling..."
6427
  msgstr ""
6428
 
6429
- #: extensions/external-db/classes/Mirroring.php:599
6430
  msgid "Running..."
6431
  msgstr ""
6432
 
6433
- #: extensions/external-db/classes/Mirroring.php:600
6434
  msgid "Mirror Complete!"
6435
  msgstr ""
6436
 
6437
- #: extensions/external-db/classes/Mirroring.php:601
6438
  msgid "Failed!"
6439
  msgstr ""
6440
 
6441
- #: extensions/external-db/classes/Mirroring.php:603
6442
  msgid "Are you sure that you want to delete this mirror?"
6443
  msgstr ""
6444
 
6445
- #: extensions/external-db/classes/Mirroring.php:604, extensions/reports/inc/wsal-reporting-view.inc.php:1131
6446
  msgid "Select Event Code(s)"
6447
  msgstr ""
6448
 
6449
- #: extensions/external-db/classes/Mirroring.php:605
6450
  msgid "Select Severity Levels"
6451
  msgstr ""
6452
 
6453
- #: extensions/external-db/classes/Mirroring.php:606
6454
  msgid "Configure and create connection"
6455
  msgstr ""
6456
 
6457
- #: extensions/external-db/classes/Mirroring.php:666, extensions/external-db/classes/Settings.php:113
6458
  msgid "Mirroring"
6459
  msgstr ""
6460
 
6461
- #: extensions/external-db/classes/Mirroring.php:728
6462
  msgid "Mirror not found."
6463
  msgstr ""
6464
 
6465
- #: extensions/external-db/classes/Mirroring.php:817
6466
  msgid "The plugin is not saving the activity log to the database."
6467
  msgstr ""
6468
 
6469
- #: extensions/external-db/classes/Mirroring.php:819
6470
  msgid "The plugin is currently configured to not save the activity log to the database. It is only mirroring the activity log to third party services. The activity log you see below is a record of what happened until writing to the database was disabled. If you would like the plugin to start saving a copy of the activity log to the database again click the below button."
6471
  msgstr ""
6472
 
6473
- #: extensions/external-db/classes/Mirroring.php:822
6474
  msgid "Important"
6475
  msgstr ""
6476
 
6477
- #: extensions/external-db/classes/Mirroring.php:823
6478
  msgid "The activity log data that was generated when writing to the database was disabled, will not be available in the event viewer."
6479
  msgstr ""
6480
 
6481
- #: extensions/external-db/classes/Mirroring.php:827
6482
  msgid "Re-enable writing of activity log to the database"
6483
  msgstr ""
6484
 
6485
- #: extensions/external-db/classes/Mirroring.php:837
6486
  msgid "Try again later..."
6487
  msgstr ""
6488
 
6489
- #: extensions/external-db/classes/Mirroring.php:865
6490
  msgid "Database logging enabled!"
6491
  msgstr ""
6492
 
6493
- #: extensions/external-db/classes/Settings.php:107, extensions/external-db/classes/Settings.php:476
6494
  msgid "Archiving"
6495
  msgstr ""
6496
 
@@ -6510,169 +6807,161 @@ msgstr ""
6510
  msgid "archiving activity log data"
6511
  msgstr ""
6512
 
6513
- #: extensions/external-db/classes/Settings.php:325
6514
  msgid "In this section you can configure the archiving of old events to an archive database. Archives events can still be accessed and are included in search results and reports."
6515
  msgstr ""
6516
 
6517
- #: extensions/external-db/classes/Settings.php:331
6518
  msgid "Archive the WordPress Activity Log to this Database"
6519
  msgstr ""
6520
 
6521
- #: extensions/external-db/classes/Settings.php:342
6522
  msgid "Archive events that are older than"
6523
  msgstr ""
6524
 
6525
- #: extensions/external-db/classes/Settings.php:344
6526
  msgid "Archiving Options"
6527
  msgstr ""
6528
 
6529
- #: extensions/external-db/classes/Settings.php:358
6530
  msgid "Archive events older than"
6531
  msgstr ""
6532
 
6533
- #: extensions/external-db/classes/Settings.php:362
6534
- msgid "months"
6535
- msgstr ""
6536
-
6537
- #: extensions/external-db/classes/Settings.php:365
6538
- msgid "years"
6539
- msgstr ""
6540
-
6541
- #: extensions/external-db/classes/Settings.php:371
6542
  msgid "The configured archiving options will override the Security Events Pruning settings configured in the plugin’s settings."
6543
  msgstr ""
6544
 
6545
- #: extensions/external-db/classes/Settings.php:377
6546
  msgid "WordPress Activity Log Data Retention"
6547
  msgstr ""
6548
 
6549
- #: extensions/external-db/classes/Settings.php:378
6550
  msgid "Once you configure archiving these data retention settings will be used instead of the ones configured in the plugin's general settings."
6551
  msgstr ""
6552
 
6553
- #: extensions/external-db/classes/Settings.php:401
6554
  msgid "Execute Archiving Now"
6555
  msgstr ""
6556
 
6557
- #: extensions/external-db/classes/Settings.php:404
6558
  msgid "Reset Archiving Settings"
6559
  msgstr ""
6560
 
6561
- #: extensions/external-db/classes/Settings.php:405
6562
  msgid "Click the button below to disable archiving and reset the settings to no archiving. Note that the archived data will not be deleted."
6563
  msgstr ""
6564
 
6565
- #: extensions/external-db/classes/Settings.php:406
6566
  msgid "Disable Archiving & Reset Settings"
6567
  msgstr ""
6568
 
6569
- #: extensions/external-db/classes/Settings.php:508
6570
  msgid "Run the Archiving Process Every"
6571
  msgstr ""
6572
 
6573
- #: extensions/external-db/classes/Settings.php:519
6574
  msgid "15 minutes"
6575
  msgstr ""
6576
 
6577
- #: extensions/external-db/classes/Settings.php:522
6578
  msgid "1 hour"
6579
  msgstr ""
6580
 
6581
- #: extensions/external-db/classes/Settings.php:525
6582
  msgid "6 hours"
6583
  msgstr ""
6584
 
6585
- #: extensions/external-db/classes/Settings.php:528
6586
  msgid "12 hours"
6587
  msgstr ""
6588
 
6589
- #: extensions/external-db/classes/Settings.php:531
6590
  msgid "24 hours"
6591
  msgstr ""
6592
 
6593
- #: extensions/external-db/classes/Settings.php:537
6594
  msgid "Stop Archiving"
6595
  msgstr ""
6596
 
6597
- #: extensions/external-db/classes/Settings.php:564
6598
  msgid "Running"
6599
  msgstr ""
6600
 
6601
- #: extensions/external-db/classes/Settings.php:627
6602
  msgid "Attention!"
6603
  msgstr ""
6604
 
6605
  #. translators: %1$s: Alerts Pruning Period, %2$s: Alerts Archiving Period
6606
- #: extensions/external-db/classes/Settings.php:631
6607
  msgid "The activity log retention setting is configured to delete events older than %1$s. This period should be longer than the configured %2$s archiving period otherwise events will be deleted and not archived."
6608
  msgstr ""
6609
 
6610
- #: extensions/external-db/classes/Settings.php:683, extensions/external-db/classes/Settings.php:694
6611
  msgid "No connection found."
6612
  msgstr ""
6613
 
6614
- #: extensions/external-db/classes/Settings.php:706
6615
  msgid "Successfully connected to database."
6616
  msgstr ""
6617
 
6618
- #: extensions/external-db/classes/Settings.php:796
6619
  msgid "Archiving complete!"
6620
  msgstr ""
6621
 
6622
- #: extensions/external-db/classes/Settings.php:797
6623
  msgid "Archiving..."
6624
  msgstr ""
6625
 
6626
- #: extensions/external-db/classes/Settings.php:799
6627
  msgid "Continue..."
6628
  msgstr ""
6629
 
6630
- #: extensions/external-db/classes/Settings.php:801
6631
  msgid "Connected!"
6632
  msgstr ""
6633
 
6634
- #: extensions/external-db/classes/Settings.php:802
6635
  msgid "Done!"
6636
  msgstr ""
6637
 
6638
  #. translators: %d: Number of events.
6639
- #: extensions/external-db/classes/Settings.php:804
6640
  msgid " So far %d events have been migrated."
6641
  msgstr ""
6642
 
6643
- #: extensions/external-db/classes/Settings.php:805
6644
  msgid "Migration complete"
6645
  msgstr ""
6646
 
6647
- #: extensions/external-db/classes/Settings.php:806
6648
  msgid "WordPress security events successfully migrated to the external database."
6649
  msgstr ""
6650
 
6651
- #: extensions/external-db/classes/Settings.php:807
6652
  msgid "No events to migrate."
6653
  msgstr ""
6654
 
6655
- #: extensions/external-db/classes/Settings.php:808
6656
  msgid "Resetting failed!"
6657
  msgstr ""
6658
 
6659
- #: extensions/external-db/classes/Settings.php:809
6660
  msgid "Resetting..."
6661
  msgstr ""
6662
 
6663
- #: extensions/external-db/classes/Settings.php:810
6664
  msgid "WordPress security events successfully migrated to WordPress database."
6665
  msgstr ""
6666
 
6667
- #: extensions/external-db/classes/Settings.php:811
6668
  msgid "Please select connection to be used for external storage."
6669
  msgstr ""
6670
 
6671
- #: extensions/external-db/classes/Settings.php:814
6672
  msgid "Working..."
6673
  msgstr ""
6674
 
6675
- #: extensions/external-db/classes/Settings.php:873
6676
  msgid "Bad request. Target state attribute is missing."
6677
  msgstr ""
6678
 
@@ -6796,7 +7085,7 @@ msgstr ""
6796
  msgid "Blog Name"
6797
  msgstr ""
6798
 
6799
- #: extensions/reports/classes/CsvReportGenerator.php:83, extensions/reports/classes/HtmlReportGenerator.php:247, extensions/user-sessions/classes/View/Sessions.php:147
6800
  msgid "Source IP"
6801
  msgstr ""
6802
 
@@ -7368,7 +7657,7 @@ msgstr ""
7368
  msgid "Filter by username"
7369
  msgstr ""
7370
 
7371
- #: extensions/search/classes/FilterManager.php:479, extensions/user-sessions/classes/View/Sessions.php:296
7372
  msgid "First Name"
7373
  msgstr ""
7374
 
@@ -7376,7 +7665,7 @@ msgstr ""
7376
  msgid "Filter by user first name"
7377
  msgstr ""
7378
 
7379
- #: extensions/search/classes/FilterManager.php:483, extensions/user-sessions/classes/View/Sessions.php:297
7380
  msgid "Last Name"
7381
  msgstr ""
7382
 
@@ -7452,84 +7741,88 @@ msgstr ""
7452
  msgid "This could result in loss of unsaved work. Are you sure?"
7453
  msgstr ""
7454
 
 
 
 
 
7455
  #. translators: %s: Total number of users
7456
- #: extensions/user-sessions/classes/Views.php:199
7457
  msgid "out of %s user sessions terminated."
7458
  msgstr ""
7459
 
7460
- #: extensions/user-sessions/classes/Views.php:201, extensions/user-sessions/classes/View/Sessions.php:80
7461
  msgid "Retrieve user data"
7462
  msgstr ""
7463
 
7464
- #: extensions/user-sessions/classes/Views.php:202
7465
  msgid "Retrieving data"
7466
  msgstr ""
7467
 
7468
- #: extensions/user-sessions/classes/Views.php:203
7469
  msgid "Data retrieved"
7470
  msgstr ""
7471
 
7472
- #: extensions/user-sessions/classes/Views.php:204
7473
  msgid "Event ID: "
7474
  msgstr ""
7475
 
7476
- #: extensions/user-sessions/classes/Views.php:205
7477
  msgid "Object: "
7478
  msgstr ""
7479
 
7480
- #: extensions/user-sessions/classes/Views.php:206
7481
  msgid "Event Type: "
7482
  msgstr ""
7483
 
7484
- #: extensions/user-sessions/classes/Views.php:267
7485
  msgid "Terminate all logged in sessions"
7486
  msgstr ""
7487
 
7488
- #: extensions/user-sessions/classes/Views.php:268
7489
  msgid "This will terminate all users' sessions including yours, which could result in unsaved work. Do you like to proceed?"
7490
  msgstr ""
7491
 
7492
- #: extensions/user-sessions/classes/Views.php:279
7493
  msgid "YES"
7494
  msgstr ""
7495
 
7496
- #: extensions/user-sessions/classes/Views.php:280
7497
  msgid "NO"
7498
  msgstr ""
7499
 
7500
- #: extensions/user-sessions/classes/Views.php:292
7501
  msgid "Terminate All Sessions"
7502
  msgstr ""
7503
 
7504
- #: extensions/user-sessions/classes/Views.php:412
7505
  msgid "Users sessions termination is in progress. Please wait..."
7506
  msgstr ""
7507
 
7508
- #: extensions/user-sessions/classes/Views.php:439, extensions/reports/classes/Views/Main.php:724
7509
  msgid "You do not have sufficient permissions."
7510
  msgstr ""
7511
 
7512
- #: extensions/user-sessions/classes/Views.php:465
7513
  msgid "No sessions."
7514
  msgstr ""
7515
 
7516
- #: extensions/user-sessions/classes/Views.php:490
7517
  msgid "Session destroyed."
7518
  msgstr ""
7519
 
7520
- #: extensions/user-sessions/classes/Views.php:498
7521
  msgid "User session data is not set."
7522
  msgstr ""
7523
 
7524
- #: extensions/user-sessions/classes/Views.php:514, extensions/user-sessions/classes/Views.php:588
7525
  msgid "User do not have sufficient permissions."
7526
  msgstr ""
7527
 
7528
- #: extensions/user-sessions/classes/Views.php:567
7529
  msgid "Sessions destroyed!"
7530
  msgstr ""
7531
 
7532
- #: extensions/user-sessions/classes/Views.php:598
7533
  msgid "Nonce check failed."
7534
  msgstr ""
7535
 
@@ -7537,63 +7830,83 @@ msgstr ""
7537
  msgid "AWS CloudWatch"
7538
  msgstr ""
7539
 
7540
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:27, extensions/external-db/classes/mirrors/LogglyConnection.php:27, extensions/external-db/classes/mirrors/PapertrailConnection.php:27, extensions/external-db/classes/mirrors/SlackConnection.php:28, extensions/external-db/classes/mirrors/SyslogConnection.php:27
7541
  msgid "General mirror connection description."
7542
  msgstr ""
7543
 
7544
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:30
7545
  msgid "Region"
7546
  msgstr ""
7547
 
7548
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:57
7549
  msgid "AWS Key"
7550
  msgstr ""
7551
 
7552
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:62
7553
  msgid "AWS Secret"
7554
  msgstr ""
7555
 
7556
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:67
7557
  msgid "AWS Session Token"
7558
  msgstr ""
7559
 
7560
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:69
7561
  msgid "This is optional."
7562
  msgstr ""
7563
 
7564
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:72
7565
  msgid "Log group name"
7566
  msgstr ""
7567
 
7568
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:76
7569
  msgid "Invalid AWS group name. It must satisfy regular expression pattern: %s"
7570
  msgstr ""
7571
 
7572
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:80
7573
  msgid "If you do not specify a group name, one will be created using the default group name \"%s\"."
7574
  msgstr ""
7575
 
7576
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:85
7577
  msgid "Log stream name"
7578
  msgstr ""
7579
 
7580
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:87
7581
  msgid "If you do not specify a stream name, one will be created using the site name as stream name."
7582
  msgstr ""
7583
 
7584
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:90
7585
  msgid "Retention"
7586
  msgstr ""
7587
 
7588
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:112
7589
  msgid "Days to keep logs."
7590
  msgstr ""
7591
 
7592
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:132
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7593
  msgid "You have setup a mirroring connection to AWS CloudWatch in the WP Activity Log plugin. In this version we've done some changes and you need to add the following lines to the wp-config.php file to enable the AWS library."
7594
  msgstr ""
7595
 
7596
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:201
7597
  msgid "The AWS library is disabled. Please enable this library by adding the following to the wp-config.php file. Press continue when you are ready or cancel to stop the process."
7598
  msgstr ""
7599
 
@@ -7696,11 +8009,11 @@ msgid "Syslog Location"
7696
  msgstr ""
7697
 
7698
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:35
7699
- msgid " Write to local syslog file"
7700
  msgstr ""
7701
 
7702
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:38
7703
- msgid " Send messages to remote syslog server"
7704
  msgstr ""
7705
 
7706
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:41
@@ -7835,88 +8148,96 @@ msgstr ""
7835
  msgid "User Session Options"
7836
  msgstr ""
7837
 
7838
- #: extensions/user-sessions/classes/View/Sessions.php:120
 
 
 
 
7839
  msgid "Showing results for "
7840
  msgstr ""
7841
 
7842
- #: extensions/user-sessions/classes/View/Sessions.php:112
 
 
 
 
7843
  msgid "No search results were found."
7844
  msgstr ""
7845
 
7846
- #: extensions/user-sessions/classes/View/Sessions.php:146
7847
  msgid "Expires"
7848
  msgstr ""
7849
 
7850
- #: extensions/user-sessions/classes/View/Sessions.php:148
7851
  msgid "Last Event"
7852
  msgstr ""
7853
 
7854
- #: extensions/user-sessions/classes/View/Sessions.php:149, extensions/user-sessions/classes/View/Sessions.php:465
7855
  msgid "Actions"
7856
  msgstr ""
7857
 
7858
  #. translators: Number of sessions
7859
- #: extensions/user-sessions/classes/View/Sessions.php:267
7860
  msgid "%s users"
7861
  msgstr ""
7862
 
7863
- #: extensions/user-sessions/classes/View/Sessions.php:272
7864
  msgid "Go to the first page"
7865
  msgstr ""
7866
 
7867
- #: extensions/user-sessions/classes/View/Sessions.php:273
7868
  msgid "Go to the previous page"
7869
  msgstr ""
7870
 
7871
- #: extensions/user-sessions/classes/View/Sessions.php:275
7872
  msgid "of"
7873
  msgstr ""
7874
 
7875
- #: extensions/user-sessions/classes/View/Sessions.php:277
7876
  msgid "Go to the next page"
7877
  msgstr ""
7878
 
7879
- #: extensions/user-sessions/classes/View/Sessions.php:278
7880
  msgid "Go to the last page"
7881
  msgstr ""
7882
 
7883
- #: extensions/user-sessions/classes/View/Sessions.php:287
7884
  msgid "Total number of sessions with Administrator Role: "
7885
  msgstr ""
7886
 
7887
- #: extensions/user-sessions/classes/View/Sessions.php:330
7888
  msgid "Show:"
7889
  msgstr ""
7890
 
7891
- #: extensions/user-sessions/classes/View/Sessions.php:339
7892
  msgid "Network-wide Logins"
7893
  msgstr ""
7894
 
7895
- #: extensions/user-sessions/classes/View/Sessions.php:439
7896
  msgid "Session ID: "
7897
  msgstr ""
7898
 
7899
- #: extensions/user-sessions/classes/View/Sessions.php:456
7900
  msgid "Click the button above to retrieve the users' last event."
7901
  msgstr ""
7902
 
7903
- #: extensions/user-sessions/classes/View/Sessions.php:476
7904
  msgid "Show me this user's events"
7905
  msgstr ""
7906
 
7907
- #: extensions/user-sessions/classes/View/Sessions.php:492
7908
  msgid "Terminate Session"
7909
  msgstr ""
7910
 
7911
- #: extensions/user-sessions/classes/View/Sessions.php:384
7912
  msgid "WP Activity Log keeps its own user session data. This means that the sessions of already logged in users will only show up once they logout and log back in. The same applies to your session."
7913
  msgstr ""
7914
 
7915
- #: extensions/user-sessions/classes/View/Sessions.php:376
7916
  msgid "No logged in sessions meet your search criteria."
7917
  msgstr ""
7918
 
7919
- #: extensions/user-sessions/classes/View/Sessions.php:669
7920
  msgid "User sessions do not exist."
7921
  msgstr ""
7922
 
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
+ #: defaults.php:177
20
  msgid "Critical severity events."
21
  msgstr ""
22
 
23
+ #: defaults.php:179
24
  msgid "High severity events."
25
  msgstr ""
26
 
27
+ #: defaults.php:181
28
  msgid "Medium severity events."
29
  msgstr ""
30
 
31
+ #: defaults.php:183
32
  msgid "Low severity events."
33
  msgstr ""
34
 
35
+ #: defaults.php:185
36
  msgid "Informational events."
37
  msgstr ""
38
 
39
+ #: defaults.php:190
40
  msgid "Users Logins & Sessions Events"
41
  msgstr ""
42
 
43
+ #: defaults.php:191, extensions/email-notifications/classes/Notifications.php:1339
44
  msgid "User Activity"
45
  msgstr ""
46
 
47
+ #: defaults.php:195
48
  msgid "User logged in"
49
  msgstr ""
50
 
51
+ #: defaults.php:196
52
  msgid "User logged in."
53
  msgstr ""
54
 
55
+ #: defaults.php:205
56
  msgid "User logged out"
57
  msgstr ""
58
 
59
+ #: defaults.php:206
60
  msgid "User logged out."
61
  msgstr ""
62
 
63
+ #: defaults.php:215
64
  msgid "Login failed"
65
  msgstr ""
66
 
67
+ #: defaults.php:216, defaults.php:226
68
  msgid "%Attempts% failed login(s)."
69
  msgstr ""
70
 
71
+ #: defaults.php:225
72
  msgid "Login failed / non existing user"
73
  msgstr ""
74
 
75
+ #: defaults.php:235
76
  msgid "Login blocked"
77
  msgstr ""
78
 
79
+ #: defaults.php:236
80
  msgid "Login blocked because other session(s) already exist for this user."
81
  msgstr ""
82
 
83
+ #: defaults.php:238, extensions/email-notifications/classes/Common.php:1110
84
  msgid "IP address"
85
  msgstr ""
86
 
87
+ #: defaults.php:247
88
  msgid "User logged in with existing session(s)"
89
  msgstr ""
90
 
91
+ #: defaults.php:248
92
  msgid "User logged in however there are other session(s) already for this user."
93
  msgstr ""
94
 
95
+ #: defaults.php:250, extensions/reports/classes/HtmlReportGenerator.php:130
96
  msgid "IP address(es)"
97
  msgstr ""
98
 
99
+ #: defaults.php:259
100
  msgid "User logged out all other sessions with the same username"
101
  msgstr ""
102
 
103
+ #: defaults.php:260
104
  msgid "Logged out all other sessions with the same user."
105
  msgstr ""
106
 
107
+ #: defaults.php:269
108
  msgid "User session destroyed and logged out"
109
  msgstr ""
110
 
111
+ #: defaults.php:270
112
  msgid "Terminated the session of the user %TargetUserName%."
113
  msgstr ""
114
 
115
+ #: defaults.php:272, defaults.php:285, defaults.php:297, defaults.php:1718, defaults.php:1746, defaults.php:1760, defaults.php:1774, defaults.php:1789, defaults.php:1804, defaults.php:1818, defaults.php:1832, defaults.php:1848, defaults.php:1863, defaults.php:1877, defaults.php:1891, defaults.php:1906, defaults.php:1922, defaults.php:1936, defaults.php:1951, defaults.php:1965, defaults.php:1979, defaults.php:1996, defaults.php:2010, defaults.php:2024, defaults.php:2397, extensions/reports/classes/CsvReportGenerator.php:82, extensions/reports/classes/CsvReportGenerator.php:66, extensions/reports/classes/HtmlReportGenerator.php:246, extensions/reports/classes/HtmlReportGenerator.php:222
116
  msgid "Role"
117
  msgstr ""
118
 
119
+ #: defaults.php:273, defaults.php:298
120
  msgid "Session ID"
121
  msgstr ""
122
 
123
+ #: defaults.php:282
124
  msgid "Switched to another user"
125
  msgstr ""
126
 
127
+ #: defaults.php:283
128
  msgid "Switched the session to being logged in as %TargetUserName%."
129
  msgstr ""
130
 
131
+ #: defaults.php:294
132
+ msgid "The plugin terminated an idle session for a user"
133
+ msgstr ""
134
+
135
+ #: defaults.php:295
136
+ msgid "The plugin terminated an idle session for the user %username%."
137
+ msgstr ""
138
+
139
+ #: defaults.php:307
140
  msgid "User uploaded file to the Uploads directory"
141
  msgstr ""
142
 
143
+ #: defaults.php:308
144
  msgid "Uploaded a file called %FileName%."
145
  msgstr ""
146
 
147
+ #: defaults.php:310, defaults.php:322
148
  msgid "Directory"
149
  msgstr ""
150
 
151
+ #: defaults.php:319
152
  msgid "User deleted file from Uploads directory"
153
  msgstr ""
154
 
155
+ #: defaults.php:320
156
  msgid "Deleted the file %FileName%."
157
  msgstr ""
158
 
159
+ #: defaults.php:331
160
  msgid "User requested a password reset"
161
  msgstr ""
162
 
163
+ #: defaults.php:332
164
  msgid "User requested a password reset. This does not mean that the password was changed."
165
  msgstr ""
166
 
167
+ #: defaults.php:341
168
  msgid "Content & Comments"
169
  msgstr ""
170
 
171
+ #: defaults.php:342
172
  msgid "Content"
173
  msgstr ""
174
 
175
+ #: defaults.php:346
176
  msgid "User created a new post and saved it as draft"
177
  msgstr ""
178
 
179
+ #: defaults.php:347
180
  msgid "Created the post %PostTitle%."
181
  msgstr ""
182
 
183
+ #: defaults.php:349, defaults.php:363, defaults.php:377, defaults.php:391, defaults.php:405, defaults.php:419, defaults.php:433, defaults.php:449, defaults.php:464, defaults.php:478, defaults.php:493, defaults.php:508, defaults.php:523, defaults.php:538, defaults.php:552, defaults.php:566, defaults.php:580, defaults.php:594, defaults.php:608, defaults.php:622, defaults.php:636, defaults.php:650, defaults.php:664, defaults.php:678, defaults.php:694, defaults.php:808, defaults.php:887, defaults.php:902, defaults.php:918, defaults.php:933, defaults.php:950, defaults.php:965, defaults.php:986, defaults.php:1001, defaults.php:1016, defaults.php:1031, defaults.php:1046, defaults.php:1061, defaults.php:1076, defaults.php:1091, defaults.php:1106, defaults.php:1121, defaults.php:1140, defaults.php:2135, defaults.php:2150, extensions/search/classes/FilterManager.php:503, extensions/search/classes/Filters/PostIDFilter.php:29, extensions/search/classes/Filters/PostIDFilter.php:57
184
  msgid "Post ID"
185
  msgstr ""
186
 
187
+ #: defaults.php:350, defaults.php:364, defaults.php:378, defaults.php:392, defaults.php:406, defaults.php:420, defaults.php:434, defaults.php:450, defaults.php:465, defaults.php:479, defaults.php:494, defaults.php:509, defaults.php:524, defaults.php:539, defaults.php:553, defaults.php:567, defaults.php:581, defaults.php:595, defaults.php:609, defaults.php:623, defaults.php:637, defaults.php:651, defaults.php:665, defaults.php:679, defaults.php:695, defaults.php:809, defaults.php:888, defaults.php:903, defaults.php:919, defaults.php:934, defaults.php:951, defaults.php:966, defaults.php:987, defaults.php:1002, defaults.php:1017, defaults.php:1032, defaults.php:1047, defaults.php:1062, defaults.php:1077, defaults.php:1092, defaults.php:1107, defaults.php:1122, defaults.php:1141, defaults.php:2136, defaults.php:2151
188
  msgid "Post type"
189
  msgstr ""
190
 
191
+ #: defaults.php:351, defaults.php:365, defaults.php:379, defaults.php:393, defaults.php:407, defaults.php:421, defaults.php:435, defaults.php:451, defaults.php:480, defaults.php:495, defaults.php:510, defaults.php:525, defaults.php:540, defaults.php:554, defaults.php:568, defaults.php:582, defaults.php:596, defaults.php:610, defaults.php:624, defaults.php:638, defaults.php:652, defaults.php:666, defaults.php:680, defaults.php:696, defaults.php:810, defaults.php:889, defaults.php:904, defaults.php:920, defaults.php:935, defaults.php:952, defaults.php:967, defaults.php:988, defaults.php:1003, defaults.php:1018, defaults.php:1033, defaults.php:1048, defaults.php:1063, defaults.php:1078, defaults.php:1093, defaults.php:1108, defaults.php:1123, defaults.php:1142, defaults.php:2137, defaults.php:2152
192
  msgid "Post status"
193
  msgstr ""
194
 
195
+ #: defaults.php:360
196
  msgid "User published a post"
197
  msgstr ""
198
 
199
+ #: defaults.php:361
200
  msgid "Published the post %PostTitle%."
201
  msgstr ""
202
 
203
+ #: defaults.php:374
204
  msgid "User modified a post"
205
  msgstr ""
206
 
207
+ #: defaults.php:375
208
  msgid "Modified the post %PostTitle%."
209
  msgstr ""
210
 
211
+ #: defaults.php:388
212
  msgid "User permanently deleted a post from the trash"
213
  msgstr ""
214
 
215
+ #: defaults.php:389
216
  msgid "Permanently deleted the post %PostTitle%."
217
  msgstr ""
218
 
219
+ #: defaults.php:402
220
  msgid "User moved a post to the trash"
221
  msgstr ""
222
 
223
+ #: defaults.php:403
224
  msgid "Moved the post %PostTitle% to trash."
225
  msgstr ""
226
 
227
+ #: defaults.php:416
228
  msgid "User restored a post from trash"
229
  msgstr ""
230
 
231
+ #: defaults.php:417
232
  msgid "Restored the post %PostTitle% from trash."
233
  msgstr ""
234
 
235
+ #: defaults.php:430
236
  msgid "User changed post URL"
237
  msgstr ""
238
 
239
+ #: defaults.php:431
240
  msgid "Changed the URL of the post %PostTitle%."
241
  msgstr ""
242
 
243
+ #: defaults.php:436, defaults.php:2943, defaults.php:2955
244
  msgid "Previous URL"
245
  msgstr ""
246
 
247
+ #: defaults.php:437
248
  msgid "New URL"
249
  msgstr ""
250
 
251
+ #: defaults.php:446
252
  msgid "User changed post author"
253
  msgstr ""
254
 
255
+ #: defaults.php:447
256
  msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
257
  msgstr ""
258
 
259
+ #: defaults.php:452
260
  msgid "Previous author"
261
  msgstr ""
262
 
263
+ #: defaults.php:461
264
  msgid "User changed post status"
265
  msgstr ""
266
 
267
+ #: defaults.php:462
268
  msgid "Changed the status of the post %PostTitle% to %NewStatus%."
269
  msgstr ""
270
 
271
+ #: defaults.php:466
272
  msgid "Previous status"
273
  msgstr ""
274
 
275
+ #: defaults.php:475
276
  msgid "User changed the visibility of a post"
277
  msgstr ""
278
 
279
+ #: defaults.php:476
280
  msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
281
  msgstr ""
282
 
283
+ #: defaults.php:481
284
  msgid "Previous visibility status"
285
  msgstr ""
286
 
287
+ #: defaults.php:490
288
  msgid "User changed the date of a post"
289
  msgstr ""
290
 
291
+ #: defaults.php:491
292
  msgid "Changed the date of the post %PostTitle% to %NewDate%."
293
  msgstr ""
294
 
295
+ #: defaults.php:496
296
  msgid "Previous date"
297
  msgstr ""
298
 
299
+ #: defaults.php:505
300
  msgid "User changed the parent of a page"
301
  msgstr ""
302
 
303
+ #: defaults.php:506
304
  msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
305
  msgstr ""
306
 
307
+ #: defaults.php:511, defaults.php:848
308
  msgid "Previous parent"
309
  msgstr ""
310
 
311
+ #: defaults.php:520
312
  msgid "User changed the template of a page"
313
  msgstr ""
314
 
315
+ #: defaults.php:521
316
  msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
317
  msgstr ""
318
 
319
+ #: defaults.php:526
320
  msgid "Previous template"
321
  msgstr ""
322
 
323
+ #: defaults.php:535
324
  msgid "User set a post as sticky"
325
  msgstr ""
326
 
327
+ #: defaults.php:536
328
  msgid "Set the post %PostTitle% as sticky."
329
  msgstr ""
330
 
331
+ #: defaults.php:549
332
  msgid "User removed post from sticky"
333
  msgstr ""
334
 
335
+ #: defaults.php:550
336
  msgid "Removed the post %PostTitle% from sticky."
337
  msgstr ""
338
 
339
+ #: defaults.php:563
340
  msgid "User modified the content of a post"
341
  msgstr ""
342
 
343
+ #: defaults.php:564
344
  msgid "Modified the content of the post %PostTitle%."
345
  msgstr ""
346
 
347
+ #: defaults.php:577
348
  msgid "User submitted a post for review"
349
  msgstr ""
350
 
351
+ #: defaults.php:578
352
  msgid "Submitted the post %PostTitle% for review."
353
  msgstr ""
354
 
355
+ #: defaults.php:591
356
  msgid "User scheduled a post"
357
  msgstr ""
358
 
359
+ #: defaults.php:592
360
  msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
361
  msgstr ""
362
 
363
+ #: defaults.php:605
364
  msgid "User changed title of a post"
365
  msgstr ""
366
 
367
+ #: defaults.php:606
368
  msgid "Changed the title of the post %OldTitle% to %NewTitle%."
369
  msgstr ""
370
 
371
+ #: defaults.php:619
372
  msgid "User opened a post in the editor"
373
  msgstr ""
374
 
375
+ #: defaults.php:620
376
  msgid "Opened the post %PostTitle% in the editor."
377
  msgstr ""
378
 
379
+ #: defaults.php:633
380
  msgid "User viewed a post"
381
  msgstr ""
382
 
383
+ #: defaults.php:634
384
  msgid "Viewed the post %PostTitle%."
385
  msgstr ""
386
 
387
+ #: defaults.php:647
388
  msgid "User enabled/disabled comments in a post"
389
  msgstr ""
390
 
391
+ #: defaults.php:648
392
  msgid "Comments in the post %PostTitle%."
393
  msgstr ""
394
 
395
+ #: defaults.php:661
396
  msgid "User enabled/disabled trackbacks and pingbacks in a post"
397
  msgstr ""
398
 
399
+ #: defaults.php:662
400
  msgid "Pingbacks and Trackbacks in the post %PostTitle%."
401
  msgstr ""
402
 
403
+ #: defaults.php:675
404
  msgid "User updated the excerpt in a post"
405
  msgstr ""
406
 
407
+ #: defaults.php:676
408
  msgid "The excerpt of the post %PostTitle%."
409
  msgstr ""
410
 
411
+ #: defaults.php:681
412
  msgid "Previous excerpt entry"
413
  msgstr ""
414
 
415
+ #: defaults.php:682
416
  msgid "New excerpt entry"
417
  msgstr ""
418
 
419
+ #: defaults.php:691
420
  msgid "User updated the featured image in a post"
421
  msgstr ""
422
 
423
+ #: defaults.php:692
424
  msgid "The featured image of the post %PostTitle%."
425
  msgstr ""
426
 
427
+ #: defaults.php:697
428
  msgid "Previous image"
429
  msgstr ""
430
 
431
+ #: defaults.php:698
432
  msgid "New image"
433
  msgstr ""
434
 
435
+ #: defaults.php:706
436
  msgid "Tags"
437
  msgstr ""
438
 
439
+ #: defaults.php:710
440
  msgid "User added post tag"
441
  msgstr ""
442
 
443
+ #: defaults.php:711
444
  msgid "Added tag(s) to the post %PostTitle%."
445
  msgstr ""
446
 
447
+ #: defaults.php:713, defaults.php:728, classes/AuditLogGridView.php:271, classes/AuditLogGridView.php:295, classes/AuditLogListView.php:269, classes/AuditLogListView.php:297
448
  msgid "ID"
449
  msgstr ""
450
 
451
+ #: defaults.php:714, defaults.php:729, extensions/external-db/classes/Connections.php:97, extensions/external-db/classes/Mirroring.php:92, extensions/reports/classes/CsvReportGenerator.php:78, extensions/reports/classes/HtmlReportGenerator.php:242
452
  msgid "Type"
453
  msgstr ""
454
 
455
+ #: defaults.php:715, defaults.php:730
456
  msgid "Status"
457
  msgstr ""
458
 
459
+ #: defaults.php:716
460
  msgid "Added tag(s)"
461
  msgstr ""
462
 
463
+ #: defaults.php:725
464
  msgid "User removed post tag"
465
  msgstr ""
466
 
467
+ #: defaults.php:726
468
  msgid "Removed tag(s) from the post %PostTitle%."
469
  msgstr ""
470
 
471
+ #: defaults.php:731
472
  msgid "Removed tag(s)"
473
  msgstr ""
474
 
475
+ #: defaults.php:740
476
  msgid "User created new tag"
477
  msgstr ""
478
 
479
+ #: defaults.php:741
480
  msgid "Created the tag %TagName%."
481
  msgstr ""
482
 
483
+ #: defaults.php:743, defaults.php:755, defaults.php:767, defaults.php:791, defaults.php:823, defaults.php:835, defaults.php:847, defaults.php:860
484
  msgid "Slug"
485
  msgstr ""
486
 
487
+ #: defaults.php:752
488
  msgid "User deleted tag"
489
  msgstr ""
490
 
491
+ #: defaults.php:753
492
  msgid "Deleted the tag %TagName%."
493
  msgstr ""
494
 
495
+ #: defaults.php:764
496
  msgid "Renamed the tag %old_name% to %new_name%."
497
  msgstr ""
498
 
499
+ #: defaults.php:776
500
  msgid "User changed tag slug"
501
  msgstr ""
502
 
503
+ #: defaults.php:777
504
  msgid "Changed the slug of the tag %tag% to %new_slug%."
505
  msgstr ""
506
 
507
+ #: defaults.php:779, defaults.php:872
508
  msgid "Previous slug"
509
  msgstr ""
510
 
511
+ #: defaults.php:788
512
  msgid "User changed tag description"
513
  msgstr ""
514
 
515
+ #: defaults.php:789
516
  msgid "Changed the description of the tag %tag%."
517
  msgstr ""
518
 
519
+ #: defaults.php:792
520
  msgid "Previous description"
521
  msgstr ""
522
 
523
+ #: defaults.php:793
524
  msgid "New description"
525
  msgstr ""
526
 
527
+ #: defaults.php:801
528
  msgid "Categories"
529
  msgstr ""
530
 
531
+ #: defaults.php:805
532
  msgid "User changed post category"
533
  msgstr ""
534
 
535
+ #: defaults.php:806
536
  msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
537
  msgstr ""
538
 
539
+ #: defaults.php:811
540
  msgid "Previous category(ies)"
541
  msgstr ""
542
 
543
+ #: defaults.php:820
544
  msgid "User created new category"
545
  msgstr ""
546
 
547
+ #: defaults.php:821
548
  msgid "Created the category %CategoryName%."
549
  msgstr ""
550
 
551
+ #: defaults.php:832
552
  msgid "User deleted category"
553
  msgstr ""
554
 
555
+ #: defaults.php:833
556
  msgid "Deleted the category %CategoryName%."
557
  msgstr ""
558
 
559
+ #: defaults.php:844
560
  msgid "Changed the parent of a category"
561
  msgstr ""
562
 
563
+ #: defaults.php:845
564
  msgid "Changed the parent of the category %CategoryName% to %NewParent%."
565
  msgstr ""
566
 
567
+ #: defaults.php:857
568
  msgid "User changed category name"
569
  msgstr ""
570
 
571
+ #: defaults.php:858
572
  msgid "Renamed the category %old_name% to %new_name%."
573
  msgstr ""
574
 
575
+ #: defaults.php:869
576
  msgid "User changed category slug"
577
  msgstr ""
578
 
579
+ #: defaults.php:870
580
  msgid "Changed the slug of the category %CategoryName% to %new_slug%."
581
  msgstr ""
582
 
583
+ #: defaults.php:880
584
  msgid "Custom Fields"
585
  msgstr ""
586
 
587
+ #: defaults.php:884
588
  msgid "User created a custom field for a post"
589
  msgstr ""
590
 
591
+ #: defaults.php:885
592
  msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
593
  msgstr ""
594
 
595
+ #: defaults.php:890, defaults.php:1851
596
  msgid "Custom field value"
597
  msgstr ""
598
 
599
+ #: defaults.php:899
600
  msgid "User updated a custom field value for a post"
601
  msgstr ""
602
 
603
+ #: defaults.php:900
604
  msgid "Modified the value of the custom field %MetaKey% in the post %PostTitle%."
605
  msgstr ""
606
 
607
+ #: defaults.php:905
608
  msgid "Previous custom field value"
609
  msgstr ""
610
 
611
+ #: defaults.php:906
612
  msgid "New custom field value"
613
  msgstr ""
614
 
615
+ #: defaults.php:915
616
  msgid "User deleted a custom field from a post"
617
  msgstr ""
618
 
619
+ #: defaults.php:916
620
  msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
621
  msgstr ""
622
 
623
+ #: defaults.php:929
624
  msgid "User updated a custom field name for a post"
625
  msgstr ""
626
 
627
+ #: defaults.php:930
628
  msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
629
  msgstr ""
630
 
631
+ #: defaults.php:932, classes/AlertManager.php:1073
632
  msgid "Post"
633
  msgstr ""
634
 
635
+ #: defaults.php:943
636
  msgid "Custom Fields (ACF)"
637
  msgstr ""
638
 
639
+ #: defaults.php:947
640
  msgid "User added relationship to a custom field value for a post"
641
  msgstr ""
642
 
643
+ #: defaults.php:948
644
  msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
645
  msgstr ""
646
 
647
+ #: defaults.php:953
648
  msgid "New relationships"
649
  msgstr ""
650
 
651
+ #: defaults.php:962
652
  msgid "User removed relationship from a custom field value for a post"
653
  msgstr ""
654
 
655
+ #: defaults.php:963
656
  msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
657
  msgstr ""
658
 
659
+ #: defaults.php:968
660
  msgid "Removed relationships"
661
  msgstr ""
662
 
663
+ #: defaults.php:979
664
  msgid "Comments"
665
  msgstr ""
666
 
667
+ #: defaults.php:983
668
  msgid "User approved a comment"
669
  msgstr ""
670
 
671
+ #: defaults.php:984
672
  msgid "Approved the comment posted by %Author% on the post %PostTitle%."
673
  msgstr ""
674
 
675
+ #: defaults.php:989, defaults.php:1004, defaults.php:1019, defaults.php:1034, defaults.php:1049, defaults.php:1064, defaults.php:1079, defaults.php:1094, defaults.php:1109, defaults.php:1124, defaults.php:1143
676
  msgid "Comment ID"
677
  msgstr ""
678
 
679
+ #: defaults.php:998
680
  msgid "User unapproved a comment"
681
  msgstr ""
682
 
683
+ #: defaults.php:999
684
  msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
685
  msgstr ""
686
 
687
+ #: defaults.php:1013
688
  msgid "User replied to a comment"
689
  msgstr ""
690
 
691
+ #: defaults.php:1014
692
  msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
693
  msgstr ""
694
 
695
+ #: defaults.php:1028
696
  msgid "User edited a comment"
697
  msgstr ""
698
 
699
+ #: defaults.php:1029
700
  msgid "Edited the comment posted by %Author% on the post %PostTitle%."
701
  msgstr ""
702
 
703
+ #: defaults.php:1043
704
  msgid "User marked a comment as Spam"
705
  msgstr ""
706
 
707
+ #: defaults.php:1044
708
  msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
709
  msgstr ""
710
 
711
+ #: defaults.php:1058
712
  msgid "User marked a comment as Not Spam"
713
  msgstr ""
714
 
715
+ #: defaults.php:1059
716
  msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
717
  msgstr ""
718
 
719
+ #: defaults.php:1073
720
  msgid "User moved a comment to trash"
721
  msgstr ""
722
 
723
+ #: defaults.php:1074
724
  msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
725
  msgstr ""
726
 
727
+ #: defaults.php:1088
728
  msgid "User restored a comment from the trash"
729
  msgstr ""
730
 
731
+ #: defaults.php:1089
732
  msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
733
  msgstr ""
734
 
735
+ #: defaults.php:1103
736
  msgid "User permanently deleted a comment"
737
  msgstr ""
738
 
739
+ #: defaults.php:1104
740
  msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
741
  msgstr ""
742
 
743
+ #: defaults.php:1118
744
  msgid "User posted a comment"
745
  msgstr ""
746
 
747
+ #: defaults.php:1119, defaults.php:1138
748
  msgid "Posted a comment on the post %PostTitle%."
749
  msgstr ""
750
 
751
+ #: defaults.php:1137
752
  msgid "Visitor posted a comment"
753
  msgstr ""
754
 
755
+ #: defaults.php:1154
756
  msgid "Widgets"
757
  msgstr ""
758
 
759
+ #: defaults.php:1158
760
  msgid "User added a new widget"
761
  msgstr ""
762
 
763
+ #: defaults.php:1159
764
  msgid "Added a new %WidgetName% widget in %Sidebar%."
765
  msgstr ""
766
 
767
+ #: defaults.php:1168
768
  msgid "User modified a widget"
769
  msgstr ""
770
 
771
+ #: defaults.php:1169
772
  msgid "Modified the %WidgetName% widget in %Sidebar%."
773
  msgstr ""
774
 
775
+ #: defaults.php:1178
776
  msgid "User deleted widget"
777
  msgstr ""
778
 
779
+ #: defaults.php:1179
780
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
781
  msgstr ""
782
 
783
+ #: defaults.php:1188
784
  msgid "User moved widget"
785
  msgstr ""
786
 
787
+ #: defaults.php:1189
788
  msgid "Moved the %WidgetName% widget."
789
  msgstr ""
790
 
791
+ #: defaults.php:1191, extensions/reports/inc/wsal-reporting-view.inc.php:1640
792
  msgid "From"
793
  msgstr ""
794
 
795
+ #: defaults.php:1192, extensions/reports/inc/wsal-reporting-view.inc.php:1649
796
  msgid "To"
797
  msgstr ""
798
 
799
+ #: defaults.php:1201
800
  msgid "User changed widget position"
801
  msgstr ""
802
 
803
+ #: defaults.php:1202
804
  msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
805
  msgstr ""
806
 
807
+ #: defaults.php:1213
808
  msgid "Menus"
809
  msgstr ""
810
 
811
+ #: defaults.php:1217
812
  msgid "User created new menu"
813
  msgstr ""
814
 
815
+ #: defaults.php:1218
816
  msgid "New menu called %MenuName%."
817
  msgstr ""
818
 
819
+ #: defaults.php:1227
820
  msgid "User added content to a menu"
821
  msgstr ""
822
 
823
+ #: defaults.php:1228
824
  msgid "Added the item %ContentName% to the menu %MenuName%."
825
  msgstr ""
826
 
827
+ #: defaults.php:1230, defaults.php:1242, defaults.php:1274
828
  msgid "Item type"
829
  msgstr ""
830
 
831
+ #: defaults.php:1239
832
  msgid "User removed content from a menu"
833
  msgstr ""
834
 
835
+ #: defaults.php:1240
836
  msgid "Removed the item %ContentName% from the menu %MenuName%."
837
  msgstr ""
838
 
839
+ #: defaults.php:1251
840
  msgid "User deleted menu"
841
  msgstr ""
842
 
843
+ #: defaults.php:1252
844
  msgid "Deleted the menu %MenuName%."
845
  msgstr ""
846
 
847
+ #: defaults.php:1261
848
  msgid "User changed menu setting"
849
  msgstr ""
850
 
851
+ #: defaults.php:1262
852
  msgid "The setting %MenuSetting% in the menu %MenuName%."
853
  msgstr ""
854
 
855
+ #: defaults.php:1271
856
  msgid "User modified content in a menu"
857
  msgstr ""
858
 
859
+ #: defaults.php:1272
860
  msgid "Modified the item %ContentName% in the menu %MenuName%."
861
  msgstr ""
862
 
863
+ #: defaults.php:1283
864
  msgid "User changed name of a menu"
865
  msgstr ""
866
 
867
+ #: defaults.php:1284
868
  msgid "Renamed the menu %OldMenuName% to %MenuName%."
869
  msgstr ""
870
 
871
+ #: defaults.php:1293
872
  msgid "User changed order of the objects in a menu"
873
  msgstr ""
874
 
875
+ #: defaults.php:1294
876
  msgid "Changed the order of the items in the menu %MenuName%."
877
  msgstr ""
878
 
879
+ #: defaults.php:1303
880
  msgid "User moved objects as a sub-item"
881
  msgstr ""
882
 
883
+ #: defaults.php:1304
884
  msgid "Moved items as sub-items in the menu %MenuName%."
885
  msgstr ""
886
 
887
+ #: defaults.php:1306
888
  msgid "Moved item"
889
  msgstr ""
890
 
891
+ #: defaults.php:1307
892
  msgid "as a sub-item of"
893
  msgstr ""
894
 
895
+ #: defaults.php:1323, extensions/reports/classes/HtmlReportGenerator.php:541
896
  msgid "Custom Post Types"
897
  msgstr ""
898
 
899
+ #: defaults.php:1327
900
  msgid "User modified a draft blog post"
901
  msgstr ""
902
 
903
+ #: defaults.php:1328
904
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
905
  msgstr ""
906
 
907
+ #: defaults.php:1333
908
  msgid "User created a new post with custom post type and saved it as draft"
909
  msgstr ""
910
 
911
+ #: defaults.php:1334
912
  msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
913
  msgstr ""
914
 
915
+ #: defaults.php:1339
916
  msgid "User published a post with custom post type"
917
  msgstr ""
918
 
919
+ #: defaults.php:1340
920
  msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
921
  msgstr ""
922
 
923
+ #: defaults.php:1345
924
  msgid "User modified a post with custom post type"
925
  msgstr ""
926
 
927
+ #: defaults.php:1346
928
  msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
929
  msgstr ""
930
 
931
+ #: defaults.php:1351
932
  msgid "User modified a draft post with custom post type"
933
  msgstr ""
934
 
935
+ #: defaults.php:1352
936
  msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
937
  msgstr ""
938
 
939
+ #: defaults.php:1357
940
  msgid "User permanently deleted post with custom post type"
941
  msgstr ""
942
 
943
+ #: defaults.php:1358
944
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
945
  msgstr ""
946
 
947
+ #: defaults.php:1363
948
  msgid "User moved post with custom post type to trash"
949
  msgstr ""
950
 
951
+ #: defaults.php:1364
952
  msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
953
  msgstr ""
954
 
955
+ #: defaults.php:1369
956
  msgid "User restored post with custom post type from trash"
957
  msgstr ""
958
 
959
+ #: defaults.php:1370
960
  msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
961
  msgstr ""
962
 
963
+ #: defaults.php:1375
964
  msgid "User changed the category of a post with custom post type"
965
  msgstr ""
966
 
967
+ #: defaults.php:1376
968
  msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
969
  msgstr ""
970
 
971
+ #: defaults.php:1381
972
  msgid "User changed the URL of a post with custom post type"
973
  msgstr ""
974
 
975
+ #: defaults.php:1382
976
  msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
977
  msgstr ""
978
 
979
+ #: defaults.php:1387
980
  msgid "User changed the author or post with custom post type"
981
  msgstr ""
982
 
983
+ #: defaults.php:1388
984
  msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
985
  msgstr ""
986
 
987
+ #: defaults.php:1393
988
  msgid "User changed the status of post with custom post type"
989
  msgstr ""
990
 
991
+ #: defaults.php:1394
992
  msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
993
  msgstr ""
994
 
995
+ #: defaults.php:1399
996
  msgid "User changed the visibility of a post with custom post type"
997
  msgstr ""
998
 
999
+ #: defaults.php:1400
1000
  msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
1001
  msgstr ""
1002
 
1003
+ #: defaults.php:1405
1004
  msgid "User changed the date of post with custom post type"
1005
  msgstr ""
1006
 
1007
+ #: defaults.php:1406
1008
  msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
1009
  msgstr ""
1010
 
1011
+ #: defaults.php:1411
1012
  msgid "User created a custom field for a custom post type"
1013
  msgstr ""
1014
 
1015
+ #: defaults.php:1412
1016
  msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
1017
  msgstr ""
1018
 
1019
+ #: defaults.php:1417
1020
  msgid "User updated a custom field for a custom post type"
1021
  msgstr ""
1022
 
1023
+ #: defaults.php:1418
1024
  msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1025
  msgstr ""
1026
 
1027
+ #: defaults.php:1423
1028
  msgid "User deleted a custom field from a custom post type"
1029
  msgstr ""
1030
 
1031
+ #: defaults.php:1424
1032
  msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1033
  msgstr ""
1034
 
1035
+ #: defaults.php:1429
1036
  msgid "User updated a custom field name for a custom post type"
1037
  msgstr ""
1038
 
1039
+ #: defaults.php:1430
1040
  msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1041
  msgstr ""
1042
 
1043
+ #: defaults.php:1435
1044
  msgid "User modified content for a published custom post type"
1045
  msgstr ""
1046
 
1047
+ #: defaults.php:1436
1048
  msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
1049
  msgstr ""
1050
 
1051
+ #: defaults.php:1441
1052
  msgid "User modified content for a draft post"
1053
  msgstr ""
1054
 
1055
+ #: defaults.php:1442
1056
  msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
1057
  msgstr ""
1058
 
1059
+ #: defaults.php:1447
1060
  msgid "User modified content for a draft custom post type"
1061
  msgstr ""
1062
 
1063
+ #: defaults.php:1448
1064
  msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
1065
  msgstr ""
1066
 
1067
+ #: defaults.php:1453
1068
  msgid "User modified content of a post"
1069
  msgstr ""
1070
 
1071
+ #: defaults.php:1454
1072
  msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
1073
  msgstr ""
1074
 
1075
+ #: defaults.php:1459
1076
  msgid "User scheduled a custom post type"
1077
  msgstr ""
1078
 
1079
+ #: defaults.php:1460
1080
  msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
1081
  msgstr ""
1082
 
1083
+ #: defaults.php:1465
1084
  msgid "User changed title of a custom post type"
1085
  msgstr ""
1086
 
1087
+ #: defaults.php:1466
1088
  msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
1089
  msgstr ""
1090
 
1091
+ #: defaults.php:1471
1092
  msgid "User opened a custom post type in the editor"
1093
  msgstr ""
1094
 
1095
+ #: defaults.php:1472
1096
  msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
1097
  msgstr ""
1098
 
1099
+ #: defaults.php:1477
1100
  msgid "User viewed a custom post type"
1101
  msgstr ""
1102
 
1103
+ #: defaults.php:1478
1104
  msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
1105
  msgstr ""
1106
 
1107
+ #: defaults.php:1483
1108
  msgid "A plugin created a custom post"
1109
  msgstr ""
1110
 
1111
+ #: defaults.php:1484
1112
  msgid "A plugin automatically created the following custom post: %PostTitle%."
1113
  msgstr ""
1114
 
1115
+ #: defaults.php:1489
1116
  msgid "A plugin deleted a custom post"
1117
  msgstr ""
1118
 
1119
+ #: defaults.php:1490
1120
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
1121
  msgstr ""
1122
 
1123
+ #: defaults.php:1495
1124
  msgid "A plugin modified a custom post"
1125
  msgstr ""
1126
 
1127
+ #: defaults.php:1496
1128
  msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
1129
  msgstr ""
1130
 
1131
+ #: defaults.php:1508, extensions/reports/classes/HtmlReportGenerator.php:536
1132
  msgid "Pages"
1133
  msgstr ""
1134
 
1135
+ #: defaults.php:1512
1136
  msgid "User created a new WordPress page and saved it as draft"
1137
  msgstr ""
1138
 
1139
+ #: defaults.php:1513
1140
  msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
1141
  msgstr ""
1142
 
1143
+ #: defaults.php:1518
1144
  msgid "User published a WordPress page"
1145
  msgstr ""
1146
 
1147
+ #: defaults.php:1519
1148
  msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1149
  msgstr ""
1150
 
1151
+ #: defaults.php:1524
1152
  msgid "User modified a published WordPress page"
1153
  msgstr ""
1154
 
1155
+ #: defaults.php:1525
1156
  msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1157
  msgstr ""
1158
 
1159
+ #: defaults.php:1530
1160
  msgid "User modified a draft WordPress page"
1161
  msgstr ""
1162
 
1163
+ #: defaults.php:1531
1164
  msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
1165
  msgstr ""
1166
 
1167
+ #: defaults.php:1536
1168
  msgid "User permanently deleted a page from the trash"
1169
  msgstr ""
1170
 
1171
+ #: defaults.php:1537
1172
  msgid "Permanently deleted the page %PostTitle%."
1173
  msgstr ""
1174
 
1175
+ #: defaults.php:1542
1176
  msgid "User moved WordPress page to the trash"
1177
  msgstr ""
1178
 
1179
+ #: defaults.php:1543
1180
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
1181
  msgstr ""
1182
 
1183
+ #: defaults.php:1548
1184
  msgid "User restored a WordPress page from trash"
1185
  msgstr ""
1186
 
1187
+ #: defaults.php:1549
1188
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
1189
  msgstr ""
1190
 
1191
+ #: defaults.php:1554
1192
  msgid "User changed page URL"
1193
  msgstr ""
1194
 
1195
+ #: defaults.php:1555
1196
  msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
1197
  msgstr ""
1198
 
1199
+ #: defaults.php:1560
1200
  msgid "User changed page author"
1201
  msgstr ""
1202
 
1203
+ #: defaults.php:1561
1204
  msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
1205
  msgstr ""
1206
 
1207
+ #: defaults.php:1566
1208
  msgid "User changed page status"
1209
  msgstr ""
1210
 
1211
+ #: defaults.php:1567
1212
  msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
1213
  msgstr ""
1214
 
1215
+ #: defaults.php:1572
1216
  msgid "User changed the visibility of a page post"
1217
  msgstr ""
1218
 
1219
+ #: defaults.php:1573
1220
  msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
1221
  msgstr ""
1222
 
1223
+ #: defaults.php:1578
1224
  msgid "User changed the date of a page post"
1225
  msgstr ""
1226
 
1227
+ #: defaults.php:1579
1228
  msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
1229
  msgstr ""
1230
 
1231
+ #: defaults.php:1584
1232
  msgid "User created a custom field for a page"
1233
  msgstr ""
1234
 
1235
+ #: defaults.php:1585
1236
  msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1237
  msgstr ""
1238
 
1239
+ #: defaults.php:1590
1240
  msgid "User updated a custom field value for a page"
1241
  msgstr ""
1242
 
1243
+ #: defaults.php:1591
1244
  msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1245
  msgstr ""
1246
 
1247
+ #: defaults.php:1596
1248
  msgid "User deleted a custom field from a page"
1249
  msgstr ""
1250
 
1251
+ #: defaults.php:1597
1252
  msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
1253
  msgstr ""
1254
 
1255
+ #: defaults.php:1602
1256
  msgid "User updated a custom field name for a page"
1257
  msgstr ""
1258
 
1259
+ #: defaults.php:1603
1260
  msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1261
  msgstr ""
1262
 
1263
+ #: defaults.php:1608
1264
  msgid "User modified content for a published page"
1265
  msgstr ""
1266
 
1267
+ #: defaults.php:1609
1268
  msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
1269
  msgstr ""
1270
 
1271
+ #: defaults.php:1614
1272
  msgid "User modified content for a draft page"
1273
  msgstr ""
1274
 
1275
+ #: defaults.php:1615
1276
  msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
1277
  msgstr ""
1278
 
1279
+ #: defaults.php:1620
1280
  msgid "User scheduled a page"
1281
  msgstr ""
1282
 
1283
+ #: defaults.php:1621
1284
  msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
1285
  msgstr ""
1286
 
1287
+ #: defaults.php:1626
1288
  msgid "User changed title of a page"
1289
  msgstr ""
1290
 
1291
+ #: defaults.php:1627
1292
  msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
1293
  msgstr ""
1294
 
1295
+ #: defaults.php:1632
1296
  msgid "User opened a page in the editor"
1297
  msgstr ""
1298
 
1299
+ #: defaults.php:1633
1300
  msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
1301
  msgstr ""
1302
 
1303
+ #: defaults.php:1638
1304
  msgid "User viewed a page"
1305
  msgstr ""
1306
 
1307
+ #: defaults.php:1639
1308
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
1309
  msgstr ""
1310
 
1311
+ #: defaults.php:1644
1312
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
1313
  msgstr ""
1314
 
1315
+ #: defaults.php:1645
1316
  msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1317
  msgstr ""
1318
 
1319
+ #: defaults.php:1650
1320
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
1321
  msgstr ""
1322
 
1323
+ #: defaults.php:1651
1324
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1325
  msgstr ""
1326
 
1327
+ #: defaults.php:1656
1328
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
1329
  msgstr ""
1330
 
1331
+ #: defaults.php:1657
1332
  msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1333
  msgstr ""
1334
 
1335
+ #: defaults.php:1662
1336
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
1337
  msgstr ""
1338
 
1339
+ #: defaults.php:1663
1340
  msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1341
  msgstr ""
1342
 
1343
+ #: defaults.php:1668
1344
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
1345
  msgstr ""
1346
 
1347
+ #: defaults.php:1669
1348
  msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1349
  msgstr ""
1350
 
1351
+ #: defaults.php:1674
1352
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
1353
  msgstr ""
1354
 
1355
+ #: defaults.php:1675
1356
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1357
  msgstr ""
1358
 
1359
+ #: defaults.php:1680
1360
  msgid "A plugin created a page"
1361
  msgstr ""
1362
 
1363
+ #: defaults.php:1681
1364
  msgid "A plugin automatically created the following page: %PostTitle%."
1365
  msgstr ""
1366
 
1367
+ #: defaults.php:1686
1368
  msgid "A plugin deleted a page"
1369
  msgstr ""
1370
 
1371
+ #: defaults.php:1687
1372
  msgid "A plugin automatically deleted the following page: %PostTitle%."
1373
  msgstr ""
1374
 
1375
+ #: defaults.php:1692
1376
  msgid "A plugin modified a page"
1377
  msgstr ""
1378
 
1379
+ #: defaults.php:1693
1380
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
1381
  msgstr ""
1382
 
1383
+ #: defaults.php:1698
1384
  msgid "User Accounts"
1385
  msgstr ""
1386
 
1387
+ #: defaults.php:1699
1388
  msgid "User Profiles"
1389
  msgstr ""
1390
 
1391
+ #: defaults.php:1703
1392
  msgid "New user was created on WordPress"
1393
  msgstr ""
1394
 
1395
+ #: defaults.php:1704
1396
  msgid "A new user %NewUserData->Username% is created via registration."
1397
  msgstr ""
1398
 
1399
+ #: defaults.php:1706, classes/AlertManager.php:1069, classes/AuditLogListView.php:272, classes/AuditLogListView.php:306, classes/WidgetManager.php:76, classes/Views/Settings.php:1086, extensions/reports/classes/CsvReportGenerator.php:81, extensions/reports/classes/CsvReportGenerator.php:65, extensions/reports/classes/HtmlReportGenerator.php:245, extensions/reports/classes/HtmlReportGenerator.php:221, extensions/search/classes/Filters/UserNameFilter.php:46, extensions/user-sessions/classes/View/Sessions.php:154
1400
  msgid "User"
1401
  msgstr ""
1402
 
1403
+ #: defaults.php:1715
1404
  msgid "User created another WordPress user"
1405
  msgstr ""
1406
 
1407
+ #: defaults.php:1716
1408
  msgid "Created the new user: %NewUserData->Username%."
1409
  msgstr ""
1410
 
1411
+ #: defaults.php:1719, defaults.php:1733, defaults.php:1747, defaults.php:1761, defaults.php:1775, defaults.php:1790, defaults.php:1805, defaults.php:1819, defaults.php:1833, defaults.php:1849, defaults.php:1878, defaults.php:1892, defaults.php:1907, defaults.php:1923, defaults.php:1937, defaults.php:1952, defaults.php:1966, defaults.php:1980, defaults.php:1997, defaults.php:2011, defaults.php:2025, defaults.php:2039, defaults.php:2052, defaults.php:2398
1412
  msgid "First name"
1413
  msgstr ""
1414
 
1415
+ #: defaults.php:1720, defaults.php:1734, defaults.php:1748, defaults.php:1762, defaults.php:1776, defaults.php:1791, defaults.php:1806, defaults.php:1820, defaults.php:1834, defaults.php:1850, defaults.php:1865, defaults.php:1893, defaults.php:1908, defaults.php:1924, defaults.php:1938, defaults.php:1953, defaults.php:1967, defaults.php:1981, defaults.php:1998, defaults.php:2012, defaults.php:2026, defaults.php:2040, defaults.php:2053, defaults.php:2399
1416
  msgid "Last name"
1417
  msgstr ""
1418
 
1419
+ #: defaults.php:1729
1420
  msgid "The role of a user was changed by another WordPress user"
1421
  msgstr ""
1422
 
1423
+ #: defaults.php:1730
1424
  msgid "Changed the role of user %TargetUsername% to %NewRole%."
1425
  msgstr ""
1426
 
1427
+ #: defaults.php:1732, defaults.php:2789
1428
  msgid "Previous role"
1429
  msgstr ""
1430
 
1431
+ #: defaults.php:1743
1432
  msgid "User has changed his or her password"
1433
  msgstr ""
1434
 
1435
+ #: defaults.php:1744
1436
  msgid "Changed the password."
1437
  msgstr ""
1438
 
1439
+ #: defaults.php:1757
1440
  msgid "User changed another user's password"
1441
  msgstr ""
1442
 
1443
+ #: defaults.php:1758
1444
  msgid "Changed the password of the user %TargetUserData->Username%."
1445
  msgstr ""
1446
 
1447
+ #: defaults.php:1771
1448
  msgid "User changed his or her email address"
1449
  msgstr ""
1450
 
1451
+ #: defaults.php:1772
1452
  msgid "Changed the email address to %NewEmail%."
1453
  msgstr ""
1454
 
1455
+ #: defaults.php:1777, defaults.php:1792
1456
  msgid "Previous email address"
1457
  msgstr ""
1458
 
1459
+ #: defaults.php:1786
1460
  msgid "User changed another user's email address"
1461
  msgstr ""
1462
 
1463
+ #: defaults.php:1787
1464
  msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
1465
  msgstr ""
1466
 
1467
+ #: defaults.php:1801
1468
  msgid "User was deleted by another user"
1469
  msgstr ""
1470
 
1471
+ #: defaults.php:1802
1472
  msgid "Deleted the user %TargetUserData->Username%."
1473
  msgstr ""
1474
 
1475
+ #: defaults.php:1815
1476
  msgid "User opened the profile page of another user"
1477
  msgstr ""
1478
 
1479
+ #: defaults.php:1816
1480
  msgid "Opened the profile page of user %TargetUsername%."
1481
  msgstr ""
1482
 
1483
+ #: defaults.php:1829
1484
  msgid "User updated a custom field value for a user"
1485
  msgstr ""
1486
 
1487
+ #: defaults.php:1830
1488
  msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
1489
  msgstr ""
1490
 
1491
+ #: defaults.php:1835, defaults.php:2879, defaults.php:2911, defaults.php:3322
1492
  msgid "Previous value"
1493
  msgstr ""
1494
 
1495
+ #: defaults.php:1836, defaults.php:3323
1496
  msgid "New value"
1497
  msgstr ""
1498
 
1499
+ #: defaults.php:1845
1500
  msgid "User created a custom field value for a user"
1501
  msgstr ""
1502
 
1503
+ #: defaults.php:1846
1504
  msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
1505
  msgstr ""
1506
 
1507
+ #: defaults.php:1860
1508
  msgid "User changed first name for a user"
1509
  msgstr ""
1510
 
1511
+ #: defaults.php:1861
1512
  msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
1513
  msgstr ""
1514
 
1515
+ #: defaults.php:1864
1516
  msgid "Previous name"
1517
  msgstr ""
1518
 
1519
+ #: defaults.php:1874
1520
  msgid "User changed last name for a user"
1521
  msgstr ""
1522
 
1523
+ #: defaults.php:1875
1524
  msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
1525
  msgstr ""
1526
 
1527
+ #: defaults.php:1879
1528
  msgid "Previous last name"
1529
  msgstr ""
1530
 
1531
+ #: defaults.php:1888
1532
  msgid "User changed nickname for a user"
1533
  msgstr ""
1534
 
1535
+ #: defaults.php:1889
1536
  msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
1537
  msgstr ""
1538
 
1539
+ #: defaults.php:1894
1540
  msgid "Previous nickname"
1541
  msgstr ""
1542
 
1543
+ #: defaults.php:1903
1544
  msgid "User changed the display name for a user"
1545
  msgstr ""
1546
 
1547
+ #: defaults.php:1904
1548
  msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
1549
  msgstr ""
1550
 
1551
+ #: defaults.php:1909
1552
  msgid "Previous display name"
1553
  msgstr ""
1554
 
1555
+ #: defaults.php:1919, defaults.php:1933
1556
  msgid "User created an application password"
1557
  msgstr ""
1558
 
1559
+ #: defaults.php:1920
1560
  msgid "The application password %friendly_name%."
1561
  msgstr ""
1562
 
1563
+ #: defaults.php:1934
1564
  msgid "The application password %friendly_name% for the user %login%."
1565
  msgstr ""
1566
 
1567
+ #: defaults.php:1948
1568
  msgid "User revoked all application passwords"
1569
  msgstr ""
1570
 
1571
+ #: defaults.php:1949
1572
  msgid "All application passwords."
1573
  msgstr ""
1574
 
1575
+ #: defaults.php:1962
1576
  msgid "User revoked all application passwords for a user"
1577
  msgstr ""
1578
 
1579
+ #: defaults.php:1963
1580
  msgid "All application passwords from the user %login%."
1581
  msgstr ""
1582
 
1583
+ #: defaults.php:1976
1584
  msgid "Admin sent a password reset request to a user"
1585
  msgstr ""
1586
 
1587
+ #: defaults.php:1977
1588
  msgid "Sent a password reset request to the user %login%."
1589
  msgstr ""
1590
 
1591
+ #: defaults.php:1989
1592
  msgid "Multisite User Profiles"
1593
  msgstr ""
1594
 
1595
+ #: defaults.php:1993
1596
  msgid "User granted Super Admin privileges"
1597
  msgstr ""
1598
 
1599
+ #: defaults.php:1994
1600
  msgid "Granted Super Admin privileges to the user %TargetUsername%."
1601
  msgstr ""
1602
 
1603
+ #: defaults.php:2007
1604
  msgid "User revoked from Super Admin privileges"
1605
  msgstr ""
1606
 
1607
+ #: defaults.php:2008
1608
  msgid "Revoked Super Admin privileges from %TargetUsername%."
1609
  msgstr ""
1610
 
1611
+ #: defaults.php:2021
1612
  msgid "Existing user added to a site"
1613
  msgstr ""
1614
 
1615
+ #: defaults.php:2022
1616
  msgid "Added user %TargetUsername% to the site %SiteName%."
1617
  msgstr ""
1618
 
1619
+ #: defaults.php:2035
1620
  msgid "User removed from site"
1621
  msgstr ""
1622
 
1623
+ #: defaults.php:2036
1624
  msgid "Removed user %TargetUsername% from the site %SiteName%"
1625
  msgstr ""
1626
 
1627
+ #: defaults.php:2038
1628
  msgid "Site role"
1629
  msgstr ""
1630
 
1631
+ #: defaults.php:2049
1632
  msgid "New network user created"
1633
  msgstr ""
1634
 
1635
+ #: defaults.php:2050
1636
  msgid "Created the new network user %NewUserData->Username%."
1637
  msgstr ""
1638
 
1639
+ #: defaults.php:2062
1640
  msgid "Plugins & Themes"
1641
  msgstr ""
1642
 
1643
+ #: defaults.php:2063, classes/AuditLogGridView.php:437, classes/AuditLogListView.php:445
1644
  msgid "Plugins"
1645
  msgstr ""
1646
 
1647
+ #: defaults.php:2067
1648
  msgid "User installed a plugin"
1649
  msgstr ""
1650
 
1651
+ #: defaults.php:2068
1652
  msgid "Installed the plugin %Plugin->Name%."
1653
  msgstr ""
1654
 
1655
+ #: defaults.php:2070, defaults.php:2083, defaults.php:2096, defaults.php:2109, defaults.php:2205, defaults.php:2218, defaults.php:2231, defaults.php:2270, defaults.php:2283
1656
  msgid "Version"
1657
  msgstr ""
1658
 
1659
+ #: defaults.php:2071, defaults.php:2084, defaults.php:2097, defaults.php:2110, defaults.php:2123, defaults.php:2206, defaults.php:2219, defaults.php:2232, defaults.php:2245, defaults.php:2271, defaults.php:2284
1660
  msgid "Install location"
1661
  msgstr ""
1662
 
1663
+ #: defaults.php:2080
1664
  msgid "User activated a WordPress plugin"
1665
  msgstr ""
1666
 
1667
+ #: defaults.php:2081
1668
  msgid "Activated the plugin %PluginData->Name%."
1669
  msgstr ""
1670
 
1671
+ #: defaults.php:2093
1672
  msgid "User deactivated a WordPress plugin"
1673
  msgstr ""
1674
 
1675
+ #: defaults.php:2094
1676
  msgid "Deactivated the plugin %PluginData->Name%."
1677
  msgstr ""
1678
 
1679
+ #: defaults.php:2106
1680
  msgid "User uninstalled a plugin"
1681
  msgstr ""
1682
 
1683
+ #: defaults.php:2107
1684
  msgid "Uninstalled the plugin %PluginData->Name%."
1685
  msgstr ""
1686
 
1687
+ #: defaults.php:2119
1688
  msgid "User upgraded a plugin"
1689
  msgstr ""
1690
 
1691
+ #: defaults.php:2120
1692
  msgid "Updated the plugin %PluginData->Name%."
1693
  msgstr ""
1694
 
1695
+ #: defaults.php:2122
1696
  msgid "Updated version"
1697
  msgstr ""
1698
 
1699
+ #: defaults.php:2132
1700
  msgid "A plugin created a post"
1701
  msgstr ""
1702
 
1703
+ #: defaults.php:2133
1704
  msgid "The plugin created the post %PostTitle%."
1705
  msgstr ""
1706
 
1707
+ #: defaults.php:2138, defaults.php:2153, classes/AlertManager.php:1071, classes/AuditLogGridView.php:434, classes/AuditLogListView.php:443
1708
  msgid "Plugin"
1709
  msgstr ""
1710
 
1711
+ #: defaults.php:2147
1712
  msgid "A plugin deleted a post"
1713
  msgstr ""
1714
 
1715
+ #: defaults.php:2148
1716
  msgid "A plugin deleted the post %PostTitle%."
1717
  msgstr ""
1718
 
1719
+ #: defaults.php:2163
1720
+ msgid "Changed the Automatic updates setting for a plugin."
1721
+ msgstr ""
1722
+
1723
+ #: defaults.php:2164
1724
+ msgid "Changed the Automatic updates setting for the plugin %name%."
1725
+ msgstr ""
1726
+
1727
+ #: defaults.php:2166, defaults.php:2179
1728
+ msgid "Install location:"
1729
+ msgstr ""
1730
+
1731
+ #: defaults.php:2176
1732
+ msgid "Changed the Automatic updates setting for a theme."
1733
+ msgstr ""
1734
+
1735
+ #: defaults.php:2177
1736
+ msgid "Changed the Automatic updates setting for the theme %name%."
1737
+ msgstr ""
1738
+
1739
+ #: defaults.php:2189
1740
  msgid "User changed a file using the plugin editor"
1741
  msgstr ""
1742
 
1743
+ #: defaults.php:2190
1744
  msgid "Modified the file %File% with the plugin editor."
1745
  msgstr ""
1746
 
1747
+ #: defaults.php:2198
1748
  msgid "Themes"
1749
  msgstr ""
1750
 
1751
+ #: defaults.php:2202
1752
  msgid "User installed a theme"
1753
  msgstr ""
1754
 
1755
+ #: defaults.php:2203
1756
  msgid "Installed the theme %Theme->Name%."
1757
  msgstr ""
1758
 
1759
+ #: defaults.php:2215
1760
  msgid "User activated a theme"
1761
  msgstr ""
1762
 
1763
+ #: defaults.php:2216
1764
  msgid "Activated the theme %Theme->Name%."
1765
  msgstr ""
1766
 
1767
+ #: defaults.php:2228
1768
  msgid "User uninstalled a theme"
1769
  msgstr ""
1770
 
1771
+ #: defaults.php:2229
1772
  msgid "Deleted the theme %Theme->Name%."
1773
  msgstr ""
1774
 
1775
+ #: defaults.php:2241
1776
  msgid "User updated a theme"
1777
  msgstr ""
1778
 
1779
+ #: defaults.php:2242
1780
  msgid "Updated the theme %Theme->Name%."
1781
  msgstr ""
1782
 
1783
+ #: defaults.php:2244, defaults.php:2338
1784
  msgid "New version"
1785
  msgstr ""
1786
 
1787
+ #: defaults.php:2254
1788
  msgid "User changed a file using the theme editor"
1789
  msgstr ""
1790
 
1791
+ #: defaults.php:2255
1792
  msgid "Modified the file %Theme%/%File% with the theme editor."
1793
  msgstr ""
1794
 
1795
+ #: defaults.php:2263
1796
  msgid "Themes on Multisite"
1797
  msgstr ""
1798
 
1799
+ #: defaults.php:2267
1800
  msgid "Activated theme on network"
1801
  msgstr ""
1802
 
1803
+ #: defaults.php:2268
1804
  msgid "Network activated the theme %Theme->Name%."
1805
  msgstr ""
1806
 
1807
+ #: defaults.php:2280
1808
  msgid "Deactivated theme from network"
1809
  msgstr ""
1810
 
1811
+ #: defaults.php:2281
1812
  msgid "Network deactivated the theme %Theme->Name%."
1813
  msgstr ""
1814
 
1815
+ #: defaults.php:2293
1816
  msgid "WordPress & System"
1817
  msgstr ""
1818
 
1819
+ #: defaults.php:2294, classes/AlertManager.php:1070, classes/AlertManager.php:1760, classes/AuditLogGridView.php:443, classes/AuditLogListView.php:449, extensions/email-notifications/classes/DailyNotification.php:243, extensions/email-notifications/classes/Notifier.php:647, extensions/reports/classes/Common.php:1178
1820
  msgid "System"
1821
  msgstr ""
1822
 
1823
+ #: defaults.php:2298
1824
  msgid "Unknown Error"
1825
  msgstr ""
1826
 
1827
+ #: defaults.php:2299
1828
  msgid "An unexpected error has occurred."
1829
  msgstr ""
1830
 
1831
+ #: defaults.php:2304
1832
  msgid "PHP error"
1833
  msgstr ""
1834
 
1835
+ #: defaults.php:2305, defaults.php:2311, defaults.php:2317, defaults.php:2323, defaults.php:2329
1836
  msgid "%Message%."
1837
  msgstr ""
1838
 
1839
+ #: defaults.php:2310
1840
  msgid "PHP warning"
1841
  msgstr ""
1842
 
1843
+ #: defaults.php:2316
1844
  msgid "PHP notice"
1845
  msgstr ""
1846
 
1847
+ #: defaults.php:2322
1848
  msgid "PHP exception"
1849
  msgstr ""
1850
 
1851
+ #: defaults.php:2328
1852
  msgid "PHP shutdown error"
1853
  msgstr ""
1854
 
1855
+ #: defaults.php:2334
1856
  msgid "WordPress was updated"
1857
  msgstr ""
1858
 
1859
+ #: defaults.php:2335
1860
  msgid "Updated WordPress."
1861
  msgstr ""
1862
 
1863
+ #: defaults.php:2337
1864
  msgid "Previous version"
1865
  msgstr ""
1866
 
1867
+ #: defaults.php:2354
1868
  msgid "Advertising Extensions"
1869
  msgstr ""
1870
 
1871
+ #: defaults.php:2355
1872
  msgid "%PromoName% %PromoMessage%"
1873
  msgstr ""
1874
 
1875
+ #: defaults.php:2359
1876
  msgid "Activity log plugin"
1877
  msgstr ""
1878
 
1879
+ #: defaults.php:2363
1880
  msgid "Events automatically pruned by system"
1881
  msgstr ""
1882
 
1883
+ #: defaults.php:2364
1884
  msgid "System automatically deleted %EventCount% events from the activity log."
1885
  msgstr ""
1886
 
1887
+ #: defaults.php:2373
1888
  msgid "Reset the plugin's settings to default"
1889
  msgstr ""
1890
 
1891
+ #: defaults.php:2374
1892
  msgid "Reset the activity log plugin's settings to default."
1893
  msgstr ""
1894
 
1895
+ #: defaults.php:2383
1896
  msgid "Purged the activity log"
1897
  msgstr ""
1898
 
1899
+ #: defaults.php:2384
1900
  msgid "Purged the activity log."
1901
  msgstr ""
1902
 
1903
+ #: defaults.php:2394
1904
+ msgid "Deleted all the data about a user from the activity log."
1905
+ msgstr ""
1906
+
1907
+ #: defaults.php:2395
1908
+ msgid "Deleted all the data about the user <strong>%user%</strong> from the activity log."
1909
+ msgstr ""
1910
+
1911
+ #: defaults.php:2408
1912
+ msgid "Deleted all the data of a specific type from the activity log."
1913
+ msgstr ""
1914
+
1915
+ #: defaults.php:2409
1916
+ msgid "Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log."
1917
+ msgstr ""
1918
+
1919
+ #: defaults.php:2419
1920
  msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
1921
  msgstr ""
1922
 
1923
+ #: defaults.php:2420
1924
  msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
1925
  msgstr ""
1926
 
1927
+ #: defaults.php:2430
1928
  msgid "Changed the status of the Login Page Notification"
1929
  msgstr ""
1930
 
1931
+ #: defaults.php:2431
1932
  msgid "Changed the status of the <strong>Login Page Notification.</strong>"
1933
  msgstr ""
1934
 
1935
+ #: defaults.php:2440
1936
  msgid "Changed the text of the Login Page Notification"
1937
  msgstr ""
1938
 
1939
+ #: defaults.php:2441
1940
  msgid "Changed the text of the <strong>Login Page Notification.</strong>"
1941
  msgstr ""
1942
 
1943
+ #: defaults.php:2450
1944
  msgid "Changed the status of the Reverse proxy / firewall option"
1945
  msgstr ""
1946
 
1947
+ #: defaults.php:2451
1948
  msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
1949
  msgstr ""
1950
 
1951
+ #: defaults.php:2460
1952
  msgid "Changed the Restrict plugin access setting"
1953
  msgstr ""
1954
 
1955
+ #: defaults.php:2461
1956
  msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
1957
  msgstr ""
1958
 
1959
+ #: defaults.php:2463, defaults.php:2497, defaults.php:2967, defaults.php:3054, defaults.php:3347
1960
  msgid "Previous setting"
1961
  msgstr ""
1962
 
1963
+ #: defaults.php:2472
1964
  msgid "The user %user% to / from the list of users who can view the activity log"
1965
  msgstr ""
1966
 
1967
+ #: defaults.php:2473
1968
  msgid "The user %user% to / from the list of users who can view the activity log."
1969
  msgstr ""
1970
 
1971
+ #: defaults.php:2475
1972
  msgid "Previous list of users who had access to view the activity log"
1973
  msgstr ""
1974
 
1975
+ #: defaults.php:2484
1976
  msgid "Changed the status of the Hide plugin in plugins page setting"
1977
  msgstr ""
1978
 
1979
+ #: defaults.php:2485
1980
  msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
1981
  msgstr ""
1982
 
1983
+ #: defaults.php:2494
1984
  msgid "Changed the Activity log retention setting"
1985
  msgstr ""
1986
 
1987
+ #: defaults.php:2495
1988
  msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
1989
  msgstr ""
1990
 
1991
+ #: defaults.php:2506
1992
  msgid "A user was added to / from the list of excluded users from the activity log"
1993
  msgstr ""
1994
 
1995
+ #: defaults.php:2507
1996
  msgid "The user %user% to / from the list of excluded users from the activity log."
1997
  msgstr ""
1998
 
1999
+ #: defaults.php:2509, defaults.php:2521
2000
  msgid "Previous list of users"
2001
  msgstr ""
2002
 
2003
+ #: defaults.php:2518
2004
  msgid "A user role was added to / from the list of excluded roles from the activity log"
2005
  msgstr ""
2006
 
2007
+ #: defaults.php:2519
2008
  msgid "The user role %role% to / from the list of excluded roles from the activity log."
2009
  msgstr ""
2010
 
2011
+ #: defaults.php:2530
2012
  msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
2013
  msgstr ""
2014
 
2015
+ #: defaults.php:2531
2016
  msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
2017
  msgstr ""
2018
 
2019
+ #: defaults.php:2533
2020
  msgid "Previous list of IPs"
2021
  msgstr ""
2022
 
2023
+ #: defaults.php:2542
2024
  msgid "A post type was added to / from the list of excluded post types from the activity log"
2025
  msgstr ""
2026
 
2027
+ #: defaults.php:2543
2028
  msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
2029
  msgstr ""
2030
 
2031
+ #: defaults.php:2545
2032
  msgid "Previous list of Post types"
2033
  msgstr ""
2034
 
2035
+ #: defaults.php:2554
2036
  msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
2037
  msgstr ""
2038
 
2039
+ #: defaults.php:2555
2040
  msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
2041
  msgstr ""
2042
 
2043
+ #: defaults.php:2557
2044
  msgid "Previous list of Custom fields"
2045
  msgstr ""
2046
 
2047
+ #: defaults.php:2566
2048
  msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
2049
  msgstr ""
2050
 
2051
+ #: defaults.php:2567
2052
  msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
2053
  msgstr ""
2054
 
2055
+ #: defaults.php:2569
2056
  msgid "Previous list of user profile Custom fields"
2057
  msgstr ""
2058
 
2059
+ #: defaults.php:2577
2060
  msgid "Notifications & Integrations"
2061
  msgstr ""
2062
 
2063
+ #: defaults.php:2581
2064
  msgid "Changed the status of the Daily Summary of Activity Log"
2065
  msgstr ""
2066
 
2067
+ #: defaults.php:2582
2068
  msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
2069
  msgstr ""
2070
 
2071
+ #: defaults.php:2591
2072
  msgid "Modified the reciepients of the Daily Summary of Activity Log."
2073
  msgstr ""
2074
 
2075
+ #: defaults.php:2592
2076
  msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
2077
  msgstr ""
2078
 
2079
+ #: defaults.php:2594
2080
  msgid "New recipient"
2081
  msgstr ""
2082
 
2083
+ #: defaults.php:2595
2084
  msgid "Previous recipient"
2085
  msgstr ""
2086
 
2087
+ #: defaults.php:2604
2088
  msgid "Changed the status of a built in notification"
2089
  msgstr ""
2090
 
2091
+ #: defaults.php:2605
2092
  msgid "Changed the status of the built in notification %notification_name%."
2093
  msgstr ""
2094
 
2095
+ #: defaults.php:2614
2096
  msgid "Modified the recipient(s) of the built a notification"
2097
  msgstr ""
2098
 
2099
+ #: defaults.php:2615
2100
  msgid "Modified the recipient(s) of the built in notification %notification_name%."
2101
  msgstr ""
2102
 
2103
+ #: defaults.php:2617
2104
  msgid "New recipient(s)"
2105
  msgstr ""
2106
 
2107
+ #: defaults.php:2618
2108
  msgid "Previous recipient(s)"
2109
  msgstr ""
2110
 
2111
+ #: defaults.php:2627
2112
  msgid "Added a new custom notification"
2113
  msgstr ""
2114
 
2115
+ #: defaults.php:2628
2116
  msgid "Added a new custom notification %notification_name%."
2117
  msgstr ""
2118
 
2119
+ #: defaults.php:2630, defaults.php:2642
2120
  msgid "Recipient(s)"
2121
  msgstr ""
2122
 
2123
+ #: defaults.php:2639
2124
  msgid "Modified a custom notification"
2125
  msgstr ""
2126
 
2127
+ #: defaults.php:2640
2128
  msgid "Modified the custom notification %notification_name%."
2129
  msgstr ""
2130
 
2131
+ #: defaults.php:2651
2132
  msgid "Changed the status of a custom notification"
2133
  msgstr ""
2134
 
2135
+ #: defaults.php:2652
2136
  msgid "Changed the status of the custom notification %notification_name%."
2137
  msgstr ""
2138
 
2139
+ #: defaults.php:2661
2140
  msgid "Deleted a custom notification"
2141
  msgstr ""
2142
 
2143
+ #: defaults.php:2662
2144
  msgid "Deleted the custom notification %notification_name%."
2145
  msgstr ""
2146
 
2147
+ #: defaults.php:2671
2148
  msgid "Modified a default notification template"
2149
  msgstr ""
2150
 
2151
+ #: defaults.php:2672
2152
  msgid "Modified the default %template_name% notification template."
2153
  msgstr ""
2154
 
2155
+ #: defaults.php:2683
2156
  msgid "Added a new integrations connection"
2157
  msgstr ""
2158
 
2159
+ #: defaults.php:2684
2160
+ msgid "Added / removed the integrations connection %name%"
2161
  msgstr ""
2162
 
2163
+ #: defaults.php:2686, defaults.php:2698
2164
  msgid "Connection type"
2165
  msgstr ""
2166
 
2167
+ #: defaults.php:2695
2168
  msgid "Modified an integrations connection"
2169
  msgstr ""
2170
 
2171
+ #: defaults.php:2696
2172
  msgid "Modified the integrations connection %name%."
2173
  msgstr ""
2174
 
2175
+ #: defaults.php:2707
2176
  msgid "Deleted a integrations connection"
2177
  msgstr ""
2178
 
2179
+ #: defaults.php:2708
2180
  msgid "Deleted the integrations connection %name%."
2181
  msgstr ""
2182
 
2183
+ #: defaults.php:2717
2184
  msgid "Added a new activity log mirror"
2185
  msgstr ""
2186
 
2187
+ #: defaults.php:2718
2188
  msgid "Added a new activity log mirror %name%."
2189
  msgstr ""
2190
 
2191
+ #: defaults.php:2720, defaults.php:2732, defaults.php:2744
2192
  msgid "Connection used by this mirror"
2193
  msgstr ""
2194
 
2195
+ #: defaults.php:2729
2196
  msgid "Modified an activity log mirror"
2197
  msgstr ""
2198
 
2199
+ #: defaults.php:2730
2200
  msgid "Modified the activity log mirror %name%."
2201
  msgstr ""
2202
 
2203
+ #: defaults.php:2741
2204
  msgid "Changed the status of an activity log mirror"
2205
  msgstr ""
2206
 
2207
+ #: defaults.php:2742
2208
  msgid "Changed the status of the activity log mirror %name%."
2209
  msgstr ""
2210
 
2211
+ #: defaults.php:2753
2212
  msgid "Deleted an activity log mirror"
2213
  msgstr ""
2214
 
2215
+ #: defaults.php:2754
2216
  msgid "Deleted the activity log mirror %name%."
2217
  msgstr ""
2218
 
2219
+ #: defaults.php:2763
2220
  msgid "Changed the status of Logging of events to the database"
2221
  msgstr ""
2222
 
2223
+ #: defaults.php:2764
2224
  msgid "Changed the status of <strong>Logging of events to the database</strong>."
2225
  msgstr ""
2226
 
2227
+ #: defaults.php:2772
2228
  msgid "WordPress Site Settings"
2229
  msgstr ""
2230
 
2231
+ #: defaults.php:2776
2232
  msgid "Option Anyone Can Register in WordPress settings changed"
2233
  msgstr ""
2234
 
2235
+ #: defaults.php:2777
2236
  msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
2237
  msgstr ""
2238
 
2239
+ #: defaults.php:2786
2240
  msgid "New User Default Role changed"
2241
  msgstr ""
2242
 
2243
+ #: defaults.php:2787
2244
  msgid "Changed the <strong>New user default role</strong> WordPress setting."
2245
  msgstr ""
2246
 
2247
+ #: defaults.php:2790
2248
  msgid "New role"
2249
  msgstr ""
2250
 
2251
+ #: defaults.php:2799
2252
  msgid "WordPress Administrator Notification email changed"
2253
  msgstr ""
2254
 
2255
+ #: defaults.php:2800
2256
  msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
2257
  msgstr ""
2258
 
2259
+ #: defaults.php:2802
2260
  msgid "Previous address"
2261
  msgstr ""
2262
 
2263
+ #: defaults.php:2803
2264
  msgid "New address"
2265
  msgstr ""
2266
 
2267
+ #: defaults.php:2812
2268
  msgid "User changes the WordPress Permalinks"
2269
  msgstr ""
2270
 
2271
+ #: defaults.php:2813
2272
  msgid "Changed the <strong>WordPress permalinks</strong>."
2273
  msgstr ""
2274
 
2275
+ #: defaults.php:2815
2276
  msgid "Previous permalinks"
2277
  msgstr ""
2278
 
2279
+ #: defaults.php:2816
2280
  msgid "New permalinks"
2281
  msgstr ""
2282
 
2283
+ #: defaults.php:2825
2284
  msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
2285
  msgstr ""
2286
 
2287
+ #: defaults.php:2826
2288
  msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
2289
  msgstr ""
2290
 
2291
+ #: defaults.php:2835
2292
  msgid "Enabled/Disabled comments on all the website"
2293
  msgstr ""
2294
 
2295
+ #: defaults.php:2836
2296
  msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
2297
  msgstr ""
2298
 
2299
+ #: defaults.php:2846
2300
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
2301
  msgstr ""
2302
 
2303
+ #: defaults.php:2847
2304
  msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
2305
  msgstr ""
2306
 
2307
+ #: defaults.php:2856
2308
  msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
2309
  msgstr ""
2310
 
2311
+ #: defaults.php:2857
2312
  msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
2313
  msgstr ""
2314
 
2315
+ #: defaults.php:2866
2316
  msgid "Enabled/Disabled the option to automatically close comments"
2317
  msgstr ""
2318
 
2319
+ #: defaults.php:2867
2320
  msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
2321
  msgstr ""
2322
 
2323
+ #: defaults.php:2876
2324
  msgid "Changed the value of the option Automatically close comments"
2325
  msgstr ""
2326
 
2327
+ #: defaults.php:2877
2328
  msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
2329
  msgstr ""
2330
 
2331
+ #: defaults.php:2888
2332
  msgid "Enabled/Disabled the option for comments to be manually approved"
2333
  msgstr ""
2334
 
2335
+ #: defaults.php:2889
2336
  msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
2337
  msgstr ""
2338
 
2339
+ #: defaults.php:2898
2340
  msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
2341
  msgstr ""
2342
 
2343
+ #: defaults.php:2899
2344
  msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
2345
  msgstr ""
2346
 
2347
+ #: defaults.php:2908
2348
  msgid "Changed the number of links that a comment must have to be held in the queue"
2349
  msgstr ""
2350
 
2351
+ #: defaults.php:2909
2352
  msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
2353
  msgstr ""
2354
 
2355
+ #: defaults.php:2920
2356
  msgid "Modified the list of keywords for comments moderation"
2357
  msgstr ""
2358
 
2359
+ #: defaults.php:2921
2360
  msgid "Modified the list of keywords for comments medoration in WordPress."
2361
  msgstr ""
2362
 
2363
+ #: defaults.php:2930
2364
  msgid "Modified the list of keywords for comments blacklisting"
2365
  msgstr ""
2366
 
2367
+ #: defaults.php:2931
2368
  msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
2369
  msgstr ""
2370
 
2371
+ #: defaults.php:2940
2372
  msgid "Option WordPress Address (URL) in WordPress settings changed"
2373
  msgstr ""
2374
 
2375
+ #: defaults.php:2941
2376
  msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
2377
  msgstr ""
2378
 
2379
+ #: defaults.php:2952
2380
  msgid "Option Site Address (URL) in WordPress settings changed"
2381
  msgstr ""
2382
 
2383
+ #: defaults.php:2953
2384
  msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
2385
  msgstr ""
2386
 
2387
+ #: defaults.php:2964
2388
  msgid "Option Your homepage displays in WordPress settings changed"
2389
  msgstr ""
2390
 
2391
+ #: defaults.php:2965
2392
  msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
2393
  msgstr ""
2394
 
2395
+ #: defaults.php:2976
2396
  msgid "Option homepage in WordPress settings changed"
2397
  msgstr ""
2398
 
2399
+ #: defaults.php:2977
2400
  msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
2401
  msgstr ""
2402
 
2403
+ #: defaults.php:2979, defaults.php:2991
2404
  msgid "Previous page"
2405
  msgstr ""
2406
 
2407
+ #: defaults.php:2988
2408
  msgid "Option posts page in WordPress settings changed"
2409
  msgstr ""
2410
 
2411
+ #: defaults.php:2989
2412
  msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
2413
  msgstr ""
2414
 
2415
+ #: defaults.php:3001
2416
  msgid "Option Timezone in WordPress settings changed"
2417
  msgstr ""
2418
 
2419
+ #: defaults.php:3002
2420
  msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
2421
  msgstr ""
2422
 
2423
+ #: defaults.php:3004
2424
  msgid "Previous timezone"
2425
  msgstr ""
2426
 
2427
+ #: defaults.php:3013
2428
  msgid "Option Date format in WordPress settings changed"
2429
  msgstr ""
2430
 
2431
+ #: defaults.php:3014
2432
  msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
2433
  msgstr ""
2434
 
2435
+ #: defaults.php:3016, defaults.php:3028
2436
  msgid "Previous format"
2437
  msgstr ""
2438
 
2439
+ #: defaults.php:3025
2440
  msgid "Option Time format in WordPress settings changed"
2441
  msgstr ""
2442
 
2443
+ #: defaults.php:3026
2444
  msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
2445
  msgstr ""
2446
 
2447
+ #: defaults.php:3038
2448
  msgid "Option Automatic updates setting changed"
2449
  msgstr ""
2450
 
2451
+ #: defaults.php:3039
2452
  msgid "Changed the <strong>Automatic updates</strong> setting."
2453
  msgstr ""
2454
 
2455
+ #: defaults.php:3041
2456
  msgid "New setting status"
2457
  msgstr ""
2458
 
2459
+ #: defaults.php:3051
2460
  msgid "Option Site Language setting changed"
2461
  msgstr ""
2462
 
2463
+ #: defaults.php:3052
2464
  msgid "Changed the <strong>Site Language</strong> to %new_value%."
2465
  msgstr ""
2466
 
2467
+ #: defaults.php:3062
2468
  msgid "Database Events"
2469
  msgstr ""
2470
 
2471
+ #: defaults.php:3066
2472
  msgid "Plugin created table"
2473
  msgstr ""
2474
 
2475
+ #: defaults.php:3067
2476
  msgid "The plugin %Plugin->Name% created this table in the database."
2477
  msgstr ""
2478
 
2479
+ #: defaults.php:3069, defaults.php:3081, defaults.php:3093, defaults.php:3105, defaults.php:3117
2480
  msgid "Table"
2481
  msgstr ""
2482
 
2483
+ #: defaults.php:3078
2484
  msgid "Plugin modified table structure"
2485
  msgstr ""
2486
 
2487
+ #: defaults.php:3079
2488
  msgid "The plugin %Plugin->Name% modified the structure of a database table."
2489
  msgstr ""
2490
 
2491
+ #: defaults.php:3090
2492
  msgid "Plugin deleted table"
2493
  msgstr ""
2494
 
2495
+ #: defaults.php:3091
2496
  msgid "The plugin %Plugin->Name% deleted this table from the database."
2497
  msgstr ""
2498
 
2499
+ #: defaults.php:3102
2500
  msgid "Theme created tables"
2501
  msgstr ""
2502
 
2503
+ #: defaults.php:3103
2504
  msgid "The theme %Theme->Name% created this tables in the database."
2505
  msgstr ""
2506
 
2507
+ #: defaults.php:3114
2508
  msgid "Theme modified tables structure"
2509
  msgstr ""
2510
 
2511
+ #: defaults.php:3115
2512
  msgid "The theme %Theme->Name% modified the structure of this database table"
2513
  msgstr ""
2514
 
2515
+ #: defaults.php:3126
2516
  msgid "Theme deleted tables"
2517
  msgstr ""
2518
 
2519
+ #: defaults.php:3127
2520
  msgid "The theme %Theme->Name% deleted this table from the database."
2521
  msgstr ""
2522
 
2523
+ #: defaults.php:3129, defaults.php:3141, defaults.php:3153, defaults.php:3165, defaults.php:3177, defaults.php:3189, defaults.php:3201
2524
  msgid "Tables"
2525
  msgstr ""
2526
 
2527
+ #: defaults.php:3138
2528
  msgid "Unknown component created tables"
2529
  msgstr ""
2530
 
2531
+ #: defaults.php:3139
2532
  msgid "An unknown component created these tables in the database."
2533
  msgstr ""
2534
 
2535
+ #: defaults.php:3150
2536
  msgid "Unknown component modified tables structure"
2537
  msgstr ""
2538
 
2539
+ #: defaults.php:3151
2540
  msgid "An unknown component modified the structure of these database tables."
2541
  msgstr ""
2542
 
2543
+ #: defaults.php:3162
2544
  msgid "Unknown component deleted tables"
2545
  msgstr ""
2546
 
2547
+ #: defaults.php:3163
2548
  msgid "An unknown component deleted these tables from the database."
2549
  msgstr ""
2550
 
2551
+ #: defaults.php:3174
2552
  msgid "WordPress created tables"
2553
  msgstr ""
2554
 
2555
+ #: defaults.php:3175
2556
  msgid "WordPress has created these tables in the database."
2557
  msgstr ""
2558
 
2559
+ #: defaults.php:3186
2560
  msgid "WordPress modified tables structure"
2561
  msgstr ""
2562
 
2563
+ #: defaults.php:3187
2564
  msgid "WordPress modified the structure of these database tables."
2565
  msgstr ""
2566
 
2567
+ #: defaults.php:3198
2568
  msgid "WordPress deleted tables"
2569
  msgstr ""
2570
 
2571
+ #: defaults.php:3199
2572
  msgid "WordPress deleted these tables from the database."
2573
  msgstr ""
2574
 
2575
+ #: defaults.php:3210
2576
  msgid "Multisite Network Sites"
2577
  msgstr ""
2578
 
2579
+ #: defaults.php:3211
2580
  msgid "MultiSite"
2581
  msgstr ""
2582
 
2583
+ #: defaults.php:3215
2584
  msgid "New site added on the network"
2585
  msgstr ""
2586
 
2587
+ #: defaults.php:3216
2588
  msgid "Added the new site %SiteName% to the network."
2589
  msgstr ""
2590
 
2591
+ #: defaults.php:3218, defaults.php:3230, defaults.php:3242, defaults.php:3254, defaults.php:3266, defaults.php:3278
2592
  msgid "URL"
2593
  msgstr ""
2594
 
2595
+ #: defaults.php:3227
2596
  msgid "Existing site archived"
2597
  msgstr ""
2598
 
2599
+ #: defaults.php:3228
2600
  msgid "Archived the site %SiteName% on the network."
2601
  msgstr ""
2602
 
2603
+ #: defaults.php:3239
2604
  msgid "Archived site has been unarchived"
2605
  msgstr ""
2606
 
2607
+ #: defaults.php:3240
2608
  msgid "Unarchived the site %SiteName%."
2609
  msgstr ""
2610
 
2611
+ #: defaults.php:3251
2612
  msgid "Deactivated site has been activated"
2613
  msgstr ""
2614
 
2615
+ #: defaults.php:3252
2616
  msgid "Activated the site %SiteName% on the network."
2617
  msgstr ""
2618
 
2619
+ #: defaults.php:3263
2620
  msgid "Site has been deactivated"
2621
  msgstr ""
2622
 
2623
+ #: defaults.php:3264
2624
  msgid "Deactiveated the site %SiteName% on the network."
2625
  msgstr ""
2626
 
2627
+ #: defaults.php:3275
2628
  msgid "Existing site deleted from network"
2629
  msgstr ""
2630
 
2631
+ #: defaults.php:3276
2632
  msgid "The site: %SiteName%."
2633
  msgstr ""
2634
 
2635
+ #: defaults.php:3287
2636
  msgid "Allow site administrators to add new users to their sites settings changed"
2637
  msgstr ""
2638
 
2639
+ #: defaults.php:3288
2640
  msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
2641
  msgstr ""
2642
 
2643
+ #: defaults.php:3297
2644
  msgid "Site upload space settings changed"
2645
  msgstr ""
2646
 
2647
+ #: defaults.php:3298
2648
  msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
2649
  msgstr ""
2650
 
2651
+ #: defaults.php:3307
2652
  msgid "Site upload space file size settings changed"
2653
  msgstr ""
2654
 
2655
+ #: defaults.php:3308
2656
  msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
2657
  msgstr ""
2658
 
2659
+ #: defaults.php:3310
2660
  msgid "Previous size (MB)"
2661
  msgstr ""
2662
 
2663
+ #: defaults.php:3319
2664
  msgid "Site Upload file types settings changed"
2665
  msgstr ""
2666
 
2667
+ #: defaults.php:3320
2668
  msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
2669
  msgstr ""
2670
 
2671
+ #: defaults.php:3332
2672
  msgid "Site Max upload file size settings changed"
2673
  msgstr ""
2674
 
2675
+ #: defaults.php:3333
2676
  msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
2677
  msgstr ""
2678
 
2679
+ #: defaults.php:3335
2680
  msgid "Previous size (KB)"
2681
  msgstr ""
2682
 
2683
+ #: defaults.php:3344
2684
  msgid "Allow new registrations settings changed"
2685
  msgstr ""
2686
 
2687
+ #: defaults.php:3345
2688
  msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
2689
  msgstr ""
2690
 
2691
+ #: defaults.php:3361
2692
  msgid "File Changes"
2693
  msgstr ""
2694
 
2695
+ #: defaults.php:3362
2696
  msgid "Monitor File Changes"
2697
  msgstr ""
2698
 
2699
+ #: defaults.php:3366
2700
  msgid "Dummy"
2701
  msgstr ""
2702
 
2703
+ #. translators: User's first name
2704
+ #. translators: User's first name
2705
+ #: wp-security-audit-log.php:938, wp-security-audit-log.php:966
2706
+ msgid "Hey %s"
2707
  msgstr ""
2708
 
2709
+ #: wp-security-audit-log.php:942
2710
  msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
2711
  msgstr ""
2712
 
2713
+ #: wp-security-audit-log.php:943, wp-security-audit-log.php:978
2714
  msgid "Note: "
2715
  msgstr ""
2716
 
2717
+ #: wp-security-audit-log.php:944, wp-security-audit-log.php:979
2718
  msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
2719
  msgstr ""
2720
 
2721
+ #. translators: 1: Plugin name. 2: Plugin name. 2: Freemius link. 4: Plugin name.
2722
+ #: wp-security-audit-log.php:972
2723
+ msgid "Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
 
 
 
 
 
2724
  msgstr ""
2725
 
2726
+ #: wp-security-audit-log.php:1024
 
 
 
 
 
 
 
 
2727
  msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
2728
  msgstr ""
2729
 
2730
+ #: wp-security-audit-log.php:1025
2731
  msgid "Activate the licence key now"
2732
  msgstr ""
2733
 
2734
  #. translators: Number of sites
2735
+ #: wp-security-audit-log.php:1047
2736
  msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
2737
  msgstr ""
2738
 
2739
+ #: wp-security-audit-log.php:1043
2740
  msgid "%s You need to renew your license to continue using premium features."
2741
  msgstr ""
2742
 
2743
+ #: wp-security-audit-log.php:1145
2744
  msgid "Error: You do not have sufficient permissions to disable this custom field."
2745
  msgstr ""
2746
 
2747
  #. translators: name of meta field (in bold)
2748
+ #: wp-security-audit-log.php:1193
2749
  msgid "Custom field %s is no longer being monitored."
2750
  msgstr ""
2751
 
2752
  #. translators: setting tab name "Excluded Objects"
2753
+ #: wp-security-audit-log.php:1198
2754
  msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
2755
  msgstr ""
2756
 
2757
+ #: wp-security-audit-log.php:1199
2758
  msgid "Excluded Objects"
2759
  msgstr ""
2760
 
2761
+ #: wp-security-audit-log.php:1212
2762
  msgid "Error: You do not have sufficient permissions to disable this alert."
2763
  msgstr ""
2764
 
2765
+ #: wp-security-audit-log.php:1236
2766
  msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
2767
  msgstr ""
2768
 
2769
+ #: wp-security-audit-log.php:1236
2770
  msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
2771
  msgstr ""
2772
 
2773
+ #: wp-security-audit-log.php:1261, classes/Views/SetupWizard.php:270
2774
  msgid "Installing, please wait"
2775
  msgstr ""
2776
 
2777
+ #: wp-security-audit-log.php:1262, classes/Views/SetupWizard.php:271
2778
  msgid "Already installed"
2779
  msgstr ""
2780
 
2781
+ #: wp-security-audit-log.php:1263, classes/Utilities/PluginInstallAndActivate.php:108, classes/Views/SetupWizard.php:272, classes/Views/SetupWizard.php:841
2782
  msgid "Extension installed"
2783
  msgstr ""
2784
 
2785
+ #: wp-security-audit-log.php:1264, classes/Views/SetupWizard.php:273
2786
  msgid "Extension activated"
2787
  msgstr ""
2788
 
2789
+ #: wp-security-audit-log.php:1265, classes/Views/SetupWizard.php:274
2790
  msgid "Install failed"
2791
  msgstr ""
2792
 
2793
  #. translators: %s: PHP Version
2794
+ #: wp-security-audit-log.php:1317
2795
  msgid "You are using a version of PHP that is older than %s, which is no longer supported."
2796
  msgstr ""
2797
 
2798
+ #: wp-security-audit-log.php:1319
2799
  msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
2800
  msgstr ""
2801
 
2802
  #. translators: %s: Activity Log for MainWP plugin hyperlink
2803
+ #: wp-security-audit-log.php:1324
2804
  msgid "Please install the %s plugin on the MainWP dashboard."
2805
  msgstr ""
2806
 
2807
+ #: wp-security-audit-log.php:1324
2808
  msgid "Activity Log for MainWP"
2809
  msgstr ""
2810
 
2811
  #. translators: %s: Getting started guide hyperlink
2812
+ #: wp-security-audit-log.php:1326
2813
  msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
2814
  msgstr ""
2815
 
2816
+ #: wp-security-audit-log.php:1326
2817
  msgid "getting started guide"
2818
  msgstr ""
2819
 
2820
+ #: wp-security-audit-log.php:1808
2821
  msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
2822
  msgstr ""
2823
 
2824
+ #: wp-security-audit-log.php:1827
2825
  msgid "Every 6 hours"
2826
  msgstr ""
2827
 
2828
+ #: wp-security-audit-log.php:1831
2829
  msgid "Every 45 minutes"
2830
  msgstr ""
2831
 
2832
+ #: wp-security-audit-log.php:1835
2833
  msgid "Every 30 minutes"
2834
  msgstr ""
2835
 
2836
+ #: wp-security-audit-log.php:1839
2837
  msgid "Every 15 minutes"
2838
  msgstr ""
2839
 
2840
+ #: wp-security-audit-log.php:1843
2841
  msgid "Every 10 minutes"
2842
  msgstr ""
2843
 
2844
+ #: wp-security-audit-log.php:1847
2845
  msgid "Every 1 minute"
2846
  msgstr ""
2847
 
2848
  #. translators: 1. Deprecated method name 2. Version since deprecated
2849
+ #: wp-security-audit-log.php:1861
2850
  msgid "Method %1$s is deprecated since version %2$s!"
2851
  msgstr ""
2852
 
2893
  msgid "Contact us"
2894
  msgstr ""
2895
 
2896
+ #: classes/AlertManager.php:1072
2897
  msgid "Database"
2898
  msgstr ""
2899
 
2900
+ #: classes/AlertManager.php:1074, classes/AlertManager.php:1078
2901
  msgid "File"
2902
  msgstr ""
2903
 
2904
+ #: classes/AlertManager.php:1075
2905
  msgid "Tag"
2906
  msgstr ""
2907
 
2908
+ #: classes/AlertManager.php:1076
2909
  msgid "Comment"
2910
  msgstr ""
2911
 
2912
+ #: classes/AlertManager.php:1077
2913
  msgid "Setting"
2914
  msgstr ""
2915
 
2916
+ #: classes/AlertManager.php:1079
2917
  msgid "System Setting"
2918
  msgstr ""
2919
 
2920
+ #: classes/AlertManager.php:1080
2921
  msgid "MainWP Network"
2922
  msgstr ""
2923
 
2924
+ #: classes/AlertManager.php:1081
2925
  msgid "MainWP"
2926
  msgstr ""
2927
 
2928
+ #: classes/AlertManager.php:1082
2929
  msgid "Category"
2930
  msgstr ""
2931
 
2932
+ #: classes/AlertManager.php:1083
2933
  msgid "Custom Field"
2934
  msgstr ""
2935
 
2936
+ #: classes/AlertManager.php:1084
2937
  msgid "Widget"
2938
  msgstr ""
2939
 
2940
+ #: classes/AlertManager.php:1085
2941
  msgid "Menu"
2942
  msgstr ""
2943
 
2944
+ #: classes/AlertManager.php:1086
2945
  msgid "Theme"
2946
  msgstr ""
2947
 
2948
+ #: classes/AlertManager.php:1087
2949
  msgid "Activity log"
2950
  msgstr ""
2951
 
2952
+ #: classes/AlertManager.php:1088
2953
+ msgid "WP Activity Log"
2954
+ msgstr ""
2955
+
2956
+ #: classes/AlertManager.php:1089
2957
  msgid "Multisite Network"
2958
  msgstr ""
2959
 
2960
+ #: classes/AlertManager.php:1090, extensions/email-notifications/classes/Common.php:1140, extensions/search/classes/Filters/IpFilter.php:88, extensions/user-sessions/classes/View/Sessions.php:325
2961
  msgid "IP Address"
2962
  msgstr ""
2963
 
2964
+ #: classes/AlertManager.php:1106
2965
  msgid "unknown object"
2966
  msgstr ""
2967
 
2968
+ #: classes/AlertManager.php:1143
2969
  msgid "Login"
2970
  msgstr ""
2971
 
2972
+ #: classes/AlertManager.php:1144
2973
  msgid "Logout"
2974
  msgstr ""
2975
 
2976
+ #: classes/AlertManager.php:1145
2977
  msgid "Installed"
2978
  msgstr ""
2979
 
2980
+ #: classes/AlertManager.php:1146
2981
  msgid "Activated"
2982
  msgstr ""
2983
 
2984
+ #: classes/AlertManager.php:1147
2985
  msgid "Deactivated"
2986
  msgstr ""
2987
 
2988
+ #: classes/AlertManager.php:1148
2989
  msgid "Uninstalled"
2990
  msgstr ""
2991
 
2992
+ #: classes/AlertManager.php:1149
2993
  msgid "Updated"
2994
  msgstr ""
2995
 
2996
+ #: classes/AlertManager.php:1150, extensions/user-sessions/classes/View/Sessions.php:161
2997
  msgid "Created"
2998
  msgstr ""
2999
 
3000
+ #: classes/AlertManager.php:1151
3001
  msgid "Modified"
3002
  msgstr ""
3003
 
3004
+ #: classes/AlertManager.php:1152, extensions/search/search-init.php:300
3005
  msgid "Deleted"
3006
  msgstr ""
3007
 
3008
+ #: classes/AlertManager.php:1153, extensions/reports/classes/CsvReportGenerator.php:273, extensions/reports/classes/HtmlReportGenerator.php:449
3009
  msgid "Published"
3010
  msgstr ""
3011
 
3012
+ #: classes/AlertManager.php:1154
3013
  msgid "Approved"
3014
  msgstr ""
3015
 
3016
+ #: classes/AlertManager.php:1155
3017
  msgid "Unapproved"
3018
  msgstr ""
3019
 
3020
+ #: classes/AlertManager.php:1156, extensions/external-db/classes/Mirroring.php:162
3021
  msgid "Enabled"
3022
  msgstr ""
3023
 
3024
+ #: classes/AlertManager.php:1157, extensions/email-notifications/classes/Notifications.php:1894, extensions/external-db/classes/Mirroring.php:164
3025
  msgid "Disabled"
3026
  msgstr ""
3027
 
3028
+ #: classes/AlertManager.php:1158
3029
  msgid "Added"
3030
  msgstr ""
3031
 
3032
+ #: classes/AlertManager.php:1159
3033
  msgid "Failed Login"
3034
  msgstr ""
3035
 
3036
+ #: classes/AlertManager.php:1160
3037
  msgid "Blocked"
3038
  msgstr ""
3039
 
3040
+ #: classes/AlertManager.php:1161
3041
  msgid "Uploaded"
3042
  msgstr ""
3043
 
3044
+ #: classes/AlertManager.php:1162
3045
  msgid "Restored"
3046
  msgstr ""
3047
 
3048
+ #: classes/AlertManager.php:1163
3049
  msgid "Opened"
3050
  msgstr ""
3051
 
3052
+ #: classes/AlertManager.php:1164
3053
  msgid "Viewed"
3054
  msgstr ""
3055
 
3056
+ #: classes/AlertManager.php:1165
3057
  msgid "Started"
3058
  msgstr ""
3059
 
3060
+ #: classes/AlertManager.php:1166, extensions/external-db/classes/Settings.php:565
3061
  msgid "Stopped"
3062
  msgstr ""
3063
 
3064
+ #: classes/AlertManager.php:1167
3065
  msgid "Removed"
3066
  msgstr ""
3067
 
3068
+ #: classes/AlertManager.php:1168
3069
  msgid "Unblocked"
3070
  msgstr ""
3071
 
3072
+ #: classes/AlertManager.php:1169
3073
  msgid "Renamed"
3074
  msgstr ""
3075
 
3076
+ #: classes/AlertManager.php:1170
3077
  msgid "Duplicated"
3078
  msgstr ""
3079
 
3080
+ #: classes/AlertManager.php:1171
3081
  msgid "Submitted"
3082
  msgstr ""
3083
 
3084
+ #: classes/AlertManager.php:1172
3085
  msgid "Revoked"
3086
  msgstr ""
3087
 
3088
+ #: classes/AlertManager.php:1189
3089
  msgid "unknown type"
3090
  msgstr ""
3091
 
3092
+ #: classes/AlertManager.php:1722, classes/ConstantManager.php:147
3093
  msgid "Unknown error code."
3094
  msgstr ""
3095
 
3096
+ #: classes/AlertManager.php:1741, classes/AlertManager.php:1729, extensions/reports/classes/Common.php:1161, extensions/reports/classes/Common.php:1151
3097
  msgid "Unknown Site"
3098
  msgstr ""
3099
 
3125
  msgid "All Sites"
3126
  msgstr ""
3127
 
3128
+ #: classes/AuditLogGridView.php:272, classes/AuditLogGridView.php:298, classes/AuditLogListView.php:270, classes/AuditLogListView.php:300, classes/Views/Settings.php:1082, classes/Views/ToggleAlerts.php:299, extensions/search/classes/Filters/CodeFilter.php:43, extensions/search/classes/Filters/CodeFilter.php:69
3129
  msgid "Severity"
3130
  msgstr ""
3131
 
3133
  msgid "Info"
3134
  msgstr ""
3135
 
3136
+ #: classes/AuditLogGridView.php:278, classes/AuditLogListView.php:280, classes/AuditLogListView.php:312, extensions/email-notifications/classes/Common.php:1138, extensions/email-notifications/classes/Common.php:1199, extensions/search/classes/Filters/SiteFilter.php:29
3137
  msgid "Site"
3138
  msgstr ""
3139
 
3140
+ #: classes/AuditLogGridView.php:281, classes/AuditLogGridView.php:304, classes/AuditLogListView.php:283, classes/AuditLogListView.php:321, extensions/email-notifications/classes/Common.php:1143, extensions/email-notifications/classes/Common.php:1173, extensions/reports/classes/CsvReportGenerator.php:86, extensions/reports/classes/HtmlReportGenerator.php:250
3141
  msgid "Message"
3142
  msgstr ""
3143
 
3153
  msgid "Message:"
3154
  msgstr ""
3155
 
3156
+ #: classes/AuditLogGridView.php:401, classes/AuditLogGridView.php:405, classes/AuditLogGridView.php:431, classes/AuditLogListView.php:413, classes/AuditLogListView.php:440
3157
  msgid "Unknown"
3158
  msgstr ""
3159
 
3160
+ #: classes/AuditLogGridView.php:440, classes/AuditLogListView.php:447
3161
  msgid "Unregistered user"
3162
  msgstr ""
3163
 
3164
+ #: classes/AuditLogGridView.php:477, classes/AuditLogGridView.php:490, classes/AuditLogListView.php:480, classes/AuditLogListView.php:493
 
 
 
 
3165
  msgid "Show me all activity originating from this IP Address"
3166
  msgstr ""
3167
 
3168
+ #: classes/AuditLogGridView.php:547, classes/AuditLogListView.php:525
3169
  msgid "View all details of this change"
3170
  msgstr ""
3171
 
3172
+ #: classes/AuditLogGridView.php:548, classes/AuditLogListView.php:526
3173
  msgid "Alert Data Inspector"
3174
  msgstr ""
3175
 
3181
  msgid "IP"
3182
  msgstr ""
3183
 
3184
+ #: classes/AuditLogListView.php:274, classes/AuditLogListView.php:315, classes/WidgetManager.php:77, extensions/email-notifications/classes/Common.php:1111, extensions/search/classes/Filters/ObjectFilter.php:29, extensions/search/classes/Filters/ObjectFilter.php:53
3185
  msgid "Object"
3186
  msgstr ""
3187
 
3188
+ #: classes/AuditLogListView.php:275, classes/AuditLogListView.php:318, classes/WidgetManager.php:78, extensions/email-notifications/classes/Common.php:1055, extensions/email-notifications/classes/Common.php:1112, extensions/reports/classes/CsvReportGenerator.php:85, extensions/reports/classes/HtmlReportGenerator.php:249, extensions/search/classes/Filters/EventTypeFilter.php:29, extensions/search/classes/Filters/EventTypeFilter.php:53
3189
  msgid "Event Type"
3190
  msgstr ""
3191
 
3281
  msgid "Description"
3282
  msgstr ""
3283
 
3284
+ #: classes/WidgetManager.php:71, extensions/logs-management/logs-management.php:273
3285
  msgid "No events found."
3286
  msgstr ""
3287
 
3299
  msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
3300
  msgstr ""
3301
 
3302
+ #: classes/Sensors/Content.php:735
3303
  msgid "Default template"
3304
  msgstr ""
3305
 
3306
+ #: classes/Sensors/Content.php:736, extensions/external-db/classes/ExternalStorageTab.php:235
3307
  msgid "Default"
3308
  msgstr ""
3309
 
3310
+ #: classes/Sensors/Content.php:778
3311
  msgid "No previous image"
3312
  msgstr ""
3313
 
3314
+ #: classes/Sensors/Content.php:779
3315
  msgid "No image"
3316
  msgstr ""
3317
 
3318
+ #: classes/Sensors/Content.php:1137, classes/Sensors/Content.php:1145
3319
  msgid "Public"
3320
  msgstr ""
3321
 
3322
+ #: classes/Sensors/Content.php:1135, classes/Sensors/Content.php:1143
3323
  msgid "Private"
3324
  msgstr ""
3325
 
3326
+ #: classes/Sensors/Content.php:1133, classes/Sensors/Content.php:1141
3327
  msgid "Password Protected"
3328
  msgstr ""
3329
 
3330
+ #: classes/Sensors/Content.php:1308
3331
  msgid "no tags"
3332
  msgstr ""
3333
 
3347
  msgid "sites & users can be registered"
3348
  msgstr ""
3349
 
3350
+ #: classes/Sensors/System.php:200, classes/Sensors/System.php:201
3351
  msgid "latest posts"
3352
  msgstr ""
3353
 
3354
+ #: classes/Sensors/System.php:200, classes/Sensors/System.php:201
3355
  msgid "static page"
3356
  msgstr ""
3357
 
3358
+ #: classes/Sensors/System.php:380
3359
  msgid "automatically update to all new versions of WordPress"
3360
  msgstr ""
3361
 
3362
+ #: classes/Sensors/System.php:380
3363
  msgid "automatically update maintenance and security releases only"
3364
  msgstr ""
3365
 
3385
  msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
3386
  msgstr ""
3387
 
3388
+ #: classes/Utilities/PluginInstallAndActivate.php:101, classes/Views/SetupWizard.php:834
3389
  msgid "Extension for "
3390
  msgstr ""
3391
 
3392
+ #: classes/Utilities/PluginInstallAndActivate.php:110, classes/Views/SetupWizard.php:843
3393
  msgid "Install Extension"
3394
  msgstr ""
3395
 
3396
+ #: classes/Utilities/PluginInstallAndActivate.php:106, classes/Views/SetupWizard.php:839
3397
  msgid "Extension installed, activate now?"
3398
  msgstr ""
3399
 
3401
  msgid "Tried to install a zip or slug that was not in the allowed list"
3402
  msgstr ""
3403
 
3404
+ #: classes/Utilities/UserUtils.php:89
3405
+ msgid "Username: "
3406
+ msgstr ""
3407
+
3408
+ #: classes/Utilities/UserUtils.php:90
3409
+ msgid "First name: "
3410
+ msgstr ""
3411
+
3412
+ #: classes/Utilities/UserUtils.php:91
3413
+ msgid "Last Name: "
3414
+ msgstr ""
3415
+
3416
+ #: classes/Utilities/UserUtils.php:92
3417
+ msgid "Email: "
3418
+ msgstr ""
3419
+
3420
+ #: classes/Utilities/UserUtils.php:93
3421
+ msgid "Nickname: "
3422
+ msgstr ""
3423
+
3424
  #: classes/Views/AuditLog.php:98
3425
  msgid "Get instantly alerted of critical changes via SMS & email, search the activity log, generate user reports, see who is logged in and more!"
3426
  msgstr ""
3470
  msgstr ""
3471
 
3472
  #: classes/Views/AuditLog.php:213
3473
+ msgid "You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data."
3474
  msgstr ""
3475
 
3476
  #: classes/Views/AuditLog.php:213
3477
+ msgid "Read more about what data we collect and how."
3478
  msgstr ""
3479
 
3480
  #: classes/Views/AuditLog.php:215
3497
  msgid "Install extension"
3498
  msgstr ""
3499
 
3500
+ #: classes/Views/AuditLog.php:320
3501
  msgid "Activity Log Viewer"
3502
  msgstr ""
3503
 
3505
  msgid "Log Viewer"
3506
  msgstr ""
3507
 
3508
+ #: classes/Views/AuditLog.php:504, classes/Views/Settings.php:324, classes/Views/ToggleAlerts.php:109, extensions/email-notifications/classes/AddNotification.php:224, extensions/email-notifications/classes/AddNotification.php:257, extensions/email-notifications/classes/EditNotification.php:226, extensions/email-notifications/classes/EditNotification.php:234, extensions/email-notifications/classes/EditNotification.php:230, extensions/email-notifications/classes/EditNotification.php:239, extensions/email-notifications/classes/EditNotification.php:267, extensions/external-db/classes/Settings.php:234
3509
  msgid "You do not have sufficient permissions to access this page."
3510
  msgstr ""
3511
 
3513
  msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
3514
  msgstr ""
3515
 
3516
+ #: classes/Views/AuditLog.php:555, classes/Views/Settings.php:532, classes/Views/Settings.php:559, classes/Views/Settings.php:625, classes/Views/Settings.php:683, classes/Views/Settings.php:1118, classes/Views/Settings.php:1402, classes/Views/Settings.php:1443, classes/Views/Settings.php:1474, classes/Views/SetupWizard.php:562
3517
  msgid "Yes"
3518
  msgstr ""
3519
 
3520
+ #: classes/Views/AuditLog.php:556, classes/Views/Settings.php:537, classes/Views/Settings.php:564, classes/Views/Settings.php:655, classes/Views/Settings.php:693, classes/Views/Settings.php:1123, classes/Views/Settings.php:1409, classes/Views/Settings.php:1450, classes/Views/Settings.php:1475, classes/Views/SetupWizard.php:567
3521
  msgid "No"
3522
  msgstr ""
3523
 
3529
  msgid "No Results"
3530
  msgstr ""
3531
 
3532
+ #: classes/Views/AuditLog.php:726, classes/Views/AuditLog.php:769, classes/Views/AuditLog.php:1047, classes/Views/AuditLog.php:1109, classes/Views/AuditLog.php:1162, classes/Views/Settings.php:239, classes/Views/Settings.php:1759, classes/Views/SetupWizard.php:96, extensions/search/search-init.php:398, extensions/search/search-init.php:446, extensions/email-notifications/classes/Notifications.php:559, extensions/external-db/classes/Connections.php:862, extensions/external-db/classes/Connections.php:887, extensions/external-db/classes/Connections.php:1018, extensions/external-db/classes/Mirroring.php:763, extensions/external-db/classes/Mirroring.php:818, extensions/external-db/classes/Settings.php:657, extensions/external-db/classes/Settings.php:833, extensions/external-db/classes/Settings.php:853, extensions/user-sessions/classes/Views.php:525, extensions/reports/classes/Views/Main.php:739
3533
  msgid "Nonce verification failed."
3534
  msgstr ""
3535
 
3639
  msgstr ""
3640
 
3641
  #: classes/Views/ExternalDB.php:35
3642
+ msgid "Integrations &#8682;"
3643
  msgstr ""
3644
 
3645
  #: classes/Views/ExternalDB.php:49
3678
  msgid "Configure an unlimited number of connections to different databases and third party services."
3679
  msgstr ""
3680
 
3681
+ #: classes/Views/Help.php:62, classes/Views/Help.php:113, extensions/settings-import-export/settings-import-export.php:70
3682
  msgid "Help"
3683
  msgstr ""
3684
 
3685
+ #: classes/Views/Help.php:71, classes/Views/Help.php:242, extensions/settings-import-export/settings-import-export.php:59, extensions/settings-import-export/settings-import-export.php:80
3686
  msgid "Contact Us"
3687
  msgstr ""
3688
 
3938
  msgid "Save search terms and filters to run the searches again in the future with just a single click."
3939
  msgstr ""
3940
 
3941
+ #: classes/Views/Settings.php:89
3942
  msgid "General"
3943
  msgstr ""
3944
 
3945
+ #: classes/Views/Settings.php:96
3946
+ msgid "Activity log viewer"
3947
+ msgstr ""
3948
+
3949
+ #: classes/Views/Settings.php:103
3950
+ msgid "File changes"
3951
+ msgstr ""
3952
+
3953
+ #: classes/Views/Settings.php:109
3954
+ msgid "Exclude objects"
3955
  msgstr ""
3956
 
3957
+ #: classes/Views/Settings.php:116
3958
+ msgid "Advanced settings"
3959
  msgstr ""
3960
 
3961
+ #: classes/Views/Settings.php:165, classes/Views/Settings.php:179, extensions/email-notifications/classes/SMSProviderSettings.php:143
3962
  msgid "Settings"
3963
  msgstr ""
3964
 
3965
+ #: classes/Views/Settings.php:206
3966
  msgid "Current user is not allowed to save settings."
3967
  msgstr ""
3968
 
3969
+ #: classes/Views/Settings.php:212
3970
  msgid "Unknown settings tab."
3971
  msgstr ""
3972
 
3973
+ #: classes/Views/Settings.php:224, classes/Views/Settings.php:1769, classes/Views/Settings.php:1792, classes/Views/SetupWizard.php:83, extensions/email-notifications/classes/Notifications.php:158, extensions/external-db/classes/Connections.php:847, extensions/external-db/classes/Connections.php:878, extensions/external-db/classes/Connections.php:901, extensions/external-db/classes/Connections.php:1014, extensions/external-db/classes/Mirroring.php:716, extensions/external-db/classes/Mirroring.php:782, extensions/external-db/classes/Settings.php:644, extensions/external-db/classes/Settings.php:817, extensions/external-db/classes/Settings.php:848
3974
  msgid "Access Denied."
3975
  msgstr ""
3976
 
3977
+ #: classes/Views/Settings.php:249, classes/Views/SetupWizard.php:106
3978
  msgid "Invalid input."
3979
  msgstr ""
3980
 
3981
+ #: classes/Views/Settings.php:340, classes/Views/ToggleAlerts.php:126, extensions/external-db/classes/Settings.php:247
3982
  msgid "Settings have been saved."
3983
  msgstr ""
3984
 
3985
+ #: classes/Views/Settings.php:336
3986
  msgid "Message sent successfully."
3987
  msgstr ""
3988
 
3989
+ #: classes/Views/Settings.php:346, classes/Views/ToggleAlerts.php:132, extensions/external-db/classes/Settings.php:252, extensions/user-sessions/classes/View/Sessions.php:146
3990
  msgid "Error: "
3991
  msgstr ""
3992
 
3993
+ #: classes/Views/Settings.php:364
3994
  msgid "No data is old enough to be purged."
3995
  msgstr ""
3996
 
3997
+ #: classes/Views/Settings.php:358
3998
  msgid "Old data successfully purged."
3999
  msgstr ""
4000
 
4001
+ #: classes/Views/Settings.php:395
4002
  msgid "Send Message"
4003
  msgstr ""
4004
 
4005
+ #: classes/Views/Settings.php:405
4006
+ msgid "Do you want to remove all data when the plugin is deleted?"
4007
+ msgstr ""
4008
+
4009
+ #: classes/Views/Settings.php:453
4010
  msgid "Use infinite scroll or pagination for the event viewer?"
4011
  msgstr ""
4012
 
4013
  #. translators: Learn more link.
4014
+ #: classes/Views/Settings.php:458
4015
  msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
4016
  msgstr ""
4017
 
4018
+ #: classes/Views/Settings.php:459
4019
  msgid "(Premium feature)"
4020
  msgstr ""
4021
 
4022
+ #: classes/Views/Settings.php:466
4023
  msgid "Select event viewer view type:"
4024
  msgstr ""
4025
 
4026
+ #: classes/Views/Settings.php:471
4027
  msgid "Infinite Scroll (Recommended)"
4028
  msgstr ""
4029
 
4030
+ #: classes/Views/Settings.php:476
4031
  msgid "Pagination"
4032
  msgstr ""
4033
 
4034
+ #: classes/Views/Settings.php:487
4035
  msgid "Do you want the activity log viewer to auto refresh?"
4036
  msgstr ""
4037
 
4038
+ #: classes/Views/Settings.php:488
4039
  msgid "The activity log viewer auto refreshes every 30 seconds when opened so you can see the latest events as they happen almost in real time."
4040
  msgstr ""
4041
 
4042
+ #: classes/Views/Settings.php:492
4043
  msgid "Refresh activity log viewer"
4044
  msgstr ""
4045
 
4046
+ #: classes/Views/Settings.php:498
4047
  msgid "Auto refresh"
4048
  msgstr ""
4049
 
4050
+ #: classes/Views/Settings.php:503
4051
  msgid "Do not auto refresh"
4052
  msgstr ""
4053
 
4054
+ #: classes/Views/Settings.php:513
4055
  msgid "Display latest events widget in Dashboard & Admin bar"
4056
  msgstr ""
4057
 
4058
  #. translators: Max number of dashboard widget alerts.
4059
+ #: classes/Views/Settings.php:518
4060
  msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
4061
  msgstr ""
4062
 
4063
+ #: classes/Views/Settings.php:526
4064
  msgid "Dashboard Widget"
4065
  msgstr ""
4066
 
4067
+ #: classes/Views/Settings.php:547
4068
  msgid "Admin Bar Notification"
4069
  msgstr ""
4070
 
4071
+ #: classes/Views/Settings.php:550
4072
  msgid "Admin Bar Notification (Premium)"
4073
  msgstr ""
4074
 
4075
+ #: classes/Views/Settings.php:574
4076
  msgid "Admin Bar Notification Updates"
4077
  msgstr ""
4078
 
4079
+ #: classes/Views/Settings.php:577
4080
  msgid "Admin Bar Notification Updates (Premium)"
4081
  msgstr ""
4082
 
4083
+ #: classes/Views/Settings.php:586
4084
  msgid "Update in near real time"
4085
  msgstr ""
4086
 
4087
+ #: classes/Views/Settings.php:591
4088
  msgid "Update only on page refreshes"
4089
  msgstr ""
4090
 
4091
+ #: classes/Views/Settings.php:601
4092
  msgid "Add user notification on the WordPress login page"
4093
  msgstr ""
4094
 
4095
+ #: classes/Views/Settings.php:602
4096
  msgid "Many compliance regulations (such as the GDPR) require website administrators to tell the users of their website that all the changes they do when logged in are being logged."
4097
  msgstr ""
4098
 
4099
+ #: classes/Views/Settings.php:606
4100
  msgid "Login Page Notification"
4101
  msgstr ""
4102
 
4103
+ #: classes/Views/Settings.php:631
4104
  msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
4105
  msgstr ""
4106
 
4107
+ #: classes/Views/Settings.php:649
4108
  msgid "<strong>Note: </strong>"
4109
  msgstr ""
4110
 
4111
+ #: classes/Views/Settings.php:649
4112
  msgid "The only HTML code allowed in the login page notification is for links ( < a href >< /a > )."
4113
  msgstr ""
4114
 
4115
+ #: classes/Views/Settings.php:665
4116
  msgid "Is your website running behind a firewall or reverse proxy?"
4117
  msgstr ""
4118
 
4119
  #. translators: Learn more link.
4120
+ #: classes/Views/Settings.php:670
4121
  msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
4122
  msgstr ""
4123
 
4124
+ #: classes/Views/Settings.php:671, classes/Views/Settings.php:717, classes/Views/Settings.php:772
4125
  msgid "learn more"
4126
  msgstr ""
4127
 
4128
+ #: classes/Views/Settings.php:678
4129
  msgid "Reverse Proxy / Firewall Options"
4130
  msgstr ""
4131
 
4132
+ #: classes/Views/Settings.php:688
4133
  msgid "Filter internal IP addresses from the proxy headers. Enable this option only if you are are still seeing the internal IP addresses of the firewall or proxy."
4134
  msgstr ""
4135
 
4136
+ #: classes/Views/Settings.php:704
4137
  msgid "Who can change the plugin settings?"
4138
  msgstr ""
4139
 
4140
  #. translators: Learn more link.
4141
+ #: classes/Views/Settings.php:716
4142
  msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
4143
  msgstr ""
4144
 
4145
+ #: classes/Views/Settings.php:727
4146
  msgid "Restrict plugin access"
4147
  msgstr ""
4148
 
4149
+ #: classes/Views/Settings.php:732, classes/Views/Settings.php:787
4150
  msgid "Only me"
4151
  msgstr ""
4152
 
4153
+ #: classes/Views/Settings.php:741
4154
  msgid "All administrators"
4155
  msgstr ""
4156
 
4157
+ #: classes/Views/Settings.php:739
4158
  msgid "All superadmins"
4159
  msgstr ""
4160
 
4161
+ #: classes/Views/Settings.php:754
4162
  msgid "Allow other users to view the activity log"
4163
  msgstr ""
4164
 
4165
+ #: classes/Views/Settings.php:768
4166
  msgid "By default only users with administrator role can view the WordPress activity log. To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4167
  msgstr ""
4168
 
4169
+ #: classes/Views/Settings.php:766
4170
  msgid "By default only super administrators and the child sites' administrators can view the WordPress activity log. Though you can change this by using the setting below."
4171
  msgstr ""
4172
 
4173
+ #: classes/Views/Settings.php:781, classes/Views/Settings.php:811
4174
  msgid "Can view events"
4175
  msgstr ""
4176
 
4177
+ #: classes/Views/Settings.php:788
4178
  msgid "Super administators only"
4179
  msgstr ""
4180
 
4181
+ #: classes/Views/Settings.php:789
4182
  msgid "Super administators and site administrators"
4183
  msgstr ""
4184
 
4185
+ #: classes/Views/Settings.php:805
4186
  msgid "To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4187
  msgstr ""
4188
 
4189
+ #: classes/Views/Settings.php:811
4190
  msgid "Can also view events"
4191
  msgstr ""
4192
 
4193
+ #: classes/Views/Settings.php:817, classes/Views/Settings.php:1210, classes/Views/Settings.php:1231, classes/Views/Settings.php:1252, classes/Views/Settings.php:1274, classes/Views/Settings.php:1321
4194
  msgid "Add"
4195
  msgstr ""
4196
 
4197
+ #: classes/Views/Settings.php:820
4198
  msgid "Specify the username or the users which do not have an admin role but can also see the WordPress activity role. You can also specify roles."
4199
  msgstr ""
4200
 
4201
+ #: classes/Views/Settings.php:834, classes/Views/Settings.php:1217, classes/Views/Settings.php:1238, classes/Views/Settings.php:1259, classes/Views/Settings.php:1281, classes/Views/Settings.php:1329, classes/Views/Settings.php:1583, extensions/search/search-init.php:303, extensions/search/classes/FilterManager.php:387
4202
  msgid "Remove"
4203
  msgstr ""
4204
 
4205
+ #: classes/Views/Settings.php:846
4206
  msgid "Which email address should the plugin use as a from address?"
4207
  msgstr ""
4208
 
4209
+ #: classes/Views/Settings.php:847
4210
  msgid "By default when the plugin sends an email notification it uses the email address specified in this website’s general settings. Though you can change the email address and display name from this section."
4211
  msgstr ""
4212
 
4213
+ #: classes/Views/Settings.php:851
4214
  msgid "From Email & Name"
4215
  msgstr ""
4216
 
4217
+ #: classes/Views/Settings.php:857
4218
  msgid "Use the email address from the WordPress general settings"
4219
  msgstr ""
4220
 
4221
+ #: classes/Views/Settings.php:862
4222
  msgid "Use another email address"
4223
  msgstr ""
4224
 
4225
+ #: classes/Views/Settings.php:866
4226
  msgid "Email Address"
4227
  msgstr ""
4228
 
4229
+ #: classes/Views/Settings.php:871
4230
  msgid "Display Name"
4231
  msgstr ""
4232
 
4233
+ #: classes/Views/Settings.php:882
4234
  msgid "Do you want to hide the plugin from the list of installed plugins?"
4235
  msgstr ""
4236
 
4237
+ #: classes/Views/Settings.php:883
4238
  msgid "By default all installed plugins are listed in the plugins page. Set this option to Yes remove WP Activity Log from the list of installed plugins for users who are unable to access the WP Activity Log settings."
4239
  msgstr ""
4240
 
4241
+ #: classes/Views/Settings.php:887
4242
  msgid "Hide Plugin in Plugins Page"
4243
  msgstr ""
4244
 
4245
+ #: classes/Views/Settings.php:892
4246
  msgid "Yes, hide the plugin and any WP Activity Log plugin extensions from the list of installed plugins"
4247
  msgstr ""
4248
 
4249
+ #: classes/Views/Settings.php:897
4250
  msgid "No, do not hide the plugin"
4251
  msgstr ""
4252
 
4253
+ #: classes/Views/Settings.php:963
4254
  msgid "For how long do you want to keep the activity log events (Retention settings) ?"
4255
  msgstr ""
4256
 
4257
+ #: classes/Views/Settings.php:966
4258
  msgid "The plugin uses an efficient way to store the activity log data in the WordPress database, though the more data you keep the more disk space will be required. "
4259
  msgstr ""
4260
 
4261
+ #: classes/Views/Settings.php:967
4262
  msgid "<a href=\"https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">Upgrade to Premium</a> to store the activity log data in an external database."
4263
  msgstr ""
4264
 
4265
+ #: classes/Views/Settings.php:980
4266
  msgid "What timestamp you would like to see in the WordPress activity log?"
4267
  msgstr ""
4268
 
4269
+ #: classes/Views/Settings.php:981
4270
  msgid "Note that the WordPress' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference."
4271
  msgstr ""
4272
 
4273
+ #: classes/Views/Settings.php:985
4274
  msgid "Events Timestamp"
4275
  msgstr ""
4276
 
4277
+ #: classes/Views/Settings.php:1005
4278
  msgid "UTC"
4279
  msgstr ""
4280
 
4281
+ #: classes/Views/Settings.php:1011
4282
  msgid "Timezone configured on this WordPress website"
4283
  msgstr ""
4284
 
4285
+ #: classes/Views/Settings.php:1018
4286
  msgid "Show Milliseconds"
4287
  msgstr ""
4288
 
4289
+ #: classes/Views/Settings.php:1025
4290
  msgid "Show Milliseconds in list view"
4291
  msgstr ""
4292
 
4293
+ #: classes/Views/Settings.php:1035
4294
  msgid "What user information should be displayed in the WordPress activity log?"
4295
  msgstr ""
4296
 
4297
+ #: classes/Views/Settings.php:1036
4298
  msgid "Usernames might not be the same as a user's first and last name so it can be difficult to recognize whose user was that did a change. When there is no first & last name or public display name configured the plugin will revert back to the WordPress username."
4299
  msgstr ""
4300
 
4301
+ #: classes/Views/Settings.php:1040
4302
  msgid "User information in Activity log"
4303
  msgstr ""
4304
 
4305
+ #: classes/Views/Settings.php:1046
4306
  msgid "WordPress username"
4307
  msgstr ""
4308
 
4309
+ #: classes/Views/Settings.php:1051
4310
  msgid "First name & last name"
4311
  msgstr ""
4312
 
4313
+ #: classes/Views/Settings.php:1056
4314
  msgid "Configured public display name"
4315
  msgstr ""
4316
 
4317
+ #: classes/Views/Settings.php:1066
4318
  msgid "Select the columns to be displayed in the WordPress activity log"
4319
  msgstr ""
4320
 
4321
+ #: classes/Views/Settings.php:1067
4322
  msgid "When you deselect a column it won’t be shown in the activity log viewer in both views. The data will still be recorded by the plugin."
4323
  msgstr ""
4324
 
4325
+ #: classes/Views/Settings.php:1071
4326
  msgid "Activity log columns selection"
4327
  msgstr ""
4328
 
4329
+ #: classes/Views/Settings.php:1090
4330
  msgid "Info (used in Grid view mode only)"
4331
  msgstr ""
4332
 
4333
+ #: classes/Views/Settings.php:1088
4334
  msgid "Source IP Address"
4335
  msgstr ""
4336
 
4337
+ #: classes/Views/Settings.php:1084
4338
  msgid "Date & Time"
4339
  msgstr ""
4340
 
4341
+ #: classes/Views/Settings.php:1080, extensions/email-notifications/classes/Common.php:1105, extensions/email-notifications/classes/Common.php:1141, extensions/email-notifications/classes/Common.php:1170, extensions/search/classes/Filters/AlertFilter.php:26, extensions/search/classes/Filters/AlertFilter.php:51
4342
  msgid "Event ID"
4343
  msgstr ""
4344
 
4345
+ #: classes/Views/Settings.php:1106
4346
  msgid "Do you want to keep a log of WordPress background activity?"
4347
  msgstr ""
4348
 
4349
+ #: classes/Views/Settings.php:1108
4350
  msgid "WordPress does a lot of things in the background that you do not necessarily need to know about, such as; deletion of post revisions, deletion of auto saved drafts etc. By default the plugin does not report them since there might be a lot and are irrelevant to the user."
4351
  msgstr ""
4352
 
4353
+ #: classes/Views/Settings.php:1113
4354
  msgid "Enable Events for WordPress Background Activity"
4355
  msgstr ""
4356
 
4357
+ #: classes/Views/Settings.php:1188
4358
  msgid "Configure how often file changes scan run and other settings from the"
4359
  msgstr ""
4360
 
4361
+ #: classes/Views/Settings.php:1188
4362
  msgid "Website File Changes plugin settings"
4363
  msgstr ""
4364
 
4365
+ #: classes/Views/Settings.php:1172, classes/Views/ToggleAlerts.php:522
4366
  msgid "Website File Changes Monitor"
4367
  msgstr ""
4368
 
4369
+ #: classes/Views/Settings.php:1173, classes/Views/ToggleAlerts.php:523
4370
  msgid "To keep a log of file changes please install Website File Changes Monitor, a plugin which is also developed by us."
4371
  msgstr ""
4372
 
4373
+ #: classes/Views/Settings.php:1174, classes/Views/ToggleAlerts.php:524
4374
  msgid "Install plugin now"
4375
  msgstr ""
4376
 
4377
+ #: classes/Views/Settings.php:1174, classes/Views/ToggleAlerts.php:524
4378
  msgid "Learn More"
4379
  msgstr ""
4380
 
4381
+ #: classes/Views/Settings.php:1202
4382
  msgid "By default the plugin keeps a log of all user changes done on your WordPress website. Use the setting below to exclude any objects from the activity log. When an object is excluded from the activity log, any event in which that object is referred will not be logged in the activity log."
4383
  msgstr ""
4384
 
4385
+ #: classes/Views/Settings.php:1206
4386
  msgid "Exclude Users:"
4387
  msgstr ""
4388
 
4389
+ #: classes/Views/Settings.php:1227
4390
  msgid "Exclude Roles:"
4391
  msgstr ""
4392
 
4393
+ #: classes/Views/Settings.php:1248
4394
  msgid "Exclude IP Address(es):"
4395
  msgstr ""
4396
 
4397
+ #: classes/Views/Settings.php:1264
4398
  msgid "You can exclude an individual IP address or a range of IP addresses. To exclude a range use the following format: [first IP]-[last octet of the last IP]. Example: 172.16.180.6-127."
4399
  msgstr ""
4400
 
4401
+ #: classes/Views/Settings.php:1270
4402
  msgid "Exclude Post Type:"
4403
  msgstr ""
4404
 
4405
+ #: classes/Views/Settings.php:1286
4406
  msgid "WordPress has the post and page post types by default though your website might use more post types (custom post types). You can exclude all post types, including the default WordPress ones."
4407
  msgstr ""
4408
 
4409
+ #: classes/Views/Settings.php:1293
4410
  msgid "Exclude custom post fields:"
4411
  msgstr ""
4412
 
4413
+ #: classes/Views/Settings.php:1301
4414
  msgid "Exclude custom user fields:"
4415
  msgstr ""
4416
 
4417
+ #: classes/Views/Settings.php:1334
4418
  msgid "You can use the * wildcard to exclude multiple matching custom fields. For example to exclude all custom fields starting with wp123 enter wp123*"
4419
  msgstr ""
4420
 
4421
+ #: classes/Views/Settings.php:1361
4422
  msgid "These settings are for advanced users."
4423
  msgstr ""
4424
 
4425
+ #: classes/Views/Settings.php:1362
4426
  msgid "If you have any questions <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">contact us</a>."
4427
  msgstr ""
4428
 
4429
+ #: classes/Views/Settings.php:1365
4430
  msgid "Reset plugin settings to default"
4431
  msgstr ""
4432
 
4433
+ #: classes/Views/Settings.php:1366
4434
  msgid "Use this button to <em>factory reset</em> the plugin. This means that all the configured settings will be reset to default and all email notifications, scheduled reports, external database / third party services connections, archiving and mirroring rule will be deleted. NOTE: the activity log data will not be purged. Use the setting below to purge the activity log."
4435
  msgstr ""
4436
 
4437
+ #: classes/Views/Settings.php:1370
4438
  msgid "Reset Settings"
4439
  msgstr ""
4440
 
4441
+ #: classes/Views/Settings.php:1372
4442
  msgid "RESET"
4443
  msgstr ""
4444
 
4445
+ #: classes/Views/Settings.php:1378
4446
  msgid "Purge the WordPress activity log"
4447
  msgstr ""
4448
 
4449
+ #: classes/Views/Settings.php:1379
4450
  msgid "Click the Purge button below to delete all the data from the WordPress activity log and start afresh."
4451
  msgstr ""
4452
 
4453
+ #: classes/Views/Settings.php:1383
4454
  msgid "Purge Activity Log"
4455
  msgstr ""
4456
 
4457
+ #: classes/Views/Settings.php:1385
4458
  msgid "PURGE"
4459
  msgstr ""
4460
 
4461
+ #: classes/Views/Settings.php:1392
4462
  msgid "MainWP Child Site Stealth Mode"
4463
  msgstr ""
4464
 
4465
+ #: classes/Views/Settings.php:1393
4466
  msgid "This option is enabled automatically when the plugin detects the MainWP Child plugin on the site. When this setting is enabled plugin access is restricted to the administrator who installs the plugin, the plugin is not shown in the list of installed plugins and no admin notifications are shown. Disable this option to change the plugin to the default setup."
4467
  msgstr ""
4468
 
4469
+ #: classes/Views/Settings.php:1397
4470
  msgid "Enable MainWP Child Site Stealth Mode"
4471
  msgstr ""
4472
 
4473
+ #: classes/Views/Settings.php:1417
4474
  msgid "Admin blocking plugins support"
4475
  msgstr ""
4476
 
4477
+ #: classes/Views/Settings.php:1422
4478
  msgid "Enable early plugin loading on sites that use admin blocking plugins"
4479
  msgstr ""
4480
 
4481
+ #: classes/Views/Settings.php:1431
4482
  msgid "Do you want to delete the plugin data from the database upon uninstall?"
4483
  msgstr ""
4484
 
4485
+ #: classes/Views/Settings.php:1432
4486
  msgid "The plugin saves the activity log data and settings in the WordPress database. By default upon uninstalling the plugin the data is kept in the database so if it is installed again, you can still access the data. If the data is deleted it is not possible to recover it so you won't be able to access it again even when you reinstall the plugin."
4487
  msgstr ""
4488
 
4489
+ #: classes/Views/Settings.php:1436
4490
  msgid "Remove Data on Uninstall"
4491
  msgstr ""
4492
 
4493
+ #: classes/Views/Settings.php:1461
4494
  msgid "Are you sure you want to reset all the plugin settings to default? This action cannot be undone."
4495
  msgstr ""
4496
 
4497
+ #: classes/Views/Settings.php:1471
4498
  msgid "Are you sure you want to purge all the activity log data?"
4499
  msgstr ""
4500
 
4501
+ #: classes/Views/Settings.php:1495
4502
  msgid "MainWP Child plugin is not active on this website."
4503
  msgstr ""
4504
 
4505
+ #: classes/Views/Settings.php:1576
4506
  msgid "The specified value is not a valid URL!"
4507
  msgstr ""
4508
 
4509
+ #: classes/Views/Settings.php:1577
4510
  msgid "The specified value is not a valid post type!"
4511
  msgstr ""
4512
 
4513
+ #: classes/Views/Settings.php:1578
4514
  msgid "The specified value is not a valid IP address!"
4515
  msgstr ""
4516
 
4517
+ #: classes/Views/Settings.php:1579
4518
  msgid "The specified value is not a user nor a role!"
4519
  msgstr ""
4520
 
4521
+ #: classes/Views/Settings.php:1580
4522
  msgid "Filename cannot be added because it contains invalid characters."
4523
  msgstr ""
4524
 
4525
+ #: classes/Views/Settings.php:1581
4526
  msgid "File extension cannot be added because it contains invalid characters."
4527
  msgstr ""
4528
 
4529
+ #: classes/Views/Settings.php:1582
4530
  msgid "Directory cannot be added because it contains invalid characters."
4531
  msgstr ""
4532
 
4533
+ #: classes/Views/Settings.php:1584
4534
  msgid "Please save any changes before switching tabs."
4535
  msgstr ""
4536
 
4537
+ #: classes/Views/Settings.php:1775, classes/Views/Settings.php:1798, extensions/logs-management/logs-management.php:200, extensions/settings-import-export/settings-import-export.php:186, extensions/settings-import-export/settings-import-export.php:207
4538
  msgid "Nonce Verification Failed."
4539
  msgstr ""
4540
 
4541
+ #: classes/Views/Settings.php:1783
4542
  msgid "Plugin settings have been reset."
4543
  msgstr ""
4544
 
4545
+ #: classes/Views/Settings.php:1809
4546
  msgid "Reset query failed."
4547
  msgstr ""
4548
 
4549
+ #: classes/Views/Settings.php:1807
4550
  msgid "Tables has been reset."
4551
  msgstr ""
4552
 
4553
+ #: classes/Views/Settings.php:1822
4554
  msgid "Activity log retention"
4555
  msgstr ""
4556
 
4557
+ #: classes/Views/Settings.php:1828
4558
  msgid "Keep all data"
4559
  msgstr ""
4560
 
4561
+ #: classes/Views/Settings.php:1844, extensions/external-db/classes/Settings.php:325
4562
+ msgid "Days"
4563
  msgstr ""
4564
 
4565
+ #: classes/Views/Settings.php:1845, extensions/external-db/classes/Settings.php:326
4566
  msgid "Months"
4567
  msgstr ""
4568
 
4569
+ #: classes/Views/Settings.php:1846, extensions/external-db/classes/Settings.php:327
4570
  msgid "Years"
4571
  msgstr ""
4572
 
4573
+ #: classes/Views/Settings.php:1861
4574
+ msgid "Delete events older than"
4575
+ msgstr ""
4576
+
4577
+ #: classes/Views/Settings.php:1879
4578
  msgid "The next scheduled purging of activity log data that is older than "
4579
  msgstr ""
4580
 
4581
+ #: classes/Views/Settings.php:1886
4582
  msgid "You can run the purging process now by clicking the button below."
4583
  msgstr ""
4584
 
4585
+ #: classes/Views/Settings.php:1890
4586
  msgid "Purge Old Data"
4587
  msgstr ""
4588
 
4606
  msgid "Log Retention"
4607
  msgstr ""
4608
 
4609
+ #: classes/Views/SetupWizard.php:202, classes/Views/SetupWizard.php:741, classes/Views/SetupWizard.php:742
4610
  msgid "Finish"
4611
  msgstr ""
4612
 
4663
  msgid "Note: You can change the WordPress logging level from the plugin’s settings anytime."
4664
  msgstr ""
4665
 
4666
+ #: classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:634, classes/Views/SetupWizard.php:635, classes/Views/SetupWizard.php:856, classes/Views/SetupWizard.php:857, extensions/external-db/classes/Connections.php:653, extensions/external-db/classes/Mirroring.php:283, extensions/external-db/classes/Mirroring.php:615
4667
  msgid "Next"
4668
  msgstr ""
4669
 
4735
  msgid "Benefits of keeping a WordPress activity log"
4736
  msgstr ""
4737
 
4738
+ #: classes/Views/SetupWizard.php:733
4739
+ msgid "We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback"
4740
+ msgstr ""
4741
+
4742
+ #: classes/Views/SetupWizard.php:733
4743
+ msgid "please get in touch!"
4744
  msgstr ""
4745
 
4746
+ #: classes/Views/SetupWizard.php:769
4747
  msgid "Third Party Extensions"
4748
  msgstr ""
4749
 
4750
+ #: classes/Views/SetupWizard.php:810
4751
  msgid "Monitoring changes done in third party plugins"
4752
  msgstr ""
4753
 
4754
+ #: classes/Views/SetupWizard.php:811
4755
  msgid "We noticed that the below plugins are installed on this website. You can install our extensions to also keep a log of changes users do on these plugins."
4756
  msgstr ""
4757
 
4860
  msgid "The %s log level has been successfully loaded and applied."
4861
  msgstr ""
4862
 
4863
+ #: classes/Views/ToggleAlerts.php:563, extensions/settings-import-export/settings-import-export.php:78, extensions/email-notifications/classes/Notifications.php:339, extensions/email-notifications/classes/Notifications.php:962, extensions/email-notifications/classes/Notifications.php:2008
4864
  msgid "OK"
4865
  msgstr ""
4866
 
4880
  msgid "DISABLE EVENT"
4881
  msgstr ""
4882
 
4883
+ #: extensions/logs-management/logs-management.php:66
4884
+ msgid "Delete activity log data"
4885
+ msgstr ""
4886
+
4887
+ #: extensions/logs-management/logs-management.php:96
4888
+ msgid "All of the below settings can be used to delete data from the activity log. Note that once the data is deleted it cannot be recovered unless you have a backup."
4889
+ msgstr ""
4890
+
4891
+ #. translators: Upgrade now hyperlink.
4892
+ #: extensions/logs-management/logs-management.php:99
4893
+ msgid "Logs management is available in the Professional and Business Plans. %s to configure and receive this feature."
4894
+ msgstr ""
4895
+
4896
+ #: extensions/logs-management/logs-management.php:99, extensions/settings-import-export/settings-import-export.php:129, extensions/email-notifications/classes/SMSProviderSettings.php:172
4897
+ msgid "Upgrade now"
4898
+ msgstr ""
4899
+
4900
+ #: extensions/logs-management/logs-management.php:109
4901
+ msgid "Delete activity log data about a specific user"
4902
+ msgstr ""
4903
+
4904
+ #: extensions/logs-management/logs-management.php:112
4905
+ msgid "Enter username"
4906
+ msgstr ""
4907
+
4908
+ #: extensions/logs-management/logs-management.php:114
4909
+ msgid "Specify the user's username above and click delete data to delete all the events in the activity log that either have been generated by this user, or this user is referenced in."
4910
+ msgstr ""
4911
+
4912
+ #: extensions/logs-management/logs-management.php:121
4913
+ msgid "Delete activity log data about a specific IP address"
4914
+ msgstr ""
4915
+
4916
+ #: extensions/logs-management/logs-management.php:124
4917
+ msgid "Enter IP"
4918
+ msgstr ""
4919
+
4920
+ #: extensions/logs-management/logs-management.php:126
4921
+ msgid "Specify the IP address above and click delete data to delete all the events in the activity log that either have been generated from this IP address or the IP address is referenced in it."
4922
+ msgstr ""
4923
+
4924
+ #: extensions/logs-management/logs-management.php:133
4925
+ msgid "Delete activity log data with a specific severity level"
4926
+ msgstr ""
4927
+
4928
+ #: extensions/logs-management/logs-management.php:136
4929
+ msgid "Enter severity"
4930
+ msgstr ""
4931
+
4932
+ #: extensions/logs-management/logs-management.php:138
4933
+ msgid "Specify the severity level above and click delete data to delete all the events in the activity log of that severity level."
4934
+ msgstr ""
4935
+
4936
+ #: extensions/logs-management/logs-management.php:145
4937
+ msgid "Delete activity log data about a specific event type"
4938
+ msgstr ""
4939
+
4940
+ #: extensions/logs-management/logs-management.php:148
4941
+ msgid "Enter event type"
4942
+ msgstr ""
4943
+
4944
+ #: extensions/logs-management/logs-management.php:150
4945
+ msgid "Specify the event type above and click delete data to delete all the events in the activity log of the specified event type."
4946
+ msgstr ""
4947
+
4948
+ #: extensions/logs-management/logs-management.php:157
4949
+ msgid "Delete activity log data about a specific object"
4950
+ msgstr ""
4951
+
4952
+ #: extensions/logs-management/logs-management.php:160
4953
+ msgid "Enter object"
4954
+ msgstr ""
4955
+
4956
+ #: extensions/logs-management/logs-management.php:162
4957
+ msgid "Specify the object above and click delete data to delete all the events in the activity log with the specific object."
4958
+ msgstr ""
4959
+
4960
+ #: extensions/logs-management/logs-management.php:169
4961
+ msgid "Delete activity log data about a specific event ID"
4962
+ msgstr ""
4963
+
4964
+ #: extensions/logs-management/logs-management.php:172
4965
+ msgid "Enter event ID"
4966
+ msgstr ""
4967
+
4968
+ #: extensions/logs-management/logs-management.php:174
4969
+ msgid "Specify the event ID above and click delete data to delete all the events in the activity log of that type."
4970
+ msgstr ""
4971
+
4972
+ #: extensions/logs-management/logs-management.php:226
4973
+ msgid "User not found."
4974
+ msgstr ""
4975
+
4976
+ #: extensions/logs-management/logs-management.php:252
4977
+ msgid "data deleted."
4978
+ msgstr ""
4979
+
4980
+ #: extensions/logs-management/logs-management.php:252
4981
+ msgid " rows removed"
4982
+ msgstr ""
4983
+
4984
+ #: extensions/logs-management/logs-management.php:261, extensions/logs-management/logs-management.php:262
4985
+ msgid "Not provided"
4986
+ msgstr ""
4987
+
4988
  #: extensions/search/search-init.php:198
4989
  msgid "An identical search filter already exists."
4990
  msgstr ""
4991
 
4992
+ #: extensions/search/search-init.php:217, extensions/search/search-init.php:291, extensions/user-sessions/classes/View/Sessions.php:340
4993
  msgid "Search"
4994
  msgstr ""
4995
 
5021
  msgid "Delete"
5022
  msgstr ""
5023
 
5024
+ #: extensions/search/search-init.php:299, extensions/external-db/classes/Connections.php:651, extensions/external-db/classes/Mirroring.php:602
5025
  msgid "Deleting..."
5026
  msgstr ""
5027
 
5070
  msgid "Saved search deleted."
5071
  msgstr ""
5072
 
5073
+ #: extensions/settings-import-export/settings-import-export.php:58
5074
+ msgid "For more information and / or if you require assistance, please"
5075
+ msgstr ""
5076
+
5077
+ #: extensions/settings-import-export/settings-import-export.php:65
5078
+ msgid "Checking import contents"
5079
+ msgstr ""
5080
+
5081
+ #: extensions/settings-import-export/settings-import-export.php:66
5082
+ msgid "Ready to import"
5083
+ msgstr ""
5084
+
5085
+ #: extensions/settings-import-export/settings-import-export.php:67
5086
+ msgid "Issues found"
5087
+ msgstr ""
5088
+
5089
+ #: extensions/settings-import-export/settings-import-export.php:68
5090
+ msgid "Importing settings"
5091
+ msgstr ""
5092
+
5093
+ #: extensions/settings-import-export/settings-import-export.php:69
5094
+ msgid "Settings imported"
5095
+ msgstr ""
5096
+
5097
+ #: extensions/settings-import-export/settings-import-export.php:71
5098
+ msgid "The role, user or post type contained in your settings are not currently found in this website. Importing such settings could lead to abnormal behavour. For more information and / or if you require assistance, please"
5099
+ msgstr ""
5100
+
5101
+ #: extensions/settings-import-export/settings-import-export.php:72
5102
+ msgid "Currently this data is not supported by our export/import wizard."
5103
+ msgstr ""
5104
+
5105
+ #: extensions/settings-import-export/settings-import-export.php:73
5106
+ msgid "Please upload a valid JSON file."
5107
+ msgstr ""
5108
+
5109
+ #: extensions/settings-import-export/settings-import-export.php:74, extensions/email-notifications/classes/Notifications.php:955, extensions/external-db/classes/Connections.php:643, extensions/external-db/classes/ExternalStorageTab.php:176, extensions/external-db/classes/ExternalStorageTab.php:204, extensions/external-db/classes/Mirroring.php:284
5110
+ msgid "Cancel"
5111
+ msgstr ""
5112
+
5113
+ #: extensions/settings-import-export/settings-import-export.php:75
5114
+ msgid "The settings file has been tested and the configuration is ready to be imported. Would you like to proceed?"
5115
+ msgstr ""
5116
+
5117
+ #: extensions/settings-import-export/settings-import-export.php:76
5118
+ msgid "The configuration has been successfully imported. Click OK to close this window"
5119
+ msgstr ""
5120
+
5121
+ #: extensions/settings-import-export/settings-import-export.php:77
5122
+ msgid "Proceed"
5123
+ msgstr ""
5124
+
5125
+ #: extensions/settings-import-export/settings-import-export.php:96
5126
+ msgid "Export/import settings"
5127
+ msgstr ""
5128
+
5129
+ #: extensions/settings-import-export/settings-import-export.php:126
5130
+ msgid "From here you can export the plugin's settings configuration and also import them from an export file. Use the export file to keep a backup of the plugin's configuration or to import the same settings configuration to another website."
5131
+ msgstr ""
5132
+
5133
+ #. translators: Upgrade now hyperlink.
5134
+ #: extensions/settings-import-export/settings-import-export.php:129
5135
+ msgid "Settigns import/export is available in the Professional and Business Plans. %s to configure and receive this feature."
5136
+ msgstr ""
5137
+
5138
+ #: extensions/settings-import-export/settings-import-export.php:139
5139
+ msgid "Export settings"
5140
+ msgstr ""
5141
+
5142
+ #: extensions/settings-import-export/settings-import-export.php:142
5143
+ msgid "Export"
5144
+ msgstr ""
5145
+
5146
+ #: extensions/settings-import-export/settings-import-export.php:144
5147
+ msgid "Once the settings are exported a download will automatically start. The settings are exported to a JSON file."
5148
+ msgstr ""
5149
+
5150
+ #: extensions/settings-import-export/settings-import-export.php:151
5151
+ msgid "Import settings"
5152
+ msgstr ""
5153
+
5154
+ #: extensions/settings-import-export/settings-import-export.php:156
5155
+ msgid "Validate & Import"
5156
+ msgstr ""
5157
+
5158
+ #: extensions/settings-import-export/settings-import-export.php:158
5159
+ msgid "Once you choose a JSON settings file, it will be checked prior to being imported to alert you of any issues, if there are any."
5160
+ msgstr ""
5161
+
5162
+ #: extensions/settings-import-export/settings-import-export.php:259
5163
+ msgid "Custom notifications are not supported"
5164
+ msgstr ""
5165
+
5166
+ #: extensions/settings-import-export/settings-import-export.php:254, extensions/settings-import-export/settings-import-export.php:237
5167
+ msgid "Role not found: "
5168
+ msgstr ""
5169
+
5170
+ #: extensions/settings-import-export/settings-import-export.php:246
5171
+ msgid "User not found: "
5172
+ msgstr ""
5173
+
5174
+ #: extensions/settings-import-export/settings-import-export.php:228
5175
+ msgid "Post type not found: "
5176
+ msgstr ""
5177
+
5178
+ #: extensions/settings-import-export/settings-import-export.php:271
5179
+ msgid "Setting updated"
5180
+ msgstr ""
5181
+
5182
+ #: extensions/settings-import-export/settings-import-export.php:271
5183
+ msgid "Setting created"
5184
+ msgstr ""
5185
+
5186
  #: classes/Views/addons/html-view.php:95, classes/Views/addons/html-view.php:120
5187
  msgid "Upgrade to Premium"
5188
  msgstr ""
5262
  msgid "Title"
5263
  msgstr ""
5264
 
5265
+ #: extensions/email-notifications/classes/AddNotification.php:342, extensions/email-notifications/classes/EditNotification.php:432, extensions/email-notifications/classes/Notifications.php:1031, extensions/email-notifications/classes/Notifications.php:1054, extensions/email-notifications/classes/Notifications.php:1071, extensions/email-notifications/classes/Notifications.php:1095, extensions/email-notifications/classes/Notifications.php:1117, extensions/email-notifications/classes/Notifications.php:1130, extensions/email-notifications/classes/Notifications.php:1143, extensions/email-notifications/classes/Notifications.php:1156, extensions/email-notifications/classes/Notifications.php:1169, extensions/email-notifications/classes/Notifications.php:1182, extensions/email-notifications/classes/Notifications.php:1206, extensions/email-notifications/classes/Notifications.php:1221, extensions/email-notifications/classes/Notifications.php:1236, extensions/email-notifications/classes/Notifications.php:1251, extensions/email-notifications/classes/Notifications.php:1266, extensions/email-notifications/classes/Notifications.php:1288, extensions/email-notifications/classes/Notifications.php:1353, extensions/email-notifications/classes/Notifications.php:1368, extensions/email-notifications/classes/Notifications.php:1383, extensions/email-notifications/classes/Notifications.php:1407, extensions/email-notifications/classes/Notifications.php:1422, extensions/email-notifications/classes/Notifications.php:1437, extensions/email-notifications/classes/Notifications.php:1452, extensions/email-notifications/classes/Notifications.php:1514, extensions/email-notifications/classes/Notifications.php:1529, extensions/email-notifications/classes/Notifications.php:1544, extensions/email-notifications/classes/Notifications.php:1608, extensions/email-notifications/classes/Notifications.php:1625, extensions/email-notifications/classes/Notifications.php:1642, extensions/email-notifications/classes/Notifications.php:1659, extensions/email-notifications/classes/Notifications.php:1676, extensions/email-notifications/classes/Notifications.php:1693, extensions/email-notifications/classes/Notifications.php:1710, extensions/email-notifications/classes/Notifications.php:1776, extensions/email-notifications/classes/Notifications.php:1793, extensions/email-notifications/classes/Notifications.php:1810, extensions/email-notifications/classes/Notifications.php:1827, extensions/user-sessions/classes/View/Sessions.php:322
5266
  msgid "Email"
5267
  msgstr ""
5268
 
5400
  msgstr ""
5401
 
5402
  #: extensions/email-notifications/classes/Common.php:1044
5403
+ msgid "User First Name"
5404
  msgstr ""
5405
 
5406
  #: extensions/email-notifications/classes/Common.php:1045
5407
+ msgid "User Last Name"
5408
  msgstr ""
5409
 
5410
  #: extensions/email-notifications/classes/Common.php:1046
5411
+ msgid "Role(s) of the User"
5412
  msgstr ""
5413
 
5414
  #: extensions/email-notifications/classes/Common.php:1047
5415
+ msgid "Event generated on Date and Time"
5416
+ msgstr ""
5417
+
5418
+ #: extensions/email-notifications/classes/Common.php:1048
5419
+ msgid "Event Code"
5420
+ msgstr ""
5421
+
5422
+ #: extensions/email-notifications/classes/Common.php:1049
5423
  msgid "Event Severity"
5424
  msgstr ""
5425
 
5426
+ #: extensions/email-notifications/classes/Common.php:1050, extensions/email-notifications/classes/Common.php:1113
5427
  msgid "Event Message"
5428
  msgstr ""
5429
 
5430
+ #: extensions/email-notifications/classes/Common.php:1051
5431
  msgid "Event Metadata"
5432
  msgstr ""
5433
 
5434
+ #: extensions/email-notifications/classes/Common.php:1052
5435
  msgid "Event Links"
5436
  msgstr ""
5437
 
5438
+ #: extensions/email-notifications/classes/Common.php:1053
5439
  msgid "Client IP Address"
5440
  msgstr ""
5441
 
5442
+ #: extensions/email-notifications/classes/Common.php:1054
5443
  msgid "Event Object"
5444
  msgstr ""
5445
 
5446
+ #: extensions/email-notifications/classes/Common.php:1101, extensions/email-notifications/classes/Common.php:1167
5447
  msgid "Notification {title} on website {site} triggered"
5448
  msgstr ""
5449
 
5450
+ #: extensions/email-notifications/classes/Common.php:1102, extensions/email-notifications/classes/Common.php:1168
5451
  msgid "Notification <strong>{title}</strong> was triggered. Below are the notification details:"
5452
  msgstr ""
5453
 
5454
+ #: extensions/email-notifications/classes/Common.php:1104
5455
  msgid "Website"
5456
  msgstr ""
5457
 
5458
+ #: extensions/email-notifications/classes/Common.php:1106, extensions/email-notifications/classes/Common.php:1171, extensions/reports/classes/CsvReportGenerator.php:80, extensions/reports/classes/CsvReportGenerator.php:64, extensions/reports/classes/CsvReportGenerator.php:197, extensions/reports/classes/HtmlReportGenerator.php:244, extensions/reports/classes/HtmlReportGenerator.php:220, extensions/reports/classes/HtmlReportGenerator.php:358, extensions/search/classes/FilterManager.php:475, extensions/user-sessions/classes/View/Sessions.php:156, extensions/user-sessions/classes/View/Sessions.php:321
5459
  msgid "Username"
5460
  msgstr ""
5461
 
5462
+ #: extensions/email-notifications/classes/Common.php:1107
5463
+ msgid "User first name"
5464
+ msgstr ""
5465
+
5466
+ #: extensions/email-notifications/classes/Common.php:1108
5467
+ msgid "User last name"
5468
+ msgstr ""
5469
+
5470
+ #: extensions/email-notifications/classes/Common.php:1109
5471
  msgid "User role"
5472
  msgstr ""
5473
 
5474
+ #: extensions/email-notifications/classes/Common.php:1114
5475
  msgid "Event generated on"
5476
  msgstr ""
5477
 
5478
+ #: extensions/email-notifications/classes/Common.php:1116
5479
  msgid "These email notifications are sent with <a href=\"http://wpactivitylog.com\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin solution."
5480
  msgstr ""
5481
 
5482
+ #: extensions/email-notifications/classes/Common.php:1139, extensions/email-notifications/classes/Common.php:1200
5483
  msgid "User/Role"
5484
  msgstr ""
5485
 
5486
+ #: extensions/email-notifications/classes/Common.php:1142
5487
  msgid "Event type"
5488
  msgstr ""
5489
 
5490
+ #: extensions/email-notifications/classes/Common.php:1172, extensions/search/classes/FilterManager.php:487, extensions/search/classes/Filters/userrolefilter.php:49, extensions/search/classes/Filters/userrolefilter.php:87, extensions/user-sessions/classes/View/Sessions.php:326
5491
  msgid "User Role"
5492
  msgstr ""
5493
 
5494
+ #: extensions/email-notifications/classes/Common.php:1174
5495
  msgid "Generated On"
5496
  msgstr ""
5497
 
5498
+ #: extensions/email-notifications/classes/Common.php:1176
5499
  msgid "Monitoring of WordPress and Email Notifications provided by <a href=\"http://wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit trail plugin</a>."
5500
  msgstr ""
5501
 
5502
+ #: extensions/email-notifications/classes/Common.php:1201
5503
  msgid "Event"
5504
  msgstr ""
5505
 
5506
+ #: extensions/email-notifications/classes/Common.php:1216
5507
  msgid "Subject "
5508
  msgstr ""
5509
 
5510
+ #: extensions/email-notifications/classes/Common.php:1225
5511
  msgid "Body "
5512
  msgstr ""
5513
 
5514
+ #: extensions/email-notifications/classes/Common.php:1228
5515
  msgid "HTML is accepted. Available template tags:"
5516
  msgstr ""
5517
 
5696
  msgid "Send"
5697
  msgstr ""
5698
 
 
 
 
 
5699
  #: extensions/email-notifications/classes/Notifications.php:1013
5700
  msgid "Daily Summary of Activity Log"
5701
  msgstr ""
5909
  msgid "Bulk actions"
5910
  msgstr ""
5911
 
5912
+ #: extensions/email-notifications/classes/Notifications.php:1916, extensions/email-notifications/classes/Notifications.php:1977, extensions/email-notifications/classes/Notifications.php:1994, extensions/external-db/classes/Mirroring.php:118, extensions/external-db/classes/Mirroring.php:743, extensions/external-db/classes/mirrors/PapertrailConnection.php:44
5913
  msgid "Enable"
5914
  msgstr ""
5915
 
5916
+ #: extensions/email-notifications/classes/Notifications.php:1917, extensions/email-notifications/classes/Notifications.php:1975, extensions/email-notifications/classes/Notifications.php:1995, extensions/external-db/classes/Mirroring.php:121, extensions/external-db/classes/Mirroring.php:746
5917
  msgid "Disable"
5918
  msgstr ""
5919
 
6100
  msgid "SMS notifications are available in the Professional and Business Plans. %s to configure and receive SMS notifications."
6101
  msgstr ""
6102
 
 
 
 
 
6103
  #: extensions/email-notifications/classes/SMSProviderSettings.php:178
6104
  msgid "Account SID"
6105
  msgstr ""
6154
  msgid "You are not allowed to view this page."
6155
  msgstr ""
6156
 
6157
+ #: extensions/external-db/classes/Common.php:812, extensions/external-db/classes/Settings.php:102
6158
  msgid "External Storage"
6159
  msgstr ""
6160
 
6199
  msgid "Configure Connection → "
6200
  msgstr ""
6201
 
6202
+ #: extensions/external-db/classes/Connections.php:198, extensions/external-db/classes/Connections.php:560
6203
  msgid "Configure the connection"
6204
  msgstr ""
6205
 
6206
+ #: extensions/external-db/classes/Connections.php:199, extensions/external-db/classes/Connections.php:561
6207
  msgid "Configure the connection details."
6208
  msgstr ""
6209
 
6210
+ #: extensions/external-db/classes/Connections.php:203, extensions/external-db/classes/Connections.php:526, extensions/external-db/classes/Connections.php:652
6211
  msgid "Save Connection"
6212
  msgstr ""
6213
 
6287
  msgid "Connection Name"
6288
  msgstr ""
6289
 
6290
+ #: extensions/external-db/classes/Connections.php:514
6291
  msgid "MySQL Database"
6292
  msgstr ""
6293
 
6294
+ #: extensions/external-db/classes/Connections.php:527
6295
  msgid "Select type"
6296
  msgstr ""
6297
 
6298
+ #: extensions/external-db/classes/Connections.php:529
6299
  msgid "Select the type of connection"
6300
  msgstr ""
6301
 
6302
+ #: extensions/external-db/classes/Connections.php:530
6303
  msgid "Select the type of connection you would like to setup."
6304
  msgstr ""
6305
 
6306
+ #: extensions/external-db/classes/Connections.php:535
6307
  msgid "Type of Connection"
6308
  msgstr ""
6309
 
6310
+ #: extensions/external-db/classes/Connections.php:551
6311
  msgid "Check requirements"
6312
  msgstr ""
6313
 
6314
+ #: extensions/external-db/classes/Connections.php:553
6315
  msgid "Requirements check"
6316
  msgstr ""
6317
 
6318
+ #: extensions/external-db/classes/Connections.php:558
6319
  msgid "Configure connection"
6320
  msgstr ""
6321
 
6322
+ #: extensions/external-db/classes/Connections.php:568
6323
  msgid "Test connection"
6324
  msgstr ""
6325
 
6326
+ #: extensions/external-db/classes/Connections.php:570
6327
  msgid "Connectivity test"
6328
  msgstr ""
6329
 
6330
+ #: extensions/external-db/classes/Connections.php:575, extensions/external-db/classes/Connections.php:577
6331
  msgid "Name the connection"
6332
  msgstr ""
6333
 
6334
+ #: extensions/external-db/classes/Connections.php:578
6335
  msgid "Please specify a friendly name for the connection. Connection names can be 25 characters long and can only contain letters, numbers and underscores."
6336
  msgstr ""
6337
 
6338
+ #: extensions/external-db/classes/Connections.php:644
6339
  msgid "Checking requirements..."
6340
  msgstr ""
6341
 
6342
+ #: extensions/external-db/classes/Connections.php:646, extensions/external-db/classes/Mirroring.php:610
6343
  msgid "Are you sure that you want to delete this connection?"
6344
  msgstr ""
6345
 
6346
+ #: extensions/external-db/classes/Connections.php:647, extensions/external-db/classes/Mirroring.php:605, extensions/external-db/classes/Settings.php:785
6347
  msgid "Connection failed!"
6348
  msgstr ""
6349
 
6350
+ #: extensions/external-db/classes/Connections.php:648
6351
  msgid "Connection test failed! Please check the connection configuration or try again later."
6352
  msgstr ""
6353
 
6354
+ #: extensions/external-db/classes/Connections.php:649, extensions/external-db/classes/Mirroring.php:606
6355
  msgid "Connected"
6356
  msgstr ""
6357
 
6358
+ #: extensions/external-db/classes/Connections.php:650, extensions/external-db/classes/Mirroring.php:601, extensions/external-db/classes/Settings.php:798
6359
  msgid "Testing..."
6360
  msgstr ""
6361
 
6362
+ #: extensions/external-db/classes/Connections.php:654
6363
  msgid "Previous"
6364
  msgstr ""
6365
 
6366
+ #: extensions/external-db/classes/Connections.php:655
6367
  msgid "Unable to check the requirements at the moment. Communication with the server failed. Try again later."
6368
  msgstr ""
6369
 
6370
+ #: extensions/external-db/classes/Connections.php:656
6371
  msgid "Sending a test message..."
6372
  msgstr ""
6373
 
6374
+ #: extensions/external-db/classes/Connections.php:658, extensions/external-db/classes/Mirroring.php:599
6375
  msgid "Connections Wizard"
6376
  msgstr ""
6377
 
6378
+ #: extensions/external-db/classes/Connections.php:834
6379
  msgid "Connection failed. Please check the configuration again."
6380
  msgstr ""
6381
 
6382
+ #: extensions/external-db/classes/Connections.php:1002
6383
  msgid "Unknown connection type."
6384
  msgstr ""
6385
 
6386
+ #: extensions/external-db/classes/Connections.php:997, extensions/external-db/classes/Connections.php:965
6387
  msgid "Connection successful."
6388
  msgstr ""
6389
 
6390
+ #: extensions/external-db/classes/Connections.php:963
6391
  msgid "Connection failed."
6392
  msgstr ""
6393
 
6394
+ #: extensions/external-db/classes/Connections.php:1023
6395
  msgid "Connection type is missing."
6396
  msgstr ""
6397
 
6398
+ #: extensions/external-db/classes/Connections.php:1035
6399
  msgid "Unrecognized mirror type."
6400
  msgstr ""
6401
 
6402
+ #: extensions/external-db/classes/Connections.php:1042
6403
  msgid "Requirements check failed."
6404
  msgstr ""
6405
 
6406
+ #: extensions/external-db/classes/Connections.php:1047
6407
  msgid "All requirements are met. Your system is ready to use the selected connection type."
6408
  msgstr ""
6409
 
6410
+ #: extensions/external-db/classes/Connections.php:1050
6411
  msgid "Selected connection type cannot be used on your system at the moment. The following requirements are not met."
6412
  msgstr ""
6413
 
6449
  msgid "Note:"
6450
  msgstr ""
6451
 
6452
+ #: extensions/external-db/classes/ExternalStorageTab.php:121, extensions/external-db/classes/Settings.php:783
6453
  msgid "Cancel migration"
6454
  msgstr ""
6455
 
6473
  msgid "Switch to local database"
6474
  msgstr ""
6475
 
6476
+ #: extensions/external-db/classes/ExternalStorageTab.php:142, extensions/external-db/classes/Settings.php:402
6477
  msgid "Test Connection"
6478
  msgstr ""
6479
 
6485
  msgid "Do you want to change the plugin settings to start using the local database for storing the logs?"
6486
  msgstr ""
6487
 
6488
+ #: extensions/external-db/classes/ExternalStorageTab.php:178, extensions/external-db/classes/ExternalStorageTab.php:206, extensions/external-db/classes/Settings.php:797
6489
  msgid "Switch connection"
6490
  msgstr ""
6491
 
6493
  msgid "Select connection for external storage"
6494
  msgstr ""
6495
 
6496
+ #: extensions/external-db/classes/ExternalStorageTab.php:196, extensions/external-db/classes/Mirroring.php:367, extensions/external-db/classes/Settings.php:338
6497
  msgid "Connection"
6498
  msgstr ""
6499
 
6574
  msgid "When you mirror the activity log to a third party service, the plugin still keeps a copy of the activity log in the WordPress or external database (depending on what you have configured). Switch off the below setting so no copy of the activity log is written to the database."
6575
  msgstr ""
6576
 
6577
+ #: extensions/external-db/classes/Mirroring.php:154, extensions/external-db/classes/Settings.php:553
6578
  msgid "Current status:"
6579
  msgstr ""
6580
 
6582
  msgid "Failed :("
6583
  msgstr ""
6584
 
6585
+ #: extensions/external-db/classes/Mirroring.php:185, extensions/external-db/classes/Mirroring.php:862
6586
  msgid "Enabling"
6587
  msgstr ""
6588
 
6691
  msgid "Should mirror these severities:"
6692
  msgstr ""
6693
 
6694
+ #: extensions/external-db/classes/Mirroring.php:378, extensions/external-db/classes/Settings.php:721
6695
  msgid "Select a connection"
6696
  msgstr ""
6697
 
6711
  msgid "* Invalid Mirror Name"
6712
  msgstr ""
6713
 
6714
+ #: extensions/external-db/classes/Mirroring.php:600
6715
  msgid "Mirroring Wizard"
6716
  msgstr ""
6717
 
6718
+ #: extensions/external-db/classes/Mirroring.php:603
6719
  msgid "Enabling..."
6720
  msgstr ""
6721
 
6722
+ #: extensions/external-db/classes/Mirroring.php:604
6723
  msgid "Disabling..."
6724
  msgstr ""
6725
 
6726
+ #: extensions/external-db/classes/Mirroring.php:607
6727
  msgid "Running..."
6728
  msgstr ""
6729
 
6730
+ #: extensions/external-db/classes/Mirroring.php:608
6731
  msgid "Mirror Complete!"
6732
  msgstr ""
6733
 
6734
+ #: extensions/external-db/classes/Mirroring.php:609
6735
  msgid "Failed!"
6736
  msgstr ""
6737
 
6738
+ #: extensions/external-db/classes/Mirroring.php:611
6739
  msgid "Are you sure that you want to delete this mirror?"
6740
  msgstr ""
6741
 
6742
+ #: extensions/external-db/classes/Mirroring.php:612, extensions/reports/inc/wsal-reporting-view.inc.php:1131
6743
  msgid "Select Event Code(s)"
6744
  msgstr ""
6745
 
6746
+ #: extensions/external-db/classes/Mirroring.php:613
6747
  msgid "Select Severity Levels"
6748
  msgstr ""
6749
 
6750
+ #: extensions/external-db/classes/Mirroring.php:614
6751
  msgid "Configure and create connection"
6752
  msgstr ""
6753
 
6754
+ #: extensions/external-db/classes/Mirroring.php:674, extensions/external-db/classes/Settings.php:113
6755
  msgid "Mirroring"
6756
  msgstr ""
6757
 
6758
+ #: extensions/external-db/classes/Mirroring.php:736
6759
  msgid "Mirror not found."
6760
  msgstr ""
6761
 
6762
+ #: extensions/external-db/classes/Mirroring.php:830
6763
  msgid "The plugin is not saving the activity log to the database."
6764
  msgstr ""
6765
 
6766
+ #: extensions/external-db/classes/Mirroring.php:832
6767
  msgid "The plugin is currently configured to not save the activity log to the database. It is only mirroring the activity log to third party services. The activity log you see below is a record of what happened until writing to the database was disabled. If you would like the plugin to start saving a copy of the activity log to the database again click the below button."
6768
  msgstr ""
6769
 
6770
+ #: extensions/external-db/classes/Mirroring.php:835
6771
  msgid "Important"
6772
  msgstr ""
6773
 
6774
+ #: extensions/external-db/classes/Mirroring.php:836
6775
  msgid "The activity log data that was generated when writing to the database was disabled, will not be available in the event viewer."
6776
  msgstr ""
6777
 
6778
+ #: extensions/external-db/classes/Mirroring.php:840
6779
  msgid "Re-enable writing of activity log to the database"
6780
  msgstr ""
6781
 
6782
+ #: extensions/external-db/classes/Mirroring.php:850
6783
  msgid "Try again later..."
6784
  msgstr ""
6785
 
6786
+ #: extensions/external-db/classes/Mirroring.php:878
6787
  msgid "Database logging enabled!"
6788
  msgstr ""
6789
 
6790
+ #: extensions/external-db/classes/Settings.php:107, extensions/external-db/classes/Settings.php:479
6791
  msgid "Archiving"
6792
  msgstr ""
6793
 
6807
  msgid "archiving activity log data"
6808
  msgstr ""
6809
 
6810
+ #: extensions/external-db/classes/Settings.php:330
6811
  msgid "In this section you can configure the archiving of old events to an archive database. Archives events can still be accessed and are included in search results and reports."
6812
  msgstr ""
6813
 
6814
+ #: extensions/external-db/classes/Settings.php:336
6815
  msgid "Archive the WordPress Activity Log to this Database"
6816
  msgstr ""
6817
 
6818
+ #: extensions/external-db/classes/Settings.php:347
6819
  msgid "Archive events that are older than"
6820
  msgstr ""
6821
 
6822
+ #: extensions/external-db/classes/Settings.php:349
6823
  msgid "Archiving Options"
6824
  msgstr ""
6825
 
6826
+ #: extensions/external-db/classes/Settings.php:363
6827
  msgid "Archive events older than"
6828
  msgstr ""
6829
 
6830
+ #: extensions/external-db/classes/Settings.php:373
 
 
 
 
 
 
 
 
6831
  msgid "The configured archiving options will override the Security Events Pruning settings configured in the plugin’s settings."
6832
  msgstr ""
6833
 
6834
+ #: extensions/external-db/classes/Settings.php:379
6835
  msgid "WordPress Activity Log Data Retention"
6836
  msgstr ""
6837
 
6838
+ #: extensions/external-db/classes/Settings.php:380
6839
  msgid "Once you configure archiving these data retention settings will be used instead of the ones configured in the plugin's general settings."
6840
  msgstr ""
6841
 
6842
+ #: extensions/external-db/classes/Settings.php:403
6843
  msgid "Execute Archiving Now"
6844
  msgstr ""
6845
 
6846
+ #: extensions/external-db/classes/Settings.php:406
6847
  msgid "Reset Archiving Settings"
6848
  msgstr ""
6849
 
6850
+ #: extensions/external-db/classes/Settings.php:407
6851
  msgid "Click the button below to disable archiving and reset the settings to no archiving. Note that the archived data will not be deleted."
6852
  msgstr ""
6853
 
6854
+ #: extensions/external-db/classes/Settings.php:408
6855
  msgid "Disable Archiving & Reset Settings"
6856
  msgstr ""
6857
 
6858
+ #: extensions/external-db/classes/Settings.php:511
6859
  msgid "Run the Archiving Process Every"
6860
  msgstr ""
6861
 
6862
+ #: extensions/external-db/classes/Settings.php:522
6863
  msgid "15 minutes"
6864
  msgstr ""
6865
 
6866
+ #: extensions/external-db/classes/Settings.php:525
6867
  msgid "1 hour"
6868
  msgstr ""
6869
 
6870
+ #: extensions/external-db/classes/Settings.php:528
6871
  msgid "6 hours"
6872
  msgstr ""
6873
 
6874
+ #: extensions/external-db/classes/Settings.php:531
6875
  msgid "12 hours"
6876
  msgstr ""
6877
 
6878
+ #: extensions/external-db/classes/Settings.php:534
6879
  msgid "24 hours"
6880
  msgstr ""
6881
 
6882
+ #: extensions/external-db/classes/Settings.php:540
6883
  msgid "Stop Archiving"
6884
  msgstr ""
6885
 
6886
+ #: extensions/external-db/classes/Settings.php:567
6887
  msgid "Running"
6888
  msgstr ""
6889
 
6890
+ #: extensions/external-db/classes/Settings.php:612
6891
  msgid "Attention!"
6892
  msgstr ""
6893
 
6894
  #. translators: %1$s: Alerts Pruning Period, %2$s: Alerts Archiving Period
6895
+ #: extensions/external-db/classes/Settings.php:616
6896
  msgid "The activity log retention setting is configured to delete events older than %1$s. This period should be longer than the configured %2$s archiving period otherwise events will be deleted and not archived."
6897
  msgstr ""
6898
 
6899
+ #: extensions/external-db/classes/Settings.php:668, extensions/external-db/classes/Settings.php:679
6900
  msgid "No connection found."
6901
  msgstr ""
6902
 
6903
+ #: extensions/external-db/classes/Settings.php:691
6904
  msgid "Successfully connected to database."
6905
  msgstr ""
6906
 
6907
+ #: extensions/external-db/classes/Settings.php:781
6908
  msgid "Archiving complete!"
6909
  msgstr ""
6910
 
6911
+ #: extensions/external-db/classes/Settings.php:782
6912
  msgid "Archiving..."
6913
  msgstr ""
6914
 
6915
+ #: extensions/external-db/classes/Settings.php:784
6916
  msgid "Continue..."
6917
  msgstr ""
6918
 
6919
+ #: extensions/external-db/classes/Settings.php:786
6920
  msgid "Connected!"
6921
  msgstr ""
6922
 
6923
+ #: extensions/external-db/classes/Settings.php:787
6924
  msgid "Done!"
6925
  msgstr ""
6926
 
6927
  #. translators: %d: Number of events.
6928
+ #: extensions/external-db/classes/Settings.php:789
6929
  msgid " So far %d events have been migrated."
6930
  msgstr ""
6931
 
6932
+ #: extensions/external-db/classes/Settings.php:790
6933
  msgid "Migration complete"
6934
  msgstr ""
6935
 
6936
+ #: extensions/external-db/classes/Settings.php:791
6937
  msgid "WordPress security events successfully migrated to the external database."
6938
  msgstr ""
6939
 
6940
+ #: extensions/external-db/classes/Settings.php:792
6941
  msgid "No events to migrate."
6942
  msgstr ""
6943
 
6944
+ #: extensions/external-db/classes/Settings.php:793
6945
  msgid "Resetting failed!"
6946
  msgstr ""
6947
 
6948
+ #: extensions/external-db/classes/Settings.php:794
6949
  msgid "Resetting..."
6950
  msgstr ""
6951
 
6952
+ #: extensions/external-db/classes/Settings.php:795
6953
  msgid "WordPress security events successfully migrated to WordPress database."
6954
  msgstr ""
6955
 
6956
+ #: extensions/external-db/classes/Settings.php:796
6957
  msgid "Please select connection to be used for external storage."
6958
  msgstr ""
6959
 
6960
+ #: extensions/external-db/classes/Settings.php:799
6961
  msgid "Working..."
6962
  msgstr ""
6963
 
6964
+ #: extensions/external-db/classes/Settings.php:858
6965
  msgid "Bad request. Target state attribute is missing."
6966
  msgstr ""
6967
 
7085
  msgid "Blog Name"
7086
  msgstr ""
7087
 
7088
+ #: extensions/reports/classes/CsvReportGenerator.php:83, extensions/reports/classes/HtmlReportGenerator.php:247, extensions/user-sessions/classes/View/Sessions.php:163
7089
  msgid "Source IP"
7090
  msgstr ""
7091
 
7657
  msgid "Filter by username"
7658
  msgstr ""
7659
 
7660
+ #: extensions/search/classes/FilterManager.php:479, extensions/user-sessions/classes/View/Sessions.php:323
7661
  msgid "First Name"
7662
  msgstr ""
7663
 
7665
  msgid "Filter by user first name"
7666
  msgstr ""
7667
 
7668
+ #: extensions/search/classes/FilterManager.php:483, extensions/user-sessions/classes/View/Sessions.php:324
7669
  msgid "Last Name"
7670
  msgstr ""
7671
 
7741
  msgid "This could result in loss of unsaved work. Are you sure?"
7742
  msgstr ""
7743
 
7744
+ #: extensions/user-sessions/classes/Views.php:198
7745
+ msgid "Remaining sessions:"
7746
+ msgstr ""
7747
+
7748
  #. translators: %s: Total number of users
7749
+ #: extensions/user-sessions/classes/Views.php:200
7750
  msgid "out of %s user sessions terminated."
7751
  msgstr ""
7752
 
7753
+ #: extensions/user-sessions/classes/Views.php:202, extensions/user-sessions/classes/View/Sessions.php:80
7754
  msgid "Retrieve user data"
7755
  msgstr ""
7756
 
7757
+ #: extensions/user-sessions/classes/Views.php:203
7758
  msgid "Retrieving data"
7759
  msgstr ""
7760
 
7761
+ #: extensions/user-sessions/classes/Views.php:204
7762
  msgid "Data retrieved"
7763
  msgstr ""
7764
 
7765
+ #: extensions/user-sessions/classes/Views.php:205
7766
  msgid "Event ID: "
7767
  msgstr ""
7768
 
7769
+ #: extensions/user-sessions/classes/Views.php:206
7770
  msgid "Object: "
7771
  msgstr ""
7772
 
7773
+ #: extensions/user-sessions/classes/Views.php:207
7774
  msgid "Event Type: "
7775
  msgstr ""
7776
 
7777
+ #: extensions/user-sessions/classes/Views.php:268
7778
  msgid "Terminate all logged in sessions"
7779
  msgstr ""
7780
 
7781
+ #: extensions/user-sessions/classes/Views.php:269
7782
  msgid "This will terminate all users' sessions including yours, which could result in unsaved work. Do you like to proceed?"
7783
  msgstr ""
7784
 
7785
+ #: extensions/user-sessions/classes/Views.php:280
7786
  msgid "YES"
7787
  msgstr ""
7788
 
7789
+ #: extensions/user-sessions/classes/Views.php:281
7790
  msgid "NO"
7791
  msgstr ""
7792
 
7793
+ #: extensions/user-sessions/classes/Views.php:293
7794
  msgid "Terminate All Sessions"
7795
  msgstr ""
7796
 
7797
+ #: extensions/user-sessions/classes/Views.php:413
7798
  msgid "Users sessions termination is in progress. Please wait..."
7799
  msgstr ""
7800
 
7801
+ #: extensions/user-sessions/classes/Views.php:440, extensions/reports/classes/Views/Main.php:724
7802
  msgid "You do not have sufficient permissions."
7803
  msgstr ""
7804
 
7805
+ #: extensions/user-sessions/classes/Views.php:466
7806
  msgid "No sessions."
7807
  msgstr ""
7808
 
7809
+ #: extensions/user-sessions/classes/Views.php:491
7810
  msgid "Session destroyed."
7811
  msgstr ""
7812
 
7813
+ #: extensions/user-sessions/classes/Views.php:499
7814
  msgid "User session data is not set."
7815
  msgstr ""
7816
 
7817
+ #: extensions/user-sessions/classes/Views.php:515, extensions/user-sessions/classes/Views.php:589
7818
  msgid "User do not have sufficient permissions."
7819
  msgstr ""
7820
 
7821
+ #: extensions/user-sessions/classes/Views.php:568
7822
  msgid "Sessions destroyed!"
7823
  msgstr ""
7824
 
7825
+ #: extensions/user-sessions/classes/Views.php:599
7826
  msgid "Nonce check failed."
7827
  msgstr ""
7828
 
7830
  msgid "AWS CloudWatch"
7831
  msgstr ""
7832
 
7833
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:29, extensions/external-db/classes/mirrors/LogglyConnection.php:27, extensions/external-db/classes/mirrors/PapertrailConnection.php:27, extensions/external-db/classes/mirrors/SlackConnection.php:28, extensions/external-db/classes/mirrors/SyslogConnection.php:27
7834
  msgid "General mirror connection description."
7835
  msgstr ""
7836
 
7837
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:32
7838
  msgid "Region"
7839
  msgstr ""
7840
 
7841
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:59
7842
  msgid "AWS Key"
7843
  msgstr ""
7844
 
7845
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:64
7846
  msgid "AWS Secret"
7847
  msgstr ""
7848
 
7849
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:69
7850
  msgid "AWS Session Token"
7851
  msgstr ""
7852
 
7853
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:71
7854
  msgid "This is optional."
7855
  msgstr ""
7856
 
7857
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:74
7858
  msgid "Log group name"
7859
  msgstr ""
7860
 
7861
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:78
7862
  msgid "Invalid AWS group name. It must satisfy regular expression pattern: %s"
7863
  msgstr ""
7864
 
7865
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:82
7866
  msgid "If you do not specify a group name, one will be created using the default group name \"%s\"."
7867
  msgstr ""
7868
 
7869
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:87, extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:129
7870
  msgid "Log stream name"
7871
  msgstr ""
7872
 
7873
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:89, extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:131
7874
  msgid "If you do not specify a stream name, one will be created using the site name as stream name."
7875
  msgstr ""
7876
 
7877
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:92
7878
  msgid "Retention"
7879
  msgstr ""
7880
 
7881
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:114
7882
  msgid "Days to keep logs."
7883
  msgstr ""
7884
 
7885
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:121
7886
+ msgid "Stream"
7887
+ msgstr ""
7888
+
7889
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:126
7890
+ msgid "Mirror the activity logs of all sub sites on the network to one Stream"
7891
+ msgstr ""
7892
+
7893
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:136
7894
+ msgid "Create a Stream for every individual sub site on the network. The Stream name should be the:"
7895
+ msgstr ""
7896
+
7897
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:144
7898
+ msgid "Sitename"
7899
+ msgstr ""
7900
+
7901
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:147
7902
+ msgid "FQDN"
7903
+ msgstr ""
7904
+
7905
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:173
7906
  msgid "You have setup a mirroring connection to AWS CloudWatch in the WP Activity Log plugin. In this version we've done some changes and you need to add the following lines to the wp-config.php file to enable the AWS library."
7907
  msgstr ""
7908
 
7909
+ #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:257
7910
  msgid "The AWS library is disabled. Please enable this library by adding the following to the wp-config.php file. Press continue when you are ready or cancel to stop the process."
7911
  msgstr ""
7912
 
8009
  msgstr ""
8010
 
8011
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:35
8012
+ msgid "Write to local syslog file"
8013
  msgstr ""
8014
 
8015
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:38
8016
+ msgid "Send messages to remote syslog server"
8017
  msgstr ""
8018
 
8019
  #: extensions/external-db/classes/mirrors/SyslogConnection.php:41
8148
  msgid "User Session Options"
8149
  msgstr ""
8150
 
8151
+ #: extensions/user-sessions/classes/View/Sessions.php:94
8152
+ msgid "Terminate all sessions that match this search criteria"
8153
+ msgstr ""
8154
+
8155
+ #: extensions/user-sessions/classes/View/Sessions.php:136
8156
  msgid "Showing results for "
8157
  msgstr ""
8158
 
8159
+ #: extensions/user-sessions/classes/View/Sessions.php:124
8160
+ msgid "Sessions successfully terminated"
8161
+ msgstr ""
8162
+
8163
+ #: extensions/user-sessions/classes/View/Sessions.php:124
8164
  msgid "No search results were found."
8165
  msgstr ""
8166
 
8167
+ #: extensions/user-sessions/classes/View/Sessions.php:162
8168
  msgid "Expires"
8169
  msgstr ""
8170
 
8171
+ #: extensions/user-sessions/classes/View/Sessions.php:164
8172
  msgid "Last Event"
8173
  msgstr ""
8174
 
8175
+ #: extensions/user-sessions/classes/View/Sessions.php:165, extensions/user-sessions/classes/View/Sessions.php:493
8176
  msgid "Actions"
8177
  msgstr ""
8178
 
8179
  #. translators: Number of sessions
8180
+ #: extensions/user-sessions/classes/View/Sessions.php:294
8181
  msgid "%s users"
8182
  msgstr ""
8183
 
8184
+ #: extensions/user-sessions/classes/View/Sessions.php:299
8185
  msgid "Go to the first page"
8186
  msgstr ""
8187
 
8188
+ #: extensions/user-sessions/classes/View/Sessions.php:300
8189
  msgid "Go to the previous page"
8190
  msgstr ""
8191
 
8192
+ #: extensions/user-sessions/classes/View/Sessions.php:302
8193
  msgid "of"
8194
  msgstr ""
8195
 
8196
+ #: extensions/user-sessions/classes/View/Sessions.php:304
8197
  msgid "Go to the next page"
8198
  msgstr ""
8199
 
8200
+ #: extensions/user-sessions/classes/View/Sessions.php:305
8201
  msgid "Go to the last page"
8202
  msgstr ""
8203
 
8204
+ #: extensions/user-sessions/classes/View/Sessions.php:314
8205
  msgid "Total number of sessions with Administrator Role: "
8206
  msgstr ""
8207
 
8208
+ #: extensions/user-sessions/classes/View/Sessions.php:357
8209
  msgid "Show:"
8210
  msgstr ""
8211
 
8212
+ #: extensions/user-sessions/classes/View/Sessions.php:366
8213
  msgid "Network-wide Logins"
8214
  msgstr ""
8215
 
8216
+ #: extensions/user-sessions/classes/View/Sessions.php:467
8217
  msgid "Session ID: "
8218
  msgstr ""
8219
 
8220
+ #: extensions/user-sessions/classes/View/Sessions.php:484
8221
  msgid "Click the button above to retrieve the users' last event."
8222
  msgstr ""
8223
 
8224
+ #: extensions/user-sessions/classes/View/Sessions.php:504
8225
  msgid "Show me this user's events"
8226
  msgstr ""
8227
 
8228
+ #: extensions/user-sessions/classes/View/Sessions.php:520
8229
  msgid "Terminate Session"
8230
  msgstr ""
8231
 
8232
+ #: extensions/user-sessions/classes/View/Sessions.php:412
8233
  msgid "WP Activity Log keeps its own user session data. This means that the sessions of already logged in users will only show up once they logout and log back in. The same applies to your session."
8234
  msgstr ""
8235
 
8236
+ #: extensions/user-sessions/classes/View/Sessions.php:404
8237
  msgid "No logged in sessions meet your search criteria."
8238
  msgstr ""
8239
 
8240
+ #: extensions/user-sessions/classes/View/Sessions.php:698
8241
  msgid "User sessions do not exist."
8242
  msgstr ""
8243
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl.html
6
  Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 4.4
8
  Tested up to: 5.8
9
- Stable tag: 4.3.2
10
  Requires PHP: 7.0
11
 
12
  The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
@@ -208,63 +208,68 @@ Please refer to our [support pages](https://wpactivitylog.com/support/?utm_sourc
208
 
209
  == Changelog ==
210
 
211
- = 4.3.2 (2021-08-03) =
212
-
213
- Release notes: [WP Activity Log 4.3.2: New external database module, plugin logging, and other exciting features](https://wpactivitylog.com/wsal-4-3-0/)
214
-
215
- **New event IDs for WP Activity Log plugin settings changes**
216
- * ID 6046: enabled / disabled the Login Page Notification.
217
- * ID 6047: changed the text of the Login Page Notification.
218
- * ID 6048: changed the status of the Reverse proxy / firewall option.
219
- * ID 6049: changed the Restriction Access setting.
220
- * ID 6050: changed the list of users that can view the activity log.
221
- * ID 6051: enabled / disabled the Hide plugin in plugins page setting.
222
- * ID 6052: changed the activity log retention policies.
223
- * ID 6053: excluded / included back a user in the activity log.
224
- * ID 6054: excluded / included back a user role in the activity log.
225
- * ID 6055: excluded / included back an IP address in the activity log.
226
- * ID 6056: excluded / included back a post type in the activity log.
227
- * ID 6057: excluded / included back a custom field in the activity log.
228
- * ID 6058: excluded / included back a user profile custom field in the activity log.
 
 
 
 
 
 
 
 
 
 
229
 
230
  **New features**
231
-
232
- * A completely new external database module (with full backward compatability support).
233
- * Activity log can now be stored on external MySQL databases on Microsoft Azure.
234
- * A new sensor to keep a log of WP Activity Log plugin settings changes.
235
- * New setting to "not write activity log to database" when mirroring the activity log to a third party service.
236
- * The "all except from" criterion in the reports, allowing users to easily exclude specific object from a report criteria.
237
- * Plugin database version: the plugin's database is now versioned, making it much easier to upgrade the database structured when required.
238
- * Custom fields in user profiles can be excluded from the activity log from the "Exclude Objects" settings section.
239
- * The filter "wsal_event_metadata_definition" which allows users to add additional meta data to an event in the activity log. Refer to the list of [hooks & filters](https://wpactivitylog.com/support/kb/list-hooks/) for more information.
240
- * Added events severity level filter in the mirroring connection, allowing users to filter which events should be mirrored by severity level.
241
-
242
 
243
  **Improvements**
244
-
245
- * Replaced the old external database buffer system with the Action Scheduler library to improve reliability and performance.
246
- * Redesigned the reports download functionality so it works on any type of WordPress web hosting.
247
- * Replaced the old activity log events migration module with WP Background processing, for a more reliable migration process.
248
- * Full support for PHP 8.
249
- * Detection of third party plugins activity & recommendations for activity log extensions.
250
- * Added a number of checks to the external database module for an improved database connection setup UX.
251
- * Activity log plugin extensions are also hidden when the WP Activity Log plugin is hidden from the plugins page.
252
- * Removed all the code that was previously used for migration of events between the WordPress and external database.
253
- * Remove code that is no longer required in the free edition of the plugin.
254
- * Better support for plugins that still use old methods (old use of the lostpassword_post filter) to allow users to reset their password without an error.
255
- * All database events have been moved under the "WordPress & System" tab in the Enable/Disable events section.
256
- * Improved the text of the plugin's install wizard.
257
- * Live notifications in Admin toolbar are now disabled by default (performance enhancement).
258
- * Amazon AWS library is disabled by default. Users will be alerted to initialize it from wp-config.php if required.
259
- * Added the ";" as separator in the meta data section in CSV reports.
260
- * Removed the event ID 4-digits limit to allow users to declare event IDs with 5+ digits.
261
- * CSV reports now show the right username & display name, as configured in the plugin settings.
262
-
263
  **Bug fixes**
264
- * Plugin was not capturing user logouts from Ultimate Member plugin profile page.
265
- * Plugin was reporting wrong directory name in URL in event ID 2101 on a multisite environment.
266
- * In specific scenarios the plugin reported a custom field name as NULL in event ID 2054.
267
- * Fixed the broken link to user profile page in event ID 4001.
268
- * Event ID 4029 (user sent a password request) had the wrong Event Type.
269
-
270
- Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
 
 
 
6
  Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 4.4
8
  Tested up to: 5.8
9
+ Stable tag: 4.3.3
10
  Requires PHP: 7.0
11
 
12
  The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
208
 
209
  == Changelog ==
210
 
211
+ = 4.3.3 (2021-10-13) =
212
+
213
+ Release notes: [WP Activity Log 4.3.3: Plugin setting importer & exporter, support for REST API](https://wpactivitylog.com/wsal-4-3-3/)
214
+
215
+ **New activity log event IDs**
216
+ * ID 5028: Enabled or disabled automatic updates for a plugin.
217
+ * ID 5029: Enabled or disabled automatic updates for a theme.
218
+
219
+ **New activity log event IDs for notifications in the plugin**
220
+ * ID 6310: Changed the status of the "Daily activity log summary email".
221
+ * ID 6311: Modified the list of recepients of the "Daily activity log summary email".
222
+ * ID 6312: Changed the status of a built in notification.
223
+ * ID 6313: Changed the recepient(s) of a built in notification.
224
+ * ID 6314: Added a new custom notification.
225
+ * ID 6315: Modified a custom notification.
226
+ * ID 6316: Changed the status of a custom notification.
227
+ * ID 6317: Deleted a custom notification.
228
+ * ID 6318: Modified the default notification template.
229
+
230
+ **New activity log event IDs for integrations & activity log mirrors**
231
+ * ID 6320: Added a new integration connection.
232
+ * ID 6321: Modified an integration connection.
233
+ * ID 6322: Deleted an integration connection.
234
+ * ID 6323: Added a new activity log mirror.
235
+ * ID 6324: Modified an activity log mirror.
236
+ * ID 6325: Changed the status of an activity log morror (disabled/enabled).
237
+ * ID 6326: Deleted an activity log mirror.
238
+ * ID 6327: Changed the statues of the setting "Logging events to database".
239
 
240
  **New features**
241
+ * Plugin settings exporter & importer: easily export and import the plugin's settings configuration for backups, migration etc.
242
+ * Options to delete specific data from the activity log, such as all events about a user, or an IP address.
243
+ * Plugin keeps log of authenticated user changes done to the website via the REST API.
244
+ * New button to only terminate the users' sessions that match the search criteria in Logged in users' session.
245
+ * Added the new {first_name} and {last_name} tags to the custom notifications template.
246
+ * New hook to [edit the activity log event data before it is sent to mirrors](https://wpactivitylog.com/support/kb/list-hooks/#wsal_event_data_before_mirror).
 
 
 
 
 
247
 
248
  **Improvements**
249
+ * Logs from subsites on multisite networks can be mirrored to AWS Cloudwatch as individual log streams.
250
+ * [Activity log retention policy](https://wpactivitylog.com/support/kb/activity-log-retention-policies/) can now be specified by the number of days.
251
+ * Plugin now reports user role changes done via the "Members" plugin (by Memberpress).
252
+ * Event ID 2010 (user uploaded a file) now includes a link to the uploaded attachment.
253
+ * Added "Blog ID" and "Site URL" to mirrored activity log events.
254
+ * Hover over prompt for users entries in activity log viewer now displays more information about the user.
255
+ * Improved the handling of post meta changes ([support ticket](https://wordpress.org/support/topic/issue-with-hook-name-and-param-callback/)).
256
+ * Renamed menu entry "BD & Integrations" to "Integrations" to better reflect its purpose.
257
+ * Contact us link in install wizard now points to contact us page on website instead of homepage.
258
+ * Auto complete filters in Reports now check up to 100 records.
259
+ * Added additional database checks to ensure all data is removed from database upon uninstall on a multisite network.
260
+ * Improved coverage for the Members plugin - plugin now reports user role changes done via the Members plugin.
261
+ * Updated the "Help" link in the first time install wizard.
262
+ * change the "wsal_inactive_sessions_test" database override to a filter.
263
+ * Improved in-context help messages in plugin settings and ensured all titles are uniform.
264
+
 
 
 
265
  **Bug fixes**
266
+ * Fixed a PHP warning which happened when visiting the plugin's settings pages ([support ticket](https://wordpress.org/support/topic/version-4-3-2-php-warning/)).
267
+ * Fixed PHP notice which happened when visiting an archive page ([support ticket](https://wordpress.org/support/topic/undefined-index-posturl-on-a-page-type-post/)).
268
+ * Event IDs for "integration connections" changes wrongly reported for changes in "activity log mirroring connection" changes.
269
+ * Fixed: Activity log retention policies appearing twice in some scenarios.
270
+ * Fixed: Activity log retention settings and archive settings popup logic.
271
+ * Added the missing argument in a multisite network that were creating a PHP error during plugin uninstall.
272
+ * Setting the setting "Remove all data on uninstall" to "No" no longer leaves no option selected.
273
+
274
+
275
+ Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wpactivitylog.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 Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
- * Version: 4.3.2
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: https://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -49,7 +49,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
49
  *
50
  * @var string
51
  */
52
- public $version = '4.3.2';
53
 
54
  /**
55
  * Plugin constants.
@@ -352,10 +352,8 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
352
  }
353
 
354
  // other contexts/scenarios
355
-
356
- // If this is a rest API request and the user is not logged in, bail.
357
- if ( self::is_rest_api() && ! is_user_logged_in() ) {
358
- return false;
359
  }
360
 
361
  return true;
@@ -424,6 +422,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
424
  require_once 'classes/ThirdPartyExtensions/WPFormsExtension.php';
425
  require_once 'classes/ThirdPartyExtensions/WooCommerceExtension.php';
426
  require_once 'classes/ThirdPartyExtensions/GravityFormsExtension.php';
 
427
  }
428
 
429
  // Connectors.
@@ -514,6 +513,9 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
514
  $bbpress_addon = new WSAL_BBPressExtension();
515
  $wpforms_addon = new WSAL_WPFormsExtension();
516
  $gravityforms_addon = new WSAL_GravityFormsExtension();
 
 
 
517
  }
518
 
519
  // Extensions which are both admin and frontend based.
@@ -663,9 +665,6 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
663
  // Add filters to customize freemius welcome message.
664
  wsal_freemius()->add_filter( 'connect_message', array( $this, 'wsal_freemius_connect_message' ), 10, 6 );
665
  wsal_freemius()->add_filter( 'connect_message_on_update', array( $this, 'wsal_freemius_update_connect_message' ), 10, 6 );
666
- wsal_freemius()->add_filter( 'trial_promotion_message', array( $this, 'freemius_trial_promotion_message' ), 10, 1 );
667
- wsal_freemius()->add_filter( 'show_first_trial_after_n_sec', array( $this, 'change_show_first_trial_period' ), 10, 1 );
668
- wsal_freemius()->add_filter( 'reshow_trial_after_every_n_sec', array( $this, 'change_reshow_trial_period' ), 10, 1 );
669
  wsal_freemius()->add_filter( 'show_admin_notice', array( $this, 'freemius_show_admin_notice' ), 10, 2 );
670
  wsal_freemius()->add_filter( 'show_delegation_option', '__return_false' );
671
  wsal_freemius()->add_filter( 'enable_per_site_activation', '__return_false' );
@@ -934,19 +933,17 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
934
  * @return string
935
  */
936
  public function wsal_freemius_connect_message( $message, $user_first_name, $plugin_title, $user_login, $site_link, $_freemius_link ) {
937
- $freemius_link = '<a href="https://wpactivitylog.com/support/kb/non-sensitive-diagnostic-data/" target="_blank" tabindex="1">freemius.com</a>';
938
- return sprintf(
939
- /* translators: Username */
940
- esc_html__( 'Hey %1$s', 'wp-security-audit-log' ) . ',<br>' .
941
- esc_html__( 'Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com.', 'wp-security-audit-log' ) .
942
- '<br /><br /><strong>' . esc_html__( 'Note: ', 'wp-security-audit-log' ) . '</strong>' .
943
- esc_html__( 'NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS.', 'wp-security-audit-log' ),
944
- $user_first_name,
945
- '<b>' . $plugin_title . '</b>',
946
- '<b>' . $user_login . '</b>',
947
- $site_link,
948
- $freemius_link
949
  );
 
 
 
 
 
 
950
  }
951
 
952
  /**
@@ -958,68 +955,31 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
958
  * @param string $user_login - Username.
959
  * @param string $site_link - Site link.
960
  * @param string $_freemius_link - Freemius link.
961
- * @return string
962
- */
963
- public function wsal_freemius_update_connect_message( $message, $user_first_name, $plugin_title, $user_login, $site_link, $_freemius_link ) {
964
- $freemius_link = '<a href="https://wpactivitylog.com/support/kb/non-sensitive-diagnostic-data/" target="_blank" tabindex="1">freemius.com</a>';
965
- return sprintf(
966
- /* translators: Username */
967
- esc_html__( 'Hey %1$s', 'wp-security-audit-log' ) . ',<br>' .
968
- /* translators: 1: Plugin name. 2: Freemius link. */
969
- esc_html__( 'Please help us improve %2$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %5$s, a diagnostic tracking service we use. If you skip this, that\'s okay! %2$s will still work just fine.', 'wp-security-audit-log' ) .
970
- '<br /><br /><strong>' . esc_html__( 'Note: ', 'wp-security-audit-log' ) . '</strong>' .
971
- esc_html__( 'NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS.', 'wp-security-audit-log' ),
972
- $user_first_name,
973
- '<b>' . $plugin_title . '</b>',
974
- '<b>' . $user_login . '</b>',
975
- $site_link,
976
- $freemius_link
977
- );
978
- }
979
-
980
- /**
981
- * Filter trial message of Freemius.
982
  *
983
- * @param string $_message – Trial message.
984
  * @return string
985
- * @since 3.2.3
986
- */
987
- public function freemius_trial_promotion_message( $_message ) {
988
- // Message.
989
- $message = sprintf(
990
- /* translators: Plugin name */
991
- __( 'Get a free 7-day trial of the premium edition of %s. No credit card required, no commitments!', 'wp-security-audit-log' ),
992
- '<strong>' . __( 'WP Activity Log', 'wp-security-audit-log' ) . '</strong>'
993
- );
994
-
995
- // Trial link.
996
- $message .= '<a style="margin-left: 10px; vertical-align: super;" href="' . wsal_freemius()->get_trial_url() . '"><button class="button button-primary">' . __( 'Start free trial', 'wp-security-audit-log' ) . ' &nbsp;&#10140;</button></a>';
997
- return $message;
998
- }
999
-
1000
- /**
1001
- * Filter the time period to show the first trial message.
1002
- * Display it after 20 days.
1003
  *
1004
- * @param int $day_in_sec – Time period in seconds.
1005
- * @return int
1006
- * @since 3.2.3
1007
  */
1008
- public function change_show_first_trial_period( $day_in_sec ) {
1009
- return 20 * DAY_IN_SECONDS;
1010
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
 
1012
- /**
1013
- * Filter the time period to re-show the trial message.
1014
- * Display it after 60 days.
1015
- *
1016
- * @param int $thirty_days_in_sec – Time period in seconds.
1017
- * @return int
1018
- * @since 3.2.3
1019
- */
1020
- public function change_reshow_trial_period( $thirty_days_in_sec ) {
1021
- return 60 * DAY_IN_SECONDS;
1022
- }
1023
 
1024
  /**
1025
  * Fremius Admin Notice View Permission.
4
  * Plugin URI: https://wpactivitylog.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 Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
+ * Version: 4.3.3
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: https://www.wpwhitesecurity.com/
10
  * License: GPL2
49
  *
50
  * @var string
51
  */
52
+ public $version = '4.3.3';
53
 
54
  /**
55
  * Plugin constants.
352
  }
353
 
354
  // other contexts/scenarios
355
+ if ( self::is_rest_api() ) {
356
+ return is_user_logged_in();
 
 
357
  }
358
 
359
  return true;
422
  require_once 'classes/ThirdPartyExtensions/WPFormsExtension.php';
423
  require_once 'classes/ThirdPartyExtensions/WooCommerceExtension.php';
424
  require_once 'classes/ThirdPartyExtensions/GravityFormsExtension.php';
425
+ require_once 'classes/ThirdPartyExtensions/TablePressExtension.php';
426
  }
427
 
428
  // Connectors.
513
  $bbpress_addon = new WSAL_BBPressExtension();
514
  $wpforms_addon = new WSAL_WPFormsExtension();
515
  $gravityforms_addon = new WSAL_GravityFormsExtension();
516
+
517
+ // Comment out untill release.
518
+ //$tablepress_addon = new WSAL_TablePressExtension();
519
  }
520
 
521
  // Extensions which are both admin and frontend based.
665
  // Add filters to customize freemius welcome message.
666
  wsal_freemius()->add_filter( 'connect_message', array( $this, 'wsal_freemius_connect_message' ), 10, 6 );
667
  wsal_freemius()->add_filter( 'connect_message_on_update', array( $this, 'wsal_freemius_update_connect_message' ), 10, 6 );
 
 
 
668
  wsal_freemius()->add_filter( 'show_admin_notice', array( $this, 'freemius_show_admin_notice' ), 10, 2 );
669
  wsal_freemius()->add_filter( 'show_delegation_option', '__return_false' );
670
  wsal_freemius()->add_filter( 'enable_per_site_activation', '__return_false' );
933
  * @return string
934
  */
935
  public function wsal_freemius_connect_message( $message, $user_first_name, $plugin_title, $user_login, $site_link, $_freemius_link ) {
936
+ $result = sprintf(
937
+ /* translators: User's first name */
938
+ esc_html__( 'Hey %s', 'wp-security-audit-log' ),
939
+ $user_first_name
 
 
 
 
 
 
 
 
940
  );
941
+ $result .= ',<br>';
942
+ $result .= esc_html__( 'Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com.', 'wp-security-audit-log' ) .
943
+ $result .= '<br /><br /><strong>' . esc_html__( 'Note: ', 'wp-security-audit-log' ) . '</strong>';
944
+ $result .= esc_html__( 'NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS.', 'wp-security-audit-log' );
945
+
946
+ return $result;
947
  }
948
 
949
  /**
955
  * @param string $user_login - Username.
956
  * @param string $site_link - Site link.
957
  * @param string $_freemius_link - Freemius link.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
958
  *
 
959
  * @return string
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
960
  *
961
+ * @since latest
 
 
962
  */
963
+ public static function wsal_freemius_update_connect_message( $message, $user_first_name, $plugin_title, $user_login, $site_link, $_freemius_link ) {
964
+ $result = sprintf(
965
+ /* translators: User's first name */
966
+ esc_html__( 'Hey %s', 'wp-security-audit-log' ),
967
+ $user_first_name
968
+ );
969
+ $result .= ',<br>';
970
+ $result .= sprintf(
971
+ /* translators: 1: Plugin name. 2: Plugin name. 2: Freemius link. 4: Plugin name. */
972
+ esc_html__( 'Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that\'s okay! %2$s will still work just fine.', 'wp-security-audit-log' ) .
973
+ '<strong>' . $plugin_title . '</strong>',
974
+ '<strong>' . $plugin_title . '</strong>',
975
+ '<a href="https://wpactivitylog.com/support/kb/non-sensitive-diagnostic-data/" target="_blank" tabindex="1">freemius.com</a>',
976
+ '<strong>' . $plugin_title . '</strong>',
977
+ );
978
+ $result .= '<br /><br /><strong>' . esc_html__( 'Note: ', 'wp-security-audit-log' ) . '</strong>';
979
+ $result .= esc_html__( 'NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS.', 'wp-security-audit-log' );
980
 
981
+ return $result;
982
+ }
 
 
 
 
 
 
 
 
 
983
 
984
  /**
985
  * Fremius Admin Notice View Permission.