WP Security Audit Log - Version 3.2.5

Version Description

(2018-11-15) =

Release Notes: Announcing Activity Log for MainWP

  • New Events for the activity log

    • Event ID 2127: Changed the name of a category
    • Event ID 2128: Changed the slug of a category
  • New Functionality

    • Added support in the plugin for the Activity Log for MainWP extension.
  • Bug Fixes

    • Fixed an issue in the licensing which allowed users with Starter plan to access features from the professional plan.
Download this release

Release Info

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

Code changes from version 3.2.4 to 3.2.5

classes/AlertManager.php CHANGED
@@ -49,6 +49,15 @@ final class WSAL_AlertManager {
49
  */
50
  private static $log_events_schedule_hook = 'wsal_log_events_ext_db';
51
 
 
 
 
 
 
 
 
 
 
52
  /**
53
  * Create new AlertManager instance.
54
  *
@@ -641,6 +650,91 @@ final class WSAL_AlertManager {
641
  }
642
  }
643
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
  /**
645
  * Get latest events from DB.
646
  *
49
  */
50
  private static $log_events_schedule_hook = 'wsal_log_events_ext_db';
51
 
52
+ /**
53
+ * WP Users
54
+ *
55
+ * Store WP Users for caching purposes.
56
+ *
57
+ * @var array
58
+ */
59
+ private $wp_users = array();
60
+
61
  /**
62
  * Create new AlertManager instance.
63
  *
650
  }
651
  }
652
 
653
+ /**
654
+ * Return alerts for MainWP Extension.
655
+ *
656
+ * @param integer $limit – Number of alerts to retrieve.
657
+ * @return stdClass
658
+ */
659
+ public function get_mainwp_extension_events( $limit = 100 ) {
660
+ $mwp_events = new stdClass();
661
+
662
+ // Check if limit is not empty.
663
+ if ( empty( $limit ) ) {
664
+ return $mwp_events;
665
+ }
666
+
667
+ // Initiate query occurrence object.
668
+ $events_query = new WSAL_Models_OccurrenceQuery();
669
+ $events_query->addCondition( 'site_id = %s ', 1 );
670
+ $events_query->addOrderBy( 'created_on', true );
671
+ $events_query->setLimit( $limit );
672
+ $events = $events_query->getAdapter()->Execute( $events_query );
673
+
674
+ if ( ! empty( $events ) && is_array( $events ) ) {
675
+ foreach ( $events as $event ) {
676
+ // Get event meta.
677
+ $meta_data = $event->GetMetaArray();
678
+ $meta_data['UserData'] = $this->get_event_user_data( $event->GetUsername() );
679
+
680
+ $mwp_events->events[ $event->id ] = new stdClass();
681
+ $mwp_events->events[ $event->id ]->id = $event->id;
682
+ $mwp_events->events[ $event->id ]->alert_id = $event->alert_id;
683
+ $mwp_events->events[ $event->id ]->created_on = $event->created_on;
684
+ $mwp_events->events[ $event->id ]->meta_data = $meta_data;
685
+ }
686
+ }
687
+
688
+ return $mwp_events;
689
+ }
690
+
691
+ /**
692
+ * Return user data array of the events.
693
+ *
694
+ * @param string $username – Username.
695
+ * @return stdClass
696
+ */
697
+ public function get_event_user_data( $username ) {
698
+ // User data.
699
+ $user_data = new stdClass();
700
+
701
+ // Handle WSAL usernames.
702
+ if ( empty( $username ) ) {
703
+ $user_data->username = 'System';
704
+ } elseif ( 'Plugin' === $username ) {
705
+ $user_data->username = 'Plugin';
706
+ } elseif ( 'Plugins' === $username ) {
707
+ $user_data->username = 'Plugins';
708
+ } elseif ( 'Website Visitor' === $username ) {
709
+ $user_data->username = 'Website Visitor';
710
+ } else {
711
+ // Check WP user.
712
+ if ( isset( $this->wp_users[ $username ] ) ) {
713
+ // Retrieve from users cache.
714
+ $user = $this->wp_users[ $username ];
715
+ } else {
716
+ // Get user from WP.
717
+ $user = get_user_by( 'login', $username );
718
+
719
+ // Store the object in class member.
720
+ $this->wp_users[ $username ] = $user;
721
+ }
722
+
723
+ // Set user data.
724
+ if ( $user && $user instanceof WP_User ) {
725
+ $user_data->user_id = $user->ID;
726
+ $user_data->username = $user->user_login;
727
+ $user_data->first_name = $user->first_name;
728
+ $user_data->last_name = $user->last_name;
729
+ $user_data->display_name = $user->display_name;
730
+ $user_data->user_email = $user->user_email;
731
+ } else {
732
+ $user_data->username = 'System';
733
+ }
734
+ }
735
+ return $user_data;
736
+ }
737
+
738
  /**
739
  * Get latest events from DB.
740
  *
classes/AuditLogListView.php CHANGED
@@ -806,9 +806,6 @@ class WSAL_AuditLogListView extends WP_List_Table {
806
  }
807
  }
808
 
809
- // @todo Modify $query instead
810
- // @deprecated
811
- // $data = array_slice($data, ($this->get_pagenum() - 1) * $per_page, $per_page);
812
  $query->setOffset( ( $this->get_pagenum() - 1 ) * $per_page );
813
  $query->setLimit( $per_page );
814
 
806
  }
807
  }
808
 
 
 
 
809
  $query->setOffset( ( $this->get_pagenum() - 1 ) * $per_page );
810
  $query->setLimit( $per_page );
811
 
classes/Sensors/Content.php CHANGED
@@ -174,60 +174,92 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
174
  * @since 2.6.9
175
  */
176
  public function event_terms_rename( $data, $term_id, $taxonomy, $args ) {
177
- // Check if the taxonomy is term.
178
- if ( 'post_tag' !== $taxonomy ) {
179
- return $data;
180
- }
181
-
182
- // Get data.
183
- $new_name = ( isset( $data['name'] ) ) ? $data['name'] : false;
184
- $new_slug = ( isset( $data['slug'] ) ) ? $data['slug'] : false;
185
- $new_desc = ( isset( $args['description'] ) ) ? $args['description'] : false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
186
 
187
- // Get old data.
188
- $term = get_term( $term_id, $taxonomy );
189
- $old_name = $term->name;
190
- $old_slug = $term->slug;
191
- $old_desc = $term->description;
192
- $term_link = $this->get_tag_link( $term_id );
 
 
 
 
 
193
 
194
- // Update if both names are not same.
195
- if ( $old_name !== $new_name ) {
196
- $this->plugin->alerts->Trigger(
197
- 2123, array(
198
- 'old_name' => $old_name,
199
- 'new_name' => $new_name,
200
- 'TagLink' => $term_link,
201
- )
202
- );
203
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
 
205
- // Update if both slugs are not same.
206
- if ( $old_slug !== $new_slug ) {
207
- $this->plugin->alerts->Trigger(
208
- 2124, array(
209
- 'tag' => $new_name,
210
- 'old_slug' => $old_slug,
211
- 'new_slug' => $new_slug,
212
- 'TagLink' => $term_link,
213
- )
214
- );
 
215
  }
216
 
217
- // Update if both descriptions are not same.
218
- if ( $old_desc !== $new_desc ) {
219
- $this->plugin->alerts->Trigger(
220
- 2125, array(
221
- 'tag' => $new_name,
222
- 'TagLink' => $term_link,
223
- 'old_desc' => $old_desc,
224
- 'new_desc' => $new_desc,
225
- 'ReportText' => $old_desc . '|' . $new_desc,
226
- )
227
- );
228
- }
229
  return $data;
230
-
231
  }
232
 
233
  /**
174
  * @since 2.6.9
175
  */
176
  public function event_terms_rename( $data, $term_id, $taxonomy, $args ) {
177
+ // Check if the taxonomy is `post tag`.
178
+ if ( 'post_tag' === $taxonomy ) {
179
+ // Get data.
180
+ $new_name = ( isset( $data['name'] ) ) ? $data['name'] : false;
181
+ $new_slug = ( isset( $data['slug'] ) ) ? $data['slug'] : false;
182
+ $new_desc = ( isset( $args['description'] ) ) ? $args['description'] : false;
183
+
184
+ // Get old data.
185
+ $term = get_term( $term_id, $taxonomy );
186
+ $old_name = $term->name;
187
+ $old_slug = $term->slug;
188
+ $old_desc = $term->description;
189
+ $term_link = $this->get_tag_link( $term_id );
190
+
191
+ // Update if both names are not same.
192
+ if ( $old_name !== $new_name ) {
193
+ $this->plugin->alerts->Trigger(
194
+ 2123, array(
195
+ 'old_name' => $old_name,
196
+ 'new_name' => $new_name,
197
+ 'TagLink' => $term_link,
198
+ )
199
+ );
200
+ }
201
 
202
+ // Update if both slugs are not same.
203
+ if ( $old_slug !== $new_slug ) {
204
+ $this->plugin->alerts->Trigger(
205
+ 2124, array(
206
+ 'tag' => $new_name,
207
+ 'old_slug' => $old_slug,
208
+ 'new_slug' => $new_slug,
209
+ 'TagLink' => $term_link,
210
+ )
211
+ );
212
+ }
213
 
214
+ // Update if both descriptions are not same.
215
+ if ( $old_desc !== $new_desc ) {
216
+ $this->plugin->alerts->Trigger(
217
+ 2125, array(
218
+ 'tag' => $new_name,
219
+ 'TagLink' => $term_link,
220
+ 'old_desc' => $old_desc,
221
+ 'new_desc' => $new_desc,
222
+ 'ReportText' => $old_desc . '|' . $new_desc,
223
+ )
224
+ );
225
+ }
226
+ } elseif ( 'category' === $taxonomy ) { // Check if the taxonomy is `category`.
227
+ // Get new data.
228
+ $new_name = ( isset( $data['name'] ) ) ? $data['name'] : false;
229
+ $new_slug = ( isset( $data['slug'] ) ) ? $data['slug'] : false;
230
+
231
+ // Get old data.
232
+ $term = get_term( $term_id, $taxonomy );
233
+ $old_name = $term->name;
234
+ $old_slug = $term->slug;
235
+ $term_link = $this->get_tag_link( $term_id );
236
+
237
+ // Log event if both names are not same.
238
+ if ( $old_name !== $new_name ) {
239
+ $this->plugin->alerts->Trigger(
240
+ 2127, array(
241
+ 'old_name' => $old_name,
242
+ 'new_name' => $new_name,
243
+ 'cat_link' => $term_link,
244
+ )
245
+ );
246
+ }
247
 
248
+ // Log event if both slugs are not same.
249
+ if ( $old_slug !== $new_slug ) {
250
+ $this->plugin->alerts->Trigger(
251
+ 2128, array(
252
+ 'CategoryName' => $new_name,
253
+ 'old_slug' => $old_slug,
254
+ 'new_slug' => $new_slug,
255
+ 'cat_link' => $term_link,
256
+ )
257
+ );
258
+ }
259
  }
260
 
261
+ // Return data for the filter.
 
 
 
 
 
 
 
 
 
 
 
262
  return $data;
 
263
  }
264
 
265
  /**
classes/ViewManager.php CHANGED
@@ -58,13 +58,18 @@ class WSAL_ViewManager {
58
  $skip_views = array();
59
 
60
  // Array of views to skip for premium version.
61
- if ( wsal_freemius()->can_use_premium_code() || wsal_freemius()->is_plan__premium_only( 'starter' ) ) {
62
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/EmailNotifications.php';
 
 
 
 
 
 
63
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/ExternalDB.php';
64
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Licensing.php';
65
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/LogInUsers.php';
66
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Reports.php';
67
- $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Search.php';
68
  }
69
 
70
  /**
@@ -118,7 +123,7 @@ class WSAL_ViewManager {
118
  // Reorder WSAL submenu.
119
  add_filter( 'custom_menu_order', array( $this, 'reorder_wsal_submenu' ), 10, 1 );
120
 
121
- if ( wsal_freemius()->can_use_premium_code() || wsal_freemius()->is_plan__premium_only( 'starter' ) ) {
122
  if ( $this->_plugin->settings->is_admin_bar_notif() ) {
123
  add_action( 'admin_bar_menu', array( $this, 'live_notifications__premium_only' ), 1000, 1 );
124
  add_action( 'wp_ajax_wsal_adminbar_events_refresh', array( $this, 'wsal_adminbar_events_refresh__premium_only' ) );
58
  $skip_views = array();
59
 
60
  // Array of views to skip for premium version.
61
+ if ( wsal_freemius()->is_plan_or_trial__premium_only( 'starter' ) ) {
62
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/EmailNotifications.php';
63
+ $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Search.php';
64
+ }
65
+
66
+ if ( wsal_freemius()->is_plan_or_trial__premium_only( 'professional' ) ) {
67
+ $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/EmailNotifications.php';
68
+ $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Search.php';
69
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/ExternalDB.php';
70
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Licensing.php';
71
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/LogInUsers.php';
72
  $skip_views[] = $this->_plugin->GetBaseDir() . 'classes/Views/Reports.php';
 
73
  }
74
 
75
  /**
123
  // Reorder WSAL submenu.
124
  add_filter( 'custom_menu_order', array( $this, 'reorder_wsal_submenu' ), 10, 1 );
125
 
126
+ if ( wsal_freemius()->is__premium_only() ) {
127
  if ( $this->_plugin->settings->is_admin_bar_notif() ) {
128
  add_action( 'admin_bar_menu', array( $this, 'live_notifications__premium_only' ), 1000, 1 );
129
  add_action( 'wp_ajax_wsal_adminbar_events_refresh', array( $this, 'wsal_adminbar_events_refresh__premium_only' ) );
defaults.php CHANGED
@@ -220,6 +220,8 @@ function wsaldefaults_wsal_init( WpSecurityAuditLog $wsal ) {
220
  array( 2023, E_NOTICE, __( 'User created new category', 'wp-security-audit-log' ), __( 'Created a new category called %CategoryName%. Category slug is %Slug%. %CategoryLink%.', 'wp-security-audit-log' ) ),
221
  array( 2024, E_WARNING, __( 'User deleted category', 'wp-security-audit-log' ), __( 'Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink%.', 'wp-security-audit-log' ) ),
222
  array( 2052, E_NOTICE, __( 'Changed the parent of a category', 'wp-security-audit-log' ), __( 'Changed the parent of the category %CategoryName% from %OldParent% to %NewParent%. %CategoryLink%.', 'wp-security-audit-log' ) ),
 
 
223
  array( 2053, E_CRITICAL, __( 'User created a custom field for a post', 'wp-security-audit-log' ), __( 'Created a new custom field called %MetaKey% with value %MetaValue% in the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%.<br>%MetaLink%.', 'wp-security-audit-log' ) ),
224
  array( 2054, E_CRITICAL, __( 'User updated a custom field value for a post', 'wp-security-audit-log' ), __( 'Modified the value of the custom field %MetaKey%%ReportText% in the %PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. %EditorLinkPost%.<br>%MetaLink%.', 'wp-security-audit-log' ) ),
225
  array( 2055, E_CRITICAL, __( 'User deleted a custom field from a post', 'wp-security-audit-log' ), __( 'Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%.', 'wp-security-audit-log' ) ),
220
  array( 2023, E_NOTICE, __( 'User created new category', 'wp-security-audit-log' ), __( 'Created a new category called %CategoryName%. Category slug is %Slug%. %CategoryLink%.', 'wp-security-audit-log' ) ),
221
  array( 2024, E_WARNING, __( 'User deleted category', 'wp-security-audit-log' ), __( 'Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink%.', 'wp-security-audit-log' ) ),
222
  array( 2052, E_NOTICE, __( 'Changed the parent of a category', 'wp-security-audit-log' ), __( 'Changed the parent of the category %CategoryName% from %OldParent% to %NewParent%. %CategoryLink%.', 'wp-security-audit-log' ) ),
223
+ array( 2127, E_WARNING, __( 'User changed category name', 'wp-security-audit-log' ), __( 'Changed the name of the category %old_name% to %new_name%.', 'wp-security-audit-log' ) ),
224
+ array( 2128, E_CRITICAL, __( 'User changed category slug', 'wp-security-audit-log' ), __( 'Changed the slug of the category %CategoryName% from %old_slug% to %new_slug%.', 'wp-security-audit-log' ) ),
225
  array( 2053, E_CRITICAL, __( 'User created a custom field for a post', 'wp-security-audit-log' ), __( 'Created a new custom field called %MetaKey% with value %MetaValue% in the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%.<br>%MetaLink%.', 'wp-security-audit-log' ) ),
226
  array( 2054, E_CRITICAL, __( 'User updated a custom field value for a post', 'wp-security-audit-log' ), __( 'Modified the value of the custom field %MetaKey%%ReportText% in the %PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. %EditorLinkPost%.<br>%MetaLink%.', 'wp-security-audit-log' ) ),
227
  array( 2055, E_CRITICAL, __( 'User deleted a custom field from a post', 'wp-security-audit-log' ), __( 'Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%.', 'wp-security-audit-log' ) ),
languages/wp-security-audit-log.pot CHANGED
@@ -3,14 +3,14 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: WP Security Audit Log\n"
6
- "POT-Creation-Date: 2018-10-04 07:04+0100\n"
7
- "PO-Revision-Date: 2018-10-04 07:03+0100\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.1.1\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: wp-security-audit-log.php\n"
@@ -22,32 +22,32 @@ msgstr ""
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #. translators: Event ID
25
- #: classes/AlertManager.php:247
26
  #, php-format
27
  msgid "Event with code %d has not be registered."
28
  msgstr ""
29
 
30
- #: classes/AlertManager.php:302
31
  #, php-format
32
  msgid "Event %s already registered with WP Security Audit Log."
33
  msgstr ""
34
 
35
- #: classes/AlertManager.php:337
36
  msgid ""
37
  "You have custom events that are using the same ID or IDs which are already "
38
  "registered in the plugin, so they have been disabled."
39
  msgstr ""
40
 
41
- #: classes/AlertManager.php:340
42
  #, php-format
43
  msgid "%4$s to help you solve this issue."
44
  msgstr ""
45
 
46
- #: classes/AlertManager.php:342
47
  msgid "ERROR:"
48
  msgstr ""
49
 
50
- #: classes/AlertManager.php:344
51
  msgid "Contact us"
52
  msgstr ""
53
 
@@ -148,7 +148,7 @@ msgstr ""
148
  msgid "Plugin"
149
  msgstr ""
150
 
151
- #: classes/AuditLogListView.php:442 defaults.php:345
152
  msgid "Plugins"
153
  msgstr ""
154
 
@@ -157,7 +157,7 @@ msgid "Website Visitor"
157
  msgstr ""
158
 
159
  #: classes/AuditLogListView.php:450 classes/Views/ToggleAlerts.php:391
160
- #: classes/Views/ToggleAlerts.php:417 defaults.php:378
161
  msgid "System"
162
  msgstr ""
163
 
@@ -192,7 +192,7 @@ msgstr ""
192
  msgid "Contact us on %s for assistance"
193
  msgstr ""
194
 
195
- #: classes/AuditLogListView.php:871
196
  msgid "Select All"
197
  msgstr ""
198
 
@@ -253,16 +253,16 @@ msgstr ""
253
  msgid "More Information"
254
  msgstr ""
255
 
256
- #: classes/Sensors/Content.php:1252 classes/Sensors/Content.php:1260
257
  #: classes/Sensors/WooCommerce.php:599 classes/Sensors/WooCommerce.php:605
258
  msgid "Password Protected"
259
  msgstr ""
260
 
261
- #: classes/Sensors/Content.php:1254 classes/Sensors/Content.php:1262
262
  msgid "Public"
263
  msgstr ""
264
 
265
- #: classes/Sensors/Content.php:1256 classes/Sensors/Content.php:1264
266
  msgid "Private"
267
  msgstr ""
268
 
@@ -959,7 +959,7 @@ msgstr ""
959
  msgid "Login Page Notification"
960
  msgstr ""
961
 
962
- #: classes/Views/Settings.php:534 wp-security-audit-log.php:1298
963
  msgid ""
964
  "For security and auditing purposes, a record of all of your logged-in "
965
  "actions and changes within the WordPress dashboard will be recorded in an "
@@ -2250,38 +2250,38 @@ msgid ""
2250
  msgstr ""
2251
 
2252
  #: classes/Views/ToggleAlerts.php:200 classes/Views/ToggleAlerts.php:232
2253
- #: defaults.php:254
2254
  msgid "Custom Post Types"
2255
  msgstr ""
2256
 
2257
  #: classes/Views/ToggleAlerts.php:200 classes/Views/ToggleAlerts.php:232
2258
- #: defaults.php:294
2259
  msgid "Pages"
2260
  msgstr ""
2261
 
2262
  #: classes/Views/ToggleAlerts.php:235 classes/Views/ToggleAlerts.php:242
2263
- #: classes/Views/ToggleAlerts.php:300 defaults.php:482
2264
  msgid "BBPress Forum"
2265
  msgstr ""
2266
 
2267
  #: classes/Views/ToggleAlerts.php:236 classes/Views/ToggleAlerts.php:249
2268
- #: classes/Views/ToggleAlerts.php:313 defaults.php:545
2269
  msgid "WooCommerce"
2270
  msgstr ""
2271
 
2272
  #: classes/Views/ToggleAlerts.php:237 classes/Views/ToggleAlerts.php:256
2273
  #: classes/Views/ToggleAlerts.php:313 classes/Views/ToggleAlerts.php:321
2274
- #: defaults.php:511
2275
  msgid "WooCommerce Products"
2276
  msgstr ""
2277
 
2278
  #: classes/Views/ToggleAlerts.php:238 classes/Views/ToggleAlerts.php:263
2279
- #: classes/Views/ToggleAlerts.php:328 defaults.php:560
2280
  msgid "Yoast SEO"
2281
  msgstr ""
2282
 
2283
  #: classes/Views/ToggleAlerts.php:239 classes/Views/ToggleAlerts.php:272
2284
- #: classes/Views/ToggleAlerts.php:341 defaults.php:459
2285
  msgid "MultiSite"
2286
  msgstr ""
2287
 
@@ -3174,2338 +3174,2356 @@ msgid ""
3174
  msgstr ""
3175
 
3176
  #: defaults.php:223
3177
- msgid "User created a custom field for a post"
3178
  msgstr ""
3179
 
3180
  #: defaults.php:223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3181
  msgid ""
3182
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3183
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3184
  "%EditorLinkPost%.<br>%MetaLink%."
3185
  msgstr ""
3186
 
3187
- #: defaults.php:224
3188
  msgid "User updated a custom field value for a post"
3189
  msgstr ""
3190
 
3191
- #: defaults.php:224
3192
  msgid ""
3193
  "Modified the value of the custom field %MetaKey%%ReportText% in the "
3194
  "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
3195
  "%EditorLinkPost%.<br>%MetaLink%."
3196
  msgstr ""
3197
 
3198
- #: defaults.php:225
3199
  msgid "User deleted a custom field from a post"
3200
  msgstr ""
3201
 
3202
- #: defaults.php:225
3203
  msgid ""
3204
  "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
3205
  "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
3206
  msgstr ""
3207
 
3208
- #: defaults.php:226
3209
  msgid "User updated a custom field name for a post"
3210
  msgstr ""
3211
 
3212
- #: defaults.php:226
3213
  msgid ""
3214
  "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
3215
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3216
  "%EditorLinkPost%.<br>%MetaLink%."
3217
  msgstr ""
3218
 
3219
- #: defaults.php:232
3220
  msgid "Comments"
3221
  msgstr ""
3222
 
3223
- #: defaults.php:233
3224
  msgid "User approved a comment"
3225
  msgstr ""
3226
 
3227
- #: defaults.php:233
3228
  msgid ""
3229
  "Approved the comment posted in response to the post %PostTitle% by %Author% "
3230
  "on %CommentLink%."
3231
  msgstr ""
3232
 
3233
- #: defaults.php:234
3234
  msgid "User unapproved a comment"
3235
  msgstr ""
3236
 
3237
- #: defaults.php:234
3238
  msgid ""
3239
  "Unapproved the comment posted in response to the post %PostTitle% by %Author"
3240
  "% on %CommentLink%."
3241
  msgstr ""
3242
 
3243
- #: defaults.php:235
3244
  msgid "User replied to a comment"
3245
  msgstr ""
3246
 
3247
- #: defaults.php:235
3248
  msgid ""
3249
  "Replied to the comment posted in response to the post %PostTitle% by %Author"
3250
  "% on %CommentLink%."
3251
  msgstr ""
3252
 
3253
- #: defaults.php:236
3254
  msgid "User edited a comment"
3255
  msgstr ""
3256
 
3257
- #: defaults.php:236
3258
  msgid ""
3259
  "Edited a comment posted in response to the post %PostTitle% by %Author% on "
3260
  "%CommentLink%."
3261
  msgstr ""
3262
 
3263
- #: defaults.php:237
3264
  msgid "User marked a comment as Spam"
3265
  msgstr ""
3266
 
3267
- #: defaults.php:237
3268
  msgid ""
3269
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3270
  "%CommentLink% as Spam."
3271
  msgstr ""
3272
 
3273
- #: defaults.php:238
3274
  msgid "User marked a comment as Not Spam"
3275
  msgstr ""
3276
 
3277
- #: defaults.php:238
3278
  msgid ""
3279
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3280
  "%CommentLink% as Not Spam."
3281
  msgstr ""
3282
 
3283
- #: defaults.php:239
3284
  msgid "User moved a comment to trash"
3285
  msgstr ""
3286
 
3287
- #: defaults.php:239
3288
  msgid ""
3289
  "Moved the comment posted in response to the post %PostTitle% by %Author% on "
3290
  "%Date% to trash."
3291
  msgstr ""
3292
 
3293
- #: defaults.php:240
3294
  msgid "User restored a comment from the trash"
3295
  msgstr ""
3296
 
3297
- #: defaults.php:240
3298
  msgid ""
3299
  "Restored the comment posted in response to the post %PostTitle% by %Author% "
3300
  "on %CommentLink% from the trash."
3301
  msgstr ""
3302
 
3303
- #: defaults.php:241
3304
  msgid "User permanently deleted a comment"
3305
  msgstr ""
3306
 
3307
- #: defaults.php:241
3308
  msgid ""
3309
  "Permanently deleted the comment posted in response to the post %PostTitle% "
3310
  "by %Author% on %Date%."
3311
  msgstr ""
3312
 
3313
- #: defaults.php:242
3314
  msgid "User posted a comment"
3315
  msgstr ""
3316
 
3317
- #: defaults.php:242 defaults.php:243
3318
  msgid "%CommentMsg% on %CommentLink%."
3319
  msgstr ""
3320
 
3321
- #: defaults.php:243
3322
  msgid "Visitor posted a comment"
3323
  msgstr ""
3324
 
3325
- #: defaults.php:255
3326
  msgid "User modified a draft blog post"
3327
  msgstr ""
3328
 
3329
- #: defaults.php:255
3330
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3331
  msgstr ""
3332
 
3333
- #: defaults.php:256
3334
  msgid "User created a new post with custom post type and saved it as draft"
3335
  msgstr ""
3336
 
3337
- #: defaults.php:256
3338
  msgid ""
3339
  "Created a new custom post called %PostTitle% of type %PostType%. "
3340
  "%EditorLinkPost%."
3341
  msgstr ""
3342
 
3343
- #: defaults.php:257
3344
  msgid "User published a post with custom post type"
3345
  msgstr ""
3346
 
3347
- #: defaults.php:257
3348
  msgid ""
3349
  "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3350
  "%. %EditorLinkPost%."
3351
  msgstr ""
3352
 
3353
- #: defaults.php:258
3354
  msgid "User modified a post with custom post type"
3355
  msgstr ""
3356
 
3357
- #: defaults.php:258
3358
  msgid ""
3359
  "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3360
  "%. %EditorLinkPost%."
3361
  msgstr ""
3362
 
3363
- #: defaults.php:259
3364
  msgid "User modified a draft post with custom post type"
3365
  msgstr ""
3366
 
3367
- #: defaults.php:259
3368
  msgid ""
3369
  "Modified the draft custom post %PostTitle% of type is %PostType%. "
3370
  "%EditorLinkPost%."
3371
  msgstr ""
3372
 
3373
- #: defaults.php:260
3374
  msgid "User permanently deleted post with custom post type"
3375
  msgstr ""
3376
 
3377
- #: defaults.php:260
3378
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3379
  msgstr ""
3380
 
3381
- #: defaults.php:261
3382
  msgid "User moved post with custom post type to trash"
3383
  msgstr ""
3384
 
3385
- #: defaults.php:261
3386
  msgid ""
3387
  "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
3388
  "%PostUrl%."
3389
  msgstr ""
3390
 
3391
- #: defaults.php:262
3392
  msgid "User restored post with custom post type from trash"
3393
  msgstr ""
3394
 
3395
- #: defaults.php:262
3396
  msgid ""
3397
  "The custom post %PostTitle% of type %PostType% has been restored from trash. "
3398
  "%EditorLinkPost%."
3399
  msgstr ""
3400
 
3401
- #: defaults.php:263
3402
  msgid "User changed the category of a post with custom post type"
3403
  msgstr ""
3404
 
3405
- #: defaults.php:263
3406
  msgid ""
3407
  "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
3408
  "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3409
  msgstr ""
3410
 
3411
- #: defaults.php:264
3412
  msgid "User changed the URL of a post with custom post type"
3413
  msgstr ""
3414
 
3415
- #: defaults.php:264
3416
  msgid ""
3417
  "Changed the URL of the custom post %PostTitle% of type %PostType% from "
3418
  "%OldUrl% to %NewUrl%. %EditorLinkPost%."
3419
  msgstr ""
3420
 
3421
- #: defaults.php:265
3422
  msgid "User changed the author or post with custom post type"
3423
  msgstr ""
3424
 
3425
- #: defaults.php:265
3426
  msgid ""
3427
  "Changed the author of custom post %PostTitle% of type %PostType% from "
3428
  "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3429
  msgstr ""
3430
 
3431
- #: defaults.php:266
3432
  msgid "User changed the status of post with custom post type"
3433
  msgstr ""
3434
 
3435
- #: defaults.php:266
3436
  msgid ""
3437
  "Changed the status of custom post %PostTitle% of type %PostType% from "
3438
  "%OldStatus% to %NewStatus%. %EditorLinkPost%."
3439
  msgstr ""
3440
 
3441
- #: defaults.php:267
3442
  msgid "User changed the visibility of a post with custom post type"
3443
  msgstr ""
3444
 
3445
- #: defaults.php:267
3446
  msgid ""
3447
  "Changed the visibility of the custom post %PostTitle% of type %PostType% "
3448
  "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3449
  msgstr ""
3450
 
3451
- #: defaults.php:268
3452
  msgid "User changed the date of post with custom post type"
3453
  msgstr ""
3454
 
3455
- #: defaults.php:268
3456
  msgid ""
3457
  "Changed the date of the custom post %PostTitle% of type %PostType% from "
3458
  "%OldDate% to %NewDate%. %EditorLinkPost%."
3459
  msgstr ""
3460
 
3461
- #: defaults.php:269
3462
  msgid "User created a custom field for a custom post type"
3463
  msgstr ""
3464
 
3465
- #: defaults.php:269
3466
  msgid ""
3467
  "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
3468
  "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3469
  msgstr ""
3470
 
3471
- #: defaults.php:270
3472
  msgid "User updated a custom field for a custom post type"
3473
  msgstr ""
3474
 
3475
- #: defaults.php:270
3476
  msgid ""
3477
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3478
  "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
3479
  "%.<br>%MetaLink%."
3480
  msgstr ""
3481
 
3482
- #: defaults.php:271
3483
  msgid "User deleted a custom field from a custom post type"
3484
  msgstr ""
3485
 
3486
- #: defaults.php:271
3487
  msgid ""
3488
  "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
3489
  "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3490
  msgstr ""
3491
 
3492
- #: defaults.php:272
3493
  msgid "User updated a custom field name for a custom post type"
3494
  msgstr ""
3495
 
3496
- #: defaults.php:272
3497
  msgid ""
3498
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
3499
  "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3500
  msgstr ""
3501
 
3502
- #: defaults.php:273
3503
  msgid "User modified content for a published custom post type"
3504
  msgstr ""
3505
 
3506
- #: defaults.php:273
3507
  msgid ""
3508
  "Modified the content of the published custom post type %PostTitle%. Post URL "
3509
  "is %PostUrl%.%EditorLinkPost%."
3510
  msgstr ""
3511
 
3512
- #: defaults.php:274
3513
  msgid "User modified content for a draft post"
3514
  msgstr ""
3515
 
3516
- #: defaults.php:274
3517
  msgid ""
3518
  "Modified the content of the draft post %PostTitle%.%RevisionLink% "
3519
  "%EditorLinkPost%."
3520
  msgstr ""
3521
 
3522
- #: defaults.php:275
3523
  msgid "User modified content for a draft custom post type"
3524
  msgstr ""
3525
 
3526
- #: defaults.php:275
3527
  msgid ""
3528
  "Modified the content of the draft custom post type %PostTitle%."
3529
  "%EditorLinkPost%."
3530
  msgstr ""
3531
 
3532
- #: defaults.php:276
3533
  msgid "User modified content of a post"
3534
  msgstr ""
3535
 
3536
- #: defaults.php:276
3537
  msgid ""
3538
  "Modified the content of post %PostTitle% which is submitted for review."
3539
  "%RevisionLink% %EditorLinkPost%."
3540
  msgstr ""
3541
 
3542
- #: defaults.php:277
3543
  msgid "User scheduled a custom post type"
3544
  msgstr ""
3545
 
3546
- #: defaults.php:277
3547
  msgid ""
3548
  "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
3549
  "%EditorLinkPost%."
3550
  msgstr ""
3551
 
3552
- #: defaults.php:278
3553
  msgid "User changed title of a custom post type"
3554
  msgstr ""
3555
 
3556
- #: defaults.php:278
3557
  msgid ""
3558
  "Changed the title of the custom post %OldTitle% to %NewTitle%. "
3559
  "%EditorLinkPost%."
3560
  msgstr ""
3561
 
3562
- #: defaults.php:279
3563
  msgid "User opened a custom post type in the editor"
3564
  msgstr ""
3565
 
3566
- #: defaults.php:279
3567
  msgid ""
3568
  "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
3569
  "the post: %EditorLinkPost%."
3570
  msgstr ""
3571
 
3572
- #: defaults.php:280
3573
  msgid "User viewed a custom post type"
3574
  msgstr ""
3575
 
3576
- #: defaults.php:280
3577
  msgid ""
3578
  "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
3579
  "%PostUrl%."
3580
  msgstr ""
3581
 
3582
- #: defaults.php:281
3583
  msgid "A plugin created a custom post"
3584
  msgstr ""
3585
 
3586
- #: defaults.php:281
3587
  msgid "A plugin automatically created the following custom post: %PostTitle%."
3588
  msgstr ""
3589
 
3590
- #: defaults.php:282
3591
  msgid "A plugin deleted a custom post"
3592
  msgstr ""
3593
 
3594
- #: defaults.php:282
3595
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
3596
  msgstr ""
3597
 
3598
- #: defaults.php:283
3599
  msgid "A plugin modified a custom post"
3600
  msgstr ""
3601
 
3602
- #: defaults.php:283
3603
  msgid ""
3604
  "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
3605
  msgstr ""
3606
 
3607
- #: defaults.php:295
3608
  msgid "User created a new WordPress page and saved it as draft"
3609
  msgstr ""
3610
 
3611
- #: defaults.php:295
3612
  msgid ""
3613
  "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
3614
  "%."
3615
  msgstr ""
3616
 
3617
- #: defaults.php:296
3618
  msgid "User published a WordPress page"
3619
  msgstr ""
3620
 
3621
- #: defaults.php:296
3622
  msgid ""
3623
  "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
3624
  msgstr ""
3625
 
3626
- #: defaults.php:297
3627
  msgid "User modified a published WordPress page"
3628
  msgstr ""
3629
 
3630
- #: defaults.php:297
3631
  msgid ""
3632
  "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
3633
  "%EditorLinkPage%."
3634
  msgstr ""
3635
 
3636
- #: defaults.php:298
3637
  msgid "User modified a draft WordPress page"
3638
  msgstr ""
3639
 
3640
- #: defaults.php:298
3641
  msgid ""
3642
  "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
3643
  msgstr ""
3644
 
3645
- #: defaults.php:299
3646
  msgid "User permanently deleted a page from the trash"
3647
  msgstr ""
3648
 
3649
- #: defaults.php:299
3650
  msgid "Permanently deleted the page %PostTitle%."
3651
  msgstr ""
3652
 
3653
- #: defaults.php:300
3654
  msgid "User moved WordPress page to the trash"
3655
  msgstr ""
3656
 
3657
- #: defaults.php:300
3658
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
3659
  msgstr ""
3660
 
3661
- #: defaults.php:301
3662
  msgid "User restored a WordPress page from trash"
3663
  msgstr ""
3664
 
3665
- #: defaults.php:301
3666
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
3667
  msgstr ""
3668
 
3669
- #: defaults.php:302
3670
  msgid "User changed page URL"
3671
  msgstr ""
3672
 
3673
- #: defaults.php:302
3674
  msgid ""
3675
  "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
3676
  "%EditorLinkPage%."
3677
  msgstr ""
3678
 
3679
- #: defaults.php:303
3680
  msgid "User changed page author"
3681
  msgstr ""
3682
 
3683
- #: defaults.php:303
3684
  msgid ""
3685
  "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
3686
  "%EditorLinkPage%."
3687
  msgstr ""
3688
 
3689
- #: defaults.php:304
3690
  msgid "User changed page status"
3691
  msgstr ""
3692
 
3693
- #: defaults.php:304
3694
  msgid ""
3695
  "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
3696
  "%EditorLinkPage%."
3697
  msgstr ""
3698
 
3699
- #: defaults.php:305
3700
  msgid "User changed the visibility of a page post"
3701
  msgstr ""
3702
 
3703
- #: defaults.php:305
3704
  msgid ""
3705
  "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
3706
  "%NewVisibility%. %EditorLinkPage%."
3707
  msgstr ""
3708
 
3709
- #: defaults.php:306
3710
  msgid "User changed the date of a page post"
3711
  msgstr ""
3712
 
3713
- #: defaults.php:306
3714
  msgid ""
3715
  "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
3716
  "%EditorLinkPage%."
3717
  msgstr ""
3718
 
3719
- #: defaults.php:307
3720
  msgid "User created a custom field for a page"
3721
  msgstr ""
3722
 
3723
- #: defaults.php:307
3724
  msgid ""
3725
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3726
  "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3727
  msgstr ""
3728
 
3729
- #: defaults.php:308
3730
  msgid "User updated a custom field value for a page"
3731
  msgstr ""
3732
 
3733
- #: defaults.php:308
3734
  msgid ""
3735
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3736
  "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3737
  msgstr ""
3738
 
3739
- #: defaults.php:309
3740
  msgid "User deleted a custom field from a page"
3741
  msgstr ""
3742
 
3743
- #: defaults.php:309
3744
  msgid ""
3745
  "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
3746
  "%EditorLinkPage%.<br>%MetaLink%."
3747
  msgstr ""
3748
 
3749
- #: defaults.php:310
3750
  msgid "User updated a custom field name for a page"
3751
  msgstr ""
3752
 
3753
- #: defaults.php:310
3754
  msgid ""
3755
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
3756
  "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3757
  msgstr ""
3758
 
3759
- #: defaults.php:311
3760
  msgid "User modified content for a published page"
3761
  msgstr ""
3762
 
3763
- #: defaults.php:311
3764
  msgid ""
3765
  "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
3766
  "%. %RevisionLink% %EditorLinkPage%."
3767
  msgstr ""
3768
 
3769
- #: defaults.php:312
3770
  msgid "User modified content for a draft page"
3771
  msgstr ""
3772
 
3773
- #: defaults.php:312
3774
  msgid ""
3775
  "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
3776
  "%."
3777
  msgstr ""
3778
 
3779
- #: defaults.php:313
3780
  msgid "User scheduled a page"
3781
  msgstr ""
3782
 
3783
- #: defaults.php:313
3784
  msgid ""
3785
  "Scheduled the page %PostTitle% to be published %PublishingDate%. "
3786
  "%EditorLinkPage%."
3787
  msgstr ""
3788
 
3789
- #: defaults.php:314
3790
  msgid "User changed title of a page"
3791
  msgstr ""
3792
 
3793
- #: defaults.php:314
3794
  msgid ""
3795
  "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
3796
  msgstr ""
3797
 
3798
- #: defaults.php:315
3799
  msgid "User opened a page in the editor"
3800
  msgstr ""
3801
 
3802
- #: defaults.php:315
3803
  msgid ""
3804
  "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
3805
  msgstr ""
3806
 
3807
- #: defaults.php:316
3808
  msgid "User viewed a page"
3809
  msgstr ""
3810
 
3811
- #: defaults.php:316
3812
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
3813
  msgstr ""
3814
 
3815
- #: defaults.php:317
3816
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
3817
  msgstr ""
3818
 
3819
- #: defaults.php:317
3820
  msgid ""
3821
  "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3822
  msgstr ""
3823
 
3824
- #: defaults.php:318
3825
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
3826
  msgstr ""
3827
 
3828
- #: defaults.php:318
3829
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3830
  msgstr ""
3831
 
3832
- #: defaults.php:319
3833
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
3834
  msgstr ""
3835
 
3836
- #: defaults.php:319
3837
  msgid ""
3838
  "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3839
  msgstr ""
3840
 
3841
- #: defaults.php:320
3842
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
3843
  msgstr ""
3844
 
3845
- #: defaults.php:320
3846
  msgid ""
3847
  "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3848
  msgstr ""
3849
 
3850
- #: defaults.php:321
3851
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
3852
  msgstr ""
3853
 
3854
- #: defaults.php:321
3855
  msgid ""
3856
  "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3857
  msgstr ""
3858
 
3859
- #: defaults.php:322
3860
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
3861
  msgstr ""
3862
 
3863
- #: defaults.php:322
3864
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3865
  msgstr ""
3866
 
3867
- #: defaults.php:323
3868
  msgid "A plugin created a page"
3869
  msgstr ""
3870
 
3871
- #: defaults.php:323
3872
  msgid "A plugin automatically created the following page: %PostTitle%."
3873
  msgstr ""
3874
 
3875
- #: defaults.php:324
3876
  msgid "A plugin deleted a page"
3877
  msgstr ""
3878
 
3879
- #: defaults.php:324
3880
  msgid "A plugin automatically deleted the following page: %PostTitle%."
3881
  msgstr ""
3882
 
3883
- #: defaults.php:325
3884
  msgid "A plugin modified a page"
3885
  msgstr ""
3886
 
3887
- #: defaults.php:325
3888
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
3889
  msgstr ""
3890
 
3891
- #: defaults.php:332
3892
  msgid "WordPress Install"
3893
  msgstr ""
3894
 
3895
- #: defaults.php:336
3896
  msgid "Database"
3897
  msgstr ""
3898
 
3899
- #: defaults.php:337
3900
  msgid "Unknown component created tables"
3901
  msgstr ""
3902
 
3903
- #: defaults.php:337
3904
  msgid ""
3905
  "An unknown component created these tables in the database: %TableNames%."
3906
  msgstr ""
3907
 
3908
- #: defaults.php:338
3909
  msgid "Unknown component modified tables structure"
3910
  msgstr ""
3911
 
3912
- #: defaults.php:338
3913
  msgid ""
3914
  "An unknown component modified the structure of these database tables: "
3915
  "%TableNames%."
3916
  msgstr ""
3917
 
3918
- #: defaults.php:339
3919
  msgid "Unknown component deleted tables"
3920
  msgstr ""
3921
 
3922
- #: defaults.php:339
3923
  msgid ""
3924
  "An unknown component deleted the following tables from the database: "
3925
  "%TableNames%."
3926
  msgstr ""
3927
 
3928
- #: defaults.php:346
3929
  msgid "User installed a plugin"
3930
  msgstr ""
3931
 
3932
- #: defaults.php:346
3933
  msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
3934
  msgstr ""
3935
 
3936
- #: defaults.php:347
3937
  msgid "User activated a WordPress plugin"
3938
  msgstr ""
3939
 
3940
- #: defaults.php:347
3941
  msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
3942
  msgstr ""
3943
 
3944
- #: defaults.php:348
3945
  msgid "User deactivated a WordPress plugin"
3946
  msgstr ""
3947
 
3948
- #: defaults.php:348
3949
  msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
3950
  msgstr ""
3951
 
3952
- #: defaults.php:349
3953
  msgid "User uninstalled a plugin"
3954
  msgstr ""
3955
 
3956
- #: defaults.php:349
3957
  msgid ""
3958
  "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
3959
  "%."
3960
  msgstr ""
3961
 
3962
- #: defaults.php:350
3963
  msgid "User upgraded a plugin"
3964
  msgstr ""
3965
 
3966
- #: defaults.php:350
3967
  msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
3968
  msgstr ""
3969
 
3970
- #: defaults.php:351
3971
  msgid "Plugin created tables"
3972
  msgstr ""
3973
 
3974
- #: defaults.php:351
3975
  msgid ""
3976
  "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
3977
  msgstr ""
3978
 
3979
- #: defaults.php:352
3980
  msgid "Plugin modified tables structure"
3981
  msgstr ""
3982
 
3983
- #: defaults.php:352
3984
  msgid ""
3985
  "Plugin %Plugin->Name% modified the structure of these database tables: "
3986
  "%TableNames%."
3987
  msgstr ""
3988
 
3989
- #: defaults.php:353
3990
  msgid "Plugin deleted tables"
3991
  msgstr ""
3992
 
3993
- #: defaults.php:353
3994
  msgid ""
3995
  "Plugin %Plugin->Name% deleted the following tables from the database: "
3996
  "%TableNames%."
3997
  msgstr ""
3998
 
3999
- #: defaults.php:354
4000
  msgid "A plugin created a post"
4001
  msgstr ""
4002
 
4003
- #: defaults.php:354
4004
  msgid ""
4005
  "A plugin automatically created the following %PostType% called %PostTitle%. "
4006
  "View the post: %EditorLinkPost%."
4007
  msgstr ""
4008
 
4009
- #: defaults.php:355
4010
  msgid "A plugin deleted a post"
4011
  msgstr ""
4012
 
4013
- #: defaults.php:355
4014
  msgid ""
4015
  "A plugin automatically deleted the following %PostType% called %PostTitle%."
4016
  msgstr ""
4017
 
4018
- #: defaults.php:356
4019
  msgid "User changed a file using the plugin editor"
4020
  msgstr ""
4021
 
4022
- #: defaults.php:356
4023
  msgid "Modified %File% with the Plugin Editor."
4024
  msgstr ""
4025
 
4026
- #: defaults.php:362
4027
  msgid "Themes"
4028
  msgstr ""
4029
 
4030
- #: defaults.php:363
4031
  msgid "User installed a theme"
4032
  msgstr ""
4033
 
4034
- #: defaults.php:363
4035
  msgid ""
4036
  "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
4037
  msgstr ""
4038
 
4039
- #: defaults.php:364
4040
  msgid "User activated a theme"
4041
  msgstr ""
4042
 
4043
- #: defaults.php:364
4044
  msgid ""
4045
  "Activated the theme \"%Theme->Name%\", installed in %Theme-"
4046
  ">get_template_directory%."
4047
  msgstr ""
4048
 
4049
- #: defaults.php:365
4050
  msgid "User uninstalled a theme"
4051
  msgstr ""
4052
 
4053
- #: defaults.php:365
4054
  msgid ""
4055
  "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
4056
  ">get_template_directory%."
4057
  msgstr ""
4058
 
4059
- #: defaults.php:366
4060
  msgid "Activated theme on network"
4061
  msgstr ""
4062
 
4063
- #: defaults.php:366
4064
  msgid ""
4065
  "Network activated the theme %Theme->Name% installed in %Theme-"
4066
  ">get_template_directory%."
4067
  msgstr ""
4068
 
4069
- #: defaults.php:367
4070
  msgid "Deactivated theme from network"
4071
  msgstr ""
4072
 
4073
- #: defaults.php:367
4074
  msgid ""
4075
  "Network deactivated the theme %Theme->Name% installed in %Theme-"
4076
  ">get_template_directory%."
4077
  msgstr ""
4078
 
4079
- #: defaults.php:368
4080
  msgid "Theme created tables"
4081
  msgstr ""
4082
 
4083
- #: defaults.php:368
4084
  msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
4085
  msgstr ""
4086
 
4087
- #: defaults.php:369
4088
  msgid "Theme modified tables structure"
4089
  msgstr ""
4090
 
4091
- #: defaults.php:369
4092
  msgid ""
4093
  "Theme %Theme->Name% modified the structure of these database tables: "
4094
  "%TableNames%."
4095
  msgstr ""
4096
 
4097
- #: defaults.php:370
4098
  msgid "Theme deleted tables"
4099
  msgstr ""
4100
 
4101
- #: defaults.php:370
4102
  msgid ""
4103
  "Theme %Theme->Name% deleted the following tables from the database: "
4104
  "%TableNames%."
4105
  msgstr ""
4106
 
4107
- #: defaults.php:371
4108
  msgid "User updated a theme"
4109
  msgstr ""
4110
 
4111
- #: defaults.php:371
4112
  msgid ""
4113
  "Updated the theme \"%Theme->Name%\" installed in %Theme-"
4114
  ">get_template_directory%."
4115
  msgstr ""
4116
 
4117
- #: defaults.php:372
4118
  msgid "User changed a file using the theme editor"
4119
  msgstr ""
4120
 
4121
- #: defaults.php:372
4122
  msgid "Modified %File% with the Theme Editor."
4123
  msgstr ""
4124
 
4125
- #: defaults.php:379
4126
  msgid "Unknown Error"
4127
  msgstr ""
4128
 
4129
- #: defaults.php:379
4130
  msgid "An unexpected error has occurred ."
4131
  msgstr ""
4132
 
4133
- #: defaults.php:380
4134
  msgid "PHP error"
4135
  msgstr ""
4136
 
4137
- #: defaults.php:380 defaults.php:381 defaults.php:382 defaults.php:383
4138
- #: defaults.php:384
4139
  msgid "%Message%."
4140
  msgstr ""
4141
 
4142
- #: defaults.php:381
4143
  msgid "PHP warning"
4144
  msgstr ""
4145
 
4146
- #: defaults.php:382
4147
  msgid "PHP notice"
4148
  msgstr ""
4149
 
4150
- #: defaults.php:383
4151
  msgid "PHP exception"
4152
  msgstr ""
4153
 
4154
- #: defaults.php:384
4155
  msgid "PHP shutdown error"
4156
  msgstr ""
4157
 
4158
- #: defaults.php:385
4159
  msgid "Events automatically pruned by system"
4160
  msgstr ""
4161
 
4162
- #: defaults.php:385
4163
  msgid "System automatically deleted %EventCount% event(s)."
4164
  msgstr ""
4165
 
4166
- #: defaults.php:386
4167
  msgid "WordPress was updated"
4168
  msgstr ""
4169
 
4170
- #: defaults.php:386
4171
  msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
4172
  msgstr ""
4173
 
4174
- #: defaults.php:387
4175
  msgid "Reset plugin's settings to default"
4176
  msgstr ""
4177
 
4178
- #: defaults.php:387
4179
  msgid "Reset plugin's settings to default."
4180
  msgstr ""
4181
 
4182
- #: defaults.php:388
4183
  msgid "File content has been modified"
4184
  msgstr ""
4185
 
4186
- #: defaults.php:388
4187
  msgid "The content of the file %FileLocation% has been modified."
4188
  msgstr ""
4189
 
4190
- #: defaults.php:389
4191
  msgid "File added to the site"
4192
  msgstr ""
4193
 
4194
- #: defaults.php:389
4195
  msgid "The file %FileLocation% has been added to your website."
4196
  msgstr ""
4197
 
4198
- #: defaults.php:390
4199
  msgid "File deleted from the site"
4200
  msgstr ""
4201
 
4202
- #: defaults.php:390
4203
  msgid "The file %FileLocation% has been deleted from your website."
4204
  msgstr ""
4205
 
4206
- #: defaults.php:391
4207
  msgid "File not scanned because it is bigger than 5MB"
4208
  msgstr ""
4209
 
4210
- #: defaults.php:391
4211
  msgid ""
4212
  "The file %FileLocation% was not scanned because it is bigger than 5MB. "
4213
  "Please <a href=\"https://www.wpsecurityauditlog.com/contact/\" target="
4214
  "\"_blank\">contact our support</a> for more information."
4215
  msgstr ""
4216
 
4217
- #: defaults.php:392
4218
  msgid "File integrity scan stopped due to the limit of 1 million files"
4219
  msgstr ""
4220
 
4221
- #: defaults.php:392
4222
  msgid ""
4223
  "The file changes scanning engine has reached the limit of 1 million files "
4224
  "and stopped the scan. Please <a href=\"https://www.wpsecurityauditlog.com/"
4225
  "contact/\" target=\"_blank\">contact our support</a> for more information."
4226
  msgstr ""
4227
 
4228
- #: defaults.php:393
4229
  msgid "File integrity scan started/stopped"
4230
  msgstr ""
4231
 
4232
- #: defaults.php:393
4233
  msgid ""
4234
  "The file integrity scanner has %ScanStatus% scanning %ScanLocation%%ScanError"
4235
  "%."
4236
  msgstr ""
4237
 
4238
- #: defaults.php:394
4239
  msgid "Purged the activity log"
4240
  msgstr ""
4241
 
4242
- #: defaults.php:394
4243
  msgid "Purged the activity log."
4244
  msgstr ""
4245
 
4246
- #: defaults.php:395
4247
  msgid "Advertising Add-ons"
4248
  msgstr ""
4249
 
4250
- #: defaults.php:395
4251
  msgid "%PromoName% %PromoMessage%"
4252
  msgstr ""
4253
 
4254
- #: defaults.php:401
4255
  msgid "Menus"
4256
  msgstr ""
4257
 
4258
- #: defaults.php:402
4259
  msgid "User created new menu"
4260
  msgstr ""
4261
 
4262
- #: defaults.php:402
4263
  msgid "Created a new menu called %MenuName%."
4264
  msgstr ""
4265
 
4266
- #: defaults.php:403
4267
  msgid "User added content to a menu"
4268
  msgstr ""
4269
 
4270
- #: defaults.php:403
4271
  msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
4272
  msgstr ""
4273
 
4274
- #: defaults.php:404
4275
  msgid "User removed content from a menu"
4276
  msgstr ""
4277
 
4278
- #: defaults.php:404
4279
  msgid ""
4280
  "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
4281
  msgstr ""
4282
 
4283
- #: defaults.php:405
4284
  msgid "User deleted menu"
4285
  msgstr ""
4286
 
4287
- #: defaults.php:405
4288
  msgid "Deleted the menu %MenuName%."
4289
  msgstr ""
4290
 
4291
- #: defaults.php:406
4292
  msgid "User changed menu setting"
4293
  msgstr ""
4294
 
4295
- #: defaults.php:406
4296
  msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
4297
  msgstr ""
4298
 
4299
- #: defaults.php:407
4300
  msgid "User modified content in a menu"
4301
  msgstr ""
4302
 
4303
- #: defaults.php:407
4304
  msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
4305
  msgstr ""
4306
 
4307
- #: defaults.php:408
4308
  msgid "User changed name of a menu"
4309
  msgstr ""
4310
 
4311
- #: defaults.php:408
4312
  msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
4313
  msgstr ""
4314
 
4315
- #: defaults.php:409
4316
  msgid "User changed order of the objects in a menu"
4317
  msgstr ""
4318
 
4319
- #: defaults.php:409
4320
  msgid "Changed the order of the %ItemName% in menu %MenuName%."
4321
  msgstr ""
4322
 
4323
- #: defaults.php:410
4324
  msgid "User moved objects as a sub-item"
4325
  msgstr ""
4326
 
4327
- #: defaults.php:410
4328
  msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
4329
  msgstr ""
4330
 
4331
- #: defaults.php:416
4332
  msgid "Widgets"
4333
  msgstr ""
4334
 
4335
- #: defaults.php:417
4336
  msgid "User added a new widget"
4337
  msgstr ""
4338
 
4339
- #: defaults.php:417
4340
  msgid "Added a new %WidgetName% widget in %Sidebar%."
4341
  msgstr ""
4342
 
4343
- #: defaults.php:418
4344
  msgid "User modified a widget"
4345
  msgstr ""
4346
 
4347
- #: defaults.php:418
4348
  msgid "Modified the %WidgetName% widget in %Sidebar%."
4349
  msgstr ""
4350
 
4351
- #: defaults.php:419
4352
  msgid "User deleted widget"
4353
  msgstr ""
4354
 
4355
- #: defaults.php:419
4356
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
4357
  msgstr ""
4358
 
4359
- #: defaults.php:420
4360
  msgid "User moved widget"
4361
  msgstr ""
4362
 
4363
- #: defaults.php:420
4364
  msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
4365
  msgstr ""
4366
 
4367
- #: defaults.php:421
4368
  msgid "User changed widget position"
4369
  msgstr ""
4370
 
4371
- #: defaults.php:421
4372
  msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
4373
  msgstr ""
4374
 
4375
- #: defaults.php:427
4376
  msgid "WordPress Settings"
4377
  msgstr ""
4378
 
4379
- #: defaults.php:428
4380
  msgid "Option Anyone Can Register in WordPress settings changed"
4381
  msgstr ""
4382
 
4383
- #: defaults.php:428
4384
  msgid "%NewValue% the option \"Anyone can register\"."
4385
  msgstr ""
4386
 
4387
- #: defaults.php:429
4388
  msgid "New User Default Role changed"
4389
  msgstr ""
4390
 
4391
- #: defaults.php:429
4392
  msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
4393
  msgstr ""
4394
 
4395
- #: defaults.php:430
4396
  msgid "WordPress Administrator Notification email changed"
4397
  msgstr ""
4398
 
4399
- #: defaults.php:430
4400
  msgid ""
4401
  "Changed the WordPress administrator notifications email address from "
4402
  "%OldEmail% to %NewEmail%."
4403
  msgstr ""
4404
 
4405
- #: defaults.php:431
4406
  msgid "User changes the WordPress Permalinks"
4407
  msgstr ""
4408
 
4409
- #: defaults.php:431
4410
  msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
4411
  msgstr ""
4412
 
4413
- #: defaults.php:432
4414
  msgid ""
4415
  "Enabled/Disabled the option Discourage search engines from indexing this site"
4416
  msgstr ""
4417
 
4418
- #: defaults.php:432
4419
  msgid "%Status% the option Discourage search engines from indexing this site."
4420
  msgstr ""
4421
 
4422
- #: defaults.php:433
4423
  msgid "Enabled/Disabled comments on all the website"
4424
  msgstr ""
4425
 
4426
- #: defaults.php:433
4427
  msgid "%Status% comments on all the website."
4428
  msgstr ""
4429
 
4430
- #: defaults.php:434
4431
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
4432
  msgstr ""
4433
 
4434
- #: defaults.php:434
4435
  msgid "%Status% the option Comment author must fill out name and email."
4436
  msgstr ""
4437
 
4438
- #: defaults.php:435
4439
  msgid ""
4440
  "Enabled/Disabled the option Users must be logged in and registered to comment"
4441
  msgstr ""
4442
 
4443
- #: defaults.php:435
4444
  msgid "%Status% the option Users must be logged in and registered to comment."
4445
  msgstr ""
4446
 
4447
- #: defaults.php:436
4448
  msgid "Enabled/Disabled the option to automatically close comments"
4449
  msgstr ""
4450
 
4451
- #: defaults.php:436
4452
  msgid "%Status% the option to automatically close comments after %Value% days."
4453
  msgstr ""
4454
 
4455
- #: defaults.php:437
4456
  msgid "Changed the value of the option Automatically close comments"
4457
  msgstr ""
4458
 
4459
- #: defaults.php:437
4460
  msgid ""
4461
  "Changed the value of the option Automatically close comments from %OldValue% "
4462
  "to %NewValue% days."
4463
  msgstr ""
4464
 
4465
- #: defaults.php:438
4466
  msgid "Enabled/Disabled the option for comments to be manually approved"
4467
  msgstr ""
4468
 
4469
- #: defaults.php:438
4470
  msgid "%Status% the option for comments to be manually approved."
4471
  msgstr ""
4472
 
4473
- #: defaults.php:439
4474
  msgid ""
4475
  "Enabled/Disabled the option for an author to have previously approved "
4476
  "comments for the comments to appear"
4477
  msgstr ""
4478
 
4479
- #: defaults.php:439
4480
  msgid ""
4481
  "%Status% the option for an author to have previously approved comments for "
4482
  "the comments to appear."
4483
  msgstr ""
4484
 
4485
- #: defaults.php:440
4486
  msgid ""
4487
  "Changed the number of links that a comment must have to be held in the queue"
4488
  msgstr ""
4489
 
4490
- #: defaults.php:440
4491
  msgid ""
4492
  "Changed the number of links from %OldValue% to %NewValue% that a comment "
4493
  "must have to be held in the queue."
4494
  msgstr ""
4495
 
4496
- #: defaults.php:441
4497
  msgid "Modified the list of keywords for comments moderation"
4498
  msgstr ""
4499
 
4500
- #: defaults.php:441
4501
  msgid "Modified the list of keywords for comments moderation."
4502
  msgstr ""
4503
 
4504
- #: defaults.php:442
4505
  msgid "Modified the list of keywords for comments blacklisting"
4506
  msgstr ""
4507
 
4508
- #: defaults.php:442
4509
  msgid "Modified the list of keywords for comments blacklisting."
4510
  msgstr ""
4511
 
4512
- #: defaults.php:443
4513
  msgid "Option WordPress Address (URL) in WordPress settings changed"
4514
  msgstr ""
4515
 
4516
- #: defaults.php:443
4517
  msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
4518
  msgstr ""
4519
 
4520
- #: defaults.php:444
4521
  msgid "Option Site Address (URL) in WordPress settings changed"
4522
  msgstr ""
4523
 
4524
- #: defaults.php:444
4525
  msgid "Changed the site address (URL) from %old_url% to %new_url%."
4526
  msgstr ""
4527
 
4528
- #: defaults.php:445
4529
  msgid "Created a New cron job"
4530
  msgstr ""
4531
 
4532
- #: defaults.php:445
4533
  msgid ""
4534
  "A new cron job called %name% was created and is scheduled to run %schedule%."
4535
  msgstr ""
4536
 
4537
- #: defaults.php:446
4538
  msgid "Changed status of the cron job"
4539
  msgstr ""
4540
 
4541
- #: defaults.php:446
4542
  msgid "The cron job %name% was %status%."
4543
  msgstr ""
4544
 
4545
- #: defaults.php:447
4546
  msgid "Deleted the cron job"
4547
  msgstr ""
4548
 
4549
- #: defaults.php:447
4550
  msgid "The cron job %name% was deleted."
4551
  msgstr ""
4552
 
4553
- #: defaults.php:448
4554
  msgid "Started the cron job"
4555
  msgstr ""
4556
 
4557
- #: defaults.php:448
4558
  msgid "The cron job %name% has just started."
4559
  msgstr ""
4560
 
4561
- #: defaults.php:455
4562
  msgid "Multisite Network"
4563
  msgstr ""
4564
 
4565
- #: defaults.php:460
4566
  msgid "User granted Super Admin privileges"
4567
  msgstr ""
4568
 
4569
- #: defaults.php:460
4570
  msgid "Granted Super Admin privileges to %TargetUsername%."
4571
  msgstr ""
4572
 
4573
- #: defaults.php:461
4574
  msgid "User revoked from Super Admin privileges"
4575
  msgstr ""
4576
 
4577
- #: defaults.php:461
4578
  msgid "Revoked Super Admin privileges from %TargetUsername%."
4579
  msgstr ""
4580
 
4581
- #: defaults.php:462
4582
  msgid "Existing user added to a site"
4583
  msgstr ""
4584
 
4585
- #: defaults.php:462
4586
  msgid ""
4587
  "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
4588
  "%SiteName%."
4589
  msgstr ""
4590
 
4591
- #: defaults.php:463
4592
  msgid "User removed from site"
4593
  msgstr ""
4594
 
4595
- #: defaults.php:463
4596
  msgid ""
4597
  "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
4598
  "site."
4599
  msgstr ""
4600
 
4601
- #: defaults.php:464
4602
  msgid "New network user created"
4603
  msgstr ""
4604
 
4605
- #: defaults.php:464
4606
  msgid "Created a new network user %NewUserData->Username%."
4607
  msgstr ""
4608
 
4609
- #: defaults.php:465
4610
  msgid "The forum role of a user was changed by another WordPress user"
4611
  msgstr ""
4612
 
4613
- #: defaults.php:465
4614
  msgid ""
4615
  "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
4616
  "% by %UserChanger%."
4617
  msgstr ""
4618
 
4619
- #: defaults.php:466
4620
  msgid "New site added on the network"
4621
  msgstr ""
4622
 
4623
- #: defaults.php:466
4624
  msgid "Added the site %SiteName% to the network."
4625
  msgstr ""
4626
 
4627
- #: defaults.php:467
4628
  msgid "Existing site archived"
4629
  msgstr ""
4630
 
4631
- #: defaults.php:467
4632
  msgid "Archived the site %SiteName%."
4633
  msgstr ""
4634
 
4635
- #: defaults.php:468
4636
  msgid "Archived site has been unarchived"
4637
  msgstr ""
4638
 
4639
- #: defaults.php:468
4640
  msgid "Unarchived the site %SiteName%."
4641
  msgstr ""
4642
 
4643
- #: defaults.php:469
4644
  msgid "Deactivated site has been activated"
4645
  msgstr ""
4646
 
4647
- #: defaults.php:469
4648
  msgid "Activated the site %SiteName%."
4649
  msgstr ""
4650
 
4651
- #: defaults.php:470
4652
  msgid "Site has been deactivated"
4653
  msgstr ""
4654
 
4655
- #: defaults.php:470
4656
  msgid "Deactivated the site %SiteName%."
4657
  msgstr ""
4658
 
4659
- #: defaults.php:471
4660
  msgid "Existing site deleted from network"
4661
  msgstr ""
4662
 
4663
- #: defaults.php:471
4664
  msgid "Deleted the site %SiteName%."
4665
  msgstr ""
4666
 
4667
- #: defaults.php:478
4668
  msgid "Third Party Plugins"
4669
  msgstr ""
4670
 
4671
- #: defaults.php:483
4672
  msgid "User created new forum"
4673
  msgstr ""
4674
 
4675
- #: defaults.php:483
4676
  msgid ""
4677
  "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
4678
  msgstr ""
4679
 
4680
- #: defaults.php:484
4681
  msgid "User changed status of a forum"
4682
  msgstr ""
4683
 
4684
- #: defaults.php:484
4685
  msgid ""
4686
  "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
4687
  "%EditorLinkForum%."
4688
  msgstr ""
4689
 
4690
- #: defaults.php:485
4691
  msgid "User changed visibility of a forum"
4692
  msgstr ""
4693
 
4694
- #: defaults.php:485
4695
  msgid ""
4696
  "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
4697
  "%NewVisibility%. %EditorLinkForum%."
4698
  msgstr ""
4699
 
4700
- #: defaults.php:486
4701
  msgid "User changed the URL of a forum"
4702
  msgstr ""
4703
 
4704
- #: defaults.php:486
4705
  msgid ""
4706
  "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
4707
  "%EditorLinkForum%."
4708
  msgstr ""
4709
 
4710
- #: defaults.php:487
4711
  msgid "User changed order of a forum"
4712
  msgstr ""
4713
 
4714
- #: defaults.php:487
4715
  msgid ""
4716
  "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
4717
  "%EditorLinkForum%."
4718
  msgstr ""
4719
 
4720
- #: defaults.php:488
4721
  msgid "User moved forum to trash"
4722
  msgstr ""
4723
 
4724
- #: defaults.php:488
4725
  msgid "Moved the forum %ForumName% to trash."
4726
  msgstr ""
4727
 
4728
- #: defaults.php:489
4729
  msgid "User permanently deleted forum"
4730
  msgstr ""
4731
 
4732
- #: defaults.php:489
4733
  msgid "Permanently deleted the forum %ForumName%."
4734
  msgstr ""
4735
 
4736
- #: defaults.php:490
4737
  msgid "User restored forum from trash"
4738
  msgstr ""
4739
 
4740
- #: defaults.php:490
4741
  msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
4742
  msgstr ""
4743
 
4744
- #: defaults.php:491
4745
  msgid "User changed the parent of a forum"
4746
  msgstr ""
4747
 
4748
- #: defaults.php:491
4749
  msgid ""
4750
  "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
4751
  "%EditorLinkForum%."
4752
  msgstr ""
4753
 
4754
- #: defaults.php:492
4755
  msgid "User changed type of a forum"
4756
  msgstr ""
4757
 
4758
- #: defaults.php:492
4759
  msgid ""
4760
  "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
4761
  "%EditorLinkForum%."
4762
  msgstr ""
4763
 
4764
- #: defaults.php:493
4765
  msgid "User changed forum's role"
4766
  msgstr ""
4767
 
4768
- #: defaults.php:493
4769
  msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
4770
  msgstr ""
4771
 
4772
- #: defaults.php:494
4773
  msgid "User changed option of a forum"
4774
  msgstr ""
4775
 
4776
- #: defaults.php:494
4777
  msgid "%Status% the option for anonymous posting on forum."
4778
  msgstr ""
4779
 
4780
- #: defaults.php:495
4781
  msgid "User changed time to disallow post editing"
4782
  msgstr ""
4783
 
4784
- #: defaults.php:495
4785
  msgid ""
4786
  "Changed the time to disallow post editing from %OldTime% to %NewTime% "
4787
  "minutes in the forums."
4788
  msgstr ""
4789
 
4790
- #: defaults.php:496
4791
  msgid "User changed the forum setting posting throttle time"
4792
  msgstr ""
4793
 
4794
- #: defaults.php:496
4795
  msgid ""
4796
  "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
4797
  "forums."
4798
  msgstr ""
4799
 
4800
- #: defaults.php:497
4801
  msgid "User created new topic"
4802
  msgstr ""
4803
 
4804
- #: defaults.php:497
4805
  msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
4806
  msgstr ""
4807
 
4808
- #: defaults.php:498
4809
  msgid "User changed status of a topic"
4810
  msgstr ""
4811
 
4812
- #: defaults.php:498
4813
  msgid ""
4814
  "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
4815
  "%EditorLinkTopic%."
4816
  msgstr ""
4817
 
4818
- #: defaults.php:499
4819
  msgid "User changed type of a topic"
4820
  msgstr ""
4821
 
4822
- #: defaults.php:499
4823
  msgid ""
4824
  "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
4825
  "%EditorLinkTopic%."
4826
  msgstr ""
4827
 
4828
- #: defaults.php:500
4829
  msgid "User changed URL of a topic"
4830
  msgstr ""
4831
 
4832
- #: defaults.php:500
4833
  msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
4834
  msgstr ""
4835
 
4836
- #: defaults.php:501
4837
  msgid "User changed the forum of a topic"
4838
  msgstr ""
4839
 
4840
- #: defaults.php:501
4841
  msgid ""
4842
  "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
4843
  "%EditorLinkTopic%."
4844
  msgstr ""
4845
 
4846
- #: defaults.php:502
4847
  msgid "User moved topic to trash"
4848
  msgstr ""
4849
 
4850
- #: defaults.php:502
4851
  msgid "Moved the topic %TopicName% to trash."
4852
  msgstr ""
4853
 
4854
- #: defaults.php:503
4855
  msgid "User permanently deleted topic"
4856
  msgstr ""
4857
 
4858
- #: defaults.php:503
4859
  msgid "Permanently deleted the topic %TopicName%."
4860
  msgstr ""
4861
 
4862
- #: defaults.php:504
4863
  msgid "User restored topic from trash"
4864
  msgstr ""
4865
 
4866
- #: defaults.php:504
4867
  msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
4868
  msgstr ""
4869
 
4870
- #: defaults.php:505
4871
  msgid "User changed visibility of a topic"
4872
  msgstr ""
4873
 
4874
- #: defaults.php:505
4875
  msgid ""
4876
  "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
4877
  "%NewVisibility%. %EditorLinkTopic%."
4878
  msgstr ""
4879
 
4880
- #: defaults.php:512
4881
  msgid "User created a new product"
4882
  msgstr ""
4883
 
4884
- #: defaults.php:512
4885
  msgid ""
4886
  "Created a new product called %ProductTitle% and saved it as draft. View the "
4887
  "product: %EditorLinkProduct%."
4888
  msgstr ""
4889
 
4890
- #: defaults.php:513
4891
  msgid "User published a product"
4892
  msgstr ""
4893
 
4894
- #: defaults.php:513
4895
  msgid ""
4896
  "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
4897
  "the product: %EditorLinkProduct%."
4898
  msgstr ""
4899
 
4900
- #: defaults.php:514
4901
  msgid "User changed the category of a product"
4902
  msgstr ""
4903
 
4904
- #: defaults.php:514
4905
  msgid ""
4906
  "Changed the category of the product %ProductTitle% from %OldCategories% to "
4907
  "%NewCategories%. View the product: %EditorLinkProduct%."
4908
  msgstr ""
4909
 
4910
- #: defaults.php:515
4911
  msgid "User modified the short description of a product"
4912
  msgstr ""
4913
 
4914
- #: defaults.php:515
4915
  msgid ""
4916
  "Modified the short description of the product %ProductTitle%.%ChangeText% "
4917
  "View the product: %EditorLinkProduct%."
4918
  msgstr ""
4919
 
4920
- #: defaults.php:516
4921
  msgid "User modified the text of a product"
4922
  msgstr ""
4923
 
4924
- #: defaults.php:516
4925
  msgid ""
4926
  "Modified the text of the product %ProductTitle%. View the product: "
4927
  "%EditorLinkProduct%."
4928
  msgstr ""
4929
 
4930
- #: defaults.php:517
4931
  msgid "User changed the URL of a product"
4932
  msgstr ""
4933
 
4934
- #: defaults.php:517
4935
  msgid ""
4936
  "Changed the URL of the product %ProductTitle%%ReportText%.%ChangeText% View "
4937
  "the product: %EditorLinkProduct%."
4938
  msgstr ""
4939
 
4940
- #: defaults.php:518
4941
  msgid "User changed the date of a product"
4942
  msgstr ""
4943
 
4944
- #: defaults.php:518
4945
  msgid ""
4946
  "Changed the date of the product %ProductTitle% from %OldDate% to %NewDate%. "
4947
  "View the product: %EditorLinkProduct%."
4948
  msgstr ""
4949
 
4950
- #: defaults.php:519
4951
  msgid "User changed the visibility of a product"
4952
  msgstr ""
4953
 
4954
- #: defaults.php:519
4955
  msgid ""
4956
  "Changed the visibility of the product %ProductTitle% from %OldVisibility% to "
4957
  "%NewVisibility%. View the product: %EditorLinkProduct%."
4958
  msgstr ""
4959
 
4960
- #: defaults.php:520
4961
  msgid "User modified the published product"
4962
  msgstr ""
4963
 
4964
- #: defaults.php:520
4965
  msgid ""
4966
  "Modified the published product %ProductTitle%. Product URL is %ProductUrl%. "
4967
  "View the product: %EditorLinkProduct%."
4968
  msgstr ""
4969
 
4970
- #: defaults.php:521
4971
  msgid "User modified the draft product"
4972
  msgstr ""
4973
 
4974
- #: defaults.php:521
4975
  msgid ""
4976
  "Modified the draft product %ProductTitle%. View the product: "
4977
  "%EditorLinkProduct%."
4978
  msgstr ""
4979
 
4980
- #: defaults.php:522
4981
  msgid "User moved a product to trash"
4982
  msgstr ""
4983
 
4984
- #: defaults.php:522
4985
  msgid ""
4986
  "Moved the product %ProductTitle% to trash. Product URL was %ProductUrl%."
4987
  msgstr ""
4988
 
4989
- #: defaults.php:523
4990
  msgid "User permanently deleted a product"
4991
  msgstr ""
4992
 
4993
- #: defaults.php:523
4994
  msgid "Permanently deleted the product %ProductTitle%."
4995
  msgstr ""
4996
 
4997
- #: defaults.php:524
4998
  msgid "User restored a product from the trash"
4999
  msgstr ""
5000
 
5001
- #: defaults.php:524
5002
  msgid ""
5003
  "Product %ProductTitle% has been restored from trash. View product: "
5004
  "%EditorLinkProduct%."
5005
  msgstr ""
5006
 
5007
- #: defaults.php:525
5008
  msgid "User changed status of a product"
5009
  msgstr ""
5010
 
5011
- #: defaults.php:525
5012
  msgid ""
5013
  "Changed the status of the product %ProductTitle% from %OldStatus% to "
5014
  "%NewStatus%. View the product: %EditorLinkProduct%."
5015
  msgstr ""
5016
 
5017
- #: defaults.php:526
5018
  msgid "User opened a product in the editor"
5019
  msgstr ""
5020
 
5021
- #: defaults.php:526
5022
  msgid ""
5023
  "Opened the %ProductStatus% product page %ProductTitle% in editor. View the "
5024
  "product: %EditorLinkProduct%."
5025
  msgstr ""
5026
 
5027
- #: defaults.php:527
5028
  msgid "User viewed a product"
5029
  msgstr ""
5030
 
5031
- #: defaults.php:527
5032
  msgid ""
5033
  "Viewed the %ProductStatus% product page %ProductTitle%. View the product: "
5034
  "%EditorLinkProduct%."
5035
  msgstr ""
5036
 
5037
- #: defaults.php:528
5038
  msgid "User changed the Product Data of a product"
5039
  msgstr ""
5040
 
5041
- #: defaults.php:528
5042
  msgid ""
5043
  "Changed the Product Data of the product %ProductTitle%. View the product: "
5044
  "%EditorLinkProduct%."
5045
  msgstr ""
5046
 
5047
- #: defaults.php:529
5048
  msgid "User changed type of a price"
5049
  msgstr ""
5050
 
5051
- #: defaults.php:529
5052
  msgid ""
5053
  "Changed the %PriceType% of the product %ProductTitle% from %OldPrice% to "
5054
  "%NewPrice%. View the product: %EditorLinkProduct%."
5055
  msgstr ""
5056
 
5057
- #: defaults.php:530
5058
  msgid "User changed the SKU of a product"
5059
  msgstr ""
5060
 
5061
- #: defaults.php:530
5062
  msgid ""
5063
  "Changed the SKU of the product %ProductTitle% from %OldSku% to %NewSku%. "
5064
  "View the product: %EditorLinkProduct%."
5065
  msgstr ""
5066
 
5067
- #: defaults.php:531
5068
  msgid "User changed the stock status of a product"
5069
  msgstr ""
5070
 
5071
- #: defaults.php:531
5072
  msgid ""
5073
  "Changed the stock status of the product %ProductTitle% from %OldStatus% to "
5074
  "%NewStatus%. View the product: %EditorLinkProduct%."
5075
  msgstr ""
5076
 
5077
- #: defaults.php:532
5078
  msgid "User changed the stock quantity"
5079
  msgstr ""
5080
 
5081
- #: defaults.php:532
5082
  msgid ""
5083
  "Changed the stock quantity of the product %ProductTitle% from %OldValue% to "
5084
  "%NewValue%. View the product: %EditorLinkProduct%"
5085
  msgstr ""
5086
 
5087
- #: defaults.php:533
5088
  msgid "User set a product type"
5089
  msgstr ""
5090
 
5091
- #: defaults.php:533
5092
  msgid ""
5093
  "Set the product %ProductTitle% as %Type%. View the product: "
5094
  "%EditorLinkProduct%."
5095
  msgstr ""
5096
 
5097
- #: defaults.php:534
5098
  msgid "User changed the weight of a product"
5099
  msgstr ""
5100
 
5101
- #: defaults.php:534
5102
  msgid ""
5103
  "Changed the weight of the product %ProductTitle% from %OldWeight% to "
5104
  "%NewWeight%. View the product: %EditorLinkProduct%."
5105
  msgstr ""
5106
 
5107
- #: defaults.php:535
5108
  msgid "User changed the dimensions of a product"
5109
  msgstr ""
5110
 
5111
- #: defaults.php:535
5112
  msgid ""
5113
  "Changed the %DimensionType% dimensions of the product %ProductTitle% from "
5114
  "%OldDimension% to %NewDimension%. View the product: %EditorLinkProduct%."
5115
  msgstr ""
5116
 
5117
- #: defaults.php:536
5118
  msgid "User added the Downloadable File to a product"
5119
  msgstr ""
5120
 
5121
- #: defaults.php:536
5122
  msgid ""
5123
  "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
5124
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5125
  msgstr ""
5126
 
5127
- #: defaults.php:537
5128
  msgid "User Removed the Downloadable File from a product"
5129
  msgstr ""
5130
 
5131
- #: defaults.php:537
5132
  msgid ""
5133
  "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
5134
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5135
  msgstr ""
5136
 
5137
- #: defaults.php:538
5138
  msgid "User changed the name of a Downloadable File in a product"
5139
  msgstr ""
5140
 
5141
- #: defaults.php:538
5142
  msgid ""
5143
  "Changed the name of a Downloadable File from %OldName% to %NewName% in "
5144
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5145
  msgstr ""
5146
 
5147
- #: defaults.php:539
5148
  msgid "User changed the URL of the Downloadable File in a product"
5149
  msgstr ""
5150
 
5151
- #: defaults.php:539
5152
  msgid ""
5153
  "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
5154
  "% in product %ProductTitle%. View the product: %EditorLinkProduct%."
5155
  msgstr ""
5156
 
5157
- #: defaults.php:546
5158
  msgid "User changed the Weight Unit"
5159
  msgstr ""
5160
 
5161
- #: defaults.php:546
5162
  msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
5163
  msgstr ""
5164
 
5165
- #: defaults.php:547
5166
  msgid "User changed the Dimensions Unit"
5167
  msgstr ""
5168
 
5169
- #: defaults.php:547
5170
  msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
5171
  msgstr ""
5172
 
5173
- #: defaults.php:548
5174
  msgid "User changed the Base Location"
5175
  msgstr ""
5176
 
5177
- #: defaults.php:548
5178
  msgid ""
5179
  "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
5180
  msgstr ""
5181
 
5182
- #: defaults.php:549
5183
  msgid "User Enabled/Disabled taxes"
5184
  msgstr ""
5185
 
5186
- #: defaults.php:549
5187
  msgid "%Status% taxes in the WooCommerce store."
5188
  msgstr ""
5189
 
5190
- #: defaults.php:550
5191
  msgid "User changed the currency"
5192
  msgstr ""
5193
 
5194
- #: defaults.php:550
5195
  msgid ""
5196
  "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
5197
  msgstr ""
5198
 
5199
- #: defaults.php:551
5200
  msgid "User Enabled/Disabled the use of coupons during checkout"
5201
  msgstr ""
5202
 
5203
- #: defaults.php:551
5204
  msgid "%Status% the use of coupons during checkout in WooCommerce."
5205
  msgstr ""
5206
 
5207
- #: defaults.php:552
5208
  msgid "User Enabled/Disabled guest checkout"
5209
  msgstr ""
5210
 
5211
- #: defaults.php:552
5212
  msgid "%Status% guest checkout in WooCommerce."
5213
  msgstr ""
5214
 
5215
- #: defaults.php:553
5216
  msgid "User Enabled/Disabled cash on delivery"
5217
  msgstr ""
5218
 
5219
- #: defaults.php:553
5220
  msgid "%Status% the option Enable cash on delivery in WooCommerce."
5221
  msgstr ""
5222
 
5223
- #: defaults.php:554
5224
  msgid "User created a new product category"
5225
  msgstr ""
5226
 
5227
- #: defaults.php:554
5228
  msgid ""
5229
  "Created a new product category called %CategoryName% in WooCommerce. Product "
5230
  "category slug is %Slug%."
5231
  msgstr ""
5232
 
5233
- #: defaults.php:561
5234
  msgid "User changed title of a SEO post"
5235
  msgstr ""
5236
 
5237
- #: defaults.php:561
5238
  msgid ""
5239
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
5240
  "% %EditorLinkPost%."
5241
  msgstr ""
5242
 
5243
- #: defaults.php:562
5244
  msgid "User changed the meta description of a SEO post"
5245
  msgstr ""
5246
 
5247
- #: defaults.php:562
5248
  msgid ""
5249
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
5250
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
5251
  msgstr ""
5252
 
5253
- #: defaults.php:563
5254
  msgid ""
5255
  "User changed setting to allow search engines to show post in search results "
5256
  "of a SEO post"
5257
  msgstr ""
5258
 
5259
- #: defaults.php:563
5260
  msgid ""
5261
  "Changed the setting to allow search engines to show post in search results "
5262
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
5263
  "%PostTitle%. %EditorLinkPost%."
5264
  msgstr ""
5265
 
5266
- #: defaults.php:564
5267
  msgid ""
5268
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
5269
  "post"
5270
  msgstr ""
5271
 
5272
- #: defaults.php:564
5273
  msgid ""
5274
  "%NewStatus% the option for search engine to follow links in the %PostType% "
5275
  "titled %PostTitle%. %EditorLinkPost%."
5276
  msgstr ""
5277
 
5278
- #: defaults.php:565
5279
  msgid "User set the meta robots advanced setting of a SEO post"
5280
  msgstr ""
5281
 
5282
- #: defaults.php:565
5283
  msgid ""
5284
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
5285
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
5286
  msgstr ""
5287
 
5288
- #: defaults.php:566
5289
  msgid "User changed the canonical URL of a SEO post"
5290
  msgstr ""
5291
 
5292
- #: defaults.php:566
5293
  msgid ""
5294
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
5295
  "%ReportText%.%ChangeText% %EditorLinkPost%."
5296
  msgstr ""
5297
 
5298
- #: defaults.php:567
5299
  msgid "User changed the focus keyword of a SEO post"
5300
  msgstr ""
5301
 
5302
- #: defaults.php:567
5303
  msgid ""
5304
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
5305
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
5306
  msgstr ""
5307
 
5308
- #: defaults.php:568
5309
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
5310
  msgstr ""
5311
 
5312
- #: defaults.php:568
5313
  msgid ""
5314
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
5315
  "%PostTitle%. %EditorLinkPost%."
5316
  msgstr ""
5317
 
5318
- #: defaults.php:569
5319
  msgid "User changed the Title Separator setting"
5320
  msgstr ""
5321
 
5322
- #: defaults.php:569
5323
  msgid ""
5324
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
5325
  "settings."
5326
  msgstr ""
5327
 
5328
- #: defaults.php:570
5329
  msgid "User changed the Homepage Title setting"
5330
  msgstr ""
5331
 
5332
- #: defaults.php:570
5333
  msgid ""
5334
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
5335
  "%ChangeText%"
5336
  msgstr ""
5337
 
5338
- #: defaults.php:571
5339
  msgid "User changed the Homepage Meta description setting"
5340
  msgstr ""
5341
 
5342
- #: defaults.php:571
5343
  msgid ""
5344
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
5345
  "settings.%ChangeText%"
5346
  msgstr ""
5347
 
5348
- #: defaults.php:572
5349
  msgid "User changed the Company or Person setting"
5350
  msgstr ""
5351
 
5352
- #: defaults.php:572
5353
  msgid ""
5354
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
5355
  "plugin settings."
5356
  msgstr ""
5357
 
5358
- #: defaults.php:573
5359
  msgid ""
5360
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
5361
  "Yoast SEO plugin settings"
5362
  msgstr ""
5363
 
5364
- #: defaults.php:573
5365
  msgid ""
5366
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
5367
  "plugin settings."
5368
  msgstr ""
5369
 
5370
- #: defaults.php:574
5371
  msgid ""
5372
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
5373
  msgstr ""
5374
 
5375
- #: defaults.php:574
5376
  msgid ""
5377
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
5378
  "SEO plugin settings."
5379
  msgstr ""
5380
 
5381
- #: defaults.php:575
5382
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
5383
  msgstr ""
5384
 
5385
- #: defaults.php:575
5386
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
5387
  msgstr ""
5388
 
5389
- #: defaults.php:576
5390
  msgid ""
5391
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
5392
  msgstr ""
5393
 
5394
- #: defaults.php:576
5395
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
5396
  msgstr ""
5397
 
5398
- #: defaults.php:577
5399
  msgid ""
5400
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
5401
  msgstr ""
5402
 
5403
- #: defaults.php:577
5404
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
5405
  msgstr ""
5406
 
5407
- #: defaults.php:578
5408
  msgid ""
5409
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
5410
  msgstr ""
5411
 
5412
- #: defaults.php:578
5413
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
5414
  msgstr ""
5415
 
5416
- #: defaults.php:579
5417
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
5418
  msgstr ""
5419
 
5420
- #: defaults.php:579
5421
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
5422
  msgstr ""
5423
 
5424
- #: defaults.php:580
5425
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
5426
  msgstr ""
5427
 
5428
- #: defaults.php:580
5429
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
5430
  msgstr ""
5431
 
5432
- #: defaults.php:581
5433
  msgid ""
5434
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
5435
  msgstr ""
5436
 
5437
- #: defaults.php:581
5438
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
5439
  msgstr ""
5440
 
5441
- #: defaults.php:582
5442
  msgid ""
5443
  "User changed the Posts/Pages meta description template in the Yoast SEO "
5444
  "plugin settings"
5445
  msgstr ""
5446
 
5447
- #: defaults.php:582
5448
  msgid ""
5449
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
5450
  "the Yoast SEO plugin settings."
5451
  msgstr ""
5452
 
5453
- #: defaults.php:583
5454
  msgid ""
5455
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
5456
  "plugin settings"
5457
  msgstr ""
5458
 
5459
- #: defaults.php:583
5460
  msgid ""
5461
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
5462
  "SEO plugin settings."
5463
  msgstr ""
5464
 
5465
- #: defaults.php:584
5466
  msgid ""
5467
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
5468
  "plugin settings"
5469
  msgstr ""
5470
 
5471
- #: defaults.php:584
5472
  msgid ""
5473
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
5474
  "plugin settings."
5475
  msgstr ""
5476
 
5477
- #: defaults.php:585
5478
  msgid ""
5479
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
5480
  "plugin settings"
5481
  msgstr ""
5482
 
5483
- #: defaults.php:585
5484
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
5485
  msgstr ""
5486
 
5487
  #. translators: Username
5488
- #: wp-security-audit-log.php:342 wp-security-audit-log.php:369
5489
  #, php-format
5490
  msgid "Hey %1$s"
5491
  msgstr ""
5492
 
5493
- #: wp-security-audit-log.php:343
5494
  msgid ""
5495
  "Never miss an important update! Opt-in to our security and feature updates "
5496
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
5497
  msgstr ""
5498
 
5499
- #: wp-security-audit-log.php:344 wp-security-audit-log.php:372
5500
  msgid "Note: "
5501
  msgstr ""
5502
 
5503
- #: wp-security-audit-log.php:345 wp-security-audit-log.php:373
5504
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
5505
  msgstr ""
5506
 
5507
  #. translators: 1: Plugin name. 2: Freemius link.
5508
- #: wp-security-audit-log.php:371
5509
  #, php-format
5510
  msgid ""
5511
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
@@ -5514,7 +5532,7 @@ msgid ""
5514
  msgstr ""
5515
 
5516
  #. translators: Plugin name
5517
- #: wp-security-audit-log.php:393
5518
  #, php-format
5519
  msgid ""
5520
  "Get a free 7-day trial of the premium edition of %s. No credit card "
@@ -5522,55 +5540,55 @@ msgid ""
5522
  msgstr ""
5523
 
5524
  #. Plugin Name of the plugin/theme
5525
- #: wp-security-audit-log.php:394
5526
  msgid "WP Security Audit Log"
5527
  msgstr ""
5528
 
5529
- #: wp-security-audit-log.php:398
5530
  msgid "Start free trial"
5531
  msgstr ""
5532
 
5533
- #: wp-security-audit-log.php:468
5534
  msgid ""
5535
  "Error: You do not have sufficient permissions to disable this custom field."
5536
  msgstr ""
5537
 
5538
- #: wp-security-audit-log.php:504
5539
  msgid "Error: You do not have sufficient permissions to disable this alert."
5540
  msgstr ""
5541
 
5542
- #: wp-security-audit-log.php:629
5543
  #, php-format
5544
  msgid ""
5545
  "You are using a version of PHP that is older than %s, which is no longer "
5546
  "supported."
5547
  msgstr ""
5548
 
5549
- #: wp-security-audit-log.php:630
5550
  msgid ""
5551
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
5552
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
5553
  "are using."
5554
  msgstr ""
5555
 
5556
- #: wp-security-audit-log.php:1317
5557
  msgid "Every 45 minutes"
5558
  msgstr ""
5559
 
5560
- #: wp-security-audit-log.php:1321
5561
  msgid "Every 30 minutes"
5562
  msgstr ""
5563
 
5564
- #: wp-security-audit-log.php:1325
5565
  msgid "Every 10 minutes"
5566
  msgstr ""
5567
 
5568
- #: wp-security-audit-log.php:1329
5569
  msgid "Every 1 minute"
5570
  msgstr ""
5571
 
5572
  #. translators: 1. Deprecated method name 2. Version since deprecated
5573
- #: wp-security-audit-log.php:1343
5574
  #, php-format
5575
  msgid "Method %1$s is deprecated since version %2$s!"
5576
  msgstr ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: WP Security Audit Log\n"
6
+ "POT-Creation-Date: 2018-11-15 07:18+0000\n"
7
+ "PO-Revision-Date: 2018-11-15 07:18+0000\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
  "X-Poedit-WPHeader: wp-security-audit-log.php\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
  #. translators: Event ID
25
+ #: classes/AlertManager.php:256
26
  #, php-format
27
  msgid "Event with code %d has not be registered."
28
  msgstr ""
29
 
30
+ #: classes/AlertManager.php:311
31
  #, php-format
32
  msgid "Event %s already registered with WP Security Audit Log."
33
  msgstr ""
34
 
35
+ #: classes/AlertManager.php:346
36
  msgid ""
37
  "You have custom events that are using the same ID or IDs which are already "
38
  "registered in the plugin, so they have been disabled."
39
  msgstr ""
40
 
41
+ #: classes/AlertManager.php:349
42
  #, php-format
43
  msgid "%4$s to help you solve this issue."
44
  msgstr ""
45
 
46
+ #: classes/AlertManager.php:351
47
  msgid "ERROR:"
48
  msgstr ""
49
 
50
+ #: classes/AlertManager.php:353
51
  msgid "Contact us"
52
  msgstr ""
53
 
148
  msgid "Plugin"
149
  msgstr ""
150
 
151
+ #: classes/AuditLogListView.php:442 defaults.php:347
152
  msgid "Plugins"
153
  msgstr ""
154
 
157
  msgstr ""
158
 
159
  #: classes/AuditLogListView.php:450 classes/Views/ToggleAlerts.php:391
160
+ #: classes/Views/ToggleAlerts.php:417 defaults.php:380
161
  msgid "System"
162
  msgstr ""
163
 
192
  msgid "Contact us on %s for assistance"
193
  msgstr ""
194
 
195
+ #: classes/AuditLogListView.php:868
196
  msgid "Select All"
197
  msgstr ""
198
 
253
  msgid "More Information"
254
  msgstr ""
255
 
256
+ #: classes/Sensors/Content.php:1284 classes/Sensors/Content.php:1292
257
  #: classes/Sensors/WooCommerce.php:599 classes/Sensors/WooCommerce.php:605
258
  msgid "Password Protected"
259
  msgstr ""
260
 
261
+ #: classes/Sensors/Content.php:1286 classes/Sensors/Content.php:1294
262
  msgid "Public"
263
  msgstr ""
264
 
265
+ #: classes/Sensors/Content.php:1288 classes/Sensors/Content.php:1296
266
  msgid "Private"
267
  msgstr ""
268
 
959
  msgid "Login Page Notification"
960
  msgstr ""
961
 
962
+ #: classes/Views/Settings.php:534 wp-security-audit-log.php:1348
963
  msgid ""
964
  "For security and auditing purposes, a record of all of your logged-in "
965
  "actions and changes within the WordPress dashboard will be recorded in an "
2250
  msgstr ""
2251
 
2252
  #: classes/Views/ToggleAlerts.php:200 classes/Views/ToggleAlerts.php:232
2253
+ #: defaults.php:256
2254
  msgid "Custom Post Types"
2255
  msgstr ""
2256
 
2257
  #: classes/Views/ToggleAlerts.php:200 classes/Views/ToggleAlerts.php:232
2258
+ #: defaults.php:296
2259
  msgid "Pages"
2260
  msgstr ""
2261
 
2262
  #: classes/Views/ToggleAlerts.php:235 classes/Views/ToggleAlerts.php:242
2263
+ #: classes/Views/ToggleAlerts.php:300 defaults.php:484
2264
  msgid "BBPress Forum"
2265
  msgstr ""
2266
 
2267
  #: classes/Views/ToggleAlerts.php:236 classes/Views/ToggleAlerts.php:249
2268
+ #: classes/Views/ToggleAlerts.php:313 defaults.php:547
2269
  msgid "WooCommerce"
2270
  msgstr ""
2271
 
2272
  #: classes/Views/ToggleAlerts.php:237 classes/Views/ToggleAlerts.php:256
2273
  #: classes/Views/ToggleAlerts.php:313 classes/Views/ToggleAlerts.php:321
2274
+ #: defaults.php:513
2275
  msgid "WooCommerce Products"
2276
  msgstr ""
2277
 
2278
  #: classes/Views/ToggleAlerts.php:238 classes/Views/ToggleAlerts.php:263
2279
+ #: classes/Views/ToggleAlerts.php:328 defaults.php:562
2280
  msgid "Yoast SEO"
2281
  msgstr ""
2282
 
2283
  #: classes/Views/ToggleAlerts.php:239 classes/Views/ToggleAlerts.php:272
2284
+ #: classes/Views/ToggleAlerts.php:341 defaults.php:461
2285
  msgid "MultiSite"
2286
  msgstr ""
2287
 
3174
  msgstr ""
3175
 
3176
  #: defaults.php:223
3177
+ msgid "User changed category name"
3178
  msgstr ""
3179
 
3180
  #: defaults.php:223
3181
+ msgid "Changed the name of the category %old_name% to %new_name%."
3182
+ msgstr ""
3183
+
3184
+ #: defaults.php:224
3185
+ msgid "User changed category slug"
3186
+ msgstr ""
3187
+
3188
+ #: defaults.php:224
3189
+ msgid ""
3190
+ "Changed the slug of the category %CategoryName% from %old_slug% to %new_slug"
3191
+ "%."
3192
+ msgstr ""
3193
+
3194
+ #: defaults.php:225
3195
+ msgid "User created a custom field for a post"
3196
+ msgstr ""
3197
+
3198
+ #: defaults.php:225
3199
  msgid ""
3200
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3201
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3202
  "%EditorLinkPost%.<br>%MetaLink%."
3203
  msgstr ""
3204
 
3205
+ #: defaults.php:226
3206
  msgid "User updated a custom field value for a post"
3207
  msgstr ""
3208
 
3209
+ #: defaults.php:226
3210
  msgid ""
3211
  "Modified the value of the custom field %MetaKey%%ReportText% in the "
3212
  "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
3213
  "%EditorLinkPost%.<br>%MetaLink%."
3214
  msgstr ""
3215
 
3216
+ #: defaults.php:227
3217
  msgid "User deleted a custom field from a post"
3218
  msgstr ""
3219
 
3220
+ #: defaults.php:227
3221
  msgid ""
3222
  "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
3223
  "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
3224
  msgstr ""
3225
 
3226
+ #: defaults.php:228
3227
  msgid "User updated a custom field name for a post"
3228
  msgstr ""
3229
 
3230
+ #: defaults.php:228
3231
  msgid ""
3232
  "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
3233
  "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3234
  "%EditorLinkPost%.<br>%MetaLink%."
3235
  msgstr ""
3236
 
3237
+ #: defaults.php:234
3238
  msgid "Comments"
3239
  msgstr ""
3240
 
3241
+ #: defaults.php:235
3242
  msgid "User approved a comment"
3243
  msgstr ""
3244
 
3245
+ #: defaults.php:235
3246
  msgid ""
3247
  "Approved the comment posted in response to the post %PostTitle% by %Author% "
3248
  "on %CommentLink%."
3249
  msgstr ""
3250
 
3251
+ #: defaults.php:236
3252
  msgid "User unapproved a comment"
3253
  msgstr ""
3254
 
3255
+ #: defaults.php:236
3256
  msgid ""
3257
  "Unapproved the comment posted in response to the post %PostTitle% by %Author"
3258
  "% on %CommentLink%."
3259
  msgstr ""
3260
 
3261
+ #: defaults.php:237
3262
  msgid "User replied to a comment"
3263
  msgstr ""
3264
 
3265
+ #: defaults.php:237
3266
  msgid ""
3267
  "Replied to the comment posted in response to the post %PostTitle% by %Author"
3268
  "% on %CommentLink%."
3269
  msgstr ""
3270
 
3271
+ #: defaults.php:238
3272
  msgid "User edited a comment"
3273
  msgstr ""
3274
 
3275
+ #: defaults.php:238
3276
  msgid ""
3277
  "Edited a comment posted in response to the post %PostTitle% by %Author% on "
3278
  "%CommentLink%."
3279
  msgstr ""
3280
 
3281
+ #: defaults.php:239
3282
  msgid "User marked a comment as Spam"
3283
  msgstr ""
3284
 
3285
+ #: defaults.php:239
3286
  msgid ""
3287
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3288
  "%CommentLink% as Spam."
3289
  msgstr ""
3290
 
3291
+ #: defaults.php:240
3292
  msgid "User marked a comment as Not Spam"
3293
  msgstr ""
3294
 
3295
+ #: defaults.php:240
3296
  msgid ""
3297
  "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3298
  "%CommentLink% as Not Spam."
3299
  msgstr ""
3300
 
3301
+ #: defaults.php:241
3302
  msgid "User moved a comment to trash"
3303
  msgstr ""
3304
 
3305
+ #: defaults.php:241
3306
  msgid ""
3307
  "Moved the comment posted in response to the post %PostTitle% by %Author% on "
3308
  "%Date% to trash."
3309
  msgstr ""
3310
 
3311
+ #: defaults.php:242
3312
  msgid "User restored a comment from the trash"
3313
  msgstr ""
3314
 
3315
+ #: defaults.php:242
3316
  msgid ""
3317
  "Restored the comment posted in response to the post %PostTitle% by %Author% "
3318
  "on %CommentLink% from the trash."
3319
  msgstr ""
3320
 
3321
+ #: defaults.php:243
3322
  msgid "User permanently deleted a comment"
3323
  msgstr ""
3324
 
3325
+ #: defaults.php:243
3326
  msgid ""
3327
  "Permanently deleted the comment posted in response to the post %PostTitle% "
3328
  "by %Author% on %Date%."
3329
  msgstr ""
3330
 
3331
+ #: defaults.php:244
3332
  msgid "User posted a comment"
3333
  msgstr ""
3334
 
3335
+ #: defaults.php:244 defaults.php:245
3336
  msgid "%CommentMsg% on %CommentLink%."
3337
  msgstr ""
3338
 
3339
+ #: defaults.php:245
3340
  msgid "Visitor posted a comment"
3341
  msgstr ""
3342
 
3343
+ #: defaults.php:257
3344
  msgid "User modified a draft blog post"
3345
  msgstr ""
3346
 
3347
+ #: defaults.php:257
3348
  msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3349
  msgstr ""
3350
 
3351
+ #: defaults.php:258
3352
  msgid "User created a new post with custom post type and saved it as draft"
3353
  msgstr ""
3354
 
3355
+ #: defaults.php:258
3356
  msgid ""
3357
  "Created a new custom post called %PostTitle% of type %PostType%. "
3358
  "%EditorLinkPost%."
3359
  msgstr ""
3360
 
3361
+ #: defaults.php:259
3362
  msgid "User published a post with custom post type"
3363
  msgstr ""
3364
 
3365
+ #: defaults.php:259
3366
  msgid ""
3367
  "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3368
  "%. %EditorLinkPost%."
3369
  msgstr ""
3370
 
3371
+ #: defaults.php:260
3372
  msgid "User modified a post with custom post type"
3373
  msgstr ""
3374
 
3375
+ #: defaults.php:260
3376
  msgid ""
3377
  "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3378
  "%. %EditorLinkPost%."
3379
  msgstr ""
3380
 
3381
+ #: defaults.php:261
3382
  msgid "User modified a draft post with custom post type"
3383
  msgstr ""
3384
 
3385
+ #: defaults.php:261
3386
  msgid ""
3387
  "Modified the draft custom post %PostTitle% of type is %PostType%. "
3388
  "%EditorLinkPost%."
3389
  msgstr ""
3390
 
3391
+ #: defaults.php:262
3392
  msgid "User permanently deleted post with custom post type"
3393
  msgstr ""
3394
 
3395
+ #: defaults.php:262
3396
  msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3397
  msgstr ""
3398
 
3399
+ #: defaults.php:263
3400
  msgid "User moved post with custom post type to trash"
3401
  msgstr ""
3402
 
3403
+ #: defaults.php:263
3404
  msgid ""
3405
  "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
3406
  "%PostUrl%."
3407
  msgstr ""
3408
 
3409
+ #: defaults.php:264
3410
  msgid "User restored post with custom post type from trash"
3411
  msgstr ""
3412
 
3413
+ #: defaults.php:264
3414
  msgid ""
3415
  "The custom post %PostTitle% of type %PostType% has been restored from trash. "
3416
  "%EditorLinkPost%."
3417
  msgstr ""
3418
 
3419
+ #: defaults.php:265
3420
  msgid "User changed the category of a post with custom post type"
3421
  msgstr ""
3422
 
3423
+ #: defaults.php:265
3424
  msgid ""
3425
  "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
3426
  "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3427
  msgstr ""
3428
 
3429
+ #: defaults.php:266
3430
  msgid "User changed the URL of a post with custom post type"
3431
  msgstr ""
3432
 
3433
+ #: defaults.php:266
3434
  msgid ""
3435
  "Changed the URL of the custom post %PostTitle% of type %PostType% from "
3436
  "%OldUrl% to %NewUrl%. %EditorLinkPost%."
3437
  msgstr ""
3438
 
3439
+ #: defaults.php:267
3440
  msgid "User changed the author or post with custom post type"
3441
  msgstr ""
3442
 
3443
+ #: defaults.php:267
3444
  msgid ""
3445
  "Changed the author of custom post %PostTitle% of type %PostType% from "
3446
  "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3447
  msgstr ""
3448
 
3449
+ #: defaults.php:268
3450
  msgid "User changed the status of post with custom post type"
3451
  msgstr ""
3452
 
3453
+ #: defaults.php:268
3454
  msgid ""
3455
  "Changed the status of custom post %PostTitle% of type %PostType% from "
3456
  "%OldStatus% to %NewStatus%. %EditorLinkPost%."
3457
  msgstr ""
3458
 
3459
+ #: defaults.php:269
3460
  msgid "User changed the visibility of a post with custom post type"
3461
  msgstr ""
3462
 
3463
+ #: defaults.php:269
3464
  msgid ""
3465
  "Changed the visibility of the custom post %PostTitle% of type %PostType% "
3466
  "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3467
  msgstr ""
3468
 
3469
+ #: defaults.php:270
3470
  msgid "User changed the date of post with custom post type"
3471
  msgstr ""
3472
 
3473
+ #: defaults.php:270
3474
  msgid ""
3475
  "Changed the date of the custom post %PostTitle% of type %PostType% from "
3476
  "%OldDate% to %NewDate%. %EditorLinkPost%."
3477
  msgstr ""
3478
 
3479
+ #: defaults.php:271
3480
  msgid "User created a custom field for a custom post type"
3481
  msgstr ""
3482
 
3483
+ #: defaults.php:271
3484
  msgid ""
3485
  "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
3486
  "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3487
  msgstr ""
3488
 
3489
+ #: defaults.php:272
3490
  msgid "User updated a custom field for a custom post type"
3491
  msgstr ""
3492
 
3493
+ #: defaults.php:272
3494
  msgid ""
3495
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3496
  "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
3497
  "%.<br>%MetaLink%."
3498
  msgstr ""
3499
 
3500
+ #: defaults.php:273
3501
  msgid "User deleted a custom field from a custom post type"
3502
  msgstr ""
3503
 
3504
+ #: defaults.php:273
3505
  msgid ""
3506
  "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
3507
  "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3508
  msgstr ""
3509
 
3510
+ #: defaults.php:274
3511
  msgid "User updated a custom field name for a custom post type"
3512
  msgstr ""
3513
 
3514
+ #: defaults.php:274
3515
  msgid ""
3516
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
3517
  "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3518
  msgstr ""
3519
 
3520
+ #: defaults.php:275
3521
  msgid "User modified content for a published custom post type"
3522
  msgstr ""
3523
 
3524
+ #: defaults.php:275
3525
  msgid ""
3526
  "Modified the content of the published custom post type %PostTitle%. Post URL "
3527
  "is %PostUrl%.%EditorLinkPost%."
3528
  msgstr ""
3529
 
3530
+ #: defaults.php:276
3531
  msgid "User modified content for a draft post"
3532
  msgstr ""
3533
 
3534
+ #: defaults.php:276
3535
  msgid ""
3536
  "Modified the content of the draft post %PostTitle%.%RevisionLink% "
3537
  "%EditorLinkPost%."
3538
  msgstr ""
3539
 
3540
+ #: defaults.php:277
3541
  msgid "User modified content for a draft custom post type"
3542
  msgstr ""
3543
 
3544
+ #: defaults.php:277
3545
  msgid ""
3546
  "Modified the content of the draft custom post type %PostTitle%."
3547
  "%EditorLinkPost%."
3548
  msgstr ""
3549
 
3550
+ #: defaults.php:278
3551
  msgid "User modified content of a post"
3552
  msgstr ""
3553
 
3554
+ #: defaults.php:278
3555
  msgid ""
3556
  "Modified the content of post %PostTitle% which is submitted for review."
3557
  "%RevisionLink% %EditorLinkPost%."
3558
  msgstr ""
3559
 
3560
+ #: defaults.php:279
3561
  msgid "User scheduled a custom post type"
3562
  msgstr ""
3563
 
3564
+ #: defaults.php:279
3565
  msgid ""
3566
  "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
3567
  "%EditorLinkPost%."
3568
  msgstr ""
3569
 
3570
+ #: defaults.php:280
3571
  msgid "User changed title of a custom post type"
3572
  msgstr ""
3573
 
3574
+ #: defaults.php:280
3575
  msgid ""
3576
  "Changed the title of the custom post %OldTitle% to %NewTitle%. "
3577
  "%EditorLinkPost%."
3578
  msgstr ""
3579
 
3580
+ #: defaults.php:281
3581
  msgid "User opened a custom post type in the editor"
3582
  msgstr ""
3583
 
3584
+ #: defaults.php:281
3585
  msgid ""
3586
  "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
3587
  "the post: %EditorLinkPost%."
3588
  msgstr ""
3589
 
3590
+ #: defaults.php:282
3591
  msgid "User viewed a custom post type"
3592
  msgstr ""
3593
 
3594
+ #: defaults.php:282
3595
  msgid ""
3596
  "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
3597
  "%PostUrl%."
3598
  msgstr ""
3599
 
3600
+ #: defaults.php:283
3601
  msgid "A plugin created a custom post"
3602
  msgstr ""
3603
 
3604
+ #: defaults.php:283
3605
  msgid "A plugin automatically created the following custom post: %PostTitle%."
3606
  msgstr ""
3607
 
3608
+ #: defaults.php:284
3609
  msgid "A plugin deleted a custom post"
3610
  msgstr ""
3611
 
3612
+ #: defaults.php:284
3613
  msgid "A plugin automatically deleted the following custom post: %PostTitle%."
3614
  msgstr ""
3615
 
3616
+ #: defaults.php:285
3617
  msgid "A plugin modified a custom post"
3618
  msgstr ""
3619
 
3620
+ #: defaults.php:285
3621
  msgid ""
3622
  "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
3623
  msgstr ""
3624
 
3625
+ #: defaults.php:297
3626
  msgid "User created a new WordPress page and saved it as draft"
3627
  msgstr ""
3628
 
3629
+ #: defaults.php:297
3630
  msgid ""
3631
  "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
3632
  "%."
3633
  msgstr ""
3634
 
3635
+ #: defaults.php:298
3636
  msgid "User published a WordPress page"
3637
  msgstr ""
3638
 
3639
+ #: defaults.php:298
3640
  msgid ""
3641
  "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
3642
  msgstr ""
3643
 
3644
+ #: defaults.php:299
3645
  msgid "User modified a published WordPress page"
3646
  msgstr ""
3647
 
3648
+ #: defaults.php:299
3649
  msgid ""
3650
  "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
3651
  "%EditorLinkPage%."
3652
  msgstr ""
3653
 
3654
+ #: defaults.php:300
3655
  msgid "User modified a draft WordPress page"
3656
  msgstr ""
3657
 
3658
+ #: defaults.php:300
3659
  msgid ""
3660
  "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
3661
  msgstr ""
3662
 
3663
+ #: defaults.php:301
3664
  msgid "User permanently deleted a page from the trash"
3665
  msgstr ""
3666
 
3667
+ #: defaults.php:301
3668
  msgid "Permanently deleted the page %PostTitle%."
3669
  msgstr ""
3670
 
3671
+ #: defaults.php:302
3672
  msgid "User moved WordPress page to the trash"
3673
  msgstr ""
3674
 
3675
+ #: defaults.php:302
3676
  msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
3677
  msgstr ""
3678
 
3679
+ #: defaults.php:303
3680
  msgid "User restored a WordPress page from trash"
3681
  msgstr ""
3682
 
3683
+ #: defaults.php:303
3684
  msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
3685
  msgstr ""
3686
 
3687
+ #: defaults.php:304
3688
  msgid "User changed page URL"
3689
  msgstr ""
3690
 
3691
+ #: defaults.php:304
3692
  msgid ""
3693
  "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
3694
  "%EditorLinkPage%."
3695
  msgstr ""
3696
 
3697
+ #: defaults.php:305
3698
  msgid "User changed page author"
3699
  msgstr ""
3700
 
3701
+ #: defaults.php:305
3702
  msgid ""
3703
  "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
3704
  "%EditorLinkPage%."
3705
  msgstr ""
3706
 
3707
+ #: defaults.php:306
3708
  msgid "User changed page status"
3709
  msgstr ""
3710
 
3711
+ #: defaults.php:306
3712
  msgid ""
3713
  "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
3714
  "%EditorLinkPage%."
3715
  msgstr ""
3716
 
3717
+ #: defaults.php:307
3718
  msgid "User changed the visibility of a page post"
3719
  msgstr ""
3720
 
3721
+ #: defaults.php:307
3722
  msgid ""
3723
  "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
3724
  "%NewVisibility%. %EditorLinkPage%."
3725
  msgstr ""
3726
 
3727
+ #: defaults.php:308
3728
  msgid "User changed the date of a page post"
3729
  msgstr ""
3730
 
3731
+ #: defaults.php:308
3732
  msgid ""
3733
  "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
3734
  "%EditorLinkPage%."
3735
  msgstr ""
3736
 
3737
+ #: defaults.php:309
3738
  msgid "User created a custom field for a page"
3739
  msgstr ""
3740
 
3741
+ #: defaults.php:309
3742
  msgid ""
3743
  "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3744
  "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3745
  msgstr ""
3746
 
3747
+ #: defaults.php:310
3748
  msgid "User updated a custom field value for a page"
3749
  msgstr ""
3750
 
3751
+ #: defaults.php:310
3752
  msgid ""
3753
  "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3754
  "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3755
  msgstr ""
3756
 
3757
+ #: defaults.php:311
3758
  msgid "User deleted a custom field from a page"
3759
  msgstr ""
3760
 
3761
+ #: defaults.php:311
3762
  msgid ""
3763
  "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
3764
  "%EditorLinkPage%.<br>%MetaLink%."
3765
  msgstr ""
3766
 
3767
+ #: defaults.php:312
3768
  msgid "User updated a custom field name for a page"
3769
  msgstr ""
3770
 
3771
+ #: defaults.php:312
3772
  msgid ""
3773
  "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
3774
  "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3775
  msgstr ""
3776
 
3777
+ #: defaults.php:313
3778
  msgid "User modified content for a published page"
3779
  msgstr ""
3780
 
3781
+ #: defaults.php:313
3782
  msgid ""
3783
  "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
3784
  "%. %RevisionLink% %EditorLinkPage%."
3785
  msgstr ""
3786
 
3787
+ #: defaults.php:314
3788
  msgid "User modified content for a draft page"
3789
  msgstr ""
3790
 
3791
+ #: defaults.php:314
3792
  msgid ""
3793
  "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
3794
  "%."
3795
  msgstr ""
3796
 
3797
+ #: defaults.php:315
3798
  msgid "User scheduled a page"
3799
  msgstr ""
3800
 
3801
+ #: defaults.php:315
3802
  msgid ""
3803
  "Scheduled the page %PostTitle% to be published %PublishingDate%. "
3804
  "%EditorLinkPage%."
3805
  msgstr ""
3806
 
3807
+ #: defaults.php:316
3808
  msgid "User changed title of a page"
3809
  msgstr ""
3810
 
3811
+ #: defaults.php:316
3812
  msgid ""
3813
  "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
3814
  msgstr ""
3815
 
3816
+ #: defaults.php:317
3817
  msgid "User opened a page in the editor"
3818
  msgstr ""
3819
 
3820
+ #: defaults.php:317
3821
  msgid ""
3822
  "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
3823
  msgstr ""
3824
 
3825
+ #: defaults.php:318
3826
  msgid "User viewed a page"
3827
  msgstr ""
3828
 
3829
+ #: defaults.php:318
3830
  msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
3831
  msgstr ""
3832
 
3833
+ #: defaults.php:319
3834
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
3835
  msgstr ""
3836
 
3837
+ #: defaults.php:319
3838
  msgid ""
3839
  "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3840
  msgstr ""
3841
 
3842
+ #: defaults.php:320
3843
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
3844
  msgstr ""
3845
 
3846
+ #: defaults.php:320
3847
  msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3848
  msgstr ""
3849
 
3850
+ #: defaults.php:321
3851
  msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
3852
  msgstr ""
3853
 
3854
+ #: defaults.php:321
3855
  msgid ""
3856
  "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3857
  msgstr ""
3858
 
3859
+ #: defaults.php:322
3860
  msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
3861
  msgstr ""
3862
 
3863
+ #: defaults.php:322
3864
  msgid ""
3865
  "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3866
  msgstr ""
3867
 
3868
+ #: defaults.php:323
3869
  msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
3870
  msgstr ""
3871
 
3872
+ #: defaults.php:323
3873
  msgid ""
3874
  "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3875
  msgstr ""
3876
 
3877
+ #: defaults.php:324
3878
  msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
3879
  msgstr ""
3880
 
3881
+ #: defaults.php:324
3882
  msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3883
  msgstr ""
3884
 
3885
+ #: defaults.php:325
3886
  msgid "A plugin created a page"
3887
  msgstr ""
3888
 
3889
+ #: defaults.php:325
3890
  msgid "A plugin automatically created the following page: %PostTitle%."
3891
  msgstr ""
3892
 
3893
+ #: defaults.php:326
3894
  msgid "A plugin deleted a page"
3895
  msgstr ""
3896
 
3897
+ #: defaults.php:326
3898
  msgid "A plugin automatically deleted the following page: %PostTitle%."
3899
  msgstr ""
3900
 
3901
+ #: defaults.php:327
3902
  msgid "A plugin modified a page"
3903
  msgstr ""
3904
 
3905
+ #: defaults.php:327
3906
  msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
3907
  msgstr ""
3908
 
3909
+ #: defaults.php:334
3910
  msgid "WordPress Install"
3911
  msgstr ""
3912
 
3913
+ #: defaults.php:338
3914
  msgid "Database"
3915
  msgstr ""
3916
 
3917
+ #: defaults.php:339
3918
  msgid "Unknown component created tables"
3919
  msgstr ""
3920
 
3921
+ #: defaults.php:339
3922
  msgid ""
3923
  "An unknown component created these tables in the database: %TableNames%."
3924
  msgstr ""
3925
 
3926
+ #: defaults.php:340
3927
  msgid "Unknown component modified tables structure"
3928
  msgstr ""
3929
 
3930
+ #: defaults.php:340
3931
  msgid ""
3932
  "An unknown component modified the structure of these database tables: "
3933
  "%TableNames%."
3934
  msgstr ""
3935
 
3936
+ #: defaults.php:341
3937
  msgid "Unknown component deleted tables"
3938
  msgstr ""
3939
 
3940
+ #: defaults.php:341
3941
  msgid ""
3942
  "An unknown component deleted the following tables from the database: "
3943
  "%TableNames%."
3944
  msgstr ""
3945
 
3946
+ #: defaults.php:348
3947
  msgid "User installed a plugin"
3948
  msgstr ""
3949
 
3950
+ #: defaults.php:348
3951
  msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
3952
  msgstr ""
3953
 
3954
+ #: defaults.php:349
3955
  msgid "User activated a WordPress plugin"
3956
  msgstr ""
3957
 
3958
+ #: defaults.php:349
3959
  msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
3960
  msgstr ""
3961
 
3962
+ #: defaults.php:350
3963
  msgid "User deactivated a WordPress plugin"
3964
  msgstr ""
3965
 
3966
+ #: defaults.php:350
3967
  msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
3968
  msgstr ""
3969
 
3970
+ #: defaults.php:351
3971
  msgid "User uninstalled a plugin"
3972
  msgstr ""
3973
 
3974
+ #: defaults.php:351
3975
  msgid ""
3976
  "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
3977
  "%."
3978
  msgstr ""
3979
 
3980
+ #: defaults.php:352
3981
  msgid "User upgraded a plugin"
3982
  msgstr ""
3983
 
3984
+ #: defaults.php:352
3985
  msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
3986
  msgstr ""
3987
 
3988
+ #: defaults.php:353
3989
  msgid "Plugin created tables"
3990
  msgstr ""
3991
 
3992
+ #: defaults.php:353
3993
  msgid ""
3994
  "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
3995
  msgstr ""
3996
 
3997
+ #: defaults.php:354
3998
  msgid "Plugin modified tables structure"
3999
  msgstr ""
4000
 
4001
+ #: defaults.php:354
4002
  msgid ""
4003
  "Plugin %Plugin->Name% modified the structure of these database tables: "
4004
  "%TableNames%."
4005
  msgstr ""
4006
 
4007
+ #: defaults.php:355
4008
  msgid "Plugin deleted tables"
4009
  msgstr ""
4010
 
4011
+ #: defaults.php:355
4012
  msgid ""
4013
  "Plugin %Plugin->Name% deleted the following tables from the database: "
4014
  "%TableNames%."
4015
  msgstr ""
4016
 
4017
+ #: defaults.php:356
4018
  msgid "A plugin created a post"
4019
  msgstr ""
4020
 
4021
+ #: defaults.php:356
4022
  msgid ""
4023
  "A plugin automatically created the following %PostType% called %PostTitle%. "
4024
  "View the post: %EditorLinkPost%."
4025
  msgstr ""
4026
 
4027
+ #: defaults.php:357
4028
  msgid "A plugin deleted a post"
4029
  msgstr ""
4030
 
4031
+ #: defaults.php:357
4032
  msgid ""
4033
  "A plugin automatically deleted the following %PostType% called %PostTitle%."
4034
  msgstr ""
4035
 
4036
+ #: defaults.php:358
4037
  msgid "User changed a file using the plugin editor"
4038
  msgstr ""
4039
 
4040
+ #: defaults.php:358
4041
  msgid "Modified %File% with the Plugin Editor."
4042
  msgstr ""
4043
 
4044
+ #: defaults.php:364
4045
  msgid "Themes"
4046
  msgstr ""
4047
 
4048
+ #: defaults.php:365
4049
  msgid "User installed a theme"
4050
  msgstr ""
4051
 
4052
+ #: defaults.php:365
4053
  msgid ""
4054
  "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
4055
  msgstr ""
4056
 
4057
+ #: defaults.php:366
4058
  msgid "User activated a theme"
4059
  msgstr ""
4060
 
4061
+ #: defaults.php:366
4062
  msgid ""
4063
  "Activated the theme \"%Theme->Name%\", installed in %Theme-"
4064
  ">get_template_directory%."
4065
  msgstr ""
4066
 
4067
+ #: defaults.php:367
4068
  msgid "User uninstalled a theme"
4069
  msgstr ""
4070
 
4071
+ #: defaults.php:367
4072
  msgid ""
4073
  "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
4074
  ">get_template_directory%."
4075
  msgstr ""
4076
 
4077
+ #: defaults.php:368
4078
  msgid "Activated theme on network"
4079
  msgstr ""
4080
 
4081
+ #: defaults.php:368
4082
  msgid ""
4083
  "Network activated the theme %Theme->Name% installed in %Theme-"
4084
  ">get_template_directory%."
4085
  msgstr ""
4086
 
4087
+ #: defaults.php:369
4088
  msgid "Deactivated theme from network"
4089
  msgstr ""
4090
 
4091
+ #: defaults.php:369
4092
  msgid ""
4093
  "Network deactivated the theme %Theme->Name% installed in %Theme-"
4094
  ">get_template_directory%."
4095
  msgstr ""
4096
 
4097
+ #: defaults.php:370
4098
  msgid "Theme created tables"
4099
  msgstr ""
4100
 
4101
+ #: defaults.php:370
4102
  msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
4103
  msgstr ""
4104
 
4105
+ #: defaults.php:371
4106
  msgid "Theme modified tables structure"
4107
  msgstr ""
4108
 
4109
+ #: defaults.php:371
4110
  msgid ""
4111
  "Theme %Theme->Name% modified the structure of these database tables: "
4112
  "%TableNames%."
4113
  msgstr ""
4114
 
4115
+ #: defaults.php:372
4116
  msgid "Theme deleted tables"
4117
  msgstr ""
4118
 
4119
+ #: defaults.php:372
4120
  msgid ""
4121
  "Theme %Theme->Name% deleted the following tables from the database: "
4122
  "%TableNames%."
4123
  msgstr ""
4124
 
4125
+ #: defaults.php:373
4126
  msgid "User updated a theme"
4127
  msgstr ""
4128
 
4129
+ #: defaults.php:373
4130
  msgid ""
4131
  "Updated the theme \"%Theme->Name%\" installed in %Theme-"
4132
  ">get_template_directory%."
4133
  msgstr ""
4134
 
4135
+ #: defaults.php:374
4136
  msgid "User changed a file using the theme editor"
4137
  msgstr ""
4138
 
4139
+ #: defaults.php:374
4140
  msgid "Modified %File% with the Theme Editor."
4141
  msgstr ""
4142
 
4143
+ #: defaults.php:381
4144
  msgid "Unknown Error"
4145
  msgstr ""
4146
 
4147
+ #: defaults.php:381
4148
  msgid "An unexpected error has occurred ."
4149
  msgstr ""
4150
 
4151
+ #: defaults.php:382
4152
  msgid "PHP error"
4153
  msgstr ""
4154
 
4155
+ #: defaults.php:382 defaults.php:383 defaults.php:384 defaults.php:385
4156
+ #: defaults.php:386
4157
  msgid "%Message%."
4158
  msgstr ""
4159
 
4160
+ #: defaults.php:383
4161
  msgid "PHP warning"
4162
  msgstr ""
4163
 
4164
+ #: defaults.php:384
4165
  msgid "PHP notice"
4166
  msgstr ""
4167
 
4168
+ #: defaults.php:385
4169
  msgid "PHP exception"
4170
  msgstr ""
4171
 
4172
+ #: defaults.php:386
4173
  msgid "PHP shutdown error"
4174
  msgstr ""
4175
 
4176
+ #: defaults.php:387
4177
  msgid "Events automatically pruned by system"
4178
  msgstr ""
4179
 
4180
+ #: defaults.php:387
4181
  msgid "System automatically deleted %EventCount% event(s)."
4182
  msgstr ""
4183
 
4184
+ #: defaults.php:388
4185
  msgid "WordPress was updated"
4186
  msgstr ""
4187
 
4188
+ #: defaults.php:388
4189
  msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
4190
  msgstr ""
4191
 
4192
+ #: defaults.php:389
4193
  msgid "Reset plugin's settings to default"
4194
  msgstr ""
4195
 
4196
+ #: defaults.php:389
4197
  msgid "Reset plugin's settings to default."
4198
  msgstr ""
4199
 
4200
+ #: defaults.php:390
4201
  msgid "File content has been modified"
4202
  msgstr ""
4203
 
4204
+ #: defaults.php:390
4205
  msgid "The content of the file %FileLocation% has been modified."
4206
  msgstr ""
4207
 
4208
+ #: defaults.php:391
4209
  msgid "File added to the site"
4210
  msgstr ""
4211
 
4212
+ #: defaults.php:391
4213
  msgid "The file %FileLocation% has been added to your website."
4214
  msgstr ""
4215
 
4216
+ #: defaults.php:392
4217
  msgid "File deleted from the site"
4218
  msgstr ""
4219
 
4220
+ #: defaults.php:392
4221
  msgid "The file %FileLocation% has been deleted from your website."
4222
  msgstr ""
4223
 
4224
+ #: defaults.php:393
4225
  msgid "File not scanned because it is bigger than 5MB"
4226
  msgstr ""
4227
 
4228
+ #: defaults.php:393
4229
  msgid ""
4230
  "The file %FileLocation% was not scanned because it is bigger than 5MB. "
4231
  "Please <a href=\"https://www.wpsecurityauditlog.com/contact/\" target="
4232
  "\"_blank\">contact our support</a> for more information."
4233
  msgstr ""
4234
 
4235
+ #: defaults.php:394
4236
  msgid "File integrity scan stopped due to the limit of 1 million files"
4237
  msgstr ""
4238
 
4239
+ #: defaults.php:394
4240
  msgid ""
4241
  "The file changes scanning engine has reached the limit of 1 million files "
4242
  "and stopped the scan. Please <a href=\"https://www.wpsecurityauditlog.com/"
4243
  "contact/\" target=\"_blank\">contact our support</a> for more information."
4244
  msgstr ""
4245
 
4246
+ #: defaults.php:395
4247
  msgid "File integrity scan started/stopped"
4248
  msgstr ""
4249
 
4250
+ #: defaults.php:395
4251
  msgid ""
4252
  "The file integrity scanner has %ScanStatus% scanning %ScanLocation%%ScanError"
4253
  "%."
4254
  msgstr ""
4255
 
4256
+ #: defaults.php:396
4257
  msgid "Purged the activity log"
4258
  msgstr ""
4259
 
4260
+ #: defaults.php:396
4261
  msgid "Purged the activity log."
4262
  msgstr ""
4263
 
4264
+ #: defaults.php:397
4265
  msgid "Advertising Add-ons"
4266
  msgstr ""
4267
 
4268
+ #: defaults.php:397
4269
  msgid "%PromoName% %PromoMessage%"
4270
  msgstr ""
4271
 
4272
+ #: defaults.php:403
4273
  msgid "Menus"
4274
  msgstr ""
4275
 
4276
+ #: defaults.php:404
4277
  msgid "User created new menu"
4278
  msgstr ""
4279
 
4280
+ #: defaults.php:404
4281
  msgid "Created a new menu called %MenuName%."
4282
  msgstr ""
4283
 
4284
+ #: defaults.php:405
4285
  msgid "User added content to a menu"
4286
  msgstr ""
4287
 
4288
+ #: defaults.php:405
4289
  msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
4290
  msgstr ""
4291
 
4292
+ #: defaults.php:406
4293
  msgid "User removed content from a menu"
4294
  msgstr ""
4295
 
4296
+ #: defaults.php:406
4297
  msgid ""
4298
  "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
4299
  msgstr ""
4300
 
4301
+ #: defaults.php:407
4302
  msgid "User deleted menu"
4303
  msgstr ""
4304
 
4305
+ #: defaults.php:407
4306
  msgid "Deleted the menu %MenuName%."
4307
  msgstr ""
4308
 
4309
+ #: defaults.php:408
4310
  msgid "User changed menu setting"
4311
  msgstr ""
4312
 
4313
+ #: defaults.php:408
4314
  msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
4315
  msgstr ""
4316
 
4317
+ #: defaults.php:409
4318
  msgid "User modified content in a menu"
4319
  msgstr ""
4320
 
4321
+ #: defaults.php:409
4322
  msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
4323
  msgstr ""
4324
 
4325
+ #: defaults.php:410
4326
  msgid "User changed name of a menu"
4327
  msgstr ""
4328
 
4329
+ #: defaults.php:410
4330
  msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
4331
  msgstr ""
4332
 
4333
+ #: defaults.php:411
4334
  msgid "User changed order of the objects in a menu"
4335
  msgstr ""
4336
 
4337
+ #: defaults.php:411
4338
  msgid "Changed the order of the %ItemName% in menu %MenuName%."
4339
  msgstr ""
4340
 
4341
+ #: defaults.php:412
4342
  msgid "User moved objects as a sub-item"
4343
  msgstr ""
4344
 
4345
+ #: defaults.php:412
4346
  msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
4347
  msgstr ""
4348
 
4349
+ #: defaults.php:418
4350
  msgid "Widgets"
4351
  msgstr ""
4352
 
4353
+ #: defaults.php:419
4354
  msgid "User added a new widget"
4355
  msgstr ""
4356
 
4357
+ #: defaults.php:419
4358
  msgid "Added a new %WidgetName% widget in %Sidebar%."
4359
  msgstr ""
4360
 
4361
+ #: defaults.php:420
4362
  msgid "User modified a widget"
4363
  msgstr ""
4364
 
4365
+ #: defaults.php:420
4366
  msgid "Modified the %WidgetName% widget in %Sidebar%."
4367
  msgstr ""
4368
 
4369
+ #: defaults.php:421
4370
  msgid "User deleted widget"
4371
  msgstr ""
4372
 
4373
+ #: defaults.php:421
4374
  msgid "Deleted the %WidgetName% widget from %Sidebar%."
4375
  msgstr ""
4376
 
4377
+ #: defaults.php:422
4378
  msgid "User moved widget"
4379
  msgstr ""
4380
 
4381
+ #: defaults.php:422
4382
  msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
4383
  msgstr ""
4384
 
4385
+ #: defaults.php:423
4386
  msgid "User changed widget position"
4387
  msgstr ""
4388
 
4389
+ #: defaults.php:423
4390
  msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
4391
  msgstr ""
4392
 
4393
+ #: defaults.php:429
4394
  msgid "WordPress Settings"
4395
  msgstr ""
4396
 
4397
+ #: defaults.php:430
4398
  msgid "Option Anyone Can Register in WordPress settings changed"
4399
  msgstr ""
4400
 
4401
+ #: defaults.php:430
4402
  msgid "%NewValue% the option \"Anyone can register\"."
4403
  msgstr ""
4404
 
4405
+ #: defaults.php:431
4406
  msgid "New User Default Role changed"
4407
  msgstr ""
4408
 
4409
+ #: defaults.php:431
4410
  msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
4411
  msgstr ""
4412
 
4413
+ #: defaults.php:432
4414
  msgid "WordPress Administrator Notification email changed"
4415
  msgstr ""
4416
 
4417
+ #: defaults.php:432
4418
  msgid ""
4419
  "Changed the WordPress administrator notifications email address from "
4420
  "%OldEmail% to %NewEmail%."
4421
  msgstr ""
4422
 
4423
+ #: defaults.php:433
4424
  msgid "User changes the WordPress Permalinks"
4425
  msgstr ""
4426
 
4427
+ #: defaults.php:433
4428
  msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
4429
  msgstr ""
4430
 
4431
+ #: defaults.php:434
4432
  msgid ""
4433
  "Enabled/Disabled the option Discourage search engines from indexing this site"
4434
  msgstr ""
4435
 
4436
+ #: defaults.php:434
4437
  msgid "%Status% the option Discourage search engines from indexing this site."
4438
  msgstr ""
4439
 
4440
+ #: defaults.php:435
4441
  msgid "Enabled/Disabled comments on all the website"
4442
  msgstr ""
4443
 
4444
+ #: defaults.php:435
4445
  msgid "%Status% comments on all the website."
4446
  msgstr ""
4447
 
4448
+ #: defaults.php:436
4449
  msgid "Enabled/Disabled the option Comment author must fill out name and email"
4450
  msgstr ""
4451
 
4452
+ #: defaults.php:436
4453
  msgid "%Status% the option Comment author must fill out name and email."
4454
  msgstr ""
4455
 
4456
+ #: defaults.php:437
4457
  msgid ""
4458
  "Enabled/Disabled the option Users must be logged in and registered to comment"
4459
  msgstr ""
4460
 
4461
+ #: defaults.php:437
4462
  msgid "%Status% the option Users must be logged in and registered to comment."
4463
  msgstr ""
4464
 
4465
+ #: defaults.php:438
4466
  msgid "Enabled/Disabled the option to automatically close comments"
4467
  msgstr ""
4468
 
4469
+ #: defaults.php:438
4470
  msgid "%Status% the option to automatically close comments after %Value% days."
4471
  msgstr ""
4472
 
4473
+ #: defaults.php:439
4474
  msgid "Changed the value of the option Automatically close comments"
4475
  msgstr ""
4476
 
4477
+ #: defaults.php:439
4478
  msgid ""
4479
  "Changed the value of the option Automatically close comments from %OldValue% "
4480
  "to %NewValue% days."
4481
  msgstr ""
4482
 
4483
+ #: defaults.php:440
4484
  msgid "Enabled/Disabled the option for comments to be manually approved"
4485
  msgstr ""
4486
 
4487
+ #: defaults.php:440
4488
  msgid "%Status% the option for comments to be manually approved."
4489
  msgstr ""
4490
 
4491
+ #: defaults.php:441
4492
  msgid ""
4493
  "Enabled/Disabled the option for an author to have previously approved "
4494
  "comments for the comments to appear"
4495
  msgstr ""
4496
 
4497
+ #: defaults.php:441
4498
  msgid ""
4499
  "%Status% the option for an author to have previously approved comments for "
4500
  "the comments to appear."
4501
  msgstr ""
4502
 
4503
+ #: defaults.php:442
4504
  msgid ""
4505
  "Changed the number of links that a comment must have to be held in the queue"
4506
  msgstr ""
4507
 
4508
+ #: defaults.php:442
4509
  msgid ""
4510
  "Changed the number of links from %OldValue% to %NewValue% that a comment "
4511
  "must have to be held in the queue."
4512
  msgstr ""
4513
 
4514
+ #: defaults.php:443
4515
  msgid "Modified the list of keywords for comments moderation"
4516
  msgstr ""
4517
 
4518
+ #: defaults.php:443
4519
  msgid "Modified the list of keywords for comments moderation."
4520
  msgstr ""
4521
 
4522
+ #: defaults.php:444
4523
  msgid "Modified the list of keywords for comments blacklisting"
4524
  msgstr ""
4525
 
4526
+ #: defaults.php:444
4527
  msgid "Modified the list of keywords for comments blacklisting."
4528
  msgstr ""
4529
 
4530
+ #: defaults.php:445
4531
  msgid "Option WordPress Address (URL) in WordPress settings changed"
4532
  msgstr ""
4533
 
4534
+ #: defaults.php:445
4535
  msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
4536
  msgstr ""
4537
 
4538
+ #: defaults.php:446
4539
  msgid "Option Site Address (URL) in WordPress settings changed"
4540
  msgstr ""
4541
 
4542
+ #: defaults.php:446
4543
  msgid "Changed the site address (URL) from %old_url% to %new_url%."
4544
  msgstr ""
4545
 
4546
+ #: defaults.php:447
4547
  msgid "Created a New cron job"
4548
  msgstr ""
4549
 
4550
+ #: defaults.php:447
4551
  msgid ""
4552
  "A new cron job called %name% was created and is scheduled to run %schedule%."
4553
  msgstr ""
4554
 
4555
+ #: defaults.php:448
4556
  msgid "Changed status of the cron job"
4557
  msgstr ""
4558
 
4559
+ #: defaults.php:448
4560
  msgid "The cron job %name% was %status%."
4561
  msgstr ""
4562
 
4563
+ #: defaults.php:449
4564
  msgid "Deleted the cron job"
4565
  msgstr ""
4566
 
4567
+ #: defaults.php:449
4568
  msgid "The cron job %name% was deleted."
4569
  msgstr ""
4570
 
4571
+ #: defaults.php:450
4572
  msgid "Started the cron job"
4573
  msgstr ""
4574
 
4575
+ #: defaults.php:450
4576
  msgid "The cron job %name% has just started."
4577
  msgstr ""
4578
 
4579
+ #: defaults.php:457
4580
  msgid "Multisite Network"
4581
  msgstr ""
4582
 
4583
+ #: defaults.php:462
4584
  msgid "User granted Super Admin privileges"
4585
  msgstr ""
4586
 
4587
+ #: defaults.php:462
4588
  msgid "Granted Super Admin privileges to %TargetUsername%."
4589
  msgstr ""
4590
 
4591
+ #: defaults.php:463
4592
  msgid "User revoked from Super Admin privileges"
4593
  msgstr ""
4594
 
4595
+ #: defaults.php:463
4596
  msgid "Revoked Super Admin privileges from %TargetUsername%."
4597
  msgstr ""
4598
 
4599
+ #: defaults.php:464
4600
  msgid "Existing user added to a site"
4601
  msgstr ""
4602
 
4603
+ #: defaults.php:464
4604
  msgid ""
4605
  "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
4606
  "%SiteName%."
4607
  msgstr ""
4608
 
4609
+ #: defaults.php:465
4610
  msgid "User removed from site"
4611
  msgstr ""
4612
 
4613
+ #: defaults.php:465
4614
  msgid ""
4615
  "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
4616
  "site."
4617
  msgstr ""
4618
 
4619
+ #: defaults.php:466
4620
  msgid "New network user created"
4621
  msgstr ""
4622
 
4623
+ #: defaults.php:466
4624
  msgid "Created a new network user %NewUserData->Username%."
4625
  msgstr ""
4626
 
4627
+ #: defaults.php:467
4628
  msgid "The forum role of a user was changed by another WordPress user"
4629
  msgstr ""
4630
 
4631
+ #: defaults.php:467
4632
  msgid ""
4633
  "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
4634
  "% by %UserChanger%."
4635
  msgstr ""
4636
 
4637
+ #: defaults.php:468
4638
  msgid "New site added on the network"
4639
  msgstr ""
4640
 
4641
+ #: defaults.php:468
4642
  msgid "Added the site %SiteName% to the network."
4643
  msgstr ""
4644
 
4645
+ #: defaults.php:469
4646
  msgid "Existing site archived"
4647
  msgstr ""
4648
 
4649
+ #: defaults.php:469
4650
  msgid "Archived the site %SiteName%."
4651
  msgstr ""
4652
 
4653
+ #: defaults.php:470
4654
  msgid "Archived site has been unarchived"
4655
  msgstr ""
4656
 
4657
+ #: defaults.php:470
4658
  msgid "Unarchived the site %SiteName%."
4659
  msgstr ""
4660
 
4661
+ #: defaults.php:471
4662
  msgid "Deactivated site has been activated"
4663
  msgstr ""
4664
 
4665
+ #: defaults.php:471
4666
  msgid "Activated the site %SiteName%."
4667
  msgstr ""
4668
 
4669
+ #: defaults.php:472
4670
  msgid "Site has been deactivated"
4671
  msgstr ""
4672
 
4673
+ #: defaults.php:472
4674
  msgid "Deactivated the site %SiteName%."
4675
  msgstr ""
4676
 
4677
+ #: defaults.php:473
4678
  msgid "Existing site deleted from network"
4679
  msgstr ""
4680
 
4681
+ #: defaults.php:473
4682
  msgid "Deleted the site %SiteName%."
4683
  msgstr ""
4684
 
4685
+ #: defaults.php:480
4686
  msgid "Third Party Plugins"
4687
  msgstr ""
4688
 
4689
+ #: defaults.php:485
4690
  msgid "User created new forum"
4691
  msgstr ""
4692
 
4693
+ #: defaults.php:485
4694
  msgid ""
4695
  "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
4696
  msgstr ""
4697
 
4698
+ #: defaults.php:486
4699
  msgid "User changed status of a forum"
4700
  msgstr ""
4701
 
4702
+ #: defaults.php:486
4703
  msgid ""
4704
  "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
4705
  "%EditorLinkForum%."
4706
  msgstr ""
4707
 
4708
+ #: defaults.php:487
4709
  msgid "User changed visibility of a forum"
4710
  msgstr ""
4711
 
4712
+ #: defaults.php:487
4713
  msgid ""
4714
  "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
4715
  "%NewVisibility%. %EditorLinkForum%."
4716
  msgstr ""
4717
 
4718
+ #: defaults.php:488
4719
  msgid "User changed the URL of a forum"
4720
  msgstr ""
4721
 
4722
+ #: defaults.php:488
4723
  msgid ""
4724
  "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
4725
  "%EditorLinkForum%."
4726
  msgstr ""
4727
 
4728
+ #: defaults.php:489
4729
  msgid "User changed order of a forum"
4730
  msgstr ""
4731
 
4732
+ #: defaults.php:489
4733
  msgid ""
4734
  "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
4735
  "%EditorLinkForum%."
4736
  msgstr ""
4737
 
4738
+ #: defaults.php:490
4739
  msgid "User moved forum to trash"
4740
  msgstr ""
4741
 
4742
+ #: defaults.php:490
4743
  msgid "Moved the forum %ForumName% to trash."
4744
  msgstr ""
4745
 
4746
+ #: defaults.php:491
4747
  msgid "User permanently deleted forum"
4748
  msgstr ""
4749
 
4750
+ #: defaults.php:491
4751
  msgid "Permanently deleted the forum %ForumName%."
4752
  msgstr ""
4753
 
4754
+ #: defaults.php:492
4755
  msgid "User restored forum from trash"
4756
  msgstr ""
4757
 
4758
+ #: defaults.php:492
4759
  msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
4760
  msgstr ""
4761
 
4762
+ #: defaults.php:493
4763
  msgid "User changed the parent of a forum"
4764
  msgstr ""
4765
 
4766
+ #: defaults.php:493
4767
  msgid ""
4768
  "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
4769
  "%EditorLinkForum%."
4770
  msgstr ""
4771
 
4772
+ #: defaults.php:494
4773
  msgid "User changed type of a forum"
4774
  msgstr ""
4775
 
4776
+ #: defaults.php:494
4777
  msgid ""
4778
  "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
4779
  "%EditorLinkForum%."
4780
  msgstr ""
4781
 
4782
+ #: defaults.php:495
4783
  msgid "User changed forum's role"
4784
  msgstr ""
4785
 
4786
+ #: defaults.php:495
4787
  msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
4788
  msgstr ""
4789
 
4790
+ #: defaults.php:496
4791
  msgid "User changed option of a forum"
4792
  msgstr ""
4793
 
4794
+ #: defaults.php:496
4795
  msgid "%Status% the option for anonymous posting on forum."
4796
  msgstr ""
4797
 
4798
+ #: defaults.php:497
4799
  msgid "User changed time to disallow post editing"
4800
  msgstr ""
4801
 
4802
+ #: defaults.php:497
4803
  msgid ""
4804
  "Changed the time to disallow post editing from %OldTime% to %NewTime% "
4805
  "minutes in the forums."
4806
  msgstr ""
4807
 
4808
+ #: defaults.php:498
4809
  msgid "User changed the forum setting posting throttle time"
4810
  msgstr ""
4811
 
4812
+ #: defaults.php:498
4813
  msgid ""
4814
  "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
4815
  "forums."
4816
  msgstr ""
4817
 
4818
+ #: defaults.php:499
4819
  msgid "User created new topic"
4820
  msgstr ""
4821
 
4822
+ #: defaults.php:499
4823
  msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
4824
  msgstr ""
4825
 
4826
+ #: defaults.php:500
4827
  msgid "User changed status of a topic"
4828
  msgstr ""
4829
 
4830
+ #: defaults.php:500
4831
  msgid ""
4832
  "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
4833
  "%EditorLinkTopic%."
4834
  msgstr ""
4835
 
4836
+ #: defaults.php:501
4837
  msgid "User changed type of a topic"
4838
  msgstr ""
4839
 
4840
+ #: defaults.php:501
4841
  msgid ""
4842
  "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
4843
  "%EditorLinkTopic%."
4844
  msgstr ""
4845
 
4846
+ #: defaults.php:502
4847
  msgid "User changed URL of a topic"
4848
  msgstr ""
4849
 
4850
+ #: defaults.php:502
4851
  msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
4852
  msgstr ""
4853
 
4854
+ #: defaults.php:503
4855
  msgid "User changed the forum of a topic"
4856
  msgstr ""
4857
 
4858
+ #: defaults.php:503
4859
  msgid ""
4860
  "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
4861
  "%EditorLinkTopic%."
4862
  msgstr ""
4863
 
4864
+ #: defaults.php:504
4865
  msgid "User moved topic to trash"
4866
  msgstr ""
4867
 
4868
+ #: defaults.php:504
4869
  msgid "Moved the topic %TopicName% to trash."
4870
  msgstr ""
4871
 
4872
+ #: defaults.php:505
4873
  msgid "User permanently deleted topic"
4874
  msgstr ""
4875
 
4876
+ #: defaults.php:505
4877
  msgid "Permanently deleted the topic %TopicName%."
4878
  msgstr ""
4879
 
4880
+ #: defaults.php:506
4881
  msgid "User restored topic from trash"
4882
  msgstr ""
4883
 
4884
+ #: defaults.php:506
4885
  msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
4886
  msgstr ""
4887
 
4888
+ #: defaults.php:507
4889
  msgid "User changed visibility of a topic"
4890
  msgstr ""
4891
 
4892
+ #: defaults.php:507
4893
  msgid ""
4894
  "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
4895
  "%NewVisibility%. %EditorLinkTopic%."
4896
  msgstr ""
4897
 
4898
+ #: defaults.php:514
4899
  msgid "User created a new product"
4900
  msgstr ""
4901
 
4902
+ #: defaults.php:514
4903
  msgid ""
4904
  "Created a new product called %ProductTitle% and saved it as draft. View the "
4905
  "product: %EditorLinkProduct%."
4906
  msgstr ""
4907
 
4908
+ #: defaults.php:515
4909
  msgid "User published a product"
4910
  msgstr ""
4911
 
4912
+ #: defaults.php:515
4913
  msgid ""
4914
  "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
4915
  "the product: %EditorLinkProduct%."
4916
  msgstr ""
4917
 
4918
+ #: defaults.php:516
4919
  msgid "User changed the category of a product"
4920
  msgstr ""
4921
 
4922
+ #: defaults.php:516
4923
  msgid ""
4924
  "Changed the category of the product %ProductTitle% from %OldCategories% to "
4925
  "%NewCategories%. View the product: %EditorLinkProduct%."
4926
  msgstr ""
4927
 
4928
+ #: defaults.php:517
4929
  msgid "User modified the short description of a product"
4930
  msgstr ""
4931
 
4932
+ #: defaults.php:517
4933
  msgid ""
4934
  "Modified the short description of the product %ProductTitle%.%ChangeText% "
4935
  "View the product: %EditorLinkProduct%."
4936
  msgstr ""
4937
 
4938
+ #: defaults.php:518
4939
  msgid "User modified the text of a product"
4940
  msgstr ""
4941
 
4942
+ #: defaults.php:518
4943
  msgid ""
4944
  "Modified the text of the product %ProductTitle%. View the product: "
4945
  "%EditorLinkProduct%."
4946
  msgstr ""
4947
 
4948
+ #: defaults.php:519
4949
  msgid "User changed the URL of a product"
4950
  msgstr ""
4951
 
4952
+ #: defaults.php:519
4953
  msgid ""
4954
  "Changed the URL of the product %ProductTitle%%ReportText%.%ChangeText% View "
4955
  "the product: %EditorLinkProduct%."
4956
  msgstr ""
4957
 
4958
+ #: defaults.php:520
4959
  msgid "User changed the date of a product"
4960
  msgstr ""
4961
 
4962
+ #: defaults.php:520
4963
  msgid ""
4964
  "Changed the date of the product %ProductTitle% from %OldDate% to %NewDate%. "
4965
  "View the product: %EditorLinkProduct%."
4966
  msgstr ""
4967
 
4968
+ #: defaults.php:521
4969
  msgid "User changed the visibility of a product"
4970
  msgstr ""
4971
 
4972
+ #: defaults.php:521
4973
  msgid ""
4974
  "Changed the visibility of the product %ProductTitle% from %OldVisibility% to "
4975
  "%NewVisibility%. View the product: %EditorLinkProduct%."
4976
  msgstr ""
4977
 
4978
+ #: defaults.php:522
4979
  msgid "User modified the published product"
4980
  msgstr ""
4981
 
4982
+ #: defaults.php:522
4983
  msgid ""
4984
  "Modified the published product %ProductTitle%. Product URL is %ProductUrl%. "
4985
  "View the product: %EditorLinkProduct%."
4986
  msgstr ""
4987
 
4988
+ #: defaults.php:523
4989
  msgid "User modified the draft product"
4990
  msgstr ""
4991
 
4992
+ #: defaults.php:523
4993
  msgid ""
4994
  "Modified the draft product %ProductTitle%. View the product: "
4995
  "%EditorLinkProduct%."
4996
  msgstr ""
4997
 
4998
+ #: defaults.php:524
4999
  msgid "User moved a product to trash"
5000
  msgstr ""
5001
 
5002
+ #: defaults.php:524
5003
  msgid ""
5004
  "Moved the product %ProductTitle% to trash. Product URL was %ProductUrl%."
5005
  msgstr ""
5006
 
5007
+ #: defaults.php:525
5008
  msgid "User permanently deleted a product"
5009
  msgstr ""
5010
 
5011
+ #: defaults.php:525
5012
  msgid "Permanently deleted the product %ProductTitle%."
5013
  msgstr ""
5014
 
5015
+ #: defaults.php:526
5016
  msgid "User restored a product from the trash"
5017
  msgstr ""
5018
 
5019
+ #: defaults.php:526
5020
  msgid ""
5021
  "Product %ProductTitle% has been restored from trash. View product: "
5022
  "%EditorLinkProduct%."
5023
  msgstr ""
5024
 
5025
+ #: defaults.php:527
5026
  msgid "User changed status of a product"
5027
  msgstr ""
5028
 
5029
+ #: defaults.php:527
5030
  msgid ""
5031
  "Changed the status of the product %ProductTitle% from %OldStatus% to "
5032
  "%NewStatus%. View the product: %EditorLinkProduct%."
5033
  msgstr ""
5034
 
5035
+ #: defaults.php:528
5036
  msgid "User opened a product in the editor"
5037
  msgstr ""
5038
 
5039
+ #: defaults.php:528
5040
  msgid ""
5041
  "Opened the %ProductStatus% product page %ProductTitle% in editor. View the "
5042
  "product: %EditorLinkProduct%."
5043
  msgstr ""
5044
 
5045
+ #: defaults.php:529
5046
  msgid "User viewed a product"
5047
  msgstr ""
5048
 
5049
+ #: defaults.php:529
5050
  msgid ""
5051
  "Viewed the %ProductStatus% product page %ProductTitle%. View the product: "
5052
  "%EditorLinkProduct%."
5053
  msgstr ""
5054
 
5055
+ #: defaults.php:530
5056
  msgid "User changed the Product Data of a product"
5057
  msgstr ""
5058
 
5059
+ #: defaults.php:530
5060
  msgid ""
5061
  "Changed the Product Data of the product %ProductTitle%. View the product: "
5062
  "%EditorLinkProduct%."
5063
  msgstr ""
5064
 
5065
+ #: defaults.php:531
5066
  msgid "User changed type of a price"
5067
  msgstr ""
5068
 
5069
+ #: defaults.php:531
5070
  msgid ""
5071
  "Changed the %PriceType% of the product %ProductTitle% from %OldPrice% to "
5072
  "%NewPrice%. View the product: %EditorLinkProduct%."
5073
  msgstr ""
5074
 
5075
+ #: defaults.php:532
5076
  msgid "User changed the SKU of a product"
5077
  msgstr ""
5078
 
5079
+ #: defaults.php:532
5080
  msgid ""
5081
  "Changed the SKU of the product %ProductTitle% from %OldSku% to %NewSku%. "
5082
  "View the product: %EditorLinkProduct%."
5083
  msgstr ""
5084
 
5085
+ #: defaults.php:533
5086
  msgid "User changed the stock status of a product"
5087
  msgstr ""
5088
 
5089
+ #: defaults.php:533
5090
  msgid ""
5091
  "Changed the stock status of the product %ProductTitle% from %OldStatus% to "
5092
  "%NewStatus%. View the product: %EditorLinkProduct%."
5093
  msgstr ""
5094
 
5095
+ #: defaults.php:534
5096
  msgid "User changed the stock quantity"
5097
  msgstr ""
5098
 
5099
+ #: defaults.php:534
5100
  msgid ""
5101
  "Changed the stock quantity of the product %ProductTitle% from %OldValue% to "
5102
  "%NewValue%. View the product: %EditorLinkProduct%"
5103
  msgstr ""
5104
 
5105
+ #: defaults.php:535
5106
  msgid "User set a product type"
5107
  msgstr ""
5108
 
5109
+ #: defaults.php:535
5110
  msgid ""
5111
  "Set the product %ProductTitle% as %Type%. View the product: "
5112
  "%EditorLinkProduct%."
5113
  msgstr ""
5114
 
5115
+ #: defaults.php:536
5116
  msgid "User changed the weight of a product"
5117
  msgstr ""
5118
 
5119
+ #: defaults.php:536
5120
  msgid ""
5121
  "Changed the weight of the product %ProductTitle% from %OldWeight% to "
5122
  "%NewWeight%. View the product: %EditorLinkProduct%."
5123
  msgstr ""
5124
 
5125
+ #: defaults.php:537
5126
  msgid "User changed the dimensions of a product"
5127
  msgstr ""
5128
 
5129
+ #: defaults.php:537
5130
  msgid ""
5131
  "Changed the %DimensionType% dimensions of the product %ProductTitle% from "
5132
  "%OldDimension% to %NewDimension%. View the product: %EditorLinkProduct%."
5133
  msgstr ""
5134
 
5135
+ #: defaults.php:538
5136
  msgid "User added the Downloadable File to a product"
5137
  msgstr ""
5138
 
5139
+ #: defaults.php:538
5140
  msgid ""
5141
  "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
5142
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5143
  msgstr ""
5144
 
5145
+ #: defaults.php:539
5146
  msgid "User Removed the Downloadable File from a product"
5147
  msgstr ""
5148
 
5149
+ #: defaults.php:539
5150
  msgid ""
5151
  "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
5152
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5153
  msgstr ""
5154
 
5155
+ #: defaults.php:540
5156
  msgid "User changed the name of a Downloadable File in a product"
5157
  msgstr ""
5158
 
5159
+ #: defaults.php:540
5160
  msgid ""
5161
  "Changed the name of a Downloadable File from %OldName% to %NewName% in "
5162
  "product %ProductTitle%. View the product: %EditorLinkProduct%."
5163
  msgstr ""
5164
 
5165
+ #: defaults.php:541
5166
  msgid "User changed the URL of the Downloadable File in a product"
5167
  msgstr ""
5168
 
5169
+ #: defaults.php:541
5170
  msgid ""
5171
  "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
5172
  "% in product %ProductTitle%. View the product: %EditorLinkProduct%."
5173
  msgstr ""
5174
 
5175
+ #: defaults.php:548
5176
  msgid "User changed the Weight Unit"
5177
  msgstr ""
5178
 
5179
+ #: defaults.php:548
5180
  msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
5181
  msgstr ""
5182
 
5183
+ #: defaults.php:549
5184
  msgid "User changed the Dimensions Unit"
5185
  msgstr ""
5186
 
5187
+ #: defaults.php:549
5188
  msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
5189
  msgstr ""
5190
 
5191
+ #: defaults.php:550
5192
  msgid "User changed the Base Location"
5193
  msgstr ""
5194
 
5195
+ #: defaults.php:550
5196
  msgid ""
5197
  "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
5198
  msgstr ""
5199
 
5200
+ #: defaults.php:551
5201
  msgid "User Enabled/Disabled taxes"
5202
  msgstr ""
5203
 
5204
+ #: defaults.php:551
5205
  msgid "%Status% taxes in the WooCommerce store."
5206
  msgstr ""
5207
 
5208
+ #: defaults.php:552
5209
  msgid "User changed the currency"
5210
  msgstr ""
5211
 
5212
+ #: defaults.php:552
5213
  msgid ""
5214
  "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
5215
  msgstr ""
5216
 
5217
+ #: defaults.php:553
5218
  msgid "User Enabled/Disabled the use of coupons during checkout"
5219
  msgstr ""
5220
 
5221
+ #: defaults.php:553
5222
  msgid "%Status% the use of coupons during checkout in WooCommerce."
5223
  msgstr ""
5224
 
5225
+ #: defaults.php:554
5226
  msgid "User Enabled/Disabled guest checkout"
5227
  msgstr ""
5228
 
5229
+ #: defaults.php:554
5230
  msgid "%Status% guest checkout in WooCommerce."
5231
  msgstr ""
5232
 
5233
+ #: defaults.php:555
5234
  msgid "User Enabled/Disabled cash on delivery"
5235
  msgstr ""
5236
 
5237
+ #: defaults.php:555
5238
  msgid "%Status% the option Enable cash on delivery in WooCommerce."
5239
  msgstr ""
5240
 
5241
+ #: defaults.php:556
5242
  msgid "User created a new product category"
5243
  msgstr ""
5244
 
5245
+ #: defaults.php:556
5246
  msgid ""
5247
  "Created a new product category called %CategoryName% in WooCommerce. Product "
5248
  "category slug is %Slug%."
5249
  msgstr ""
5250
 
5251
+ #: defaults.php:563
5252
  msgid "User changed title of a SEO post"
5253
  msgstr ""
5254
 
5255
+ #: defaults.php:563
5256
  msgid ""
5257
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
5258
  "% %EditorLinkPost%."
5259
  msgstr ""
5260
 
5261
+ #: defaults.php:564
5262
  msgid "User changed the meta description of a SEO post"
5263
  msgstr ""
5264
 
5265
+ #: defaults.php:564
5266
  msgid ""
5267
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
5268
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
5269
  msgstr ""
5270
 
5271
+ #: defaults.php:565
5272
  msgid ""
5273
  "User changed setting to allow search engines to show post in search results "
5274
  "of a SEO post"
5275
  msgstr ""
5276
 
5277
+ #: defaults.php:565
5278
  msgid ""
5279
  "Changed the setting to allow search engines to show post in search results "
5280
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
5281
  "%PostTitle%. %EditorLinkPost%."
5282
  msgstr ""
5283
 
5284
+ #: defaults.php:566
5285
  msgid ""
5286
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
5287
  "post"
5288
  msgstr ""
5289
 
5290
+ #: defaults.php:566
5291
  msgid ""
5292
  "%NewStatus% the option for search engine to follow links in the %PostType% "
5293
  "titled %PostTitle%. %EditorLinkPost%."
5294
  msgstr ""
5295
 
5296
+ #: defaults.php:567
5297
  msgid "User set the meta robots advanced setting of a SEO post"
5298
  msgstr ""
5299
 
5300
+ #: defaults.php:567
5301
  msgid ""
5302
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
5303
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
5304
  msgstr ""
5305
 
5306
+ #: defaults.php:568
5307
  msgid "User changed the canonical URL of a SEO post"
5308
  msgstr ""
5309
 
5310
+ #: defaults.php:568
5311
  msgid ""
5312
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
5313
  "%ReportText%.%ChangeText% %EditorLinkPost%."
5314
  msgstr ""
5315
 
5316
+ #: defaults.php:569
5317
  msgid "User changed the focus keyword of a SEO post"
5318
  msgstr ""
5319
 
5320
+ #: defaults.php:569
5321
  msgid ""
5322
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
5323
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
5324
  msgstr ""
5325
 
5326
+ #: defaults.php:570
5327
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
5328
  msgstr ""
5329
 
5330
+ #: defaults.php:570
5331
  msgid ""
5332
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
5333
  "%PostTitle%. %EditorLinkPost%."
5334
  msgstr ""
5335
 
5336
+ #: defaults.php:571
5337
  msgid "User changed the Title Separator setting"
5338
  msgstr ""
5339
 
5340
+ #: defaults.php:571
5341
  msgid ""
5342
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
5343
  "settings."
5344
  msgstr ""
5345
 
5346
+ #: defaults.php:572
5347
  msgid "User changed the Homepage Title setting"
5348
  msgstr ""
5349
 
5350
+ #: defaults.php:572
5351
  msgid ""
5352
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
5353
  "%ChangeText%"
5354
  msgstr ""
5355
 
5356
+ #: defaults.php:573
5357
  msgid "User changed the Homepage Meta description setting"
5358
  msgstr ""
5359
 
5360
+ #: defaults.php:573
5361
  msgid ""
5362
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
5363
  "settings.%ChangeText%"
5364
  msgstr ""
5365
 
5366
+ #: defaults.php:574
5367
  msgid "User changed the Company or Person setting"
5368
  msgstr ""
5369
 
5370
+ #: defaults.php:574
5371
  msgid ""
5372
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
5373
  "plugin settings."
5374
  msgstr ""
5375
 
5376
+ #: defaults.php:575
5377
  msgid ""
5378
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
5379
  "Yoast SEO plugin settings"
5380
  msgstr ""
5381
 
5382
+ #: defaults.php:575
5383
  msgid ""
5384
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
5385
  "plugin settings."
5386
  msgstr ""
5387
 
5388
+ #: defaults.php:576
5389
  msgid ""
5390
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
5391
  msgstr ""
5392
 
5393
+ #: defaults.php:576
5394
  msgid ""
5395
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
5396
  "SEO plugin settings."
5397
  msgstr ""
5398
 
5399
+ #: defaults.php:577
5400
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
5401
  msgstr ""
5402
 
5403
+ #: defaults.php:577
5404
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
5405
  msgstr ""
5406
 
5407
+ #: defaults.php:578
5408
  msgid ""
5409
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
5410
  msgstr ""
5411
 
5412
+ #: defaults.php:578
5413
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
5414
  msgstr ""
5415
 
5416
+ #: defaults.php:579
5417
  msgid ""
5418
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
5419
  msgstr ""
5420
 
5421
+ #: defaults.php:579
5422
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
5423
  msgstr ""
5424
 
5425
+ #: defaults.php:580
5426
  msgid ""
5427
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
5428
  msgstr ""
5429
 
5430
+ #: defaults.php:580
5431
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
5432
  msgstr ""
5433
 
5434
+ #: defaults.php:581
5435
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
5436
  msgstr ""
5437
 
5438
+ #: defaults.php:581
5439
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
5440
  msgstr ""
5441
 
5442
+ #: defaults.php:582
5443
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
5444
  msgstr ""
5445
 
5446
+ #: defaults.php:582
5447
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
5448
  msgstr ""
5449
 
5450
+ #: defaults.php:583
5451
  msgid ""
5452
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
5453
  msgstr ""
5454
 
5455
+ #: defaults.php:583
5456
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
5457
  msgstr ""
5458
 
5459
+ #: defaults.php:584
5460
  msgid ""
5461
  "User changed the Posts/Pages meta description template in the Yoast SEO "
5462
  "plugin settings"
5463
  msgstr ""
5464
 
5465
+ #: defaults.php:584
5466
  msgid ""
5467
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
5468
  "the Yoast SEO plugin settings."
5469
  msgstr ""
5470
 
5471
+ #: defaults.php:585
5472
  msgid ""
5473
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
5474
  "plugin settings"
5475
  msgstr ""
5476
 
5477
+ #: defaults.php:585
5478
  msgid ""
5479
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
5480
  "SEO plugin settings."
5481
  msgstr ""
5482
 
5483
+ #: defaults.php:586
5484
  msgid ""
5485
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
5486
  "plugin settings"
5487
  msgstr ""
5488
 
5489
+ #: defaults.php:586
5490
  msgid ""
5491
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
5492
  "plugin settings."
5493
  msgstr ""
5494
 
5495
+ #: defaults.php:587
5496
  msgid ""
5497
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
5498
  "plugin settings"
5499
  msgstr ""
5500
 
5501
+ #: defaults.php:587
5502
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
5503
  msgstr ""
5504
 
5505
  #. translators: Username
5506
+ #: wp-security-audit-log.php:392 wp-security-audit-log.php:419
5507
  #, php-format
5508
  msgid "Hey %1$s"
5509
  msgstr ""
5510
 
5511
+ #: wp-security-audit-log.php:393
5512
  msgid ""
5513
  "Never miss an important update! Opt-in to our security and feature updates "
5514
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
5515
  msgstr ""
5516
 
5517
+ #: wp-security-audit-log.php:394 wp-security-audit-log.php:422
5518
  msgid "Note: "
5519
  msgstr ""
5520
 
5521
+ #: wp-security-audit-log.php:395 wp-security-audit-log.php:423
5522
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
5523
  msgstr ""
5524
 
5525
  #. translators: 1: Plugin name. 2: Freemius link.
5526
+ #: wp-security-audit-log.php:421
5527
  #, php-format
5528
  msgid ""
5529
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
5532
  msgstr ""
5533
 
5534
  #. translators: Plugin name
5535
+ #: wp-security-audit-log.php:443
5536
  #, php-format
5537
  msgid ""
5538
  "Get a free 7-day trial of the premium edition of %s. No credit card "
5540
  msgstr ""
5541
 
5542
  #. Plugin Name of the plugin/theme
5543
+ #: wp-security-audit-log.php:444
5544
  msgid "WP Security Audit Log"
5545
  msgstr ""
5546
 
5547
+ #: wp-security-audit-log.php:448
5548
  msgid "Start free trial"
5549
  msgstr ""
5550
 
5551
+ #: wp-security-audit-log.php:518
5552
  msgid ""
5553
  "Error: You do not have sufficient permissions to disable this custom field."
5554
  msgstr ""
5555
 
5556
+ #: wp-security-audit-log.php:554
5557
  msgid "Error: You do not have sufficient permissions to disable this alert."
5558
  msgstr ""
5559
 
5560
+ #: wp-security-audit-log.php:679
5561
  #, php-format
5562
  msgid ""
5563
  "You are using a version of PHP that is older than %s, which is no longer "
5564
  "supported."
5565
  msgstr ""
5566
 
5567
+ #: wp-security-audit-log.php:680
5568
  msgid ""
5569
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
5570
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
5571
  "are using."
5572
  msgstr ""
5573
 
5574
+ #: wp-security-audit-log.php:1367
5575
  msgid "Every 45 minutes"
5576
  msgstr ""
5577
 
5578
+ #: wp-security-audit-log.php:1371
5579
  msgid "Every 30 minutes"
5580
  msgstr ""
5581
 
5582
+ #: wp-security-audit-log.php:1375
5583
  msgid "Every 10 minutes"
5584
  msgstr ""
5585
 
5586
+ #: wp-security-audit-log.php:1379
5587
  msgid "Every 1 minute"
5588
  msgstr ""
5589
 
5590
  #. translators: 1. Deprecated method name 2. Version since deprecated
5591
+ #: wp-security-audit-log.php:1393
5592
  #, php-format
5593
  msgid "Method %1$s is deprecated since version %2$s!"
5594
  msgstr ""
readme.txt CHANGED
@@ -5,8 +5,8 @@ License: GPLv3
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
- Tested up to: 4.9.7
9
- Stable tag: 3.2.4
10
  Requires PHP: 5.4.43
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
@@ -19,24 +19,23 @@ Keep an activity log of everything that happens on your WordPress and [WordPress
19
 
20
  * Ensure user productivity
21
  * Ease troubleshooting
22
- * Better manage and organize your WordPress site
23
- * Easily spot suspicious behavior before it becomes a security problem.
 
24
 
25
- [WP Security Audit Log](http://www.wpsecurityauditlog.com) is WordPress' most comprehensive real time user activity and monitoring log plugin. It helps thousands of WordPress administrators and security professionals keep an eye on what is happening on their websites. It is also the most highly rated WordPress activity log plugin and have been featured on popular WordPress blogs such as GoDaddy, ManageWP, Pagely, Shout Me Loud and WPKube.
26
 
27
- Refer to the [WordPress activity log plugin datasheet](https://www.wpsecurityauditlog.com/plugin-datasheet/) for a detailed list of all the features and settings.
28
 
29
- > <strong>Note</strong>: All logging functionality is and will always remain FREE. Additional features such as reports, instant email alerts and search are available in the <Strong>[Premium Edition](https://www.wpsecurityauditlog.com/premium-features/)</strong>.
30
  >
31
 
32
- [youtube https://www.youtube.com/watch?v=1nopATCS-CQ]
33
-
34
  #### WordPress Changes & Details the Plugin Keeps a Log Of
35
- If you are looking for a comprehensive & complete WordPress activity log solution you are in the right place. The WP Security Audit Log plugin does not just tell you that a post, a user profile or an object was updated. It reports what was changed within the post, profile or object in real time.
36
 
37
  Below is a summary of the changes that the plugin can keep a record of:
38
 
39
- * **Post, Page and Custom Post Type changes** such as status, content, title, URL, date and custom field changes
40
 
41
  * **Tags and Categories changes** such as creating, modifying or deleting them, and adding or removing them from posts
42
 
@@ -50,17 +49,17 @@ Below is a summary of the changes that the plugin can keep a record of:
50
 
51
  * **WordPress core and settings changes** such as installed updates, permalinks, default role, URL and other site-wide changes
52
 
53
- * **WordPress multisite network changes** such as adding, deleting or archiving sites, adding or removing users from sites etc
54
 
55
  * **Plugins and Themes changes** such as installing, activating, deactivating, uninstalling and updating them
56
 
57
  * **WordPress database changes** such as when a plugin adds or removes a table
58
 
59
- * Changes on **WooCommerce Stores and Products**, **Yoast SEO**, **Advanced Custom Fields (ACF)**, **MainWP** and other popular WordPress plugins.
60
 
61
  * **[WordPress site file changes](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/)** such as new files are added, or existing ones are modified or deleted.
62
 
63
- For every change the plugin keeps record of it also reports the:
64
 
65
  * Date & time (and milliseconds) of when it happened,
66
  * User & role of the user who did the change,
@@ -110,15 +109,17 @@ WP Security Audit Log plugin also has a number of features that make WordPress a
110
  * Enable or disable any security alerts
111
  * and much more...
112
 
 
 
113
  ### As Featured On:
114
 
115
  * [GoDaddy](https://www.godaddy.com/garage/decode-security-logs-wordpress/)
 
116
  * [Pagely](https://pagely.com/blog/2015/01/log-wordpress-dashboard-activity-improved-security-auditing/)
117
  * [Shout Me Loud](https://www.shoutmeloud.com/wordpress-security-audit-log.html)
118
- * [WP Couple](https://wpcouple.com/wp-security-audit-log-review/)
119
  * [WPKube](http://www.wpkube.com/improve-wordpress-security-wp-security-audit-log/)
120
- * [WPLift](http://wplift.com/audit-wordpress-security-logs) - Review by Ahmad Awais
121
- * [WP Mayor](http://www.wpmayor.com/wp-security-audit-log-plugin-review-user-activity-logging-wordpress/)
122
  * [WP SmackDown](https://wpsmackdown.com/wp-plugins/wp-security-audit-log/)
123
  * [SourceWP](https://www.sourcewp.com/wp-security-audit-log-plugin-review/)
124
  * [Techwibe](https://www.techwibe.com/wp-security-audit-log-wordpress-plugin/)
@@ -130,11 +131,11 @@ WP Security Audit Log plugin also has a number of features that make WordPress a
130
  * [Firewall.cx](http://www.firewall.cx/general-topics-reviews/security-articles/1146-wordpress-audit-monitor-log-site-security-alerts.html)
131
  * [Design Wall](http://www.designwall.com/blog/10-wordpress-multisite-plugins-you-shouldnt-live-without/)
132
  * [Tidy Repo](https://tidyrepo.com/wp-security-audit-log-wordpress-activity-log/)
133
- * [Shout Me Loud](http://www.shoutmeloud.com/how-to-monitor-user-activities-wordpress-dashboard.html)
134
  * [Monster Post](http://blog.templatemonster.com/2015/12/15/wp-security-audit-log-plugin-review/)
135
  * [The Darknet](http://www.darknet.org.uk/2015/10/wp-security-audit-log-a-complete-audit-log-plugin-for-wordpress/)
136
  * [WebEmpresa](https://www.webempresa.com/blog/auditando-cambios-en-wordpress.html)
137
  * [KitPloit](http://www.kitploit.com/2016/10/wp-security-audit-log-ultimate.html)
 
138
 
139
  #### WordPress Security Audit Log in your Language!
140
  We need help translating the plugin and the WordPress Security Alerts. Please visit the [WordPress Translate Project](https://translate.wordpress.org/projects/wp-plugins/wp-security-audit-log) to translate the plugin and drop us an email on support@wpwhitesecurity.com to get mentioned in the list of translators below.
@@ -144,6 +145,10 @@ We need help translating the plugin and the WordPress Security Alerts. Please vi
144
  * Spanish translation by the [WP Body team](https://wpbody.com/)
145
  * French translations by Denis Moscato
146
 
 
 
 
 
147
  #### Related Links and Documentation
148
 
149
  * [What is a WordPress Activity Log?](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-documentation/what-is-a-wordpress-audit-trail/)
@@ -152,6 +157,7 @@ We need help translating the plugin and the WordPress Security Alerts. Please vi
152
  * [WP Security Audit Log and Reverse Proxy and WAFs Support](http://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/)
153
  * [WP Security Audit Log Database Documentation](http://www.wpsecurityauditlog.com/documentation/plugin-wordpress-database-documentation/)
154
  * [Official WP Security Audit Log Plugin Website](http://www.wpsecurityauditlog.com/)
 
155
 
156
  == Installation ==
157
 
@@ -162,7 +168,7 @@ We need help translating the plugin and the WordPress Security Alerts. Please vi
162
  1. Install and activate the WP Security Audit Log plugin
163
  1. Allow or skip diagnostic tracking
164
 
165
- === Install WP Security Audig Log manually ===
166
 
167
  1. Upload the `wp-security-audit-log` directory to the `/wp-content/plugins/` directory
168
  1. Activate the WP Security Audit Log plugin from the 'Plugins' menu in WordPress
@@ -189,30 +195,16 @@ Please refer to our [Support & Documentation pages](https://www.wpsecurityauditl
189
 
190
  == Changelog ==
191
 
192
- = 3.2.4 (2018-10-04) =
193
 
194
- Release Notes: [click here](https://www.wpsecurityauditlog.com/releases/3-2-4-gutenberg-support/)
195
 
196
- * **New Activity Log Features**
197
- * Support for Gutenberg
198
- * [Daily activity log overview email](https://www.wpsecurityauditlog.com/support-documentation/daily-activity-logs-overview-email/).
199
- * Live notification of latest event in the WordPress admin bar.
200
 
201
- * **Plugin Improvements**
202
- * Revamped the [Users management module and settings](https://www.wpsecurityauditlog.com/premium-features/wordpress-users-sessions-management-tools/) - part of the easy to use updates.
203
- * Error message for blocked simultaneous users sessions can now be configured.
204
- * Updated the order of the plugin menu entries to a more convenient one.
205
- * Invalid usernames used in failed logins are now kept for 30 days in the database.
206
- * Improved WordPress menu sensor - added coverage and improved accuracy.
207
- * Changed Event Code to Event ID in [email notifications trigger builder](https://www.wpsecurityauditlog.com/support-documentation/getting-started-email-notifications-add/).
208
- * Improved MainWP Child Site Stealth Mode for premium edition.
209
- * Sidebar admin notification on first install now only shown to the first user accessing the activity log.
210
- * Removed in activity log adverts.
211
- * Updated top banner adverts in activity log - now users can hide them.
212
- * Updated WordPress icon used to report system events in activity log.
213
 
214
  * **Bug Fixes**
215
- * Added support for arrays in ACF [Support Ticket](https://wordpress.org/support/topic/array-to-string-warning/)
216
- * Handled an exception error in which user has same event ID. Now instead plugin shows an show error and disable custom sensor.
217
- * Fixed an issue in which the startup wizard was shown twice on the free edition of the plugin.
218
- * Fixed an issue in which reports were not generated because of non-standard paths.
5
  License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 3.6
8
+ Tested up to: 5.0
9
+ Stable tag: 3.2.5
10
  Requires PHP: 5.4.43
11
 
12
  An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
19
 
20
  * Ensure user productivity
21
  * Ease troubleshooting
22
+ * Know exactly what all your users are doing
23
+ * Better manage & organize your WordPress site
24
+ * Easily spot suspicious behavior before there are security problems.
25
 
26
+ [WP Security Audit Log](http://www.wpsecurityauditlog.com) is the most comprehensive real time user activity and monitoring log plugin. It helps thousands of WordPress administrators and security professionals keep an eye on what is happening on their websites. It is also the most highly rated WordPress activity log plugin and have been featured on popular sites such as GoDaddy, ManageWP, Pagely, Shout Me Loud and WPKube.
27
 
28
+ [youtube https://www.youtube.com/watch?v=1nopATCS-CQ]
29
 
30
+ > <strong>Note</strong>: All WrodPress logging functionality is FREE. Features such as reports, email notifications & search are available in the <Strong>[Premium Edition](https://www.wpsecurityauditlog.com/premium-features/)</strong>.
31
  >
32
 
 
 
33
  #### WordPress Changes & Details the Plugin Keeps a Log Of
34
+ As a comprehensive & complete WordPress activity log solution WP Security Audit Log does not just tell you that a post, a user profile, or an object was updated. It keeps a log of what was changed within the post, profile or object.
35
 
36
  Below is a summary of the changes that the plugin can keep a record of:
37
 
38
+ * **Post, Page and Custom Post Type changes** such as status, [content changes](https://www.wpsecurityauditlog.com/support-documentation/how-keep-record-of-content-changes/), title, URL, date and custom field changes
39
 
40
  * **Tags and Categories changes** such as creating, modifying or deleting them, and adding or removing them from posts
41
 
49
 
50
  * **WordPress core and settings changes** such as installed updates, permalinks, default role, URL and other site-wide changes
51
 
52
+ * **WordPress multisite network changes** such as adding, deleting or archiving sites, adding or removing users from sites etc ([activity logs for multisite networks](https://www.wpsecurityauditlog.com/support-documentation/audit-trail-features-wordpress-multisite/)).
53
 
54
  * **Plugins and Themes changes** such as installing, activating, deactivating, uninstalling and updating them
55
 
56
  * **WordPress database changes** such as when a plugin adds or removes a table
57
 
58
+ * Changes on **WooCommerce Stores & Products**, **Yoast SEO**, **Advanced Custom Fields (ACF)**, **MainWP** and other popular WordPress plugins.
59
 
60
  * **[WordPress site file changes](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/)** such as new files are added, or existing ones are modified or deleted.
61
 
62
+ For every event that the plugin keeps a log of it also reports the:
63
 
64
  * Date & time (and milliseconds) of when it happened,
65
  * User & role of the user who did the change,
109
  * Enable or disable any security alerts
110
  * and much more...
111
 
112
+ Refer to the <strong>[WordPress activity log plugin datasheet](https://www.wpsecurityauditlog.com/plugin-datasheet/)</strong> for a complete list of features.
113
+
114
  ### As Featured On:
115
 
116
  * [GoDaddy](https://www.godaddy.com/garage/decode-security-logs-wordpress/)
117
+ * [Kinsta](https://kinsta.com/blog/wordpress-activity-log/)
118
  * [Pagely](https://pagely.com/blog/2015/01/log-wordpress-dashboard-activity-improved-security-auditing/)
119
  * [Shout Me Loud](https://www.shoutmeloud.com/wordpress-security-audit-log.html)
120
+ * [The Dev Couple](https://thedevcouple.com/wp-security-audit-log-review/)
121
  * [WPKube](http://www.wpkube.com/improve-wordpress-security-wp-security-audit-log/)
122
+ * [WPLift](http://wplift.com/audit-wordpress-security-logs)
 
123
  * [WP SmackDown](https://wpsmackdown.com/wp-plugins/wp-security-audit-log/)
124
  * [SourceWP](https://www.sourcewp.com/wp-security-audit-log-plugin-review/)
125
  * [Techwibe](https://www.techwibe.com/wp-security-audit-log-wordpress-plugin/)
131
  * [Firewall.cx](http://www.firewall.cx/general-topics-reviews/security-articles/1146-wordpress-audit-monitor-log-site-security-alerts.html)
132
  * [Design Wall](http://www.designwall.com/blog/10-wordpress-multisite-plugins-you-shouldnt-live-without/)
133
  * [Tidy Repo](https://tidyrepo.com/wp-security-audit-log-wordpress-activity-log/)
 
134
  * [Monster Post](http://blog.templatemonster.com/2015/12/15/wp-security-audit-log-plugin-review/)
135
  * [The Darknet](http://www.darknet.org.uk/2015/10/wp-security-audit-log-a-complete-audit-log-plugin-for-wordpress/)
136
  * [WebEmpresa](https://www.webempresa.com/blog/auditando-cambios-en-wordpress.html)
137
  * [KitPloit](http://www.kitploit.com/2016/10/wp-security-audit-log-ultimate.html)
138
+ * [EHacking](https://www.ehacking.net/2018/10/how-activity-log-wordpress-plugin.html)
139
 
140
  #### WordPress Security Audit Log in your Language!
141
  We need help translating the plugin and the WordPress Security Alerts. Please visit the [WordPress Translate Project](https://translate.wordpress.org/projects/wp-plugins/wp-security-audit-log) to translate the plugin and drop us an email on support@wpwhitesecurity.com to get mentioned in the list of translators below.
145
  * Spanish translation by the [WP Body team](https://wpbody.com/)
146
  * French translations by Denis Moscato
147
 
148
+ #### Activity Log Extensions
149
+
150
+ * <strong>[Activity Log for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/)</strong>: This extension allows you to keep a log of MainWP network changes and to view the activity logs of all child sites from one central location - the MainWP dashboard.
151
+
152
  #### Related Links and Documentation
153
 
154
  * [What is a WordPress Activity Log?](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-documentation/what-is-a-wordpress-audit-trail/)
157
  * [WP Security Audit Log and Reverse Proxy and WAFs Support](http://www.wpsecurityauditlog.com/documentation/automatically-retrieve-originating-wordpress-user-ip-address/)
158
  * [WP Security Audit Log Database Documentation](http://www.wpsecurityauditlog.com/documentation/plugin-wordpress-database-documentation/)
159
  * [Official WP Security Audit Log Plugin Website](http://www.wpsecurityauditlog.com/)
160
+ * [Activity logs for MainWP](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/)
161
 
162
  == Installation ==
163
 
168
  1. Install and activate the WP Security Audit Log plugin
169
  1. Allow or skip diagnostic tracking
170
 
171
+ === Install WP Security Audit Log manually ===
172
 
173
  1. Upload the `wp-security-audit-log` directory to the `/wp-content/plugins/` directory
174
  1. Activate the WP Security Audit Log plugin from the 'Plugins' menu in WordPress
195
 
196
  == Changelog ==
197
 
198
+ = 3.2.5 (2018-11-15) =
199
 
200
+ Release Notes: [Announcing Activity Log for MainWP](https://www.wpsecurityauditlog.com/releases/announcing-activity-log-mainwp-extension/)
201
 
202
+ * **New Events for the activity log**
203
+ * Event ID 2127: Changed the name of a category
204
+ * Event ID 2128: Changed the slug of a category
 
205
 
206
+ * **New Functionality**
207
+ * Added support in the plugin for the [Activity Log for MainWP extension](https://www.wpsecurityauditlog.com/activity-log-mainwp-extension/).
 
 
 
 
 
 
 
 
 
 
208
 
209
  * **Bug Fixes**
210
+ * Fixed an issue in the licensing which allowed users with Starter plan to access features from the professional plan.
 
 
 
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: http://www.wpsecurityauditlog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
- * Version: 3.2.4
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -54,7 +54,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
54
  *
55
  * @var string
56
  */
57
- public $version = '3.2.4';
58
 
59
  // Plugin constants.
60
  const PLG_CLS_PRFX = 'WSAL_';
@@ -231,6 +231,8 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
231
  wp_schedule_event( time(), 'daily', 'wsal_delete_logins' );
232
  }
233
 
 
 
234
  // Register freemius uninstall event.
235
  wsal_freemius()->add_action( 'after_uninstall', array( $this, 'wsal_freemius_uninstall_cleanup' ) );
236
 
@@ -242,6 +244,54 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
242
  wsal_freemius()->add_filter( 'reshow_trial_after_every_n_sec', array( $this, 'change_reshow_trial_period' ), 10, 1 );
243
  }
