WP Security Audit Log - Version 3.3.1.1

Version Description

(2019-02-06) =

  • New Features

    • New infinite scroll view in audit log viewer making the browsing of the activity logs much faster.
  • Plugin Improvements

    • Improved the search filters - now they are much faster.
    • Improved user session handling to better handle >1,000 sessions.
    • Replaced PHP severity with event log severity in the list of Events.
  • Bug Fixes

    • Scan Now button for the WordPress file integrity scanner is grayed out when auto scanning is disabled.
Download this release

Release Info

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

Code changes from version 3.3.1 to 3.3.1.1

classes/AuditLogListView.php CHANGED
@@ -27,7 +27,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
27
  /**
28
  * Instance of WpSecurityAuditLog.
29
  *
30
- * @var object
31
  */
32
  protected $_plugin;
33
 
@@ -51,6 +51,8 @@ class WSAL_AuditLogListView extends WP_List_Table {
51
  /**
52
  * Selected Columns.
53
  *
 
 
54
  * @var array()
55
  */
56
  private $selected_columns = '';
@@ -58,19 +60,31 @@ class WSAL_AuditLogListView extends WP_List_Table {
58
  /**
59
  * Display Name Type.
60
  *
 
 
61
  * @var string
62
  */
63
  private $name_type = '';
64
 
65
  /**
66
- * Method: Constructor.
67
  *
68
- * @param object $plugin - Instance of WpSecurityAuditLog.
 
 
69
  */
70
- public function __construct( $plugin ) {
71
- $this->_plugin = $plugin;
72
 
73
- $timezone = $this->_plugin->settings->GetTimezone();
 
 
 
 
 
 
 
 
 
74
 
75
  /**
76
  * Transform timezone values.
@@ -145,73 +159,86 @@ class WSAL_AuditLogListView extends WP_List_Table {
145
  */
146
  public function extra_tablenav( $which ) {
147
  // If the position is not top then render.
148
- if ( 'top' !== $which ) :
149
  // Items-per-page widget.
150
  $p = $this->_plugin->settings->GetViewPerPage();
151
  $items = array( 5, 10, 15, 30, 50 );
152
- if ( ! in_array( $p, $items ) ) {
153
  $items[] = $p;
154
  }
155
  ?>
156
  <div class="wsal-ipp wsal-ipp-<?php echo esc_attr( $which ); ?>">
157
  <?php esc_html_e( 'Show ', 'wp-security-audit-log' ); ?>
158
  <select class="wsal-ipps" onfocus="WsalIppsFocus(value);" onchange="WsalIppsChange(value);">
159
- <?php foreach ( $items as $item ) { ?>
160
- <option
161
- value="<?php echo is_string( $item ) ? '' : esc_attr( $item ); ?>"
162
- <?php echo ( $item == $p ) ? 'selected="selected"' : false; ?>>
163
  <?php echo esc_html( $item ); ?>
164
  </option>
165
- <?php } ?>
166
  </select>
167
  <?php esc_html_e( ' Items', 'wp-security-audit-log' ); ?>
168
  </div>
169
  <?php
170
  endif;
171
 
172
- // Show site alerts widget.
173
- if ( $this->is_multisite() && $this->is_main_blog() ) {
174
- $curr = $this->get_view_site_id();
175
  ?>
176
- <div class="wsal-ssa wsal-ssa-<?php echo esc_attr( $which ); ?>">
177
- <?php if ( $this->get_site_count() > 15 ) { ?>
178
- <?php $curr = $curr ? get_blog_details( $curr ) : null; ?>
179
- <?php $curr = $curr ? ( $curr->blogname . ' (' . $curr->domain . ')' ) : 'All Sites'; ?>
180
- <input type="text" class="wsal-ssas" value="<?php echo esc_attr( $curr ); ?>"/>
181
- <?php } else { ?>
182
- <select class="wsal-ssas" onchange="WsalSsasChange(value);">
183
- <option value="0"><?php esc_html_e( 'All Sites', 'wp-security-audit-log' ); ?></option>
184
- <?php foreach ( $this->get_sites() as $info ) { ?>
185
- <option value="<?php echo esc_attr( $info->blog_id ); ?>"
186
- <?php echo ( $info->blog_id == $curr ) ? 'selected="selected"' : false; ?>>
187
- <?php echo esc_html( $info->blogname ) . ' (' . esc_html( $info->domain ) . ')'; ?>
188
- </option>
189
- <?php } ?>
190
- </select>
191
- <?php } ?>
192
- </div>
193
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  }
195
 
196
  // Switch to live or archive DB.
197
  if ( $this->_plugin->settings->IsArchivingEnabled() ) {
198
- $selected = 'live';
199
- $selected_db = get_transient( 'wsal_wp_selected_db' );
200
- if ( $selected_db && 'archive' == $selected_db ) {
201
- $selected = 'archive';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  }
203
- ?>
204
- <div class="wsal-ssa wsal-db">
205
- <select class="wsal-db" onchange="WsalDBChange(value);">
206
- <option value="live" <?php echo ( 'live' == $selected ) ? 'selected="selected"' : false; ?>>
207
- <?php esc_html_e( 'Live Database', 'wp-security-audit-log' ); ?>
208
- </option>
209
- <option value="archive" <?php echo ( 'archive' == $selected ) ? 'selected="selected"' : false; ?>>
210
- <?php esc_html_e( 'Archive Database', 'wp-security-audit-log' ); ?>
211
- </option>
212
- </select>
213
- </div>
214
- <?php
215
  }
216
  }
217
 
@@ -292,7 +319,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
292
  // If selected columns are not empty, then unset default columns.
293
  if ( ! empty( $this->selected_columns ) ) {
294
  unset( $cols );
295
- $this->selected_columns = (array) json_decode( $this->selected_columns );
296
  foreach ( $this->selected_columns as $key => $value ) {
297
  switch ( $key ) {
298
  case 'alert_code':
@@ -579,7 +606,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
579
  * Method: Meta data formater.
580
  *
581
  * @param string $name - Name of the data.
582
- * @param mixed $value - Value of the data.
583
  * @return string
584
  * @deprecated 3.3
585
  */
@@ -667,7 +694,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
667
  return '<a href="javascript:;" onclick="download_failed_login_log( this )" data-download-nonce="' . esc_attr( wp_create_nonce( 'wsal-download-failed-logins' ) ) . '" title="' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '">' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '</a>';
668
 
669
  case strncmp( $value, 'http://', 7 ) === 0:
670
- case strncmp( $value, 'https://', 8 ) === 0:
671
  return '<a href="' . esc_html( $value ) . '" title="' . esc_html( $value ) . '" target="_blank">' . esc_html( $value ) . '</a>';
672
 
673
  case '%PostStatus%' === $name:
@@ -731,10 +758,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
731
  * @return bool
732
  */
733
  protected function is_specific_view() {
734
- // Filter $_GET array for security.
735
- $get_array = filter_input_array( INPUT_GET );
736
-
737
- return isset( $get_array['wsal-cbid'] ) && '0' != $get_array['wsal-cbid'];
738
  }
739
 
740
  /**
@@ -743,10 +767,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
743
  * @return int
744
  */
745
  protected function get_specific_view() {
746
- // Filter $_GET array for security.
747
- $get_array = filter_input_array( INPUT_GET );
748
-
749
- return isset( $get_array['wsal-cbid'] ) ? (int) $get_array['wsal-cbid'] : 0;
750
  }
751
 
752
  /**
@@ -772,85 +793,28 @@ class WSAL_AuditLogListView extends WP_List_Table {
772
  }
773
 
774
  /**
775
- * Method: Prepare items.
776
  */
777
  public function prepare_items() {
778
- if ( $this->_plugin->settings->IsArchivingEnabled() ) {
779
- // Switch to Archive DB.
780
- $selected_db = get_transient( 'wsal_wp_selected_db' );
781
- if ( $selected_db && 'archive' == $selected_db ) {
782
- $this->_plugin->settings->SwitchToArchiveDB();
783
- }
784
- }
785
-
786
- $per_page = $this->_plugin->settings->GetViewPerPage();
787
-
788
- $columns = $this->get_columns();
789
- $hidden = array();
790
- $sortable = $this->get_sortable_columns();
791
-
792
  $this->_column_headers = array( $columns, $hidden, $sortable );
793
 
794
- // $this->process_bulk_action();
795
- // TO DO: Get rid of OccurrenceQuery and use the Occurence Model.
796
- $query = new WSAL_Models_OccurrenceQuery();
797
-
798
- $bid = (int) $this->get_view_site_id();
799
- if ( $bid ) {
800
- $query->addCondition( 'site_id = %s ', $bid );
 
 
 
 
 
 
801
  }
802
-
803
- $query = apply_filters( 'wsal_auditlog_query', $query );
804
-
805
- $total_items = $query->getAdapter()->Count( $query );
806
-
807
- // Filter $_GET and $_POST arrays for security.
808
- $get_array = filter_input_array( INPUT_GET );
809
-
810
- if ( empty( $get_array['orderby'] ) ) {
811
- $query->addOrderBy( 'created_on', true );
812
- } else {
813
- $order_by_field = $get_array['orderby'];
814
-
815
- $is_descending = true;
816
- if ( ! empty( $get_array['order'] ) && 'asc' == $get_array['order'] ) {
817
- $is_descending = false;
818
- }
819
-
820
- // TO DO: Allow order by meta values.
821
- if ( 'scip' == $order_by_field ) {
822
- $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
823
- $query->addCondition( 'meta.name = %s', 'ClientIP' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
824
- $query->addOrderBy( 'CASE WHEN meta.name = "ClientIP" THEN meta.value END', $is_descending );
825
- } elseif ( 'user' == $order_by_field ) {
826
- $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
827
- $query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
828
- $query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
829
- } else {
830
- $tmp = new WSAL_Models_Occurrence();
831
- // Making sure the field exists to order by.
832
- if ( isset( $tmp->{$order_by_field} ) ) {
833
- // TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
834
- $query->addOrderBy( $get_array['orderby'], $is_descending );
835
-
836
- } else {
837
- $query->addOrderBy( 'created_on', true );
838
- }
839
- }
840
- }
841
-
842
- $query->setOffset( ( $this->get_pagenum() - 1 ) * $per_page );
843
- $query->setLimit( $per_page );
844
-
845
- $this->items = $query->getAdapter()->Execute( $query );
846
-
847
- $this->set_pagination_args(
848
- array(
849
- 'total_items' => $total_items,
850
- 'per_page' => $per_page,
851
- 'total_pages' => ceil( $total_items / $per_page ),
852
- )
853
- );
854
  }
855
 
856
  /**
@@ -859,7 +823,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
859
  * @param object $item - Item.
860
  */
861
  public function single_row( $item ) {
862
- if ( 9999 == $item->alert_id ) {
863
  echo '<tr style="background-color: #D5E46E">';
864
  $this->single_row_columns( $item );
865
  echo '</tr>';
@@ -882,15 +846,14 @@ class WSAL_AuditLogListView extends WP_List_Table {
882
  $current_url = set_url_scheme( esc_url_raw( wp_unslash( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
883
  $current_url = remove_query_arg( 'paged', $current_url );
884
 
885
- // Get $_GET global array.
886
- $get_array = filter_input_array( INPUT_GET );
887
- if ( isset( $get_array['orderby'] ) ) {
888
- $current_orderby = sanitize_text_field( $get_array['orderby'] );
889
  } else {
890
  $current_orderby = '';
891
  }
892
 
893
- if ( isset( $get_array['order'] ) && 'desc' === $get_array['order'] ) {
894
  $current_order = 'desc';
895
  } else {
896
  $current_order = 'asc';
@@ -898,7 +861,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
898
 
899
  if ( ! empty( $columns['cb'] ) ) {
900
  static $cb_counter = 1;
901
- $columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
902
  . '<input id="cb-select-all-' . $cb_counter . '" type="checkbox" />';
903
  $cb_counter++;
904
  }
@@ -971,6 +934,94 @@ class WSAL_AuditLogListView extends WP_List_Table {
971
  * @return int
972
  */
973
  public function get_total_items() {
974
- return $this->_pagination_args['total_items'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  }
976
  }
27
  /**
28
  * Instance of WpSecurityAuditLog.
29
  *
30
+ * @var WpSecurityAuditLog
31
  */
32
  protected $_plugin;
33
 
51
  /**
52
  * Selected Columns.
53
  *
54
+ * @since 3.3.1
55
+ *
56
  * @var array()
57
  */
58
  private $selected_columns = '';
60
  /**
61
  * Display Name Type.
62
  *
63
+ * @since 3.3.1
64
+ *
65
  * @var string
66
  */
67
  private $name_type = '';
68
 
69
  /**
70
+ * Events Query Arguments.
71
  *
72
+ * @since 3.3.1.1
73
+ *
74
+ * @var stdClass
75
  */
76
+ private $query_args;
 
77
 
78
+ /**
79
+ * Method: Constructor.
80
+ *
81
+ * @param object $plugin - Instance of WpSecurityAuditLog.
82
+ * @param stdClass $query_args - Events query arguments.
83
+ */
84
+ public function __construct( $plugin, $query_args ) {
85
+ $this->_plugin = $plugin;
86
+ $this->query_args = $query_args;
87
+ $timezone = $this->_plugin->settings->GetTimezone();
88
 
89
  /**
90
  * Transform timezone values.
159
  */
160
  public function extra_tablenav( $which ) {
161
  // If the position is not top then render.
162
+ if ( 'top' !== $which && ! $this->_plugin->settings->is_infinite_scroll() ) :
163
  // Items-per-page widget.
164
  $p = $this->_plugin->settings->GetViewPerPage();
165
  $items = array( 5, 10, 15, 30, 50 );
166
+ if ( ! in_array( $p, $items, true ) ) {
167
  $items[] = $p;
168
  }
169
  ?>
170
  <div class="wsal-ipp wsal-ipp-<?php echo esc_attr( $which ); ?>">
171
  <?php esc_html_e( 'Show ', 'wp-security-audit-log' ); ?>
172
  <select class="wsal-ipps" onfocus="WsalIppsFocus(value);" onchange="WsalIppsChange(value);">
173
+ <?php foreach ( $items as $item ) : ?>
174
+ <option value="<?php echo is_string( $item ) ? '' : esc_attr( $item ); ?>" <?php echo ( $item === $p ) ? 'selected="selected"' : false; ?>>
 
 
175
  <?php echo esc_html( $item ); ?>
176
  </option>
177
+ <?php endforeach; ?>
178
  </select>
179
  <?php esc_html_e( ' Items', 'wp-security-audit-log' ); ?>
180
  </div>
181
  <?php
182
  endif;
183
 
184
+ if ( 'top' !== $which && $this->_plugin->settings->is_infinite_scroll() ) :
 
 
185
  ?>
186
+ <div id="wsal-event-loader"><div class="wsal-lds-ellipsis"><div></div><div></div><div></div><div></div></div></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  <?php
188
+ endif;
189
+
190
+ // Show site alerts widget.
191
+ if ( $this->is_multisite() && $this->is_main_blog() ) {
192
+ if (
193
+ ( 'top' === $which && $this->_plugin->settings->is_infinite_scroll() )
194
+ || ! $this->_plugin->settings->is_infinite_scroll()
195
+ ) {
196
+ $curr = $this->get_view_site_id();
197
+ ?>
198
+ <div class="wsal-ssa wsal-ssa-<?php echo esc_attr( $which ); ?>">
199
+ <?php if ( $this->get_site_count() > 15 ) : ?>
200
+ <?php $curr = $curr ? get_blog_details( $curr ) : null; ?>
201
+ <?php $curr = $curr ? ( $curr->blogname . ' (' . $curr->domain . ')' ) : 'All Sites'; ?>
202
+ <input type="text" class="wsal-ssas" value="<?php echo esc_attr( $curr ); ?>"/>
203
+ <?php else : ?>
204
+ <select class="wsal-ssas" onchange="WsalSsasChange(value);">
205
+ <option value="0"><?php esc_html_e( 'All Sites', 'wp-security-audit-log' ); ?></option>
206
+ <?php foreach ( $this->get_sites() as $info ) : ?>
207
+ <option value="<?php echo esc_attr( $info->blog_id ); ?>" <?php echo ( $info->blog_id == $curr ) ? 'selected="selected"' : false; ?>>
208
+ <?php echo esc_html( $info->blogname ) . ' (' . esc_html( $info->domain ) . ')'; ?>
209
+ </option>
210
+ <?php endforeach; ?>
211
+ </select>
212
+ <?php endif; ?>
213
+ </div>
214
+ <?php
215
+ }
216
  }
217
 
218
  // Switch to live or archive DB.
219
  if ( $this->_plugin->settings->IsArchivingEnabled() ) {
220
+ if (
221
+ ( 'top' === $which && $this->_plugin->settings->is_infinite_scroll() )
222
+ || ! $this->_plugin->settings->is_infinite_scroll()
223
+ ) {
224
+ $selected = 'live';
225
+ $selected_db = get_transient( 'wsal_wp_selected_db' );
226
+ if ( $selected_db && 'archive' === $selected_db ) {
227
+ $selected = 'archive';
228
+ }
229
+ ?>
230
+ <div class="wsal-ssa wsal-db">
231
+ <select class="wsal-db" onchange="WsalDBChange(value);">
232
+ <option value="live" <?php echo ( 'live' == $selected ) ? 'selected="selected"' : false; ?>>
233
+ <?php esc_html_e( 'Live Database', 'wp-security-audit-log' ); ?>
234
+ </option>
235
+ <option value="archive" <?php echo ( 'archive' == $selected ) ? 'selected="selected"' : false; ?>>
236
+ <?php esc_html_e( 'Archive Database', 'wp-security-audit-log' ); ?>
237
+ </option>
238
+ </select>
239
+ </div>
240
+ <?php
241
  }
 
 
 
 
 
 
 
 
 
 
 
 
242
  }
243
  }
244
 
319
  // If selected columns are not empty, then unset default columns.
320
  if ( ! empty( $this->selected_columns ) ) {
321
  unset( $cols );
322
+ $this->selected_columns = is_string( $this->selected_columns ) ? (array) json_decode( $this->selected_columns ) : $this->selected_columns;
323
  foreach ( $this->selected_columns as $key => $value ) {
324
  switch ( $key ) {
325
  case 'alert_code':
606
  * Method: Meta data formater.
607
  *
608
  * @param string $name - Name of the data.
609
+ * @param mix $value - Value of the data.
610
  * @return string
611
  * @deprecated 3.3
612
  */
694
  return '<a href="javascript:;" onclick="download_failed_login_log( this )" data-download-nonce="' . esc_attr( wp_create_nonce( 'wsal-download-failed-logins' ) ) . '" title="' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '">' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '</a>';
695
 
696
  case strncmp( $value, 'http://', 7 ) === 0:
697
+ case strncmp( $value, 'https://', 7 ) === 0:
698
  return '<a href="' . esc_html( $value ) . '" title="' . esc_html( $value ) . '" target="_blank">' . esc_html( $value ) . '</a>';
699
 
700
  case '%PostStatus%' === $name:
758
  * @return bool
759
  */
760
  protected function is_specific_view() {
761
+ return isset( $this->query_args->site_id ) && '0' != $this->query_args->site_id;
 
 
 
762
  }
763
 
764
  /**
767
  * @return int
768
  */
769
  protected function get_specific_view() {
770
+ return isset( $this->query_args->site_id ) ? (int) $this->query_args->site_id : 0;
 
 
 
771
  }
772
 
773
  /**
793
  }
794
 
795
  /**
796
+ * Set Events for Audit Log Viewer.
797
  */
798
  public function prepare_items() {
799
+ $columns = $this->get_columns();
800
+ $hidden = array();
801
+ $sortable = $this->get_sortable_columns();
 
 
 
 
 
 
 
 
 
 
 
802
  $this->_column_headers = array( $columns, $hidden, $sortable );
803
 
804
+ $query_events = $this->query_events();
805
+ $this->items = isset( $query_events['items'] ) ? $query_events['items'] : false;
806
+ $total_items = isset( $query_events['total_items'] ) ? $query_events['total_items'] : false;
807
+ $per_page = isset( $query_events['per_page'] ) ? $query_events['per_page'] : false;
808
+
809
+ if ( ! $this->_plugin->settings->is_infinite_scroll() ) {
810
+ $this->set_pagination_args(
811
+ array(
812
+ 'total_items' => $total_items,
813
+ 'per_page' => $per_page,
814
+ 'total_pages' => ceil( $total_items / $per_page ),
815
+ )
816
+ );
817
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
818
  }
819
 
820
  /**
823
  * @param object $item - Item.
824
  */
825
  public function single_row( $item ) {
826
+ if ( 9999 === $item->alert_id ) {
827
  echo '<tr style="background-color: #D5E46E">';
828
  $this->single_row_columns( $item );
829
  echo '</tr>';
846
  $current_url = set_url_scheme( esc_url_raw( wp_unslash( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
847
  $current_url = remove_query_arg( 'paged', $current_url );
848
 
849
+ // Set order by query arg.
850
+ if ( isset( $this->query_args->order_by ) ) {
851
+ $current_orderby = $this->query_args->order_by;
 
852
  } else {
853
  $current_orderby = '';
854
  }
855
 
856
+ if ( isset( $this->query_args->order ) && 'desc' === $this->query_args->order ) {
857
  $current_order = 'desc';
858
  } else {
859
  $current_order = 'asc';
861
 
862
  if ( ! empty( $columns['cb'] ) ) {
863
  static $cb_counter = 1;
864
+ $columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
865
  . '<input id="cb-select-all-' . $cb_counter . '" type="checkbox" />';
866
  $cb_counter++;
867
  }
934
  * @return int
935
  */
936
  public function get_total_items() {
937
+ return isset( $this->_pagination_args['total_items'] ) ? $this->_pagination_args['total_items'] : false;
938
+ }
939
+
940
+ /**
941
+ * Query Events from WSAL DB.
942
+ *
943
+ * @since 3.3.1.1
944
+ *
945
+ * @param integer $paged - Page number.
946
+ * @return array
947
+ */
948
+ public function query_events( $paged = 0 ) {
949
+ if ( $this->_plugin->settings->IsArchivingEnabled() ) {
950
+ // Switch to Archive DB.
951
+ $selected_db = get_transient( 'wsal_wp_selected_db' );
952
+ if ( $selected_db && 'archive' === $selected_db ) {
953
+ $this->_plugin->settings->SwitchToArchiveDB();
954
+ }
955
+ }
956
+
957
+ // TO DO: Get rid of OccurrenceQuery and use the Occurence Model.
958
+ $query = new WSAL_Models_OccurrenceQuery();
959
+
960
+ $bid = (int) $this->query_args->site_id;
961
+ if ( $bid ) {
962
+ $query->addCondition( 'site_id = %s ', $bid );
963
+ }
964
+
965
+ /**
966
+ * Hook: `wsal_auditlog_query`
967
+ *
968
+ * This hook is used to filter events query object.
969
+ * It is used to support search by filters.
970
+ *
971
+ * @see WSAL_SearchExtension()->__construct()
972
+ * @param WSAL_Models_OccurrenceQuery $query - Audit log events query object.
973
+ */
974
+ $query = apply_filters( 'wsal_auditlog_query', $query );
975
+
976
+ if ( ! $this->_plugin->settings->is_infinite_scroll() ) {
977
+ $total_items = $query->getAdapter()->Count( $query );
978
+ $per_page = $this->_plugin->settings->GetViewPerPage();
979
+ $offset = ( $this->get_pagenum() - 1 ) * $per_page;
980
+ } else {
981
+ $total_items = false;
982
+ $per_page = 25; // Manually set per page events for infinite scroll.
983
+ $offset = ( max( 1, $paged ) - 1 ) * $per_page;
984
+ }
985
+
986
+ // Set query order arguments.
987
+ $order_by = isset( $this->query_args->order_by ) ? $this->query_args->order_by : false;
988
+ $order = isset( $this->query_args->order ) ? $this->query_args->order : false;
989
+
990
+ if ( ! $order_by ) {
991
+ $query->addOrderBy( 'created_on', true );
992
+ } else {
993
+ $is_descending = true;
994
+ if ( $order && 'asc' === $order ) {
995
+ $is_descending = false;
996
+ }
997
+
998
+ // TO DO: Allow order by meta values.
999
+ if ( 'scip' === $order_by ) {
1000
+ $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1001
+ $query->addCondition( 'meta.name = %s', 'ClientIP' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1002
+ $query->addOrderBy( 'CASE WHEN meta.name = "ClientIP" THEN meta.value END', $is_descending );
1003
+ } elseif ( 'user' === $order_by ) {
1004
+ $query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
1005
+ $query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
1006
+ $query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
1007
+ } else {
1008
+ $tmp = new WSAL_Models_Occurrence();
1009
+ // Making sure the field exists to order by.
1010
+ if ( isset( $tmp->{$order_by} ) ) {
1011
+ // TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
1012
+ $query->addOrderBy( $order_by, $is_descending );
1013
+ } else {
1014
+ $query->addOrderBy( 'created_on', true );
1015
+ }
1016
+ }
1017
+ }
1018
+
1019
+ $query->setOffset( $offset ); // Set query offset.
1020
+ $query->setLimit( $per_page ); // Set number of events per page.
1021
+ return array(
1022
+ 'total_items' => $total_items,
1023
+ 'per_page' => $per_page,
1024
+ 'items' => $query->getAdapter()->Execute( $query ),
1025
+ );
1026
  }
1027
  }
classes/Sensors/Database.php CHANGED
@@ -45,8 +45,9 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
45
  * @param WP_Query $query - Query object.
46
  */
47
  public function EventDropQuery( $query ) {
 
48
  $table_names = array();
49
- $str = explode( ' ', $query );
50
 
51
  if ( preg_match( '|DROP TABLE ([^ ]*)|', $query ) ) {
52
  if ( ! empty( $str[4] ) ) {
@@ -55,15 +56,25 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
55
  array_push( $table_names, $str[2] );
56
  }
57
 
58
- // Filter $_SERVER array for security.
59
- $server_array = filter_input_array( INPUT_SERVER );
60
-
61
- $actype = ( isset( $server_array['SCRIPT_NAME'] ) ) ? basename( $server_array['SCRIPT_NAME'], '.php' ) : false;
62
  $alert_options = $this->GetActionType( $actype );
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  }
64
 
65
  if ( ! empty( $table_names ) ) {
66
- $event_code = $this->GetEventQueryType( $actype, 'delete' );
67
  $alert_options['TableNames'] = implode( ',', $table_names );
68
  $this->plugin->alerts->Trigger( $event_code, $alert_options );
69
  }
@@ -106,21 +117,17 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
106
  }
107
 
108
  if ( ! empty( $type_queries['create'] ) || ! empty( $type_queries['update'] ) || ! empty( $type_queries['delete'] ) ) {
109
- // Filter $_SERVER array for security.
110
- $server_array = filter_input_array( INPUT_SERVER );
111
-
112
- $actype = ( isset( $server_array['SCRIPT_NAME'] ) ) ? basename( $server_array['SCRIPT_NAME'], '.php' ) : false;
113
  $alert_options = $this->GetActionType( $actype );
114
 
115
  foreach ( $type_queries as $query_type => $table_names ) {
116
  if ( ! empty( $table_names ) ) {
117
- $event_code = $this->GetEventQueryType( $actype, $query_type );
118
  $alert_options['TableNames'] = implode( ',', $table_names );
119
  $this->plugin->alerts->Trigger( $event_code, $alert_options );
120
  }
121
  }
122
  }
123
-
124
  return $queries;
125
  }
126
 
@@ -133,29 +140,29 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
133
  protected function GetEventQueryType( $type_action, $type_query ) {
134
  switch ( $type_action ) {
135
  case 'plugins':
136
- if ( 'create' == $type_query ) {
137
  return 5010;
138
- } elseif ( 'update' == $type_query ) {
139
  return 5011;
140
- } elseif ( 'delete' == $type_query ) {
141
  return 5012;
142
  }
143
  // In case of plugins.
144
  case 'themes':
145
- if ( 'create' == $type_query ) {
146
  return 5013;
147
- } elseif ( 'update' == $type_query ) {
148
  return 5014;
149
- } elseif ( 'delete' == $type_query ) {
150
  return 5015;
151
  }
152
  // In case of themes.
153
  default:
154
- if ( 'create' == $type_query ) {
155
  return 5016;
156
- } elseif ( 'update' == $type_query ) {
157
  return 5017;
158
- } elseif ( 'delete' == $type_query ) {
159
  return 5018;
160
  }
161
  }
@@ -167,45 +174,58 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
167
  * @param string $actype - Plugins, themes or unknown.
168
  */
169
  protected function GetActionType( $actype ) {
170
- // Filter $_GET array for security.
171
- $get_array = filter_input_array( INPUT_GET );
172
-
173
- $is_themes = 'themes' == $actype;
174
- $is_plugins = 'plugins' == $actype;
175
 
176
  // Action Plugin Component.
177
  $alert_options = array();
178
  if ( $is_plugins ) {
179
  $plugin_file = '';
180
- if ( isset( $get_array['plugin'] ) ) {
181
- $plugin_file = $get_array['plugin'];
182
- } elseif ( isset( $get_array['checked'] ) ) {
183
- $plugin_file = $get_array['checked'][0];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
  }
185
- $plugin_name = basename( $plugin_file, '.php' );
186
- $plugin_name = str_replace( array( '_', '-', ' ' ), ' ', $plugin_name );
187
- $plugin_name = ucwords( $plugin_name );
188
- $alert_options['Plugin'] = (object) array(
189
- 'Name' => $plugin_name,
190
- );
191
- // Action Theme Component.
192
  } elseif ( $is_themes ) {
 
193
  $theme_name = '';
194
- if ( isset( $get_array['theme'] ) ) {
195
- $theme_name = $get_array['theme'];
196
- } elseif ( isset( $get_array['checked'] ) ) {
197
- $theme_name = $get_array['checked'][0];
 
 
198
  }
199
- $theme_name = str_replace( array( '_', '-', ' ' ), ' ', $theme_name );
200
- $theme_name = ucwords( $theme_name );
201
- $alert_options['Theme'] = (object) array(
202
- 'Name' => $theme_name,
203
- );
204
- // Action Unknown Component.
205
  } else {
 
206
  $alert_options['Component'] = 'Unknown';
207
  }
208
-
209
  return $alert_options;
210
  }
211
  }
45
  * @param WP_Query $query - Query object.
46
  */
47
  public function EventDropQuery( $query ) {
48
+ global $wpdb;
49
  $table_names = array();
50
+ $str = explode( ' ', $query );
51
 
52
  if ( preg_match( '|DROP TABLE ([^ ]*)|', $query ) ) {
53
  if ( ! empty( $str[4] ) ) {
56
  array_push( $table_names, $str[2] );
57
  }
58
 
59
+ $actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
 
 
 
60
  $alert_options = $this->GetActionType( $actype );
61
+ $type_query = 'delete';
62
+ } elseif ( preg_match( '|CREATE TABLE IF NOT EXISTS ([^ ]*)|', $query ) ) {
63
+ if ( $str[5] !== $wpdb->get_var( "SHOW TABLES LIKE '" . $str[5] . "'" ) ) {
64
+ /**
65
+ * Some plugins keep trying to create tables even
66
+ * when they already exist- would result in too
67
+ * many alerts.
68
+ */
69
+ array_push( $table_names, $str[5] );
70
+ $actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
71
+ $alert_options = $this->GetActionType( $actype );
72
+ $type_query = 'create';
73
+ }
74
  }
75
 
76
  if ( ! empty( $table_names ) ) {
77
+ $event_code = $this->GetEventQueryType( $actype, $type_query );
78
  $alert_options['TableNames'] = implode( ',', $table_names );
79
  $this->plugin->alerts->Trigger( $event_code, $alert_options );
80
  }
117
  }
118
 
119
  if ( ! empty( $type_queries['create'] ) || ! empty( $type_queries['update'] ) || ! empty( $type_queries['delete'] ) ) {
120
+ $actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
 
 
 
121
  $alert_options = $this->GetActionType( $actype );
122
 
123
  foreach ( $type_queries as $query_type => $table_names ) {
124
  if ( ! empty( $table_names ) ) {
125
+ $event_code = $this->GetEventQueryType( $actype, $query_type );
126
  $alert_options['TableNames'] = implode( ',', $table_names );
127
  $this->plugin->alerts->Trigger( $event_code, $alert_options );
128
  }
129
  }
130
  }
 
131
  return $queries;
132
  }
133
 
140
  protected function GetEventQueryType( $type_action, $type_query ) {
141
  switch ( $type_action ) {
142
  case 'plugins':
143
+ if ( 'create' === $type_query ) {
144
  return 5010;
145
+ } elseif ( 'update' === $type_query ) {
146
  return 5011;
147
+ } elseif ( 'delete' === $type_query ) {
148
  return 5012;
149
  }
150
  // In case of plugins.
151
  case 'themes':
152
+ if ( 'create' === $type_query ) {
153
  return 5013;
154
+ } elseif ( 'update' === $type_query ) {
155
  return 5014;
156
+ } elseif ( 'delete' === $type_query ) {
157
  return 5015;
158
  }
159
  // In case of themes.
160
  default:
161
+ if ( 'create' === $type_query ) {
162
  return 5016;
163
+ } elseif ( 'update' === $type_query ) {
164
  return 5017;
165
+ } elseif ( 'delete' === $type_query ) {
166
  return 5018;
167
  }
168
  }
174
  * @param string $actype - Plugins, themes or unknown.
175
  */
176
  protected function GetActionType( $actype ) {
177
+ // Check the component type (theme or plugin).
178
+ $is_themes = 'themes' === $actype;
179
+ $is_plugins = 'plugins' === $actype;
 
 
180
 
181
  // Action Plugin Component.
182
  $alert_options = array();
183
  if ( $is_plugins ) {
184
  $plugin_file = '';
185
+ // @codingStandardsIgnoreStart
186
+ if ( isset( $_GET['plugin'] ) ) {
187
+ $plugin_file = sanitize_text_field( wp_unslash( $_GET['plugin'] ) );
188
+ } elseif ( isset( $_GET['checked'] ) ) {
189
+ $plugin_file = sanitize_text_field( wp_unslash( $_GET['checked'][0] ) );
190
+ }
191
+ // @codingStandardsIgnoreEnd
192
+
193
+ // Get plugin data.
194
+ $plugins = get_plugins();
195
+ if ( isset( $plugins[ $plugin_file ] ) ) {
196
+ $plugin = $plugins[ $plugin_file ];
197
+
198
+ // Set alert options.
199
+ $alert_options['Plugin'] = (object) array(
200
+ 'Name' => $plugin['Name'],
201
+ 'PluginURI' => $plugin['PluginURI'],
202
+ 'Version' => $plugin['Version'],
203
+ );
204
+ } else {
205
+ $plugin_name = basename( $plugin_file, '.php' );
206
+ $plugin_name = str_replace( array( '_', '-', ' ' ), ' ', $plugin_name );
207
+ $plugin_name = ucwords( $plugin_name );
208
+ $alert_options['Plugin'] = (object) array( 'Name' => $plugin_name );
209
  }
 
 
 
 
 
 
 
210
  } elseif ( $is_themes ) {
211
+ // Action Theme Component.
212
  $theme_name = '';
213
+
214
+ // @codingStandardsIgnoreStart
215
+ if ( isset( $_GET['theme'] ) ) {
216
+ $theme_name = sanitize_text_field( wp_unslash( $_GET['theme'] ) );
217
+ } elseif ( isset( $_GET['checked'] ) ) {
218
+ $theme_name = sanitize_text_field( wp_unslash( $_GET['checked'][0] ) );
219
  }
220
+ // @codingStandardsIgnoreEnd
221
+
222
+ $theme_name = str_replace( array( '_', '-', ' ' ), ' ', $theme_name );
223
+ $theme_name = ucwords( $theme_name );
224
+ $alert_options['Theme'] = (object) array( 'Name' => $theme_name );
 
225
  } else {
226
+ // Action Unknown Component.
227
  $alert_options['Component'] = 'Unknown';
228
  }
 
229
  return $alert_options;
230
  }
231
  }
classes/Sensors/PluginsThemes.php CHANGED
@@ -557,7 +557,7 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor {
557
 
558
  // Check if Yoast SEO is active.
559
  $is_yoast = is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' );
560
- if ( $is_yoast && isset( $get_array['classic-editor'] ) ) {
561
  return;
562
  }
563
 
557
 
558
  // Check if Yoast SEO is active.
559
  $is_yoast = is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' );
560
+ if ( $is_yoast ) {
561
  return;
562
  }
563
 
classes/Sensors/WooCommerce.php CHANGED
@@ -2144,13 +2144,29 @@ class WSAL_Sensors_WooCommerce extends WSAL_AbstractSensor {
2144
  $order_title = ( null !== $order_post && $order_post instanceof WP_Post ) ? $order_post->post_title : false;
2145
  $order_post = get_post( $order_id );
2146
  $edit_link = $this->GetEditorLink( $order_post );
2147
-
2148
- $this->plugin->alerts->Trigger( 9036, array(
2149
  'OrderID' => $order_id,
2150
  'OrderTitle' => $this->get_order_title( $order ),
2151
  'OrderStatus' => $status_to,
2152
  $edit_link['name'] => $edit_link['value'],
2153
- ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2154
  }
2155
 
2156
  /**
@@ -2170,13 +2186,16 @@ class WSAL_Sensors_WooCommerce extends WSAL_AbstractSensor {
2170
  // Get editor link.
2171
  $edit_link = $this->GetEditorLink( $oldorder );
2172
 
2173
- // Log event.
2174
- $this->plugin->alerts->Trigger( 9040, array(
2175
  'OrderID' => $order_id,
2176
  'OrderTitle' => $this->get_order_title( $order_id ),
2177
  'OrderStatus' => $neworder->post_status,
2178
  $edit_link['name'] => $edit_link['value'],
2179
- ) );
 
 
 
2180
  }
2181
 
2182
  /**
2144
  $order_title = ( null !== $order_post && $order_post instanceof WP_Post ) ? $order_post->post_title : false;
2145
  $order_post = get_post( $order_id );
2146
  $edit_link = $this->GetEditorLink( $order_post );
2147
+ $event_data = array(
 
2148
  'OrderID' => $order_id,
2149
  'OrderTitle' => $this->get_order_title( $order ),
2150
  'OrderStatus' => $status_to,
2151
  $edit_link['name'] => $edit_link['value'],
2152
+ );
2153
+ $this->plugin->alerts->TriggerIf( 9036, $event_data, array( $this, 'must_not_contain_refund' ) );
2154
+ }
2155
+
2156
+ /**
2157
+ * Checks if event 9041 has triggered or if it will
2158
+ * trigger.
2159
+ *
2160
+ * @since 3.3.1.1
2161
+ *
2162
+ * @param WSAL_AlertManager $manager - Alert manager instance.
2163
+ * @return boolean
2164
+ */
2165
+ public function must_not_contain_refund( WSAL_AlertManager $manager ) {
2166
+ if ( $manager->WillOrHasTriggered( 9041 ) ) {
2167
+ return false;
2168
+ }
2169
+ return true;
2170
  }
2171
 
2172
  /**
2186
  // Get editor link.
2187
  $edit_link = $this->GetEditorLink( $oldorder );
2188
 
2189
+ // Set event data.
2190
+ $event_data = array(
2191
  'OrderID' => $order_id,
2192
  'OrderTitle' => $this->get_order_title( $order_id ),
2193
  'OrderStatus' => $neworder->post_status,
2194
  $edit_link['name'] => $edit_link['value'],
2195
+ );
2196
+
2197
+ // Log event.
2198
+ $this->plugin->alerts->TriggerIf( 9040, $event_data, array( $this, 'must_not_contain_refund' ) );
2199
  }
2200
 
2201
  /**
classes/Sensors/YoastSEO.php CHANGED
@@ -93,7 +93,7 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
93
  && ! ( isset( $post_array['action'] ) && 'autosave' === $post_array['action'] )
94
  ) {
95
  $this->post_id = intval( $post_array['post_ID'] );
96
- $this->post = get_post( $this->post_id );
97
  $this->set_post_seo_data();
98
  }
99
  }
@@ -104,14 +104,14 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
104
  private function set_post_seo_data() {
105
  // Set post SEO meta data.
106
  $this->post_seo_data = array(
107
- '_yoast_wpseo_title' => get_post_meta( $this->post_id, '_yoast_wpseo_title', true ),
108
- '_yoast_wpseo_metadesc' => get_post_meta( $this->post_id, '_yoast_wpseo_metadesc', true ),
109
- '_yoast_wpseo_focuskw' => get_post_meta( $this->post_id, '_yoast_wpseo_focuskw', true ),
110
- '_yst_is_cornerstone' => get_post_meta( $this->post_id, '_yst_is_cornerstone', true ),
111
- '_yoast_wpseo_meta-robots-noindex' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-noindex', true ),
112
  '_yoast_wpseo_meta-robots-nofollow' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-nofollow', true ),
113
- '_yoast_wpseo_meta-robots-adv' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-adv', true ),
114
- '_yoast_wpseo_canonical' => get_post_meta( $this->post_id, '_yoast_wpseo_canonical', true ),
115
  );
116
  }
117
 
@@ -154,9 +154,9 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
154
  * @return array $editor_link - Name and value link.
155
  */
156
  private function get_editor_link( $post_id ) {
157
- $value = get_edit_post_link( $post_id );
158
  $editor_link = array(
159
- 'name' => 'EditorLinkPost',
160
  'value' => $value,
161
  );
162
  return $editor_link;
@@ -168,19 +168,19 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
168
  protected function check_seo_data_change() {
169
  // Set filter input args.
170
  $filter_input_args = array(
171
- 'post_ID' => FILTER_VALIDATE_INT,
172
- '_wpnonce' => FILTER_SANITIZE_STRING,
173
- 'action' => FILTER_SANITIZE_STRING,
174
- 'yoast_wpseo_title' => FILTER_SANITIZE_STRING,
175
- 'yoast_wpseo_metadesc' => FILTER_SANITIZE_STRING,
176
- 'yoast_wpseo_focuskw' => FILTER_SANITIZE_STRING,
177
- '_yst_is_cornerstone' => FILTER_VALIDATE_INT,
178
- 'yoast_wpseo_meta-robots-noindex' => FILTER_VALIDATE_INT,
179
  'yoast_wpseo_meta-robots-nofollow' => FILTER_VALIDATE_INT,
180
- 'yoast_wpseo_meta-robots-adv' => array(
181
  'flags' => FILTER_REQUIRE_ARRAY,
182
  ),
183
- 'yoast_wpseo_canonical' => FILTER_VALIDATE_URL,
184
  );
185
 
186
  // Filter POST global array.
@@ -216,21 +216,25 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
216
  return;
217
  }
218
 
 
 
 
 
219
  // If title is changed then log alert.
220
  if ( $old_title !== $title ) {
221
  $editor_link = $this->get_editor_link( $this->post_id );
222
  $this->plugin->alerts->Trigger(
223
  8801, array(
224
- 'PostID' => $this->post->ID,
225
- 'PostType' => $this->post->post_type,
226
- 'PostTitle' => $this->post->post_title,
227
- 'PostStatus' => $this->post->post_status,
228
- 'PostDate' => $this->post->post_date,
229
- 'PostUrl' => get_permalink( $this->post->ID ),
230
- 'OldSEOTitle' => $old_title,
231
- 'NewSEOTitle' => $title,
232
  $editor_link['name'] => $editor_link['value'],
233
- 'ReportText' => $old_title . '|' . $title,
234
  )
235
  );
236
  }
@@ -243,7 +247,8 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
243
  */
244
  protected function check_desc_change( $desc ) {
245
  // Get old desc value.
246
- $old_desc = $this->get_post_seo_data( 'metadesc' );
 
247
 
248
  // If old and new values are empty then don't log the alert.
249
  if ( empty( $old_desc ) && empty( $desc ) ) {
@@ -255,16 +260,16 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
255
  $editor_link = $this->get_editor_link( $this->post_id );
256
  $this->plugin->alerts->Trigger(
257
  8802, array(
258
- 'PostID' => $this->post->ID,
259
- 'PostType' => $this->post->post_type,
260
- 'PostTitle' => $this->post->post_title,
261
- 'PostStatus' => $this->post->post_status,
262
- 'PostDate' => $this->post->post_date,
263
- 'PostUrl' => get_permalink( $this->post->ID ),
264
- 'old_desc' => $old_desc,
265
- 'new_desc' => $desc,
266
  $editor_link['name'] => $editor_link['value'],
267
- 'ReportText' => $old_desc . '|' . $desc,
268
  )
269
  );
270
  }
@@ -794,4 +799,3 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
794
  }
795
  }
796
  }
797
-
93
  && ! ( isset( $post_array['action'] ) && 'autosave' === $post_array['action'] )
94
  ) {
95
  $this->post_id = intval( $post_array['post_ID'] );
96
+ $this->post = get_post( $this->post_id );
97
  $this->set_post_seo_data();
98
  }
99
  }
104
  private function set_post_seo_data() {
105
  // Set post SEO meta data.
106
  $this->post_seo_data = array(
107
+ '_yoast_wpseo_title' => get_post_meta( $this->post_id, '_yoast_wpseo_title', true ),
108
+ '_yoast_wpseo_metadesc' => get_post_meta( $this->post_id, '_yoast_wpseo_metadesc', true ),
109
+ '_yoast_wpseo_focuskw' => get_post_meta( $this->post_id, '_yoast_wpseo_focuskw', true ),
110
+ '_yst_is_cornerstone' => get_post_meta( $this->post_id, '_yst_is_cornerstone', true ),
111
+ '_yoast_wpseo_meta-robots-noindex' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-noindex', true ),
112
  '_yoast_wpseo_meta-robots-nofollow' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-nofollow', true ),
113
+ '_yoast_wpseo_meta-robots-adv' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-adv', true ),
114
+ '_yoast_wpseo_canonical' => get_post_meta( $this->post_id, '_yoast_wpseo_canonical', true ),
115
  );
116
  }
117
 
154
  * @return array $editor_link - Name and value link.
155
  */
156
  private function get_editor_link( $post_id ) {
157
+ $value = get_edit_post_link( $post_id );
158
  $editor_link = array(
159
+ 'name' => 'EditorLinkPost',
160
  'value' => $value,
161
  );
162
  return $editor_link;
168
  protected function check_seo_data_change() {
169
  // Set filter input args.
170
  $filter_input_args = array(
171
+ 'post_ID' => FILTER_VALIDATE_INT,
172
+ '_wpnonce' => FILTER_SANITIZE_STRING,
173
+ 'action' => FILTER_SANITIZE_STRING,
174
+ 'yoast_wpseo_title' => FILTER_SANITIZE_STRING,
175
+ 'yoast_wpseo_metadesc' => FILTER_SANITIZE_STRING,
176
+ 'yoast_wpseo_focuskw' => FILTER_SANITIZE_STRING,
177
+ '_yst_is_cornerstone' => FILTER_VALIDATE_INT,
178
+ 'yoast_wpseo_meta-robots-noindex' => FILTER_VALIDATE_INT,
179
  'yoast_wpseo_meta-robots-nofollow' => FILTER_VALIDATE_INT,
180
+ 'yoast_wpseo_meta-robots-adv' => array(
181
  'flags' => FILTER_REQUIRE_ARRAY,
182
  ),
183
+ 'yoast_wpseo_canonical' => FILTER_VALIDATE_URL,
184
  );
185
 
186
  // Filter POST global array.
216
  return;
217
  }
218
 
219
+ // Remove whitespaces at the ends of the titles.
220
+ $old_title = trim( $old_title );
221
+ $title = trim( $title );
222
+
223
  // If title is changed then log alert.
224
  if ( $old_title !== $title ) {
225
  $editor_link = $this->get_editor_link( $this->post_id );
226
  $this->plugin->alerts->Trigger(
227
  8801, array(
228
+ 'PostID' => $this->post->ID,
229
+ 'PostType' => $this->post->post_type,
230
+ 'PostTitle' => $this->post->post_title,
231
+ 'PostStatus' => $this->post->post_status,
232
+ 'PostDate' => $this->post->post_date,
233
+ 'PostUrl' => get_permalink( $this->post->ID ),
234
+ 'OldSEOTitle' => $old_title,
235
+ 'NewSEOTitle' => $title,
236
  $editor_link['name'] => $editor_link['value'],
237
+ 'ReportText' => $old_title . '|' . $title,
238
  )
239
  );
240
  }
247
  */
248
  protected function check_desc_change( $desc ) {
249
  // Get old desc value.
250
+ $old_desc = esc_html( $this->get_post_seo_data( 'metadesc' ) );
251
+ $desc = esc_html( $desc );
252
 
253
  // If old and new values are empty then don't log the alert.
254
  if ( empty( $old_desc ) && empty( $desc ) ) {
260
  $editor_link = $this->get_editor_link( $this->post_id );
261
  $this->plugin->alerts->Trigger(
262
  8802, array(
263
+ 'PostID' => $this->post->ID,
264
+ 'PostType' => $this->post->post_type,
265
+ 'PostTitle' => $this->post->post_title,
266
+ 'PostStatus' => $this->post->post_status,
267
+ 'PostDate' => $this->post->post_date,
268
+ 'PostUrl' => get_permalink( $this->post->ID ),
269
+ 'old_desc' => $old_desc,
270
+ 'new_desc' => $desc,
271
  $editor_link['name'] => $editor_link['value'],
272
+ 'ReportText' => $old_desc . '|' . $desc,
273
  )
274
  );
275
  }
799
  }
800
  }
801
  }
 
classes/Settings.php CHANGED
@@ -1917,4 +1917,44 @@ class WSAL_Settings {
1917
  return '*' . esc_html( $value ) . '*';
1918
  }
1919
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1920
  }
1917
  return '*' . esc_html( $value ) . '*';
1918
  }
1919
  }
1920
+
1921
+ /**
1922
+ * Checks Infinite Scroll.
1923
+ *
1924
+ * Returns true if infinite scroll is enabled.
1925
+ *
1926
+ * @since 3.3.1.1
1927
+ *
1928
+ * @return boolean
1929
+ */
1930
+ public function is_infinite_scroll() {
1931
+ return 'infinite-scroll' === $this->get_events_type_nav() ? true : false;
1932
+ }
1933
+
1934
+ /**
1935
+ * Checks Events Navigation Type.
1936
+ *
1937
+ * Returns type of navigation for events log viewer.
1938
+ *
1939
+ * @since 3.3.1.1
1940
+ *
1941
+ * @return string
1942
+ */
1943
+ public function get_events_type_nav() {
1944
+ return $this->_plugin->GetGlobalOption( 'events-nav-type', 'infinite-scroll' );
1945
+ }
1946
+
1947
+ /**
1948
+ * Sets Events Navigation Type.
1949
+ *
1950
+ * Sets type of navigation for events log viewer.
1951
+ *
1952
+ * @since 3.3.1.1
1953
+ *
1954
+ * @param string $nav_type - Navigation type.
1955
+ * @return string
1956
+ */
1957
+ public function set_events_type_nav( $nav_type ) {
1958
+ $this->_plugin->SetGlobalOption( 'events-nav-type', $nav_type );
1959
+ }
1960
  }
classes/Views/AuditLog.php CHANGED
@@ -45,6 +45,15 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
45
  */
46
  private $adverts;
47
 
 
 
 
 
 
 
 
 
 
48
  /**
49
  * Method: Constructor
50
  *
@@ -69,6 +78,10 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
69
  add_filter( 'wsal_pointers_toplevel_page_wsal-auditlog', array( $this, 'register_privacy_pointer' ), 10, 1 );
70
  add_action( 'admin_init', array( $this, 'handle_form_submission' ) );
71
 
 
 
 
 
72
  // Check plugin version for to dismiss the notice only until upgrade.
73
  $this->_version = WSAL_VERSION;
74
 
@@ -270,8 +283,27 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
270
  * Method: Get View.
271
  */
272
  protected function GetListView() {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
273
  if ( is_null( $this->_listview ) ) {
274
- $this->_listview = new WSAL_AuditLogListView( $this->_plugin );
275
  }
276
  return $this->_listview;
277
  }
@@ -345,23 +377,34 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
345
  check_admin_referer( 'bulk-logs' );
346
  }
347
 
348
- // @codingStandardsIgnoreStart
349
- $wsal_page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : false; // Admin WSAL Page.
350
- $site_id = isset( $_GET['wsal-cbid'] ) ? (int) sanitize_text_field( $_GET['wsal-cbid'] ) : false; // Site id.
351
- $search_term = ( isset( $_REQUEST['s'] ) && ! empty( $_REQUEST['s'] ) ) ? trim( sanitize_text_field( $_REQUEST['s'] ) ) : false;
352
- $search_filters = ( isset( $_REQUEST['Filters'] ) && is_array( $_REQUEST['Filters'] ) ) ? array_map( 'sanitize_text_field', $_REQUEST['Filters'] ) : false;
353
- // @codingStandardsIgnoreEnd
354
-
355
  $this->GetListView()->prepare_items();
356
-
357
  ?>
358
  <form id="audit-log-viewer" method="get">
359
  <div id="audit-log-viewer-content">
360
- <input type="hidden" name="page" value="<?php echo esc_attr( $wsal_page ); ?>" />
361
- <input type="hidden" id="wsal-cbid" name="wsal-cbid" value="<?php echo esc_attr( empty( $site_id ) ? '0' : $site_id ); ?>" />
362
- <?php do_action( 'wsal_auditlog_before_view', $this->GetListView() ); ?>
363
- <?php $this->GetListView()->display(); ?>
364
- <?php do_action( 'wsal_auditlog_after_view', $this->GetListView() ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  </div>
366
  </form>
367
 
@@ -403,7 +446,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
403
 
404
  <?php
405
  if ( class_exists( 'WSAL_SearchExtension' ) &&
406
- ( ! empty( $search_filters ) || ( ! empty( $search_term ) && trim( $search_term ) ) ) ) :
407
  ?>
408
  <script type="text/javascript">
409
  jQuery(document).ready( function() {
@@ -441,7 +484,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
441
  'searchnone' => __( 'No Results', 'wp-security-audit-log' ),
442
  ),
443
  'autorefresh' => array(
444
- 'enabled' => $this->_plugin->settings->IsRefreshAlertsEnabled(),
445
  'token' => $this->GetListView()->get_total_items(),
446
  ),
447
  )
@@ -519,7 +562,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
519
  $is_archive = false;
520
  if ( $this->_plugin->settings->IsArchivingEnabled() ) {
521
  $selected_db = get_transient( 'wsal_wp_selected_db' );
522
- if ( $selected_db && 'archive' == $selected_db ) {
523
  $is_archive = true;
524
  }
525
  }
@@ -820,7 +863,8 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
820
  'darktooltip', // Identifier.
821
  $this->_plugin->GetBaseUrl() . '/js/jquery.darktooltip.js', // Script location.
822
  array( 'jquery' ), // Depends on jQuery.
823
- '0.4.0' // Script version.
 
824
  );
825
 
826
  // Remodal script.
@@ -832,15 +876,29 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
832
  true
833
  );
834
 
 
835
  wp_enqueue_script( 'suggest' );
836
 
837
  // Audit log script.
838
- wp_enqueue_script(
839
  'auditlog',
840
  $this->_plugin->GetBaseUrl() . '/js/auditlog.js',
841
  array(),
842
- filemtime( $this->_plugin->GetBaseDir() . '/js/auditlog.js' )
 
 
 
 
 
 
 
 
 
 
 
843
  );
 
 
844
  }
845
 
846
  /**
@@ -1062,4 +1120,34 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
1062
  $this->_plugin->SetGlobalOption( 'dismissed-privacy-notice', $dismissed );
1063
  wp_die( 1 );
1064
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1065
  }
45
  */
46
  private $adverts;
47
 
48
+ /**
49
+ * Audit Log View Arguments.
50
+ *
51
+ * @since 3.3.1.1
52
+ *
53
+ * @var stdClass
54
+ */
55
+ private $page_args;
56
+
57
  /**
58
  * Method: Constructor
59
  *
78
  add_filter( 'wsal_pointers_toplevel_page_wsal-auditlog', array( $this, 'register_privacy_pointer' ), 10, 1 );
79
  add_action( 'admin_init', array( $this, 'handle_form_submission' ) );
80
 
81
+ if ( $this->_plugin->settings->is_infinite_scroll() ) {
82
+ add_action( 'wp_ajax_wsal_infinite_scroll_events', array( $this, 'infinite_scroll_events' ) );
83
+ }
84
+
85
  // Check plugin version for to dismiss the notice only until upgrade.
86
  $this->_version = WSAL_VERSION;
87
 
283
  * Method: Get View.
284
  */
285
  protected function GetListView() {
286
+ // Set page arguments.
287
+ if ( ! $this->page_args ) {
288
+ $this->page_args = new stdClass();
289
+
290
+ // @codingStandardsIgnoreStart
291
+ $this->page_args->page = isset( $_REQUEST['page'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['page'] ) ) : false;
292
+ $this->page_args->site_id = isset( $_REQUEST['wsal-cbid'] ) ? (int) sanitize_text_field( wp_unslash( $_REQUEST['wsal-cbid'] ) ) : false;
293
+
294
+ // Order arguments.
295
+ $this->page_args->order_by = isset( $_REQUEST['orderby'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['orderby'] ) ) : false;
296
+ $this->page_args->order = isset( $_REQUEST['order'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ) : false;
297
+
298
+ // Search arguments.
299
+ $this->page_args->search_term = ( isset( $_REQUEST['s'] ) && ! empty( $_REQUEST['s'] ) ) ? trim( sanitize_text_field( wp_unslash( $_REQUEST['s'] ) ) ) : false;
300
+ $this->page_args->search_filters = ( isset( $_REQUEST['filters'] ) && is_array( $_REQUEST['filters'] ) ) ? array_map( 'sanitize_text_field', wp_unslash( $_REQUEST['filters'] ) ) : false;
301
+ // @codingStandardsIgnoreEnd
302
+ }
303
+
304
+ // Set events listing view class.
305
  if ( is_null( $this->_listview ) ) {
306
+ $this->_listview = new WSAL_AuditLogListView( $this->_plugin, $this->page_args );
307
  }
308
  return $this->_listview;
309
  }
377
  check_admin_referer( 'bulk-logs' );
378
  }
379
 
 
 
 
 
 
 
 
380
  $this->GetListView()->prepare_items();
 
381
  ?>
382
  <form id="audit-log-viewer" method="get">
383
  <div id="audit-log-viewer-content">
384
+ <input type="hidden" name="page" value="<?php echo esc_attr( $this->page_args->page ); ?>" />
385
+ <input type="hidden" id="wsal-cbid" name="wsal-cbid" value="<?php echo esc_attr( empty( $this->page_args->site_id ) ? '0' : $this->page_args->site_id ); ?>" />
386
+ <?php
387
+ /**
388
+ * Hook: `wsal_auditlog_before_view`
389
+ *
390
+ * This action hook is triggered before displaying the audit log view.
391
+ *
392
+ * @param WSAL_AuditLogListView $this->_listview - Audit log list view object.
393
+ */
394
+ do_action( 'wsal_auditlog_before_view', $this->GetListView() );
395
+
396
+ // Display the audit log list.
397
+ $this->GetListView()->display();
398
+
399
+ /**
400
+ * Hook: `wsal_auditlog_after_view`
401
+ *
402
+ * This action hook is triggered after displaying the audit log view.
403
+ *
404
+ * @param WSAL_AuditLogListView $this->_listview - Audit log list view object.
405
+ */
406
+ do_action( 'wsal_auditlog_after_view', $this->GetListView() );
407
+ ?>
408
  </div>
409
  </form>
410
 
446
 
447
  <?php
448
  if ( class_exists( 'WSAL_SearchExtension' ) &&
449
+ ( ! empty( $this->page_args->search_filters ) || ( ! empty( $this->page_args->search_term ) && trim( $this->page_args->search_term ) ) ) ) :
450
  ?>
451
  <script type="text/javascript">
452
  jQuery(document).ready( function() {
484
  'searchnone' => __( 'No Results', 'wp-security-audit-log' ),
485
  ),
486
  'autorefresh' => array(
487
+ 'enabled' => ! $this->_plugin->settings->is_infinite_scroll() ? $this->_plugin->settings->IsRefreshAlertsEnabled() : false,
488
  'token' => $this->GetListView()->get_total_items(),
489
  ),
490
  )
562
  $is_archive = false;
563
  if ( $this->_plugin->settings->IsArchivingEnabled() ) {
564
  $selected_db = get_transient( 'wsal_wp_selected_db' );
565
+ if ( $selected_db && 'archive' === $selected_db ) {
566
  $is_archive = true;
567
  }
568
  }
863
  'darktooltip', // Identifier.
864
  $this->_plugin->GetBaseUrl() . '/js/jquery.darktooltip.js', // Script location.
865
  array( 'jquery' ), // Depends on jQuery.
866
+ '0.4.0', // Script version.
867
+ true
868
  );
869
 
870
  // Remodal script.
876
  true
877
  );
878
 
879
+ // WP Suggest Script.
880
  wp_enqueue_script( 'suggest' );
881
 
882
  // Audit log script.
883
+ wp_register_script(
884
  'auditlog',
885
  $this->_plugin->GetBaseUrl() . '/js/auditlog.js',
886
  array(),
887
+ filemtime( $this->_plugin->GetBaseDir() . '/js/auditlog.js' ),
888
+ true
889
+ );
890
+ $audit_log_data = array(
891
+ 'page' => isset( $this->page_args->page ) ? $this->page_args->page : false,
892
+ 'siteId' => isset( $this->page_args->site_id ) ? $this->page_args->site_id : false,
893
+ 'orderBy' => isset( $this->page_args->order_by ) ? $this->page_args->order_by : false,
894
+ 'order' => isset( $this->page_args->order ) ? $this->page_args->order : false,
895
+ 'searchTerm' => isset( $this->page_args->search_term ) ? $this->page_args->search_term : false,
896
+ 'searchFilters' => isset( $this->page_args->search_filters ) ? $this->page_args->search_filters : false,
897
+ 'viewerNonce' => wp_create_nonce( 'wsal_auditlog_viewer_nonce' ),
898
+ 'infiniteScroll' => $this->_plugin->settings->is_infinite_scroll(),
899
  );
900
+ wp_localize_script( 'auditlog', 'wsalAuditLogArgs', $audit_log_data );
901
+ wp_enqueue_script( 'auditlog' );
902
  }
903
 
904
  /**
1120
  $this->_plugin->SetGlobalOption( 'dismissed-privacy-notice', $dismissed );
1121
  wp_die( 1 );
1122
  }
1123
+
1124
+ /**
1125
+ * Infinite Scroll Events AJAX Hanlder.
1126
+ *
1127
+ * @since 3.3.1.1
1128
+ */
1129
+ public function infinite_scroll_events() {
1130
+ // Check user permissions.
1131
+ if ( ! $this->_plugin->settings->CurrentUserCan( 'view' ) ) {
1132
+ die( esc_html__( 'Access Denied', 'wp-security-audit-log' ) );
1133
+ }
1134
+
1135
+ // Verify nonce.
1136
+ if ( isset( $_POST['wsal_viewer_security'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['wsal_viewer_security'] ) ), 'wsal_auditlog_viewer_nonce' ) ) {
1137
+ // Get $_POST arguments.
1138
+ $paged = isset( $_POST['page_number'] ) ? sanitize_text_field( wp_unslash( $_POST['page_number'] ) ) : 0;
1139
+ $per_page = 25;
1140
+
1141
+ // Query events.
1142
+ $events_query = $this->GetListView()->query_events( $paged );
1143
+ if ( isset( $events_query['items'] ) ) {
1144
+ foreach ( $events_query['items'] as $event ) {
1145
+ $this->GetListView()->single_row( $event );
1146
+ }
1147
+ }
1148
+ exit();
1149
+ } else {
1150
+ die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
1151
+ }
1152
+ }
1153
  }
classes/Views/Settings.php CHANGED
@@ -442,6 +442,40 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
442
  ?>
443
  <p class="description"><?php echo wp_kses( __( 'Need help with setting up the plugin to meet your requirements? <a href="https://www.wpsecurityauditlog.com/contact/" target="_blank">Schedule a 20 minutes consultation and setup call</a> with our experts for just $50.', 'wp-security-audit-log' ), $this->_plugin->allowed_html_tags ); ?></p>
444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445
  <h3><?php esc_html_e( 'Display latest events widget in Dashboard & Admin bar', 'wp-security-audit-log' ); ?></h3>
446
  <p class="description">
447
  <?php
@@ -801,6 +835,7 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
801
  // Get $_POST global array.
802
  $post_array = filter_input_array( INPUT_POST );
803
 
 
804
  $this->_plugin->settings->set_use_email( sanitize_text_field( $post_array['use-email'] ) );
805
  $this->_plugin->settings->SetFromEmail( sanitize_email( $post_array['FromEmail'] ) );
806
  $this->_plugin->settings->SetDisplayName( sanitize_text_field( $post_array['DisplayName'] ) );
@@ -1553,21 +1588,16 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
1553
  <td>
1554
  <input type="hidden" id="wsal-scan-now-nonce" name="wsal_scan_now_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-scan-now' ) ); ?>" />
1555
  <input type="hidden" id="wsal-stop-scan-nonce" name="wsal_stop_scan_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-stop-scan' ) ); ?>" />
1556
- <?php if ( ! $this->scan_settings['scan_in_progress'] ) : ?>
1557
- <a href="javascript:;" class="button button-primary" id="wsal-scan-now">
1558
- <?php esc_attr_e( 'Scan Now', 'wp-security-audit-log' ); ?>
1559
- </a>
1560
- <a href="javascript:;" class="button button-secondary" id="wsal-stop-scan" disabled>
1561
- <?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>
1562
- </a>
1563
- <?php else : ?>
1564
- <a href="javascript:;" class="button button-primary" id="wsal-scan-now" disabled>
1565
- <?php esc_attr_e( 'Scan in Progress', 'wp-security-audit-log' ); ?>
1566
- </a>
1567
- <a href="javascript:;" class="button button-ui-primary" id="wsal-stop-scan">
1568
- <?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>
1569
- </a>
1570
  <!-- Scan in progress -->
 
 
 
1571
  <?php endif; ?>
1572
  </td>
1573
  </tr>
442
  ?>
443
  <p class="description"><?php echo wp_kses( __( 'Need help with setting up the plugin to meet your requirements? <a href="https://www.wpsecurityauditlog.com/contact/" target="_blank">Schedule a 20 minutes consultation and setup call</a> with our experts for just $50.', 'wp-security-audit-log' ), $this->_plugin->allowed_html_tags ); ?></p>
444
 
445
+ <h3><?php esc_html_e( 'Use infinite scroll or pagination for the event viewer?', 'wp-security-audit-log' ); ?></h3>
446
+ <p class="description">
447
+ <?php
448
+ echo sprintf(
449
+ /* translators: Learn more link. */
450
+ esc_html__( 'When using infinite scroll the event viewer and search results %s load up much faster and require less resources.', 'wp-security-audit-log' ),
451
+ '<a href="https://www.wpsecurityauditlog.com/premium-features/search-filters-wordpress-activity-log/" target="_blank">' . esc_html__( '(Premium feature)', 'wp-security-audit-log' ) . '</a>'
452
+ );
453
+ ?>
454
+ </p>
455
+ <table class="form-table wsal-tab">
456
+ <tbody>
457
+ <tr>
458
+ <th><label for="infinite-scroll"><?php esc_html_e( 'Select event viewer view type:', 'wp-security-audit-log' ); ?></label></th>
459
+ <td>
460
+ <fieldset>
461
+ <label for="infinite-scroll">
462
+ <input type="radio" name="events-type-nav" value="infinite-scroll" id="infinite-scroll" <?php checked( $this->_plugin->settings->get_events_type_nav(), 'infinite-scroll' ); ?> />
463
+ <?php esc_html_e( 'Infinite Scroll (Recommended)', 'wp-security-audit-log' ); ?>
464
+ </label>
465
+ <br/>
466
+ <label for="pagination">
467
+ <input type="radio" name="events-type-nav" value="pagination" id="pagination" <?php checked( $this->_plugin->settings->get_events_type_nav(), 'pagination' ); ?> />
468
+ <?php esc_html_e( 'Pagination', 'wp-security-audit-log' ); ?>
469
+ </label>
470
+ <br />
471
+ </fieldset>
472
+ </td>
473
+ </tr>
474
+ <!-- / Reverse Proxy / Firewall Options -->
475
+ </tbody>
476
+ </table>
477
+ <!-- Reverse Proxy -->
478
+
479
  <h3><?php esc_html_e( 'Display latest events widget in Dashboard & Admin bar', 'wp-security-audit-log' ); ?></h3>
480
  <p class="description">
481
  <?php
835
  // Get $_POST global array.
836
  $post_array = filter_input_array( INPUT_POST );
837
 
838
+ $this->_plugin->settings->set_events_type_nav( sanitize_text_field( $post_array['events-type-nav'] ) );
839
  $this->_plugin->settings->set_use_email( sanitize_text_field( $post_array['use-email'] ) );
840
  $this->_plugin->settings->SetFromEmail( sanitize_email( $post_array['FromEmail'] ) );
841
  $this->_plugin->settings->SetDisplayName( sanitize_text_field( $post_array['DisplayName'] ) );
1588
  <td>
1589
  <input type="hidden" id="wsal-scan-now-nonce" name="wsal_scan_now_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-scan-now' ) ); ?>" />
1590
  <input type="hidden" id="wsal-stop-scan-nonce" name="wsal_stop_scan_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-stop-scan' ) ); ?>" />
1591
+ <?php if ( 'enable' === $this->scan_settings['scan_file_changes'] && ! $this->scan_settings['scan_in_progress'] ) : ?>
1592
+ <input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan Now', 'wp-security-audit-log' ); ?>">
1593
+ <input type="button" class="button button-secondary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>" disabled>
1594
+ <?php elseif ( 'enable' === $this->scan_settings['scan_file_changes'] && $this->scan_settings['scan_in_progress'] ) : ?>
1595
+ <input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan in Progress', 'wp-security-audit-log' ); ?>" disabled>
1596
+ <input type="button" class="button button-ui-primary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>">
 
 
 
 
 
 
 
 
1597
  <!-- Scan in progress -->
1598
+ <?php else : ?>
1599
+ <input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan Now', 'wp-security-audit-log' ); ?>" disabled>
1600
+ <input type="button" class="button button-secondary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>" disabled>
1601
  <?php endif; ?>
1602
  </td>
1603
  </tr>
classes/Views/ToggleAlerts.php CHANGED
@@ -485,7 +485,20 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView {
485
  />
486
  </th>
487
  <td><?php echo esc_html( str_pad( $alert->type, 4, '0', STR_PAD_LEFT ) ); ?></td>
488
- <td><?php echo esc_html( $this->_plugin->constants->GetConstantBy( 'value', $alert->code )->name ); ?></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
489
  <td><?php echo esc_html( $alert->desc ); ?></td>
490
  </tr>
491
  <?php
485
  />
486
  </th>
487
  <td><?php echo esc_html( str_pad( $alert->type, 4, '0', STR_PAD_LEFT ) ); ?></td>
488
+ <td>
489
+ <?php
490
+ $severity_obj = $this->_plugin->constants->GetConstantBy( 'value', $alert->code );
491
+ if ( 'E_CRITICAL' === $severity_obj->name ) {
492
+ esc_html_e( 'Critical', 'wp-security-audit-log' );
493
+ } elseif ( 'E_WARNING' === $severity_obj->name ) {
494
+ esc_html_e( 'Warning', 'wp-security-audit-log' );
495
+ } elseif ( 'E_NOTICE' === $severity_obj->name ) {
496
+ esc_html_e( 'Notification', 'wp-security-audit-log' );
497
+ } else {
498
+ esc_html_e( 'Notification', 'wp-security-audit-log' );
499
+ }
500
+ ?>
501
+ </td>
502
  <td><?php echo esc_html( $alert->desc ); ?></td>
503
  </tr>
504
  <?php
classes/WidgetManager.php CHANGED
@@ -73,13 +73,9 @@ class WSAL_WidgetManager {
73
  $results = $query->getAdapter()->Execute( $query );
74
 
75
  ?><div>
76
- <?php
77
- if ( ! count( $results ) ) {
78
- ?>
79
- <p><?php esc_html_e( 'No alerts found.', 'wp-security-audit-log' ); ?></p>
80
- <?php
81
- } else {
82
- ?>
83
  <table class="wp-list-table widefat" cellspacing="0" cellpadding="0"
84
  style="display: block; overflow-x: auto;">
85
  <thead>
@@ -89,8 +85,8 @@ class WSAL_WidgetManager {
89
  <tbody>
90
  <?php
91
  $url = 'admin.php?page=' . $this->_plugin->views->views[0]->GetSafeViewName();
92
- $fmt = array( new WSAL_AuditLogListView( $this->_plugin ), 'meta_formatter' );
93
- foreach ( $results as $entry ) {
94
  ?>
95
  <tr>
96
  <td>
@@ -105,14 +101,10 @@ class WSAL_WidgetManager {
105
  </a>
106
  </td>
107
  </tr>
108
- <?php
109
- }
110
- ?>
111
  </tbody>
112
  </table>
113
- <?php
114
- }
115
- ?>
116
  </div>
117
  <?php
118
  }
73
  $results = $query->getAdapter()->Execute( $query );
74
 
75
  ?><div>
76
+ <?php if ( ! count( $results ) ) : ?>
77
+ <p><?php esc_html_e( 'No alerts found.', 'wp-security-audit-log' ); ?></p>
78
+ <?php else : ?>
 
 
 
 
79
  <table class="wp-list-table widefat" cellspacing="0" cellpadding="0"
80
  style="display: block; overflow-x: auto;">
81
  <thead>
85
  <tbody>
86
  <?php
87
  $url = 'admin.php?page=' . $this->_plugin->views->views[0]->GetSafeViewName();
88
+ $fmt = array( $this->_plugin->settings, 'meta_formatter' );
89
+ foreach ( $results as $entry ) :
90
  ?>
91
  <tr>
92
  <td>
101
  </a>
102
  </td>
103
  </tr>
104
+ <?php endforeach; ?>
 
 
105
  </tbody>
106
  </table>
107
+ <?php endif; ?>
 
 
108
  </div>
109
  <?php
110
  }
css/auditlog.css CHANGED
@@ -25,7 +25,7 @@
25
  .wsal-ssa input,
26
  .wsal-ssa select {
27
  margin-bottom: 6px;
28
- width: 120px;
29
  margin-left: 16px;
30
  }
31
 
@@ -337,3 +337,63 @@ div.wsal_notice__wrapper p {
337
  display: flex;
338
  align-items: center;
339
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  .wsal-ssa input,
26
  .wsal-ssa select {
27
  margin-bottom: 6px;
28
+ /* width: 120px; */
29
  margin-left: 16px;
30
  }
31
 
337
  display: flex;
338
  align-items: center;
339
  }
340
+
341
+ #wsal-event-loader {
342
+ text-align: center;
343
+ }
344
+
345
+ .wsal-lds-ellipsis {
346
+ display: inline-block;
347
+ position: relative;
348
+ width: 64px;
349
+ height: 64px;
350
+ }
351
+ .wsal-lds-ellipsis div {
352
+ position: absolute;
353
+ top: 27px;
354
+ width: 11px;
355
+ height: 11px;
356
+ border-radius: 50%;
357
+ background: #009344;
358
+ animation-timing-function: cubic-bezier(0, 1, 1, 0);
359
+ }
360
+ .wsal-lds-ellipsis div:nth-child(1) {
361
+ left: 6px;
362
+ animation: wsal-lds-ellipsis1 0.6s infinite;
363
+ }
364
+ .wsal-lds-ellipsis div:nth-child(2) {
365
+ left: 6px;
366
+ animation: wsal-lds-ellipsis2 0.6s infinite;
367
+ }
368
+ .wsal-lds-ellipsis div:nth-child(3) {
369
+ left: 26px;
370
+ animation: wsal-lds-ellipsis2 0.6s infinite;
371
+ }
372
+ .wsal-lds-ellipsis div:nth-child(4) {
373
+ left: 45px;
374
+ animation: wsal-lds-ellipsis3 0.6s infinite;
375
+ }
376
+ @keyframes wsal-lds-ellipsis1 {
377
+ 0% {
378
+ transform: scale(0);
379
+ }
380
+ 100% {
381
+ transform: scale(1);
382
+ }
383
+ }
384
+ @keyframes wsal-lds-ellipsis3 {
385
+ 0% {
386
+ transform: scale(1);
387
+ }
388
+ 100% {
389
+ transform: scale(0);
390
+ }
391
+ }
392
+ @keyframes wsal-lds-ellipsis2 {
393
+ 0% {
394
+ transform: translate(0, 0);
395
+ }
396
+ 100% {
397
+ transform: translate(19px, 0);
398
+ }
399
+ }
defaults.php CHANGED
@@ -537,7 +537,7 @@ function wsaldefaults_wsal_init() {
537
  array( 9072, E_NOTICE, __( 'User opened a product in the editor', 'wp-security-audit-log' ), __( 'Opened the %ProductStatus% product page %ProductTitle% in editor. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
538
  array( 9073, E_NOTICE, __( 'User viewed a product', 'wp-security-audit-log' ), __( 'Viewed the %ProductStatus% product page %ProductTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
539
  array( 9077, E_NOTICE, __( 'User renamed a product', 'wp-security-audit-log' ), __( 'Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
540
- array( 9007, E_NOTICE, __( 'User changed the Product Data of a product', 'wp-security-audit-log' ), __( 'Changed the Product Type of the product %OldType% to %NewType%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
541
  array( 9016, E_WARNING, __( 'User changed type of a price', 'wp-security-audit-log' ), __( 'Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from %OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
542
  array( 9017, E_WARNING, __( 'User changed the SKU of a product', 'wp-security-audit-log' ), __( 'Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% to %NewSku%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
543
  array( 9018, E_CRITICAL, __( 'User changed the stock status of a product', 'wp-security-audit-log' ), __( 'Changed the stock status of the %ProductStatus% product %ProductTitle% from %OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
537
  array( 9072, E_NOTICE, __( 'User opened a product in the editor', 'wp-security-audit-log' ), __( 'Opened the %ProductStatus% product page %ProductTitle% in editor. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
538
  array( 9073, E_NOTICE, __( 'User viewed a product', 'wp-security-audit-log' ), __( 'Viewed the %ProductStatus% product page %ProductTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
539
  array( 9077, E_NOTICE, __( 'User renamed a product', 'wp-security-audit-log' ), __( 'Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
540
+ array( 9007, E_NOTICE, __( 'User changed the Product Data of a product', 'wp-security-audit-log' ), __( 'Changed the Product Type of the %ProductStatus% product %ProductTitle% from %OldType% to %NewType%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
541
  array( 9016, E_WARNING, __( 'User changed type of a price', 'wp-security-audit-log' ), __( 'Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from %OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
542
  array( 9017, E_WARNING, __( 'User changed the SKU of a product', 'wp-security-audit-log' ), __( 'Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% to %NewSku%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
543
  array( 9018, E_CRITICAL, __( 'User changed the stock status of a product', 'wp-security-audit-log' ), __( 'Changed the stock status of the %ProductStatus% product %ProductTitle% from %OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
js/auditlog.js CHANGED
@@ -417,6 +417,42 @@ function wsal_dismiss_advert(element) {
417
  } );
418
  }
419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
420
  jQuery( document ).ready( function() {
421
 
422
  /**
@@ -441,4 +477,19 @@ jQuery( document ).ready( function() {
441
  }
442
  });
443
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
444
  });
417
  } );
418
  }
419
 
420
+ /**
421
+ * Load Events for Infinite Scroll.
422
+ *
423
+ * @since 3.3.1.1
424
+ *
425
+ * @param {integer} pageNumber - Log viewer page number.
426
+ */
427
+ function wsalLoadEvents( pageNumber ) {
428
+ jQuery( '#wsal-event-loader' ).show( 'fast' );
429
+ jQuery.ajax( {
430
+ type:'POST',
431
+ url: ajaxurl,
432
+ data: {
433
+ action: 'wsal_infinite_scroll_events',
434
+ wsal_viewer_security: wsalAuditLogArgs.viewerNonce,
435
+ page_number: pageNumber,
436
+ page : wsalAuditLogArgs.page,
437
+ 'wsal-cbid' : wsalAuditLogArgs.siteId,
438
+ orderby : wsalAuditLogArgs.orderBy,
439
+ order : wsalAuditLogArgs.order,
440
+ s : wsalAuditLogArgs.searchTerm,
441
+ filters : wsalAuditLogArgs.searchFilters,
442
+ },
443
+ success: function( html ) {
444
+ jQuery( '#wsal-event-loader' ).hide( '1000' );
445
+ jQuery( '#audit-log-viewer #the-list' ).append( html ); // This will be the div where our content will be loaded.
446
+ },
447
+ error: function( xhr, textStatus, error ) {
448
+ console.log( xhr.statusText );
449
+ console.log( textStatus );
450
+ console.log( error );
451
+ }
452
+ });
453
+ return false;
454
+ }
455
+
456
  jQuery( document ).ready( function() {
457
 
458
  /**
477
  }
478
  });
479
  });
480
+
481
+ /**
482
+ * Load events for Infinite Scroll.
483
+ *
484
+ * @since 3.3.1.1
485
+ */
486
+ if ( wsalAuditLogArgs.infiniteScroll ) {
487
+ var count = 2;
488
+ jQuery( window ).scroll( function() {
489
+ if ( jQuery( window ).scrollTop() === jQuery( document ).height() - jQuery( window ).height() ) {
490
+ wsalLoadEvents( count );
491
+ count++;
492
+ }
493
+ });
494
+ }
495
  });
js/settings.js CHANGED
@@ -133,7 +133,8 @@ jQuery( document ).ready( function() {
133
  jQuery( '#wsal_remove_exception_dir' ),
134
  jQuery( '#wsal_files input[type=checkbox]' ),
135
  jQuery( '#wsal_files_types input[type=checkbox]' ),
136
- jQuery( '#wsal_dirs input[type=checkbox]' )
 
137
  ];
138
 
139
  // Update settings of file changes on page load.
@@ -370,7 +371,7 @@ jQuery( document ).ready( function() {
370
  // Change button text.
371
  var scan_btn = jQuery( this );
372
  scan_btn.attr( 'disabled', 'disabled' );
373
- scan_btn.text( wsal_data.scanInProgress );
374
 
375
  // Stop scan button.
376
  var stop_scan_btn = jQuery( '#wsal-stop-scan' );
@@ -394,11 +395,11 @@ jQuery( document ).ready( function() {
394
  if ( data.success ) {
395
 
396
  // Change button text.
397
- scan_btn.text( wsal_data.scanNow );
398
  scan_btn.removeAttr( 'disabled' );
399
  stop_scan_btn.attr( 'disabled', 'disabled' );
400
  } else {
401
- scan_btn.text( wsal_data.scanFailed );
402
  console.log( data.message );
403
  }
404
  },
133
  jQuery( '#wsal_remove_exception_dir' ),
134
  jQuery( '#wsal_files input[type=checkbox]' ),
135
  jQuery( '#wsal_files_types input[type=checkbox]' ),
136
+ jQuery( '#wsal_dirs input[type=checkbox]' ),
137
+ jQuery( '#wsal-scan-now' )
138
  ];
139
 
140
  // Update settings of file changes on page load.
371
  // Change button text.
372
  var scan_btn = jQuery( this );
373
  scan_btn.attr( 'disabled', 'disabled' );
374
+ scan_btn.val( wsal_data.scanInProgress );
375
 
376
  // Stop scan button.
377
  var stop_scan_btn = jQuery( '#wsal-stop-scan' );
395
  if ( data.success ) {
396
 
397
  // Change button text.
398
+ scan_btn.val( wsal_data.scanNow );
399
  scan_btn.removeAttr( 'disabled' );
400
  stop_scan_btn.attr( 'disabled', 'disabled' );
401
  } else {
402
+ scan_btn.val( wsal_data.scanFailed );
403
  console.log( data.message );
404
  }
405
  },
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: 2019-01-29 06:19+0100\n"
7
- "PO-Revision-Date: 2019-01-29 06:19+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.2.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"
@@ -21,481 +21,226 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #. translators: Event ID
25
- #: classes/AlertManager.php:321
26
- #, php-format
27
- msgid "Event with code %d has not be registered."
28
- msgstr ""
29
-
30
- #: classes/AlertManager.php:376
31
- #, php-format
32
- msgid "Event %s already registered with WP Security Audit Log."
33
- msgstr ""
34
-
35
- #: classes/AlertManager.php:411
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:414
42
- #, php-format
43
- msgid "%4$s to help you solve this issue."
44
- msgstr ""
45
-
46
- #: classes/AlertManager.php:416
47
- msgid "ERROR:"
48
- msgstr ""
49
-
50
- #: classes/AlertManager.php:418
51
- msgid "Contact us"
52
- msgstr ""
53
-
54
- #: classes/AuditLogListView.php:106
55
  msgid "No events so far."
56
  msgstr ""
57
 
58
- #: classes/AuditLogListView.php:157
59
  msgid "Show "
60
  msgstr ""
61
 
62
- #: classes/AuditLogListView.php:167
63
  msgid " Items"
64
  msgstr ""
65
 
66
- #: classes/AuditLogListView.php:183 classes/Views/AuditLog.php:417
67
- #: classes/Views/AuditLog.php:440
68
  msgid "All Sites"
69
  msgstr ""
70
 
71
- #: classes/AuditLogListView.php:207
72
  msgid "Live Database"
73
  msgstr ""
74
 
75
- #: classes/AuditLogListView.php:210
76
  msgid "Archive Database"
77
  msgstr ""
78
 
79
- #: classes/AuditLogListView.php:266 classes/Views/Settings.php:1045
80
- #: classes/WidgetManager.php:86
81
  msgid "User"
82
  msgstr ""
83
 
84
- #: classes/AuditLogListView.php:268
85
  msgid "Username"
86
  msgstr ""
87
 
88
- #: classes/AuditLogListView.php:273 classes/AuditLogListView.php:299
89
- #: classes/Views/Settings.php:1039
90
- msgid "Event ID"
91
  msgstr ""
92
 
93
- #: classes/AuditLogListView.php:274 classes/AuditLogListView.php:302
94
- #: classes/Views/Settings.php:1041 classes/Views/ToggleAlerts.php:318
95
  msgid "Severity"
96
  msgstr ""
97
 
98
- #: classes/AuditLogListView.php:275 classes/AuditLogListView.php:305
99
  msgid "Date"
100
  msgstr ""
101
 
102
- #: classes/AuditLogListView.php:277 classes/AuditLogListView.php:311
103
  msgid "Source IP"
104
  msgstr ""
105
 
106
- #: classes/AuditLogListView.php:282 classes/AuditLogListView.php:314
107
  msgid "Site"
108
  msgstr ""
109
 
110
- #: classes/AuditLogListView.php:285 classes/AuditLogListView.php:317
111
  msgid "Message"
112
  msgstr ""
113
 
114
- #: classes/AuditLogListView.php:368
115
  msgid "Click to toggle."
116
  msgstr ""
117
 
118
- #: classes/AuditLogListView.php:387
119
- msgid "Disable this type of events."
120
  msgstr ""
121
 
122
- #: classes/AuditLogListView.php:395
123
  msgid "Unknown error code."
124
  msgstr ""
125
 
126
- #: classes/AuditLogListView.php:399
127
- msgid "Critical"
128
- msgstr ""
129
-
130
- #: classes/AuditLogListView.php:401
131
- msgid "Warning"
132
- msgstr ""
133
-
134
- #: classes/AuditLogListView.php:403
135
- msgid "Notification"
136
  msgstr ""
137
 
138
- #: classes/AuditLogListView.php:413 classes/AuditLogListView.php:454
139
  msgid "Unknown"
140
  msgstr ""
141
 
142
- #: classes/AuditLogListView.php:439
143
- msgid "Show me all activity by this User"
144
- msgstr ""
145
-
146
- #: classes/AuditLogListView.php:458 classes/Views/Licensing.php:113
147
  #: classes/Views/Licensing.php:153
148
  msgid "Plugin"
149
  msgstr ""
150
 
151
- #: classes/AuditLogListView.php:462 defaults.php:356
152
  msgid "Plugins"
153
  msgstr ""
154
 
155
- #: classes/AuditLogListView.php:466
156
  msgid "Website Visitor"
157
  msgstr ""
158
 
159
- #: classes/AuditLogListView.php:470 classes/Views/ToggleAlerts.php:420
160
- #: classes/Views/ToggleAlerts.php:454 defaults.php:389
161
  msgid "System"
162
  msgstr ""
163
 
164
- #: classes/AuditLogListView.php:502 classes/AuditLogListView.php:515
165
  msgid "Show me all activity originating from this IP Address"
166
  msgstr ""
167
 
168
- #: classes/AuditLogListView.php:544
169
  msgid "View all details of this change"
170
  msgstr ""
171
 
172
- #: classes/AuditLogListView.php:545 classes/AuditLogListView.php:695
173
- #: classes/Settings.php:1649
174
  msgid "Alert Data Inspector"
175
  msgstr ""
176
 
177
- #: classes/AuditLogListView.php:647 classes/Settings.php:1593
178
- msgid "Download the log file"
179
- msgstr ""
180
-
181
- #: classes/AuditLogListView.php:667 classes/Settings.php:1613
182
  msgid "Download the log file."
183
  msgstr ""
184
 
185
- #: classes/AuditLogListView.php:675 classes/Settings.php:1621
186
- #: classes/Settings.php:1873
187
  msgid "published"
188
  msgstr ""
189
 
190
- #. translators: Mailto link for support.
191
- #: classes/AuditLogListView.php:703 classes/Settings.php:1660
192
- #: classes/Settings.php:1899
193
- #, php-format
194
- msgid "Contact us on %s for assistance"
195
- msgstr ""
196
-
197
- #: classes/AuditLogListView.php:901
198
- msgid "Select All"
199
- msgstr ""
200
-
201
- #: classes/Connector/wp-db-custom.php:202
202
- msgid "Error establishing a database connection"
203
- msgstr ""
204
-
205
- #. translators: 1: wp-config.php. 2: database host
206
- #: classes/Connector/wp-db-custom.php:206
207
- #, php-format
208
- msgid ""
209
- "This either means that the username and password information in your %1$s "
210
- "file is incorrect or we can&#8217;t contact the database server at %2$s. "
211
- "This could mean your host&#8217;s database server is down."
212
- msgstr ""
213
-
214
- #: classes/Connector/wp-db-custom.php:212
215
- msgid "Are you sure you have the correct username and password?"
216
- msgstr ""
217
-
218
- #: classes/Connector/wp-db-custom.php:213
219
- msgid "Are you sure that you have typed the correct hostname?"
220
- msgstr ""
221
-
222
- #: classes/Connector/wp-db-custom.php:214
223
- msgid "Are you sure that the database server is running?"
224
- msgstr ""
225
-
226
- #. translators: %s: support forums URL
227
- #: classes/Connector/wp-db-custom.php:219
228
- #, php-format
229
- msgid ""
230
- "If you&#8217;re unsure what these terms mean you should probably contact "
231
- "your host. If you still need help you can always visit the <a href=\"%s"
232
- "\">WordPress Support Forums</a>."
233
- msgstr ""
234
-
235
- #: classes/Connector/wp-db-custom.php:220
236
- msgid "https://wordpress.org/support/"
237
- msgstr ""
238
-
239
- #: classes/Loggers/Database.php:243 classes/Views/EmailNotifications.php:153
240
  #: classes/Views/EmailNotifications.php:185 classes/Views/ExternalDB.php:152
241
- #: classes/Views/ExternalDB.php:184 classes/Views/Help.php:188
242
- #: classes/Views/Help.php:239 classes/Views/LogInUsers.php:154
243
  #: classes/Views/LogInUsers.php:186 classes/Views/Reports.php:153
244
  #: classes/Views/Reports.php:185 classes/Views/Search.php:153
245
  #: classes/Views/Search.php:178
246
  msgid "Upgrade to Premium"
247
  msgstr ""
248
 
249
- #: classes/Loggers/Database.php:244 classes/Views/EmailNotifications.php:154
 
250
  #: classes/Views/EmailNotifications.php:186 classes/Views/ExternalDB.php:153
251
- #: classes/Views/ExternalDB.php:185 classes/Views/Help.php:240
252
  #: classes/Views/LogInUsers.php:155 classes/Views/LogInUsers.php:187
253
  #: classes/Views/Reports.php:154 classes/Views/Reports.php:186
254
  #: classes/Views/Search.php:154 classes/Views/Search.php:179
255
  msgid "More Information"
256
  msgstr ""
257
 
258
- #: classes/Sensors/Content.php:1326 classes/Sensors/Content.php:1334
259
- #: classes/Sensors/WooCommerce.php:603 classes/Sensors/WooCommerce.php:609
260
  msgid "Password Protected"
261
  msgstr ""
262
 
263
- #: classes/Sensors/Content.php:1328 classes/Sensors/Content.php:1336
264
  msgid "Public"
265
  msgstr ""
266
 
267
- #: classes/Sensors/Content.php:1330 classes/Sensors/Content.php:1338
268
  msgid "Private"
269
  msgstr ""
270
 
271
- #: classes/Sensors/Public.php:109
272
- #, php-format
273
- msgid ""
274
- "A comment was posted in response to the post %1$s. The comment was posted by "
275
- "%2$s"
276
- msgstr ""
277
-
278
- #: classes/Sensors/Public.php:629 classes/Sensors/WooCommerce.php:1748
279
  msgid "In stock"
280
  msgstr ""
281
 
282
- #: classes/Sensors/Public.php:631 classes/Sensors/WooCommerce.php:1750
283
  msgid "Out of stock"
284
  msgstr ""
285
 
286
- #: classes/Sensors/Public.php:633 classes/Sensors/WooCommerce.php:1752
287
- msgid "On backorder"
288
- msgstr ""
289
-
290
- #: classes/Sensors/WooCommerce.php:2555
291
- msgid "Visible"
292
- msgstr ""
293
-
294
- #: classes/Sensors/WooCommerce.php:2555
295
- msgid "Non-Visible"
296
- msgstr ""
297
-
298
- #: classes/Settings.php:464
299
  msgid "This function is deprecated"
300
  msgstr ""
301
 
302
- #: classes/Settings.php:1561
303
- msgid "View Order"
304
- msgstr ""
305
-
306
- #: classes/Settings.php:1672 classes/Settings.php:1911
307
- msgid "plugin settings"
308
- msgstr ""
309
-
310
- #: classes/Settings.php:1675 classes/Settings.php:1914
311
- msgid "contact our support"
312
- msgstr ""
313
-
314
- #: classes/Utilities/Emailer.php:53
315
- #, php-format
316
- msgid "WP Security Audit Log plugin disabled on %s"
317
- msgstr ""
318
-
319
- #: classes/Utilities/Emailer.php:56
320
- msgid "Hello admin,"
321
- msgstr ""
322
-
323
- #: classes/Utilities/Emailer.php:61
324
- #, php-format
325
- msgid ""
326
- "This is a notification to let you know that the user %1$s has deactivated "
327
- "the plugin WP Security Audit Log on the website %2$s on %3$s."
328
- msgstr ""
329
-
330
  #: classes/Views/AuditLog.php:78
331
  msgid ""
332
- "Get instantly alerted of important changes via email, do text based searches "
333
- "and filter results, generate reports, see who is logged in and more!"
334
- msgstr ""
335
-
336
- #: classes/Views/AuditLog.php:79
337
- msgid "Upgrade to premium to unlock these powerful activity log features."
338
- msgstr ""
339
-
340
- #: classes/Views/AuditLog.php:82
341
- msgid ""
342
- "Instant email notifications, search & filters, reports, users sessions "
343
- "management, integration tools and more!"
344
- msgstr ""
345
-
346
- #: classes/Views/AuditLog.php:83
347
- msgid ""
348
- "Upgrade to unlock these powerful features and gain more from your activity "
349
- "logs."
350
- msgstr ""
351
-
352
- #: classes/Views/AuditLog.php:86
353
- msgid ""
354
  "See who is logged in to your WordPress, create user productivity reports, "
355
  "get alerted via email of important changes and more!"
356
  msgstr ""
357
 
358
- #: classes/Views/AuditLog.php:87
359
  msgid ""
360
  "Unlock these powerful features and much more with the premium edition of WP "
361
  "Security Audit Log."
362
  msgstr ""
363
 
364
- #: classes/Views/AuditLog.php:150
365
- msgid "UPGRADE"
366
- msgstr ""
367
-
368
- #: classes/Views/AuditLog.php:152
369
- msgid "Tell me more"
370
- msgstr ""
371
-
372
- #: classes/Views/AuditLog.php:153
373
- msgid "Dismiss the banner"
374
- msgstr ""
375
-
376
- #: classes/Views/AuditLog.php:153
377
- msgid "Close"
378
  msgstr ""
379
 
380
- #: classes/Views/AuditLog.php:179
381
  msgid ""
382
  "There are connectivity issues with the database where the WordPress activity "
383
  "log is stored. The logs will be temporary buffered in the WordPress database "
384
  "until the connection is fully restored."
385
  msgstr ""
386
 
387
- #: classes/Views/AuditLog.php:196
388
- msgid ""
389
- "Help us improve WP Security Audit Log! Opt-in to sending us diagnostic non-"
390
- "sensitive data about your plugin usage (<strong>no activity log data is "
391
- "sent</strong>) and subscribe to our newsletter."
392
- msgstr ""
393
-
394
- #: classes/Views/AuditLog.php:199
395
- msgid "Opt-In"
396
- msgstr ""
397
-
398
- #: classes/Views/AuditLog.php:201
399
- msgid "Learn More"
400
- msgstr ""
401
-
402
- #: classes/Views/AuditLog.php:203 classes/Views/AuditLog.php:381
403
- #: classes/Views/Settings.php:469 classes/Views/Settings.php:496
404
- #: classes/Views/Settings.php:587 classes/Views/Settings.php:625
405
- #: classes/Views/Settings.php:1107 classes/Views/Settings.php:1175
406
- #: classes/Views/Settings.php:1835 classes/Views/Settings.php:1898
407
- #: classes/Views/Settings.php:1926 classes/Views/Settings.php:1941
408
- #: classes/Views/Settings.php:1951 classes/Views/SetupWizard.php:520
409
- msgid "No"
410
- msgstr ""
411
-
412
- #: classes/Views/AuditLog.php:243 classes/Views/AuditLog.php:259
413
  msgid "Audit Log Viewer"
414
  msgstr ""
415
 
416
- #: classes/Views/AuditLog.php:340 classes/Views/Licensing.php:82
417
- #: classes/Views/Settings.php:334 classes/Views/ToggleAlerts.php:127
418
  msgid "You do not have sufficient permissions to access this page."
419
  msgstr ""
420
 
421
- #: classes/Views/AuditLog.php:377
422
- msgid ""
423
- "Thank you very much for using the WP Security Audit Log plugin. We have "
424
- "created a wizard to ease the process of configuring the plugin so you can "
425
- "get the best out of it. Would you like to run the wizard?"
426
- msgstr ""
427
-
428
- #: classes/Views/AuditLog.php:380 classes/Views/Settings.php:464
429
- #: classes/Views/Settings.php:491 classes/Views/Settings.php:557
430
- #: classes/Views/Settings.php:615 classes/Views/Settings.php:1102
431
- #: classes/Views/Settings.php:1168 classes/Views/Settings.php:1830
432
- #: classes/Views/Settings.php:1891 classes/Views/Settings.php:1919
433
- #: classes/Views/Settings.php:1940 classes/Views/Settings.php:1950
434
- #: classes/Views/SetupWizard.php:525
435
- msgid "Yes"
436
  msgstr ""
437
 
438
- #: classes/Views/AuditLog.php:416 classes/Views/AuditLog.php:439
439
  msgid "Please enter the number of alerts you would like to see on one page:"
440
  msgstr ""
441
 
442
- #: classes/Views/AuditLog.php:418 classes/Views/AuditLog.php:441
443
  msgid "No Results"
444
  msgstr ""
445
 
446
- #: classes/Views/AuditLog.php:625
447
  msgid "No users found."
448
  msgstr ""
449
 
450
- #: classes/Views/AuditLog.php:628 classes/Views/AuditLog.php:705
451
- #: classes/Views/AuditLog.php:731 classes/Views/AuditLog.php:1021
452
- #: classes/Views/Licensing.php:90 classes/Views/Settings.php:241
453
- #: classes/Views/Settings.php:330 classes/Views/Settings.php:2097
454
- #: classes/Views/Settings.php:2125 classes/Views/Settings.php:2155
455
- #: classes/Views/Settings.php:2194 classes/Views/Settings.php:2196
456
- #: classes/Views/Settings.php:2198 classes/Views/Settings.php:2305
457
- #: classes/Views/Settings.php:2307 classes/Views/Settings.php:2309
458
- #: classes/Views/Settings.php:2399 classes/Views/Settings.php:2479
459
- #: classes/Views/SetupWizard.php:81
460
- msgid "Nonce verification failed."
461
- msgstr ""
462
-
463
- #: classes/Views/AuditLog.php:647
464
  msgid "Log file does not exist."
465
  msgstr ""
466
 
467
- #: classes/Views/AuditLog.php:696
468
  msgid "Request to get log file failed."
469
  msgstr ""
470
 
471
- #: classes/Views/AuditLog.php:771
472
- msgid "Freemius opt choice selected."
473
- msgstr ""
474
-
475
- #: classes/Views/AuditLog.php:778
476
- msgid "Freemius opt choice not found."
477
- msgstr ""
478
-
479
- #: classes/Views/AuditLog.php:935
480
- msgid "WordPress Activity Log"
481
- msgstr ""
482
-
483
- #: classes/Views/AuditLog.php:936
484
- msgid ""
485
- "When a user makes a change on your website the plugin will keep a record of "
486
- "that event here. Right now there is nothing because this is a new install."
487
- msgstr ""
488
-
489
- #: classes/Views/AuditLog.php:937
490
- msgid "Thank you for using WP Security Audit Log"
491
- msgstr ""
492
-
493
- #: classes/Views/AuditLog.php:958
494
- msgid "Error: You do not have sufficient permissions to exclude this URL."
495
- msgstr ""
496
-
497
- #: classes/Views/AuditLog.php:1004
498
- msgid "You do not have sufficient permissions to dismiss this notice."
499
  msgstr ""
500
 
501
  #: classes/Views/EmailNotifications.php:28
@@ -592,7 +337,7 @@ msgstr ""
592
 
593
  #: classes/Views/ExternalDB.php:121
594
  msgid ""
595
- "Configure archiving rules to archive old events in an archiving database,"
596
  msgstr ""
597
 
598
  #: classes/Views/ExternalDB.php:167 classes/Views/ExternalDB.php:168
@@ -608,19 +353,14 @@ msgid ""
608
  msgstr ""
609
 
610
  #: classes/Views/Help.php:30 classes/Views/Help.php:44
611
- #: classes/Views/Help.php:86
612
  msgid "Help"
613
  msgstr ""
614
 
615
- #: classes/Views/Help.php:88 classes/Views/Help.php:165
616
- msgid "System Info"
617
- msgstr ""
618
-
619
- #: classes/Views/Help.php:97
620
  msgid "Getting Started"
621
  msgstr ""
622
 
623
- #: classes/Views/Help.php:99
624
  msgid ""
625
  "Getting started with WP Security Audit Log is really easy; once the plugin "
626
  "is installed it will automatically keep a log of everything that is "
@@ -628,126 +368,126 @@ msgid ""
628
  "video below for a quick overview of the plugin."
629
  msgstr ""
630
 
631
- #: classes/Views/Help.php:108
632
  msgid "Plugin Support"
633
  msgstr ""
634
 
635
- #: classes/Views/Help.php:110
636
  msgid ""
637
  "Have you encountered or noticed any issues while using WP Security Audit Log "
638
  "plugin?"
639
  msgstr ""
640
 
641
- #: classes/Views/Help.php:111
642
  msgid ""
643
  "Or you want to report something to us? Click any of the options below to "
644
  "post on the plugin's forum or contact our support directly."
645
  msgstr ""
646
 
647
- #: classes/Views/Help.php:113
648
  msgid "Free Support Forum"
649
  msgstr ""
650
 
651
- #: classes/Views/Help.php:115
652
  msgid "Free Support Email"
653
  msgstr ""
654
 
655
- #: classes/Views/Help.php:121
656
  msgid "Plugin Documentation"
657
  msgstr ""
658
 
659
- #: classes/Views/Help.php:123
660
  msgid ""
661
  "For more technical information about the WP Security Audit Log plugin please "
662
  "visit the plugin’s knowledge base."
663
  msgstr ""
664
 
665
- #: classes/Views/Help.php:124
666
  msgid ""
667
- "Refer to the list of WordPress security events for a complete list of Events "
668
  "and IDs that the plugin uses to keep a log of all the changes in the "
669
  "WordPress audit log."
670
  msgstr ""
671
 
672
- #: classes/Views/Help.php:126
673
  msgid "Plugin Website"
674
  msgstr ""
675
 
676
- #: classes/Views/Help.php:128
677
  msgid "Knowledge Base"
678
  msgstr ""
679
 
680
- #: classes/Views/Help.php:130
681
- msgid "List of WordPress Security Events"
682
  msgstr ""
683
 
684
- #: classes/Views/Help.php:136
685
  msgid "Rate WP Security Audit Log"
686
  msgstr ""
687
 
688
- #: classes/Views/Help.php:138
689
  msgid ""
690
  "We work really hard to deliver a plugin that enables you to keep a record of "
691
  "all the changes that are happening on your WordPress."
692
  msgstr ""
693
 
694
- #: classes/Views/Help.php:139
695
  msgid ""
696
  "It takes thousands of man-hours every year and endless amount of dedication "
697
  "to research, develop and maintain the free edition of WP Security Audit Log."
698
  msgstr ""
699
 
700
- #: classes/Views/Help.php:140
701
  msgid ""
702
  "Therefore if you like what you see, and find WP Security Audit Log useful we "
703
  "ask you nothing more than to please rate our plugin."
704
  msgstr ""
705
 
706
- #: classes/Views/Help.php:141
707
  msgid "We appreciate every star!"
708
  msgstr ""
709
 
710
- #: classes/Views/Help.php:151
711
  msgid "Rate Plugin"
712
  msgstr ""
713
 
714
- #: classes/Views/Help.php:192
715
  msgid "See who is logged in"
716
  msgstr ""
717
 
718
- #: classes/Views/Help.php:193
719
  msgid "And remotely terminate sessions"
720
  msgstr ""
721
 
722
- #: classes/Views/Help.php:196
723
  msgid "Generate reports"
724
  msgstr ""
725
 
726
- #: classes/Views/Help.php:197
727
  msgid "Or configure automated email reports"
728
  msgstr ""
729
 
730
- #: classes/Views/Help.php:200
731
  msgid "Configure email notifications"
732
  msgstr ""
733
 
734
- #: classes/Views/Help.php:201
735
  msgid "Get instantly notified of important changes"
736
  msgstr ""
737
 
738
- #: classes/Views/Help.php:204
739
  msgid "Add Search"
740
  msgstr ""
741
 
742
- #: classes/Views/Help.php:205
743
  msgid "Easily track down suspicious behaviour"
744
  msgstr ""
745
 
746
- #: classes/Views/Help.php:208
747
  msgid "Integrate & Centralise"
748
  msgstr ""
749
 
750
- #: classes/Views/Help.php:209
751
  msgid "Export the logs to your centralised logging system"
752
  msgstr ""
753
 
@@ -755,13 +495,13 @@ msgstr ""
755
  msgid "Licensing"
756
  msgstr ""
757
 
758
- #: classes/Views/Licensing.php:96 classes/Views/Settings.php:341
759
- #: classes/Views/ToggleAlerts.php:144
760
  msgid "Settings have been saved."
761
  msgstr ""
762
 
763
- #: classes/Views/Licensing.php:101 classes/Views/Settings.php:346
764
- #: classes/Views/ToggleAlerts.php:150
765
  msgid "Error: "
766
  msgstr ""
767
 
@@ -920,115 +660,117 @@ msgid ""
920
  "to fine tune the search results."
921
  msgstr ""
922
 
923
- #: classes/Views/Settings.php:79
924
- msgid "General"
925
  msgstr ""
926
 
927
- #: classes/Views/Settings.php:85
928
- msgid "Activity Log"
929
  msgstr ""
930
 
931
- #: classes/Views/Settings.php:91
932
- msgid "File Integrity Scan"
933
  msgstr ""
934
 
935
- #: classes/Views/Settings.php:97 classes/Views/SetupWizard.php:148
936
  msgid "Exclude Objects"
937
  msgstr ""
938
 
939
- #: classes/Views/Settings.php:103
940
- msgid "Advanced Settings"
941
  msgstr ""
942
 
943
- #: classes/Views/Settings.php:144 classes/Views/Settings.php:158
944
- #: classes/Views/ToggleAlerts.php:432 classes/Views/ToggleAlerts.php:456
945
- msgid "Settings"
946
  msgstr ""
947
 
948
- #: classes/Views/Settings.php:214
949
- msgid "Unknown settings tab."
950
  msgstr ""
951
 
952
- #: classes/Views/Settings.php:226 classes/Views/Settings.php:2500
953
- #: classes/Views/Settings.php:2529 classes/Views/SetupWizard.php:66
954
- msgid "Access Denied."
 
 
 
955
  msgstr ""
956
 
957
- #: classes/Views/Settings.php:251 classes/Views/SetupWizard.php:91
958
- msgid "Invalid input."
959
  msgstr ""
960
 
961
- #: classes/Views/Settings.php:354
962
- msgid "Old data successfully purged."
963
  msgstr ""
964
 
965
- #: classes/Views/Settings.php:360
966
- msgid "No data is old enough to be purged."
967
  msgstr ""
968
 
969
- #: classes/Views/Settings.php:443
970
- msgid ""
971
- "Need help with setting up the plugin to meet your requirements? <a href="
972
- "\"https://www.wpsecurityauditlog.com/contact/\" target=\"_blank\">Schedule a "
973
- "20 minutes consultation and setup call</a> with our experts for just $50."
974
  msgstr ""
975
 
976
- #: classes/Views/Settings.php:445
977
- msgid "Display latest events widget in Dashboard & Admin bar"
 
978
  msgstr ""
979
 
980
- #. translators: Max number of dashboard widget alerts.
981
- #: classes/Views/Settings.php:450
982
- #, php-format
983
- msgid ""
984
- "The events widget displays the latest %d security events in the dashboard "
985
- "and the admin bar notification displays the latest event."
986
  msgstr ""
987
 
988
- #: classes/Views/Settings.php:458
989
- msgid "Dashboard Widget"
990
  msgstr ""
991
 
992
- #: classes/Views/Settings.php:479
993
- msgid "Admin Bar Notification"
 
 
 
994
  msgstr ""
995
 
996
- #: classes/Views/Settings.php:482
997
- msgid "Admin Bar Notification (Premium)"
998
  msgstr ""
999
 
1000
- #: classes/Views/Settings.php:506
1001
- msgid "Admin Bar Notification Updates"
 
1002
  msgstr ""
1003
 
1004
- #: classes/Views/Settings.php:509
1005
- msgid "Admin Bar Notification Updates (Premium)"
1006
  msgstr ""
1007
 
1008
- #: classes/Views/Settings.php:518
1009
- msgid "Update in near real time"
1010
  msgstr ""
1011
 
1012
- #: classes/Views/Settings.php:523
1013
- msgid "Update only on page refreshes"
1014
  msgstr ""
1015
 
1016
- #: classes/Views/Settings.php:533
1017
- msgid "Add user notification on the WordPress login page"
 
 
1018
  msgstr ""
1019
 
1020
- #: classes/Views/Settings.php:534
1021
  msgid ""
1022
- "Many compliance regulations (such as the GDRP) require website "
1023
- "administrators to tell the users of their website that all the changes they "
1024
- "do when logged in are being logged."
1025
  msgstr ""
1026
 
1027
- #: classes/Views/Settings.php:538
1028
  msgid "Login Page Notification"
1029
  msgstr ""
1030
 
1031
- #: classes/Views/Settings.php:563 wp-security-audit-log.php:1545
1032
  msgid ""
1033
  "For security and auditing purposes, a record of all of your logged-in "
1034
  "actions and changes within the WordPress dashboard will be recorded in an "
@@ -1037,5031 +779,3297 @@ msgid ""
1037
  "IP address where you accessed this site from."
1038
  msgstr ""
1039
 
1040
- #: classes/Views/Settings.php:581
 
 
 
 
 
 
 
1041
  msgid "<strong>Note: </strong>"
1042
  msgstr ""
1043
 
1044
- #: classes/Views/Settings.php:581
1045
  msgid ""
1046
  "The only HTML code allowed in the login page notification is for links ( < a "
1047
- "href >< /a > )."
1048
  msgstr ""
1049
 
1050
- #: classes/Views/Settings.php:597
1051
- msgid "Is your website running behind a firewall or reverse proxy?"
1052
  msgstr ""
1053
 
1054
- #. translators: Learn more link.
1055
- #: classes/Views/Settings.php:602
1056
- #, php-format
 
 
1057
  msgid ""
1058
- "If your website is running behind a firewall set this option to yes so the "
1059
- "plugin retrieves the end user’s IP address from the proxy header - %s."
 
1060
  msgstr ""
1061
 
1062
- #: classes/Views/Settings.php:603
1063
- msgid "learn more"
1064
  msgstr ""
1065
 
1066
- #: classes/Views/Settings.php:610
1067
- msgid "Reverse Proxy / Firewall Options"
1068
  msgstr ""
1069
 
1070
- #: classes/Views/Settings.php:620
1071
  msgid ""
1072
- "Filter internal IP addresses from the proxy headers. Enable this option only "
1073
- "if you are\tare still seeing the internal IP addresses of the firewall or "
1074
- "proxy."
 
 
 
1075
  msgstr ""
1076
 
1077
- #: classes/Views/Settings.php:636
1078
- msgid "Who can change the plugin settings?"
1079
  msgstr ""
1080
 
1081
- #: classes/Views/Settings.php:637
1082
  msgid ""
1083
- "By default only users with administrator or super administrator (multisite) "
1084
- "roles can change the settings of the plugin. Though you can change these "
1085
- "privileges from this section."
1086
  msgstr ""
1087
 
1088
- #: classes/Views/Settings.php:641
1089
- msgid "Restrict Plugin Access"
1090
  msgstr ""
1091
 
1092
- #: classes/Views/Settings.php:647
1093
- msgid "Only me"
 
1094
  msgstr ""
1095
 
1096
- #: classes/Views/Settings.php:652
1097
- msgid "Only administrators"
 
 
1098
  msgstr ""
1099
 
1100
- #: classes/Views/Settings.php:658
1101
- msgid "Only superadmins"
1102
  msgstr ""
1103
 
1104
- #: classes/Views/Settings.php:664
1105
- msgid "All these users or users with these roles"
1106
  msgstr ""
1107
 
1108
- #: classes/Views/Settings.php:666
1109
- msgid ""
1110
- "Specify the username or the users which can change the plugin settings. You "
1111
- "can also specify roles."
1112
  msgstr ""
1113
 
1114
- #: classes/Views/Settings.php:695
1115
- msgid "Allow other users to view the activity log"
1116
  msgstr ""
1117
 
1118
- #: classes/Views/Settings.php:696
1119
- msgid ""
1120
- "By default only users with administrator and super administrator (multisite) "
1121
- "role can view the WordPress activity log. Though you can allow other users "
1122
- "with no admin role to view the events."
1123
  msgstr ""
1124
 
1125
- #: classes/Views/Settings.php:700
1126
- msgid "Can View Events"
1127
  msgstr ""
1128
 
1129
- #: classes/Views/Settings.php:708
1130
- msgid ""
1131
- "Specify the username or the users which do not have an admin role but can "
1132
- "also see the WordPress activity role. You can also specify roles."
1133
  msgstr ""
1134
 
1135
- #: classes/Views/Settings.php:734
1136
- msgid "Which email address should the plugin use as a from address?"
1137
  msgstr ""
1138
 
1139
- #: classes/Views/Settings.php:735
1140
- msgid ""
1141
- "By default when the plugin sends an email notification it uses the email "
1142
- "address specified in this website’s general settings. Though you can change "
1143
- "the email address and display name from this section."
1144
  msgstr ""
1145
 
1146
- #: classes/Views/Settings.php:739
1147
- msgid "From Email & Name"
1148
  msgstr ""
1149
 
1150
- #: classes/Views/Settings.php:745
1151
- msgid "Use the email address from the WordPress general settings"
 
1152
  msgstr ""
1153
 
1154
- #: classes/Views/Settings.php:750
1155
- msgid "Use another email address"
1156
  msgstr ""
1157
 
1158
- #: classes/Views/Settings.php:754
1159
- msgid "Email Address"
1160
  msgstr ""
1161
 
1162
- #: classes/Views/Settings.php:759
1163
- msgid "Display Name"
1164
  msgstr ""
1165
 
1166
- #: classes/Views/Settings.php:770
1167
- msgid "Do you want to hide the plugin from the list of installed plugins?"
1168
  msgstr ""
1169
 
1170
- #: classes/Views/Settings.php:771
1171
- msgid ""
1172
- "By default all installed plugins are listed in the plugins page. If you do "
1173
- "not want other administrators to see that you installed this plugin set this "
1174
- "option to Yes so the WP Security Audit Log is not listed as an installed "
1175
- "plugin on this website."
1176
  msgstr ""
1177
 
1178
- #: classes/Views/Settings.php:775
1179
- msgid "Hide Plugin in Plugins Page"
1180
  msgstr ""
1181
 
1182
- #: classes/Views/Settings.php:780
1183
- msgid "Yes, hide the plugin from the list of installed plugins"
1184
  msgstr ""
1185
 
1186
- #: classes/Views/Settings.php:785
1187
- msgid "No, do not hide the plugin"
1188
  msgstr ""
1189
 
1190
- #: classes/Views/Settings.php:853
1191
- msgid ""
1192
- "For how long do you want to keep the activity log events (Retention "
1193
- "settings) ?"
1194
  msgstr ""
1195
 
1196
- #: classes/Views/Settings.php:856
1197
- msgid ""
1198
- "The plugin uses an efficient way to store the activity log data in the "
1199
- "WordPress database, though the more data you keep the more disk space will "
1200
- "be required. "
1201
  msgstr ""
1202
 
1203
- #: classes/Views/Settings.php:857
1204
- msgid ""
1205
- "<a href=\"https://www.wpsecurityauditlog.com/pricing/\" target=\"_blank"
1206
- "\">Upgrade to Premium</a> to store the activity log data in an external "
1207
- "database."
1208
  msgstr ""
1209
 
1210
- #. translators: 1: Archive page link tag. 2: Link closing tag.
1211
- #: classes/Views/Settings.php:875
1212
- #, php-format
1213
  msgid ""
1214
- "Retention settings moved to %1$s archiving settings %2$s because archiving "
1215
- "is enabled"
1216
  msgstr ""
1217
 
1218
- #: classes/Views/Settings.php:882
1219
- msgid "Audit Log Retention"
1220
  msgstr ""
1221
 
1222
- #: classes/Views/Settings.php:888
1223
- msgid "Keep all data"
1224
  msgstr ""
1225
 
1226
- #: classes/Views/Settings.php:915
1227
- msgid "Delete events older than"
 
 
1228
  msgstr ""
1229
 
1230
- #: classes/Views/Settings.php:922
1231
- msgid "Months"
1232
  msgstr ""
1233
 
1234
- #: classes/Views/Settings.php:923
1235
- msgid "Years"
 
 
 
1236
  msgstr ""
1237
 
1238
- #: classes/Views/Settings.php:931
1239
- msgid "The next scheduled purging of activity log data that is older than "
1240
  msgstr ""
1241
 
1242
- #: classes/Views/Settings.php:938
1243
- msgid "You can run the purging process now by clicking the button below."
1244
  msgstr ""
1245
 
1246
- #: classes/Views/Settings.php:942
1247
- msgid "Purge Old Data"
 
1248
  msgstr ""
1249
 
1250
- #: classes/Views/Settings.php:953
1251
- msgid "What timestamp you would like to see in the WordPress activity log?"
1252
  msgstr ""
1253
 
1254
- #: classes/Views/Settings.php:954
1255
  msgid ""
1256
- "Note that the WordPress' timezone might be different from that configured on "
1257
- "the server so when you switch from UTC to WordPress timezone or vice versa "
1258
- "you might notice a big difference."
1259
  msgstr ""
1260
 
1261
- #: classes/Views/Settings.php:958
1262
- msgid "Events Timestamp"
1263
  msgstr ""
1264
 
1265
- #: classes/Views/Settings.php:978
1266
- msgid "UTC"
1267
  msgstr ""
1268
 
1269
- #: classes/Views/Settings.php:984
1270
- msgid "Timezone configured on this WordPress website"
1271
  msgstr ""
1272
 
1273
- #: classes/Views/Settings.php:994
1274
  msgid ""
1275
- "What user information should be displayed in the WordPress activity log?"
 
 
1276
  msgstr ""
1277
 
1278
- #: classes/Views/Settings.php:995
1279
  msgid ""
1280
- "Usernames might not be the same as a user's first and last name so it can be "
1281
- "difficult to recognize whose user was that did a change. When there is no "
1282
- "first & last name or public display name configured the plugin will revert "
1283
- "back to the WordPress username."
1284
  msgstr ""
1285
 
1286
- #: classes/Views/Settings.php:999
1287
- msgid "User Information in Audit Log"
1288
  msgstr ""
1289
 
1290
- #: classes/Views/Settings.php:1005
1291
- msgid "WordPress Username"
1292
  msgstr ""
1293
 
1294
- #: classes/Views/Settings.php:1010
1295
- msgid "First Name & Last Name"
 
 
1296
  msgstr ""
1297
 
1298
- #: classes/Views/Settings.php:1015
1299
- msgid "Configured Public Display Name"
1300
  msgstr ""
1301
 
1302
- #: classes/Views/Settings.php:1025
1303
- msgid "Select the columns to be displayed in the WordPress activity log"
1304
  msgstr ""
1305
 
1306
- #: classes/Views/Settings.php:1026
1307
  msgid ""
1308
- "When you deselect a column it won’t be shown in the activity log viewer but "
1309
- "the data will still be recorded by the plugin, so when you select it again "
1310
- "all the data will be displayed."
1311
  msgstr ""
1312
 
1313
- #: classes/Views/Settings.php:1030
1314
- msgid "Audit Log Columns Selection"
1315
  msgstr ""
1316
 
1317
- #: classes/Views/Settings.php:1043
1318
- msgid "Date & Time"
 
 
 
 
1319
  msgstr ""
1320
 
1321
- #: classes/Views/Settings.php:1047
1322
- msgid "Source IP Address"
1323
  msgstr ""
1324
 
1325
- #: classes/Views/Settings.php:1062
1326
- msgid "Do you want the activity log viewer to auto refresh?"
1327
  msgstr ""
1328
 
1329
- #: classes/Views/Settings.php:1063
1330
  msgid ""
1331
- "The activity log viewer auto refreshes every 30 seconds when opened so you "
1332
- "can see the latest events as they happen almost in real time."
1333
  msgstr ""
1334
 
1335
- #: classes/Views/Settings.php:1067
1336
- msgid "Refresh Audit Log Viewer"
1337
  msgstr ""
1338
 
1339
- #: classes/Views/Settings.php:1074
1340
- msgid "Auto refresh"
1341
  msgstr ""
1342
 
1343
- #: classes/Views/Settings.php:1080
1344
- msgid "Do not auto refresh"
 
 
1345
  msgstr ""
1346
 
1347
- #: classes/Views/Settings.php:1090
1348
- msgid "Do you want to keep a log of WordPress background activity?"
1349
  msgstr ""
1350
 
1351
- #: classes/Views/Settings.php:1092
1352
  msgid ""
1353
- "WordPress does a lot of things in the background that you do not necessarily "
1354
- "need to know about, such as; deletion of post revisions, deletion of auto "
1355
- "saved drafts etc. By default the plugin does not report them since there "
1356
- "might be a lot and are irrelevant to the user."
1357
  msgstr ""
1358
 
1359
- #: classes/Views/Settings.php:1097
1360
- msgid "Enable Events for WordPress Background Activity"
1361
  msgstr ""
1362
 
1363
- #: classes/Views/Settings.php:1151
1364
  msgid ""
1365
- "The plugin runs file integrity scans on your website so it keeps a log when "
1366
- "a file is added, modified or deleted. All the settings for the file "
1367
- "integrity scans can be found in this page."
 
 
1368
  msgstr ""
1369
 
1370
- #: classes/Views/Settings.php:1152
1371
  msgid ""
1372
- "<a href=\"https://www.wpsecurityauditlog.com/support-documentation/wordpress-"
1373
- "files-changes-warning-activity-logs/\" target=\"_blank\">Refer to the "
1374
- "WordPress file integrity scans feature page</a> for more information."
1375
  msgstr ""
1376
 
1377
- #: classes/Views/Settings.php:1155
1378
- msgid "Do you want the plugin to scan your website for file changes?"
1379
  msgstr ""
1380
 
1381
- #: classes/Views/Settings.php:1160
1382
- msgid "Keep a Log of File Changes"
1383
  msgstr ""
1384
 
1385
- #: classes/Views/Settings.php:1184
1386
- msgid ""
1387
- "Which file changes events do you want to keep a log of in the activity log?"
1388
  msgstr ""
1389
 
1390
- #: classes/Views/Settings.php:1186
1391
- msgid ""
1392
- "By default the plugin will keep a log whenever a file has been added, "
1393
- "modified or deleted. It will also log an event in the activity log when a "
1394
- "file is too big to scan or there are too many files to scan. Click on the "
1395
- "link to specify which of these events the plugin should keep a log of."
1396
  msgstr ""
1397
 
1398
- #: classes/Views/Settings.php:1192
1399
- msgid "Alert me when"
1400
  msgstr ""
1401
 
1402
- #: classes/Views/Settings.php:1205
1403
- msgid "Configure Events"
1404
  msgstr ""
1405
 
1406
- #: classes/Views/Settings.php:1214
1407
- msgid "When should the plugin scan your website for file changes?"
1408
  msgstr ""
1409
 
1410
- #: classes/Views/Settings.php:1216
1411
- msgid ""
1412
- "By default the plugin will run file integrity scans once a week. If you can, "
1413
- "ideally you should run file integrity scans on a daily basis. The file "
1414
- "integrity scanner is very efficient and requires very little resources. "
1415
- "Though if you have a fairly large website we recommend you to scan it when "
1416
- "it is the least busy. The scan process should only take a few seconds to "
1417
- "complete."
1418
  msgstr ""
1419
 
1420
- #: classes/Views/Settings.php:1222
1421
- msgid "Scan Frequency"
1422
  msgstr ""
1423
 
1424
- #: classes/Views/Settings.php:1227
1425
- msgid "Daily"
1426
  msgstr ""
1427
 
1428
- #: classes/Views/Settings.php:1228
1429
- msgid "Weekly"
1430
  msgstr ""
1431
 
1432
- #: classes/Views/Settings.php:1229
1433
- msgid "Monthly"
1434
- msgstr ""
1435
-
1436
- #: classes/Views/Settings.php:1247
1437
- msgid "Scan Time"
1438
- msgstr ""
1439
-
1440
- #: classes/Views/Settings.php:1253
1441
- msgid "00:00"
1442
  msgstr ""
1443
 
1444
- #: classes/Views/Settings.php:1254
1445
- msgid "01:00"
1446
  msgstr ""
1447
 
1448
- #: classes/Views/Settings.php:1255
1449
- msgid "02:00"
1450
  msgstr ""
1451
 
1452
- #: classes/Views/Settings.php:1256
1453
- msgid "03:00"
1454
  msgstr ""
1455
 
1456
- #: classes/Views/Settings.php:1257
1457
- msgid "04:00"
1458
  msgstr ""
1459
 
1460
- #: classes/Views/Settings.php:1258
1461
- msgid "05:00"
1462
  msgstr ""
1463
 
1464
- #: classes/Views/Settings.php:1259
1465
- msgid "06:00"
1466
  msgstr ""
1467
 
1468
- #: classes/Views/Settings.php:1260
1469
- msgid "07:00"
1470
  msgstr ""
1471
 
1472
- #: classes/Views/Settings.php:1261
1473
- msgid "08:00"
1474
  msgstr ""
1475
 
1476
- #: classes/Views/Settings.php:1262
1477
- msgid "09:00"
1478
  msgstr ""
1479
 
1480
- #: classes/Views/Settings.php:1263
1481
- msgid "10:00"
1482
  msgstr ""
1483
 
1484
- #: classes/Views/Settings.php:1264
1485
- msgid "11:00"
1486
  msgstr ""
1487
 
1488
- #: classes/Views/Settings.php:1265
1489
- msgid "12:00"
 
 
1490
  msgstr ""
1491
 
1492
- #: classes/Views/Settings.php:1266
1493
- msgid "13:00"
1494
  msgstr ""
1495
 
1496
- #: classes/Views/Settings.php:1267
1497
- msgid "14:00"
 
 
1498
  msgstr ""
1499
 
1500
- #: classes/Views/Settings.php:1268
1501
- msgid "15:00"
1502
  msgstr ""
1503
 
1504
- #: classes/Views/Settings.php:1269
1505
- msgid "16:00"
 
 
1506
  msgstr ""
1507
 
1508
- #: classes/Views/Settings.php:1270
1509
- msgid "17:00"
1510
  msgstr ""
1511
 
1512
- #: classes/Views/Settings.php:1271
1513
- msgid "18:00"
 
1514
  msgstr ""
1515
 
1516
- #: classes/Views/Settings.php:1272
1517
- msgid "19:00"
1518
  msgstr ""
1519
 
1520
- #: classes/Views/Settings.php:1273
1521
- msgid "20:00"
 
 
1522
  msgstr ""
1523
 
1524
- #: classes/Views/Settings.php:1274
1525
- msgid "21:00"
1526
  msgstr ""
1527
 
1528
- #: classes/Views/Settings.php:1275
1529
- msgid "22:00"
 
 
1530
  msgstr ""
1531
 
1532
- #: classes/Views/Settings.php:1276
1533
- msgid "23:00"
1534
  msgstr ""
1535
 
1536
- #: classes/Views/Settings.php:1281
1537
- msgid "Monday"
 
 
1538
  msgstr ""
1539
 
1540
- #: classes/Views/Settings.php:1282
1541
- msgid "Tuesday"
1542
  msgstr ""
1543
 
1544
- #: classes/Views/Settings.php:1283
1545
- msgid "Wednesday"
 
 
1546
  msgstr ""
1547
 
1548
- #: classes/Views/Settings.php:1284
1549
- msgid "Thursday"
1550
  msgstr ""
1551
 
1552
- #: classes/Views/Settings.php:1285
1553
- msgid "Friday"
 
 
1554
  msgstr ""
1555
 
1556
- #: classes/Views/Settings.php:1286
1557
- msgid "Saturday"
1558
  msgstr ""
1559
 
1560
- #: classes/Views/Settings.php:1287
1561
- msgid "Sunday"
 
 
1562
  msgstr ""
1563
 
1564
- #: classes/Views/Settings.php:1292
1565
- msgid "01"
1566
  msgstr ""
1567
 
1568
- #: classes/Views/Settings.php:1293
1569
- msgid "02"
 
 
1570
  msgstr ""
1571
 
1572
- #: classes/Views/Settings.php:1294
1573
- msgid "03"
1574
  msgstr ""
1575
 
1576
- #: classes/Views/Settings.php:1295
1577
- msgid "04"
 
 
1578
  msgstr ""
1579
 
1580
- #: classes/Views/Settings.php:1296
1581
- msgid "05"
1582
  msgstr ""
1583
 
1584
- #: classes/Views/Settings.php:1297
1585
- msgid "06"
 
 
1586
  msgstr ""
1587
 
1588
- #: classes/Views/Settings.php:1298
1589
- msgid "07"
1590
  msgstr ""
1591
 
1592
- #: classes/Views/Settings.php:1299
1593
- msgid "08"
 
 
1594
  msgstr ""
1595
 
1596
- #: classes/Views/Settings.php:1300
1597
- msgid "09"
1598
  msgstr ""
1599
 
1600
- #: classes/Views/Settings.php:1301
1601
- msgid "10"
 
 
1602
  msgstr ""
1603
 
1604
- #: classes/Views/Settings.php:1302
1605
- msgid "11"
1606
  msgstr ""
1607
 
1608
- #: classes/Views/Settings.php:1303
1609
- msgid "12"
 
 
1610
  msgstr ""
1611
 
1612
- #: classes/Views/Settings.php:1304
1613
- msgid "13"
1614
  msgstr ""
1615
 
1616
- #: classes/Views/Settings.php:1305
1617
- msgid "14"
 
1618
  msgstr ""
1619
 
1620
- #: classes/Views/Settings.php:1306
1621
- msgid "15"
1622
  msgstr ""
1623
 
1624
- #: classes/Views/Settings.php:1307
1625
- msgid "16"
1626
  msgstr ""
1627
 
1628
- #: classes/Views/Settings.php:1308
1629
- msgid "17"
1630
  msgstr ""
1631
 
1632
- #: classes/Views/Settings.php:1309
1633
- msgid "18"
 
 
1634
  msgstr ""
1635
 
1636
- #: classes/Views/Settings.php:1310
1637
- msgid "19"
1638
  msgstr ""
1639
 
1640
- #: classes/Views/Settings.php:1311
1641
- msgid "20"
 
 
 
1642
  msgstr ""
1643
 
1644
- #: classes/Views/Settings.php:1312
1645
- msgid "21"
1646
  msgstr ""
1647
 
1648
- #: classes/Views/Settings.php:1313
1649
- msgid "22"
 
 
 
1650
  msgstr ""
1651
 
1652
- #: classes/Views/Settings.php:1314
1653
- msgid "23"
1654
  msgstr ""
1655
 
1656
- #: classes/Views/Settings.php:1315
1657
- msgid "24"
 
 
1658
  msgstr ""
1659
 
1660
- #: classes/Views/Settings.php:1316
1661
- msgid "25"
1662
  msgstr ""
1663
 
1664
- #: classes/Views/Settings.php:1317
1665
- msgid "26"
 
 
 
1666
  msgstr ""
1667
 
1668
- #: classes/Views/Settings.php:1318
1669
- msgid "27"
1670
  msgstr ""
1671
 
1672
- #: classes/Views/Settings.php:1319
1673
- msgid "28"
 
 
1674
  msgstr ""
1675
 
1676
- #: classes/Views/Settings.php:1320
1677
- msgid "29"
1678
  msgstr ""
1679
 
1680
- #: classes/Views/Settings.php:1321
1681
- msgid "30"
 
 
1682
  msgstr ""
1683
 
1684
- #: classes/Views/Settings.php:1337
1685
- msgid "Hour"
1686
  msgstr ""
1687
 
1688
- #: classes/Views/Settings.php:1353 classes/Views/Settings.php:1369
1689
- msgid "Day"
 
 
1690
  msgstr ""
1691
 
1692
- #: classes/Views/Settings.php:1379
1693
- msgid "Which directories should be scanned for file changes?"
1694
  msgstr ""
1695
 
1696
- #: classes/Views/Settings.php:1381
1697
  msgid ""
1698
- "The plugin will scan all the directories in your WordPress website by "
1699
- "default because that is the most secure option. Though if for some reason "
1700
- "you do not want the plugin to scan any of these directories you can uncheck "
1701
- "them from the below list."
1702
- msgstr ""
1703
-
1704
- #: classes/Views/Settings.php:1387
1705
- msgid "Directories to scan"
1706
  msgstr ""
1707
 
1708
- #: classes/Views/Settings.php:1393
1709
- msgid "Root directory of WordPress (excluding sub directories)"
1710
  msgstr ""
1711
 
1712
- #: classes/Views/Settings.php:1394
1713
- msgid "WP Admin directory (/wp-admin/)"
 
 
1714
  msgstr ""
1715
 
1716
- #: classes/Views/Settings.php:1395
1717
- msgid "WP Includes directory (/wp-includes/)"
1718
  msgstr ""
1719
 
1720
- #: classes/Views/Settings.php:1396
1721
  msgid ""
1722
- "/wp-content/ directory (excluding plugins, themes & uploads directories)"
 
1723
  msgstr ""
1724
 
1725
- #: classes/Views/Settings.php:1397
1726
- msgid "Themes directory (/wp-content/themes/)"
1727
  msgstr ""
1728
 
1729
- #: classes/Views/Settings.php:1398
1730
- msgid "Plugins directory (/wp-content/plugins/)"
 
 
1731
  msgstr ""
1732
 
1733
- #: classes/Views/Settings.php:1399
1734
- msgid "Uploads directory (/wp-content/uploads/)"
1735
  msgstr ""
1736
 
1737
- #: classes/Views/Settings.php:1405
1738
  msgid ""
1739
- "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
 
1740
  msgstr ""
1741
 
1742
- #: classes/Views/Settings.php:1428
1743
- msgid "What is the biggest file size the plugin should scan?"
1744
  msgstr ""
1745
 
1746
- #: classes/Views/Settings.php:1429
1747
  msgid ""
1748
- "By default the plugin does not scan files that are bigger than 5MB. Such "
1749
- "files are not common, hence typically not a target. Though if you are "
1750
- "getting a lot of 6032 Events, it is recommended to increase the file size "
1751
- "limit from the below option."
1752
  msgstr ""
1753
 
1754
- #: classes/Views/Settings.php:1432
1755
- msgid "File Size Limit"
1756
  msgstr ""
1757
 
1758
- #: classes/Views/Settings.php:1435
1759
- msgid "MB"
 
 
1760
  msgstr ""
1761
 
1762
- #: classes/Views/Settings.php:1441
1763
- msgid ""
1764
- "Do you want to exclude specific files or files with a particular extension "
1765
- "from the scan?"
1766
  msgstr ""
1767
 
1768
- #: classes/Views/Settings.php:1442
1769
  msgid ""
1770
- "The plugin will scan everything that is in the WordPress root directory or "
1771
- "below, even if the files and directories are not part of WordPress. It is "
1772
- "recommended to scan all source code files and only exclude files that cannot "
1773
- "be tampered, such as text files, media files etc, most of which are already "
1774
- "excluded by default."
1775
  msgstr ""
1776
 
1777
- #: classes/Views/Settings.php:1447
1778
- msgid "Exclude All Files in These Directories"
1779
  msgstr ""
1780
 
1781
- #: classes/Views/Settings.php:1460 classes/Views/Settings.php:1496
1782
- #: classes/Views/Settings.php:1526
1783
- msgid "REMOVE"
1784
  msgstr ""
1785
 
1786
- #: classes/Views/Settings.php:1465 classes/Views/Settings.php:1501
1787
- #: classes/Views/Settings.php:1531 classes/Views/SetupWizard.php:534
1788
- #: classes/Views/SetupWizard.php:542 classes/Views/SetupWizard.php:627
1789
- #: classes/Views/SetupWizard.php:646 classes/Views/SetupWizard.php:665
1790
- msgid "ADD"
1791
  msgstr ""
1792
 
1793
- #: classes/Views/Settings.php:1468
1794
- msgid ""
1795
- "Specify the name of the directory and the path to it in relation to the "
1796
- "website's root. For example, if you want to want to exclude all files in the "
1797
- "sub directory dir1/dir2 specify the following:"
1798
  msgstr ""
1799
 
1800
- #: classes/Views/Settings.php:1479
1801
- msgid "Exclude These Files"
1802
  msgstr ""
1803
 
1804
- #: classes/Views/Settings.php:1504
1805
- msgid ""
1806
- "Specify the name and extension of the file(s) you want to exclude. Wildcard "
1807
- "not supported. There is no need to specify the path of the file."
1808
  msgstr ""
1809
 
1810
- #: classes/Views/Settings.php:1513
1811
- msgid "Exclude these File Types"
1812
  msgstr ""
1813
 
1814
- #: classes/Views/Settings.php:1534
1815
  msgid ""
1816
- "Specify the extension of the file types you want to exclude. You should "
1817
- "exclude any type of logs and backup files that tend to be very big."
1818
  msgstr ""
1819
 
1820
- #: classes/Views/Settings.php:1543
1821
- msgid "Launch an instant file integrity scan"
1822
  msgstr ""
1823
 
1824
- #: classes/Views/Settings.php:1545
1825
  msgid ""
1826
- "Click the Scan Now button to launch an instant file integrity scan using the "
1827
- "configured settings. You can navigate away from this page during the scan. "
1828
- "Note that the instant scan can be more resource intensive than scheduled "
1829
- "scans."
1830
- msgstr ""
1831
-
1832
- #: classes/Views/Settings.php:1551
1833
- msgid "Launch Instant Scan"
1834
- msgstr ""
1835
-
1836
- #: classes/Views/Settings.php:1558 classes/Views/Settings.php:2061
1837
- msgid "Scan Now"
1838
  msgstr ""
1839
 
1840
- #: classes/Views/Settings.php:1561 classes/Views/Settings.php:1568
1841
- msgid "Stop Scan"
1842
  msgstr ""
1843
 
1844
- #: classes/Views/Settings.php:1565 classes/Views/Settings.php:2063
1845
- msgid "Scan in Progress"
1846
  msgstr ""
1847
 
1848
- #: classes/Views/Settings.php:1649
1849
  msgid ""
1850
- "By default the plugin keeps a log of all user changes done on your WordPress "
1851
- "website. Use the setting below to exclude any objects from the activity log. "
1852
- "When an object is excluded from the activity log, any event in which that "
1853
- "object is referred will not be logged in the activity log."
1854
- msgstr ""
1855
-
1856
- #: classes/Views/Settings.php:1653
1857
- msgid "Exclude Users:"
1858
  msgstr ""
1859
 
1860
- #: classes/Views/Settings.php:1674
1861
- msgid "Exclude Roles:"
1862
  msgstr ""
1863
 
1864
- #: classes/Views/Settings.php:1695
1865
- msgid "Exclude IP Addresses:"
 
 
1866
  msgstr ""
1867
 
1868
- #: classes/Views/Settings.php:1716
1869
- msgid "Exclude Post Type:"
1870
  msgstr ""
1871
 
1872
- #: classes/Views/Settings.php:1731
1873
  msgid ""
1874
- "WordPress has the post and page post types by default though your website "
1875
- "might use more post types (custom post types). You can exclude all post "
1876
- "types, including the default WordPress ones."
1877
  msgstr ""
1878
 
1879
- #: classes/Views/Settings.php:1738
1880
- msgid "Exclude Custom Fields:"
1881
  msgstr ""
1882
 
1883
- #: classes/Views/Settings.php:1753
1884
  msgid ""
1885
- "You can use the * wildcard to exclude multiple matching custom fields. For "
1886
- "example to exclude all custom fields starting with wp123 enter wp123*"
1887
  msgstr ""
1888
 
1889
- #: classes/Views/Settings.php:1760
1890
- msgid "Exclude Non-Existing URLs:"
1891
  msgstr ""
1892
 
1893
- #: classes/Views/Settings.php:1776
1894
  msgid ""
1895
- "Add the non existing URLs for which you do not want to be alerted of HTTP "
1896
- "404 errors in the activity log by specifying the complete URL.\tExamples "
1897
- "below:"
1898
  msgstr ""
1899
 
1900
- #: classes/Views/Settings.php:1778
1901
- msgid "File: "
1902
  msgstr ""
1903
 
1904
- #: classes/Views/Settings.php:1780
1905
- msgid "Directory: "
 
 
1906
  msgstr ""
1907
 
1908
- #: classes/Views/Settings.php:1813
1909
- msgid "These settings are for advanced users."
1910
  msgstr ""
1911
 
1912
- #: classes/Views/Settings.php:1814
1913
  msgid ""
1914
- "If you have any questions <a href=\"https://www.wpsecurityauditlog.com/"
1915
- "contact/\" target=\"_blank\">contact us</a>."
1916
  msgstr ""
1917
 
1918
- #: classes/Views/Settings.php:1817
1919
- msgid ""
1920
- "Troubleshooting setting: Keep a debug log of all the requests this website "
1921
- "receives"
1922
  msgstr ""
1923
 
1924
- #: classes/Views/Settings.php:1818
1925
  msgid ""
1926
- "Only enable the request log on testing, staging and development website. "
1927
- "Never enable logging on a live website unless instructed to do so. Enabling "
1928
- "request logging on a live website may degrade the performance of the website."
1929
  msgstr ""
1930
 
1931
- #: classes/Views/Settings.php:1822
1932
- msgid "Request Log"
1933
  msgstr ""
1934
 
1935
- #: classes/Views/Settings.php:1840
1936
  msgid ""
1937
- "<strong>Note:</strong> The requests debug log file is saved as request.log."
1938
- "php in the /wp-content/uploads/wp-security-audit-log/ directory."
1939
  msgstr ""
1940
 
1941
- #: classes/Views/Settings.php:1852
1942
- msgid "Reset plugin settings to default"
1943
  msgstr ""
1944
 
1945
- #: classes/Views/Settings.php:1853
1946
- msgid ""
1947
- "Click the RESET button to reset ALL plugin settings to default. Note that "
1948
- "the activity log data will be retained and only the plugin settings will be "
1949
- "reset. To purge the data of the activity log use the setting below."
1950
  msgstr ""
1951
 
1952
- #: classes/Views/Settings.php:1857
1953
- msgid "Reset Settings"
1954
  msgstr ""
1955
 
1956
- #: classes/Views/Settings.php:1859
1957
- msgid "RESET"
1958
  msgstr ""
1959
 
1960
- #: classes/Views/Settings.php:1865
1961
- msgid "Purge the WordPress activity log"
1962
  msgstr ""
1963
 
1964
- #: classes/Views/Settings.php:1866
1965
- msgid ""
1966
- "Click the Purge button below to delete all the data from the WordPress "
1967
- "activity log and start afresh."
1968
  msgstr ""
1969
 
1970
- #: classes/Views/Settings.php:1870
1971
- msgid "Purge Activity Log"
 
 
1972
  msgstr ""
1973
 
1974
- #: classes/Views/Settings.php:1872
1975
- msgid "PURGE"
1976
  msgstr ""
1977
 
1978
- #: classes/Views/Settings.php:1878
1979
- msgid "MainWP Child Site Stealth Mode"
 
 
1980
  msgstr ""
1981
 
1982
- #: classes/Views/Settings.php:1879
1983
- msgid ""
1984
- "This option is enabled automatically when the plugin detects the MainWP "
1985
- "Child plugin on the site. When this setting is enabled plugin access is "
1986
- "restricted to the administrator who installs the plugin, the plugin is not "
1987
- "shown in the list of installed plugins and no admin notifications are shown. "
1988
- "Disable this option to change the plugin to the default setup."
1989
  msgstr ""
1990
 
1991
- #: classes/Views/Settings.php:1883
1992
- msgid "Enable MainWP Child Site Stealth Mode"
 
 
1993
  msgstr ""
1994
 
1995
- #: classes/Views/Settings.php:1907
1996
- msgid "Do you want to delete the plugin data from the database upon uninstall?"
1997
  msgstr ""
1998
 
1999
- #: classes/Views/Settings.php:1908
2000
  msgid ""
2001
- "The plugin saves the activity log data and settings in the WordPress "
2002
- "database. By default upon uninstalling the plugin the data is kept in the "
2003
- "database so if it is installed again, you can still access the data. If the "
2004
- "data is deleted it is not possible to recover it so you won't be able to "
2005
- "access it again even when you reinstall the plugin."
2006
  msgstr ""
2007
 
2008
- #: classes/Views/Settings.php:1912
2009
- msgid "Remove Data on Uninstall"
2010
  msgstr ""
2011
 
2012
- #: classes/Views/Settings.php:1937
2013
- msgid "Are you sure you want to reset all the plugin settings to default?"
2014
  msgstr ""
2015
 
2016
- #: classes/Views/Settings.php:1947
2017
- msgid "Are you sure you want to purge all the activity log data?"
2018
  msgstr ""
2019
 
2020
- #: classes/Views/Settings.php:1979
2021
- msgid "MainWP Child plugin is not active on this website."
 
 
2022
  msgstr ""
2023
 
2024
- #: classes/Views/Settings.php:2054
2025
- msgid "The specified value is not a valid URL!"
2026
  msgstr ""
2027
 
2028
- #: classes/Views/Settings.php:2055
2029
- msgid "The specified value is not a valid post type!"
 
 
2030
  msgstr ""
2031
 
2032
- #: classes/Views/Settings.php:2056
2033
- msgid "The specified value is not a valid IP address!"
2034
  msgstr ""
2035
 
2036
- #: classes/Views/Settings.php:2057
2037
- msgid "The specified value is not a user nor a role!"
 
 
2038
  msgstr ""
2039
 
2040
- #: classes/Views/Settings.php:2058
2041
- msgid "Filename cannot be added because it contains invalid characters."
2042
  msgstr ""
2043
 
2044
- #: classes/Views/Settings.php:2059
2045
- msgid "File extension cannot be added because it contains invalid characters."
 
 
2046
  msgstr ""
2047
 
2048
- #: classes/Views/Settings.php:2060
2049
- msgid "Directory cannot be added because it contains invalid characters."
2050
  msgstr ""
2051
 
2052
- #: classes/Views/Settings.php:2062
2053
- msgid "Scan Failed"
 
 
2054
  msgstr ""
2055
 
2056
- #: classes/Views/Settings.php:2187 classes/Views/Settings.php:2298
2057
- msgid "Invalid setting type."
2058
  msgstr ""
2059
 
2060
- #: classes/Views/Settings.php:2241
2061
- msgid "You can exclude this directory using the check boxes above."
 
 
2062
  msgstr ""
2063
 
2064
- #: classes/Views/Settings.php:2260
2065
- msgid "Option added to excluded types."
2066
  msgstr ""
2067
 
2068
- #: classes/Views/Settings.php:2264
2069
- msgid "This file is already excluded from the scan."
 
 
2070
  msgstr ""
2071
 
2072
- #: classes/Views/Settings.php:2266
2073
- msgid "This file extension is already excluded from the scan."
2074
  msgstr ""
2075
 
2076
- #: classes/Views/Settings.php:2268
2077
- msgid "This directory is already excluded from the scan."
 
 
2078
  msgstr ""
2079
 
2080
- #: classes/Views/Settings.php:2278
2081
- msgid "Option name is empty."
2082
  msgstr ""
2083
 
2084
- #: classes/Views/Settings.php:2374
2085
- msgid "Option removed from excluded scan types."
 
 
2086
  msgstr ""
2087
 
2088
- #: classes/Views/Settings.php:2379 classes/Views/Settings.php:2457
2089
- msgid "Something went wrong."
2090
  msgstr ""
2091
 
2092
- #: classes/Views/Settings.php:2406
2093
- msgid "A cron job is in progress."
 
 
 
2094
  msgstr ""
2095
 
2096
- #: classes/Views/Settings.php:2452 classes/Views/Settings.php:2489
2097
- msgid "Scan started successfully."
2098
  msgstr ""
2099
 
2100
- #: classes/Views/Settings.php:2514 classes/Views/Settings.php:2541
2101
- msgid "Tables has been reset."
 
 
2102
  msgstr ""
2103
 
2104
- #: classes/Views/Settings.php:2516 classes/Views/Settings.php:2543
2105
- msgid "Reset query failed."
2106
  msgstr ""
2107
 
2108
- #: classes/Views/Settings.php:2519 classes/Views/Settings.php:2546
2109
- msgid "Nonce Verification Failed."
 
 
2110
  msgstr ""
2111
 
2112
- #: classes/Views/SetupWizard.php:129
2113
- msgid "Welcome"
2114
  msgstr ""
2115
 
2116
- #: classes/Views/SetupWizard.php:133
2117
- msgid "Log Details"
 
 
2118
  msgstr ""
2119
 
2120
- #: classes/Views/SetupWizard.php:138
2121
- msgid "Log Retention"
2122
  msgstr ""
2123
 
2124
- #: classes/Views/SetupWizard.php:143
2125
- msgid "Access"
 
 
2126
  msgstr ""
2127
 
2128
- #: classes/Views/SetupWizard.php:153 classes/Views/SetupWizard.php:756
2129
- #: classes/Views/SetupWizard.php:757
2130
- msgid "Finish"
2131
  msgstr ""
2132
 
2133
- #: classes/Views/SetupWizard.php:197
2134
- msgid "Specified value in not a user."
 
 
2135
  msgstr ""
2136
 
2137
- #: classes/Views/SetupWizard.php:198
2138
- msgid "Specified value in not a role."
2139
  msgstr ""
2140
 
2141
- #: classes/Views/SetupWizard.php:199
2142
- msgid "Specified value in not an IP address."
 
 
2143
  msgstr ""
2144
 
2145
- #: classes/Views/SetupWizard.php:229
2146
- msgid "WP Security Audit Log &rsaquo; Setup Wizard"
2147
  msgstr ""
2148
 
2149
- #: classes/Views/SetupWizard.php:246
2150
- msgid "Close Wizard"
 
 
2151
  msgstr ""
2152
 
2153
- #: classes/Views/SetupWizard.php:326
2154
- msgid "Thank you for installing the WP Security Audit Log plugin."
2155
  msgstr ""
2156
 
2157
- #: classes/Views/SetupWizard.php:327
2158
  msgid ""
2159
- "This wizard will help you configure your WordPress activity log plugin and "
2160
- "get you started quickly."
2161
  msgstr ""
2162
 
2163
- #: classes/Views/SetupWizard.php:328
2164
- msgid ""
2165
- "Anything that can be configured in this wizard can be changed at a later "
2166
- "stage from the plugin settings. If you are an experienced user of this "
2167
- "plugin you can exit this wizard and configure all the settings manually."
2168
  msgstr ""
2169
 
2170
- #: classes/Views/SetupWizard.php:333
2171
- msgid "Start Configuring the Plugin"
 
 
2172
  msgstr ""
2173
 
2174
- #: classes/Views/SetupWizard.php:337
2175
- msgid "Exit Wizard"
2176
  msgstr ""
2177
 
2178
- #: classes/Views/SetupWizard.php:351
2179
- msgid "Please select the level of detail for your WordPress activity logs:"
 
 
2180
  msgstr ""
2181
 
2182
- #: classes/Views/SetupWizard.php:356
2183
- msgid ""
2184
- "Basic (I want a high level overview and I am not interested in the detail)"
2185
  msgstr ""
2186
 
2187
- #: classes/Views/SetupWizard.php:361
2188
- msgid "Geek (I want to know everything that is happening on my WordPress)"
2189
  msgstr ""
2190
 
2191
- #: classes/Views/SetupWizard.php:364
2192
  msgid ""
2193
- "Note: You can change the WordPress logging level from the plugin’s settings "
2194
- "anytime."
2195
  msgstr ""
2196
 
2197
- #: classes/Views/SetupWizard.php:372 classes/Views/SetupWizard.php:373
2198
- #: classes/Views/SetupWizard.php:438 classes/Views/SetupWizard.php:439
2199
- #: classes/Views/SetupWizard.php:567 classes/Views/SetupWizard.php:568
2200
- #: classes/Views/SetupWizard.php:687 classes/Views/SetupWizard.php:688
2201
- msgid "Next"
2202
  msgstr ""
2203
 
2204
- #: classes/Views/SetupWizard.php:412
2205
- msgid "How long do you want to keep the data in the WordPress activity Log?"
 
2206
  msgstr ""
2207
 
2208
- #: classes/Views/SetupWizard.php:417
2209
- msgid "6 months (data older than 6 months will be deleted)"
2210
  msgstr ""
2211
 
2212
- #: classes/Views/SetupWizard.php:422
2213
- msgid "12 months (data older than 12 months will be deleted)"
 
 
2214
  msgstr ""
2215
 
2216
- #: classes/Views/SetupWizard.php:427
2217
- msgid "Keep all data."
2218
  msgstr ""
2219
 
2220
- #: classes/Views/SetupWizard.php:430
2221
  msgid ""
2222
- "Note: You can change the WordPress activity log retention settings at any "
2223
- "time from the plugin settings later on."
2224
  msgstr ""
2225
 
2226
- #: classes/Views/SetupWizard.php:448
2227
- msgid ""
2228
- "The plugin stores the data in the WordPress database in a very efficient "
2229
- "way, though the more data you keep the more hard disk space it will consume. "
2230
- "If you need need to retain a lot of data we would recommend you to <a href="
2231
- "\"https://www.wpsecurityauditlog.com/premium-features/\" target=\"_blank"
2232
- "\">upgrade to Premium</a> and use the Database tools to store the WordPress "
2233
- "activity log in an external database."
2234
  msgstr ""
2235
 
2236
- #: classes/Views/SetupWizard.php:515
2237
- msgid ""
2238
- "By default only the users with administrator role can access the WordPress "
2239
- "activity log. Would you like to allow any other user or users with a role to "
2240
- "access the WordPress activity log?"
2241
  msgstr ""
2242
 
2243
- #: classes/Views/SetupWizard.php:531 classes/Views/SetupWizard.php:624
2244
- msgid "Usernames: "
2245
  msgstr ""
2246
 
2247
- #: classes/Views/SetupWizard.php:539 classes/Views/SetupWizard.php:643
2248
- msgid "Roles: "
2249
  msgstr ""
2250
 
2251
- #: classes/Views/SetupWizard.php:560
2252
- msgid ""
2253
- "Note: you can change the WordPress activity log privileges settings at any "
2254
- "time from the plugin settings."
2255
  msgstr ""
2256
 
2257
- #: classes/Views/SetupWizard.php:574
2258
- msgid ""
2259
- "The WordPress activity log contains sensitive data such as who logged in, "
2260
- "from where, when, and what they did."
2261
  msgstr ""
2262
 
2263
- #: classes/Views/SetupWizard.php:619
2264
- msgid ""
2265
- "The plugin will keep a log of everything that happens on your WordPress "
2266
- "website. If you would like to exclude a particular user, users with a role "
2267
- "or an IP address from the log specify them below. If not just click the Next "
2268
- "button."
2269
  msgstr ""
2270
 
2271
- #: classes/Views/SetupWizard.php:662
2272
- msgid "IP Address: "
 
 
2273
  msgstr ""
2274
 
2275
- #: classes/Views/SetupWizard.php:680
2276
- msgid "Note: You can change these exclusions anytime from the plugin settings."
2277
  msgstr ""
2278
 
2279
- #: classes/Views/SetupWizard.php:694
2280
  msgid ""
2281
- "The WordPress activity log contains sensitive data such as who logged in, "
2282
- "from where, when and what they did."
2283
  msgstr ""
2284
 
2285
- #: classes/Views/SetupWizard.php:727
2286
- msgid ""
2287
- "Your plugin is all set and it is ready to start keeping a record of "
2288
- "everything that is happening on your WordPress in a WordPress activity log."
2289
  msgstr ""
2290
 
2291
- #: classes/Views/SetupWizard.php:728
2292
- msgid "Below are a few useful links you might need to refer to:"
 
 
2293
  msgstr ""
2294
 
2295
- #: classes/Views/SetupWizard.php:733
2296
- msgid "Getting started with the WP Security Audit Log plugin"
2297
  msgstr ""
2298
 
2299
- #: classes/Views/SetupWizard.php:738
2300
- msgid "Knowledge Base & Support Documents"
 
 
2301
  msgstr ""
2302
 
2303
- #: classes/Views/SetupWizard.php:743
2304
- msgid "Benefits of keeping a WordPress activity log"
2305
  msgstr ""
2306
 
2307
- #: classes/Views/SetupWizard.php:748
2308
  msgid ""
2309
- "We trust this plugin meets all your activity log requirements. Should you "
2310
- "encounter any problems, have feature requests or would like to share some "
2311
- "feedback, <a href=\"https://www.wpsecurityauditlog.com/contact/\" target="
2312
- "\"_blank\">please get in touch!</a>"
2313
  msgstr ""
2314
 
2315
- #: classes/Views/ToggleAlerts.php:27 classes/Views/ToggleAlerts.php:41
2316
- msgid "Enable/Disable Events"
2317
  msgstr ""
2318
 
2319
- #: classes/Views/ToggleAlerts.php:184
2320
- msgid "Log Level: "
 
 
2321
  msgstr ""
2322
 
2323
- #: classes/Views/ToggleAlerts.php:189
2324
- msgid "Basic"
2325
  msgstr ""
2326
 
2327
- #: classes/Views/ToggleAlerts.php:194
2328
- msgid "Geek"
 
 
2329
  msgstr ""
2330
 
2331
- #: classes/Views/ToggleAlerts.php:197
2332
- msgid "Custom"
2333
  msgstr ""
2334
 
2335
- #: classes/Views/ToggleAlerts.php:201
2336
  msgid ""
2337
- "Use the Log level drop down menu above to use one of our preset log levels. "
2338
- "Alternatively you can enable or disable any of the individual events from "
2339
- "the below tabs. Refer to <a href=\"https://www.wpsecurityauditlog.com/"
2340
- "support-documentation/list-wordpress-audit-trail-alerts/\" target=\"_blank"
2341
- "\">the complete list of WordPress activity log event IDs</a> for reference "
2342
- "on all the events the plugin can keep a log of."
2343
  msgstr ""
2344
 
2345
- #: classes/Views/ToggleAlerts.php:209 defaults.php:489
2346
- msgid "Third Party Plugins"
2347
  msgstr ""
2348
 
2349
- #: classes/Views/ToggleAlerts.php:212
2350
- msgid "Visitor Events"
 
 
2351
  msgstr ""
2352
 
2353
- #: classes/Views/ToggleAlerts.php:229 classes/Views/ToggleAlerts.php:261
2354
- #: defaults.php:265
2355
- msgid "Custom Post Types"
2356
  msgstr ""
2357
 
2358
- #: classes/Views/ToggleAlerts.php:229 classes/Views/ToggleAlerts.php:261
2359
- #: defaults.php:305
2360
- msgid "Pages"
 
2361
  msgstr ""
2362
 
2363
- #: classes/Views/ToggleAlerts.php:264 classes/Views/ToggleAlerts.php:271
2364
- #: classes/Views/ToggleAlerts.php:329 defaults.php:493
2365
- msgid "BBPress Forum"
2366
  msgstr ""
2367
 
2368
- #: classes/Views/ToggleAlerts.php:265 classes/Views/ToggleAlerts.php:278
2369
- #: classes/Views/ToggleAlerts.php:342 defaults.php:567
2370
- msgid "WooCommerce"
 
2371
  msgstr ""
2372
 
2373
- #: classes/Views/ToggleAlerts.php:266 classes/Views/ToggleAlerts.php:285
2374
- #: classes/Views/ToggleAlerts.php:342 classes/Views/ToggleAlerts.php:350
2375
- #: defaults.php:522
2376
- msgid "WooCommerce Products"
2377
  msgstr ""
2378
 
2379
- #: classes/Views/ToggleAlerts.php:267 classes/Views/ToggleAlerts.php:292
2380
- #: classes/Views/ToggleAlerts.php:357 defaults.php:612
2381
- msgid "Yoast SEO"
 
2382
  msgstr ""
2383
 
2384
- #: classes/Views/ToggleAlerts.php:268 classes/Views/ToggleAlerts.php:301
2385
- #: classes/Views/ToggleAlerts.php:370 defaults.php:470
2386
- msgid "MultiSite"
2387
  msgstr ""
2388
 
2389
- #: classes/Views/ToggleAlerts.php:317
2390
- msgid "Code"
2391
- msgstr ""
2392
-
2393
- #: classes/Views/ToggleAlerts.php:319 classes/WidgetManager.php:87
2394
- msgid "Description"
2395
- msgstr ""
2396
-
2397
- #: classes/Views/ToggleAlerts.php:322 classes/Views/ToggleAlerts.php:484
2398
- #: classes/Views/ToggleAlerts.php:599
2399
- msgid "File Changes"
2400
- msgstr ""
2401
-
2402
- #: classes/Views/ToggleAlerts.php:323 defaults.php:196
2403
- msgid "Content"
2404
  msgstr ""
2405
 
2406
- #: classes/Views/ToggleAlerts.php:326
2407
- msgid ""
2408
- "<strong>Note:</strong> Post refers to any type of content, i.e. blog post, "
2409
- "page or a post with a custom post type."
2410
  msgstr ""
2411
 
2412
- #: classes/Views/ToggleAlerts.php:333
2413
  msgid ""
2414
- "The plugin BBPress is not installed on your website so these events have "
2415
- "been disabled."
2416
  msgstr ""
2417
 
2418
- #: classes/Views/ToggleAlerts.php:339
2419
- msgid "Forums"
2420
  msgstr ""
2421
 
2422
- #: classes/Views/ToggleAlerts.php:346
2423
- msgid ""
2424
- "The plugin WooCommerce is not installed on your website so these events have "
2425
- "been disabled."
2426
  msgstr ""
2427
 
2428
- #: classes/Views/ToggleAlerts.php:353
2429
- msgid "Products"
2430
  msgstr ""
2431
 
2432
- #: classes/Views/ToggleAlerts.php:361
2433
  msgid ""
2434
- "The plugin Yoast SEO is not installed on your website so these events have "
2435
- "been disabled."
2436
  msgstr ""
2437
 
2438
- #: classes/Views/ToggleAlerts.php:367
2439
- msgid "Post Changes"
2440
  msgstr ""
2441
 
2442
- #: classes/Views/ToggleAlerts.php:374
2443
- msgid ""
2444
- "Your website is a single site so the multisite events have been disabled."
2445
  msgstr ""
2446
 
2447
- #: classes/Views/ToggleAlerts.php:380 defaults.php:170
2448
- msgid "User Profiles"
2449
  msgstr ""
2450
 
2451
- #: classes/Views/ToggleAlerts.php:383 defaults.php:152
2452
- msgid "Other User Activity"
 
2453
  msgstr ""
2454
 
2455
- #: classes/Views/ToggleAlerts.php:386
2456
- msgid "Logins & Logouts"
2457
  msgstr ""
2458
 
2459
- #: classes/Views/ToggleAlerts.php:403
2460
- msgid "Not Implemented"
 
2461
  msgstr ""
2462
 
2463
- #: classes/Views/ToggleAlerts.php:406
2464
- msgid "Not Available"
2465
  msgstr ""
2466
 
2467
- #: classes/Views/ToggleAlerts.php:416
2468
- msgid "User Sessions"
 
2469
  msgstr ""
2470
 
2471
- #: classes/Views/ToggleAlerts.php:418
2472
- msgid "Files"
2473
  msgstr ""
2474
 
2475
- #: classes/Views/ToggleAlerts.php:422
2476
- msgid "Post Settings"
2477
  msgstr ""
2478
 
2479
- #: classes/Views/ToggleAlerts.php:424
2480
- msgid "Tags"
2481
  msgstr ""
2482
 
2483
- #: classes/Views/ToggleAlerts.php:426 classes/Views/ToggleAlerts.php:442
2484
- msgid "Categories"
2485
  msgstr ""
2486
 
2487
- #: classes/Views/ToggleAlerts.php:428
2488
- msgid "Custom Fields"
2489
  msgstr ""
2490
 
2491
- #: classes/Views/ToggleAlerts.php:430
2492
- msgid "Sites"
 
2493
  msgstr ""
2494
 
2495
- #: classes/Views/ToggleAlerts.php:434
2496
- msgid "Topics"
2497
  msgstr ""
2498
 
2499
- #: classes/Views/ToggleAlerts.php:436
2500
- msgid "Product Admin"
 
 
2501
  msgstr ""
2502
 
2503
- #: classes/Views/ToggleAlerts.php:438
2504
- msgid "Product Attribute"
2505
  msgstr ""
2506
 
2507
- #: classes/Views/ToggleAlerts.php:440
2508
- msgid "Store Admin"
 
 
2509
  msgstr ""
2510
 
2511
- #: classes/Views/ToggleAlerts.php:444
2512
- msgid "Attributes"
2513
  msgstr ""
2514
 
2515
- #: classes/Views/ToggleAlerts.php:446
2516
- msgid "Coupons"
2517
  msgstr ""
2518
 
2519
- #: classes/Views/ToggleAlerts.php:448
2520
- msgid "Orders"
2521
  msgstr ""
2522
 
2523
- #: classes/Views/ToggleAlerts.php:450
2524
- msgid "Website Changes"
 
 
2525
  msgstr ""
2526
 
2527
- #: classes/Views/ToggleAlerts.php:452
2528
- msgid "Plugin Settings"
2529
  msgstr ""
2530
 
2531
- #: classes/Views/ToggleAlerts.php:458
2532
- msgid "Cron Jobs"
 
 
2533
  msgstr ""
2534
 
2535
- #: classes/Views/ToggleAlerts.php:460
2536
- msgid "File Changes Scanning"
2537
  msgstr ""
2538
 
2539
- #: classes/Views/ToggleAlerts.php:503 classes/Views/ToggleAlerts.php:536
2540
  msgid ""
2541
- "Capture 404 requests to file (the log file are created in the /wp-content/"
2542
- "uploads/wp-security-audit-log/404s/ directory)"
2543
  msgstr ""
2544
 
2545
- #: classes/Views/ToggleAlerts.php:511 classes/Views/ToggleAlerts.php:544
2546
- msgid "Purge log files older than one month"
2547
  msgstr ""
2548
 
2549
- #: classes/Views/ToggleAlerts.php:516
2550
  msgid ""
2551
- "Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
2552
- "to non-existing pages from the same IP address. Increase the value in this "
2553
- "setting to the desired amount to keep a log of more or less requests."
2554
  msgstr ""
2555
 
2556
- #: classes/Views/ToggleAlerts.php:521 classes/Views/ToggleAlerts.php:554
2557
- msgid "Record the referrer that generated the 404 error."
2558
  msgstr ""
2559
 
2560
- #: classes/Views/ToggleAlerts.php:549
2561
  msgid ""
2562
- "Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
2563
- "to non-existing pages from the same IP address. Increase the value in this "
2564
- "setting to the desired amount to keep a log of more or less requests. Note "
2565
- "that by increasing this value to a high number, should your website be "
2566
- "scanned the plugin will consume more resources to log all the requests."
2567
  msgstr ""
2568
 
2569
- #: classes/Views/ToggleAlerts.php:566 classes/Views/ToggleAlerts.php:579
2570
- msgid ""
2571
- "Number of login attempts to log. Enter 0 to log all failed login attempts. "
2572
- "(By default the plugin only logs up to 10 failed login because the process "
2573
- "can be very resource intensive in case of a brute force attack)"
2574
  msgstr ""
2575
 
2576
- #: classes/Views/ToggleAlerts.php:592
2577
- msgid ""
2578
- "Log all stock changes. Disable this setting to only keep a log of stock "
2579
- "changes done manually via the WooCommerce dashboard. Therefore automated "
2580
- "stock changes typically done via customers placing orders or via other "
2581
- "plugins will not be logged."
2582
  msgstr ""
2583
 
2584
- #: classes/Views/ToggleAlerts.php:614
2585
- msgid "Configure the file integrity scan settings."
2586
  msgstr ""
2587
 
2588
- #: classes/Views/ToggleAlerts.php:629
2589
- msgid ""
2590
- "The plugin also keeps a log of some events that website visitors (non-logged "
2591
- "in users) do because it is typically required by site admins. You can "
2592
- "disable these events from here:"
2593
  msgstr ""
2594
 
2595
- #: classes/Views/ToggleAlerts.php:631
2596
- msgid "Enable website visitors events"
2597
  msgstr ""
2598
 
2599
- #: classes/Views/ToggleAlerts.php:637
2600
- msgid "Enable"
2601
  msgstr ""
2602
 
2603
- #: classes/Views/ToggleAlerts.php:642
2604
  msgid ""
2605
- "Below is the list of the events which are disabled when the above option is "
2606
- "disabled:"
2607
  msgstr ""
2608
 
2609
- #: classes/Views/ToggleAlerts.php:657
2610
- msgid "Save Changes"
2611
  msgstr ""
2612
 
2613
- #: classes/Views/ToggleAlerts.php:664
2614
- msgid "Log Level Updated"
 
 
2615
  msgstr ""
2616
 
2617
- #. translators: Alerts log level.
2618
- #: classes/Views/ToggleAlerts.php:668
2619
- #, php-format
2620
- msgid "The %s log level has been successfully loaded and applied."
2621
  msgstr ""
2622
 
2623
- #: classes/Views/ToggleAlerts.php:672
2624
- msgid "OK"
2625
  msgstr ""
2626
 
2627
- #: classes/Views/ToggleAlerts.php:686
2628
- msgid "Enable File Integrity Scanner"
2629
  msgstr ""
2630
 
2631
- #: classes/Views/ToggleAlerts.php:688
2632
  msgid ""
2633
- "The file integrity scanner is switched off. To enable this event it has to "
2634
- "be switched on."
2635
- msgstr ""
2636
-
2637
- #: classes/Views/ToggleAlerts.php:692
2638
- msgid "SWITCH ON"
2639
  msgstr ""
2640
 
2641
- #: classes/Views/ToggleAlerts.php:693
2642
- msgid "DISABLE EVENT"
2643
  msgstr ""
2644
 
2645
- #: classes/WidgetManager.php:55
2646
- msgid "Latest Events"
2647
  msgstr ""
2648
 
2649
- #: classes/WidgetManager.php:79
2650
- msgid "No alerts found."
2651
  msgstr ""
2652
 
2653
- #: defaults.php:73
2654
- msgid "Fatal run-time error."
2655
  msgstr ""
2656
 
2657
- #: defaults.php:77
2658
- msgid "Run-time warning (non-fatal error)."
2659
  msgstr ""
2660
 
2661
- #: defaults.php:81
2662
- msgid "Compile-time parse error."
2663
  msgstr ""
2664
 
2665
- #: defaults.php:85
2666
- msgid "Run-time notice."
2667
  msgstr ""
2668
 
2669
- #: defaults.php:89
2670
- msgid "Fatal error that occurred during startup."
2671
  msgstr ""
2672
 
2673
- #: defaults.php:93
2674
- msgid "Warnings that occurred during startup."
2675
  msgstr ""
2676
 
2677
- #: defaults.php:97
2678
- msgid "Fatal compile-time error."
2679
  msgstr ""
2680
 
2681
- #: defaults.php:101
2682
- msgid "Compile-time warning."
2683
  msgstr ""
2684
 
2685
- #: defaults.php:105
2686
- msgid "User-generated error message."
2687
  msgstr ""
2688
 
2689
- #: defaults.php:109
2690
- msgid "User-generated warning message."
2691
  msgstr ""
2692
 
2693
- #: defaults.php:113
2694
- msgid "User-generated notice message."
 
 
2695
  msgstr ""
2696
 
2697
- #: defaults.php:117
2698
- msgid "Non-standard/optimal code warning."
2699
  msgstr ""
2700
 
2701
- #: defaults.php:121
2702
- msgid "Catchable fatal error."
 
 
2703
  msgstr ""
2704
 
2705
- #: defaults.php:125
2706
- msgid "Run-time deprecation notices."
2707
  msgstr ""
2708
 
2709
- #: defaults.php:129
2710
- msgid "Run-time user deprecation notices."
2711
  msgstr ""
2712
 
2713
- #: defaults.php:134
2714
- msgid "Critical, high-impact messages."
2715
  msgstr ""
2716
 
2717
- #: defaults.php:138
2718
- msgid "Debug informational messages."
2719
  msgstr ""
2720
 
2721
- #: defaults.php:148
2722
- msgid "Users Profiles & Activity"
2723
  msgstr ""
2724
 
2725
- #: defaults.php:153
2726
- msgid "User logged in"
2727
  msgstr ""
2728
 
2729
- #: defaults.php:153
2730
- msgid "Successfully logged in."
2731
  msgstr ""
2732
 
2733
- #: defaults.php:154
2734
- msgid "User logged out"
2735
  msgstr ""
2736
 
2737
- #: defaults.php:154
2738
- msgid "Successfully logged out."
 
 
2739
  msgstr ""
2740
 
2741
- #: defaults.php:155
2742
- msgid "Login failed"
2743
  msgstr ""
2744
 
2745
- #: defaults.php:155
2746
- msgid "%Attempts% failed login(s) detected."
2747
  msgstr ""
2748
 
2749
- #: defaults.php:156
2750
- msgid "Login failed / non existing user"
2751
  msgstr ""
2752
 
2753
- #: defaults.php:156
2754
  msgid ""
2755
- "%Attempts% failed login(s) detected using non existing user. %LogFileText%"
2756
  msgstr ""
2757
 
2758
- #: defaults.php:157
2759
- msgid "Login blocked"
2760
  msgstr ""
2761
 
2762
- #: defaults.php:157
2763
  msgid ""
2764
- "Blocked from logging in because the same WordPress user is logged in from "
2765
- "%ClientIP%."
2766
  msgstr ""
2767
 
2768
- #: defaults.php:158
2769
- msgid "User logged in with existing session(s)"
2770
  msgstr ""
2771
 
2772
- #: defaults.php:158
2773
  msgid ""
2774
- "Successfully logged in. Another session from %IPAddress% for this user "
2775
- "already exist."
2776
  msgstr ""
2777
 
2778
- #: defaults.php:159
2779
- msgid "User logged out all other sessions with the same username"
2780
  msgstr ""
2781
 
2782
- #: defaults.php:159
2783
- msgid "Logged out all other sessions with the same username."
 
 
2784
  msgstr ""
2785
 
2786
- #: defaults.php:160
2787
- msgid "User session destroyed and logged out"
2788
  msgstr ""
2789
 
2790
- #: defaults.php:160
2791
- msgid "Logged out session %TargetSessionID% which belonged to %TargetUserName%"
2792
  msgstr ""
2793
 
2794
- #: defaults.php:161
2795
- msgid "User uploaded file from Uploads directory"
2796
  msgstr ""
2797
 
2798
- #: defaults.php:161
2799
- msgid "Uploaded the file %FileName% in %FilePath%."
2800
  msgstr ""
2801
 
2802
- #: defaults.php:162
2803
- msgid "User deleted file from Uploads directory"
2804
  msgstr ""
2805
 
2806
- #: defaults.php:162
2807
- msgid "Deleted the file %FileName% from %FilePath%."
 
2808
  msgstr ""
2809
 
2810
- #: defaults.php:163
2811
- msgid "User requests non-existing pages (404 Error Pages)"
2812
  msgstr ""
2813
 
2814
- #: defaults.php:163
2815
- msgid ""
2816
- "Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
2817
- "%LinkFile%%URL%"
2818
  msgstr ""
2819
 
2820
- #: defaults.php:164
2821
- msgid "Website Visitor User requests non-existing pages (404 Error Pages)"
2822
  msgstr ""
2823
 
2824
- #: defaults.php:164
2825
- msgid ""
2826
- "Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
2827
- "% %Msg%. %LinkFile%%URL%"
2828
  msgstr ""
2829
 
2830
- #: defaults.php:171
2831
- msgid "New user was created on WordPress"
2832
  msgstr ""
2833
 
2834
- #: defaults.php:171
2835
  msgid ""
2836
- "A new user %NewUserData->Username% was created with role of %NewUserData-"
2837
- ">Roles%."
2838
  msgstr ""
2839
 
2840
- #: defaults.php:172
2841
- msgid "User created another WordPress user"
2842
  msgstr ""
2843
 
2844
- #: defaults.php:172
2845
- msgid ""
2846
- "%UserChanger% created a new user %NewUserData->Username% with the role of "
2847
- "%NewUserData->Roles%."
2848
  msgstr ""
2849
 
2850
- #: defaults.php:173
2851
- msgid "The role of a user was changed by another WordPress user"
2852
  msgstr ""
2853
 
2854
- #: defaults.php:173
2855
- msgid ""
2856
- "Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
2857
- "%multisite_text%."
2858
  msgstr ""
2859
 
2860
- #: defaults.php:174
2861
- msgid "User has changed his or her password"
2862
  msgstr ""
2863
 
2864
- #: defaults.php:174
2865
- msgid "Changed the password."
2866
  msgstr ""
2867
 
2868
- #: defaults.php:175
2869
- msgid "User changed another user's password"
2870
  msgstr ""
2871
 
2872
- #: defaults.php:175
2873
  msgid ""
2874
- "Changed the password for the user %TargetUserData->Username% with the role "
2875
- "of %TargetUserData->Roles%."
2876
  msgstr ""
2877
 
2878
- #: defaults.php:176
2879
- msgid "User changed his or her email address"
2880
  msgstr ""
2881
 
2882
- #: defaults.php:176
2883
- msgid "Changed the email address from %OldEmail% to %NewEmail%."
2884
  msgstr ""
2885
 
2886
- #: defaults.php:177
2887
- msgid "User changed another user's email address"
2888
  msgstr ""
2889
 
2890
- #: defaults.php:177
2891
- msgid ""
2892
- "Changed the email address of the user %TargetUsername% from %OldEmail% to "
2893
- "%NewEmail%."
2894
  msgstr ""
2895
 
2896
- #: defaults.php:178
2897
- msgid "User was deleted by another user"
 
2898
  msgstr ""
2899
 
2900
- #: defaults.php:178
2901
- msgid ""
2902
- "Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
2903
- ">Roles%."
2904
  msgstr ""
2905
 
2906
- #: defaults.php:179
2907
- msgid "User opened the profile page of another user"
2908
  msgstr ""
2909
 
2910
- #: defaults.php:179
2911
- msgid "%UserChanger% opened the profile page of the user %TargetUsername%."
2912
  msgstr ""
2913
 
2914
- #: defaults.php:180
2915
- msgid "User updated a custom field value for a user"
2916
  msgstr ""
2917
 
2918
- #: defaults.php:180
2919
- msgid ""
2920
- "Changed the value of the custom field %custom_field_name%%ReportText% for "
2921
- "the user %TargetUsername%.%ChangeText%"
2922
  msgstr ""
2923
 
2924
- #: defaults.php:181
2925
- msgid "User created a custom field value for a user"
2926
  msgstr ""
2927
 
2928
- #: defaults.php:181
2929
- msgid ""
2930
- "Created the value of the custom field %custom_field_name% with %new_value% "
2931
- "for the user %TargetUsername%."
2932
  msgstr ""
2933
 
2934
- #: defaults.php:182
2935
- msgid "User changed first name for a user"
2936
  msgstr ""
2937
 
2938
- #: defaults.php:182
2939
- msgid ""
2940
- "Changed the first name of the user %TargetUsername% from %old_firstname% to "
2941
- "%new_firstname%"
2942
  msgstr ""
2943
 
2944
- #: defaults.php:183
2945
- msgid "User changed last name for a user"
2946
  msgstr ""
2947
 
2948
- #: defaults.php:183
2949
- msgid ""
2950
- "Changed the last name of the user %TargetUsername% from %old_lastname% to "
2951
- "%new_lastname%"
2952
  msgstr ""
2953
 
2954
- #: defaults.php:184
2955
- msgid "User changed nickname for a user"
 
 
2956
  msgstr ""
2957
 
2958
- #: defaults.php:184
2959
- msgid ""
2960
- "Changed the nickname of the user %TargetUsername% from %old_nickname% to "
2961
- "%new_nickname%"
2962
  msgstr ""
2963
 
2964
- #: defaults.php:185
2965
- msgid "User changed the display name for a user"
2966
  msgstr ""
2967
 
2968
- #: defaults.php:185
2969
- msgid ""
2970
- "Changed the Display name publicly of user %TargetUsername% from "
2971
- "%old_displayname% to %new_displayname%"
2972
  msgstr ""
2973
 
2974
- #: defaults.php:192
2975
- msgid "Content & Comments"
2976
  msgstr ""
2977
 
2978
- #: defaults.php:197
2979
- msgid "User created a new post and saved it as draft"
2980
  msgstr ""
2981
 
2982
- #: defaults.php:197
2983
  msgid ""
2984
- "Created a new %PostType% titled %PostTitle% and saved it as draft. "
2985
- "%EditorLinkPost%."
2986
  msgstr ""
2987
 
2988
- #: defaults.php:198
2989
- msgid "User published a post"
2990
  msgstr ""
2991
 
2992
- #: defaults.php:198
2993
  msgid ""
2994
- "Published a %PostType% titled %PostTitle%. URL is %PostUrl%. %EditorLinkPost"
2995
- "%."
2996
- msgstr ""
2997
-
2998
- #: defaults.php:199
2999
- msgid "User modified a post"
3000
  msgstr ""
3001
 
3002
- #: defaults.php:199
3003
- msgid ""
3004
- "Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3005
- "%EditorLinkPost%."
3006
  msgstr ""
3007
 
3008
- #: defaults.php:200
3009
- msgid "User permanently deleted a post from the trash"
3010
  msgstr ""
3011
 
3012
- #: defaults.php:200
3013
- msgid ""
3014
- "Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
3015
  msgstr ""
3016
 
3017
- #: defaults.php:201
3018
- msgid "User moved a post to the trash"
3019
  msgstr ""
3020
 
3021
- #: defaults.php:201
3022
- msgid ""
3023
- "Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
3024
- "%PostUrl%."
3025
  msgstr ""
3026
 
3027
- #: defaults.php:202
3028
- msgid "User restored a post from trash"
3029
  msgstr ""
3030
 
3031
- #: defaults.php:202
3032
- msgid ""
3033
- "The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
3034
- "URL is: %PostUrl%. %EditorLinkPost%."
3035
  msgstr ""
3036
 
3037
- #: defaults.php:203
3038
- msgid "User changed post URL"
3039
  msgstr ""
3040
 
3041
- #: defaults.php:203
3042
- msgid ""
3043
- "Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
3044
- "%.%ChangeText% %EditorLinkPost%."
3045
  msgstr ""
3046
 
3047
- #: defaults.php:204
3048
- msgid "User changed post author"
3049
  msgstr ""
3050
 
3051
- #: defaults.php:204
3052
- msgid ""
3053
- "Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
3054
- "%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
3055
  msgstr ""
3056
 
3057
- #: defaults.php:205
3058
- msgid "User changed post status"
3059
  msgstr ""
3060
 
3061
- #: defaults.php:205
3062
  msgid ""
3063
- "Changed the status of the %PostType% titled %PostTitle% from %OldStatus% to "
3064
- "%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
3065
  msgstr ""
3066
 
3067
- #: defaults.php:206
3068
- msgid "User changed the visibility of a post"
3069
  msgstr ""
3070
 
3071
- #: defaults.php:206
3072
- msgid ""
3073
- "Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
3074
- "from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
3075
  msgstr ""
3076
 
3077
- #: defaults.php:207
3078
- msgid "User changed the date of a post"
3079
  msgstr ""
3080
 
3081
- #: defaults.php:207
3082
- msgid ""
3083
- "Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
3084
- "%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
3085
  msgstr ""
3086
 
3087
- #: defaults.php:208
3088
- msgid "User changed the parent of a page"
3089
- msgstr ""
3090
-
3091
- #: defaults.php:208
3092
- msgid ""
3093
- "Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
3094
- "%OldParentName% to %NewParentName%. %EditorLinkPost%."
3095
- msgstr ""
3096
-
3097
- #: defaults.php:209
3098
- msgid "User changed the template of a page"
3099
- msgstr ""
3100
-
3101
- #: defaults.php:209
3102
- msgid ""
3103
- "Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
3104
- "%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
3105
- msgstr ""
3106
-
3107
- #: defaults.php:210
3108
- msgid "User set a post as sticky"
3109
- msgstr ""
3110
-
3111
- #: defaults.php:210
3112
- msgid ""
3113
- "Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
3114
- msgstr ""
3115
-
3116
- #: defaults.php:211
3117
- msgid "User removed post from sticky"
3118
- msgstr ""
3119
-
3120
- #: defaults.php:211
3121
- msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
3122
- msgstr ""
3123
-
3124
- #: defaults.php:212
3125
- msgid "User modified the content of a post"
3126
- msgstr ""
3127
-
3128
- #: defaults.php:212
3129
- msgid ""
3130
- "Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
3131
- "URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
3132
- msgstr ""
3133
-
3134
- #: defaults.php:213
3135
- msgid "User submitted a post for review"
3136
- msgstr ""
3137
-
3138
- #: defaults.php:213
3139
- msgid ""
3140
- "Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
3141
- "%EditorLinkPost%."
3142
- msgstr ""
3143
-
3144
- #: defaults.php:214
3145
- msgid "User scheduled a post"
3146
- msgstr ""
3147
-
3148
- #: defaults.php:214
3149
- msgid ""
3150
- "Scheduled the %PostType% titled %PostTitle% to be published on "
3151
- "%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
3152
- msgstr ""
3153
-
3154
- #: defaults.php:215
3155
- msgid "User changed title of a post"
3156
- msgstr ""
3157
-
3158
- #: defaults.php:215
3159
- msgid ""
3160
- "Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
3161
- "%. URL is: %PostUrl%. %EditorLinkPost%."
3162
- msgstr ""
3163
-
3164
- #: defaults.php:216
3165
- msgid "User opened a post in the editor"
3166
- msgstr ""
3167
-
3168
- #: defaults.php:216
3169
- msgid ""
3170
- "Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
3171
- "%PostUrl%. %EditorLinkPost%."
3172
- msgstr ""
3173
-
3174
- #: defaults.php:217
3175
- msgid "User viewed a post"
3176
- msgstr ""
3177
-
3178
- #: defaults.php:217
3179
- msgid ""
3180
- "Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3181
- "%EditorLinkPost%."
3182
- msgstr ""
3183
-
3184
- #: defaults.php:218
3185
- msgid "A plugin modified a post"
3186
- msgstr ""
3187
-
3188
- #: defaults.php:218
3189
- msgid ""
3190
- "Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
3191
- "%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
3192
- msgstr ""
3193
-
3194
- #: defaults.php:219
3195
- msgid "User disabled Comments/Trackbacks and Pingbacks in a post"
3196
- msgstr ""
3197
-
3198
- #: defaults.php:219
3199
- msgid ""
3200
- "Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3201
- "%PostUrl%. %EditorLinkPost%."
3202
- msgstr ""
3203
-
3204
- #: defaults.php:220
3205
- msgid "User enabled Comments/Trackbacks and Pingbacks in a post"
3206
- msgstr ""
3207
-
3208
- #: defaults.php:220
3209
- msgid ""
3210
- "Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
3211
- "%PostUrl%. %EditorLinkPost%."
3212
- msgstr ""
3213
-
3214
- #: defaults.php:221
3215
- msgid "User added post tag"
3216
- msgstr ""
3217
-
3218
- #: defaults.php:221
3219
- msgid ""
3220
- "Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
3221
- "%PostUrl%. %EditorLinkPost%."
3222
- msgstr ""
3223
-
3224
- #: defaults.php:222
3225
- msgid "User removed post tag"
3226
- msgstr ""
3227
-
3228
- #: defaults.php:222
3229
- msgid ""
3230
- "Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
3231
- "%PostUrl%. %EditorLinkPost%."
3232
- msgstr ""
3233
-
3234
- #: defaults.php:223
3235
- msgid "User created new tag"
3236
- msgstr ""
3237
-
3238
- #: defaults.php:223
3239
- msgid "Added a new tag called %TagName%. View the tag: %TagLink%."
3240
- msgstr ""
3241
-
3242
- #: defaults.php:224
3243
- msgid "User deleted tag"
3244
- msgstr ""
3245
-
3246
- #: defaults.php:224
3247
- msgid "Deleted the tag %TagName%."
3248
- msgstr ""
3249
-
3250
- #: defaults.php:225
3251
- msgid "User renamed tag"
3252
- msgstr ""
3253
-
3254
- #: defaults.php:225
3255
- msgid "Renamed a tag from %old_name% to %new_name%. View the tag: %TagLink%."
3256
- msgstr ""
3257
-
3258
- #: defaults.php:226
3259
- msgid "User changed tag slug"
3260
- msgstr ""
3261
-
3262
- #: defaults.php:226
3263
- msgid ""
3264
- "Changed the slug of tag %tag% from %old_slug% to %new_slug%. View the tag: "
3265
- "%TagLink%."
3266
- msgstr ""
3267
-
3268
- #: defaults.php:227
3269
- msgid "User changed tag description"
3270
- msgstr ""
3271
-
3272
- #: defaults.php:227
3273
- msgid ""
3274
- "Changed the description of the tag %tag%%ReportText%.%ChangeText% View the "
3275
- "tag: %TagLink%."
3276
- msgstr ""
3277
-
3278
- #: defaults.php:228
3279
- msgid "User changed post category"
3280
- msgstr ""
3281
-
3282
- #: defaults.php:228
3283
- msgid ""
3284
- "Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
3285
- "%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
3286
- msgstr ""
3287
-
3288
- #: defaults.php:229
3289
- msgid "User created new category"
3290
- msgstr ""
3291
-
3292
- #: defaults.php:229
3293
- msgid ""
3294
- "Created a new category called %CategoryName%. Category slug is %Slug%. "
3295
- "%CategoryLink%."
3296
- msgstr ""
3297
-
3298
- #: defaults.php:230
3299
- msgid "User deleted category"
3300
- msgstr ""
3301
-
3302
- #: defaults.php:230
3303
- msgid ""
3304
- "Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
3305
- "%."
3306
- msgstr ""
3307
-
3308
- #: defaults.php:231
3309
- msgid "Changed the parent of a category"
3310
- msgstr ""
3311
-
3312
- #: defaults.php:231
3313
- msgid ""
3314
- "Changed the parent of the category %CategoryName% from %OldParent% to "
3315
- "%NewParent%. %CategoryLink%."
3316
- msgstr ""
3317
-
3318
- #: defaults.php:232
3319
- msgid "User changed category name"
3320
- msgstr ""
3321
-
3322
- #: defaults.php:232
3323
- msgid "Changed the name of the category %old_name% to %new_name%."
3324
- msgstr ""
3325
-
3326
- #: defaults.php:233
3327
- msgid "User changed category slug"
3328
- msgstr ""
3329
-
3330
- #: defaults.php:233
3331
- msgid ""
3332
- "Changed the slug of the category %CategoryName% from %old_slug% to %new_slug"
3333
- "%."
3334
- msgstr ""
3335
-
3336
- #: defaults.php:234
3337
- msgid "User created a custom field for a post"
3338
- msgstr ""
3339
-
3340
- #: defaults.php:234
3341
- msgid ""
3342
- "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3343
- "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3344
- "%EditorLinkPost%.<br>%MetaLink%."
3345
- msgstr ""
3346
-
3347
- #: defaults.php:235
3348
- msgid "User updated a custom field value for a post"
3349
- msgstr ""
3350
-
3351
- #: defaults.php:235
3352
- msgid ""
3353
- "Modified the value of the custom field %MetaKey%%ReportText% in the "
3354
- "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
3355
- "%EditorLinkPost%.<br>%MetaLink%."
3356
- msgstr ""
3357
-
3358
- #: defaults.php:236
3359
- msgid "User deleted a custom field from a post"
3360
- msgstr ""
3361
-
3362
- #: defaults.php:236
3363
- msgid ""
3364
- "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
3365
- "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
3366
- msgstr ""
3367
-
3368
- #: defaults.php:237
3369
- msgid "User updated a custom field name for a post"
3370
- msgstr ""
3371
-
3372
- #: defaults.php:237
3373
- msgid ""
3374
- "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
3375
- "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
3376
- "%EditorLinkPost%.<br>%MetaLink%."
3377
- msgstr ""
3378
-
3379
- #: defaults.php:243
3380
- msgid "Comments"
3381
- msgstr ""
3382
-
3383
- #: defaults.php:244
3384
- msgid "User approved a comment"
3385
- msgstr ""
3386
-
3387
- #: defaults.php:244
3388
- msgid ""
3389
- "Approved the comment posted in response to the post %PostTitle% by %Author% "
3390
- "on %CommentLink%."
3391
- msgstr ""
3392
-
3393
- #: defaults.php:245
3394
- msgid "User unapproved a comment"
3395
- msgstr ""
3396
-
3397
- #: defaults.php:245
3398
- msgid ""
3399
- "Unapproved the comment posted in response to the post %PostTitle% by %Author"
3400
- "% on %CommentLink%."
3401
- msgstr ""
3402
-
3403
- #: defaults.php:246
3404
- msgid "User replied to a comment"
3405
- msgstr ""
3406
-
3407
- #: defaults.php:246
3408
- msgid ""
3409
- "Replied to the comment posted in response to the post %PostTitle% by %Author"
3410
- "% on %CommentLink%."
3411
- msgstr ""
3412
-
3413
- #: defaults.php:247
3414
- msgid "User edited a comment"
3415
- msgstr ""
3416
-
3417
- #: defaults.php:247
3418
- msgid ""
3419
- "Edited a comment posted in response to the post %PostTitle% by %Author% on "
3420
- "%CommentLink%."
3421
- msgstr ""
3422
-
3423
- #: defaults.php:248
3424
- msgid "User marked a comment as Spam"
3425
- msgstr ""
3426
-
3427
- #: defaults.php:248
3428
- msgid ""
3429
- "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3430
- "%CommentLink% as Spam."
3431
- msgstr ""
3432
-
3433
- #: defaults.php:249
3434
- msgid "User marked a comment as Not Spam"
3435
- msgstr ""
3436
-
3437
- #: defaults.php:249
3438
- msgid ""
3439
- "Marked the comment posted in response to the post %PostTitle% by %Author% on "
3440
- "%CommentLink% as Not Spam."
3441
- msgstr ""
3442
-
3443
- #: defaults.php:250
3444
- msgid "User moved a comment to trash"
3445
- msgstr ""
3446
-
3447
- #: defaults.php:250
3448
- msgid ""
3449
- "Moved the comment posted in response to the post %PostTitle% by %Author% on "
3450
- "%Date% to trash."
3451
- msgstr ""
3452
-
3453
- #: defaults.php:251
3454
- msgid "User restored a comment from the trash"
3455
- msgstr ""
3456
-
3457
- #: defaults.php:251
3458
- msgid ""
3459
- "Restored the comment posted in response to the post %PostTitle% by %Author% "
3460
- "on %CommentLink% from the trash."
3461
- msgstr ""
3462
-
3463
- #: defaults.php:252
3464
- msgid "User permanently deleted a comment"
3465
- msgstr ""
3466
-
3467
- #: defaults.php:252
3468
- msgid ""
3469
- "Permanently deleted the comment posted in response to the post %PostTitle% "
3470
- "by %Author% on %Date%."
3471
- msgstr ""
3472
-
3473
- #: defaults.php:253
3474
- msgid "User posted a comment"
3475
- msgstr ""
3476
-
3477
- #: defaults.php:253 defaults.php:254
3478
- msgid "%CommentMsg% on %CommentLink%."
3479
- msgstr ""
3480
-
3481
- #: defaults.php:254
3482
- msgid "Visitor posted a comment"
3483
- msgstr ""
3484
-
3485
- #: defaults.php:266
3486
- msgid "User modified a draft blog post"
3487
- msgstr ""
3488
-
3489
- #: defaults.php:266
3490
- msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3491
- msgstr ""
3492
-
3493
- #: defaults.php:267
3494
- msgid "User created a new post with custom post type and saved it as draft"
3495
- msgstr ""
3496
-
3497
- #: defaults.php:267
3498
- msgid ""
3499
- "Created a new custom post called %PostTitle% of type %PostType%. "
3500
- "%EditorLinkPost%."
3501
- msgstr ""
3502
-
3503
- #: defaults.php:268
3504
- msgid "User published a post with custom post type"
3505
- msgstr ""
3506
-
3507
- #: defaults.php:268
3508
- msgid ""
3509
- "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3510
- "%. %EditorLinkPost%."
3511
- msgstr ""
3512
-
3513
- #: defaults.php:269
3514
- msgid "User modified a post with custom post type"
3515
- msgstr ""
3516
-
3517
- #: defaults.php:269
3518
- msgid ""
3519
- "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
3520
- "%. %EditorLinkPost%."
3521
- msgstr ""
3522
-
3523
- #: defaults.php:270
3524
- msgid "User modified a draft post with custom post type"
3525
- msgstr ""
3526
-
3527
- #: defaults.php:270
3528
- msgid ""
3529
- "Modified the draft custom post %PostTitle% of type is %PostType%. "
3530
- "%EditorLinkPost%."
3531
- msgstr ""
3532
-
3533
- #: defaults.php:271
3534
- msgid "User permanently deleted post with custom post type"
3535
- msgstr ""
3536
-
3537
- #: defaults.php:271
3538
- msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3539
- msgstr ""
3540
-
3541
- #: defaults.php:272
3542
- msgid "User moved post with custom post type to trash"
3543
- msgstr ""
3544
-
3545
- #: defaults.php:272
3546
- msgid ""
3547
- "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
3548
- "%PostUrl%."
3549
- msgstr ""
3550
-
3551
- #: defaults.php:273
3552
- msgid "User restored post with custom post type from trash"
3553
- msgstr ""
3554
-
3555
- #: defaults.php:273
3556
- msgid ""
3557
- "The custom post %PostTitle% of type %PostType% has been restored from trash. "
3558
- "%EditorLinkPost%."
3559
- msgstr ""
3560
-
3561
- #: defaults.php:274
3562
- msgid "User changed the category of a post with custom post type"
3563
- msgstr ""
3564
-
3565
- #: defaults.php:274
3566
- msgid ""
3567
- "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
3568
- "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3569
- msgstr ""
3570
-
3571
- #: defaults.php:275
3572
- msgid "User changed the URL of a post with custom post type"
3573
- msgstr ""
3574
-
3575
- #: defaults.php:275
3576
- msgid ""
3577
- "Changed the URL of the custom post %PostTitle% of type %PostType% from "
3578
- "%OldUrl% to %NewUrl%. %EditorLinkPost%."
3579
- msgstr ""
3580
-
3581
- #: defaults.php:276
3582
- msgid "User changed the author or post with custom post type"
3583
- msgstr ""
3584
-
3585
- #: defaults.php:276
3586
- msgid ""
3587
- "Changed the author of custom post %PostTitle% of type %PostType% from "
3588
- "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3589
- msgstr ""
3590
-
3591
- #: defaults.php:277
3592
- msgid "User changed the status of post with custom post type"
3593
- msgstr ""
3594
-
3595
- #: defaults.php:277
3596
- msgid ""
3597
- "Changed the status of custom post %PostTitle% of type %PostType% from "
3598
- "%OldStatus% to %NewStatus%. %EditorLinkPost%."
3599
- msgstr ""
3600
-
3601
- #: defaults.php:278
3602
- msgid "User changed the visibility of a post with custom post type"
3603
- msgstr ""
3604
-
3605
- #: defaults.php:278
3606
- msgid ""
3607
- "Changed the visibility of the custom post %PostTitle% of type %PostType% "
3608
- "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3609
- msgstr ""
3610
-
3611
- #: defaults.php:279
3612
- msgid "User changed the date of post with custom post type"
3613
- msgstr ""
3614
-
3615
- #: defaults.php:279
3616
- msgid ""
3617
- "Changed the date of the custom post %PostTitle% of type %PostType% from "
3618
- "%OldDate% to %NewDate%. %EditorLinkPost%."
3619
- msgstr ""
3620
-
3621
- #: defaults.php:280
3622
- msgid "User created a custom field for a custom post type"
3623
- msgstr ""
3624
-
3625
- #: defaults.php:280
3626
- msgid ""
3627
- "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
3628
- "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3629
- msgstr ""
3630
-
3631
- #: defaults.php:281
3632
- msgid "User updated a custom field for a custom post type"
3633
- msgstr ""
3634
-
3635
- #: defaults.php:281
3636
- msgid ""
3637
- "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3638
- "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
3639
- "%.<br>%MetaLink%."
3640
- msgstr ""
3641
-
3642
- #: defaults.php:282
3643
- msgid "User deleted a custom field from a custom post type"
3644
- msgstr ""
3645
-
3646
- #: defaults.php:282
3647
- msgid ""
3648
- "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
3649
- "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3650
- msgstr ""
3651
-
3652
- #: defaults.php:283
3653
- msgid "User updated a custom field name for a custom post type"
3654
- msgstr ""
3655
-
3656
- #: defaults.php:283
3657
- msgid ""
3658
- "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
3659
- "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3660
- msgstr ""
3661
-
3662
- #: defaults.php:284
3663
- msgid "User modified content for a published custom post type"
3664
- msgstr ""
3665
-
3666
- #: defaults.php:284
3667
- msgid ""
3668
- "Modified the content of the published custom post type %PostTitle%. Post URL "
3669
- "is %PostUrl%.%EditorLinkPost%."
3670
- msgstr ""
3671
-
3672
- #: defaults.php:285
3673
- msgid "User modified content for a draft post"
3674
- msgstr ""
3675
-
3676
- #: defaults.php:285
3677
- msgid ""
3678
- "Modified the content of the draft post %PostTitle%.%RevisionLink% "
3679
- "%EditorLinkPost%."
3680
- msgstr ""
3681
-
3682
- #: defaults.php:286
3683
- msgid "User modified content for a draft custom post type"
3684
- msgstr ""
3685
-
3686
- #: defaults.php:286
3687
- msgid ""
3688
- "Modified the content of the draft custom post type %PostTitle%."
3689
- "%EditorLinkPost%."
3690
- msgstr ""
3691
-
3692
- #: defaults.php:287
3693
- msgid "User modified content of a post"
3694
- msgstr ""
3695
-
3696
- #: defaults.php:287
3697
- msgid ""
3698
- "Modified the content of post %PostTitle% which is submitted for review."
3699
- "%RevisionLink% %EditorLinkPost%."
3700
- msgstr ""
3701
-
3702
- #: defaults.php:288
3703
- msgid "User scheduled a custom post type"
3704
- msgstr ""
3705
-
3706
- #: defaults.php:288
3707
- msgid ""
3708
- "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
3709
- "%EditorLinkPost%."
3710
- msgstr ""
3711
-
3712
- #: defaults.php:289
3713
- msgid "User changed title of a custom post type"
3714
- msgstr ""
3715
-
3716
- #: defaults.php:289
3717
- msgid ""
3718
- "Changed the title of the custom post %OldTitle% to %NewTitle%. "
3719
- "%EditorLinkPost%."
3720
- msgstr ""
3721
-
3722
- #: defaults.php:290
3723
- msgid "User opened a custom post type in the editor"
3724
- msgstr ""
3725
-
3726
- #: defaults.php:290
3727
- msgid ""
3728
- "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
3729
- "the post: %EditorLinkPost%."
3730
- msgstr ""
3731
-
3732
- #: defaults.php:291
3733
- msgid "User viewed a custom post type"
3734
- msgstr ""
3735
-
3736
- #: defaults.php:291
3737
- msgid ""
3738
- "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
3739
- "%PostUrl%."
3740
- msgstr ""
3741
-
3742
- #: defaults.php:292
3743
- msgid "A plugin created a custom post"
3744
- msgstr ""
3745
-
3746
- #: defaults.php:292
3747
- msgid "A plugin automatically created the following custom post: %PostTitle%."
3748
- msgstr ""
3749
-
3750
- #: defaults.php:293
3751
- msgid "A plugin deleted a custom post"
3752
- msgstr ""
3753
-
3754
- #: defaults.php:293
3755
- msgid "A plugin automatically deleted the following custom post: %PostTitle%."
3756
- msgstr ""
3757
-
3758
- #: defaults.php:294
3759
- msgid "A plugin modified a custom post"
3760
- msgstr ""
3761
-
3762
- #: defaults.php:294
3763
- msgid ""
3764
- "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
3765
- msgstr ""
3766
-
3767
- #: defaults.php:306
3768
- msgid "User created a new WordPress page and saved it as draft"
3769
- msgstr ""
3770
-
3771
- #: defaults.php:306
3772
- msgid ""
3773
- "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
3774
- "%."
3775
- msgstr ""
3776
-
3777
- #: defaults.php:307
3778
- msgid "User published a WordPress page"
3779
- msgstr ""
3780
-
3781
- #: defaults.php:307
3782
- msgid ""
3783
- "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
3784
- msgstr ""
3785
-
3786
- #: defaults.php:308
3787
- msgid "User modified a published WordPress page"
3788
- msgstr ""
3789
-
3790
- #: defaults.php:308
3791
- msgid ""
3792
- "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
3793
- "%EditorLinkPage%."
3794
- msgstr ""
3795
-
3796
- #: defaults.php:309
3797
- msgid "User modified a draft WordPress page"
3798
- msgstr ""
3799
-
3800
- #: defaults.php:309
3801
- msgid ""
3802
- "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
3803
- msgstr ""
3804
-
3805
- #: defaults.php:310
3806
- msgid "User permanently deleted a page from the trash"
3807
- msgstr ""
3808
-
3809
- #: defaults.php:310
3810
- msgid "Permanently deleted the page %PostTitle%."
3811
- msgstr ""
3812
-
3813
- #: defaults.php:311
3814
- msgid "User moved WordPress page to the trash"
3815
- msgstr ""
3816
-
3817
- #: defaults.php:311
3818
- msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
3819
- msgstr ""
3820
-
3821
- #: defaults.php:312
3822
- msgid "User restored a WordPress page from trash"
3823
- msgstr ""
3824
-
3825
- #: defaults.php:312
3826
- msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
3827
- msgstr ""
3828
-
3829
- #: defaults.php:313
3830
- msgid "User changed page URL"
3831
- msgstr ""
3832
-
3833
- #: defaults.php:313
3834
- msgid ""
3835
- "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
3836
- "%EditorLinkPage%."
3837
- msgstr ""
3838
-
3839
- #: defaults.php:314
3840
- msgid "User changed page author"
3841
- msgstr ""
3842
-
3843
- #: defaults.php:314
3844
- msgid ""
3845
- "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
3846
- "%EditorLinkPage%."
3847
- msgstr ""
3848
-
3849
- #: defaults.php:315
3850
- msgid "User changed page status"
3851
- msgstr ""
3852
-
3853
- #: defaults.php:315
3854
- msgid ""
3855
- "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
3856
- "%EditorLinkPage%."
3857
- msgstr ""
3858
-
3859
- #: defaults.php:316
3860
- msgid "User changed the visibility of a page post"
3861
- msgstr ""
3862
-
3863
- #: defaults.php:316
3864
- msgid ""
3865
- "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
3866
- "%NewVisibility%. %EditorLinkPage%."
3867
- msgstr ""
3868
-
3869
- #: defaults.php:317
3870
- msgid "User changed the date of a page post"
3871
- msgstr ""
3872
-
3873
- #: defaults.php:317
3874
- msgid ""
3875
- "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
3876
- "%EditorLinkPage%."
3877
- msgstr ""
3878
-
3879
- #: defaults.php:318
3880
- msgid "User created a custom field for a page"
3881
- msgstr ""
3882
-
3883
- #: defaults.php:318
3884
- msgid ""
3885
- "Created a new custom field called %MetaKey% with value %MetaValue% in the "
3886
- "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3887
- msgstr ""
3888
-
3889
- #: defaults.php:319
3890
- msgid "User updated a custom field value for a page"
3891
- msgstr ""
3892
-
3893
- #: defaults.php:319
3894
- msgid ""
3895
- "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
3896
- "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3897
- msgstr ""
3898
-
3899
- #: defaults.php:320
3900
- msgid "User deleted a custom field from a page"
3901
- msgstr ""
3902
-
3903
- #: defaults.php:320
3904
- msgid ""
3905
- "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
3906
- "%EditorLinkPage%.<br>%MetaLink%."
3907
- msgstr ""
3908
-
3909
- #: defaults.php:321
3910
- msgid "User updated a custom field name for a page"
3911
- msgstr ""
3912
-
3913
- #: defaults.php:321
3914
- msgid ""
3915
- "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
3916
- "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3917
- msgstr ""
3918
-
3919
- #: defaults.php:322
3920
- msgid "User modified content for a published page"
3921
- msgstr ""
3922
-
3923
- #: defaults.php:322
3924
- msgid ""
3925
- "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
3926
- "%. %RevisionLink% %EditorLinkPage%."
3927
- msgstr ""
3928
-
3929
- #: defaults.php:323
3930
- msgid "User modified content for a draft page"
3931
- msgstr ""
3932
-
3933
- #: defaults.php:323
3934
- msgid ""
3935
- "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
3936
- "%."
3937
- msgstr ""
3938
-
3939
- #: defaults.php:324
3940
- msgid "User scheduled a page"
3941
- msgstr ""
3942
-
3943
- #: defaults.php:324
3944
- msgid ""
3945
- "Scheduled the page %PostTitle% to be published %PublishingDate%. "
3946
- "%EditorLinkPage%."
3947
- msgstr ""
3948
-
3949
- #: defaults.php:325
3950
- msgid "User changed title of a page"
3951
- msgstr ""
3952
-
3953
- #: defaults.php:325
3954
- msgid ""
3955
- "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
3956
- msgstr ""
3957
-
3958
- #: defaults.php:326
3959
- msgid "User opened a page in the editor"
3960
- msgstr ""
3961
-
3962
- #: defaults.php:326
3963
- msgid ""
3964
- "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
3965
- msgstr ""
3966
-
3967
- #: defaults.php:327
3968
- msgid "User viewed a page"
3969
- msgstr ""
3970
-
3971
- #: defaults.php:327
3972
- msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
3973
- msgstr ""
3974
-
3975
- #: defaults.php:328
3976
- msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
3977
- msgstr ""
3978
-
3979
- #: defaults.php:328
3980
- msgid ""
3981
- "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3982
- msgstr ""
3983
-
3984
- #: defaults.php:329
3985
- msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
3986
- msgstr ""
3987
-
3988
- #: defaults.php:329
3989
- msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3990
- msgstr ""
3991
-
3992
- #: defaults.php:330
3993
- msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
3994
- msgstr ""
3995
-
3996
- #: defaults.php:330
3997
- msgid ""
3998
- "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3999
- msgstr ""
4000
-
4001
- #: defaults.php:331
4002
- msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
4003
- msgstr ""
4004
-
4005
- #: defaults.php:331
4006
- msgid ""
4007
- "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
4008
- msgstr ""
4009
-
4010
- #: defaults.php:332
4011
- msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
4012
- msgstr ""
4013
-
4014
- #: defaults.php:332
4015
- msgid ""
4016
- "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4017
- msgstr ""
4018
-
4019
- #: defaults.php:333
4020
- msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
4021
- msgstr ""
4022
-
4023
- #: defaults.php:333
4024
- msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
4025
- msgstr ""
4026
-
4027
- #: defaults.php:334
4028
- msgid "A plugin created a page"
4029
- msgstr ""
4030
-
4031
- #: defaults.php:334
4032
- msgid "A plugin automatically created the following page: %PostTitle%."
4033
- msgstr ""
4034
-
4035
- #: defaults.php:335
4036
- msgid "A plugin deleted a page"
4037
- msgstr ""
4038
-
4039
- #: defaults.php:335
4040
- msgid "A plugin automatically deleted the following page: %PostTitle%."
4041
- msgstr ""
4042
-
4043
- #: defaults.php:336
4044
- msgid "A plugin modified a page"
4045
- msgstr ""
4046
-
4047
- #: defaults.php:336
4048
- msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
4049
- msgstr ""
4050
-
4051
- #: defaults.php:343
4052
- msgid "WordPress Install"
4053
- msgstr ""
4054
-
4055
- #: defaults.php:347
4056
- msgid "Database"
4057
- msgstr ""
4058
-
4059
- #: defaults.php:348
4060
- msgid "Unknown component created tables"
4061
- msgstr ""
4062
-
4063
- #: defaults.php:348
4064
- msgid ""
4065
- "An unknown component created these tables in the database: %TableNames%."
4066
- msgstr ""
4067
-
4068
- #: defaults.php:349
4069
- msgid "Unknown component modified tables structure"
4070
- msgstr ""
4071
-
4072
- #: defaults.php:349
4073
- msgid ""
4074
- "An unknown component modified the structure of these database tables: "
4075
- "%TableNames%."
4076
- msgstr ""
4077
-
4078
- #: defaults.php:350
4079
- msgid "Unknown component deleted tables"
4080
- msgstr ""
4081
-
4082
- #: defaults.php:350
4083
- msgid ""
4084
- "An unknown component deleted the following tables from the database: "
4085
- "%TableNames%."
4086
- msgstr ""
4087
-
4088
- #: defaults.php:357
4089
- msgid "User installed a plugin"
4090
- msgstr ""
4091
-
4092
- #: defaults.php:357
4093
- msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
4094
- msgstr ""
4095
-
4096
- #: defaults.php:358
4097
- msgid "User activated a WordPress plugin"
4098
- msgstr ""
4099
-
4100
- #: defaults.php:358
4101
- msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
4102
- msgstr ""
4103
-
4104
- #: defaults.php:359
4105
- msgid "User deactivated a WordPress plugin"
4106
- msgstr ""
4107
-
4108
- #: defaults.php:359
4109
- msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
4110
- msgstr ""
4111
-
4112
- #: defaults.php:360
4113
- msgid "User uninstalled a plugin"
4114
- msgstr ""
4115
-
4116
- #: defaults.php:360
4117
- msgid ""
4118
- "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
4119
- "%."
4120
- msgstr ""
4121
-
4122
- #: defaults.php:361
4123
- msgid "User upgraded a plugin"
4124
- msgstr ""
4125
-
4126
- #: defaults.php:361
4127
- msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
4128
- msgstr ""
4129
-
4130
- #: defaults.php:362
4131
- msgid "Plugin created tables"
4132
- msgstr ""
4133
-
4134
- #: defaults.php:362
4135
- msgid ""
4136
- "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
4137
- msgstr ""
4138
-
4139
- #: defaults.php:363
4140
- msgid "Plugin modified tables structure"
4141
- msgstr ""
4142
-
4143
- #: defaults.php:363
4144
- msgid ""
4145
- "Plugin %Plugin->Name% modified the structure of these database tables: "
4146
- "%TableNames%."
4147
- msgstr ""
4148
-
4149
- #: defaults.php:364
4150
- msgid "Plugin deleted tables"
4151
- msgstr ""
4152
-
4153
- #: defaults.php:364
4154
- msgid ""
4155
- "Plugin %Plugin->Name% deleted the following tables from the database: "
4156
- "%TableNames%."
4157
- msgstr ""
4158
-
4159
- #: defaults.php:365
4160
- msgid "A plugin created a post"
4161
- msgstr ""
4162
-
4163
- #: defaults.php:365
4164
- msgid ""
4165
- "A plugin automatically created the following %PostType% called %PostTitle%. "
4166
- "View the post: %EditorLinkPost%."
4167
- msgstr ""
4168
-
4169
- #: defaults.php:366
4170
- msgid "A plugin deleted a post"
4171
- msgstr ""
4172
-
4173
- #: defaults.php:366
4174
- msgid ""
4175
- "A plugin automatically deleted the following %PostType% called %PostTitle%."
4176
- msgstr ""
4177
-
4178
- #: defaults.php:367
4179
- msgid "User changed a file using the plugin editor"
4180
- msgstr ""
4181
-
4182
- #: defaults.php:367
4183
- msgid "Modified %File% with the Plugin Editor."
4184
- msgstr ""
4185
-
4186
- #: defaults.php:373
4187
- msgid "Themes"
4188
- msgstr ""
4189
-
4190
- #: defaults.php:374
4191
- msgid "User installed a theme"
4192
- msgstr ""
4193
-
4194
- #: defaults.php:374
4195
- msgid ""
4196
- "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
4197
- msgstr ""
4198
-
4199
- #: defaults.php:375
4200
- msgid "User activated a theme"
4201
- msgstr ""
4202
-
4203
- #: defaults.php:375
4204
- msgid ""
4205
- "Activated the theme \"%Theme->Name%\", installed in %Theme-"
4206
- ">get_template_directory%."
4207
- msgstr ""
4208
-
4209
- #: defaults.php:376
4210
- msgid "User uninstalled a theme"
4211
- msgstr ""
4212
-
4213
- #: defaults.php:376
4214
- msgid ""
4215
- "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
4216
- ">get_template_directory%."
4217
- msgstr ""
4218
-
4219
- #: defaults.php:377
4220
- msgid "Activated theme on network"
4221
- msgstr ""
4222
-
4223
- #: defaults.php:377
4224
- msgid ""
4225
- "Network activated the theme %Theme->Name% installed in %Theme-"
4226
- ">get_template_directory%."
4227
- msgstr ""
4228
-
4229
- #: defaults.php:378
4230
- msgid "Deactivated theme from network"
4231
- msgstr ""
4232
-
4233
- #: defaults.php:378
4234
- msgid ""
4235
- "Network deactivated the theme %Theme->Name% installed in %Theme-"
4236
- ">get_template_directory%."
4237
- msgstr ""
4238
-
4239
- #: defaults.php:379
4240
- msgid "Theme created tables"
4241
- msgstr ""
4242
-
4243
- #: defaults.php:379
4244
- msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
4245
- msgstr ""
4246
-
4247
- #: defaults.php:380
4248
- msgid "Theme modified tables structure"
4249
- msgstr ""
4250
-
4251
- #: defaults.php:380
4252
- msgid ""
4253
- "Theme %Theme->Name% modified the structure of these database tables: "
4254
- "%TableNames%."
4255
- msgstr ""
4256
-
4257
- #: defaults.php:381
4258
- msgid "Theme deleted tables"
4259
- msgstr ""
4260
-
4261
- #: defaults.php:381
4262
- msgid ""
4263
- "Theme %Theme->Name% deleted the following tables from the database: "
4264
- "%TableNames%."
4265
- msgstr ""
4266
-
4267
- #: defaults.php:382
4268
- msgid "User updated a theme"
4269
- msgstr ""
4270
-
4271
- #: defaults.php:382
4272
- msgid ""
4273
- "Updated the theme \"%Theme->Name%\" installed in %Theme-"
4274
- ">get_template_directory%."
4275
- msgstr ""
4276
-
4277
- #: defaults.php:383
4278
- msgid "User changed a file using the theme editor"
4279
- msgstr ""
4280
-
4281
- #: defaults.php:383
4282
- msgid "Modified %File% with the Theme Editor."
4283
- msgstr ""
4284
-
4285
- #: defaults.php:390
4286
- msgid "Unknown Error"
4287
- msgstr ""
4288
-
4289
- #: defaults.php:390
4290
- msgid "An unexpected error has occurred ."
4291
- msgstr ""
4292
-
4293
- #: defaults.php:391
4294
- msgid "PHP error"
4295
- msgstr ""
4296
-
4297
- #: defaults.php:391 defaults.php:392 defaults.php:393 defaults.php:394
4298
- #: defaults.php:395
4299
- msgid "%Message%."
4300
- msgstr ""
4301
-
4302
- #: defaults.php:392
4303
- msgid "PHP warning"
4304
- msgstr ""
4305
-
4306
- #: defaults.php:393
4307
- msgid "PHP notice"
4308
- msgstr ""
4309
-
4310
- #: defaults.php:394
4311
- msgid "PHP exception"
4312
- msgstr ""
4313
-
4314
- #: defaults.php:395
4315
- msgid "PHP shutdown error"
4316
- msgstr ""
4317
-
4318
- #: defaults.php:396
4319
- msgid "Events automatically pruned by system"
4320
- msgstr ""
4321
-
4322
- #: defaults.php:396
4323
- msgid "System automatically deleted %EventCount% event(s)."
4324
- msgstr ""
4325
-
4326
- #: defaults.php:397
4327
- msgid "WordPress was updated"
4328
- msgstr ""
4329
-
4330
- #: defaults.php:397
4331
- msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
4332
- msgstr ""
4333
-
4334
- #: defaults.php:398
4335
- msgid "Reset plugin's settings to default"
4336
- msgstr ""
4337
-
4338
- #: defaults.php:398
4339
- msgid "Reset plugin's settings to default."
4340
- msgstr ""
4341
-
4342
- #: defaults.php:399
4343
- msgid "Purged the activity log"
4344
- msgstr ""
4345
-
4346
- #: defaults.php:399
4347
- msgid "Purged the activity log."
4348
- msgstr ""
4349
-
4350
- #: defaults.php:400
4351
- msgid "File content has been modified"
4352
- msgstr ""
4353
-
4354
- #: defaults.php:400
4355
- msgid "The content of the file %FileLocation% has been modified."
4356
- msgstr ""
4357
-
4358
- #: defaults.php:401
4359
- msgid "File added to the site"
4360
- msgstr ""
4361
-
4362
- #: defaults.php:401
4363
- msgid "The file %FileLocation% has been added to your website."
4364
- msgstr ""
4365
-
4366
- #: defaults.php:402
4367
- msgid "File deleted from the site"
4368
- msgstr ""
4369
-
4370
- #: defaults.php:402
4371
- msgid "The file %FileLocation% has been deleted from your website."
4372
- msgstr ""
4373
-
4374
- #: defaults.php:403
4375
- msgid "File not scanned because it is bigger than the maximum file size limit"
4376
- msgstr ""
4377
-
4378
- #: defaults.php:403
4379
- msgid ""
4380
- "The file %FileLocation% was not scanned because it is bigger than the "
4381
- "maximum file size limit. If you want to include these files in the scan "
4382
- "increase the file size limit from the %FileSettings%."
4383
- msgstr ""
4384
-
4385
- #: defaults.php:404
4386
- msgid "File integrity scan stopped due to the limit of 1 million files"
4387
- msgstr ""
4388
-
4389
- #: defaults.php:404
4390
- msgid ""
4391
- "The file changes scanning engine has reached the limit of 1 million files "
4392
- "and stopped the scan. Please %ContactSupport% for more information."
4393
- msgstr ""
4394
-
4395
- #: defaults.php:405
4396
- msgid "File integrity scan started/stopped"
4397
- msgstr ""
4398
-
4399
- #: defaults.php:405
4400
- msgid "The file integrity scanner has %ScanStatus%."
4401
- msgstr ""
4402
-
4403
- #: defaults.php:406
4404
- msgid "Advertising Add-ons"
4405
- msgstr ""
4406
-
4407
- #: defaults.php:406
4408
- msgid "%PromoName% %PromoMessage%"
4409
- msgstr ""
4410
-
4411
- #: defaults.php:412
4412
- msgid "Menus"
4413
- msgstr ""
4414
-
4415
- #: defaults.php:413
4416
- msgid "User created new menu"
4417
- msgstr ""
4418
-
4419
- #: defaults.php:413
4420
- msgid "Created a new menu called %MenuName%."
4421
- msgstr ""
4422
-
4423
- #: defaults.php:414
4424
- msgid "User added content to a menu"
4425
- msgstr ""
4426
-
4427
- #: defaults.php:414
4428
- msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
4429
- msgstr ""
4430
-
4431
- #: defaults.php:415
4432
- msgid "User removed content from a menu"
4433
- msgstr ""
4434
-
4435
- #: defaults.php:415
4436
- msgid ""
4437
- "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
4438
- msgstr ""
4439
-
4440
- #: defaults.php:416
4441
- msgid "User deleted menu"
4442
- msgstr ""
4443
-
4444
- #: defaults.php:416
4445
- msgid "Deleted the menu %MenuName%."
4446
- msgstr ""
4447
-
4448
- #: defaults.php:417
4449
- msgid "User changed menu setting"
4450
- msgstr ""
4451
-
4452
- #: defaults.php:417
4453
- msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
4454
- msgstr ""
4455
-
4456
- #: defaults.php:418
4457
- msgid "User modified content in a menu"
4458
- msgstr ""
4459
-
4460
- #: defaults.php:418
4461
- msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
4462
- msgstr ""
4463
-
4464
- #: defaults.php:419
4465
- msgid "User changed name of a menu"
4466
- msgstr ""
4467
-
4468
- #: defaults.php:419
4469
- msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
4470
- msgstr ""
4471
-
4472
- #: defaults.php:420
4473
- msgid "User changed order of the objects in a menu"
4474
- msgstr ""
4475
-
4476
- #: defaults.php:420
4477
- msgid "Changed the order of the %ItemName% in menu %MenuName%."
4478
- msgstr ""
4479
-
4480
- #: defaults.php:421
4481
- msgid "User moved objects as a sub-item"
4482
- msgstr ""
4483
-
4484
- #: defaults.php:421
4485
- msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
4486
- msgstr ""
4487
-
4488
- #: defaults.php:427
4489
- msgid "Widgets"
4490
- msgstr ""
4491
-
4492
- #: defaults.php:428
4493
- msgid "User added a new widget"
4494
- msgstr ""
4495
-
4496
- #: defaults.php:428
4497
- msgid "Added a new %WidgetName% widget in %Sidebar%."
4498
- msgstr ""
4499
-
4500
- #: defaults.php:429
4501
- msgid "User modified a widget"
4502
- msgstr ""
4503
-
4504
- #: defaults.php:429
4505
- msgid "Modified the %WidgetName% widget in %Sidebar%."
4506
- msgstr ""
4507
-
4508
- #: defaults.php:430
4509
- msgid "User deleted widget"
4510
- msgstr ""
4511
-
4512
- #: defaults.php:430
4513
- msgid "Deleted the %WidgetName% widget from %Sidebar%."
4514
- msgstr ""
4515
-
4516
- #: defaults.php:431
4517
- msgid "User moved widget"
4518
- msgstr ""
4519
-
4520
- #: defaults.php:431
4521
- msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
4522
- msgstr ""
4523
-
4524
- #: defaults.php:432
4525
- msgid "User changed widget position"
4526
- msgstr ""
4527
-
4528
- #: defaults.php:432
4529
- msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
4530
- msgstr ""
4531
-
4532
- #: defaults.php:438
4533
- msgid "WordPress Settings"
4534
- msgstr ""
4535
-
4536
- #: defaults.php:439
4537
- msgid "Option Anyone Can Register in WordPress settings changed"
4538
- msgstr ""
4539
-
4540
- #: defaults.php:439
4541
- msgid "%NewValue% the option \"Anyone can register\"."
4542
- msgstr ""
4543
-
4544
- #: defaults.php:440
4545
- msgid "New User Default Role changed"
4546
- msgstr ""
4547
-
4548
- #: defaults.php:440
4549
- msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
4550
- msgstr ""
4551
-
4552
- #: defaults.php:441
4553
- msgid "WordPress Administrator Notification email changed"
4554
- msgstr ""
4555
-
4556
- #: defaults.php:441
4557
- msgid ""
4558
- "Changed the WordPress administrator notifications email address from "
4559
- "%OldEmail% to %NewEmail%."
4560
- msgstr ""
4561
-
4562
- #: defaults.php:442
4563
- msgid "User changes the WordPress Permalinks"
4564
- msgstr ""
4565
-
4566
- #: defaults.php:442
4567
- msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
4568
- msgstr ""
4569
-
4570
- #: defaults.php:443
4571
- msgid ""
4572
- "Enabled/Disabled the option Discourage search engines from indexing this site"
4573
- msgstr ""
4574
-
4575
- #: defaults.php:443
4576
- msgid "%Status% the option Discourage search engines from indexing this site."
4577
- msgstr ""
4578
-
4579
- #: defaults.php:444
4580
- msgid "Enabled/Disabled comments on all the website"
4581
- msgstr ""
4582
-
4583
- #: defaults.php:444
4584
- msgid "%Status% comments on all the website."
4585
- msgstr ""
4586
-
4587
- #: defaults.php:445
4588
- msgid "Enabled/Disabled the option Comment author must fill out name and email"
4589
- msgstr ""
4590
-
4591
- #: defaults.php:445
4592
- msgid "%Status% the option Comment author must fill out name and email."
4593
- msgstr ""
4594
-
4595
- #: defaults.php:446
4596
- msgid ""
4597
- "Enabled/Disabled the option Users must be logged in and registered to comment"
4598
- msgstr ""
4599
-
4600
- #: defaults.php:446
4601
- msgid "%Status% the option Users must be logged in and registered to comment."
4602
- msgstr ""
4603
-
4604
- #: defaults.php:447
4605
- msgid "Enabled/Disabled the option to automatically close comments"
4606
- msgstr ""
4607
-
4608
- #: defaults.php:447
4609
- msgid "%Status% the option to automatically close comments after %Value% days."
4610
- msgstr ""
4611
-
4612
- #: defaults.php:448
4613
- msgid "Changed the value of the option Automatically close comments"
4614
- msgstr ""
4615
-
4616
- #: defaults.php:448
4617
- msgid ""
4618
- "Changed the value of the option Automatically close comments from %OldValue% "
4619
- "to %NewValue% days."
4620
- msgstr ""
4621
-
4622
- #: defaults.php:449
4623
- msgid "Enabled/Disabled the option for comments to be manually approved"
4624
- msgstr ""
4625
-
4626
- #: defaults.php:449
4627
- msgid "%Status% the option for comments to be manually approved."
4628
- msgstr ""
4629
-
4630
- #: defaults.php:450
4631
- msgid ""
4632
- "Enabled/Disabled the option for an author to have previously approved "
4633
- "comments for the comments to appear"
4634
- msgstr ""
4635
-
4636
- #: defaults.php:450
4637
- msgid ""
4638
- "%Status% the option for an author to have previously approved comments for "
4639
- "the comments to appear."
4640
- msgstr ""
4641
-
4642
- #: defaults.php:451
4643
- msgid ""
4644
- "Changed the number of links that a comment must have to be held in the queue"
4645
- msgstr ""
4646
-
4647
- #: defaults.php:451
4648
- msgid ""
4649
- "Changed the number of links from %OldValue% to %NewValue% that a comment "
4650
- "must have to be held in the queue."
4651
- msgstr ""
4652
-
4653
- #: defaults.php:452
4654
- msgid "Modified the list of keywords for comments moderation"
4655
- msgstr ""
4656
-
4657
- #: defaults.php:452
4658
- msgid "Modified the list of keywords for comments moderation."
4659
- msgstr ""
4660
-
4661
- #: defaults.php:453
4662
- msgid "Modified the list of keywords for comments blacklisting"
4663
- msgstr ""
4664
-
4665
- #: defaults.php:453
4666
- msgid "Modified the list of keywords for comments blacklisting."
4667
- msgstr ""
4668
-
4669
- #: defaults.php:454
4670
- msgid "Option WordPress Address (URL) in WordPress settings changed"
4671
- msgstr ""
4672
-
4673
- #: defaults.php:454
4674
- msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
4675
- msgstr ""
4676
-
4677
- #: defaults.php:455
4678
- msgid "Option Site Address (URL) in WordPress settings changed"
4679
- msgstr ""
4680
-
4681
- #: defaults.php:455
4682
- msgid "Changed the site address (URL) from %old_url% to %new_url%."
4683
- msgstr ""
4684
-
4685
- #: defaults.php:456
4686
- msgid "Created a New cron job"
4687
- msgstr ""
4688
-
4689
- #: defaults.php:456
4690
- msgid ""
4691
- "A new cron job called %name% was created and is scheduled to run %schedule%."
4692
- msgstr ""
4693
-
4694
- #: defaults.php:457
4695
- msgid "Changed status of the cron job"
4696
- msgstr ""
4697
-
4698
- #: defaults.php:457
4699
- msgid "The cron job %name% was %status%."
4700
- msgstr ""
4701
-
4702
- #: defaults.php:458
4703
- msgid "Deleted the cron job"
4704
- msgstr ""
4705
-
4706
- #: defaults.php:458
4707
- msgid "The cron job %name% was deleted."
4708
- msgstr ""
4709
-
4710
- #: defaults.php:459
4711
- msgid "Started the cron job"
4712
- msgstr ""
4713
-
4714
- #: defaults.php:459
4715
- msgid "The cron job %name% has just started."
4716
- msgstr ""
4717
-
4718
- #: defaults.php:466
4719
- msgid "Multisite Network"
4720
- msgstr ""
4721
-
4722
- #: defaults.php:471
4723
- msgid "User granted Super Admin privileges"
4724
- msgstr ""
4725
-
4726
- #: defaults.php:471
4727
- msgid "Granted Super Admin privileges to %TargetUsername%."
4728
- msgstr ""
4729
-
4730
- #: defaults.php:472
4731
- msgid "User revoked from Super Admin privileges"
4732
- msgstr ""
4733
-
4734
- #: defaults.php:472
4735
- msgid "Revoked Super Admin privileges from %TargetUsername%."
4736
- msgstr ""
4737
-
4738
- #: defaults.php:473
4739
- msgid "Existing user added to a site"
4740
- msgstr ""
4741
-
4742
- #: defaults.php:473
4743
- msgid ""
4744
- "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
4745
- "%SiteName%."
4746
- msgstr ""
4747
-
4748
- #: defaults.php:474
4749
- msgid "User removed from site"
4750
- msgstr ""
4751
-
4752
- #: defaults.php:474
4753
- msgid ""
4754
- "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
4755
- "site."
4756
  msgstr ""
4757
 
4758
- #: defaults.php:475
4759
- msgid "New network user created"
4760
  msgstr ""
4761
 
4762
- #: defaults.php:475
4763
- msgid "Created a new network user %NewUserData->Username%."
4764
  msgstr ""
4765
 
4766
- #: defaults.php:476
4767
- msgid "The forum role of a user was changed by another WordPress user"
4768
  msgstr ""
4769
 
4770
- #: defaults.php:476
4771
- msgid ""
4772
- "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
4773
- "% by %UserChanger%."
4774
  msgstr ""
4775
 
4776
- #: defaults.php:477
4777
- msgid "New site added on the network"
4778
  msgstr ""
4779
 
4780
- #: defaults.php:477
4781
- msgid "Added the site %SiteName% to the network."
4782
  msgstr ""
4783
 
4784
- #: defaults.php:478
4785
- msgid "Existing site archived"
4786
  msgstr ""
4787
 
4788
- #: defaults.php:478
4789
- msgid "Archived the site %SiteName%."
4790
  msgstr ""
4791
 
4792
- #: defaults.php:479
4793
- msgid "Archived site has been unarchived"
4794
  msgstr ""
4795
 
4796
- #: defaults.php:479
4797
- msgid "Unarchived the site %SiteName%."
4798
  msgstr ""
4799
-
4800
- #: defaults.php:480
4801
- msgid "Deactivated site has been activated"
4802
  msgstr ""
4803
 
4804
- #: defaults.php:480
4805
- msgid "Activated the site %SiteName%."
4806
  msgstr ""
4807
 
4808
- #: defaults.php:481
4809
- msgid "Site has been deactivated"
4810
  msgstr ""
4811
 
4812
- #: defaults.php:481
4813
- msgid "Deactivated the site %SiteName%."
4814
  msgstr ""
4815
 
4816
- #: defaults.php:482
4817
- msgid "Existing site deleted from network"
4818
  msgstr ""
4819
 
4820
- #: defaults.php:482
4821
- msgid "Deleted the site %SiteName%."
4822
  msgstr ""
4823
 
4824
- #: defaults.php:494
4825
- msgid "User created new forum"
4826
  msgstr ""
4827
 
4828
- #: defaults.php:494
4829
- msgid ""
4830
- "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
4831
  msgstr ""
4832
 
4833
- #: defaults.php:495
4834
- msgid "User changed status of a forum"
4835
  msgstr ""
4836
 
4837
- #: defaults.php:495
4838
  msgid ""
4839
- "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
4840
- "%EditorLinkForum%."
4841
  msgstr ""
4842
 
4843
- #: defaults.php:496
4844
- msgid "User changed visibility of a forum"
4845
  msgstr ""
4846
 
4847
- #: defaults.php:496
4848
- msgid ""
4849
- "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
4850
- "%NewVisibility%. %EditorLinkForum%."
4851
  msgstr ""
4852
 
4853
- #: defaults.php:497
4854
- msgid "User changed the URL of a forum"
4855
  msgstr ""
4856
 
4857
- #: defaults.php:497
4858
- msgid ""
4859
- "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
4860
- "%EditorLinkForum%."
4861
  msgstr ""
4862
 
4863
- #: defaults.php:498
4864
- msgid "User changed order of a forum"
4865
  msgstr ""
4866
 
4867
- #: defaults.php:498
4868
  msgid ""
4869
- "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
4870
- "%EditorLinkForum%."
4871
  msgstr ""
4872
 
4873
- #: defaults.php:499
4874
- msgid "User moved forum to trash"
4875
  msgstr ""
4876
 
4877
- #: defaults.php:499
4878
- msgid "Moved the forum %ForumName% to trash."
4879
  msgstr ""
4880
 
4881
- #: defaults.php:500
4882
- msgid "User permanently deleted forum"
4883
  msgstr ""
4884
 
4885
- #: defaults.php:500
4886
- msgid "Permanently deleted the forum %ForumName%."
4887
  msgstr ""
4888
 
4889
- #: defaults.php:501
4890
- msgid "User restored forum from trash"
 
 
4891
  msgstr ""
4892
 
4893
- #: defaults.php:501
4894
- msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
4895
  msgstr ""
4896
 
4897
- #: defaults.php:502
4898
- msgid "User changed the parent of a forum"
4899
  msgstr ""
4900
 
4901
- #: defaults.php:502
4902
  msgid ""
4903
- "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
4904
- "%EditorLinkForum%."
4905
  msgstr ""
4906
 
4907
- #: defaults.php:503
4908
- msgid "User changed type of a forum"
 
 
4909
  msgstr ""
4910
 
4911
- #: defaults.php:503
4912
  msgid ""
4913
- "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
4914
- "%EditorLinkForum%."
4915
  msgstr ""
4916
 
4917
- #: defaults.php:504
4918
- msgid "User changed forum's role"
 
 
4919
  msgstr ""
4920
 
4921
- #: defaults.php:504
4922
- msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
4923
  msgstr ""
4924
 
4925
- #: defaults.php:505
4926
- msgid "User changed option of a forum"
4927
  msgstr ""
4928
 
4929
- #: defaults.php:505
4930
- msgid "%Status% the option for anonymous posting on forum."
4931
  msgstr ""
4932
 
4933
- #: defaults.php:506
4934
- msgid "User changed time to disallow post editing"
4935
  msgstr ""
4936
 
4937
- #: defaults.php:506
 
 
 
 
4938
  msgid ""
4939
- "Changed the time to disallow post editing from %OldTime% to %NewTime% "
4940
- "minutes in the forums."
4941
  msgstr ""
4942
 
4943
- #: defaults.php:507
4944
- msgid "User changed the forum setting posting throttle time"
4945
  msgstr ""
4946
 
4947
- #: defaults.php:507
4948
- msgid ""
4949
- "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
4950
- "forums."
4951
  msgstr ""
4952
 
4953
- #: defaults.php:508
4954
- msgid "User created new topic"
4955
  msgstr ""
4956
 
4957
- #: defaults.php:508
4958
- msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
4959
  msgstr ""
4960
 
4961
- #: defaults.php:509
4962
- msgid "User changed status of a topic"
4963
  msgstr ""
4964
 
4965
- #: defaults.php:509
4966
- msgid ""
4967
- "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
4968
- "%EditorLinkTopic%."
4969
  msgstr ""
4970
 
4971
- #: defaults.php:510
4972
- msgid "User changed type of a topic"
4973
  msgstr ""
4974
 
4975
- #: defaults.php:510
4976
- msgid ""
4977
- "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
4978
- "%EditorLinkTopic%."
4979
  msgstr ""
4980
 
4981
- #: defaults.php:511
4982
- msgid "User changed URL of a topic"
4983
  msgstr ""
4984
 
4985
- #: defaults.php:511
4986
- msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
4987
  msgstr ""
4988
 
4989
- #: defaults.php:512
4990
- msgid "User changed the forum of a topic"
4991
  msgstr ""
4992
 
4993
- #: defaults.php:512
4994
- msgid ""
4995
- "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
4996
- "%EditorLinkTopic%."
4997
  msgstr ""
4998
 
4999
- #: defaults.php:513
5000
- msgid "User moved topic to trash"
5001
  msgstr ""
5002
 
5003
- #: defaults.php:513
5004
- msgid "Moved the topic %TopicName% to trash."
5005
  msgstr ""
5006
 
5007
- #: defaults.php:514
5008
- msgid "User permanently deleted topic"
5009
  msgstr ""
5010
 
5011
- #: defaults.php:514
5012
- msgid "Permanently deleted the topic %TopicName%."
 
5013
  msgstr ""
5014
 
5015
- #: defaults.php:515
5016
- msgid "User restored topic from trash"
5017
  msgstr ""
5018
 
5019
- #: defaults.php:515
5020
- msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
 
 
5021
  msgstr ""
5022
 
5023
- #: defaults.php:516
5024
- msgid "User changed visibility of a topic"
5025
  msgstr ""
5026
 
5027
- #: defaults.php:516
5028
  msgid ""
5029
- "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
5030
- "%NewVisibility%. %EditorLinkTopic%."
5031
  msgstr ""
5032
 
5033
- #: defaults.php:523
5034
- msgid "User created a new product"
5035
  msgstr ""
5036
 
5037
- #: defaults.php:523
5038
- msgid ""
5039
- "Created a new product called %ProductTitle% and saved it as draft. View the "
5040
- "product: %EditorLinkProduct%."
5041
  msgstr ""
5042
 
5043
- #: defaults.php:524
5044
- msgid "User published a product"
5045
  msgstr ""
5046
 
5047
- #: defaults.php:524
5048
- msgid ""
5049
- "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
5050
- "the product: %EditorLinkProduct%."
5051
  msgstr ""
5052
 
5053
- #: defaults.php:525
5054
- msgid "User changed the category of a product"
 
 
 
 
 
 
 
 
 
 
 
 
5055
  msgstr ""
5056
 
5057
- #: defaults.php:525
5058
- msgid ""
5059
- "Changed the category of the %ProductStatus% product %ProductTitle% from "
5060
- "%OldCategories% to %NewCategories%. View the product: %EditorLinkProduct%."
5061
  msgstr ""
5062
 
5063
- #: defaults.php:526
5064
- msgid "User modified the short description of a product"
5065
  msgstr ""
5066
 
5067
- #: defaults.php:526
5068
  msgid ""
5069
- "Modified the short description of the %ProductStatus% product %ProductTitle%."
5070
- "%ChangeText% View the product: %EditorLinkProduct%."
5071
  msgstr ""
5072
 
5073
- #: defaults.php:527
5074
- msgid "User modified the text of a product"
5075
  msgstr ""
5076
 
5077
- #: defaults.php:527
5078
  msgid ""
5079
- "Modified the text of the %ProductStatus% product %ProductTitle%. View the "
5080
- "product: %EditorLinkProduct%."
5081
  msgstr ""
5082
 
5083
- #: defaults.php:528
5084
- msgid "User changed the URL of a product"
5085
  msgstr ""
5086
 
5087
- #: defaults.php:528
5088
  msgid ""
5089
- "Changed the URL of the %ProductStatus% product %ProductTitle%%ReportText%."
5090
- "%ChangeText% View the product: %EditorLinkProduct%."
5091
  msgstr ""
5092
 
5093
- #: defaults.php:529
5094
- msgid "User changed the date of a product"
5095
  msgstr ""
5096
 
5097
- #: defaults.php:529
5098
- msgid ""
5099
- "Changed the date of the %ProductStatus% product %ProductTitle% from %OldDate"
5100
- "% to %NewDate%. View the product: %EditorLinkProduct%."
5101
  msgstr ""
5102
 
5103
- #: defaults.php:530
5104
- msgid "User changed the visibility of a product"
5105
  msgstr ""
5106
 
5107
- #: defaults.php:530
5108
  msgid ""
5109
- "Changed the visibility of the %ProductStatus% product %ProductTitle% from "
5110
- "%OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct%."
5111
  msgstr ""
5112
 
5113
- #: defaults.php:531
5114
- msgid "User modified the product"
5115
  msgstr ""
5116
 
5117
- #: defaults.php:531
5118
- msgid ""
5119
- "Modified the %ProductStatus% product %ProductTitle%. Product URL is "
5120
- "%ProductUrl%. View the product: %EditorLinkProduct%."
5121
  msgstr ""
5122
 
5123
- #: defaults.php:532
5124
- msgid "User modified the draft product"
5125
  msgstr ""
5126
 
5127
- #: defaults.php:532
5128
  msgid ""
5129
- "Modified the draft product %ProductTitle%. View the product: "
5130
- "%EditorLinkProduct%."
5131
  msgstr ""
5132
 
5133
- #: defaults.php:533
5134
- msgid "User moved a product to trash"
5135
  msgstr ""
5136
 
5137
- #: defaults.php:533
5138
  msgid ""
5139
- "Moved the %ProductStatus% product %ProductTitle% to trash. Product URL was "
5140
- "%ProductUrl%."
5141
  msgstr ""
5142
 
5143
- #: defaults.php:534
5144
- msgid "User permanently deleted a product"
5145
  msgstr ""
5146
 
5147
- #: defaults.php:534
5148
- msgid "Permanently deleted the product %ProductTitle%."
5149
  msgstr ""
5150
 
5151
- #: defaults.php:535
5152
- msgid "User restored a product from the trash"
5153
  msgstr ""
5154
 
5155
- #: defaults.php:535
5156
  msgid ""
5157
- "Product %ProductTitle% has been restored from trash. View product: "
5158
- "%EditorLinkProduct%."
5159
  msgstr ""
5160
 
5161
- #: defaults.php:536
5162
- msgid "User changed status of a product"
5163
  msgstr ""
5164
 
5165
- #: defaults.php:536
5166
  msgid ""
5167
- "Changed the status of the product %ProductTitle% from %OldStatus% to "
5168
- "%NewStatus%. View the product: %EditorLinkProduct%."
5169
  msgstr ""
5170
 
5171
- #: defaults.php:537
5172
- msgid "User opened a product in the editor"
5173
  msgstr ""
5174
 
5175
- #: defaults.php:537
5176
  msgid ""
5177
- "Opened the %ProductStatus% product page %ProductTitle% in editor. View the "
5178
- "product: %EditorLinkProduct%."
5179
  msgstr ""
5180
 
5181
- #: defaults.php:538
5182
- msgid "User viewed a product"
5183
  msgstr ""
5184
 
5185
- #: defaults.php:538
5186
  msgid ""
5187
- "Viewed the %ProductStatus% product page %ProductTitle%. View the product: "
5188
- "%EditorLinkProduct%."
5189
  msgstr ""
5190
 
5191
- #: defaults.php:539
5192
- msgid "User renamed a product"
5193
  msgstr ""
5194
 
5195
- #: defaults.php:539
5196
  msgid ""
5197
- "Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the "
5198
- "product: %EditorLinkProduct%."
5199
  msgstr ""
5200
 
5201
- #: defaults.php:540
5202
- msgid "User changed the Product Data of a product"
5203
  msgstr ""
5204
 
5205
- #: defaults.php:540
5206
  msgid ""
5207
- "Changed the Product Type of the product %OldType% to %NewType%. View the "
5208
- "product: %EditorLinkProduct%."
5209
  msgstr ""
5210
 
5211
- #: defaults.php:541
5212
- msgid "User changed type of a price"
5213
  msgstr ""
5214
 
5215
- #: defaults.php:541
5216
- msgid ""
5217
- "Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from "
5218
- "%OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%."
5219
  msgstr ""
5220
 
5221
- #: defaults.php:542
5222
- msgid "User changed the SKU of a product"
5223
  msgstr ""
5224
 
5225
- #: defaults.php:542
5226
  msgid ""
5227
- "Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% "
5228
- "to %NewSku%. View the product: %EditorLinkProduct%."
5229
  msgstr ""
5230
 
5231
- #: defaults.php:543
5232
- msgid "User changed the stock status of a product"
5233
  msgstr ""
5234
 
5235
- #: defaults.php:543
5236
  msgid ""
5237
- "Changed the stock status of the %ProductStatus% product %ProductTitle% from "
5238
- "%OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%."
5239
  msgstr ""
5240
 
5241
- #: defaults.php:544
5242
- msgid "User changed the stock quantity"
5243
  msgstr ""
5244
 
5245
- #: defaults.php:544
5246
  msgid ""
5247
- "Changed the stock quantity of the %ProductStatus% product %ProductTitle% "
5248
- "from %OldValue% to %NewValue%. View the product: %EditorLinkProduct%"
5249
  msgstr ""
5250
 
5251
- #: defaults.php:545
5252
- msgid "User set a product type"
5253
  msgstr ""
5254
 
5255
- #: defaults.php:545
5256
  msgid ""
5257
- "Changed the type of the %ProductStatus% simple product %ProductTitle% from "
5258
- "%OldType% to %NewType%. View the product: %EditorLinkProduct%."
5259
  msgstr ""
5260
 
5261
- #: defaults.php:546
5262
- msgid "User changed the weight of a product"
5263
  msgstr ""
5264
 
5265
- #: defaults.php:546
5266
  msgid ""
5267
- "Changed the weight of the %ProductStatus% product %ProductTitle% from "
5268
- "%OldWeight% to %NewWeight%. View the product: %EditorLinkProduct%."
5269
  msgstr ""
5270
 
5271
- #: defaults.php:547
5272
- msgid "User changed the dimensions of a product"
5273
  msgstr ""
5274
 
5275
- #: defaults.php:547
5276
- msgid ""
5277
- "Changed the %DimensionType% dimensions of the %ProductStatus% product "
5278
- "%ProductTitle% from %OldDimension% to %NewDimension%. View the product: "
5279
- "%EditorLinkProduct%."
5280
  msgstr ""
5281
 
5282
- #: defaults.php:548
5283
- msgid "User added the Downloadable File to a product"
5284
  msgstr ""
5285
 
5286
- #: defaults.php:548
5287
- msgid ""
5288
- "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
5289
- "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5290
- "%."
5291
  msgstr ""
5292
 
5293
- #: defaults.php:549
5294
- msgid "User Removed the Downloadable File from a product"
5295
  msgstr ""
5296
 
5297
- #: defaults.php:549
5298
- msgid ""
5299
- "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
5300
- "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5301
- "%."
5302
  msgstr ""
5303
 
5304
- #: defaults.php:550
5305
- msgid "User changed the name of a Downloadable File in a product"
5306
  msgstr ""
5307
 
5308
- #: defaults.php:550
5309
  msgid ""
5310
- "Changed the name of a Downloadable File from %OldName% to %NewName% in "
5311
- "%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
5312
- "%."
5313
  msgstr ""
5314
 
5315
- #: defaults.php:551
5316
- msgid "User changed the URL of the Downloadable File in a product"
5317
  msgstr ""
5318
 
5319
- #: defaults.php:551
5320
- msgid ""
5321
- "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
5322
- "% in %ProductStatus% product %ProductTitle%. View the product: "
5323
- "%EditorLinkProduct%."
5324
  msgstr ""
5325
 
5326
- #: defaults.php:552
5327
- msgid "User changed the catalog visibility of a product"
5328
  msgstr ""
5329
 
5330
- #: defaults.php:552
5331
- msgid ""
5332
- "Changed the catalog visibility of the %ProductStatus% product %ProductTitle% "
5333
- "from %OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct"
5334
- "%."
5335
  msgstr ""
5336
 
5337
- #: defaults.php:553
5338
- msgid "User changed the setting Featured Product of a product"
5339
  msgstr ""
5340
 
5341
- #: defaults.php:553
5342
  msgid ""
5343
- "%Status% the setting Featured Product in the %ProductStatus% product "
5344
- "%ProductTitle%. View the product: %EditorLinkProduct%."
5345
  msgstr ""
5346
 
5347
- #: defaults.php:554
5348
- msgid "User changed the Allow Backorders setting of a product"
5349
  msgstr ""
5350
 
5351
- #: defaults.php:554
5352
  msgid ""
5353
- "Changed the Allow Backorders setting of the %ProductStatus% product "
5354
- "%ProductTitle% from %OldStatus% to %NewStatus%. View the product: "
5355
- "%EditorLinkProduct%."
5356
  msgstr ""
5357
 
5358
- #: defaults.php:555
5359
- msgid "User added/removed products to upsell of a product"
5360
  msgstr ""
5361
 
5362
- #: defaults.php:555
5363
  msgid ""
5364
- "%Status% the product %UpsellTitle% to Upsells in the %ProductStatus% product "
5365
- "%ProductTitle%. View the product: %EditorLinkProduct%."
5366
  msgstr ""
5367
 
5368
- #: defaults.php:556
5369
- msgid "User added/removed products to cross-sells of a product"
5370
  msgstr ""
5371
 
5372
- #: defaults.php:556
5373
- msgid ""
5374
- "%Status% the product %CrossSellTitle% to Cross-sells in the %ProductStatus% "
5375
- "product %ProductTitle%. View the product: %EditorLinkProduct%."
5376
  msgstr ""
5377
 
5378
- #: defaults.php:557
5379
- msgid "Added a new attribute of a product"
5380
  msgstr ""
5381
 
5382
- #: defaults.php:557
5383
  msgid ""
5384
- "Added a new attribute called %AttributeName% with value %AttributeValue% in "
5385
- "the %ProductStatus% product %ProductTitle%. View the product: "
5386
- "%EditorLinkProduct%."
5387
  msgstr ""
5388
 
5389
- #: defaults.php:558
5390
- msgid "Modified the value of an attribute of a product"
5391
  msgstr ""
5392
 
5393
- #: defaults.php:558
5394
  msgid ""
5395
- "Modified the value of the attribute %AttributeName% from %OldValue% to "
5396
- "%NewValue% in the %ProductStatus% product %ProductTitle%. View the product: "
5397
- "%EditorLinkProduct%."
5398
  msgstr ""
5399
 
5400
- #: defaults.php:559
5401
- msgid "Changed the name of an attribute of a product"
5402
  msgstr ""
5403
 
5404
- #: defaults.php:559
5405
- msgid ""
5406
- "Changed the attribute's name from %OldValue% to %NewValue% in the "
5407
- "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5408
- "product: %EditorLinkProduct%."
5409
  msgstr ""
5410
 
5411
- #: defaults.php:560
5412
- msgid "Deleted an attribute of a product"
5413
  msgstr ""
5414
 
5415
- #: defaults.php:560
5416
  msgid ""
5417
- "Deleted the attribute %AttributeName% with value %AttributeValue% from "
5418
- "%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
5419
- "product: %EditorLinkProduct%."
5420
  msgstr ""
5421
 
5422
- #: defaults.php:561
5423
- msgid "Set the attribute visibility of a product"
5424
  msgstr ""
5425
 
5426
- #: defaults.php:561
5427
- msgid ""
5428
- "Set the attribute %AttributeName% as %AttributeVisiblilty% on product page "
5429
- "in %ProductStatus% product %ProductTitle%. View the product: "
5430
- "%EditorLinkProduct%."
5431
  msgstr ""
5432
 
5433
- #: defaults.php:568
5434
- msgid "User changed the Weight Unit"
5435
  msgstr ""
5436
 
5437
- #: defaults.php:568
5438
- msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
5439
  msgstr ""
5440
 
5441
- #: defaults.php:569
5442
- msgid "User changed the Dimensions Unit"
5443
  msgstr ""
5444
 
5445
- #: defaults.php:569
5446
- msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
5447
  msgstr ""
5448
 
5449
- #: defaults.php:570
5450
- msgid "User changed the Base Location"
5451
  msgstr ""
5452
 
5453
- #: defaults.php:570
5454
  msgid ""
5455
- "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
5456
- msgstr ""
5457
-
5458
- #: defaults.php:571
5459
- msgid "User Enabled/Disabled taxes"
5460
  msgstr ""
5461
 
5462
- #: defaults.php:571
5463
- msgid "%Status% taxes in the WooCommerce store."
5464
  msgstr ""
5465
 
5466
- #: defaults.php:572
5467
- msgid "User changed the currency"
5468
  msgstr ""
5469
 
5470
- #: defaults.php:572
5471
  msgid ""
5472
- "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
 
5473
  msgstr ""
5474
 
5475
- #: defaults.php:573
5476
- msgid "User Enabled/Disabled the use of coupons during checkout"
5477
  msgstr ""
5478
 
5479
- #: defaults.php:573
5480
- msgid "%Status% the use of coupons during checkout in WooCommerce."
 
 
5481
  msgstr ""
5482
 
5483
- #: defaults.php:574
5484
- msgid "User Enabled/Disabled guest checkout"
5485
  msgstr ""
5486
 
5487
- #: defaults.php:574
5488
- msgid "%Status% guest checkout in WooCommerce."
 
 
5489
  msgstr ""
5490
 
5491
- #: defaults.php:575
5492
- msgid "User Enabled/Disabled cash on delivery"
5493
  msgstr ""
5494
 
5495
- #: defaults.php:575
5496
- msgid "%Status% the option Cash on Delivery in WooCommerce."
 
 
5497
  msgstr ""
5498
 
5499
- #: defaults.php:576
5500
- msgid "User enabled a payment gateway"
5501
  msgstr ""
5502
 
5503
- #: defaults.php:576
5504
- msgid "Enabled the payment gateway %GatewayName%."
 
 
5505
  msgstr ""
5506
 
5507
- #: defaults.php:577
5508
- msgid "User disabled a payment gateway"
5509
  msgstr ""
5510
 
5511
- #: defaults.php:577
5512
- msgid "Disabled the payment gateway %GatewayName%."
 
 
5513
  msgstr ""
5514
 
5515
- #: defaults.php:578
5516
- msgid "User modified a payment gateway"
5517
  msgstr ""
5518
 
5519
- #: defaults.php:578
5520
- msgid "Modified the payment gateway %GatewayName%."
 
 
5521
  msgstr ""
5522
 
5523
- #: defaults.php:579
5524
- msgid "User created a new product category"
5525
  msgstr ""
5526
 
5527
- #: defaults.php:579
5528
  msgid ""
5529
- "Created a new product category called %CategoryName% in WooCommerce. Product "
5530
- "category slug is %Slug%."
5531
  msgstr ""
5532
 
5533
- #: defaults.php:580
5534
- msgid "User deleted a product category"
5535
  msgstr ""
5536
 
5537
- #: defaults.php:580
5538
  msgid ""
5539
- "Deleted the product category called %CategoryName% in WooCommerce. Product "
5540
- "category slug was %CategorySlug%."
5541
  msgstr ""
5542
 
5543
- #: defaults.php:581
5544
- msgid "User changed the slug of a product category"
5545
  msgstr ""
5546
 
5547
- #: defaults.php:581
5548
  msgid ""
5549
- "Changed the Slug of the product category %CategoryName% in WooCommerce from "
5550
- "%OldSlug% to %NewSlug%."
5551
  msgstr ""
5552
 
5553
- #: defaults.php:582
5554
- msgid "User changed the parent category of a product category"
5555
  msgstr ""
5556
 
5557
- #: defaults.php:582
5558
  msgid ""
5559
- "Changed the Parent Category of the product category %CategoryName% in "
5560
- "WooCommerce from %OldParentCat% to %NewParentCat%."
5561
  msgstr ""
5562
 
5563
- #: defaults.php:583
5564
- msgid "User changed the display type of a product category"
5565
  msgstr ""
5566
 
5567
- #: defaults.php:583
5568
  msgid ""
5569
- "Changed the Display Type of the product category %CategoryName% in "
5570
- "WooCommerce from %OldDisplayType% to %NewDisplayType%."
5571
  msgstr ""
5572
 
5573
- #: defaults.php:584
5574
- msgid "User changed the name of a product category"
5575
  msgstr ""
5576
 
5577
- #: defaults.php:584
5578
  msgid ""
5579
- "Changed the name of the product category %CategoryName% in WooCommerce from "
5580
- "%OldName% to %NewName%."
5581
  msgstr ""
5582
 
5583
- #: defaults.php:585
5584
- msgid "User created a new attribute"
5585
  msgstr ""
5586
 
5587
- #: defaults.php:585
5588
- msgid ""
5589
- "Created a new Attribute called %AttributeName% with slug %AttributeSlug% in "
5590
- "WooCommerce."
5591
  msgstr ""
5592
 
5593
- #: defaults.php:586
5594
- msgid "User deleted an attribute"
5595
  msgstr ""
5596
 
5597
- #: defaults.php:586
5598
  msgid ""
5599
- "Deleted the Attribute called %AttributeName% with Slug %AttributeSlug% from "
5600
- "WooCommerce."
5601
  msgstr ""
5602
 
5603
- #: defaults.php:587
5604
- msgid "User changed the slug of an attribute"
5605
  msgstr ""
5606
 
5607
- #: defaults.php:587
5608
  msgid ""
5609
- "Changed the Slug of the Attribute %AttributeName% in WooCommerce from "
5610
- "%OldSlug% to %NewSlug%."
5611
  msgstr ""
5612
 
5613
- #: defaults.php:588
5614
- msgid "User changed the name of an attribute"
5615
  msgstr ""
5616
 
5617
- #: defaults.php:588
5618
  msgid ""
5619
- "Changed the Name of the Attribute %AttributeName% in WooCommerce from "
5620
- "%OldName% to %NewName%."
5621
  msgstr ""
5622
 
5623
- #: defaults.php:589
5624
- msgid "User changed the default sort order of an attribute"
5625
  msgstr ""
5626
 
5627
- #: defaults.php:589
5628
  msgid ""
5629
- "Changed the Default Sort Order of the Attribute %AttributeName% in "
5630
- "WooCommerce from %OldSortOrder% to %NewSortOrder%."
5631
  msgstr ""
5632
 
5633
- #: defaults.php:590
5634
- msgid "User enabled/disabled the option Enable Archives of an attribute"
5635
  msgstr ""
5636
 
5637
- #: defaults.php:590
5638
  msgid ""
5639
- "%ArchivesStatus% the option Enable Archives in the Attribute %AttributeName% "
5640
- "in WooCommerce."
5641
  msgstr ""
5642
 
5643
- #: defaults.php:591
5644
- msgid "User published a new coupon"
5645
  msgstr ""
5646
 
5647
- #: defaults.php:591
5648
- msgid "Published a new coupon called %CouponName% in WooCommerce."
 
 
5649
  msgstr ""
5650
 
5651
- #: defaults.php:592
5652
- msgid "User changed the discount type of a coupon"
5653
  msgstr ""
5654
 
5655
- #: defaults.php:592
5656
  msgid ""
5657
- "Changed the Discount Type of the %CouponStatus% WooCommerce coupon "
5658
- "%CouponName% from %OldDiscountType% to %NewDiscountType%."
5659
  msgstr ""
5660
 
5661
- #: defaults.php:593
5662
- msgid "User changed the coupon amount of a coupon"
5663
  msgstr ""
5664
 
5665
- #: defaults.php:593
5666
  msgid ""
5667
- "Changed the Coupon Amount of the %CouponStatus% WooCommerce coupon "
5668
- "%CouponName% from %OldAmount% to %NewAmount%."
5669
  msgstr ""
5670
 
5671
- #: defaults.php:594
5672
- msgid "User changed the coupon expire date of a coupon"
5673
  msgstr ""
5674
 
5675
- #: defaults.php:594
5676
  msgid ""
5677
- "Changed the Coupon Expire Date of the %CouponStatus% WooCommerce coupon "
5678
- "%CouponName% from %OldDate% to %NewDate%."
5679
  msgstr ""
5680
 
5681
- #: defaults.php:595
5682
- msgid "User changed the usage restriction settings of a coupon"
5683
  msgstr ""
5684
 
5685
- #: defaults.php:595
5686
  msgid ""
5687
- "Changed the Usage Restriction settings of the %CouponStatus% WooCommerce "
5688
- "coupon %CouponName%."
5689
  msgstr ""
5690
 
5691
- #: defaults.php:596
5692
- msgid "User changed the usage limits settings of a coupon"
5693
  msgstr ""
5694
 
5695
- #: defaults.php:596
5696
  msgid ""
5697
- "Changed the Usage Limits settings of the %CouponStatus% WooCommerce coupon "
5698
- "%CouponName%."
5699
  msgstr ""
5700
 
5701
- #: defaults.php:597
5702
- msgid "User changed the description of a coupon"
5703
  msgstr ""
5704
 
5705
- #: defaults.php:597
5706
  msgid ""
5707
- "Changed the Description of the %CouponStatus% WooCommerce coupon %CouponName"
5708
- "%."
5709
  msgstr ""
5710
 
5711
- #: defaults.php:598
5712
- msgid "User changed the status of a coupon"
5713
  msgstr ""
5714
 
5715
- #: defaults.php:598
5716
  msgid ""
5717
- "Changed the Status of the WooCommerce coupon %CouponName% from %OldStatus% "
5718
- "to %NewStatus%."
5719
  msgstr ""
5720
 
5721
- #: defaults.php:599
5722
- msgid "User renamed a WooCommerce coupon"
5723
  msgstr ""
5724
 
5725
- #: defaults.php:599
5726
- msgid "Renamed the WooCommerce coupon %OldName% to %NewName%."
5727
  msgstr ""
5728
 
5729
- #: defaults.php:600
5730
- msgid "A WooCommerce order has been placed"
5731
  msgstr ""
5732
 
5733
- #: defaults.php:600
5734
- msgid ""
5735
- "A WooCommerce order %OrderTitle% has just been placed. %EditorLinkOrder%."
5736
  msgstr ""
5737
 
5738
- #: defaults.php:601
5739
- msgid "WooCommerce order status changed"
5740
  msgstr ""
5741
 
5742
- #: defaults.php:601
5743
  msgid ""
5744
- "Marked the WooCommerce order %OrderTitle% as %OrderStatus%. %EditorLinkOrder"
5745
- "%."
5746
  msgstr ""
5747
 
5748
- #: defaults.php:602
5749
- msgid "User moved a WooCommerce order to trash"
5750
  msgstr ""
5751
 
5752
- #: defaults.php:602
5753
- msgid "Moved the WooCommerce order %OrderTitle% to trash."
5754
  msgstr ""
5755
 
5756
- #: defaults.php:603
5757
- msgid "User moved a WooCommerce order out of trash"
5758
  msgstr ""
5759
 
5760
- #: defaults.php:603
5761
  msgid ""
5762
- "Moved the WooCommerce order %OrderTitle% out of trash. %EditorLinkOrder%."
5763
  msgstr ""
5764
 
5765
- #: defaults.php:604
5766
- msgid "User permanently deleted a WooCommerce order"
 
 
 
 
5767
  msgstr ""
5768
 
5769
- #: defaults.php:604
5770
- msgid "Permanently deleted the WooCommerce order %OrderTitle%."
5771
  msgstr ""
5772
 
5773
- #: defaults.php:605
5774
- msgid "User edited a WooCommerce order"
5775
  msgstr ""
5776
 
5777
- #: defaults.php:605
5778
- msgid "Edited the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
5779
  msgstr ""
5780
 
5781
- #: defaults.php:606
5782
- msgid "User refunded a WooCommerce order"
5783
  msgstr ""
5784
 
5785
- #: defaults.php:606
5786
- msgid "Refunded the WooCommerce order %OrderTitle%. %EditorLinkOrder%."
5787
  msgstr ""
5788
 
5789
- #: defaults.php:613
5790
  msgid "User changed title of a SEO post"
5791
  msgstr ""
5792
 
5793
- #: defaults.php:613
5794
  msgid ""
5795
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
5796
  "% %EditorLinkPost%."
5797
  msgstr ""
5798
 
5799
- #: defaults.php:614
5800
  msgid "User changed the meta description of a SEO post"
5801
  msgstr ""
5802
 
5803
- #: defaults.php:614
5804
  msgid ""
5805
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
5806
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
5807
  msgstr ""
5808
 
5809
- #: defaults.php:615
5810
  msgid ""
5811
  "User changed setting to allow search engines to show post in search results "
5812
  "of a SEO post"
5813
  msgstr ""
5814
 
5815
- #: defaults.php:615
5816
  msgid ""
5817
  "Changed the setting to allow search engines to show post in search results "
5818
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
5819
  "%PostTitle%. %EditorLinkPost%."
5820
  msgstr ""
5821
 
5822
- #: defaults.php:616
5823
  msgid ""
5824
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
5825
  "post"
5826
  msgstr ""
5827
 
5828
- #: defaults.php:616
5829
  msgid ""
5830
  "%NewStatus% the option for search engine to follow links in the %PostType% "
5831
  "titled %PostTitle%. %EditorLinkPost%."
5832
  msgstr ""
5833
 
5834
- #: defaults.php:617
5835
  msgid "User set the meta robots advanced setting of a SEO post"
5836
  msgstr ""
5837
 
5838
- #: defaults.php:617
5839
  msgid ""
5840
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
5841
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
5842
  msgstr ""
5843
 
5844
- #: defaults.php:618
5845
  msgid "User changed the canonical URL of a SEO post"
5846
  msgstr ""
5847
 
5848
- #: defaults.php:618
5849
  msgid ""
5850
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
5851
  "%ReportText%.%ChangeText% %EditorLinkPost%."
5852
  msgstr ""
5853
 
5854
- #: defaults.php:619
5855
  msgid "User changed the focus keyword of a SEO post"
5856
  msgstr ""
5857
 
5858
- #: defaults.php:619
5859
  msgid ""
5860
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
5861
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
5862
  msgstr ""
5863
 
5864
- #: defaults.php:620
5865
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
5866
  msgstr ""
5867
 
5868
- #: defaults.php:620
5869
  msgid ""
5870
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
5871
  "%PostTitle%. %EditorLinkPost%."
5872
  msgstr ""
5873
 
5874
- #: defaults.php:621
5875
  msgid "User changed the Title Separator setting"
5876
  msgstr ""
5877
 
5878
- #: defaults.php:621
5879
  msgid ""
5880
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
5881
  "settings."
5882
  msgstr ""
5883
 
5884
- #: defaults.php:622
5885
  msgid "User changed the Homepage Title setting"
5886
  msgstr ""
5887
 
5888
- #: defaults.php:622
5889
  msgid ""
5890
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
5891
  "%ChangeText%"
5892
  msgstr ""
5893
 
5894
- #: defaults.php:623
5895
  msgid "User changed the Homepage Meta description setting"
5896
  msgstr ""
5897
 
5898
- #: defaults.php:623
5899
  msgid ""
5900
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
5901
  "settings.%ChangeText%"
5902
  msgstr ""
5903
 
5904
- #: defaults.php:624
5905
  msgid "User changed the Company or Person setting"
5906
  msgstr ""
5907
 
5908
- #: defaults.php:624
5909
  msgid ""
5910
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
5911
  "plugin settings."
5912
  msgstr ""
5913
 
5914
- #: defaults.php:625
5915
  msgid ""
5916
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
5917
  "Yoast SEO plugin settings"
5918
  msgstr ""
5919
 
5920
- #: defaults.php:625
5921
  msgid ""
5922
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
5923
  "plugin settings."
5924
  msgstr ""
5925
 
5926
- #: defaults.php:626
5927
  msgid ""
5928
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
5929
  msgstr ""
5930
 
5931
- #: defaults.php:626
5932
  msgid ""
5933
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
5934
  "SEO plugin settings."
5935
  msgstr ""
5936
 
5937
- #: defaults.php:627
5938
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
5939
  msgstr ""
5940
 
5941
- #: defaults.php:627
5942
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
5943
  msgstr ""
5944
 
5945
- #: defaults.php:628
5946
  msgid ""
5947
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
5948
  msgstr ""
5949
 
5950
- #: defaults.php:628
5951
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
5952
  msgstr ""
5953
 
5954
- #: defaults.php:629
5955
  msgid ""
5956
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
5957
  msgstr ""
5958
 
5959
- #: defaults.php:629
5960
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
5961
  msgstr ""
5962
 
5963
- #: defaults.php:630
5964
  msgid ""
5965
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
5966
  msgstr ""
5967
 
5968
- #: defaults.php:630
5969
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
5970
  msgstr ""
5971
 
5972
- #: defaults.php:631
5973
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
5974
  msgstr ""
5975
 
5976
- #: defaults.php:631
5977
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
5978
  msgstr ""
5979
 
5980
- #: defaults.php:632
5981
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
5982
  msgstr ""
5983
 
5984
- #: defaults.php:632
5985
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
5986
  msgstr ""
5987
 
5988
- #: defaults.php:633
5989
  msgid ""
5990
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
5991
  msgstr ""
5992
 
5993
- #: defaults.php:633
5994
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
5995
  msgstr ""
5996
 
5997
- #: defaults.php:634
5998
  msgid ""
5999
  "User changed the Posts/Pages meta description template in the Yoast SEO "
6000
  "plugin settings"
6001
  msgstr ""
6002
 
6003
- #: defaults.php:634
6004
  msgid ""
6005
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
6006
  "the Yoast SEO plugin settings."
6007
  msgstr ""
6008
 
6009
- #: defaults.php:635
6010
  msgid ""
6011
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
6012
  "plugin settings"
6013
  msgstr ""
6014
 
6015
- #: defaults.php:635
6016
  msgid ""
6017
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
6018
  "SEO plugin settings."
6019
  msgstr ""
6020
 
6021
- #: defaults.php:636
6022
  msgid ""
6023
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
6024
  "plugin settings"
6025
  msgstr ""
6026
 
6027
- #: defaults.php:636
6028
  msgid ""
6029
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
6030
  "plugin settings."
6031
  msgstr ""
6032
 
6033
- #: defaults.php:637
6034
  msgid ""
6035
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
6036
  "plugin settings"
6037
  msgstr ""
6038
 
6039
- #: defaults.php:637
6040
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
6041
  msgstr ""
6042
 
6043
- #. translators: Username
6044
- #: wp-security-audit-log.php:457 wp-security-audit-log.php:484
6045
  #, php-format
6046
  msgid "Hey %1$s"
6047
  msgstr ""
6048
 
6049
- #: wp-security-audit-log.php:458
6050
  msgid ""
6051
  "Never miss an important update! Opt-in to our security and feature updates "
6052
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
6053
  msgstr ""
6054
 
6055
- #: wp-security-audit-log.php:459 wp-security-audit-log.php:487
6056
  msgid "Note: "
6057
  msgstr ""
6058
 
6059
- #: wp-security-audit-log.php:460 wp-security-audit-log.php:488
6060
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
6061
  msgstr ""
6062
 
6063
- #. translators: 1: Plugin name. 2: Freemius link.
6064
- #: wp-security-audit-log.php:486
6065
  #, php-format
6066
  msgid ""
6067
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
@@ -6069,101 +4077,35 @@ msgid ""
6069
  "use. If you skip this, that's okay! %2$s will still work just fine."
6070
  msgstr ""
6071
 
6072
- #. translators: Plugin name
6073
- #: wp-security-audit-log.php:508
6074
- #, php-format
6075
- msgid ""
6076
- "Get a free 7-day trial of the premium edition of %s. No credit card "
6077
- "required, no commitments!"
6078
- msgstr ""
6079
-
6080
- #. Plugin Name of the plugin/theme
6081
- #: wp-security-audit-log.php:509
6082
- msgid "WP Security Audit Log"
6083
- msgstr ""
6084
-
6085
- #: wp-security-audit-log.php:513
6086
- msgid "Start free trial"
6087
- msgstr ""
6088
-
6089
- #: wp-security-audit-log.php:658
6090
  msgid ""
6091
  "Error: You do not have sufficient permissions to disable this custom field."
6092
  msgstr ""
6093
 
6094
- #: wp-security-audit-log.php:694
6095
  msgid "Error: You do not have sufficient permissions to disable this alert."
6096
  msgstr ""
6097
 
6098
- #: wp-security-audit-log.php:824
6099
  #, php-format
6100
  msgid ""
6101
  "You are using a version of PHP that is older than %s, which is no longer "
6102
  "supported."
6103
  msgstr ""
6104
 
6105
- #: wp-security-audit-log.php:826
6106
  msgid ""
6107
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
6108
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
6109
  "are using."
6110
  msgstr ""
6111
 
6112
- #: wp-security-audit-log.php:909
6113
- msgid ""
6114
- "This plugin uses 3 tables in the WordPress database to store the activity "
6115
- "log and settings. It seems that these tables were not created."
6116
- msgstr ""
6117
-
6118
- #: wp-security-audit-log.php:911
6119
- msgid ""
6120
- "This could happen because the database user does not have the right "
6121
- "privileges to create the tables in the database. We recommend you to update "
6122
- "the privileges and try enabling the plugin again."
6123
- msgstr ""
6124
-
6125
- #: wp-security-audit-log.php:913
6126
- #, php-format
6127
- msgid ""
6128
- "If after doing so you still have issues, please send us an email on %s for "
6129
- "assistance."
6130
- msgstr ""
6131
-
6132
- #: wp-security-audit-log.php:913
6133
- msgid "support@wpsecurityauditlog.com"
6134
- msgstr ""
6135
-
6136
- #: wp-security-audit-log.php:1564
6137
- msgid "Every 6 hours"
6138
- msgstr ""
6139
-
6140
- #: wp-security-audit-log.php:1568
6141
- msgid "Every 45 minutes"
6142
- msgstr ""
6143
-
6144
- #: wp-security-audit-log.php:1572
6145
- msgid "Every 30 minutes"
6146
- msgstr ""
6147
-
6148
- #: wp-security-audit-log.php:1576
6149
- msgid "Every 15 minutes"
6150
- msgstr ""
6151
-
6152
- #: wp-security-audit-log.php:1580
6153
- msgid "Every 10 minutes"
6154
- msgstr ""
6155
-
6156
- #: wp-security-audit-log.php:1584
6157
- msgid "Every 1 minute"
6158
- msgstr ""
6159
-
6160
- #. translators: 1. Deprecated method name 2. Version since deprecated
6161
- #: wp-security-audit-log.php:1598
6162
- #, php-format
6163
- msgid "Method %1$s is deprecated since version %2$s!"
6164
  msgstr ""
6165
 
6166
  #. Plugin URI of the plugin/theme
 
6167
  msgid "http://www.wpsecurityauditlog.com/"
6168
  msgstr ""
6169
 
@@ -6180,7 +4122,3 @@ msgstr ""
6180
  #. Author of the plugin/theme
6181
  msgid "WP White Security"
6182
  msgstr ""
6183
-
6184
- #. Author URI of the plugin/theme
6185
- msgid "http://www.wpwhitesecurity.com/"
6186
- 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-05-02 11:30+0100\n"
7
+ "PO-Revision-Date: 2018-05-02 11:30+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.0.7\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"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
+ #: classes/AuditLogListView.php:80
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "No events so far."
26
  msgstr ""
27
 
28
+ #: classes/AuditLogListView.php:98
29
  msgid "Show "
30
  msgstr ""
31
 
32
+ #: classes/AuditLogListView.php:108
33
  msgid " Items"
34
  msgstr ""
35
 
36
+ #: classes/AuditLogListView.php:123 classes/Views/AuditLog.php:221
37
+ #: classes/Views/AuditLog.php:244
38
  msgid "All Sites"
39
  msgstr ""
40
 
41
+ #: classes/AuditLogListView.php:147
42
  msgid "Live Database"
43
  msgstr ""
44
 
45
+ #: classes/AuditLogListView.php:150
46
  msgid "Archive Database"
47
  msgstr ""
48
 
49
+ #: classes/AuditLogListView.php:203 classes/WidgetManager.php:67
 
50
  msgid "User"
51
  msgstr ""
52
 
53
+ #: classes/AuditLogListView.php:205 classes/Views/Settings.php:650
54
  msgid "Username"
55
  msgstr ""
56
 
57
+ #: classes/AuditLogListView.php:208 classes/AuditLogListView.php:225
58
+ msgid "Alert ID"
 
59
  msgstr ""
60
 
61
+ #: classes/AuditLogListView.php:209 classes/AuditLogListView.php:228
 
62
  msgid "Severity"
63
  msgstr ""
64
 
65
+ #: classes/AuditLogListView.php:210 classes/AuditLogListView.php:231
66
  msgid "Date"
67
  msgstr ""
68
 
69
+ #: classes/AuditLogListView.php:212 classes/AuditLogListView.php:237
70
  msgid "Source IP"
71
  msgstr ""
72
 
73
+ #: classes/AuditLogListView.php:215 classes/AuditLogListView.php:240
74
  msgid "Site"
75
  msgstr ""
76
 
77
+ #: classes/AuditLogListView.php:217 classes/AuditLogListView.php:243
78
  msgid "Message"
79
  msgstr ""
80
 
81
+ #: classes/AuditLogListView.php:295
82
  msgid "Click to toggle."
83
  msgstr ""
84
 
85
+ #: classes/AuditLogListView.php:314
86
+ msgid "Disable this type of alerts."
87
  msgstr ""
88
 
89
+ #: classes/AuditLogListView.php:322
90
  msgid "Unknown error code."
91
  msgstr ""
92
 
93
+ #: classes/AuditLogListView.php:357
94
+ msgid "Show me all activity by this User"
 
 
 
 
 
 
 
 
95
  msgstr ""
96
 
97
+ #: classes/AuditLogListView.php:372
98
  msgid "Unknown"
99
  msgstr ""
100
 
101
+ #: classes/AuditLogListView.php:376 classes/Views/Licensing.php:113
 
 
 
 
102
  #: classes/Views/Licensing.php:153
103
  msgid "Plugin"
104
  msgstr ""
105
 
106
+ #: classes/AuditLogListView.php:380
107
  msgid "Plugins"
108
  msgstr ""
109
 
110
+ #: classes/AuditLogListView.php:384
111
  msgid "Website Visitor"
112
  msgstr ""
113
 
114
+ #: classes/AuditLogListView.php:388
 
115
  msgid "System"
116
  msgstr ""
117
 
118
+ #: classes/AuditLogListView.php:408 classes/AuditLogListView.php:421
119
  msgid "Show me all activity originating from this IP Address"
120
  msgstr ""
121
 
122
+ #: classes/AuditLogListView.php:450
123
  msgid "View all details of this change"
124
  msgstr ""
125
 
126
+ #: classes/AuditLogListView.php:451 classes/AuditLogListView.php:597
 
127
  msgid "Alert Data Inspector"
128
  msgstr ""
129
 
130
+ #: classes/AuditLogListView.php:552 classes/AuditLogListView.php:569
 
 
 
 
131
  msgid "Download the log file."
132
  msgstr ""
133
 
134
+ #: classes/AuditLogListView.php:577
 
135
  msgid "published"
136
  msgstr ""
137
 
138
+ #: classes/Loggers/Database.php:182 classes/Views/EmailNotifications.php:153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  #: classes/Views/EmailNotifications.php:185 classes/Views/ExternalDB.php:152
140
+ #: classes/Views/ExternalDB.php:184 classes/Views/Help.php:144
141
+ #: classes/Views/Help.php:195 classes/Views/LogInUsers.php:154
142
  #: classes/Views/LogInUsers.php:186 classes/Views/Reports.php:153
143
  #: classes/Views/Reports.php:185 classes/Views/Search.php:153
144
  #: classes/Views/Search.php:178
145
  msgid "Upgrade to Premium"
146
  msgstr ""
147
 
148
+ #: classes/Loggers/Database.php:183 classes/Views/AuditLog.php:105
149
+ #: classes/Views/EmailNotifications.php:154
150
  #: classes/Views/EmailNotifications.php:186 classes/Views/ExternalDB.php:153
151
+ #: classes/Views/ExternalDB.php:185 classes/Views/Help.php:196
152
  #: classes/Views/LogInUsers.php:155 classes/Views/LogInUsers.php:187
153
  #: classes/Views/Reports.php:154 classes/Views/Reports.php:186
154
  #: classes/Views/Search.php:154 classes/Views/Search.php:179
155
  msgid "More Information"
156
  msgstr ""
157
 
158
+ #: classes/Sensors/Content.php:941 classes/Sensors/Content.php:949
159
+ #: classes/Sensors/WooCommerce.php:608 classes/Sensors/WooCommerce.php:614
160
  msgid "Password Protected"
161
  msgstr ""
162
 
163
+ #: classes/Sensors/Content.php:943 classes/Sensors/Content.php:951
164
  msgid "Public"
165
  msgstr ""
166
 
167
+ #: classes/Sensors/Content.php:945 classes/Sensors/Content.php:953
168
  msgid "Private"
169
  msgstr ""
170
 
171
+ #: classes/Sensors/WooCommerce.php:1270
 
 
 
 
 
 
 
172
  msgid "In stock"
173
  msgstr ""
174
 
175
+ #: classes/Sensors/WooCommerce.php:1272
176
  msgid "Out of stock"
177
  msgstr ""
178
 
179
+ #: classes/Settings.php:363
 
 
 
 
 
 
 
 
 
 
 
 
180
  msgid "This function is deprecated"
181
  msgstr ""
182
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
183
  #: classes/Views/AuditLog.php:78
184
  msgid ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
185
  "See who is logged in to your WordPress, create user productivity reports, "
186
  "get alerted via email of important changes and more!"
187
  msgstr ""
188
 
189
+ #: classes/Views/AuditLog.php:79
190
  msgid ""
191
  "Unlock these powerful features and much more with the premium edition of WP "
192
  "Security Audit Log."
193
  msgstr ""
194
 
195
+ #: classes/Views/AuditLog.php:104
196
+ msgid "Buy Now"
 
 
 
 
 
 
 
 
 
 
 
 
197
  msgstr ""
198
 
199
+ #: classes/Views/AuditLog.php:123
200
  msgid ""
201
  "There are connectivity issues with the database where the WordPress activity "
202
  "log is stored. The logs will be temporary buffered in the WordPress database "
203
  "until the connection is fully restored."
204
  msgstr ""
205
 
206
+ #: classes/Views/AuditLog.php:140 classes/Views/AuditLog.php:156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  msgid "Audit Log Viewer"
208
  msgstr ""
209
 
210
+ #: classes/Views/AuditLog.php:183 classes/Views/Licensing.php:82
211
+ #: classes/Views/Settings.php:211 classes/Views/ToggleAlerts.php:68
212
  msgid "You do not have sufficient permissions to access this page."
213
  msgstr ""
214
 
215
+ #: classes/Views/AuditLog.php:191 classes/Views/AuditLog.php:422
216
+ #: classes/Views/Licensing.php:90 classes/Views/Settings.php:207
217
+ #: classes/Views/Settings.php:968 classes/Views/Settings.php:996
218
+ #: classes/Views/Settings.php:1026
219
+ msgid "Nonce verification failed."
 
 
 
 
 
 
 
 
 
 
220
  msgstr ""
221
 
222
+ #: classes/Views/AuditLog.php:220 classes/Views/AuditLog.php:243
223
  msgid "Please enter the number of alerts you would like to see on one page:"
224
  msgstr ""
225
 
226
+ #: classes/Views/AuditLog.php:222 classes/Views/AuditLog.php:245
227
  msgid "No Results"
228
  msgstr ""
229
 
230
+ #: classes/Views/AuditLog.php:419
231
  msgid "No users found."
232
  msgstr ""
233
 
234
+ #: classes/Views/AuditLog.php:441
 
 
 
 
 
 
 
 
 
 
 
 
 
235
  msgid "Log file does not exist."
236
  msgstr ""
237
 
238
+ #: classes/Views/AuditLog.php:482
239
  msgid "Request to get log file failed."
240
  msgstr ""
241
 
242
+ #: classes/Views/AuditLog.php:489
243
+ msgid "Nonce verification failed!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgstr ""
245
 
246
  #: classes/Views/EmailNotifications.php:28
337
 
338
  #: classes/Views/ExternalDB.php:121
339
  msgid ""
340
+ "Configure archiving rules to archive old alerts in an archiving database,"
341
  msgstr ""
342
 
343
  #: classes/Views/ExternalDB.php:167 classes/Views/ExternalDB.php:168
353
  msgstr ""
354
 
355
  #: classes/Views/Help.php:30 classes/Views/Help.php:44
 
356
  msgid "Help"
357
  msgstr ""
358
 
359
+ #: classes/Views/Help.php:75
 
 
 
 
360
  msgid "Getting Started"
361
  msgstr ""
362
 
363
+ #: classes/Views/Help.php:77
364
  msgid ""
365
  "Getting started with WP Security Audit Log is really easy; once the plugin "
366
  "is installed it will automatically keep a log of everything that is "
368
  "video below for a quick overview of the plugin."
369
  msgstr ""
370
 
371
+ #: classes/Views/Help.php:86
372
  msgid "Plugin Support"
373
  msgstr ""
374
 
375
+ #: classes/Views/Help.php:88
376
  msgid ""
377
  "Have you encountered or noticed any issues while using WP Security Audit Log "
378
  "plugin?"
379
  msgstr ""
380
 
381
+ #: classes/Views/Help.php:89
382
  msgid ""
383
  "Or you want to report something to us? Click any of the options below to "
384
  "post on the plugin's forum or contact our support directly."
385
  msgstr ""
386
 
387
+ #: classes/Views/Help.php:91
388
  msgid "Free Support Forum"
389
  msgstr ""
390
 
391
+ #: classes/Views/Help.php:93
392
  msgid "Free Support Email"
393
  msgstr ""
394
 
395
+ #: classes/Views/Help.php:99
396
  msgid "Plugin Documentation"
397
  msgstr ""
398
 
399
+ #: classes/Views/Help.php:101
400
  msgid ""
401
  "For more technical information about the WP Security Audit Log plugin please "
402
  "visit the plugin’s knowledge base."
403
  msgstr ""
404
 
405
+ #: classes/Views/Help.php:102
406
  msgid ""
407
+ "Refer to the list of WordPress security alerts for a complete list of Alerts "
408
  "and IDs that the plugin uses to keep a log of all the changes in the "
409
  "WordPress audit log."
410
  msgstr ""
411
 
412
+ #: classes/Views/Help.php:104
413
  msgid "Plugin Website"
414
  msgstr ""
415
 
416
+ #: classes/Views/Help.php:106
417
  msgid "Knowledge Base"
418
  msgstr ""
419
 
420
+ #: classes/Views/Help.php:108
421
+ msgid "List of WordPress Security Alerts"
422
  msgstr ""
423
 
424
+ #: classes/Views/Help.php:114
425
  msgid "Rate WP Security Audit Log"
426
  msgstr ""
427
 
428
+ #: classes/Views/Help.php:116
429
  msgid ""
430
  "We work really hard to deliver a plugin that enables you to keep a record of "
431
  "all the changes that are happening on your WordPress."
432
  msgstr ""
433
 
434
+ #: classes/Views/Help.php:117
435
  msgid ""
436
  "It takes thousands of man-hours every year and endless amount of dedication "
437
  "to research, develop and maintain the free edition of WP Security Audit Log."
438
  msgstr ""
439
 
440
+ #: classes/Views/Help.php:118
441
  msgid ""
442
  "Therefore if you like what you see, and find WP Security Audit Log useful we "
443
  "ask you nothing more than to please rate our plugin."
444
  msgstr ""
445
 
446
+ #: classes/Views/Help.php:119
447
  msgid "We appreciate every star!"
448
  msgstr ""
449
 
450
+ #: classes/Views/Help.php:129
451
  msgid "Rate Plugin"
452
  msgstr ""
453
 
454
+ #: classes/Views/Help.php:148
455
  msgid "See who is logged in"
456
  msgstr ""
457
 
458
+ #: classes/Views/Help.php:149
459
  msgid "And remotely terminate sessions"
460
  msgstr ""
461
 
462
+ #: classes/Views/Help.php:152
463
  msgid "Generate reports"
464
  msgstr ""
465
 
466
+ #: classes/Views/Help.php:153
467
  msgid "Or configure automated email reports"
468
  msgstr ""
469
 
470
+ #: classes/Views/Help.php:156
471
  msgid "Configure email notifications"
472
  msgstr ""
473
 
474
+ #: classes/Views/Help.php:157
475
  msgid "Get instantly notified of important changes"
476
  msgstr ""
477
 
478
+ #: classes/Views/Help.php:160
479
  msgid "Add Search"
480
  msgstr ""
481
 
482
+ #: classes/Views/Help.php:161
483
  msgid "Easily track down suspicious behaviour"
484
  msgstr ""
485
 
486
+ #: classes/Views/Help.php:164
487
  msgid "Integrate & Centralise"
488
  msgstr ""
489
 
490
+ #: classes/Views/Help.php:165
491
  msgid "Export the logs to your centralised logging system"
492
  msgstr ""
493
 
495
  msgid "Licensing"
496
  msgstr ""
497
 
498
+ #: classes/Views/Licensing.php:96 classes/Views/Settings.php:218
499
+ #: classes/Views/ToggleAlerts.php:92
500
  msgid "Settings have been saved."
501
  msgstr ""
502
 
503
+ #: classes/Views/Licensing.php:101 classes/Views/Settings.php:223
504
+ #: classes/Views/ToggleAlerts.php:98
505
  msgid "Error: "
506
  msgstr ""
507
 
660
  "to fine tune the search results."
661
  msgstr ""
662
 
663
+ #: classes/Views/Settings.php:57 classes/Views/Settings.php:71
664
+ msgid "Settings"
665
  msgstr ""
666
 
667
+ #: classes/Views/Settings.php:229
668
+ msgid "General"
669
  msgstr ""
670
 
671
+ #: classes/Views/Settings.php:230
672
+ msgid "Audit Log"
673
  msgstr ""
674
 
675
+ #: classes/Views/Settings.php:231
676
  msgid "Exclude Objects"
677
  msgstr ""
678
 
679
+ #: classes/Views/Settings.php:247
680
+ msgid "From Email & Name"
681
  msgstr ""
682
 
683
+ #: classes/Views/Settings.php:250
684
+ msgid "Email Address"
 
685
  msgstr ""
686
 
687
+ #: classes/Views/Settings.php:253
688
+ msgid "Display Name"
689
  msgstr ""
690
 
691
+ #: classes/Views/Settings.php:259
692
+ #, php-format
693
+ msgid ""
694
+ "These email address and display name will be used as From details in the "
695
+ "emails sent by the %s . Please ensure the mail server can relay emails with "
696
+ "the domain of the specified email address."
697
  msgstr ""
698
 
699
+ #: classes/Views/Settings.php:260
700
+ msgid "(premium add-ons)"
701
  msgstr ""
702
 
703
+ #: classes/Views/Settings.php:268
704
+ msgid "Alerts Dashboard Widget"
705
  msgstr ""
706
 
707
+ #: classes/Views/Settings.php:274
708
+ msgid "On"
709
  msgstr ""
710
 
711
+ #: classes/Views/Settings.php:279
712
+ msgid "Off"
 
 
 
713
  msgstr ""
714
 
715
+ #: classes/Views/Settings.php:285
716
+ #, php-format
717
+ msgid "Display a dashboard widget with the latest %d security alerts."
718
  msgstr ""
719
 
720
+ #: classes/Views/Settings.php:295
721
+ msgid "Reverse Proxy / Firewall Options"
 
 
 
 
722
  msgstr ""
723
 
724
+ #: classes/Views/Settings.php:300
725
+ msgid "WordPress running behind firewall or proxy"
726
  msgstr ""
727
 
728
+ #: classes/Views/Settings.php:303
729
+ msgid ""
730
+ "Enable this option if your WordPress is running behind a firewall or reverse "
731
+ "proxy. When this option is enabled the plugin will retrieve the user's IP "
732
+ "address from the proxy header."
733
  msgstr ""
734
 
735
+ #: classes/Views/Settings.php:307
736
+ msgid "Filter Internal IP Addresses"
737
  msgstr ""
738
 
739
+ #: classes/Views/Settings.php:310
740
+ msgid ""
741
+ "Enable this option to filter internal IP addresses from the proxy headers."
742
  msgstr ""
743
 
744
+ #: classes/Views/Settings.php:316
745
+ msgid "Can Manage Plugin"
746
  msgstr ""
747
 
748
+ #: classes/Views/Settings.php:323
749
+ msgid "Users and Roles in this list can manage the plugin settings"
750
  msgstr ""
751
 
752
+ #: classes/Views/Settings.php:341
753
+ msgid "Restrict Plugin Access"
754
  msgstr ""
755
 
756
+ #: classes/Views/Settings.php:351
757
+ msgid ""
758
+ "If this option is disabled all the administrators on this WordPress have "
759
+ "access to manage this plugin."
760
  msgstr ""
761
 
762
+ #: classes/Views/Settings.php:352
763
  msgid ""
764
+ "By enabling this option only <strong>You</strong> and the users specified in "
765
+ "the <strong>Can Manage Plugin</strong> and <strong>Can View Alerts</strong> "
766
+ "can configure this plugin or view the alerts in the WordPress audit trail."
767
  msgstr ""
768
 
769
+ #: classes/Views/Settings.php:359
770
  msgid "Login Page Notification"
771
  msgstr ""
772
 
773
+ #: classes/Views/Settings.php:383 wp-security-audit-log.php:1122
774
  msgid ""
775
  "For security and auditing purposes, a record of all of your logged-in "
776
  "actions and changes within the WordPress dashboard will be recorded in an "
779
  "IP address where you accessed this site from."
780
  msgstr ""
781
 
782
+ #: classes/Views/Settings.php:401
783
+ msgid ""
784
+ "Many compliance regulations (such as the GDRP) require website "
785
+ "administrators to tell the users of this website that a log is kept of all "
786
+ "the changes they do when logged in."
787
+ msgstr ""
788
+
789
+ #: classes/Views/Settings.php:403
790
  msgid "<strong>Note: </strong>"
791
  msgstr ""
792
 
793
+ #: classes/Views/Settings.php:403
794
  msgid ""
795
  "The only HTML code allowed in the login page notification is for links ( < a "
796
+ "href >...< /a > )."
797
  msgstr ""
798
 
799
+ #: classes/Views/Settings.php:410
800
+ msgid "Developer Options"
801
  msgstr ""
802
 
803
+ #: classes/Views/Settings.php:416
804
+ msgid "Show Developer Options"
805
+ msgstr ""
806
+
807
+ #: classes/Views/Settings.php:420
808
  msgid ""
809
+ "Only enable these options on testing, staging and development websites. "
810
+ "Enabling any of the settings below on LIVE websites may cause unintended "
811
+ "side-effects including degraded performance."
812
  msgstr ""
813
 
814
+ #: classes/Views/Settings.php:434
815
+ msgid "Request Log"
816
  msgstr ""
817
 
818
+ #: classes/Views/Settings.php:435
819
+ msgid "Enables logging request to file."
820
  msgstr ""
821
 
822
+ #: classes/Views/Settings.php:459
823
  msgid ""
824
+ "The request log file is saved in the /wp-content/uploads/wp-security-audit-"
825
+ "log/ directory."
826
+ msgstr ""
827
+
828
+ #: classes/Views/Settings.php:467
829
+ msgid "Hide Plugin in Plugins Page"
830
  msgstr ""
831
 
832
+ #: classes/Views/Settings.php:472
833
+ msgid "Hide"
834
  msgstr ""
835
 
836
+ #: classes/Views/Settings.php:476
837
  msgid ""
838
+ "To manually revert this setting set the value of option wsal-hide-plugin to "
839
+ "0 in the wp_wsal_options table."
 
840
  msgstr ""
841
 
842
+ #: classes/Views/Settings.php:483
843
+ msgid "Remove Data on Uninstall"
844
  msgstr ""
845
 
846
+ #: classes/Views/Settings.php:490
847
+ msgid ""
848
+ "Check this box if you would like remove all data when the plugin is deleted."
849
  msgstr ""
850
 
851
+ #: classes/Views/Settings.php:509
852
+ msgid ""
853
+ "The options below are disabled because you enabled archiving of alerts to "
854
+ "the archiving table from"
855
  msgstr ""
856
 
857
+ #: classes/Views/Settings.php:514
858
+ msgid "Audit Log Retention"
859
  msgstr ""
860
 
861
+ #: classes/Views/Settings.php:517
862
+ msgid "(eg: 1 month)"
863
  msgstr ""
864
 
865
+ #: classes/Views/Settings.php:523
866
+ msgid "None"
 
 
867
  msgstr ""
868
 
869
+ #: classes/Views/Settings.php:527
870
+ msgid "(Leave empty or enter 0 to disable automatic pruning.)"
871
  msgstr ""
872
 
873
+ #: classes/Views/Settings.php:533
874
+ msgid "Delete alerts older than"
 
 
 
875
  msgstr ""
876
 
877
+ #: classes/Views/Settings.php:542
878
+ msgid "months"
879
  msgstr ""
880
 
881
+ #: classes/Views/Settings.php:546
882
+ msgid "(eg: 80)"
 
 
883
  msgstr ""
884
 
885
+ #: classes/Views/Settings.php:552
886
+ msgid "Keep up to"
887
  msgstr ""
888
 
889
+ #: classes/Views/Settings.php:557
890
+ msgid "alerts"
 
 
 
891
  msgstr ""
892
 
893
+ #: classes/Views/Settings.php:563
894
+ msgid "Next Scheduled Cleanup is in "
895
  msgstr ""
896
 
897
+ #: classes/Views/Settings.php:567
898
+ #, php-format
899
+ msgid "(or %s)"
900
  msgstr ""
901
 
902
+ #: classes/Views/Settings.php:568
903
+ msgid "Run Manually"
904
  msgstr ""
905
 
906
+ #: classes/Views/Settings.php:576
907
+ msgid "Can View Alerts"
908
  msgstr ""
909
 
910
+ #: classes/Views/Settings.php:583
911
+ msgid "Users and Roles in this list can view the security alerts"
912
  msgstr ""
913
 
914
+ #: classes/Views/Settings.php:599
915
+ msgid "Refresh Audit Log Viewer"
916
  msgstr ""
917
 
918
+ #: classes/Views/Settings.php:606
919
+ msgid "Automatic"
 
 
 
 
920
  msgstr ""
921
 
922
+ #: classes/Views/Settings.php:608
923
+ msgid "Refresh Audit Log Viewer as soon as there are new alerts."
924
  msgstr ""
925
 
926
+ #: classes/Views/Settings.php:613
927
+ msgid "Manual"
928
  msgstr ""
929
 
930
+ #: classes/Views/Settings.php:615
931
+ msgid "Refresh Audit Log Viewer only when the page is reloaded."
932
  msgstr ""
933
 
934
+ #: classes/Views/Settings.php:622
935
+ msgid "Alerts Timestamp"
 
 
936
  msgstr ""
937
 
938
+ #: classes/Views/Settings.php:629
939
+ msgid "UTC"
 
 
 
940
  msgstr ""
941
 
942
+ #: classes/Views/Settings.php:635
943
+ msgid "WordPress' timezone"
 
 
 
944
  msgstr ""
945
 
946
+ #: classes/Views/Settings.php:638
 
 
947
  msgid ""
948
+ "Select which timestamp the alerts should have in the Audit Log viewer. Note "
949
+ "that the WordPress' timezone might be different from that of the server."
950
  msgstr ""
951
 
952
+ #: classes/Views/Settings.php:644
953
+ msgid "User Information in Audit Log"
954
  msgstr ""
955
 
956
+ #: classes/Views/Settings.php:655
957
+ msgid "First Name & Last Name"
958
  msgstr ""
959
 
960
+ #: classes/Views/Settings.php:658
961
+ msgid ""
962
+ "Select the type of user information that should be displayed in the audit "
963
+ "log."
964
  msgstr ""
965
 
966
+ #: classes/Views/Settings.php:664
967
+ msgid "Audit Log Columns Selection"
968
  msgstr ""
969
 
970
+ #: classes/Views/Settings.php:680
971
+ msgid ""
972
+ "When you disable any of the above such details won’t be shown in the Audit "
973
+ "Log viewer though the plugin will still record such information in the "
974
+ "database."
975
  msgstr ""
976
 
977
+ #: classes/Views/Settings.php:686
978
+ msgid "Disable Alerts for WordPress Background Activity"
979
  msgstr ""
980
 
981
+ #: classes/Views/Settings.php:692
982
+ msgid "Hide activity"
983
  msgstr ""
984
 
985
+ #: classes/Views/Settings.php:696
986
+ msgid ""
987
+ "For example do not raise an alert when WordPress deletes the auto drafts."
988
  msgstr ""
989
 
990
+ #: classes/Views/Settings.php:707
991
+ msgid "Users & Roles"
992
  msgstr ""
993
 
994
+ #: classes/Views/Settings.php:710
995
  msgid ""
996
+ "Any of the users and roles listed in the below options will be excluded from "
997
+ "monitoring. This means that any change they do will not be logged."
 
998
  msgstr ""
999
 
1000
+ #: classes/Views/Settings.php:714
1001
+ msgid "Excluded Users"
1002
  msgstr ""
1003
 
1004
+ #: classes/Views/Settings.php:734
1005
+ msgid "Excluded Roles"
1006
  msgstr ""
1007
 
1008
+ #: classes/Views/Settings.php:753
1009
+ msgid "Custom Fields"
1010
  msgstr ""
1011
 
1012
+ #: classes/Views/Settings.php:757
1013
  msgid ""
1014
+ "All of the custom fields listed below will be excluded from monitoring. This "
1015
+ "means that if they are changed or updated the plugin will not log such "
1016
+ "activity."
1017
  msgstr ""
1018
 
1019
+ #: classes/Views/Settings.php:758
1020
  msgid ""
1021
+ "You can use the * wildcard to exclude more than one Custom Field. For "
1022
+ "example, to exclude all the Custom Fields that start with wp123 specify "
1023
+ "wp123*."
 
1024
  msgstr ""
1025
 
1026
+ #: classes/Views/Settings.php:763
1027
+ msgid "Excluded Custom Fields"
1028
  msgstr ""
1029
 
1030
+ #: classes/Views/Settings.php:782
1031
+ msgid "IP Addresses"
1032
  msgstr ""
1033
 
1034
+ #: classes/Views/Settings.php:785
1035
+ msgid ""
1036
+ "Any of the IP addresses listed below will be excluded from monitoring. This "
1037
+ "means that all activity from such IP address will not be recorded."
1038
  msgstr ""
1039
 
1040
+ #: classes/Views/Settings.php:789
1041
+ msgid "Excluded IP Addresses"
1042
  msgstr ""
1043
 
1044
+ #: classes/Views/Settings.php:808 defaults.php:206
1045
+ msgid "Custom Post Types"
1046
  msgstr ""
1047
 
1048
+ #: classes/Views/Settings.php:811
1049
  msgid ""
1050
+ "The below list of Custom Post Types are excluded from monitoring. This means "
1051
+ "that all activity related to these Custom Post Types will not be recorded."
 
1052
  msgstr ""
1053
 
1054
+ #: classes/Views/Settings.php:814
1055
+ msgid "Exclude Custom Post Type from monitoring"
1056
  msgstr ""
1057
 
1058
+ #: classes/Views/ToggleAlerts.php:27 classes/Views/ToggleAlerts.php:41
1059
+ msgid "Enable/Disable Alerts"
1060
+ msgstr ""
1061
+
1062
+ #: classes/Views/ToggleAlerts.php:175
1063
+ msgid "Code"
1064
  msgstr ""
1065
 
1066
+ #: classes/Views/ToggleAlerts.php:176
1067
+ msgid "Type"
1068
  msgstr ""
1069
 
1070
+ #: classes/Views/ToggleAlerts.php:177 classes/WidgetManager.php:68
1071
+ msgid "Description"
1072
  msgstr ""
1073
 
1074
+ #: classes/Views/ToggleAlerts.php:186
1075
  msgid ""
1076
+ "<strong>Note:</strong> Post refers to any type of content, i.e. blog post, "
1077
+ "page or a post with a custom post type."
1078
  msgstr ""
1079
 
1080
+ #: classes/Views/ToggleAlerts.php:201
1081
+ msgid "Not Implemented"
1082
  msgstr ""
1083
 
1084
+ #: classes/Views/ToggleAlerts.php:204
1085
+ msgid "Not Available"
1086
  msgstr ""
1087
 
1088
+ #: classes/Views/ToggleAlerts.php:230 classes/Views/ToggleAlerts.php:263
1089
+ msgid ""
1090
+ "Capture 404 requests to file (the log file are created in the /wp-content/"
1091
+ "uploads/wp-security-audit-log/404s/ directory)"
1092
  msgstr ""
1093
 
1094
+ #: classes/Views/ToggleAlerts.php:238 classes/Views/ToggleAlerts.php:271
1095
+ msgid "Purge log files older than one month"
1096
  msgstr ""
1097
 
1098
+ #: classes/Views/ToggleAlerts.php:243
1099
  msgid ""
1100
+ "Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
1101
+ "to non-existing pages from the same IP address. Increase the value in this "
1102
+ "setting to the desired amount to keep a log of more or less requests."
 
1103
  msgstr ""
1104
 
1105
+ #: classes/Views/ToggleAlerts.php:248 classes/Views/ToggleAlerts.php:281
1106
+ msgid "Record the referrer that generated the 404 error."
1107
  msgstr ""
1108
 
1109
+ #: classes/Views/ToggleAlerts.php:276
1110
  msgid ""
1111
+ "Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
1112
+ "to non-existing pages from the same IP address. Increase the value in this "
1113
+ "setting to the desired amount to keep a log of more or less requests. Note "
1114
+ "that by increasing this value to a high number, should your website be "
1115
+ "scanned the plugin will consume more resources to log all the requests."
1116
  msgstr ""
1117
 
1118
+ #: classes/Views/ToggleAlerts.php:293 classes/Views/ToggleAlerts.php:306
1119
  msgid ""
1120
+ "Number of login attempts to log. Enter 0 to log all failed login attempts. "
1121
+ "(By default the plugin only logs up to 10 failed login because the process "
1122
+ "can be very resource intensive in case of a brute force attack)"
1123
  msgstr ""
1124
 
1125
+ #: classes/Views/ToggleAlerts.php:321
1126
+ msgid "Save Changes"
1127
  msgstr ""
1128
 
1129
+ #: classes/WidgetManager.php:36
1130
+ msgid "Latest Alerts"
1131
  msgstr ""
1132
 
1133
+ #: classes/WidgetManager.php:60
1134
+ msgid "No alerts found."
 
1135
  msgstr ""
1136
 
1137
+ #: defaults.php:60
1138
+ msgid "Fatal run-time error."
 
 
 
 
1139
  msgstr ""
1140
 
1141
+ #: defaults.php:64
1142
+ msgid "Run-time warning (non-fatal error)."
1143
  msgstr ""
1144
 
1145
+ #: defaults.php:68
1146
+ msgid "Compile-time parse error."
1147
  msgstr ""
1148
 
1149
+ #: defaults.php:72
1150
+ msgid "Run-time notice."
1151
  msgstr ""
1152
 
1153
+ #: defaults.php:76
1154
+ msgid "Fatal error that occurred during startup."
 
 
 
 
 
 
1155
  msgstr ""
1156
 
1157
+ #: defaults.php:80
1158
+ msgid "Warnings that occurred during startup."
1159
  msgstr ""
1160
 
1161
+ #: defaults.php:84
1162
+ msgid "Fatal compile-time error."
1163
  msgstr ""
1164
 
1165
+ #: defaults.php:88
1166
+ msgid "Compile-time warning."
1167
  msgstr ""
1168
 
1169
+ #: defaults.php:92
1170
+ msgid "User-generated error message."
 
 
 
 
 
 
 
 
1171
  msgstr ""
1172
 
1173
+ #: defaults.php:96
1174
+ msgid "User-generated warning message."
1175
  msgstr ""
1176
 
1177
+ #: defaults.php:100
1178
+ msgid "User-generated notice message."
1179
  msgstr ""
1180
 
1181
+ #: defaults.php:104
1182
+ msgid "Non-standard/optimal code warning."
1183
  msgstr ""
1184
 
1185
+ #: defaults.php:108
1186
+ msgid "Catchable fatal error."
1187
  msgstr ""
1188
 
1189
+ #: defaults.php:112
1190
+ msgid "Run-time deprecation notices."
1191
  msgstr ""
1192
 
1193
+ #: defaults.php:116
1194
+ msgid "Run-time user deprecation notices."
1195
  msgstr ""
1196
 
1197
+ #: defaults.php:121
1198
+ msgid "Critical, high-impact messages."
1199
  msgstr ""
1200
 
1201
+ #: defaults.php:125
1202
+ msgid "Debug informational messages."
1203
  msgstr ""
1204
 
1205
+ #: defaults.php:135
1206
+ msgid "Content & Comments"
1207
  msgstr ""
1208
 
1209
+ #: defaults.php:139
1210
+ msgid "Content"
1211
  msgstr ""
1212
 
1213
+ #: defaults.php:140
1214
+ msgid "User created a new post and saved it as draft"
1215
  msgstr ""
1216
 
1217
+ #: defaults.php:140
1218
+ msgid ""
1219
+ "Created a new %PostType% titled %PostTitle% and saved it as draft. "
1220
+ "%EditorLinkPost%."
1221
  msgstr ""
1222
 
1223
+ #: defaults.php:141
1224
+ msgid "User published a post"
1225
  msgstr ""
1226
 
1227
+ #: defaults.php:141
1228
+ msgid ""
1229
+ "Published a %PostType% titled %PostTitle%. URL is %PostUrl%. %EditorLinkPost"
1230
+ "%."
1231
  msgstr ""
1232
 
1233
+ #: defaults.php:142
1234
+ msgid "User modified a post"
1235
  msgstr ""
1236
 
1237
+ #: defaults.php:142
1238
+ msgid ""
1239
+ "Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
1240
+ "%EditorLinkPost%."
1241
  msgstr ""
1242
 
1243
+ #: defaults.php:143
1244
+ msgid "User permanently deleted a post from the trash"
1245
  msgstr ""
1246
 
1247
+ #: defaults.php:143
1248
+ msgid ""
1249
+ "Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
1250
  msgstr ""
1251
 
1252
+ #: defaults.php:144
1253
+ msgid "User moved a post to the trash"
1254
  msgstr ""
1255
 
1256
+ #: defaults.php:144
1257
+ msgid ""
1258
+ "Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
1259
+ "%PostUrl%."
1260
  msgstr ""
1261
 
1262
+ #: defaults.php:145
1263
+ msgid "User restored a post from trash"
1264
  msgstr ""
1265
 
1266
+ #: defaults.php:145
1267
+ msgid ""
1268
+ "The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
1269
+ "URL is: %PostUrl%. %EditorLinkPost%."
1270
  msgstr ""
1271
 
1272
+ #: defaults.php:146
1273
+ msgid "User changed post category"
1274
  msgstr ""
1275
 
1276
+ #: defaults.php:146
1277
+ msgid ""
1278
+ "Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
1279
+ "%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
1280
  msgstr ""
1281
 
1282
+ #: defaults.php:147
1283
+ msgid "User changed post URL"
1284
  msgstr ""
1285
 
1286
+ #: defaults.php:147
1287
+ msgid ""
1288
+ "Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
1289
+ "%.%ChangeText% %EditorLinkPost%."
1290
  msgstr ""
1291
 
1292
+ #: defaults.php:148
1293
+ msgid "User changed post author"
1294
  msgstr ""
1295
 
1296
+ #: defaults.php:148
1297
+ msgid ""
1298
+ "Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
1299
+ "%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
1300
  msgstr ""
1301
 
1302
+ #: defaults.php:149
1303
+ msgid "User changed post status"
1304
  msgstr ""
1305
 
1306
+ #: defaults.php:149
1307
+ msgid ""
1308
+ "Changed the status of the %PostType% titled %PostTitle% from %OldStatus% to "
1309
+ "%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
1310
  msgstr ""
1311
 
1312
+ #: defaults.php:150
1313
+ msgid "User created new category"
1314
  msgstr ""
1315
 
1316
+ #: defaults.php:150
1317
+ msgid ""
1318
+ "Created a new category called %CategoryName%. Category slug is %Slug%. "
1319
+ "%CategoryLink%."
1320
  msgstr ""
1321
 
1322
+ #: defaults.php:151
1323
+ msgid "User deleted category"
1324
  msgstr ""
1325
 
1326
+ #: defaults.php:151
1327
+ msgid ""
1328
+ "Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
1329
+ "%."
1330
  msgstr ""
1331
 
1332
+ #: defaults.php:152
1333
+ msgid "User changed the visibility of a post"
1334
  msgstr ""
1335
 
1336
+ #: defaults.php:152
1337
+ msgid ""
1338
+ "Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
1339
+ "from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
1340
  msgstr ""
1341
 
1342
+ #: defaults.php:153
1343
+ msgid "User changed the date of a post"
1344
  msgstr ""
1345
 
1346
+ #: defaults.php:153
1347
+ msgid ""
1348
+ "Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
1349
+ "%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
1350
  msgstr ""
1351
 
1352
+ #: defaults.php:154
1353
+ msgid "User changed the parent of a page"
1354
  msgstr ""
1355
 
1356
+ #: defaults.php:154
1357
+ msgid ""
1358
+ "Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
1359
+ "%OldParentName% to %NewParentName%. %EditorLinkPost%."
1360
  msgstr ""
1361
 
1362
+ #: defaults.php:155
1363
+ msgid "User changed the template of a page"
1364
  msgstr ""
1365
 
1366
+ #: defaults.php:155
1367
+ msgid ""
1368
+ "Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
1369
+ "%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
1370
  msgstr ""
1371
 
1372
+ #: defaults.php:156
1373
+ msgid "User set a post as sticky"
1374
  msgstr ""
1375
 
1376
+ #: defaults.php:156
1377
+ msgid ""
1378
+ "Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
1379
  msgstr ""
1380
 
1381
+ #: defaults.php:157
1382
+ msgid "User removed post from sticky"
1383
  msgstr ""
1384
 
1385
+ #: defaults.php:157
1386
+ msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
1387
  msgstr ""
1388
 
1389
+ #: defaults.php:158
1390
+ msgid "Changed the parent of a category."
1391
  msgstr ""
1392
 
1393
+ #: defaults.php:158
1394
+ msgid ""
1395
+ "Changed the parent of the category %CategoryName% from %OldParent% to "
1396
+ "%NewParent%. %CategoryLink%."
1397
  msgstr ""
1398
 
1399
+ #: defaults.php:159
1400
+ msgid "User created a custom field for a post"
1401
  msgstr ""
1402
 
1403
+ #: defaults.php:159
1404
+ msgid ""
1405
+ "Created a new custom field called %MetaKey% with value %MetaValue% in the "
1406
+ "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
1407
+ "%EditorLinkPost%.<br>%MetaLink%."
1408
  msgstr ""
1409
 
1410
+ #: defaults.php:160
1411
+ msgid "User updated a custom field value for a post"
1412
  msgstr ""
1413
 
1414
+ #: defaults.php:160
1415
+ msgid ""
1416
+ "Modified the value of the custom field %MetaKey%%ReportText% in the "
1417
+ "%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
1418
+ "%EditorLinkPost%.<br>%MetaLink%."
1419
  msgstr ""
1420
 
1421
+ #: defaults.php:161
1422
+ msgid "User deleted a custom field from a post"
1423
  msgstr ""
1424
 
1425
+ #: defaults.php:161
1426
+ msgid ""
1427
+ "Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
1428
+ "%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
1429
  msgstr ""
1430
 
1431
+ #: defaults.php:162
1432
+ msgid "User updated a custom field name for a post"
1433
  msgstr ""
1434
 
1435
+ #: defaults.php:162
1436
+ msgid ""
1437
+ "Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
1438
+ "%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
1439
+ "%EditorLinkPost%.<br>%MetaLink%."
1440
  msgstr ""
1441
 
1442
+ #: defaults.php:163
1443
+ msgid "User modified the content of a post."
1444
  msgstr ""
1445
 
1446
+ #: defaults.php:163
1447
+ msgid ""
1448
+ "Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
1449
+ "URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
1450
  msgstr ""
1451
 
1452
+ #: defaults.php:164
1453
+ msgid "User submitted a post for review"
1454
  msgstr ""
1455
 
1456
+ #: defaults.php:164
1457
+ msgid ""
1458
+ "Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
1459
+ "%EditorLinkPost%."
1460
  msgstr ""
1461
 
1462
+ #: defaults.php:165
1463
+ msgid "User scheduled a post"
1464
  msgstr ""
1465
 
1466
+ #: defaults.php:165
1467
+ msgid ""
1468
+ "Scheduled the %PostType% titled %PostTitle% to be published on "
1469
+ "%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
1470
  msgstr ""
1471
 
1472
+ #: defaults.php:166
1473
+ msgid "User changed title of a post"
1474
  msgstr ""
1475
 
1476
+ #: defaults.php:166
1477
  msgid ""
1478
+ "Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
1479
+ "%. URL is: %PostUrl%. %EditorLinkPost%."
 
 
 
 
 
 
1480
  msgstr ""
1481
 
1482
+ #: defaults.php:167
1483
+ msgid "User opened a post in the editor"
1484
  msgstr ""
1485
 
1486
+ #: defaults.php:167
1487
+ msgid ""
1488
+ "Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
1489
+ "%PostUrl%. %EditorLinkPost%."
1490
  msgstr ""
1491
 
1492
+ #: defaults.php:168
1493
+ msgid "User viewed a post"
1494
  msgstr ""
1495
 
1496
+ #: defaults.php:168
1497
  msgid ""
1498
+ "Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
1499
+ "%EditorLinkPost%."
1500
  msgstr ""
1501
 
1502
+ #: defaults.php:169
1503
+ msgid "A plugin modified a post"
1504
  msgstr ""
1505
 
1506
+ #: defaults.php:169
1507
+ msgid ""
1508
+ "Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
1509
+ "%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
1510
  msgstr ""
1511
 
1512
+ #: defaults.php:170
1513
+ msgid "User disabled Comments/Trackbacks and Pingbacks in a post."
1514
  msgstr ""
1515
 
1516
+ #: defaults.php:170
1517
  msgid ""
1518
+ "Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
1519
+ "%PostUrl%. %EditorLinkPost%."
1520
  msgstr ""
1521
 
1522
+ #: defaults.php:171
1523
+ msgid "User enabled Comments/Trackbacks and Pingbacks in a post."
1524
  msgstr ""
1525
 
1526
+ #: defaults.php:171
1527
  msgid ""
1528
+ "Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
1529
+ "%PostUrl%. %EditorLinkPost%."
 
 
1530
  msgstr ""
1531
 
1532
+ #: defaults.php:172
1533
+ msgid "User added post tag"
1534
  msgstr ""
1535
 
1536
+ #: defaults.php:172
1537
+ msgid ""
1538
+ "Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
1539
+ "%PostUrl%. %EditorLinkPost%."
1540
  msgstr ""
1541
 
1542
+ #: defaults.php:173
1543
+ msgid "User removed post tag"
 
 
1544
  msgstr ""
1545
 
1546
+ #: defaults.php:173
1547
  msgid ""
1548
+ "Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
1549
+ "%PostUrl%. %EditorLinkPost%."
 
 
 
1550
  msgstr ""
1551
 
1552
+ #: defaults.php:174
1553
+ msgid "User created new tag"
1554
  msgstr ""
1555
 
1556
+ #: defaults.php:174
1557
+ msgid "Added a new tag called %TagName%. View the tag: %TagLink%."
 
1558
  msgstr ""
1559
 
1560
+ #: defaults.php:175
1561
+ msgid "User deleted tag"
 
 
 
1562
  msgstr ""
1563
 
1564
+ #: defaults.php:175
1565
+ msgid "Deleted the tag %TagName%."
 
 
 
1566
  msgstr ""
1567
 
1568
+ #: defaults.php:176
1569
+ msgid "User renamed tag"
1570
  msgstr ""
1571
 
1572
+ #: defaults.php:176
1573
+ msgid "Renamed a tag from %old_name% to %new_name%. View the tag: %TagLink%."
 
 
1574
  msgstr ""
1575
 
1576
+ #: defaults.php:177
1577
+ msgid "User changed tag slug"
1578
  msgstr ""
1579
 
1580
+ #: defaults.php:177
1581
  msgid ""
1582
+ "Changed the slug of tag %tag% from %old_slug% to %new_slug%. View the tag: "
1583
+ "%TagLink%."
1584
  msgstr ""
1585
 
1586
+ #: defaults.php:178
1587
+ msgid "User changed tag description"
1588
  msgstr ""
1589
 
1590
+ #: defaults.php:178
1591
  msgid ""
1592
+ "Changed the description of the tag %tag%%ReportText%.%ChangeText% View the "
1593
+ "tag: %TagLink%."
 
 
 
 
 
 
 
 
 
 
1594
  msgstr ""
1595
 
1596
+ #: defaults.php:184
1597
+ msgid "Comments"
1598
  msgstr ""
1599
 
1600
+ #: defaults.php:185
1601
+ msgid "User approved a comment"
1602
  msgstr ""
1603
 
1604
+ #: defaults.php:185
1605
  msgid ""
1606
+ "Approved the comment posted in response to the post %PostTitle% by %Author% "
1607
+ "on %CommentLink%."
 
 
 
 
 
 
1608
  msgstr ""
1609
 
1610
+ #: defaults.php:186
1611
+ msgid "User unapproved a comment"
1612
  msgstr ""
1613
 
1614
+ #: defaults.php:186
1615
+ msgid ""
1616
+ "Unapproved the comment posted in response to the post %PostTitle% by %Author"
1617
+ "% on %CommentLink%."
1618
  msgstr ""
1619
 
1620
+ #: defaults.php:187
1621
+ msgid "User replied to a comment"
1622
  msgstr ""
1623
 
1624
+ #: defaults.php:187
1625
  msgid ""
1626
+ "Replied to the comment posted in response to the post %PostTitle% by %Author"
1627
+ "% on %CommentLink%."
 
1628
  msgstr ""
1629
 
1630
+ #: defaults.php:188
1631
+ msgid "User edited a comment"
1632
  msgstr ""
1633
 
1634
+ #: defaults.php:188
1635
  msgid ""
1636
+ "Edited a comment posted in response to the post %PostTitle% by %Author% on "
1637
+ "%CommentLink%."
1638
  msgstr ""
1639
 
1640
+ #: defaults.php:189
1641
+ msgid "User marked a comment as Spam"
1642
  msgstr ""
1643
 
1644
+ #: defaults.php:189
1645
  msgid ""
1646
+ "Marked the comment posted in response to the post %PostTitle% by %Author% on "
1647
+ "%CommentLink% as Spam."
 
1648
  msgstr ""
1649
 
1650
+ #: defaults.php:190
1651
+ msgid "User marked a comment as Not Spam"
1652
  msgstr ""
1653
 
1654
+ #: defaults.php:190
1655
+ msgid ""
1656
+ "Marked the comment posted in response to the post %PostTitle% by %Author% on "
1657
+ "%CommentLink% as Not Spam."
1658
  msgstr ""
1659
 
1660
+ #: defaults.php:191
1661
+ msgid "User moved a comment to trash"
1662
  msgstr ""
1663
 
1664
+ #: defaults.php:191
1665
  msgid ""
1666
+ "Moved the comment posted in response to the post %PostTitle% by %Author% on "
1667
+ "%Date% to trash."
1668
  msgstr ""
1669
 
1670
+ #: defaults.php:192
1671
+ msgid "User restored a comment from the trash"
 
 
1672
  msgstr ""
1673
 
1674
+ #: defaults.php:192
1675
  msgid ""
1676
+ "Restored the comment posted in response to the post %PostTitle% by %Author% "
1677
+ "on %CommentLink% from the trash."
 
1678
  msgstr ""
1679
 
1680
+ #: defaults.php:193
1681
+ msgid "User permanently deleted a comment"
1682
  msgstr ""
1683
 
1684
+ #: defaults.php:193
1685
  msgid ""
1686
+ "Permanently deleted the comment posted in response to the post %PostTitle% "
1687
+ "by %Author% on %Date%."
1688
  msgstr ""
1689
 
1690
+ #: defaults.php:194
1691
+ msgid "User posted a comment"
1692
  msgstr ""
1693
 
1694
+ #: defaults.php:194 defaults.php:195
1695
+ msgid "%CommentMsg% on %CommentLink%."
 
 
 
1696
  msgstr ""
1697
 
1698
+ #: defaults.php:195
1699
+ msgid "Visitor posted a comment"
1700
  msgstr ""
1701
 
1702
+ #: defaults.php:207
1703
+ msgid "User modified a draft blog post"
1704
  msgstr ""
1705
 
1706
+ #: defaults.php:207
1707
+ msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
1708
  msgstr ""
1709
 
1710
+ #: defaults.php:208
1711
+ msgid "User created a new post with custom post type and saved it as draft"
 
 
1712
  msgstr ""
1713
 
1714
+ #: defaults.php:208
1715
+ msgid ""
1716
+ "Created a new custom post called %PostTitle% of type %PostType%. "
1717
+ "%EditorLinkPost%."
1718
  msgstr ""
1719
 
1720
+ #: defaults.php:209
1721
+ msgid "User published a post with custom post type"
1722
  msgstr ""
1723
 
1724
+ #: defaults.php:209
1725
+ msgid ""
1726
+ "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
1727
+ "%. %EditorLinkPost%."
1728
  msgstr ""
1729
 
1730
+ #: defaults.php:210
1731
+ msgid "User modified a post with custom post type"
 
 
 
 
 
1732
  msgstr ""
1733
 
1734
+ #: defaults.php:210
1735
+ msgid ""
1736
+ "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
1737
+ "%. %EditorLinkPost%."
1738
  msgstr ""
1739
 
1740
+ #: defaults.php:211
1741
+ msgid "User modified a draft post with custom post type"
1742
  msgstr ""
1743
 
1744
+ #: defaults.php:211
1745
  msgid ""
1746
+ "Modified the draft custom post %PostTitle% of type is %PostType%. "
1747
+ "%EditorLinkPost%."
 
 
 
1748
  msgstr ""
1749
 
1750
+ #: defaults.php:212
1751
+ msgid "User permanently deleted post with custom post type"
1752
  msgstr ""
1753
 
1754
+ #: defaults.php:212
1755
+ msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
1756
  msgstr ""
1757
 
1758
+ #: defaults.php:213
1759
+ msgid "User moved post with custom post type to trash"
1760
  msgstr ""
1761
 
1762
+ #: defaults.php:213
1763
+ msgid ""
1764
+ "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
1765
+ "%PostUrl%."
1766
  msgstr ""
1767
 
1768
+ #: defaults.php:214
1769
+ msgid "User restored post with custom post type from trash"
1770
  msgstr ""
1771
 
1772
+ #: defaults.php:214
1773
+ msgid ""
1774
+ "The custom post %PostTitle% of type %PostType% has been restored from trash. "
1775
+ "%EditorLinkPost%."
1776
  msgstr ""
1777
 
1778
+ #: defaults.php:215
1779
+ msgid "User changed the category of a post with custom post type"
1780
  msgstr ""
1781
 
1782
+ #: defaults.php:215
1783
+ msgid ""
1784
+ "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
1785
+ "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
1786
  msgstr ""
1787
 
1788
+ #: defaults.php:216
1789
+ msgid "User changed the URL of a post with custom post type"
1790
  msgstr ""
1791
 
1792
+ #: defaults.php:216
1793
+ msgid ""
1794
+ "Changed the URL of the custom post %PostTitle% of type %PostType% from "
1795
+ "%OldUrl% to %NewUrl%. %EditorLinkPost%."
1796
  msgstr ""
1797
 
1798
+ #: defaults.php:217
1799
+ msgid "User changed the author or post with custom post type"
1800
  msgstr ""
1801
 
1802
+ #: defaults.php:217
1803
+ msgid ""
1804
+ "Changed the author of custom post %PostTitle% of type %PostType% from "
1805
+ "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
1806
  msgstr ""
1807
 
1808
+ #: defaults.php:218
1809
+ msgid "User changed the status of post with custom post type"
1810
  msgstr ""
1811
 
1812
+ #: defaults.php:218
1813
+ msgid ""
1814
+ "Changed the status of custom post %PostTitle% of type %PostType% from "
1815
+ "%OldStatus% to %NewStatus%. %EditorLinkPost%."
1816
  msgstr ""
1817
 
1818
+ #: defaults.php:219
1819
+ msgid "User changed the visibility of a post with custom post type"
1820
  msgstr ""
1821
 
1822
+ #: defaults.php:219
1823
+ msgid ""
1824
+ "Changed the visibility of the custom post %PostTitle% of type %PostType% "
1825
+ "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
1826
  msgstr ""
1827
 
1828
+ #: defaults.php:220
1829
+ msgid "User changed the date of post with custom post type"
1830
  msgstr ""
1831
 
1832
+ #: defaults.php:220
1833
+ msgid ""
1834
+ "Changed the date of the custom post %PostTitle% of type %PostType% from "
1835
+ "%OldDate% to %NewDate%. %EditorLinkPost%."
1836
  msgstr ""
1837
 
1838
+ #: defaults.php:221
1839
+ msgid "User created a custom field for a custom post type"
1840
  msgstr ""
1841
 
1842
+ #: defaults.php:221
1843
+ msgid ""
1844
+ "Created a new custom field %MetaKey% with value %MetaValue% in custom post "
1845
+ "%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
1846
  msgstr ""
1847
 
1848
+ #: defaults.php:222
1849
+ msgid "User updated a custom field for a custom post type"
1850
  msgstr ""
1851
 
1852
+ #: defaults.php:222
1853
+ msgid ""
1854
+ "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
1855
+ "%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
1856
+ "%.<br>%MetaLink%."
1857
  msgstr ""
1858
 
1859
+ #: defaults.php:223
1860
+ msgid "User deleted a custom field from a custom post type"
1861
  msgstr ""
1862
 
1863
+ #: defaults.php:223
1864
+ msgid ""
1865
+ "Deleted the custom field %MetaKey% with id %MetaID% from custom post "
1866
+ "%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1867
  msgstr ""
1868
 
1869
+ #: defaults.php:224
1870
+ msgid "User updated a custom field name for a custom post type"
1871
  msgstr ""
1872
 
1873
+ #: defaults.php:224
1874
+ msgid ""
1875
+ "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
1876
+ "post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1877
  msgstr ""
1878
 
1879
+ #: defaults.php:225
1880
+ msgid "User modified content for a published custom post type"
1881
  msgstr ""
1882
 
1883
+ #: defaults.php:225
1884
+ msgid ""
1885
+ "Modified the content of the published custom post type %PostTitle%. Post URL "
1886
+ "is %PostUrl%.%EditorLinkPost%."
1887
  msgstr ""
1888
 
1889
+ #: defaults.php:226
1890
+ msgid "User modified content for a draft post"
1891
  msgstr ""
1892
 
1893
+ #: defaults.php:226
1894
+ msgid ""
1895
+ "Modified the content of the draft post %PostTitle%.%RevisionLink% "
1896
+ "%EditorLinkPost%."
1897
  msgstr ""
1898
 
1899
+ #: defaults.php:227
1900
+ msgid "User modified content for a draft custom post type"
 
1901
  msgstr ""
1902
 
1903
+ #: defaults.php:227
1904
+ msgid ""
1905
+ "Modified the content of the draft custom post type %PostTitle%."
1906
+ "%EditorLinkPost%."
1907
  msgstr ""
1908
 
1909
+ #: defaults.php:228
1910
+ msgid "User modified content of a post"
1911
  msgstr ""
1912
 
1913
+ #: defaults.php:228
1914
+ msgid ""
1915
+ "Modified the content of post %PostTitle% which is submitted for review."
1916
+ "%RevisionLink% %EditorLinkPost%."
1917
  msgstr ""
1918
 
1919
+ #: defaults.php:229
1920
+ msgid "User scheduled a custom post type"
1921
  msgstr ""
1922
 
1923
+ #: defaults.php:229
1924
+ msgid ""
1925
+ "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
1926
+ "%EditorLinkPost%."
1927
  msgstr ""
1928
 
1929
+ #: defaults.php:230
1930
+ msgid "User changed title of a custom post type"
1931
  msgstr ""
1932
 
1933
+ #: defaults.php:230
1934
  msgid ""
1935
+ "Changed the title of the custom post %OldTitle% to %NewTitle%. "
1936
+ "%EditorLinkPost%."
1937
  msgstr ""
1938
 
1939
+ #: defaults.php:231
1940
+ msgid "User opened a custom post type in the editor"
 
 
 
1941
  msgstr ""
1942
 
1943
+ #: defaults.php:231
1944
+ msgid ""
1945
+ "Opened the custom post %PostTitle% of type %PostType% in the editor. View "
1946
+ "the post: %EditorLinkPost%."
1947
  msgstr ""
1948
 
1949
+ #: defaults.php:232
1950
+ msgid "User viewed a custom post type"
1951
  msgstr ""
1952
 
1953
+ #: defaults.php:232
1954
+ msgid ""
1955
+ "Viewed the custom post %PostTitle% of type %PostType%. View the post: "
1956
+ "%PostUrl%."
1957
  msgstr ""
1958
 
1959
+ #: defaults.php:243
1960
+ msgid "Pages"
 
1961
  msgstr ""
1962
 
1963
+ #: defaults.php:244
1964
+ msgid "User created a new WordPress page and saved it as draft"
1965
  msgstr ""
1966
 
1967
+ #: defaults.php:244
1968
  msgid ""
1969
+ "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
1970
+ "%."
1971
  msgstr ""
1972
 
1973
+ #: defaults.php:245
1974
+ msgid "User published a WordPress page"
 
 
 
1975
  msgstr ""
1976
 
1977
+ #: defaults.php:245
1978
+ msgid ""
1979
+ "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1980
  msgstr ""
1981
 
1982
+ #: defaults.php:246
1983
+ msgid "User modified a published WordPress page"
1984
  msgstr ""
1985
 
1986
+ #: defaults.php:246
1987
+ msgid ""
1988
+ "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
1989
+ "%EditorLinkPage%."
1990
  msgstr ""
1991
 
1992
+ #: defaults.php:247
1993
+ msgid "User modified a draft WordPress page"
1994
  msgstr ""
1995
 
1996
+ #: defaults.php:247
1997
  msgid ""
1998
+ "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
 
1999
  msgstr ""
2000
 
2001
+ #: defaults.php:248
2002
+ msgid "User permanently deleted a page from the trash"
 
 
 
 
 
 
2003
  msgstr ""
2004
 
2005
+ #: defaults.php:248
2006
+ msgid "Permanently deleted the page %PostTitle%."
 
 
 
2007
  msgstr ""
2008
 
2009
+ #: defaults.php:249
2010
+ msgid "User moved WordPress page to the trash"
2011
  msgstr ""
2012
 
2013
+ #: defaults.php:249
2014
+ msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
2015
  msgstr ""
2016
 
2017
+ #: defaults.php:250
2018
+ msgid "User restored a WordPress page from trash"
 
 
2019
  msgstr ""
2020
 
2021
+ #: defaults.php:250
2022
+ msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
 
 
2023
  msgstr ""
2024
 
2025
+ #: defaults.php:251
2026
+ msgid "User changed page URL"
 
 
 
 
2027
  msgstr ""
2028
 
2029
+ #: defaults.php:251
2030
+ msgid ""
2031
+ "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
2032
+ "%EditorLinkPage%."
2033
  msgstr ""
2034
 
2035
+ #: defaults.php:252
2036
+ msgid "User changed page author"
2037
  msgstr ""
2038
 
2039
+ #: defaults.php:252
2040
  msgid ""
2041
+ "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
2042
+ "%EditorLinkPage%."
2043
  msgstr ""
2044
 
2045
+ #: defaults.php:253
2046
+ msgid "User changed page status"
 
 
2047
  msgstr ""
2048
 
2049
+ #: defaults.php:253
2050
+ msgid ""
2051
+ "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
2052
+ "%EditorLinkPage%."
2053
  msgstr ""
2054
 
2055
+ #: defaults.php:254
2056
+ msgid "User changed the visibility of a page post"
2057
  msgstr ""
2058
 
2059
+ #: defaults.php:254
2060
+ msgid ""
2061
+ "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
2062
+ "%NewVisibility%. %EditorLinkPage%."
2063
  msgstr ""
2064
 
2065
+ #: defaults.php:255
2066
+ msgid "User changed the date of a page post"
2067
  msgstr ""
2068
 
2069
+ #: defaults.php:255
2070
  msgid ""
2071
+ "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
2072
+ "%EditorLinkPage%."
 
 
2073
  msgstr ""
2074
 
2075
+ #: defaults.php:256
2076
+ msgid "User created a custom field for a page"
2077
  msgstr ""
2078
 
2079
+ #: defaults.php:256
2080
+ msgid ""
2081
+ "Created a new custom field called %MetaKey% with value %MetaValue% in the "
2082
+ "page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
2083
  msgstr ""
2084
 
2085
+ #: defaults.php:257
2086
+ msgid "User updated a custom field value for a page"
2087
  msgstr ""
2088
 
2089
+ #: defaults.php:257
2090
+ msgid ""
2091
+ "Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
2092
+ "%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
2093
  msgstr ""
2094
 
2095
+ #: defaults.php:258
2096
+ msgid "User deleted a custom field from a page"
2097
  msgstr ""
2098
 
2099
+ #: defaults.php:258
2100
  msgid ""
2101
+ "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
2102
+ "%EditorLinkPage%.<br>%MetaLink%."
 
 
 
 
2103
  msgstr ""
2104
 
2105
+ #: defaults.php:259
2106
+ msgid "User updated a custom field name for a page"
2107
  msgstr ""
2108
 
2109
+ #: defaults.php:259
2110
+ msgid ""
2111
+ "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
2112
+ "%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
2113
  msgstr ""
2114
 
2115
+ #: defaults.php:260
2116
+ msgid "User modified content for a published page"
 
2117
  msgstr ""
2118
 
2119
+ #: defaults.php:260
2120
+ msgid ""
2121
+ "Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
2122
+ "%. %RevisionLink% %EditorLinkPage%."
2123
  msgstr ""
2124
 
2125
+ #: defaults.php:261
2126
+ msgid "User modified content for a draft page"
 
2127
  msgstr ""
2128
 
2129
+ #: defaults.php:261
2130
+ msgid ""
2131
+ "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
2132
+ "%."
2133
  msgstr ""
2134
 
2135
+ #: defaults.php:262
2136
+ msgid "User scheduled a page"
 
 
2137
  msgstr ""
2138
 
2139
+ #: defaults.php:262
2140
+ msgid ""
2141
+ "Scheduled the page %PostTitle% to be published %PublishingDate%. "
2142
+ "%EditorLinkPage%."
2143
  msgstr ""
2144
 
2145
+ #: defaults.php:263
2146
+ msgid "User changed title of a page"
 
2147
  msgstr ""
2148
 
2149
+ #: defaults.php:263
2150
+ msgid ""
2151
+ "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
 
 
 
 
 
 
 
 
 
 
 
 
2152
  msgstr ""
2153
 
2154
+ #: defaults.php:264
2155
+ msgid "User opened a page in the editor"
 
 
2156
  msgstr ""
2157
 
2158
+ #: defaults.php:264
2159
  msgid ""
2160
+ "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
 
2161
  msgstr ""
2162
 
2163
+ #: defaults.php:265
2164
+ msgid "User viewed a page"
2165
  msgstr ""
2166
 
2167
+ #: defaults.php:265
2168
+ msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
 
 
2169
  msgstr ""
2170
 
2171
+ #: defaults.php:266
2172
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
2173
  msgstr ""
2174
 
2175
+ #: defaults.php:266
2176
  msgid ""
2177
+ "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
 
2178
  msgstr ""
2179
 
2180
+ #: defaults.php:267
2181
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
2182
  msgstr ""
2183
 
2184
+ #: defaults.php:267
2185
+ msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
 
2186
  msgstr ""
2187
 
2188
+ #: defaults.php:268
2189
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
2190
  msgstr ""
2191
 
2192
+ #: defaults.php:268
2193
+ msgid ""
2194
+ "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
2195
  msgstr ""
2196
 
2197
+ #: defaults.php:269
2198
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
2199
  msgstr ""
2200
 
2201
+ #: defaults.php:269
2202
+ msgid ""
2203
+ "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
2204
  msgstr ""
2205
 
2206
+ #: defaults.php:270
2207
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
2208
  msgstr ""
2209
 
2210
+ #: defaults.php:270
2211
+ msgid ""
2212
+ "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
2213
  msgstr ""
2214
 
2215
+ #: defaults.php:271
2216
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
2217
  msgstr ""
2218
 
2219
+ #: defaults.php:271
2220
+ msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
2221
  msgstr ""
2222
 
2223
+ #: defaults.php:278
2224
+ msgid "WordPress & Multisite Management"
2225
  msgstr ""
2226
 
2227
+ #: defaults.php:282
2228
+ msgid "Database"
2229
  msgstr ""
2230
 
2231
+ #: defaults.php:283
2232
+ msgid "Plugin created tables"
2233
  msgstr ""
2234
 
2235
+ #: defaults.php:283
2236
+ msgid ""
2237
+ "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
2238
  msgstr ""
2239
 
2240
+ #: defaults.php:284
2241
+ msgid "Plugin modified tables structure"
2242
  msgstr ""
2243
 
2244
+ #: defaults.php:284
2245
+ msgid ""
2246
+ "Plugin %Plugin->Name% modified the structure of these database tables: "
2247
+ "%TableNames%."
2248
  msgstr ""
2249
 
2250
+ #: defaults.php:285
2251
+ msgid "Plugin deleted tables"
2252
  msgstr ""
2253
 
2254
+ #: defaults.php:285
2255
+ msgid ""
2256
+ "Plugin %Plugin->Name% deleted the following tables from the database: "
2257
+ "%TableNames%."
2258
  msgstr ""
2259
 
2260
+ #: defaults.php:286
2261
+ msgid "Theme created tables"
2262
  msgstr ""
2263
 
2264
+ #: defaults.php:286
2265
+ msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
2266
  msgstr ""
2267
 
2268
+ #: defaults.php:287
2269
+ msgid "Theme modified tables structure"
2270
  msgstr ""
2271
 
2272
+ #: defaults.php:287
2273
+ msgid ""
2274
+ "Theme %Theme->Name% modified the structure of these database tables: "
2275
+ "%TableNames%."
2276
  msgstr ""
2277
 
2278
+ #: defaults.php:288
2279
+ msgid "Theme deleted tables"
2280
  msgstr ""
2281
 
2282
+ #: defaults.php:288
2283
+ msgid ""
2284
+ "Theme %Theme->Name% deleted the following tables from the database: "
2285
+ "%TableNames%."
2286
  msgstr ""
2287
 
2288
+ #: defaults.php:289
2289
+ msgid "Unknown component created tables"
2290
  msgstr ""
2291
 
2292
+ #: defaults.php:289
2293
  msgid ""
2294
+ "An unknown component created these tables in the database: %TableNames%."
 
2295
  msgstr ""
2296
 
2297
+ #: defaults.php:290
2298
+ msgid "Unknown component modified tables structure"
2299
  msgstr ""
2300
 
2301
+ #: defaults.php:290
2302
  msgid ""
2303
+ "An unknown component modified the structure of these database tables: "
2304
+ "%TableNames%."
 
2305
  msgstr ""
2306
 
2307
+ #: defaults.php:291
2308
+ msgid "Unknown component deleted tables"
2309
  msgstr ""
2310
 
2311
+ #: defaults.php:291
2312
  msgid ""
2313
+ "An unknown component deleted the following tables from the database: "
2314
+ "%TableNames%."
 
 
 
2315
  msgstr ""
2316
 
2317
+ #: defaults.php:297
2318
+ msgid "MultiSite"
 
 
 
2319
  msgstr ""
2320
 
2321
+ #: defaults.php:298
2322
+ msgid "User granted Super Admin privileges"
 
 
 
 
2323
  msgstr ""
2324
 
2325
+ #: defaults.php:298
2326
+ msgid "Granted Super Admin privileges to %TargetUsername%."
2327
  msgstr ""
2328
 
2329
+ #: defaults.php:299
2330
+ msgid "User revoked from Super Admin privileges"
 
 
 
2331
  msgstr ""
2332
 
2333
+ #: defaults.php:299
2334
+ msgid "Revoked Super Admin privileges from %TargetUsername%."
2335
  msgstr ""
2336
 
2337
+ #: defaults.php:300
2338
+ msgid "Existing user added to a site"
2339
  msgstr ""
2340
 
2341
+ #: defaults.php:300
2342
  msgid ""
2343
+ "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
2344
+ "%SiteName%."
2345
  msgstr ""
2346
 
2347
+ #: defaults.php:301
2348
+ msgid "User removed from site"
2349
  msgstr ""
2350
 
2351
+ #: defaults.php:301
2352
+ msgid ""
2353
+ "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
2354
+ "site."
2355
  msgstr ""
2356
 
2357
+ #: defaults.php:302
2358
+ msgid "New network user created"
 
 
2359
  msgstr ""
2360
 
2361
+ #: defaults.php:302
2362
+ msgid "Created a new network user %NewUserData->Username%."
2363
  msgstr ""
2364
 
2365
+ #: defaults.php:303
2366
+ msgid "The forum role of a user was changed by another WordPress user"
2367
  msgstr ""
2368
 
2369
+ #: defaults.php:303
2370
  msgid ""
2371
+ "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
2372
+ "% by %UserChanger%."
 
 
 
 
2373
  msgstr ""
2374
 
2375
+ #: defaults.php:304
2376
+ msgid "New site added on the network"
2377
  msgstr ""
2378
 
2379
+ #: defaults.php:304
2380
+ msgid "Added the site %SiteName% to the network."
2381
  msgstr ""
2382
 
2383
+ #: defaults.php:305
2384
+ msgid "Existing site archived"
2385
  msgstr ""
2386
 
2387
+ #: defaults.php:305
2388
+ msgid "Archived the site %SiteName%."
2389
  msgstr ""
2390
 
2391
+ #: defaults.php:306
2392
+ msgid "Archived site has been unarchived"
2393
  msgstr ""
2394
 
2395
+ #: defaults.php:306
2396
+ msgid "Unarchived the site %SiteName%."
2397
  msgstr ""
2398
 
2399
+ #: defaults.php:307
2400
+ msgid "Deactivated site has been activated"
2401
  msgstr ""
2402
 
2403
+ #: defaults.php:307
2404
+ msgid "Activated the site %SiteName%."
2405
  msgstr ""
2406
 
2407
+ #: defaults.php:308
2408
+ msgid "Site has been deactivated"
2409
  msgstr ""
2410
 
2411
+ #: defaults.php:308
2412
+ msgid "Deactivated the site %SiteName%."
2413
  msgstr ""
2414
 
2415
+ #: defaults.php:309
2416
+ msgid "Existing site deleted from network"
2417
  msgstr ""
2418
 
2419
+ #: defaults.php:309
2420
+ msgid "Deleted the site %SiteName%."
2421
  msgstr ""
2422
 
2423
+ #: defaults.php:310
2424
+ msgid "Activated theme on network"
2425
  msgstr ""
2426
 
2427
+ #: defaults.php:310
2428
+ msgid ""
2429
+ "Network activated the theme %Theme->Name% installed in %Theme-"
2430
+ ">get_template_directory%."
2431
  msgstr ""
2432
 
2433
+ #: defaults.php:311
2434
+ msgid "Deactivated theme from network"
2435
  msgstr ""
2436
 
2437
+ #: defaults.php:311
2438
+ msgid ""
2439
+ "Network deactivated the theme %Theme->Name% installed in %Theme-"
2440
+ ">get_template_directory%."
2441
  msgstr ""
2442
 
2443
+ #: defaults.php:317
2444
+ msgid "Plugins & Themes"
2445
  msgstr ""
2446
 
2447
+ #: defaults.php:318
2448
+ msgid "User installed a plugin"
2449
  msgstr ""
2450
 
2451
+ #: defaults.php:318
2452
+ msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
2453
  msgstr ""
2454
 
2455
+ #: defaults.php:319
2456
+ msgid "User activated a WordPress plugin"
2457
  msgstr ""
2458
 
2459
+ #: defaults.php:319
2460
+ msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
2461
  msgstr ""
2462
 
2463
+ #: defaults.php:320
2464
+ msgid "User deactivated a WordPress plugin"
2465
  msgstr ""
2466
 
2467
+ #: defaults.php:320
2468
+ msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
2469
  msgstr ""
2470
 
2471
+ #: defaults.php:321
2472
+ msgid "User uninstalled a plugin"
2473
  msgstr ""
2474
 
2475
+ #: defaults.php:321
2476
+ msgid ""
2477
+ "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
2478
+ "%."
2479
  msgstr ""
2480
 
2481
+ #: defaults.php:322
2482
+ msgid "User upgraded a plugin"
2483
  msgstr ""
2484
 
2485
+ #: defaults.php:322
2486
+ msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
2487
  msgstr ""
2488
 
2489
+ #: defaults.php:323
2490
+ msgid "User installed a theme"
2491
  msgstr ""
2492
 
2493
+ #: defaults.php:323
2494
  msgid ""
2495
+ "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
2496
  msgstr ""
2497
 
2498
+ #: defaults.php:324
2499
+ msgid "User activated a theme"
2500
  msgstr ""
2501
 
2502
+ #: defaults.php:324
2503
  msgid ""
2504
+ "Activated the theme \"%Theme->Name%\", installed in %Theme-"
2505
+ ">get_template_directory%."
2506
  msgstr ""
2507
 
2508
+ #: defaults.php:325
2509
+ msgid "User uninstalled a theme"
2510
  msgstr ""
2511
 
2512
+ #: defaults.php:325
2513
  msgid ""
2514
+ "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
2515
+ ">get_template_directory%."
2516
  msgstr ""
2517
 
2518
+ #: defaults.php:326
2519
+ msgid "A plugin created a post"
2520
  msgstr ""
2521
 
2522
+ #: defaults.php:326
2523
+ msgid ""
2524
+ "A plugin automatically created the following %PostType% called %PostTitle%. "
2525
+ "View the post: %EditorLinkPost%."
2526
  msgstr ""
2527
 
2528
+ #: defaults.php:327
2529
+ msgid "A plugin created a page"
2530
  msgstr ""
2531
 
2532
+ #: defaults.php:327
2533
+ msgid "A plugin automatically created the following page: %PostTitle%."
2534
  msgstr ""
2535
 
2536
+ #: defaults.php:328
2537
+ msgid "A plugin created a custom post"
2538
  msgstr ""
2539
 
2540
+ #: defaults.php:328
2541
+ msgid "A plugin automatically created the following custom post: %PostTitle%."
2542
  msgstr ""
2543
 
2544
+ #: defaults.php:329
2545
+ msgid "A plugin deleted a post"
2546
  msgstr ""
2547
 
2548
+ #: defaults.php:329
2549
+ msgid ""
2550
+ "A plugin automatically deleted the following %PostType% called %PostTitle%."
2551
  msgstr ""
2552
 
2553
+ #: defaults.php:330
2554
+ msgid "A plugin deleted a page"
2555
  msgstr ""
2556
 
2557
+ #: defaults.php:330
2558
+ msgid "A plugin automatically deleted the following page: %PostTitle%."
 
 
2559
  msgstr ""
2560
 
2561
+ #: defaults.php:331
2562
+ msgid "A plugin deleted a custom post"
2563
  msgstr ""
2564
 
2565
+ #: defaults.php:331
2566
+ msgid "A plugin automatically deleted the following custom post: %PostTitle%."
 
 
2567
  msgstr ""
2568
 
2569
+ #: defaults.php:332
2570
+ msgid "User updated a theme"
2571
  msgstr ""
2572
 
2573
+ #: defaults.php:332
2574
  msgid ""
2575
+ "Updated the theme \"%Theme->Name%\" installed in %Theme-"
2576
+ ">get_template_directory%."
2577
  msgstr ""
2578
 
2579
+ #: defaults.php:333
2580
+ msgid "User changed a file using the theme editor"
2581
  msgstr ""
2582
 
2583
+ #: defaults.php:333
2584
+ msgid "Modified %File% with the Theme Editor."
 
 
2585
  msgstr ""
2586
 
2587
+ #: defaults.php:334
2588
+ msgid "User changed a file using the plugin editor"
2589
  msgstr ""
2590
 
2591
+ #: defaults.php:334
2592
+ msgid "Modified %File% with the Plugin Editor."
 
 
2593
  msgstr ""
2594
 
2595
+ #: defaults.php:335
2596
+ msgid "A plugin modified a page"
2597
  msgstr ""
2598
 
2599
+ #: defaults.php:335
2600
+ msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
2601
  msgstr ""
2602
 
2603
+ #: defaults.php:336
2604
+ msgid "A plugin modified a custom post"
2605
  msgstr ""
2606
 
2607
+ #: defaults.php:336
2608
  msgid ""
2609
+ "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
 
2610
  msgstr ""
2611
 
2612
+ #: defaults.php:342
2613
+ msgid "System Activity"
2614
  msgstr ""
2615
 
2616
+ #: defaults.php:343
2617
+ msgid "Unknown Error"
2618
  msgstr ""
2619
 
2620
+ #: defaults.php:343
2621
+ msgid "An unexpected error has occurred ."
2622
  msgstr ""
2623
 
2624
+ #: defaults.php:344
2625
+ msgid "PHP error"
 
 
2626
  msgstr ""
2627
 
2628
+ #: defaults.php:344 defaults.php:345 defaults.php:346 defaults.php:347
2629
+ #: defaults.php:348
2630
+ msgid "%Message%."
2631
  msgstr ""
2632
 
2633
+ #: defaults.php:345
2634
+ msgid "PHP warning"
 
 
2635
  msgstr ""
2636
 
2637
+ #: defaults.php:346
2638
+ msgid "PHP notice"
2639
  msgstr ""
2640
 
2641
+ #: defaults.php:347
2642
+ msgid "PHP exception"
2643
  msgstr ""
2644
 
2645
+ #: defaults.php:348
2646
+ msgid "PHP shutdown error"
2647
  msgstr ""
2648
 
2649
+ #: defaults.php:349
2650
+ msgid "Events automatically pruned by system"
 
 
2651
  msgstr ""
2652
 
2653
+ #: defaults.php:349
2654
+ msgid "System automatically deleted %EventCount% alert(s)."
2655
  msgstr ""
2656
 
2657
+ #: defaults.php:350
2658
+ msgid "Option Anyone Can Register in WordPress settings changed"
 
 
2659
  msgstr ""
2660
 
2661
+ #: defaults.php:350
2662
+ msgid "%NewValue% the option \"Anyone can register\"."
2663
  msgstr ""
2664
 
2665
+ #: defaults.php:351
2666
+ msgid "New User Default Role changed"
 
 
2667
  msgstr ""
2668
 
2669
+ #: defaults.php:351
2670
+ msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
2671
  msgstr ""
2672
 
2673
+ #: defaults.php:352
2674
+ msgid "WordPress Administrator Notification email changed"
 
 
2675
  msgstr ""
2676
 
2677
+ #: defaults.php:352
2678
+ msgid ""
2679
+ "Changed the WordPress administrator notifications email address from "
2680
+ "%OldEmail% to %NewEmail%."
2681
  msgstr ""
2682
 
2683
+ #: defaults.php:353
2684
+ msgid "WordPress was updated"
 
 
2685
  msgstr ""
2686
 
2687
+ #: defaults.php:353
2688
+ msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
2689
  msgstr ""
2690
 
2691
+ #: defaults.php:354
2692
+ msgid "User changes the WordPress Permalinks"
 
 
2693
  msgstr ""
2694
 
2695
+ #: defaults.php:354
2696
+ msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
2697
  msgstr ""
2698
 
2699
+ #: defaults.php:355
2700
+ msgid "User requests non-existing pages (404 Error Pages)"
2701
  msgstr ""
2702
 
2703
+ #: defaults.php:355
2704
  msgid ""
2705
+ "Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
2706
+ "%LinkFile%"
2707
  msgstr ""
2708
 
2709
+ #: defaults.php:356
2710
+ msgid "Website Visitor User requests non-existing pages (404 Error Pages)"
2711
  msgstr ""
2712
 
2713
+ #: defaults.php:356
2714
  msgid ""
2715
+ "Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
2716
+ "% %Msg%. %LinkFile%"
 
 
 
 
2717
  msgstr ""
2718
 
2719
+ #: defaults.php:357
2720
+ msgid "Option WordPress Address (URL) in WordPress settings changed"
 
 
2721
  msgstr ""
2722
 
2723
+ #: defaults.php:357
2724
+ msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
2725
  msgstr ""
2726
 
2727
+ #: defaults.php:358
2728
+ msgid "Option Site Address (URL) in WordPress settings changed"
 
2729
  msgstr ""
2730
 
2731
+ #: defaults.php:358
2732
+ msgid "Changed the site address (URL) from %old_url% to %new_url%."
2733
  msgstr ""
2734
 
2735
+ #: defaults.php:359
2736
+ msgid "Advertising Add-ons."
 
 
2737
  msgstr ""
2738
 
2739
+ #: defaults.php:359
2740
+ msgid "%PromoName% %PromoMessage%"
2741
  msgstr ""
2742
 
2743
+ #: defaults.php:365
2744
+ msgid "Menus"
 
 
2745
  msgstr ""
2746
 
2747
+ #: defaults.php:366
2748
+ msgid "User created new menu"
2749
  msgstr ""
2750
 
2751
+ #: defaults.php:366
2752
+ msgid "Created a new menu called %MenuName%."
 
 
2753
  msgstr ""
2754
 
2755
+ #: defaults.php:367
2756
+ msgid "User added content to a menu"
2757
  msgstr ""
2758
 
2759
+ #: defaults.php:367
2760
+ msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
 
 
2761
  msgstr ""
2762
 
2763
+ #: defaults.php:368
2764
+ msgid "User removed content from a menu"
2765
  msgstr ""
2766
 
2767
+ #: defaults.php:368
2768
  msgid ""
2769
+ "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
 
2770
  msgstr ""
2771
 
2772
+ #: defaults.php:369
2773
+ msgid "User deleted menu"
2774
  msgstr ""
2775
 
2776
+ #: defaults.php:369
2777
+ msgid "Deleted the menu %MenuName%."
 
 
2778
  msgstr ""
2779
 
2780
+ #: defaults.php:370
2781
+ msgid "User changed menu setting"
2782
  msgstr ""
2783
 
2784
+ #: defaults.php:370
2785
+ msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
 
 
2786
  msgstr ""
2787
 
2788
+ #: defaults.php:371
2789
+ msgid "User modified content in a menu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2790
  msgstr ""
2791
 
2792
+ #: defaults.php:371
2793
+ msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
2794
  msgstr ""
2795
 
2796
+ #: defaults.php:372
2797
+ msgid "User changed name of a menu"
2798
  msgstr ""
2799
 
2800
+ #: defaults.php:372
2801
+ msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
2802
  msgstr ""
2803
 
2804
+ #: defaults.php:373
2805
+ msgid "User changed order of the objects in a menu"
 
 
2806
  msgstr ""
2807
 
2808
+ #: defaults.php:373
2809
+ msgid "Changed the order of the %ItemName% in menu %MenuName%."
2810
  msgstr ""
2811
 
2812
+ #: defaults.php:374
2813
+ msgid "User moved objects as a sub-item"
2814
  msgstr ""
2815
 
2816
+ #: defaults.php:374
2817
+ msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
2818
  msgstr ""
2819
 
2820
+ #: defaults.php:380
2821
+ msgid "Widgets"
2822
  msgstr ""
2823
 
2824
+ #: defaults.php:381
2825
+ msgid "User added a new widget"
2826
  msgstr ""
2827
 
2828
+ #: defaults.php:381
2829
+ msgid "Added a new %WidgetName% widget in %Sidebar%."
2830
  msgstr ""
2831
+
2832
+ #: defaults.php:382
2833
+ msgid "User modified a widget"
2834
  msgstr ""
2835
 
2836
+ #: defaults.php:382
2837
+ msgid "Modified the %WidgetName% widget in %Sidebar%."
2838
  msgstr ""
2839
 
2840
+ #: defaults.php:383
2841
+ msgid "User deleted widget"
2842
  msgstr ""
2843
 
2844
+ #: defaults.php:383
2845
+ msgid "Deleted the %WidgetName% widget from %Sidebar%."
2846
  msgstr ""
2847
 
2848
+ #: defaults.php:384
2849
+ msgid "User moved widget"
2850
  msgstr ""
2851
 
2852
+ #: defaults.php:384
2853
+ msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
2854
  msgstr ""
2855
 
2856
+ #: defaults.php:385
2857
+ msgid "User changed widget position"
2858
  msgstr ""
2859
 
2860
+ #: defaults.php:385
2861
+ msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
 
2862
  msgstr ""
2863
 
2864
+ #: defaults.php:391
2865
+ msgid "Site Settings"
2866
  msgstr ""
2867
 
2868
+ #: defaults.php:392
2869
  msgid ""
2870
+ "Enabled/Disabled the option Discourage search engines from indexing this site"
 
2871
  msgstr ""
2872
 
2873
+ #: defaults.php:392
2874
+ msgid "%Status% the option Discourage search engines from indexing this site."
2875
  msgstr ""
2876
 
2877
+ #: defaults.php:393
2878
+ msgid "Enabled/Disabled comments on all the website"
 
 
2879
  msgstr ""
2880
 
2881
+ #: defaults.php:393
2882
+ msgid "%Status% comments on all the website."
2883
  msgstr ""
2884
 
2885
+ #: defaults.php:394
2886
+ msgid "Enabled/Disabled the option Comment author must fill out name and email"
 
 
2887
  msgstr ""
2888
 
2889
+ #: defaults.php:394
2890
+ msgid "%Status% the option Comment author must fill out name and email."
2891
  msgstr ""
2892
 
2893
+ #: defaults.php:395
2894
  msgid ""
2895
+ "Enabled/Disabled the option Users must be logged in and registered to comment"
 
2896
  msgstr ""
2897
 
2898
+ #: defaults.php:395
2899
+ msgid "%Status% the option Users must be logged in and registered to comment."
2900
  msgstr ""
2901
 
2902
+ #: defaults.php:396
2903
+ msgid "Enabled/Disabled the option to automatically close comments"
2904
  msgstr ""
2905
 
2906
+ #: defaults.php:396
2907
+ msgid "%Status% the option to automatically close comments after %Value% days."
2908
  msgstr ""
2909
 
2910
+ #: defaults.php:397
2911
+ msgid "Changed the value of the option Automatically close comments"
2912
  msgstr ""
2913
 
2914
+ #: defaults.php:397
2915
+ msgid ""
2916
+ "Changed the value of the option Automatically close comments from %OldValue% "
2917
+ "to %NewValue% days."
2918
  msgstr ""
2919
 
2920
+ #: defaults.php:398
2921
+ msgid "Enabled/Disabled the option for comments to be manually approved"
2922
  msgstr ""
2923
 
2924
+ #: defaults.php:398
2925
+ msgid "%Status% the option for comments to be manually approved."
2926
  msgstr ""
2927
 
2928
+ #: defaults.php:399
2929
  msgid ""
2930
+ "Enabled/Disabled the option for an author to have previously approved "
2931
+ "comments for the comments to appear"
2932
  msgstr ""
2933
 
2934
+ #: defaults.php:399
2935
+ msgid ""
2936
+ "%Status% the option for an author to have previously approved comments for "
2937
+ "the comments to appear."
2938
  msgstr ""
2939
 
2940
+ #: defaults.php:400
2941
  msgid ""
2942
+ "Changed the number of links that a comment must have to be held in the queue"
 
2943
  msgstr ""
2944
 
2945
+ #: defaults.php:400
2946
+ msgid ""
2947
+ "Changed the number of links from %OldValue% to %NewValue% that a comment "
2948
+ "must have to be held in the queue."
2949
  msgstr ""
2950
 
2951
+ #: defaults.php:401
2952
+ msgid "Modified the list of keywords for comments moderation"
2953
  msgstr ""
2954
 
2955
+ #: defaults.php:401
2956
+ msgid "Modified the list of keywords for comments moderation."
2957
  msgstr ""
2958
 
2959
+ #: defaults.php:402
2960
+ msgid "Modified the list of keywords for comments blacklisting"
2961
  msgstr ""
2962
 
2963
+ #: defaults.php:402
2964
+ msgid "Modified the list of keywords for comments blacklisting."
2965
  msgstr ""
2966
 
2967
+ #: defaults.php:403
2968
+ msgid "Created a New cron job"
2969
+ msgstr ""
2970
+
2971
+ #: defaults.php:403
2972
  msgid ""
2973
+ "A new cron job called %name% was created and is scheduled to run %schedule%."
 
2974
  msgstr ""
2975
 
2976
+ #: defaults.php:404
2977
+ msgid "Changed status of the cron job"
2978
  msgstr ""
2979
 
2980
+ #: defaults.php:404
2981
+ msgid "The cron job %name% was %status%."
 
 
2982
  msgstr ""
2983
 
2984
+ #: defaults.php:405
2985
+ msgid "Deleted the cron job"
2986
  msgstr ""
2987
 
2988
+ #: defaults.php:405
2989
+ msgid "The cron job %name% was deleted."
2990
  msgstr ""
2991
 
2992
+ #: defaults.php:406
2993
+ msgid "Started the cron job"
2994
  msgstr ""
2995
 
2996
+ #: defaults.php:406
2997
+ msgid "The cron job %name% has just started."
 
 
2998
  msgstr ""
2999
 
3000
+ #: defaults.php:413
3001
+ msgid "Users Profiles & Activity"
3002
  msgstr ""
3003
 
3004
+ #: defaults.php:417
3005
+ msgid "Other User Activity"
 
 
3006
  msgstr ""
3007
 
3008
+ #: defaults.php:418
3009
+ msgid "User logged in"
3010
  msgstr ""
3011
 
3012
+ #: defaults.php:418
3013
+ msgid "Successfully logged in."
3014
  msgstr ""
3015
 
3016
+ #: defaults.php:419
3017
+ msgid "User logged out"
3018
  msgstr ""
3019
 
3020
+ #: defaults.php:419
3021
+ msgid "Successfully logged out."
 
 
3022
  msgstr ""
3023
 
3024
+ #: defaults.php:420
3025
+ msgid "Login failed"
3026
  msgstr ""
3027
 
3028
+ #: defaults.php:420
3029
+ msgid "%Attempts% failed login(s) detected."
3030
  msgstr ""
3031
 
3032
+ #: defaults.php:421
3033
+ msgid "Login failed / non existing user"
3034
  msgstr ""
3035
 
3036
+ #: defaults.php:421
3037
+ msgid ""
3038
+ "%Attempts% failed login(s) detected using non existing user. %LogFileText%"
3039
  msgstr ""
3040
 
3041
+ #: defaults.php:422
3042
+ msgid "Login blocked"
3043
  msgstr ""
3044
 
3045
+ #: defaults.php:422
3046
+ msgid ""
3047
+ "Blocked from logging in because the same WordPress user is logged in from "
3048
+ "%ClientIP%."
3049
  msgstr ""
3050
 
3051
+ #: defaults.php:423
3052
+ msgid "User logged in with existing session(s)"
3053
  msgstr ""
3054
 
3055
+ #: defaults.php:423
3056
  msgid ""
3057
+ "Successfully logged in. Another session from %IPAddress% for this user "
3058
+ "already exist."
3059
  msgstr ""
3060
 
3061
+ #: defaults.php:424
3062
+ msgid "User logged out all other sessions with the same username"
3063
  msgstr ""
3064
 
3065
+ #: defaults.php:424
3066
+ msgid "Logged out all other sessions with the same username."
 
 
3067
  msgstr ""
3068
 
3069
+ #: defaults.php:425
3070
+ msgid "User session destroyed and logged out."
3071
  msgstr ""
3072
 
3073
+ #: defaults.php:425
3074
+ msgid "Logged out session %TargetSessionID% which belonged to %TargetUserName%"
 
 
3075
  msgstr ""
3076
 
3077
+ #: defaults.php:426
3078
+ msgid "User uploaded file from Uploads directory"
3079
+ msgstr ""
3080
+
3081
+ #: defaults.php:426
3082
+ msgid "Uploaded the file %FileName% in %FilePath%."
3083
+ msgstr ""
3084
+
3085
+ #: defaults.php:427
3086
+ msgid "User deleted file from Uploads directory"
3087
+ msgstr ""
3088
+
3089
+ #: defaults.php:427
3090
+ msgid "Deleted the file %FileName% from %FilePath%."
3091
  msgstr ""
3092
 
3093
+ #: defaults.php:433
3094
+ msgid "User Profiles"
 
 
3095
  msgstr ""
3096
 
3097
+ #: defaults.php:434
3098
+ msgid "New user was created on WordPress"
3099
  msgstr ""
3100
 
3101
+ #: defaults.php:434
3102
  msgid ""
3103
+ "A new user %NewUserData->Username% was created with role of %NewUserData-"
3104
+ ">Roles%."
3105
  msgstr ""
3106
 
3107
+ #: defaults.php:435
3108
+ msgid "User created another WordPress user"
3109
  msgstr ""
3110
 
3111
+ #: defaults.php:435
3112
  msgid ""
3113
+ "%UserChanger% created a new user %NewUserData->Username% with the role of "
3114
+ "%NewUserData->Roles%."
3115
  msgstr ""
3116
 
3117
+ #: defaults.php:436
3118
+ msgid "The role of a user was changed by another WordPress user"
3119
  msgstr ""
3120
 
3121
+ #: defaults.php:436
3122
  msgid ""
3123
+ "Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
3124
+ "%multisite_text%."
3125
  msgstr ""
3126
 
3127
+ #: defaults.php:437
3128
+ msgid "User has changed his or her password"
3129
  msgstr ""
3130
 
3131
+ #: defaults.php:437
3132
+ msgid "Changed the password."
 
 
3133
  msgstr ""
3134
 
3135
+ #: defaults.php:438
3136
+ msgid "User changed another user's password"
3137
  msgstr ""
3138
 
3139
+ #: defaults.php:438
3140
  msgid ""
3141
+ "Changed the password for the user %TargetUserData->Username% with the role "
3142
+ "of %TargetUserData->Roles%."
3143
  msgstr ""
3144
 
3145
+ #: defaults.php:439
3146
+ msgid "User changed his or her email address"
3147
  msgstr ""
3148
 
3149
+ #: defaults.php:439
3150
+ msgid "Changed the email address from %OldEmail% to %NewEmail%."
 
 
3151
  msgstr ""
3152
 
3153
+ #: defaults.php:440
3154
+ msgid "User changed another user's email address"
3155
  msgstr ""
3156
 
3157
+ #: defaults.php:440
3158
  msgid ""
3159
+ "Changed the email address of the user %TargetUsername% from %OldEmail% to "
3160
+ "%NewEmail%."
3161
  msgstr ""
3162
 
3163
+ #: defaults.php:441
3164
+ msgid "User was deleted by another user"
3165
  msgstr ""
3166
 
3167
+ #: defaults.php:441
3168
  msgid ""
3169
+ "Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
3170
+ ">Roles%."
3171
  msgstr ""
3172
 
3173
+ #: defaults.php:442
3174
+ msgid "User opened the profile page of another user"
3175
  msgstr ""
3176
 
3177
+ #: defaults.php:442
3178
+ msgid "%UserChanger% opened the profile page of the user %TargetUsername%."
3179
  msgstr ""
3180
 
3181
+ #: defaults.php:443
3182
+ msgid "User updated a custom field value for a user"
3183
  msgstr ""
3184
 
3185
+ #: defaults.php:443
3186
  msgid ""
3187
+ "Changed the value of the custom field %custom_field_name%%ReportText% for "
3188
+ "the user %TargetUsername%.%ChangeText%"
3189
  msgstr ""
3190
 
3191
+ #: defaults.php:444
3192
+ msgid "User created a custom field value for a user"
3193
  msgstr ""
3194
 
3195
+ #: defaults.php:444
3196
  msgid ""
3197
+ "Created the value of the custom field %custom_field_name% with %new_value% "
3198
+ "for the user %TargetUsername%."
3199
  msgstr ""
3200
 
3201
+ #: defaults.php:445
3202
+ msgid "User changed first name for a user"
3203
  msgstr ""
3204
 
3205
+ #: defaults.php:445
3206
  msgid ""
3207
+ "Changed the first name of the user %TargetUsername% from %old_firstname% to "
3208
+ "%new_firstname%"
3209
  msgstr ""
3210
 
3211
+ #: defaults.php:446
3212
+ msgid "User changed last name for a user"
3213
  msgstr ""
3214
 
3215
+ #: defaults.php:446
3216
  msgid ""
3217
+ "Changed the last name of the user %TargetUsername% from %old_lastname% to "
3218
+ "%new_lastname%"
3219
  msgstr ""
3220
 
3221
+ #: defaults.php:447
3222
+ msgid "User changed nickname for a user"
3223
  msgstr ""
3224
 
3225
+ #: defaults.php:447
3226
  msgid ""
3227
+ "Changed the nickname of the user %TargetUsername% from %old_nickname% to "
3228
+ "%new_nickname%"
3229
  msgstr ""
3230
 
3231
+ #: defaults.php:448
3232
+ msgid "User changed the display name for a user"
3233
  msgstr ""
3234
 
3235
+ #: defaults.php:448
3236
  msgid ""
3237
+ "Changed the Display name publicly of user %TargetUsername% from "
3238
+ "%old_displayname% to %new_displayname%"
3239
  msgstr ""
3240
 
3241
+ #: defaults.php:455
3242
+ msgid "Third Party Support"
3243
  msgstr ""
3244
 
3245
+ #: defaults.php:459
3246
+ msgid "BBPress Forum"
 
 
3247
  msgstr ""
3248
 
3249
+ #: defaults.php:460
3250
+ msgid "User created new forum"
3251
  msgstr ""
3252
 
3253
+ #: defaults.php:460
3254
  msgid ""
3255
+ "Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
 
3256
  msgstr ""
3257
 
3258
+ #: defaults.php:461
3259
+ msgid "User changed status of a forum"
3260
  msgstr ""
3261
 
3262
+ #: defaults.php:461
3263
  msgid ""
3264
+ "Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
3265
+ "%EditorLinkForum%."
3266
  msgstr ""
3267
 
3268
+ #: defaults.php:462
3269
+ msgid "User changed visibility of a forum"
3270
  msgstr ""
3271
 
3272
+ #: defaults.php:462
3273
  msgid ""
3274
+ "Changed the visibility of the forum %ForumName% from %OldVisibility% to "
3275
+ "%NewVisibility%. %EditorLinkForum%."
3276
  msgstr ""
3277
 
3278
+ #: defaults.php:463
3279
+ msgid "User changed the URL of a forum"
3280
  msgstr ""
3281
 
3282
+ #: defaults.php:463
3283
  msgid ""
3284
+ "Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
3285
+ "%EditorLinkForum%."
3286
  msgstr ""
3287
 
3288
+ #: defaults.php:464
3289
+ msgid "User changed order of a forum"
3290
  msgstr ""
3291
 
3292
+ #: defaults.php:464
3293
  msgid ""
3294
+ "Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
3295
+ "%EditorLinkForum%."
3296
  msgstr ""
3297
 
3298
+ #: defaults.php:465
3299
+ msgid "User moved forum to trash"
3300
  msgstr ""
3301
 
3302
+ #: defaults.php:465
3303
+ msgid "Moved the forum %ForumName% to trash."
 
 
 
3304
  msgstr ""
3305
 
3306
+ #: defaults.php:466
3307
+ msgid "User permanently deleted forum"
3308
  msgstr ""
3309
 
3310
+ #: defaults.php:466
3311
+ msgid "Permanently deleted the forum %ForumName%."
 
 
 
3312
  msgstr ""
3313
 
3314
+ #: defaults.php:467
3315
+ msgid "User restored forum from trash"
3316
  msgstr ""
3317
 
3318
+ #: defaults.php:467
3319
+ msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
 
 
 
3320
  msgstr ""
3321
 
3322
+ #: defaults.php:468
3323
+ msgid "User changed the parent of a forum"
3324
  msgstr ""
3325
 
3326
+ #: defaults.php:468
3327
  msgid ""
3328
+ "Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
3329
+ "%EditorLinkForum%."
 
3330
  msgstr ""
3331
 
3332
+ #: defaults.php:469
3333
+ msgid "User changed forum's role"
3334
  msgstr ""
3335
 
3336
+ #: defaults.php:469
3337
+ msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
 
 
 
3338
  msgstr ""
3339
 
3340
+ #: defaults.php:470
3341
+ msgid "User changed option of a forum"
3342
  msgstr ""
3343
 
3344
+ #: defaults.php:470
3345
+ msgid "%Status% the option for anonymous posting on forum."
 
 
 
3346
  msgstr ""
3347
 
3348
+ #: defaults.php:471
3349
+ msgid "User changed type of a forum"
3350
  msgstr ""
3351
 
3352
+ #: defaults.php:471
3353
  msgid ""
3354
+ "Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
3355
+ "%EditorLinkForum%."
3356
  msgstr ""
3357
 
3358
+ #: defaults.php:472
3359
+ msgid "User changed time to disallow post editing"
3360
  msgstr ""
3361
 
3362
+ #: defaults.php:472
3363
  msgid ""
3364
+ "Changed the time to disallow post editing from %OldTime% to %NewTime% "
3365
+ "minutes in the forums."
 
3366
  msgstr ""
3367
 
3368
+ #: defaults.php:473
3369
+ msgid "User changed the forum setting posting throttle time"
3370
  msgstr ""
3371
 
3372
+ #: defaults.php:473
3373
  msgid ""
3374
+ "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
3375
+ "forums."
3376
  msgstr ""
3377
 
3378
+ #: defaults.php:474
3379
+ msgid "User created new topic"
3380
  msgstr ""
3381
 
3382
+ #: defaults.php:474
3383
+ msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
 
 
3384
  msgstr ""
3385
 
3386
+ #: defaults.php:475
3387
+ msgid "User changed status of a topic"
3388
  msgstr ""
3389
 
3390
+ #: defaults.php:475
3391
  msgid ""
3392
+ "Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
3393
+ "%EditorLinkTopic%."
 
3394
  msgstr ""
3395
 
3396
+ #: defaults.php:476
3397
+ msgid "User changed type of a topic"
3398
  msgstr ""
3399
 
3400
+ #: defaults.php:476
3401
  msgid ""
3402
+ "Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
3403
+ "%EditorLinkTopic%."
 
3404
  msgstr ""
3405
 
3406
+ #: defaults.php:477
3407
+ msgid "User changed URL of a topic"
3408
  msgstr ""
3409
 
3410
+ #: defaults.php:477
3411
+ msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
 
 
 
3412
  msgstr ""
3413
 
3414
+ #: defaults.php:478
3415
+ msgid "User changed the forum of a topic"
3416
  msgstr ""
3417
 
3418
+ #: defaults.php:478
3419
  msgid ""
3420
+ "Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
3421
+ "%EditorLinkTopic%."
 
3422
  msgstr ""
3423
 
3424
+ #: defaults.php:479
3425
+ msgid "User moved topic to trash"
3426
  msgstr ""
3427
 
3428
+ #: defaults.php:479
3429
+ msgid "Moved the topic %TopicName% to trash."
 
 
 
3430
  msgstr ""
3431
 
3432
+ #: defaults.php:480
3433
+ msgid "User permanently deleted topic"
3434
  msgstr ""
3435
 
3436
+ #: defaults.php:480
3437
+ msgid "Permanently deleted the topic %TopicName%."
3438
  msgstr ""
3439
 
3440
+ #: defaults.php:481
3441
+ msgid "User restored topic from trash"
3442
  msgstr ""
3443
 
3444
+ #: defaults.php:481
3445
+ msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
3446
  msgstr ""
3447
 
3448
+ #: defaults.php:482
3449
+ msgid "User changed visibility of a topic"
3450
  msgstr ""
3451
 
3452
+ #: defaults.php:482
3453
  msgid ""
3454
+ "Changed the visibility of the topic %TopicName% from %OldVisibility% to "
3455
+ "%NewVisibility%. %EditorLinkTopic%."
 
 
 
3456
  msgstr ""
3457
 
3458
+ #: defaults.php:488
3459
+ msgid "WooCommerce"
3460
  msgstr ""
3461
 
3462
+ #: defaults.php:489
3463
+ msgid "User created a new product"
3464
  msgstr ""
3465
 
3466
+ #: defaults.php:489
3467
  msgid ""
3468
+ "Created a new product called %ProductTitle% and saved it as draft. View the "
3469
+ "product: %EditorLinkProduct%."
3470
  msgstr ""
3471
 
3472
+ #: defaults.php:490
3473
+ msgid "User published a product"
3474
  msgstr ""
3475
 
3476
+ #: defaults.php:490
3477
+ msgid ""
3478
+ "Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
3479
+ "the product: %EditorLinkProduct%."
3480
  msgstr ""
3481
 
3482
+ #: defaults.php:491
3483
+ msgid "User created a new product category"
3484
  msgstr ""
3485
 
3486
+ #: defaults.php:491
3487
+ msgid ""
3488
+ "Created a new product category called %CategoryName% in WooCommerce. Product "
3489
+ "category slug is %Slug%."
3490
  msgstr ""
3491
 
3492
+ #: defaults.php:492
3493
+ msgid "User changed the category of a product"
3494
  msgstr ""
3495
 
3496
+ #: defaults.php:492
3497
+ msgid ""
3498
+ "Changed the category of the product %ProductTitle% from %OldCategories% to "
3499
+ "%NewCategories%. View the product: %EditorLinkProduct%."
3500
  msgstr ""
3501
 
3502
+ #: defaults.php:493
3503
+ msgid "User modified the short description of a product"
3504
  msgstr ""
3505
 
3506
+ #: defaults.php:493
3507
+ msgid ""
3508
+ "Modified the short description of the product %ProductTitle%.%ChangeText% "
3509
+ "View the product: %EditorLinkProduct%."
3510
  msgstr ""
3511
 
3512
+ #: defaults.php:494
3513
+ msgid "User modified the text of a product"
3514
  msgstr ""
3515
 
3516
+ #: defaults.php:494
3517
+ msgid ""
3518
+ "Modified the text of the product %ProductTitle%. View the product: "
3519
+ "%EditorLinkProduct%."
3520
  msgstr ""
3521
 
3522
+ #: defaults.php:495
3523
+ msgid "User changed the URL of a product"
3524
  msgstr ""
3525
 
3526
+ #: defaults.php:495
3527
+ msgid ""
3528
+ "Changed the URL of the product %ProductTitle%%ReportText%.%ChangeText% View "
3529
+ "the product: %EditorLinkProduct%."
3530
  msgstr ""
3531
 
3532
+ #: defaults.php:496
3533
+ msgid "User changed the Product Data of a product"
3534
  msgstr ""
3535
 
3536
+ #: defaults.php:496
3537
  msgid ""
3538
+ "Changed the Product Data of the product %ProductTitle%. View the product: "
3539
+ "%EditorLinkProduct%."
3540
  msgstr ""
3541
 
3542
+ #: defaults.php:497
3543
+ msgid "User changed the date of a product"
3544
  msgstr ""
3545
 
3546
+ #: defaults.php:497
3547
  msgid ""
3548
+ "Changed the date of the product %ProductTitle% from %OldDate% to %NewDate%. "
3549
+ "View the product: %EditorLinkProduct%."
3550
  msgstr ""
3551
 
3552
+ #: defaults.php:498
3553
+ msgid "User changed the visibility of a product"
3554
  msgstr ""
3555
 
3556
+ #: defaults.php:498
3557
  msgid ""
3558
+ "Changed the visibility of the product %ProductTitle% from %OldVisibility% to "
3559
+ "%NewVisibility%. View the product: %EditorLinkProduct%."
3560
  msgstr ""
3561
 
3562
+ #: defaults.php:499
3563
+ msgid "User modified the published product"
3564
  msgstr ""
3565
 
3566
+ #: defaults.php:499
3567
  msgid ""
3568
+ "Modified the published product %ProductTitle%. Product URL is %ProductUrl%. "
3569
+ "View the product: %EditorLinkProduct%."
3570
  msgstr ""
3571
 
3572
+ #: defaults.php:500
3573
+ msgid "User modified the draft product"
3574
  msgstr ""
3575
 
3576
+ #: defaults.php:500
3577
  msgid ""
3578
+ "Modified the draft product %ProductTitle%. View the product: "
3579
+ "%EditorLinkProduct%."
3580
  msgstr ""
3581
 
3582
+ #: defaults.php:501
3583
+ msgid "User moved a product to trash"
3584
  msgstr ""
3585
 
3586
+ #: defaults.php:501
3587
  msgid ""
3588
+ "Moved the product %ProductTitle% to trash. Product URL was %ProductUrl%."
 
3589
  msgstr ""
3590
 
3591
+ #: defaults.php:502
3592
+ msgid "User permanently deleted a product"
3593
  msgstr ""
3594
 
3595
+ #: defaults.php:502
3596
+ msgid "Permanently deleted the product %ProductTitle%."
 
 
3597
  msgstr ""
3598
 
3599
+ #: defaults.php:503
3600
+ msgid "User restored a product from the trash"
3601
  msgstr ""
3602
 
3603
+ #: defaults.php:503
3604
  msgid ""
3605
+ "Product %ProductTitle% has been restored from trash. View product: "
3606
+ "%EditorLinkProduct%."
3607
  msgstr ""
3608
 
3609
+ #: defaults.php:504
3610
+ msgid "User changed status of a product"
3611
  msgstr ""
3612
 
3613
+ #: defaults.php:504
3614
  msgid ""
3615
+ "Changed the status of the product %ProductTitle% from %OldStatus% to "
3616
+ "%NewStatus%. View the product: %EditorLinkProduct%."
3617
  msgstr ""
3618
 
3619
+ #: defaults.php:505
3620
+ msgid "User changed type of a price"
3621
  msgstr ""
3622
 
3623
+ #: defaults.php:505
3624
  msgid ""
3625
+ "Changed the %PriceType% of the product %ProductTitle% from %OldPrice% to "
3626
+ "%NewPrice%. View the product: %EditorLinkProduct%."
3627
  msgstr ""
3628
 
3629
+ #: defaults.php:506
3630
+ msgid "User changed the SKU of a product"
3631
  msgstr ""
3632
 
3633
+ #: defaults.php:506
3634
  msgid ""
3635
+ "Changed the SKU of the product %ProductTitle% from %OldSku% to %NewSku%. "
3636
+ "View the product: %EditorLinkProduct%."
3637
  msgstr ""
3638
 
3639
+ #: defaults.php:507
3640
+ msgid "User changed the stock status of a product"
3641
  msgstr ""
3642
 
3643
+ #: defaults.php:507
3644
  msgid ""
3645
+ "Changed the stock status of the product %ProductTitle% from %OldStatus% to "
3646
+ "%NewStatus%. View the product: %EditorLinkProduct%."
3647
  msgstr ""
3648
 
3649
+ #: defaults.php:508
3650
+ msgid "User changed the stock quantity"
3651
  msgstr ""
3652
 
3653
+ #: defaults.php:508
3654
+ msgid ""
3655
+ "Changed the stock quantity of the product %ProductTitle% from %OldValue% to "
3656
+ "%NewValue%. View the product: %EditorLinkProduct%"
3657
  msgstr ""
3658
 
3659
+ #: defaults.php:509
3660
+ msgid "User set a product type"
3661
  msgstr ""
3662
 
3663
+ #: defaults.php:509
3664
  msgid ""
3665
+ "Set the product %ProductTitle% as %Type%. View the product: "
3666
+ "%EditorLinkProduct%."
3667
  msgstr ""
3668
 
3669
+ #: defaults.php:510
3670
+ msgid "User changed the weight of a product"
3671
  msgstr ""
3672
 
3673
+ #: defaults.php:510
3674
  msgid ""
3675
+ "Changed the weight of the product %ProductTitle% from %OldWeight% to "
3676
+ "%NewWeight%. View the product: %EditorLinkProduct%."
3677
  msgstr ""
3678
 
3679
+ #: defaults.php:511
3680
+ msgid "User changed the dimensions of a product"
3681
  msgstr ""
3682
 
3683
+ #: defaults.php:511
3684
  msgid ""
3685
+ "Changed the %DimensionType% dimensions of the product %ProductTitle% from "
3686
+ "%OldDimension% to %NewDimension%. View the product: %EditorLinkProduct%."
3687
  msgstr ""
3688
 
3689
+ #: defaults.php:512
3690
+ msgid "User added the Downloadable File to a product"
3691
  msgstr ""
3692
 
3693
+ #: defaults.php:512
3694
  msgid ""
3695
+ "Added the Downloadable File %FileName% with File URL %FileUrl% to the "
3696
+ "product %ProductTitle%. View the product: %EditorLinkProduct%."
3697
  msgstr ""
3698
 
3699
+ #: defaults.php:513
3700
+ msgid "User Removed the Downloadable File from a product"
3701
  msgstr ""
3702
 
3703
+ #: defaults.php:513
3704
  msgid ""
3705
+ "Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
3706
+ "product %ProductTitle%. View the product: %EditorLinkProduct%."
3707
  msgstr ""
3708
 
3709
+ #: defaults.php:514
3710
+ msgid "User changed the name of a Downloadable File in a product"
3711
  msgstr ""
3712
 
3713
+ #: defaults.php:514
3714
  msgid ""
3715
+ "Changed the name of a Downloadable File from %OldName% to %NewName% in "
3716
+ "product %ProductTitle%. View the product: %EditorLinkProduct%."
3717
  msgstr ""
3718
 
3719
+ #: defaults.php:515
3720
+ msgid "User changed the URL of the Downloadable File in a product"
3721
  msgstr ""
3722
 
3723
+ #: defaults.php:515
3724
  msgid ""
3725
+ "Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
3726
+ "% in product %ProductTitle%. View the product: %EditorLinkProduct%."
3727
  msgstr ""
3728
 
3729
+ #: defaults.php:516
3730
+ msgid "User changed the Weight Unit"
3731
  msgstr ""
3732
 
3733
+ #: defaults.php:516
3734
+ msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
3735
  msgstr ""
3736
 
3737
+ #: defaults.php:517
3738
+ msgid "User changed the Dimensions Unit"
3739
  msgstr ""
3740
 
3741
+ #: defaults.php:517
3742
+ msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
 
3743
  msgstr ""
3744
 
3745
+ #: defaults.php:518
3746
+ msgid "User changed the Base Location"
3747
  msgstr ""
3748
 
3749
+ #: defaults.php:518
3750
  msgid ""
3751
+ "Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
 
3752
  msgstr ""
3753
 
3754
+ #: defaults.php:519
3755
+ msgid "User Enabled/Disabled taxes"
3756
  msgstr ""
3757
 
3758
+ #: defaults.php:519
3759
+ msgid "%Status% taxes in the WooCommerce store."
3760
  msgstr ""
3761
 
3762
+ #: defaults.php:520
3763
+ msgid "User changed the currency"
3764
  msgstr ""
3765
 
3766
+ #: defaults.php:520
3767
  msgid ""
3768
+ "Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
3769
  msgstr ""
3770
 
3771
+ #: defaults.php:521
3772
+ msgid "User Enabled/Disabled the use of coupons during checkout"
3773
+ msgstr ""
3774
+
3775
+ #: defaults.php:521
3776
+ msgid "%Status% the use of coupons during checkout in WooCommerce."
3777
  msgstr ""
3778
 
3779
+ #: defaults.php:522
3780
+ msgid "User Enabled/Disabled guest checkout"
3781
  msgstr ""
3782
 
3783
+ #: defaults.php:522
3784
+ msgid "%Status% guest checkout in WooCommerce."
3785
  msgstr ""
3786
 
3787
+ #: defaults.php:523
3788
+ msgid "User Enabled/Disabled cash on delivery"
3789
  msgstr ""
3790
 
3791
+ #: defaults.php:523
3792
+ msgid "%Status% the option Enable cash on delivery in WooCommerce."
3793
  msgstr ""
3794
 
3795
+ #: defaults.php:525
3796
+ msgid "Yoast SEO"
3797
  msgstr ""
3798
 
3799
+ #: defaults.php:526
3800
  msgid "User changed title of a SEO post"
3801
  msgstr ""
3802
 
3803
+ #: defaults.php:526
3804
  msgid ""
3805
  "Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
3806
  "% %EditorLinkPost%."
3807
  msgstr ""
3808
 
3809
+ #: defaults.php:527
3810
  msgid "User changed the meta description of a SEO post"
3811
  msgstr ""
3812
 
3813
+ #: defaults.php:527
3814
  msgid ""
3815
  "Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
3816
  "%%ReportText%.%ChangeText% %EditorLinkPost%."
3817
  msgstr ""
3818
 
3819
+ #: defaults.php:528
3820
  msgid ""
3821
  "User changed setting to allow search engines to show post in search results "
3822
  "of a SEO post"
3823
  msgstr ""
3824
 
3825
+ #: defaults.php:528
3826
  msgid ""
3827
  "Changed the setting to allow search engines to show post in search results "
3828
  "from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
3829
  "%PostTitle%. %EditorLinkPost%."
3830
  msgstr ""
3831
 
3832
+ #: defaults.php:529
3833
  msgid ""
3834
  "User Enabled/Disabled the option for search engine to follow links of a SEO "
3835
  "post"
3836
  msgstr ""
3837
 
3838
+ #: defaults.php:529
3839
  msgid ""
3840
  "%NewStatus% the option for search engine to follow links in the %PostType% "
3841
  "titled %PostTitle%. %EditorLinkPost%."
3842
  msgstr ""
3843
 
3844
+ #: defaults.php:530
3845
  msgid "User set the meta robots advanced setting of a SEO post"
3846
  msgstr ""
3847
 
3848
+ #: defaults.php:530
3849
  msgid ""
3850
  "Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
3851
  "%PostType% titled %PostTitle%. %EditorLinkPost%."
3852
  msgstr ""
3853
 
3854
+ #: defaults.php:531
3855
  msgid "User changed the canonical URL of a SEO post"
3856
  msgstr ""
3857
 
3858
+ #: defaults.php:531
3859
  msgid ""
3860
  "Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
3861
  "%ReportText%.%ChangeText% %EditorLinkPost%."
3862
  msgstr ""
3863
 
3864
+ #: defaults.php:532
3865
  msgid "User changed the focus keyword of a SEO post"
3866
  msgstr ""
3867
 
3868
+ #: defaults.php:532
3869
  msgid ""
3870
  "Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
3871
  "from %old_keywords% to %new_keywords%. %EditorLinkPost%."
3872
  msgstr ""
3873
 
3874
+ #: defaults.php:533
3875
  msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
3876
  msgstr ""
3877
 
3878
+ #: defaults.php:533
3879
  msgid ""
3880
  "%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
3881
  "%PostTitle%. %EditorLinkPost%."
3882
  msgstr ""
3883
 
3884
+ #: defaults.php:534
3885
  msgid "User changed the Title Separator setting"
3886
  msgstr ""
3887
 
3888
+ #: defaults.php:534
3889
  msgid ""
3890
  "Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
3891
  "settings."
3892
  msgstr ""
3893
 
3894
+ #: defaults.php:535
3895
  msgid "User changed the Homepage Title setting"
3896
  msgstr ""
3897
 
3898
+ #: defaults.php:535
3899
  msgid ""
3900
  "Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
3901
  "%ChangeText%"
3902
  msgstr ""
3903
 
3904
+ #: defaults.php:536
3905
  msgid "User changed the Homepage Meta description setting"
3906
  msgstr ""
3907
 
3908
+ #: defaults.php:536
3909
  msgid ""
3910
  "Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
3911
  "settings.%ChangeText%"
3912
  msgstr ""
3913
 
3914
+ #: defaults.php:537
3915
  msgid "User changed the Company or Person setting"
3916
  msgstr ""
3917
 
3918
+ #: defaults.php:537
3919
  msgid ""
3920
  "Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
3921
  "plugin settings."
3922
  msgstr ""
3923
 
3924
+ #: defaults.php:538
3925
  msgid ""
3926
  "User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
3927
  "Yoast SEO plugin settings"
3928
  msgstr ""
3929
 
3930
+ #: defaults.php:538
3931
  msgid ""
3932
  "%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
3933
  "plugin settings."
3934
  msgstr ""
3935
 
3936
+ #: defaults.php:539
3937
  msgid ""
3938
  "User changed the Posts/Pages title template in the Yoast SEO plugin settings"
3939
  msgstr ""
3940
 
3941
+ #: defaults.php:539
3942
  msgid ""
3943
  "Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
3944
  "SEO plugin settings."
3945
  msgstr ""
3946
 
3947
+ #: defaults.php:540
3948
  msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
3949
  msgstr ""
3950
 
3951
+ #: defaults.php:540
3952
  msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
3953
  msgstr ""
3954
 
3955
+ #: defaults.php:541
3956
  msgid ""
3957
  "User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
3958
  msgstr ""
3959
 
3960
+ #: defaults.php:541
3961
  msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
3962
  msgstr ""
3963
 
3964
+ #: defaults.php:542
3965
  msgid ""
3966
  "User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
3967
  msgstr ""
3968
 
3969
+ #: defaults.php:542
3970
  msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
3971
  msgstr ""
3972
 
3973
+ #: defaults.php:543
3974
  msgid ""
3975
  "User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
3976
  msgstr ""
3977
 
3978
+ #: defaults.php:543
3979
  msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
3980
  msgstr ""
3981
 
3982
+ #: defaults.php:544
3983
  msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
3984
  msgstr ""
3985
 
3986
+ #: defaults.php:544
3987
  msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
3988
  msgstr ""
3989
 
3990
+ #: defaults.php:545
3991
  msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
3992
  msgstr ""
3993
 
3994
+ #: defaults.php:545
3995
  msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
3996
  msgstr ""
3997
 
3998
+ #: defaults.php:546
3999
  msgid ""
4000
  "User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
4001
  msgstr ""
4002
 
4003
+ #: defaults.php:546
4004
  msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
4005
  msgstr ""
4006
 
4007
+ #: defaults.php:547
4008
  msgid ""
4009
  "User changed the Posts/Pages meta description template in the Yoast SEO "
4010
  "plugin settings"
4011
  msgstr ""
4012
 
4013
+ #: defaults.php:547
4014
  msgid ""
4015
  "Changed the %SEOPostType% meta description template from %old% to %new% in "
4016
  "the Yoast SEO plugin settings."
4017
  msgstr ""
4018
 
4019
+ #: defaults.php:548
4020
  msgid ""
4021
  "User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
4022
  "plugin settings"
4023
  msgstr ""
4024
 
4025
+ #: defaults.php:548
4026
  msgid ""
4027
  "%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
4028
  "SEO plugin settings."
4029
  msgstr ""
4030
 
4031
+ #: defaults.php:549
4032
  msgid ""
4033
  "User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
4034
  "plugin settings"
4035
  msgstr ""
4036
 
4037
+ #: defaults.php:549
4038
  msgid ""
4039
  "%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
4040
  "plugin settings."
4041
  msgstr ""
4042
 
4043
+ #: defaults.php:550
4044
  msgid ""
4045
  "User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
4046
  "plugin settings"
4047
  msgstr ""
4048
 
4049
+ #: defaults.php:550
4050
  msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
4051
  msgstr ""
4052
 
4053
+ #: wp-security-audit-log.php:304 wp-security-audit-log.php:330
 
4054
  #, php-format
4055
  msgid "Hey %1$s"
4056
  msgstr ""
4057
 
4058
+ #: wp-security-audit-log.php:305
4059
  msgid ""
4060
  "Never miss an important update! Opt-in to our security and feature updates "
4061
  "notifications, and non-sensitive diagnostic tracking with freemius.com."
4062
  msgstr ""
4063
 
4064
+ #: wp-security-audit-log.php:306 wp-security-audit-log.php:332
4065
  msgid "Note: "
4066
  msgstr ""
4067
 
4068
+ #: wp-security-audit-log.php:307 wp-security-audit-log.php:333
4069
  msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
4070
  msgstr ""
4071
 
4072
+ #: wp-security-audit-log.php:331
 
4073
  #, php-format
4074
  msgid ""
4075
  "Please help us improve %2$s! If you opt-in, some non-sensitive data about "
4077
  "use. If you skip this, that's okay! %2$s will still work just fine."
4078
  msgstr ""
4079
 
4080
+ #: wp-security-audit-log.php:382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4081
  msgid ""
4082
  "Error: You do not have sufficient permissions to disable this custom field."
4083
  msgstr ""
4084
 
4085
+ #: wp-security-audit-log.php:418
4086
  msgid "Error: You do not have sufficient permissions to disable this alert."
4087
  msgstr ""
4088
 
4089
+ #: wp-security-audit-log.php:530
4090
  #, php-format
4091
  msgid ""
4092
  "You are using a version of PHP that is older than %s, which is no longer "
4093
  "supported."
4094
  msgstr ""
4095
 
4096
+ #: wp-security-audit-log.php:531
4097
  msgid ""
4098
  "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
4099
  "\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
4100
  "are using."
4101
  msgstr ""
4102
 
4103
+ #. Plugin Name of the plugin/theme
4104
+ msgid "WP Security Audit Log"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4105
  msgstr ""
4106
 
4107
  #. Plugin URI of the plugin/theme
4108
+ #. Author URI of the plugin/theme
4109
  msgid "http://www.wpsecurityauditlog.com/"
4110
  msgstr ""
4111
 
4122
  #. Author of the plugin/theme
4123
  msgid "WP White Security"
4124
  msgstr ""
 
 
 
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ 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.3
9
- Stable tag: 3.3.1
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.
@@ -195,80 +195,17 @@ Please refer to our [Support & Documentation pages](https://www.wpsecurityauditl
195
 
196
  == Changelog ==
197
 
198
- = 3.3.1 (2019-01-29) =
199
-
200
- Release notes: [Major Activity Log Improvement in WooCommerce Coverage](https://www.wpsecurityauditlog.com/releases/major-update-woocommerce-activity-log-coverage/)
201
-
202
- * **New Events for WooCommerce Orders**
203
- * ID 9035: New order placed in WooCommerce.
204
- * ID 9036: Changed the status of a WooCommerce order.
205
- * ID 9037: Moved a WooCommerce order to trash.
206
- * ID 9038: Restored a WooCommerce order from the trash.
207
- * ID 9039: Permanently deleted an order.
208
- * ID 9040: Changed the orders details.
209
- * ID 9041: Refunded a WooCommerce order
210
-
211
- * **New Events for WooCommerce Product Admin & Attributes Changes**
212
- * ID 9042: Changed the catalog visibility of a product.
213
- * ID 9043: Changed the Featured product setting of a product.
214
- * ID 9044: Changed the allow backorders setting of a product.
215
- * ID 9045: Changed the the Upsells of a product.
216
- * ID 9046: Changed the Cross-sells of a product.
217
- * ID 9047: Added a new attribute of a product.
218
- * ID 9048: Modified the value of a product attribute.
219
- * ID 9049: Renamed a product attribute.
220
- * ID 9050: Deleted a product attribute.
221
- * ID 9051: Changed the visibility of a product attribute.
222
-
223
- * **New Events for WooCommerce Categories**
224
- * ID 9052: Deleted a product category.
225
- * ID 9053: Changed the slug of a product category.
226
- * ID 9054: Changed the parent of a product category.
227
- * ID 9055: Changed display type of a product category.
228
- * ID 9056: Changed the name of a product category.
229
-
230
- * **New Events for WooCommerce Payment Gateways**
231
- * ID 9074: Enabled a payment gateway.
232
- * ID 9075: Disabled a payment gateway.
233
- * ID 9076: Modified a payment gateway.
234
-
235
- * **New Events for WooCommerce Coupons:**
236
- * ID 9063: Published a new coupon.
237
- * ID 9064: Changed the discount type of a coupon.
238
- * ID 9065: Changed the coupon amount.
239
- * ID 9066: Changed the coupon expire date.
240
- * ID 9067: Changed the Usage Restriction settings of a coupon.
241
- * ID 9068: Changed the Usage Limits settings of a coupon.
242
- * ID 9069: Changed the description of a coupon.
243
- * ID 9070: Changed the status of a coupon.
244
- * ID 9071: Renamed the WooCommerce coupon.
245
-
246
- * **New Events for WooCommerce Attributes:**
247
- * ID 9057: User created a new attribute.
248
- * ID 9058: User deleted an attribute.
249
- * ID 9059: User changed the slug of an attribute.
250
- * ID 9060: User changed the name of an attribute.
251
- * ID 9061: User changed the default sort order of an attribute.
252
- * ID 9062: User enabled/disabled the option Enable Archives of an attribute.
253
-
254
  * **New Features**
255
- * Email notification to site admin when the plugin is deactivated.
256
- * New setting to control refreshing of the live notifications in the admin bar.
257
- * Three new [hooks in the activity log plugin](https://www.wpsecurityauditlog.com/support-documentation/list-hooks/) that allow for event data manipulation.
258
 
259
  * **Plugin Improvements**
260
- * Major performance enhancement to the Event Viewer
261
- * Updated the text of some settings.
262
- * Event severities are now saved as meta data (we can now build filters for them).
263
- * Added the product status in all WooCommerce events.
264
- * Event 9011 (modified draft WooCommerce product) made obsolete with event 9010.
265
- * Event 9020 changed to report the different product types (simple, grouped, external, variable, downloadable, virtual)
266
- * Updated Freemius SDK
267
- * Better handling of incorrect database privileges when installing plugin.
268
- * Excluded the default WordPress cache directory from the default [WordPress File Integrity Scans](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/)
269
-
270
  * **Bug Fixes**
271
- * Events 2027 and 2011 incorrectly logged hen saving a draft post in Gutenberg.
272
- * Plugin logged event 5019 by mistake when the front end editor of WP Bakery was used.
273
- * When files bigger than the file size limit were scanned for the first time the plugin wrongly reported them as modified.
274
- * In some cases where WordPress was not upgraded to 5.0 the plugin was not recognizing content changes.
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.3
9
+ Stable tag: 3.3.1.1
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.
195
 
196
  == Changelog ==
197
 
198
+ Release notes: [Infinite scroll for activity logs & performance enhancement](https://www.wpsecurityauditlog.com/releases/infinite-scroll-performance-improvements-update-3-3-1-1)
199
+
200
+ = 3.3.1.1 (2019-02-06) =
201
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
202
  * **New Features**
203
+ * New [infinite scroll view in audit log viewer](https://www.wpsecurityauditlog.com/support-documentation/change-audit-log-viewer-pagination-infinite-scroll/) making the browsing of the activity logs much faster.
 
 
204
 
205
  * **Plugin Improvements**
206
+ * Improved the search filters - now they are much faster.
207
+ * Improved user session handling to better handle >1,000 sessions.
208
+ * Replaced PHP severity with event log severity in the list of Events.
209
+
 
 
 
 
 
 
210
  * **Bug Fixes**
211
+ * Scan Now button for the [WordPress file integrity scanner](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/) is grayed out when auto scanning is disabled.
 
 
 
sdk/freemius/assets/scss/admin/plugin-upgrade-notice.scss DELETED
@@ -1,8 +0,0 @@
1
- .plugins p.upgrade-notice
2
- {
3
- border: 0;
4
- background-color: #d54e21;
5
- padding: 10px;
6
- color: #f9f9f9;
7
- margin-top: 10px;
8
- }
 
 
 
 
 
 
 
 
sdk/wsal-freemius.php CHANGED
@@ -51,6 +51,7 @@ if ( file_exists( dirname( __FILE__ ) . '/freemius/start.php' ) ) {
51
  'slug' => 'wp-security-audit-log',
52
  'type' => 'plugin',
53
  'public_key' => 'pk_d602740d3088272d75906045af9fa',
 
54
  'is_premium' => $is_premium,
55
  'has_addons' => false,
56
  'has_paid_plans' => true,
51
  'slug' => 'wp-security-audit-log',
52
  'type' => 'plugin',
53
  'public_key' => 'pk_d602740d3088272d75906045af9fa',
54
+ 'premium_suffix' => '(Premium)',
55
  'is_premium' => $is_premium,
56
  'has_addons' => false,
57
  'has_paid_plans' => true,
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.3.1
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -15,7 +15,7 @@
15
 
16
  /*
17
  WP Security Audit Log
18
- Copyright(c) 2014 Robert Abela (email : robert@wpwhitesecurity.com)
19
 
20
  This program is free software; you can redistribute it and/or modify
21
  it under the terms of the GNU General Public License, version 2, as
@@ -54,7 +54,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
54
  *
55
  * @var string
56
  */
57
- public $version = '3.3.1';
58
 
59
  // Plugin constants.
60
  const PLG_CLS_PRFX = 'WSAL_';
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.3.1.1
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: http://www.wpwhitesecurity.com/
10
  * License: GPL2
15
 
16
  /*
17
  WP Security Audit Log
18
+ Copyright(c) 2019 Robert Abela (email : robert@wpwhitesecurity.com)
19
 
20
  This program is free software; you can redistribute it and/or modify
21
  it under the terms of the GNU General Public License, version 2, as
54
  *
55
  * @var string
56
  */
57
+ public $version = '3.3.1.1';
58
 
59
  // Plugin constants.
60
  const PLG_CLS_PRFX = 'WSAL_';