244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
  /**
246
  * Method: WSAL plugin redirect.
247
  */
4
  * Plugin URI: http://www.wpsecurityauditlog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
+ * Version: 3.2.5
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
54
  *
55
  * @var string
56
  */
57
+ public $version = '3.2.5';
58
 
59
  // Plugin constants.
60
  const PLG_CLS_PRFX = 'WSAL_';
231
  wp_schedule_event( time(), 'daily', 'wsal_delete_logins' );
232
  }
233
 
234
+ add_filter( 'mainwp_child_extra_execution', array( $this, 'mainwp_dashboard_callback' ), 10, 2 );
235
+
236
  // Register freemius uninstall event.
237
  wsal_freemius()->add_action( 'after_uninstall', array( $this, 'wsal_freemius_uninstall_cleanup' ) );
238
 
244
  wsal_freemius()->add_filter( 'reshow_trial_after_every_n_sec', array( $this, 'change_reshow_trial_period' ), 10, 1 );
245
  }
246
 
247
+ /**
248
+ * MainWP Dashboard Handler.
249
+ *
250
+ * @param array $info – Information to return.
251
+ * @param array $post_data – Post data array from MainWP.
252
+ * @return mixed
253
+ */
254
+ public function mainwp_dashboard_callback( $info, $post_data ) {
255
+ if ( isset( $post_data['action'] ) ) {
256
+ switch ( $post_data['action'] ) {
257
+ case 'check_wsal':
258
+ $info = new stdClass();
259
+ $info->wsal_installed = true;
260
+ $info->is_premium = false;
261
+
262
+ if ( wsal_freemius()->is__premium_only() ) {
263
+ $info->is_premium = true;
264
+ }
265
+ break;
266
+
267
+ case 'get_events':
268
+ $limit = isset( $post_data['events_count'] ) ? $post_data['events_count'] : false;
269
+ $info = $this->alerts->get_mainwp_extension_events( $limit );
270
+ break;
271
+
272
+ case 'latest_event':
273
+ $event_query = new WSAL_Models_OccurrenceQuery();
274
+ $event_query->addOrderBy( 'created_on', true );
275
+ $event_query->setLimit( 1 );
276
+ $event = $event_query->getAdapter()->Execute( $event_query );
277
+
278
+ // Set the return object.
279
+ if ( isset( $event[0] ) ) {
280
+ $info = new stdClass();
281
+ $info->alert_id = $event[0]->alert_id;
282
+ $info->created_on = $event[0]->created_on;
283
+ } else {
284
+ $info = false;
285
+ }
286
+ break;
287
+
288
+ default:
289
+ break;
290
+ }
291
+ }
292
+ return $info;
293
+ }
294
+
295
  /**
296
  * Method: WSAL plugin redirect.
297
  */