WP Security Audit Log - Version 2.5.2

Version Description

(2016-08-12) =

Read the WP Security Audit Log 2.5.2 release notes for more details on what is new.

  • New Feature

    • Logging of 404 Requests to a Log file. Read this FAQ for more information on this functionality.
  • Improvements

    • Fixed several alerts / monitoring capabilities that were not working correctly in WordPress 4.6.
Download this release

Release Info

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

Code changes from version 2.5.1 to 2.5.2

classes/Sensors/Content.php CHANGED
@@ -125,6 +125,10 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor
125
  + $this->CheckTemplateChange($this->_OldTmpl, $this->GetPostTemplate($post), $post)
126
  + $this->CheckCategoriesChange($this->_OldCats, $this->GetPostCategories($post), $post)
127
  ;
 
 
 
 
128
  if (!$changes) {
129
  $changes = $this->CheckPermalinkChange($this->_OldLink, get_permalink($post->ID), $post);
130
  }
@@ -486,8 +490,7 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor
486
  if ($this->CheckBBPress($oldpost)) {
487
  return;
488
  }
489
- $changes = 0 + $this->CheckDateChange($oldpost, $newpost)
490
- + $this->CheckTitleChange($oldpost, $newpost);
491
  if (!$changes) {
492
  $contentChanged = $oldpost->post_content != $newpost->post_content; // TODO what about excerpts?
493
 
125
  + $this->CheckTemplateChange($this->_OldTmpl, $this->GetPostTemplate($post), $post)
126
  + $this->CheckCategoriesChange($this->_OldCats, $this->GetPostCategories($post), $post)
127
  ;
128
+
129
+ if (!$changes) {
130
+ $changes = $this->CheckDateChange($this->_OldPost, $post);
131
+ }
132
  if (!$changes) {
133
  $changes = $this->CheckPermalinkChange($this->_OldLink, get_permalink($post->ID), $post);
134
  }
490
  if ($this->CheckBBPress($oldpost)) {
491
  return;
492
  }
493
+ $changes = $this->CheckTitleChange($oldpost, $newpost);
 
494
  if (!$changes) {
495
  $contentChanged = $oldpost->post_content != $newpost->post_content; // TODO what about excerpts?
496
 
classes/Sensors/Menus.php CHANGED
@@ -38,9 +38,12 @@ class WSAL_Sensors_Menus extends WSAL_AbstractSensor
38
  if ($oldItem['menu_order'] != $args['menu-item-position']) {
39
  $is_changed_order = true;
40
  }
41
- if (isset($args['menu-item-parent-id']) && $args['menu-item-parent-id'] != 0) {
42
  $is_sub_item = true;
43
  }
 
 
 
44
  }
45
  $oldMenuItems[$item_id] = array("type" => $oldItem['object'], "title" => $oldItem['title'], "parent" => $oldItem['menu_item_parent']);
46
  }
@@ -235,6 +238,7 @@ class WSAL_Sensors_Menus extends WSAL_AbstractSensor
235
  'object' => $item->object,
236
  'menu_name' => $menu->name,
237
  'menu_order' => $item->menu_order,
 
238
  'menu_item_parent' => $item->menu_item_parent
239
  ));
240
  }
38
  if ($oldItem['menu_order'] != $args['menu-item-position']) {
39
  $is_changed_order = true;
40
  }
41
+ if (!empty($args['menu-item-parent-id'])) {
42
  $is_sub_item = true;
43
  }
44
+ if (!empty($args['menu-item-title']) && $oldItem['title'] != $args['menu-item-title']) {
45
+ $this->EventModifiedItems($_POST['menu-item-object'][$menu_item_db_id], $_POST['menu-item-title'][$menu_item_db_id], $_POST['menu-name']);
46
+ }
47
  }
48
  $oldMenuItems[$item_id] = array("type" => $oldItem['object'], "title" => $oldItem['title'], "parent" => $oldItem['menu_item_parent']);
49
  }
238
  'object' => $item->object,
239
  'menu_name' => $menu->name,
240
  'menu_order' => $item->menu_order,
241
+ 'url' => $item->url,
242
  'menu_item_parent' => $item->menu_item_parent
243
  ));
244
  }
classes/Sensors/PluginsThemes.php CHANGED
@@ -126,6 +126,22 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor
126
  }
127
  }
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
  // upgrade plugin
130
  if (in_array($action, array('upgrade-plugin', 'update-plugin', 'update-selected')) && current_user_can("update_plugins")) {
131
  $plugins = array();
@@ -153,19 +169,27 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor
153
  }
154
 
155
  // update theme
156
- if (in_array($action, array('upgrade-theme')) && current_user_can("install_themes")) {
157
- if (isset($_REQUEST['theme'])) {
158
- $theme = wp_get_theme($_REQUEST['theme']);
159
- $this->plugin->alerts->Trigger(5031, array(
160
- 'Theme' => (object)array(
161
- 'Name' => $theme->Name,
162
- 'ThemeURI' => $theme->ThemeURI,
163
- 'Description' => $theme->Description,
164
- 'Author' => $theme->Author,
165
- 'Version' => $theme->Version,
166
- 'get_template_directory' => $theme->get_template_directory(),
167
- ),
168
- ));
 
 
 
 
 
 
 
 
169
  }
170
  }
171
 
@@ -185,9 +209,9 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor
185
  ));
186
  }
187
  }
188
-
189
  // uninstall theme
190
- if ($is_themes && in_array($action, array('delete-selected', 'delete')) && current_user_can("install_themes")) {
191
  foreach ($this->GetRemovedThemes() as $theme) {
192
  $this->plugin->alerts->Trigger(5007, array(
193
  'Theme' => (object)array(
@@ -231,7 +255,7 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor
231
 
232
  public function EventPluginPostCreate($insert, $post)
233
  {
234
- $WPActions = array('editpost', 'heartbeat', 'inline-save');
235
  if (isset($_REQUEST['action']) && !in_array($_REQUEST['action'], $WPActions)) {
236
  if (!in_array($post->post_type, array('attachment', 'revision', 'nav_menu_item'))) {
237
  $event = $this->GetEventTypeForPostType($post, 5019, 5020, 5021);
126
  }
127
  }
128
 
129
+ // uninstall plugin for Wordpress version 4.6
130
+ if (in_array($action, array('delete-plugin')) && current_user_can("delete_plugins")) {
131
+ if (isset($_REQUEST['plugin'])) {
132
+ $pluginFile = WP_PLUGIN_DIR . '/' . $_REQUEST['plugin'];
133
+ $pluginName = basename($pluginFile, '.php');
134
+ $pluginName = str_replace(array('_', '-', ' '), ' ', $pluginName);
135
+ $pluginName = ucwords($pluginName);
136
+ $this->plugin->alerts->Trigger(5003, array(
137
+ 'PluginFile' => $pluginFile,
138
+ 'PluginData' => (object)array(
139
+ 'Name' => $pluginName,
140
+ ),
141
+ ));
142
+ }
143
+ }
144
+
145
  // upgrade plugin
146
  if (in_array($action, array('upgrade-plugin', 'update-plugin', 'update-selected')) && current_user_can("update_plugins")) {
147
  $plugins = array();
169
  }
170
 
171
  // update theme
172
+ if (in_array($action, array('upgrade-theme', 'update-theme', 'update-selected-themes')) && current_user_can("install_themes")) {
173
+ $themes = array();
174
+ if (isset($_REQUEST['slug']) || isset($_REQUEST['theme'])) {
175
+ $themes[] = isset($_REQUEST['slug']) ? $_REQUEST['slug'] : $_REQUEST['theme'];
176
+ } elseif (isset($_REQUEST['themes'])) {
177
+ $themes = explode(",", $_REQUEST['themes']);
178
+ }
179
+ if (isset($themes)) {
180
+ foreach ($themes as $theme_name) {
181
+ $theme = wp_get_theme($theme_name);
182
+ $this->plugin->alerts->Trigger(5031, array(
183
+ 'Theme' => (object)array(
184
+ 'Name' => $theme->Name,
185
+ 'ThemeURI' => $theme->ThemeURI,
186
+ 'Description' => $theme->Description,
187
+ 'Author' => $theme->Author,
188
+ 'Version' => $theme->Version,
189
+ 'get_template_directory' => $theme->get_template_directory(),
190
+ ),
191
+ ));
192
+ }
193
  }
194
  }
195
 
209
  ));
210
  }
211
  }
212
+
213
  // uninstall theme
214
+ if (in_array($action, array('delete-theme')) && current_user_can("install_themes")) {
215
  foreach ($this->GetRemovedThemes() as $theme) {
216
  $this->plugin->alerts->Trigger(5007, array(
217
  'Theme' => (object)array(
255
 
256
  public function EventPluginPostCreate($insert, $post)
257
  {
258
+ $WPActions = array('editpost', 'heartbeat', 'inline-save', 'trash', 'untrash');
259
  if (isset($_REQUEST['action']) && !in_array($_REQUEST['action'], $WPActions)) {
260
  if (!in_array($post->post_type, array('attachment', 'revision', 'nav_menu_item'))) {
261
  $event = $this->GetEventTypeForPostType($post, 5019, 5020, 5021);
classes/Sensors/System.php CHANGED
@@ -11,6 +11,18 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
11
 
12
  add_action('automatic_updates_complete', array($this, 'WPUpdate'), 10, 1);
13
  add_filter('template_redirect', array($this, 'Event404'));
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
15
 
16
  /**
@@ -27,7 +39,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
27
 
28
  protected function Get404LogLimit()
29
  {
30
- return 10;
31
  }
32
 
33
  protected function Get404Expiration()
@@ -60,6 +72,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
60
 
61
  public function Event404()
62
  {
 
63
  // Check if the alert is disabled from the "Enable/Disable Alerts" section
64
  if (!$this->plugin->alerts->IsEnabled(6007)) {
65
  return;
@@ -113,6 +126,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
113
  $occ->UpdateMetaValue('Msg', $msg);
114
  $occ->created_on = null;
115
  $occ->Save();
 
116
  } else {
117
  // create a new record
118
  $fields = array(
@@ -122,6 +136,19 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
122
  );
123
  $this->plugin->alerts->Trigger(6007, $fields);
124
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  }
126
 
127
  public function EventAdminInit()
@@ -138,7 +165,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
138
  if ($is_option_page && (get_option('users_can_register') xor isset($_POST['users_can_register']))) {
139
  $old = get_option('users_can_register') ? 'Enabled' : 'Disabled';
140
  $new = isset($_POST['users_can_register']) ? 'Enabled' : 'Disabled';
141
- if ($old !== $new) {
142
  $this->plugin->alerts->Trigger(6001, array(
143
  'OldValue' => $old,
144
  'NewValue' => $new,
@@ -150,7 +177,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
150
  if ($is_option_page && !empty($_POST['default_role'])) {
151
  $old = get_option('default_role');
152
  $new = trim($_POST['default_role']);
153
- if ($old !== $new) {
154
  $this->plugin->alerts->Trigger(6002, array(
155
  'OldRole' => $old,
156
  'NewRole' => $new,
@@ -162,7 +189,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
162
  if ($is_option_page && !empty($_POST['admin_email'])) {
163
  $old = get_option('admin_email');
164
  $new = trim($_POST['admin_email']);
165
- if ($old !== $new) {
166
  $this->plugin->alerts->Trigger(6003, array(
167
  'OldEmail' => $old,
168
  'NewEmail' => $new,
@@ -174,7 +201,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
174
  if ($is_network_settings && !empty($_POST['admin_email'])) {
175
  $old = get_site_option('admin_email');
176
  $new = trim($_POST['admin_email']);
177
- if ($old !== $new) {
178
  $this->plugin->alerts->Trigger(6003, array(
179
  'OldEmail' => $old,
180
  'NewEmail' => $new,
@@ -183,10 +210,10 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
183
  }
184
  }
185
 
186
- if ($is_permalink_page && !empty($_POST['permalink_structure'])) {
187
  $old = get_option('permalink_structure');
188
- $new = trim($_POST['permalink_structure']);
189
- if ($old !== $new) {
190
  $this->plugin->alerts->Trigger(6005, array(
191
  'OldPattern' => $old,
192
  'NewPattern' => $new,
@@ -198,7 +225,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
198
  if ($action == 'do-core-upgrade' && isset($_REQUEST['version'])) {
199
  $oldVersion = get_bloginfo('version');
200
  $newVersion = $_REQUEST['version'];
201
- if ($oldVersion !== $newVersion) {
202
  $this->plugin->alerts->Trigger(6004, array(
203
  'OldVersion' => $oldVersion,
204
  'NewVersion' => $newVersion,
@@ -210,7 +237,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
210
  if ($action == 'update' && isset($_REQUEST['_bbp_default_role'])) {
211
  $oldRole = get_option('_bbp_default_role');
212
  $newRole = $_REQUEST['_bbp_default_role'];
213
- if ($oldRole !== $newRole) {
214
  $this->plugin->alerts->Trigger(8009, array(
215
  'OldRole' => $oldRole,
216
  'NewRole' => $newRole
@@ -266,4 +293,105 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor
266
  ));
267
  }
268
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  }
11
 
12
  add_action('automatic_updates_complete', array($this, 'WPUpdate'), 10, 1);
13
  add_filter('template_redirect', array($this, 'Event404'));
14
+
15
+ $upload_dir = wp_upload_dir();
16
+ $uploadsDirPath = trailingslashit($upload_dir['basedir']).'wp-security-audit-log/404s/';
17
+ if (!$this->CheckDirectory($uploadsDirPath)) {
18
+ wp_mkdir_p($uploadsDirPath);
19
+ }
20
+
21
+ // Cron Job 404 log files pruning
22
+ add_action('log_files_pruning', array($this,'LogFilesPruning'));
23
+ if (!wp_next_scheduled('log_files_pruning')) {
24
+ wp_schedule_event(time(), 'daily', 'log_files_pruning');
25
+ }
26
  }
27
 
28
  /**
39
 
40
  protected function Get404LogLimit()
41
  {
42
+ return 99;
43
  }
44
 
45
  protected function Get404Expiration()
72
 
73
  public function Event404()
74
  {
75
+ $attempts = 1;
76
  // Check if the alert is disabled from the "Enable/Disable Alerts" section
77
  if (!$this->plugin->alerts->IsEnabled(6007)) {
78
  return;
126
  $occ->UpdateMetaValue('Msg', $msg);
127
  $occ->created_on = null;
128
  $occ->Save();
129
+ $attempts = $new;
130
  } else {
131
  // create a new record
132
  $fields = array(
136
  );
137
  $this->plugin->alerts->Trigger(6007, $fields);
138
  }
139
+
140
+ if ($this->plugin->GetGlobalOption('log-404', 0)) {
141
+ // Request URL
142
+ $url = $_SERVER["HTTP_HOST"] . $_SERVER['REQUEST_URI'];
143
+ // Create/Append to the log file
144
+ $data = 'Attempts: ' . $attempts . ' - Request URL: ' . $url;
145
+ if (!is_user_logged_in()) {
146
+ $username = '';
147
+ } else {
148
+ $username = $username . '_';
149
+ }
150
+ $this->WriteLog($data, $ip, $username);
151
+ }
152
  }
153
 
154
  public function EventAdminInit()
165
  if ($is_option_page && (get_option('users_can_register') xor isset($_POST['users_can_register']))) {
166
  $old = get_option('users_can_register') ? 'Enabled' : 'Disabled';
167
  $new = isset($_POST['users_can_register']) ? 'Enabled' : 'Disabled';
168
+ if ($old != $new) {
169
  $this->plugin->alerts->Trigger(6001, array(
170
  'OldValue' => $old,
171
  'NewValue' => $new,
177
  if ($is_option_page && !empty($_POST['default_role'])) {
178
  $old = get_option('default_role');
179
  $new = trim($_POST['default_role']);
180
+ if ($old != $new) {
181
  $this->plugin->alerts->Trigger(6002, array(
182
  'OldRole' => $old,
183
  'NewRole' => $new,
189
  if ($is_option_page && !empty($_POST['admin_email'])) {
190
  $old = get_option('admin_email');
191
  $new = trim($_POST['admin_email']);
192
+ if ($old != $new) {
193
  $this->plugin->alerts->Trigger(6003, array(
194
  'OldEmail' => $old,
195
  'NewEmail' => $new,
201
  if ($is_network_settings && !empty($_POST['admin_email'])) {
202
  $old = get_site_option('admin_email');
203
  $new = trim($_POST['admin_email']);
204
+ if ($old != $new) {
205
  $this->plugin->alerts->Trigger(6003, array(
206
  'OldEmail' => $old,
207
  'NewEmail' => $new,
210
  }
211
  }
212
 
213
+ if ($is_permalink_page && !empty($_REQUEST['permalink_structure'])) {
214
  $old = get_option('permalink_structure');
215
+ $new = trim($_REQUEST['permalink_structure']);
216
+ if ($old != $new) {
217
  $this->plugin->alerts->Trigger(6005, array(
218
  'OldPattern' => $old,
219
  'NewPattern' => $new,
225
  if ($action == 'do-core-upgrade' && isset($_REQUEST['version'])) {
226
  $oldVersion = get_bloginfo('version');
227
  $newVersion = $_REQUEST['version'];
228
+ if ($oldVersion != $newVersion) {
229
  $this->plugin->alerts->Trigger(6004, array(
230
  'OldVersion' => $oldVersion,
231
  'NewVersion' => $newVersion,
237
  if ($action == 'update' && isset($_REQUEST['_bbp_default_role'])) {
238
  $oldRole = get_option('_bbp_default_role');
239
  $newRole = $_REQUEST['_bbp_default_role'];
240
+ if ($oldRole != $newRole) {
241
  $this->plugin->alerts->Trigger(8009, array(
242
  'OldRole' => $oldRole,
243
  'NewRole' => $newRole
293
  ));
294
  }
295
  }
296
+
297
+ /**
298
+ * Purge log files older than one month
299
+ */
300
+ public function LogFilesPruning()
301
+ {
302
+ if ($this->plugin->GetGlobalOption('purge-404-log', 0)) {
303
+ $upload_dir = wp_upload_dir();
304
+ $uploadsDirPath = trailingslashit($upload_dir['basedir']).'wp-security-audit-log/404s/';
305
+ if (is_dir($uploadsDirPath)) {
306
+ if ($handle = opendir($uploadsDirPath)) {
307
+ while (false !== ($entry = readdir($handle))) {
308
+ if ($entry != "." && $entry != "..") {
309
+ if (file_exists($uploadsDirPath . $entry)) {
310
+ $modified = filemtime($uploadsDirPath . $entry);
311
+ if ($modified < strtotime('-4 weeks')) {
312
+ // Delete file
313
+ unlink($uploadsDirPath . $entry);
314
+ }
315
+ }
316
+ }
317
+ }
318
+ closedir($handle);
319
+ }
320
+ }
321
+ }
322
+ }
323
+
324
+ /**
325
+ * Write a new line on 404 log file
326
+ */
327
+ private function WriteLog($data, $ip, $username = '')
328
+ {
329
+ $upload_dir = wp_upload_dir();
330
+ $uploadsDirPath = trailingslashit($upload_dir['basedir']).'wp-security-audit-log/404s/';
331
+ // Check directory
332
+ if (is_dir($uploadsDirPath) && is_readable($uploadsDirPath) && is_writable($uploadsDirPath)) {
333
+ $filename = date('Ymd') . '_' . $username . $ip . '.log';
334
+ $fp = $uploadsDirPath . $filename;
335
+ if (!$file = fopen($fp, 'a')) {
336
+ $i = 1;
337
+ $fileOpened = false;
338
+ do {
339
+ $fp2 = substr($fp, 0, -4) . '_' . $i . '.log';
340
+ if (!file_exists($fp2)) {
341
+ if ($file = fopen($fp2, 'a')) {
342
+ $fileOpened = true;
343
+ }
344
+ } else {
345
+ $fpLast = $this->GetLastModified($uploadsDirPath, $filename);
346
+ if ($file = fopen($fpLast, 'a')) {
347
+ $fileOpened = true;
348
+ }
349
+ }
350
+ $i++;
351
+ } while (!$fileOpened);
352
+ }
353
+ fwrite($file, sprintf("%s\n", $data));
354
+ fclose($file);
355
+ }
356
+ }
357
+
358
+ private function GetLastModified($uploadsDirPath, $filename)
359
+ {
360
+ $filename = substr($filename, 0, -4);
361
+ $latest_mtime = 0;
362
+ $latest_filename = '';
363
+ if ($handle = opendir($uploadsDirPath)) {
364
+ while (false !== ($entry = readdir($handle))) {
365
+ if ($entry != "." && $entry != "..") {
366
+ if (preg_match('/^'.$filename.'/i', $entry) > 0) {
367
+ if (filemtime($uploadsDirPath . $entry) > $latest_mtime) {
368
+ $latest_mtime = filemtime($uploadsDirPath . $entry);
369
+ $latest_filename = $entry;
370
+ }
371
+ }
372
+ }
373
+ }
374
+ closedir($handle);
375
+ }
376
+ return $uploadsDirPath . $latest_filename;
377
+ }
378
+
379
+ /**
380
+ * Check to see whether or not the specified directory is accessible
381
+ * @param string $dirPath
382
+ * @return bool
383
+ */
384
+ private function CheckDirectory($dirPath)
385
+ {
386
+ if (!is_dir($dirPath)) {
387
+ return false;
388
+ }
389
+ if (!is_readable($dirPath)) {
390
+ return false;
391
+ }
392
+ if (!is_writable($dirPath)) {
393
+ return false;
394
+ }
395
+ return true;
396
+ }
397
  }
classes/Views/ToggleAlerts.php CHANGED
@@ -46,6 +46,8 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView
46
  } catch (Exception $ex) {
47
  ?><div class="error"><p><?php _e('Error: ', 'wp-security-audit-log'); ?><?php echo $ex->getMessage(); ?></p></div><?php
48
  }
 
 
49
  }
50
  ?><h2 id="wsal-tabs" class="nav-tab-wrapper"><?php
51
  foreach ($safeNames as $name => $safe) {
@@ -94,6 +96,20 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView
94
  <td><?php echo $this->_plugin->constants->GetConstantBy('value', $alert->code)->name; ?></td>
95
  <td><?php echo esc_html($alert->desc); ?></td>
96
  </tr><?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  }
98
  ?></tbody>
99
  </table><?php
46
  } catch (Exception $ex) {
47
  ?><div class="error"><p><?php _e('Error: ', 'wp-security-audit-log'); ?><?php echo $ex->getMessage(); ?></p></div><?php
48
  }
49
+ $this->_plugin->SetGlobalOption('log-404', isset($_REQUEST['log_404']) ? 1 : 0);
50
+ $this->_plugin->SetGlobalOption('purge-404-log', isset($_REQUEST['purge_log']) ? 1 : 0);
51
  }
52
  ?><h2 id="wsal-tabs" class="nav-tab-wrapper"><?php
53
  foreach ($safeNames as $name => $safe) {
96
  <td><?php echo $this->_plugin->constants->GetConstantBy('value', $alert->code)->name; ?></td>
97
  <td><?php echo esc_html($alert->desc); ?></td>
98
  </tr><?php
99
+ if ($alert->type == 6007) {
100
+ $log_404 = $this->_plugin->GetGlobalOption('log-404', 0);
101
+ $purge_log = $this->_plugin->GetGlobalOption('purge-404-log', 0);
102
+ ?><tr>
103
+ <td></td>
104
+ <td><input name="log_404" type="checkbox" value="1" <?php if ($log_404) echo 'checked="checked"'; ?>></td>
105
+ <td colspan="2"><?php _e('Capture 404 requests to file (the log file are created in the /wp-content/uploads/wp-security-audit-log/404s/ directory)', 'wp-security-audit-log'); ?></td>
106
+ </tr>
107
+ <tr>
108
+ <td></td>
109
+ <td><input name="purge_log" type="checkbox" value="1" <?php if ($purge_log) echo 'checked="checked"'; ?>></td>
110
+ <td colspan="2"><?php _e('Purge log files older than one month', 'wp-security-audit-log'); ?></td>
111
+ </tr><?php
112
+ }
113
  }
114
  ?></tbody>
115
  </table><?php
defaults.php CHANGED
@@ -171,7 +171,7 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal)
171
  array(6003, E_CRITICAL, __('WordPress Administrator Notification email changed', 'wp-security-audit-log'), __('Changed the WordPress administrator notifications email address from %OldEmail% to %NewEmail%.', 'wp-security-audit-log')),
172
  array(6004, E_CRITICAL, __('WordPress was updated', 'wp-security-audit-log'), __('Updated WordPress from version %OldVersion% to %NewVersion%.', 'wp-security-audit-log')),
173
  array(6005, E_CRITICAL, __('User changes the WordPress Permalinks', 'wp-security-audit-log'), __('Changed the WordPress permalinks from %OldPattern% to %NewPattern%.', 'wp-security-audit-log')),
174
- array(6007, E_CRITICAL, __('User requests non-existing pages (404 Error Pages)', 'wp-security-audit-log'), __('Has requested a non existing page (404 Error Pages) %Attempts% %Msg%.', 'wp-security-audit-log')),
175
  array(9999, E_CRITICAL, __('Advertising Add-ons.', 'wp-security-audit-log'), __('%PromoName% %PromoMessage%', 'wp-security-audit-log'))
176
  ),
177
  __('MultiSite', 'wp-security-audit-log') => array(
171
  array(6003, E_CRITICAL, __('WordPress Administrator Notification email changed', 'wp-security-audit-log'), __('Changed the WordPress administrator notifications email address from %OldEmail% to %NewEmail%.', 'wp-security-audit-log')),
172
  array(6004, E_CRITICAL, __('WordPress was updated', 'wp-security-audit-log'), __('Updated WordPress from version %OldVersion% to %NewVersion%.', 'wp-security-audit-log')),
173
  array(6005, E_CRITICAL, __('User changes the WordPress Permalinks', 'wp-security-audit-log'), __('Changed the WordPress permalinks from %OldPattern% to %NewPattern%.', 'wp-security-audit-log')),
174
+ array(6007, E_CRITICAL, __('User requests non-existing pages (404 Error Pages)', 'wp-security-audit-log'), __('Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. These requests are being logged to a log file in the /wp-uploads/wp-security-audit-log/404s/ directory.', 'wp-security-audit-log')),
175
  array(9999, E_CRITICAL, __('Advertising Add-ons.', 'wp-security-audit-log'), __('%PromoName% %PromoMessage%', 'wp-security-audit-log'))
176
  ),
177
  __('MultiSite', 'wp-security-audit-log') => array(
languages/wp-security-audit-log.pot CHANGED
@@ -1,95 +1,109 @@
1
- # Copyright (C) 2015 WP Security Audit Log
2
  # This file is distributed under the same license as the WP Security Audit Log package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: WP Security Audit Log 2.0.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-security-audit-"
7
  "log\n"
8
- "POT-Creation-Date: 2015-08-09 14:19:11+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
16
- #: classes/AuditLogListView.php:29
17
  msgid "No events so far."
18
  msgstr ""
19
 
20
- #: classes/AuditLogListView.php:34
21
  msgid "Other"
22
  msgstr ""
23
 
24
- #: classes/AuditLogListView.php:41
25
  msgid "Show "
26
  msgstr ""
27
 
28
- #: classes/AuditLogListView.php:51
29
  msgid " Items"
30
  msgstr ""
31
 
32
- #: classes/AuditLogListView.php:64 classes/Views/AuditLog.php:86
33
  msgid "All Sites"
34
  msgstr ""
35
 
36
- #: classes/AuditLogListView.php:113 classes/Views/ToggleAlerts.php:69
 
37
  msgid "Code"
38
  msgstr ""
39
 
40
- #: classes/AuditLogListView.php:114 classes/Views/ToggleAlerts.php:70
 
41
  msgid "Type"
42
  msgstr ""
43
 
44
- #: classes/AuditLogListView.php:115
45
  msgid "Date"
46
  msgstr ""
47
 
48
- #: classes/AuditLogListView.php:116
49
  msgid "Username"
50
  msgstr ""
51
 
52
- #: classes/AuditLogListView.php:117
53
  msgid "Source IP"
54
  msgstr ""
55
 
56
- #: classes/AuditLogListView.php:120
57
  msgid "Site"
58
  msgstr ""
59
 
60
- #: classes/AuditLogListView.php:122
61
  msgid "Message"
62
  msgstr ""
63
 
64
- #: classes/AuditLogListView.php:154
65
  msgid "Click to toggle."
66
  msgstr ""
67
 
68
- #: classes/AuditLogListView.php:160
69
  msgid "Unknown error code."
70
  msgstr ""
71
 
72
- #: classes/AuditLogListView.php:184 classes/AuditLogListView.php:188
73
  msgid "Unknown"
74
  msgstr ""
75
 
76
- #: classes/AuditLogListView.php:189
 
 
 
 
 
 
 
 
 
 
 
 
77
  msgid "System"
78
  msgstr ""
79
 
80
- #: classes/AuditLogListView.php:215
81
  msgid "Alert Data Inspector"
82
  msgstr ""
83
 
84
- #: classes/Sensors/Content.php:328 classes/Sensors/Content.php:336
85
  msgid "Password Protected"
86
  msgstr ""
87
 
88
- #: classes/Sensors/Content.php:330 classes/Sensors/Content.php:338
89
  msgid "Public"
90
  msgstr ""
91
 
92
- #: classes/Sensors/Content.php:332 classes/Sensors/Content.php:340
93
  msgid "Private"
94
  msgstr ""
95
 
@@ -188,11 +202,11 @@ msgstr ""
188
  msgid "See Add-Ons"
189
  msgstr ""
190
 
191
- #: classes/Views/About.php:65 classes/Views/Help.php:66
192
  msgid "WP Security Audit Log in your Language!"
193
  msgstr ""
194
 
195
- #: classes/Views/About.php:67 classes/Views/Help.php:68
196
  msgid ""
197
  "If you are interested in translating our plugin please drop us an email on"
198
  msgstr ""
@@ -205,44 +219,73 @@ msgstr ""
205
  msgid "Professional WordPress security services provided by WP White Security"
206
  msgstr ""
207
 
208
- #: classes/Views/AuditLog.php:25
209
- msgid "Get notified instantly via email of important changes on your WordPress"
210
  msgstr ""
211
 
212
- #: classes/Views/AuditLog.php:28
213
- msgid "Learn More"
 
214
  msgstr ""
215
 
216
- #: classes/Views/AuditLog.php:29
217
- msgid "Dismiss this notice"
218
  msgstr ""
219
 
220
- #: classes/Views/AuditLog.php:40 classes/Views/AuditLog.php:50
221
  msgid "Audit Log Viewer"
222
  msgstr ""
223
 
224
- #: classes/Views/AuditLog.php:64 classes/Views/Licensing.php:34
225
- #: classes/Views/Settings.php:118 classes/Views/ToggleAlerts.php:28
226
  msgid "You do not have sufficient permissions to access this page."
227
  msgstr ""
228
 
229
- #: classes/Views/AuditLog.php:85
230
  msgid "Please enter the number of alerts you would like to see on one page:"
231
  msgstr ""
232
 
233
- #: classes/Views/AuditLog.php:87
234
  msgid "No Results"
235
  msgstr ""
236
 
237
- #: classes/Views/Extensions.php:6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  msgid "WP Security Audit Log Add-Ons"
239
  msgstr ""
240
 
241
- #: classes/Views/Extensions.php:14
242
- msgid "Extensions"
243
  msgstr ""
244
 
245
- #: classes/Views/Extensions.php:27
246
  msgid ""
247
  "The below add-ons allow you to extend the functionality of WP Security Audit "
248
  "Log plugin and enable you to get more benefits out of the WordPress security "
@@ -251,64 +294,71 @@ msgid ""
251
  "regulatory compliance requirements."
252
  msgstr ""
253
 
254
- #: classes/Views/Extensions.php:31
255
- msgid "Email Notifications Add-On"
256
  msgstr ""
257
 
258
- #: classes/Views/Extensions.php:32
259
  msgid ""
260
- "Get notified instantly via email when important changes are made on your "
261
- "WordPress!"
262
  msgstr ""
263
 
264
- #: classes/Views/Extensions.php:33
265
- msgid ""
266
- "With the Email Notifications Add-On you can easily configure trigger rules "
267
- "so when a specific change happens on your WordPress you are instantly "
268
- "alerted via email. For example you can configure rules to receive an email "
269
- "when existing content is changed, when a new user is created or when someone "
270
- "logs in to WordPress outside normal office hours or from an odd location."
271
  msgstr ""
272
 
273
- #: classes/Views/Extensions.php:34 classes/Views/Extensions.php:41
274
- #: classes/Views/Extensions.php:48
275
- msgid "More Information"
276
  msgstr ""
277
 
278
- #: classes/Views/Extensions.php:38
279
- msgid "Search Add-On"
 
 
 
 
 
 
 
280
  msgstr ""
281
 
282
- #: classes/Views/Extensions.php:39
283
  msgid ""
284
- "Automatically Search for specific WordPress user and site activity in "
285
- "WordPress Security Audit Log."
 
 
 
 
 
286
  msgstr ""
287
 
288
- #: classes/Views/Extensions.php:40
289
  msgid ""
290
- "The Search Add-On enables you to easily find specific WordPress activity in "
291
- "the Audit Log with free-text based searches. Filters can also be used in "
292
- "conjunction with free-text based searches to fine tune the search and find "
293
- "what you are looking for easily."
294
  msgstr ""
295
 
296
- #: classes/Views/Extensions.php:45
297
- msgid "Reports Add-Ons"
 
298
  msgstr ""
299
 
300
- #: classes/Views/Extensions.php:46
301
- msgid "Generate User, Site and Regulatory Compliance Reports."
 
 
 
 
 
 
302
  msgstr ""
303
 
304
- #: classes/Views/Extensions.php:47
305
  msgid ""
306
- "The Reports Add-On allows you to generate reports and keep track and record "
307
- "of user productivity, and meet any legal and regulatory compliance your "
308
- "business need to adhere to. Unlike other reporting plugins the Reports Add-"
309
- "On does not have any built-in templates that restrict you to specific type "
310
- "of reports, you can generate any type of report using all of the available "
311
- "data."
312
  msgstr ""
313
 
314
  #: classes/Views/Help.php:6 classes/Views/Help.php:14
@@ -361,47 +411,49 @@ msgid "Plugin Website"
361
  msgstr ""
362
 
363
  #: classes/Views/Help.php:46
364
- msgid "List of WordPress Security Alerts"
365
- msgstr ""
366
-
367
- #: classes/Views/Help.php:51
368
- msgid "WordPress Security Blog"
369
  msgstr ""
370
 
371
- #: classes/Views/Help.php:53
372
- msgid "New to WordPress security?"
373
  msgstr ""
374
 
375
- #: classes/Views/Help.php:54
376
- msgid "Do not know from where to start or which is the best services for you?"
377
  msgstr ""
378
 
379
  #: classes/Views/Help.php:55
380
- msgid ""
381
- "Visit our WordPress security blog or the WordPress Security category "
382
- "directly for more information and a number of tips and tricks about "
383
- "WordPress security."
384
  msgstr ""
385
 
386
  #: classes/Views/Help.php:57
387
- msgid "WP White Security Blog"
 
 
 
 
388
  msgstr ""
389
 
390
  #: classes/Views/Help.php:59
391
- msgid "WordPress Security Category"
 
 
 
 
 
392
  msgstr ""
393
 
394
  #: classes/Views/Licensing.php:6 classes/Views/Licensing.php:14
395
  msgid "Licensing"
396
  msgstr ""
397
 
398
- #: classes/Views/Licensing.php:39 classes/Views/Settings.php:124
399
- #: classes/Views/ToggleAlerts.php:43
400
  msgid "Settings have been saved."
401
  msgstr ""
402
 
403
- #: classes/Views/Licensing.php:41 classes/Views/Settings.php:127
404
- #: classes/Views/ToggleAlerts.php:45
405
  msgid "Error: "
406
  msgstr ""
407
 
@@ -417,111 +469,173 @@ msgstr ""
417
  msgid "Inactive"
418
  msgstr ""
419
 
420
- #: classes/Views/Settings.php:20 classes/Views/Settings.php:28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
421
  msgid "Settings"
422
  msgstr ""
423
 
424
- #: classes/Views/Settings.php:158
425
  msgid "Security Alerts Pruning"
426
  msgstr ""
427
 
428
- #: classes/Views/Settings.php:161 classes/Views/Settings.php:169
429
  msgid "(eg: 1 month)"
430
  msgstr ""
431
 
432
- #: classes/Views/Settings.php:165
433
  msgid "None"
434
  msgstr ""
435
 
436
- #: classes/Views/Settings.php:173
437
  msgid "Delete alerts older than"
438
  msgstr ""
439
 
440
- #: classes/Views/Settings.php:181
441
  msgid "(eg: 80)"
442
  msgstr ""
443
 
444
- #: classes/Views/Settings.php:185
445
  msgid "Keep up to"
446
  msgstr ""
447
 
448
- #: classes/Views/Settings.php:190
449
  msgid "alerts"
450
  msgstr ""
451
 
452
- #: classes/Views/Settings.php:194
453
  msgid "Next Scheduled Cleanup is in "
454
  msgstr ""
455
 
456
- #: classes/Views/Settings.php:198
457
  msgid "(or %s)"
458
  msgstr ""
459
 
460
- #: classes/Views/Settings.php:199
461
  msgid "Run Manually"
462
  msgstr ""
463
 
464
- #: classes/Views/Settings.php:205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
465
  msgid "Alerts Dashboard Widget"
466
  msgstr ""
467
 
468
- #: classes/Views/Settings.php:211
469
  msgid "On"
470
  msgstr ""
471
 
472
- #: classes/Views/Settings.php:216
473
  msgid "Off"
474
  msgstr ""
475
 
476
- #: classes/Views/Settings.php:221
477
  msgid "Display a dashboard widget with the latest %d security alerts."
478
  msgstr ""
479
 
480
- #: classes/Views/Settings.php:229
481
  msgid "Reverse Proxy / Firewall Options"
482
  msgstr ""
483
 
484
- #: classes/Views/Settings.php:235
485
  msgid "WordPress running behind firewall or proxy"
486
  msgstr ""
487
 
488
- #: classes/Views/Settings.php:236
489
  msgid ""
490
  "Enable this option if your WordPress is running behind a firewall or reverse "
491
  "proxy. When this option is enabled the plugin will retrieve the user's IP "
492
  "address from the proxy header."
493
  msgstr ""
494
 
495
- #: classes/Views/Settings.php:242
496
  msgid "Filter Internal IP Addresses"
497
  msgstr ""
498
 
499
- #: classes/Views/Settings.php:243
500
  msgid ""
501
  "Enable this option to filter internal IP addresses from the proxy headers."
502
  msgstr ""
503
 
504
- #: classes/Views/Settings.php:249
505
  msgid "Can View Alerts"
506
  msgstr ""
507
 
508
- #: classes/Views/Settings.php:256
509
  msgid "Users and Roles in this list can view the security alerts"
510
  msgstr ""
511
 
512
- #: classes/Views/Settings.php:271
513
  msgid "Can Manage Plugin"
514
  msgstr ""
515
 
516
- #: classes/Views/Settings.php:278
517
  msgid "Users and Roles in this list can manage the plugin settings"
518
  msgstr ""
519
 
520
- #: classes/Views/Settings.php:293
521
  msgid "Restrict Plugin Access"
522
  msgstr ""
523
 
524
- #: classes/Views/Settings.php:301
525
  msgid ""
526
  "By default all the administrators on this WordPress have access to manage "
527
  "this plugin.<br/>By enabling this option only the users specified in the two "
@@ -529,286 +643,337 @@ msgid ""
529
  "this plugin."
530
  msgstr ""
531
 
532
- #: classes/Views/Settings.php:308
533
  msgid "Refresh Audit Log Viewer"
534
  msgstr ""
535
 
536
- #: classes/Views/Settings.php:314
537
  msgid "Automatic"
538
  msgstr ""
539
 
540
- #: classes/Views/Settings.php:316
541
  msgid "Refresh Audit Log Viewer as soon as there are new alerts."
542
  msgstr ""
543
 
544
- #: classes/Views/Settings.php:320
545
  msgid "Manual"
546
  msgstr ""
547
 
548
- #: classes/Views/Settings.php:322
549
  msgid "Refresh Audit Log Viewer only when the page is reloaded."
550
  msgstr ""
551
 
552
- #: classes/Views/Settings.php:328
553
  msgid "Alerts Time Format"
554
  msgstr ""
555
 
556
- #: classes/Views/Settings.php:334
557
  msgid "24 hours"
558
  msgstr ""
559
 
560
- #: classes/Views/Settings.php:339
561
  msgid "AM/PM"
562
  msgstr ""
563
 
564
- #: classes/Views/Settings.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  msgid "Developer Options"
566
  msgstr ""
567
 
568
- #: classes/Views/Settings.php:354
569
  msgid ""
570
  "Only enable these options on testing, staging and development websites. "
571
  "Enabling any of the settings below on LIVE websites may cause unintended "
572
  "side-effects including degraded performance."
573
  msgstr ""
574
 
575
- #: classes/Views/Settings.php:358
576
  msgid "Data Inspector"
577
  msgstr ""
578
 
579
- #: classes/Views/Settings.php:359
580
  msgid "View data logged for each triggered alert."
581
  msgstr ""
582
 
583
- #: classes/Views/Settings.php:362
584
  msgid "PHP Errors"
585
  msgstr ""
586
 
587
- #: classes/Views/Settings.php:363
588
  msgid "Enables sensor for alerts generated from PHP."
589
  msgstr ""
590
 
591
- #: classes/Views/Settings.php:366
592
  msgid "Request Log"
593
  msgstr ""
594
 
595
- #: classes/Views/Settings.php:367
596
  msgid "Enables logging request to file."
597
  msgstr ""
598
 
599
- #: classes/Views/Settings.php:370
600
  msgid "Backtrace"
601
  msgstr ""
602
 
603
- #: classes/Views/Settings.php:371
604
  msgid "Log full backtrace for PHP-generated alerts."
605
  msgstr ""
606
 
607
- #: classes/Views/Settings.php:389
608
  msgid "Hide Plugin in Plugins Page"
609
  msgstr ""
610
 
611
- #: classes/Views/Settings.php:395
612
  msgid "Hide"
613
  msgstr ""
614
 
615
- #: classes/Views/Settings.php:399
616
  msgid ""
617
  "To manually revert this setting set the value of option wsal-hide-plugin to "
618
  "0 in the wp_options table."
619
  msgstr ""
620
 
621
- #: classes/Views/Settings.php:405
622
- msgid "Remove Data on Unistall"
 
 
 
 
623
  msgstr ""
624
 
625
- #: classes/Views/Settings.php:428
 
 
 
 
 
 
 
 
 
626
  msgid "Excluded Users"
627
  msgstr ""
628
 
629
- #: classes/Views/Settings.php:447
630
  msgid "Excluded Roles"
631
  msgstr ""
632
 
633
- #: classes/Views/Settings.php:472
634
  msgid "Excluded Custom Fields"
635
  msgstr ""
636
 
637
- #: classes/Views/ToggleAlerts.php:5 classes/Views/ToggleAlerts.php:13
 
 
 
 
638
  msgid "Enable/Disable Alerts"
639
  msgstr ""
640
 
641
- #: classes/Views/ToggleAlerts.php:71 classes/WidgetManager.php:39
642
  msgid "Description"
643
  msgstr ""
644
 
645
- #: classes/Views/ToggleAlerts.php:80
646
  msgid "Not Implemented"
647
  msgstr ""
648
 
649
- #: classes/Views/ToggleAlerts.php:83
650
  msgid "Not Available"
651
  msgstr ""
652
 
653
- #: classes/Views/ToggleAlerts.php:97
 
 
 
 
 
 
 
 
 
 
654
  msgid "Save Changes"
655
  msgstr ""
656
 
657
- #: classes/WidgetManager.php:19
658
  msgid "Latest Alerts"
659
  msgstr ""
660
 
661
- #: classes/WidgetManager.php:33
662
  msgid "No alerts found."
663
  msgstr ""
664
 
665
- #: classes/WidgetManager.php:38
666
  msgid "User"
667
  msgstr ""
668
 
669
- #: defaults.php:16
670
  msgid "Fatal run-time error."
671
  msgstr ""
672
 
673
- #: defaults.php:17
674
  msgid "Run-time warning (non-fatal error)."
675
  msgstr ""
676
 
677
- #: defaults.php:18
678
  msgid "Compile-time parse error."
679
  msgstr ""
680
 
681
- #: defaults.php:19
682
  msgid "Run-time notice."
683
  msgstr ""
684
 
685
- #: defaults.php:20
686
  msgid "Fatal error that occurred during startup."
687
  msgstr ""
688
 
689
- #: defaults.php:21
690
  msgid "Warnings that occurred during startup."
691
  msgstr ""
692
 
693
- #: defaults.php:22
694
  msgid "Fatal compile-time error."
695
  msgstr ""
696
 
697
- #: defaults.php:23
698
  msgid "Compile-time warning."
699
  msgstr ""
700
 
701
- #: defaults.php:24
702
  msgid "User-generated error message."
703
  msgstr ""
704
 
705
- #: defaults.php:25
706
  msgid "User-generated warning message."
707
  msgstr ""
708
 
709
- #: defaults.php:26
710
  msgid "User-generated notice message."
711
  msgstr ""
712
 
713
- #: defaults.php:27
714
  msgid "Non-standard/optimal code warning."
715
  msgstr ""
716
 
717
- #: defaults.php:28
718
  msgid "Catchable fatal error."
719
  msgstr ""
720
 
721
- #: defaults.php:29
722
  msgid "Run-time deprecation notices."
723
  msgstr ""
724
 
725
- #: defaults.php:30
726
  msgid "Run-time user deprecation notices."
727
  msgstr ""
728
 
729
- #: defaults.php:32
730
  msgid "Critical, high-impact messages."
731
  msgstr ""
732
 
733
- #: defaults.php:33
734
  msgid "Debug informational messages."
735
  msgstr ""
736
 
737
- #: defaults.php:37
738
- msgid "Other User Activity"
739
- msgstr ""
740
-
741
- #: defaults.php:38
742
- msgid "User logs in"
743
- msgstr ""
744
-
745
  #: defaults.php:38
746
- msgid "Successfully logged in"
747
  msgstr ""
748
 
749
  #: defaults.php:39
750
- msgid "User logs out"
751
  msgstr ""
752
 
753
  #: defaults.php:39
754
- msgid "Successfully logged out"
755
  msgstr ""
756
 
757
  #: defaults.php:40
758
- msgid "Login failed"
759
  msgstr ""
760
 
761
  #: defaults.php:40
762
- msgid "%Attempts% failed login(s) detected"
763
  msgstr ""
764
 
765
  #: defaults.php:41
766
- msgid "Login failed / non existing user"
767
  msgstr ""
768
 
769
  #: defaults.php:41
770
- msgid "%Attempts% failed login(s) detected using non existing user."
771
  msgstr ""
772
 
773
  #: defaults.php:42
774
- msgid "User uploaded file from Uploads directory"
775
  msgstr ""
776
 
777
  #: defaults.php:42
778
- msgid "Uploaded the file %FileName% in %FilePath%"
779
  msgstr ""
780
 
781
  #: defaults.php:43
782
- msgid "User deleted file from Uploads directory"
783
  msgstr ""
784
 
785
  #: defaults.php:43
786
- msgid "Deleted the file %FileName% from %FilePath%"
 
 
787
  msgstr ""
788
 
789
  #: defaults.php:44
790
- msgid "User changed a file using the theme editor"
791
  msgstr ""
792
 
793
  #: defaults.php:44
794
- msgid "Modified %File% with the Theme Editor"
 
 
795
  msgstr ""
796
 
797
  #: defaults.php:45
798
- msgid "User changed a file using the plugin editor"
799
  msgstr ""
800
 
801
  #: defaults.php:45
802
- msgid "Modified %File% with the Plugin Editor"
803
  msgstr ""
804
 
805
  #: defaults.php:46
806
- msgid "User changed generic tables"
807
  msgstr ""
808
 
809
  #: defaults.php:46
810
- msgid ""
811
- "Changed the parent of %CategoryName% category from %OldParent% to %NewParent%"
812
  msgstr ""
813
 
814
  #: defaults.php:48
@@ -820,7 +985,9 @@ msgid "User created a new blog post and saved it as draft"
820
  msgstr ""
821
 
822
  #: defaults.php:49
823
- msgid "Created a new blog post called %PostTitle%. Blog post ID is %PostID%"
 
 
824
  msgstr ""
825
 
826
  #: defaults.php:50
@@ -828,7 +995,8 @@ msgid "User published a blog post"
828
  msgstr ""
829
 
830
  #: defaults.php:50
831
- msgid "Published a blog post called %PostTitle%. Blog post URL is %PostUrl%"
 
832
  msgstr ""
833
 
834
  #: defaults.php:51
@@ -837,7 +1005,8 @@ msgstr ""
837
 
838
  #: defaults.php:51
839
  msgid ""
840
- "Modified the published blog post %PostTitle%. Blog post URL is %PostUrl%"
 
841
  msgstr ""
842
 
843
  #: defaults.php:52
@@ -845,7 +1014,7 @@ msgid "User modified a draft blog post"
845
  msgstr ""
846
 
847
  #: defaults.php:52
848
- msgid "Modified the draft blog post %PostTitle%. Blog post ID is %PostID%"
849
  msgstr ""
850
 
851
  #: defaults.php:53
@@ -853,7 +1022,9 @@ msgid "User permanently deleted a blog post from the trash"
853
  msgstr ""
854
 
855
  #: defaults.php:53
856
- msgid "Permanently deleted the post %PostTitle%. Blog post ID is %PostID%"
 
 
857
  msgstr ""
858
 
859
  #: defaults.php:54
@@ -861,7 +1032,7 @@ msgid "User moved a blog post to the trash"
861
  msgstr ""
862
 
863
  #: defaults.php:54
864
- msgid "Moved the blog post %PostTitle% to trash"
865
  msgstr ""
866
 
867
  #: defaults.php:55
@@ -869,7 +1040,7 @@ msgid "User restored a blog post from trash"
869
  msgstr ""
870
 
871
  #: defaults.php:55
872
- msgid "Restored post %PostTitle% from trash"
873
  msgstr ""
874
 
875
  #: defaults.php:56
@@ -879,7 +1050,7 @@ msgstr ""
879
  #: defaults.php:56
880
  msgid ""
881
  "Changed the category of the post %PostTitle% from %OldCategories% to "
882
- "%NewCategories%"
883
  msgstr ""
884
 
885
  #: defaults.php:57
@@ -887,7 +1058,9 @@ msgid "User changed blog post URL"
887
  msgstr ""
888
 
889
  #: defaults.php:57
890
- msgid "Changed the URL of the post %PostTitle% from %OldUrl% to %NewUrl%"
 
 
891
  msgstr ""
892
 
893
  #: defaults.php:58
@@ -895,7 +1068,9 @@ msgid "User changed blog post author"
895
  msgstr ""
896
 
897
  #: defaults.php:58
898
- msgid "Changed the author of %PostTitle% post from %OldAuthor% to %NewAuthor%"
 
 
899
  msgstr ""
900
 
901
  #: defaults.php:59
@@ -903,7 +1078,9 @@ msgid "User changed blog post status"
903
  msgstr ""
904
 
905
  #: defaults.php:59
906
- msgid "Changed the status of %PostTitle% post from %OldStatus% to %NewStatus%"
 
 
907
  msgstr ""
908
 
909
  #: defaults.php:60
@@ -911,7 +1088,9 @@ msgid "User created new category"
911
  msgstr ""
912
 
913
  #: defaults.php:60
914
- msgid "Created a new category called %CategoryName%"
 
 
915
  msgstr ""
916
 
917
  #: defaults.php:61
@@ -919,7 +1098,7 @@ msgid "User deleted category"
919
  msgstr ""
920
 
921
  #: defaults.php:61
922
- msgid "Deleted the %CategoryName% category"
923
  msgstr ""
924
 
925
  #: defaults.php:62
@@ -928,8 +1107,8 @@ msgstr ""
928
 
929
  #: defaults.php:62
930
  msgid ""
931
- "Changed the visibility of %PostTitle% blog post from %OldVisibility% to "
932
- "%NewVisibility%"
933
  msgstr ""
934
 
935
  #: defaults.php:63
@@ -937,855 +1116,1371 @@ msgid "User changed the date of a blog post"
937
  msgstr ""
938
 
939
  #: defaults.php:63
940
- msgid "Changed the date of %PostTitle% blog post from %OldDate% to %NewDate%"
 
 
941
  msgstr ""
942
 
943
  #: defaults.php:64
944
- msgid "User sets a post as sticky"
945
  msgstr ""
946
 
947
  #: defaults.php:64
948
- msgid "Set the post %PostTitle% as Sticky"
 
949
  msgstr ""
950
 
951
  #: defaults.php:65
952
- msgid "User removes post from sticky"
953
  msgstr ""
954
 
955
  #: defaults.php:65
956
- msgid "Removed the post %PostTitle% from Sticky"
 
 
 
 
957
  msgstr ""
958
 
959
  #: defaults.php:66
960
- msgid "User creates a custom field for a post"
 
 
961
  msgstr ""
962
 
963
  #: defaults.php:67
964
- msgid "User updates a custom field value for a post"
965
  msgstr ""
966
 
967
  #: defaults.php:68
968
- msgid "User deletes a custom field from a post"
969
  msgstr ""
970
 
971
  #: defaults.php:69
972
- msgid "User updates a custom field name for a post"
973
- msgstr ""
974
-
975
- #: defaults.php:70
976
- msgid "User modifies content for a published post"
977
  msgstr ""
978
 
979
  #: defaults.php:70
980
- msgid "Modified the content of published post %PostTitle%"
981
  msgstr ""
982
 
983
  #: defaults.php:71
984
- msgid "User modifies content for a draft post"
985
  msgstr ""
986
 
987
- #: defaults.php:71
988
- msgid "Modified the content of draft post %PostTitle%"
989
  msgstr ""
990
 
991
  #: defaults.php:73
992
- msgid "Pages"
993
  msgstr ""
994
 
995
  #: defaults.php:74
996
- msgid "User created a new WordPress page and saved it as draft"
997
  msgstr ""
998
 
999
  #: defaults.php:74
1000
- msgid "Created a new page called %PostTitle%. Page ID is %PostID%"
1001
  msgstr ""
1002
 
1003
  #: defaults.php:75
1004
- msgid "User published a WorPress page"
1005
  msgstr ""
1006
 
1007
  #: defaults.php:75
1008
- msgid "Published a page called %PostTitle%. Page URL is %PostUrl%"
 
 
1009
  msgstr ""
1010
 
1011
  #: defaults.php:76
1012
- msgid "User modified a published WordPress page"
1013
  msgstr ""
1014
 
1015
  #: defaults.php:76
1016
- msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%"
1017
- msgstr ""
1018
-
1019
- #: defaults.php:77
1020
- msgid "User modified a draft WordPress page"
1021
- msgstr ""
1022
-
1023
- #: defaults.php:77
1024
- msgid "Modified the draft page %PostTitle%. Page ID is %PostID%"
1025
- msgstr ""
1026
-
1027
- #: defaults.php:78
1028
- msgid "User permanently deleted a page from the trash"
1029
  msgstr ""
1030
 
1031
  #: defaults.php:78
1032
- msgid "Permanently deleted the page %PostTitle%. Page ID is %PostID%"
1033
  msgstr ""
1034
 
1035
  #: defaults.php:79
1036
- msgid "User moved WordPress page to the trash"
1037
  msgstr ""
1038
 
1039
  #: defaults.php:79
1040
- msgid "Moved the page %PostTitle% to trash"
 
 
1041
  msgstr ""
1042
 
1043
  #: defaults.php:80
1044
- msgid "User restored a WordPress page from trash"
1045
  msgstr ""
1046
 
1047
  #: defaults.php:80
1048
- msgid "Restored page %PostTitle% from trash"
 
1049
  msgstr ""
1050
 
1051
  #: defaults.php:81
1052
- msgid "User changed page URL"
1053
  msgstr ""
1054
 
1055
  #: defaults.php:81
1056
- msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%"
 
 
1057
  msgstr ""
1058
 
1059
  #: defaults.php:82
1060
- msgid "User changed page author"
1061
  msgstr ""
1062
 
1063
  #: defaults.php:82
1064
- msgid "Changed the author of %PostTitle% page from %OldAuthor% to %NewAuthor%"
 
1065
  msgstr ""
1066
 
1067
  #: defaults.php:83
1068
- msgid "User changed page status"
1069
  msgstr ""
1070
 
1071
  #: defaults.php:83
1072
- msgid "Changed the status of %PostTitle% page from %OldStatus% to %NewStatus%"
 
 
1073
  msgstr ""
1074
 
1075
  #: defaults.php:84
1076
- msgid "User changed the visibility of a page post"
1077
  msgstr ""
1078
 
1079
  #: defaults.php:84
1080
- msgid ""
1081
- "Changed the visibility of %PostTitle% page from %OldVisibility% to "
1082
- "%NewVisibility%"
1083
  msgstr ""
1084
 
1085
  #: defaults.php:85
1086
- msgid "User changed the date of a page post"
1087
  msgstr ""
1088
 
1089
  #: defaults.php:85
1090
- msgid "Changed the date of %PostTitle% page from %OldDate% to %NewDate%"
1091
  msgstr ""
1092
 
1093
  #: defaults.php:86
1094
- msgid "User changed the parent of a page"
1095
  msgstr ""
1096
 
1097
  #: defaults.php:86
1098
  msgid ""
1099
- "Changed the parent of %PostTitle% page from %OldParentName% to %NewParentName"
1100
- "%"
1101
  msgstr ""
1102
 
1103
  #: defaults.php:87
1104
- msgid "User changes the template of a page"
1105
  msgstr ""
1106
 
1107
  #: defaults.php:87
1108
  msgid ""
1109
- "Changed the template of %PostTitle% page from %OldTemplate% to %NewTemplate%"
 
1110
  msgstr ""
1111
 
1112
  #: defaults.php:88
1113
- msgid "User creates a custom field for a page"
1114
  msgstr ""
1115
 
1116
- #: defaults.php:89
1117
- msgid "User updates a custom field value for a page"
 
 
1118
  msgstr ""
1119
 
1120
- #: defaults.php:90
1121
- msgid "User deletes a custom field from a page"
1122
  msgstr ""
1123
 
1124
- #: defaults.php:91
1125
- msgid "User updates a custom field name for a page"
 
 
1126
  msgstr ""
1127
 
1128
- #: defaults.php:92
1129
- msgid "User modifies content for a published page"
1130
  msgstr ""
1131
 
1132
- #: defaults.php:92
1133
- msgid "Modified the content of published page %PostTitle%"
1134
- msgstr ""
1135
-
1136
- #: defaults.php:93
1137
- msgid "User modifies content for a draft page"
1138
- msgstr ""
1139
-
1140
- #: defaults.php:93
1141
- msgid "Modified the content of draft page %PostTitle%"
1142
- msgstr ""
1143
-
1144
- #: defaults.php:95
1145
- msgid "Custom Posts"
1146
  msgstr ""
1147
 
1148
- #: defaults.php:96
1149
- msgid "User created a new post with custom post type and saved it as draft"
1150
  msgstr ""
1151
 
1152
- #: defaults.php:96
1153
  msgid ""
1154
- "Created a new custom post called %PostTitle% of type %PostType%. Post ID is "
1155
- "%PostID%"
1156
  msgstr ""
1157
 
1158
- #: defaults.php:97
1159
- msgid "User published a post with custom post type"
1160
  msgstr ""
1161
 
1162
- #: defaults.php:97
1163
  msgid ""
1164
- "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
1165
- msgstr ""
1166
-
1167
- #: defaults.php:98
1168
- msgid "User modified a post with custom post type"
1169
  msgstr ""
1170
 
1171
- #: defaults.php:98
1172
- msgid ""
1173
- "Modified custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
1174
  msgstr ""
1175
 
1176
- #: defaults.php:99
1177
- msgid "User modified a draft post with custom post type"
1178
  msgstr ""
1179
 
1180
- #: defaults.php:99
1181
- msgid ""
1182
- "Modified draft custom post %PostTitle% of type is %PostType%. Post URL is "
1183
- "%PostUrl%"
1184
  msgstr ""
1185
 
1186
- #: defaults.php:100
1187
- msgid "User permanently deleted post with custom post type"
1188
  msgstr ""
1189
 
1190
- #: defaults.php:100
1191
- msgid "Permanently Deleted custom post %PostTitle% of type %PostType%"
1192
  msgstr ""
1193
 
1194
- #: defaults.php:101
1195
- msgid "User moved post with custom post type to trash"
1196
  msgstr ""
1197
 
1198
- #: defaults.php:101
1199
- msgid "Moved custom post %PostTitle% to trash. Post type is %PostType%"
1200
  msgstr ""
1201
 
1202
- #: defaults.php:102
1203
- msgid "User restored post with custom post type from trash"
1204
  msgstr ""
1205
 
1206
  #: defaults.php:102
1207
- msgid "Restored custom post %PostTitle% of type %PostType% from trash"
1208
  msgstr ""
1209
 
1210
  #: defaults.php:103
1211
- msgid "User changed the category of a post with custom post type"
1212
  msgstr ""
1213
 
1214
  #: defaults.php:103
1215
  msgid ""
1216
- "Changed the category(ies) of custom post %PostTitle% of type %PostType% from "
1217
- "%OldCategories% to %NewCategories%"
1218
  msgstr ""
1219
 
1220
  #: defaults.php:104
1221
- msgid "User changed the URL of a post with custom post type"
1222
  msgstr ""
1223
 
1224
  #: defaults.php:104
1225
  msgid ""
1226
- "Changed the URL of custom post %PostTitle% of type %PostType% from %OldUrl% "
1227
- "to %NewUrl%"
1228
  msgstr ""
1229
 
1230
  #: defaults.php:105
1231
- msgid "User changed the author or post with custom post type"
1232
  msgstr ""
1233
 
1234
  #: defaults.php:105
1235
  msgid ""
1236
- "Changed the author of custom post %PostTitle% of type %PostType% from "
1237
- "%OldAuthor% to %NewAuthor%"
1238
  msgstr ""
1239
 
1240
  #: defaults.php:106
1241
- msgid "User changed the status of post with custom post type"
1242
  msgstr ""
1243
 
1244
  #: defaults.php:106
1245
  msgid ""
1246
- "Changed the status of custom post %PostTitle% of type %PostType% from "
1247
- "%OldStatus% to %NewStatus%"
1248
  msgstr ""
1249
 
1250
  #: defaults.php:107
1251
- msgid "User changed the visibility of a post with custom post type"
1252
  msgstr ""
1253
 
1254
  #: defaults.php:107
1255
  msgid ""
1256
- "Changed the visibility of custom post %PostTitle% of type %PostType% from "
1257
- "%OldVisibility% to %NewVisibility%"
1258
  msgstr ""
1259
 
1260
  #: defaults.php:108
1261
- msgid "User changed the date of post with custom post type"
1262
  msgstr ""
1263
 
1264
  #: defaults.php:108
1265
  msgid ""
1266
- "Changed the date of custom post %PostTitle% of type %PostType% from %OldDate"
1267
- "% to %NewDate%"
 
 
 
 
1268
  msgstr ""
1269
 
1270
  #: defaults.php:109
1271
- msgid "User creates a custom field for a custom post"
 
 
 
 
 
 
1272
  msgstr ""
1273
 
1274
  #: defaults.php:110
1275
- msgid "User updates a custom field for a custom post"
 
 
 
 
 
 
1276
  msgstr ""
1277
 
1278
  #: defaults.php:111
1279
- msgid "User deletes a custom field from a custom post"
 
 
 
 
 
 
1280
  msgstr ""
1281
 
1282
  #: defaults.php:112
1283
- msgid "User updates a custom field name for a custom post"
 
 
1284
  msgstr ""
1285
 
1286
  #: defaults.php:113
1287
- msgid "User modifies content for a published custom post"
1288
  msgstr ""
1289
 
1290
  #: defaults.php:113
1291
- msgid "Modified the content of published custom post type %PostTitle%"
 
 
1292
  msgstr ""
1293
 
1294
  #: defaults.php:114
1295
- msgid "User modifies content for a draft custom post"
1296
  msgstr ""
1297
 
1298
  #: defaults.php:114
1299
- msgid "Modified the content of draft custom post type %PostTitle%"
 
 
1300
  msgstr ""
1301
 
1302
- #: defaults.php:116
1303
- msgid "Widgets"
1304
  msgstr ""
1305
 
1306
- #: defaults.php:117
1307
- msgid "User added a new widget"
 
 
1308
  msgstr ""
1309
 
1310
- #: defaults.php:117
1311
- msgid "Added a new %WidgetName% widget in %Sidebar%"
1312
  msgstr ""
1313
 
1314
- #: defaults.php:118
1315
- msgid "User modified a widget"
1316
  msgstr ""
1317
 
1318
  #: defaults.php:118
1319
- msgid "Modified the %WidgetName% widget in %Sidebar%"
1320
- msgstr ""
1321
-
1322
- #: defaults.php:119
1323
- msgid "User deleted widget"
1324
  msgstr ""
1325
 
1326
  #: defaults.php:119
1327
- msgid "Deleted the %WidgetName% widget from %Sidebar%"
1328
  msgstr ""
1329
 
1330
  #: defaults.php:120
1331
- msgid "User moved widget"
1332
  msgstr ""
1333
 
1334
- #: defaults.php:120
1335
- msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%"
1336
  msgstr ""
1337
 
1338
- #: defaults.php:121
1339
- msgid "User changed widget position"
1340
  msgstr ""
1341
 
1342
- #: defaults.php:121
1343
  msgid ""
1344
- "Moved the %WidgetName% widget from position %OldPosition% to position "
1345
- "%NewPosition% in sidebar %Sidebar%"
1346
  msgstr ""
1347
 
1348
  #: defaults.php:123
1349
- msgid "User Profiles"
1350
- msgstr ""
1351
-
1352
- #: defaults.php:124
1353
- msgid "A new user was created on WordPress"
1354
  msgstr ""
1355
 
1356
- #: defaults.php:124
1357
  msgid ""
1358
- "User %NewUserData->Username% subscribed with a role of %NewUserData->Roles%"
 
1359
  msgstr ""
1360
 
1361
  #: defaults.php:125
1362
- msgid "A user created another WordPress user"
1363
- msgstr ""
1364
-
1365
- #: defaults.php:125
1366
- msgid ""
1367
- "Created a new user %NewUserData->Username% with the role of %NewUserData-"
1368
- ">Roles%"
1369
  msgstr ""
1370
 
1371
  #: defaults.php:126
1372
- msgid "The role of a user was changed by another WordPress user"
1373
  msgstr ""
1374
 
1375
  #: defaults.php:126
1376
- msgid "Changed the role of user %TargetUsername% from %OldRole% to %NewRole%"
1377
  msgstr ""
1378
 
1379
  #: defaults.php:127
1380
- msgid "User has changed his or her password"
1381
  msgstr ""
1382
 
1383
  #: defaults.php:127
1384
- msgid "Changed the password"
1385
  msgstr ""
1386
 
1387
  #: defaults.php:128
1388
- msgid "A user changed another user's password"
1389
  msgstr ""
1390
 
1391
  #: defaults.php:128
1392
- msgid ""
1393
- "Changed the password for user %TargetUserData->Username% with the role of "
1394
- "%TargetUserData->Roles%"
1395
  msgstr ""
1396
 
1397
  #: defaults.php:129
1398
- msgid "User changed his or her email address"
1399
  msgstr ""
1400
 
1401
  #: defaults.php:129
1402
- msgid "Changed the email address from %OldEmail% to %NewEmail%"
1403
  msgstr ""
1404
 
1405
  #: defaults.php:130
1406
- msgid "A user changed another user's email address"
1407
  msgstr ""
1408
 
1409
  #: defaults.php:130
1410
- msgid ""
1411
- "Changed the email address of user account %TargetUsername% from %OldEmail% "
1412
- "to %NewEmail%"
1413
  msgstr ""
1414
 
1415
- #: defaults.php:131
1416
- msgid "A user was deleted by another user"
1417
  msgstr ""
1418
 
1419
- #: defaults.php:131
1420
- msgid ""
1421
- "Deleted User %TargetUserData->Username% with the role of %TargetUserData-"
1422
- ">Roles%"
1423
  msgstr ""
1424
 
1425
  #: defaults.php:133
1426
- msgid "Plugins & Themes"
 
 
1427
  msgstr ""
1428
 
1429
  #: defaults.php:134
1430
- msgid "User installed a plugin"
1431
  msgstr ""
1432
 
1433
  #: defaults.php:134
1434
- msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%"
 
 
1435
  msgstr ""
1436
 
1437
  #: defaults.php:135
1438
- msgid "User activated a WordPress plugin"
1439
  msgstr ""
1440
 
1441
  #: defaults.php:135
1442
- msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%"
 
1443
  msgstr ""
1444
 
1445
  #: defaults.php:136
1446
- msgid "User deactivated a WordPress plugin"
1447
  msgstr ""
1448
 
1449
  #: defaults.php:136
1450
- msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%"
1451
  msgstr ""
1452
 
1453
  #: defaults.php:137
1454
- msgid "User uninstalled a plugin"
1455
  msgstr ""
1456
 
1457
  #: defaults.php:137
1458
  msgid ""
1459
- "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile%"
 
1460
  msgstr ""
1461
 
1462
  #: defaults.php:138
1463
- msgid "User upgraded a plugin"
1464
  msgstr ""
1465
 
1466
  #: defaults.php:138
1467
- msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%"
1468
  msgstr ""
1469
 
1470
  #: defaults.php:139
1471
- msgid "User installed a theme"
1472
  msgstr ""
1473
 
1474
  #: defaults.php:139
1475
- msgid "Installed theme \"%Theme->Name%\" in %Theme->get_template_directory%"
 
 
1476
  msgstr ""
1477
 
1478
  #: defaults.php:140
1479
- msgid "User activated a theme"
1480
  msgstr ""
1481
 
1482
  #: defaults.php:140
1483
  msgid ""
1484
- "Activated theme \"%Theme->Name%\", installed in %Theme-"
1485
- ">get_template_directory%"
1486
  msgstr ""
1487
 
1488
- #: defaults.php:141
1489
- msgid "User uninstalled a theme"
1490
  msgstr ""
1491
 
1492
- #: defaults.php:141
1493
- msgid ""
1494
- "Deleted theme \"%Theme->Name%\" installed in %Theme->get_template_directory%"
1495
  msgstr ""
1496
 
1497
  #: defaults.php:143
1498
- msgid "System Activity"
1499
  msgstr ""
1500
 
1501
  #: defaults.php:144
1502
- msgid "Unknown Error"
1503
  msgstr ""
1504
 
1505
  #: defaults.php:144
1506
- msgid "An unexpected error has occurred"
1507
  msgstr ""
1508
 
1509
  #: defaults.php:145
1510
- msgid "PHP error"
1511
  msgstr ""
1512
 
1513
- #: defaults.php:145 defaults.php:146 defaults.php:147 defaults.php:148
1514
- #: defaults.php:149
1515
- msgid "%Message%"
1516
  msgstr ""
1517
 
1518
  #: defaults.php:146
1519
- msgid "PHP warning"
 
 
 
 
 
 
1520
  msgstr ""
1521
 
1522
  #: defaults.php:147
1523
- msgid "PHP notice"
 
 
 
 
1524
  msgstr ""
1525
 
1526
  #: defaults.php:148
1527
- msgid "PHP exception"
 
 
 
 
 
1528
  msgstr ""
1529
 
1530
  #: defaults.php:149
1531
- msgid "PHP shutdown error"
 
 
 
 
 
 
1532
  msgstr ""
1533
 
1534
  #: defaults.php:150
1535
- msgid "Events automatically pruned by system"
1536
  msgstr ""
1537
 
1538
  #: defaults.php:150
1539
- msgid "%EventCount% event(s) automatically deleted by system"
 
 
1540
  msgstr ""
1541
 
1542
  #: defaults.php:151
1543
- msgid "Option Anyone Can Register in WordPress settings changed"
1544
  msgstr ""
1545
 
1546
  #: defaults.php:151
1547
- msgid "%NewValue% the option \"Anyone can register\""
1548
  msgstr ""
1549
 
1550
  #: defaults.php:152
1551
- msgid "New User Default Role changed"
1552
  msgstr ""
1553
 
1554
  #: defaults.php:152
1555
- msgid "Changed the New User Default Role from %OldRole% to %NewRole%"
1556
  msgstr ""
1557
 
1558
  #: defaults.php:153
1559
- msgid "WordPress Administrator Notification email changed"
1560
  msgstr ""
1561
 
1562
  #: defaults.php:153
1563
- msgid ""
1564
- "Changed the WordPress administrator notifications email address from "
1565
- "%OldEmail% to %NewEmail%"
1566
  msgstr ""
1567
 
1568
  #: defaults.php:154
1569
- msgid "WordPress was updated"
1570
  msgstr ""
1571
 
1572
  #: defaults.php:154
1573
- msgid "Updated WordPress from version %OldVersion% to %NewVersion%"
1574
  msgstr ""
1575
 
1576
  #: defaults.php:155
1577
- msgid "User changes the WordPress Permalinks"
1578
  msgstr ""
1579
 
1580
  #: defaults.php:155
1581
- msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%"
1582
  msgstr ""
1583
 
1584
- #: defaults.php:157
1585
- msgid "MultiSite"
1586
  msgstr ""
1587
 
1588
- #: defaults.php:158
1589
- msgid "User granted Super Admin privileges"
1590
  msgstr ""
1591
 
1592
- #: defaults.php:158
1593
- msgid "Granted Super Admin privileges to %TargetUsername%"
1594
  msgstr ""
1595
 
1596
- #: defaults.php:159
1597
- msgid "User revoked from Super Admin privileges"
 
 
1598
  msgstr ""
1599
 
1600
- #: defaults.php:159
1601
- msgid "Revoked Super Admin privileges from %TargetUsername%"
1602
  msgstr ""
1603
 
1604
- #: defaults.php:160
1605
- msgid "Existing user added to a site"
1606
  msgstr ""
1607
 
1608
- #: defaults.php:160
1609
- msgid ""
1610
- "Added existing user %TargetUsername% with %TargetUserRole% role to site "
1611
- "%SiteName%"
1612
  msgstr ""
1613
 
1614
- #: defaults.php:161
1615
- msgid "User removed from site"
1616
  msgstr ""
1617
 
1618
  #: defaults.php:161
1619
- msgid ""
1620
- "Removed user %TargetUsername% with role %TargetUserRole% from %SiteName% site"
1621
  msgstr ""
1622
 
1623
  #: defaults.php:162
1624
- msgid "New network user created"
1625
  msgstr ""
1626
 
1627
  #: defaults.php:162
1628
- msgid "Created a new network user %NewUserData->Username%"
1629
- msgstr ""
1630
-
1631
- #: defaults.php:163
1632
- msgid "New site added on network"
1633
  msgstr ""
1634
 
1635
  #: defaults.php:163
1636
- msgid "Added site %SiteName% to the network"
1637
  msgstr ""
1638
 
1639
- #: defaults.php:164
1640
- msgid "Existing site archived"
 
1641
  msgstr ""
1642
 
1643
  #: defaults.php:164
1644
- msgid "Archived site %SiteName%"
1645
- msgstr ""
1646
-
1647
- #: defaults.php:165
1648
- msgid "Archived site has been unarchived"
1649
  msgstr ""
1650
 
1651
  #: defaults.php:165
1652
- msgid "Unarchived site %SiteName%"
1653
- msgstr ""
1654
-
1655
- #: defaults.php:166
1656
- msgid "Deactivated site has been activated"
1657
  msgstr ""
1658
 
1659
  #: defaults.php:166
1660
- msgid "Activated site %SiteName%"
1661
- msgstr ""
1662
-
1663
- #: defaults.php:167
1664
- msgid "Site has been deactivated"
1665
  msgstr ""
1666
 
1667
  #: defaults.php:167
1668
- msgid "Deactivated site %SiteName%"
1669
  msgstr ""
1670
 
1671
  #: defaults.php:168
1672
- msgid "Existing site deleted from network"
1673
  msgstr ""
1674
 
1675
  #: defaults.php:168
1676
- msgid "Deleted site %SiteName%"
1677
  msgstr ""
1678
 
1679
  #: defaults.php:169
1680
- msgid "Activated theme on network"
1681
  msgstr ""
1682
 
1683
  #: defaults.php:169
1684
- msgid ""
1685
- "Network activated %Theme->Name% theme installed in %Theme-"
1686
- ">get_template_directory%"
1687
  msgstr ""
1688
 
1689
  #: defaults.php:170
1690
- msgid "Deactivated theme from network"
1691
  msgstr ""
1692
 
1693
  #: defaults.php:170
 
 
 
 
 
 
 
 
1694
  msgid ""
1695
- "Network deactivated %Theme->Name% theme installed in %Theme-"
1696
- ">get_template_directory%"
1697
  msgstr ""
1698
 
1699
  #: defaults.php:172
1700
- msgid "Database"
1701
  msgstr ""
1702
 
1703
- #: defaults.php:173
1704
- msgid "Plugin created tables"
1705
  msgstr ""
1706
 
1707
  #: defaults.php:173
1708
- msgid ""
1709
- "Plugin %Plugin->Name% created these tables in the database: %TableNames%"
 
 
 
1710
  msgstr ""
1711
 
1712
  #: defaults.php:174
1713
- msgid "Plugin modified tables structure"
1714
  msgstr ""
1715
 
1716
  #: defaults.php:174
1717
  msgid ""
1718
- "Plugin %Plugin->Name% modified the structure of these database tables: "
1719
- "%TableNames%"
 
1720
  msgstr ""
1721
 
1722
  #: defaults.php:175
1723
- msgid "Plugin deleted tables"
1724
  msgstr ""
1725
 
1726
  #: defaults.php:175
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1727
  msgid ""
1728
  "Plugin %Plugin->Name% deleted the following tables from the database: "
1729
- "%TableNames%"
1730
  msgstr ""
1731
 
1732
- #: defaults.php:176
1733
  msgid "Theme created tables"
1734
  msgstr ""
1735
 
1736
- #: defaults.php:176
1737
- msgid "Theme %Theme->Name% created these tables in the database: %TableNames%"
1738
  msgstr ""
1739
 
1740
- #: defaults.php:177
1741
  msgid "Theme modified tables structure"
1742
  msgstr ""
1743
 
1744
- #: defaults.php:177
1745
  msgid ""
1746
  "Theme %Theme->Name% modified the structure of these database tables: "
1747
- "%TableNames%"
1748
  msgstr ""
1749
 
1750
- #: defaults.php:178
1751
  msgid "Theme deleted tables"
1752
  msgstr ""
1753
 
1754
- #: defaults.php:178
1755
  msgid ""
1756
  "Theme %Theme->Name% deleted the following tables from the database: "
1757
- "%TableNames%"
1758
  msgstr ""
1759
 
1760
- #: defaults.php:179
1761
  msgid "Unknown component created tables"
1762
  msgstr ""
1763
 
1764
- #: defaults.php:179
1765
- msgid "An unknown component created these tables in the database: %TableNames%"
 
1766
  msgstr ""
1767
 
1768
- #: defaults.php:180
1769
  msgid "Unknown component modified tables structure"
1770
  msgstr ""
1771
 
1772
- #: defaults.php:180
1773
  msgid ""
1774
  "An unknown component modified the structure of these database tables: "
1775
- "%TableNames%"
1776
  msgstr ""
1777
 
1778
- #: defaults.php:181
1779
  msgid "Unknown component deleted tables"
1780
  msgstr ""
1781
 
1782
- #: defaults.php:181
1783
  msgid ""
1784
  "An unknown component deleted the following tables from the database: "
1785
- "%TableNames%"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1786
  msgstr ""
1787
 
1788
- #: wp-security-audit-log.php:249
1789
  msgid ""
1790
  "You are using a version of PHP that is older than %s, which is no longer "
1791
  "supported.<br/>Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
@@ -1797,9 +2492,9 @@ msgstr ""
1797
  msgid "WP Security Audit Log"
1798
  msgstr ""
1799
 
1800
- #. #-#-#-#-# plugin.pot (WP Security Audit Log 2.0.1) #-#-#-#-#
1801
  #. Plugin URI of the plugin/theme
1802
- #. #-#-#-#-# plugin.pot (WP Security Audit Log 2.0.1) #-#-#-#-#
1803
  #. Author URI of the plugin/theme
1804
  msgid "http://www.wpsecurityauditlog.com/"
1805
  msgstr ""
1
+ # Copyright (C) 2016 WP Security Audit Log
2
  # This file is distributed under the same license as the WP Security Audit Log package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: WP Security Audit Log 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-security-audit-"
7
  "log\n"
8
+ "POT-Creation-Date: 2016-08-15 08:56:23+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
 
16
+ #: classes/AuditLogListView.php:36
17
  msgid "No events so far."
18
  msgstr ""
19
 
20
+ #: classes/AuditLogListView.php:42
21
  msgid "Other"
22
  msgstr ""
23
 
24
+ #: classes/AuditLogListView.php:49
25
  msgid "Show "
26
  msgstr ""
27
 
28
+ #: classes/AuditLogListView.php:59
29
  msgid " Items"
30
  msgstr ""
31
 
32
+ #: classes/AuditLogListView.php:72 classes/Views/AuditLog.php:96
33
  msgid "All Sites"
34
  msgstr ""
35
 
36
+ #: classes/AuditLogListView.php:123 classes/AuditLogListView.php:143
37
+ #: classes/Views/ToggleAlerts.php:75
38
  msgid "Code"
39
  msgstr ""
40
 
41
+ #: classes/AuditLogListView.php:124 classes/AuditLogListView.php:146
42
+ #: classes/Views/ToggleAlerts.php:76
43
  msgid "Type"
44
  msgstr ""
45
 
46
+ #: classes/AuditLogListView.php:125 classes/AuditLogListView.php:149
47
  msgid "Date"
48
  msgstr ""
49
 
50
+ #: classes/AuditLogListView.php:126 classes/AuditLogListView.php:152
51
  msgid "Username"
52
  msgstr ""
53
 
54
+ #: classes/AuditLogListView.php:127 classes/AuditLogListView.php:155
55
  msgid "Source IP"
56
  msgstr ""
57
 
58
+ #: classes/AuditLogListView.php:130 classes/AuditLogListView.php:158
59
  msgid "Site"
60
  msgstr ""
61
 
62
+ #: classes/AuditLogListView.php:132 classes/AuditLogListView.php:161
63
  msgid "Message"
64
  msgstr ""
65
 
66
+ #: classes/AuditLogListView.php:197
67
  msgid "Click to toggle."
68
  msgstr ""
69
 
70
+ #: classes/AuditLogListView.php:203
71
  msgid "Unknown error code."
72
  msgstr ""
73
 
74
+ #: classes/AuditLogListView.php:227
75
  msgid "Unknown"
76
  msgstr ""
77
 
78
+ #: classes/AuditLogListView.php:231
79
+ msgid "Plugin"
80
+ msgstr ""
81
+
82
+ #: classes/AuditLogListView.php:235
83
+ msgid "Plugins"
84
+ msgstr ""
85
+
86
+ #: classes/AuditLogListView.php:239
87
+ msgid "Website Visitor"
88
+ msgstr ""
89
+
90
+ #: classes/AuditLogListView.php:243
91
  msgid "System"
92
  msgstr ""
93
 
94
+ #: classes/AuditLogListView.php:271
95
  msgid "Alert Data Inspector"
96
  msgstr ""
97
 
98
+ #: classes/Sensors/Content.php:421 classes/Sensors/Content.php:429
99
  msgid "Password Protected"
100
  msgstr ""
101
 
102
+ #: classes/Sensors/Content.php:423 classes/Sensors/Content.php:431
103
  msgid "Public"
104
  msgstr ""
105
 
106
+ #: classes/Sensors/Content.php:425 classes/Sensors/Content.php:433
107
  msgid "Private"
108
  msgstr ""
109
 
202
  msgid "See Add-Ons"
203
  msgstr ""
204
 
205
+ #: classes/Views/About.php:65 classes/Views/Help.php:68
206
  msgid "WP Security Audit Log in your Language!"
207
  msgstr ""
208
 
209
+ #: classes/Views/About.php:67 classes/Views/Help.php:70
210
  msgid ""
211
  "If you are interested in translating our plugin please drop us an email on"
212
  msgstr ""
219
  msgid "Professional WordPress security services provided by WP White Security"
220
  msgstr ""
221
 
222
+ #: classes/Views/AuditLog.php:34
223
+ msgid "Upgrade to Premium"
224
  msgstr ""
225
 
226
+ #: classes/Views/AuditLog.php:35
227
+ msgid ""
228
+ "and add Email Alerts, Reports, Search and Users Login and Session Management."
229
  msgstr ""
230
 
231
+ #: classes/Views/AuditLog.php:36
232
+ msgid "Upgrade Now!"
233
  msgstr ""
234
 
235
+ #: classes/Views/AuditLog.php:50 classes/Views/AuditLog.php:60
236
  msgid "Audit Log Viewer"
237
  msgstr ""
238
 
239
+ #: classes/Views/AuditLog.php:74 classes/Views/Licensing.php:34
240
+ #: classes/Views/Settings.php:132 classes/Views/ToggleAlerts.php:30
241
  msgid "You do not have sufficient permissions to access this page."
242
  msgstr ""
243
 
244
+ #: classes/Views/AuditLog.php:95
245
  msgid "Please enter the number of alerts you would like to see on one page:"
246
  msgstr ""
247
 
248
+ #: classes/Views/AuditLog.php:97
249
  msgid "No Results"
250
  msgstr ""
251
 
252
+ #: classes/Views/EmailNotifications.php:7
253
+ msgid "Email Notifications Add-On"
254
+ msgstr ""
255
+
256
+ #: classes/Views/EmailNotifications.php:17
257
+ msgid "Notifications Email"
258
+ msgstr ""
259
+
260
+ #: classes/Views/EmailNotifications.php:39 classes/Views/Extensions.php:69
261
+ msgid "Email Notifications"
262
+ msgstr ""
263
+
264
+ #: classes/Views/EmailNotifications.php:41
265
+ msgid ""
266
+ "This premium add-on allows you to configure email alerts so you are "
267
+ "<br>notified instantly when important changes happen on your WordPress."
268
+ msgstr ""
269
+
270
+ #: classes/Views/EmailNotifications.php:45 classes/Views/LogInUsers.php:45
271
+ #: classes/Views/Reports.php:45 classes/Views/Search.php:45
272
+ msgid "Learn More"
273
+ msgstr ""
274
+
275
+ #: classes/Views/EmailNotifications.php:54 classes/Views/LogInUsers.php:54
276
+ #: classes/Views/Reports.php:54 classes/Views/Search.php:54
277
+ msgid "Buy all Add-Ons Bundle"
278
+ msgstr ""
279
+
280
+ #: classes/Views/Extensions.php:8
281
  msgid "WP Security Audit Log Add-Ons"
282
  msgstr ""
283
 
284
+ #: classes/Views/Extensions.php:16
285
+ msgid " Add Functionality"
286
  msgstr ""
287
 
288
+ #: classes/Views/Extensions.php:35
289
  msgid ""
290
  "The below add-ons allow you to extend the functionality of WP Security Audit "
291
  "Log plugin and enable you to get more benefits out of the WordPress security "
294
  "regulatory compliance requirements."
295
  msgstr ""
296
 
297
+ #: classes/Views/Extensions.php:41
298
+ msgid "All Add-Ons Bundle"
299
  msgstr ""
300
 
301
+ #: classes/Views/Extensions.php:43
302
  msgid ""
303
+ "Benefit from a 60% discount when you purchase all the add-ons as a single "
304
+ "bundle."
305
  msgstr ""
306
 
307
+ #: classes/Views/Extensions.php:46
308
+ msgid "Get this Bundle"
 
 
 
 
 
309
  msgstr ""
310
 
311
+ #: classes/Views/Extensions.php:54
312
+ msgid "Users Logins and Management"
 
313
  msgstr ""
314
 
315
+ #: classes/Views/Extensions.php:56
316
+ msgid ""
317
+ "See who is logged in to your WordPress and manage user sessions and logins."
318
+ msgstr ""
319
+
320
+ #: classes/Views/Extensions.php:60 classes/Views/Extensions.php:75
321
+ #: classes/Views/Extensions.php:90 classes/Views/Extensions.php:105
322
+ #: classes/Views/Extensions.php:120
323
+ msgid "Get this extension"
324
  msgstr ""
325
 
326
+ #: classes/Views/Extensions.php:71
327
  msgid ""
328
+ "Get notified instantly via email when important changes are made on your "
329
+ "WordPress!"
330
+ msgstr ""
331
+
332
+ #: classes/Views/Extensions.php:84 classes/Views/Reports.php:17
333
+ #: classes/Views/Reports.php:39
334
+ msgid "Reports"
335
  msgstr ""
336
 
337
+ #: classes/Views/Extensions.php:86
338
  msgid ""
339
+ "Generate any type of user,site and activity report to keep track of user "
340
+ "productivity and to meet regulatory compliance requirements."
 
 
341
  msgstr ""
342
 
343
+ #: classes/Views/Extensions.php:99 classes/Views/Search.php:17
344
+ #: classes/Views/Search.php:39
345
+ msgid "Search"
346
  msgstr ""
347
 
348
+ #: classes/Views/Extensions.php:101
349
+ msgid ""
350
+ "Do free-text based searches for specific activity in the WordPress audit "
351
+ "trail. You can also use filters to fine-tune your searches."
352
+ msgstr ""
353
+
354
+ #: classes/Views/Extensions.php:114
355
+ msgid "External DB"
356
  msgstr ""
357
 
358
+ #: classes/Views/Extensions.php:116
359
  msgid ""
360
+ "Store the WordPress audit trial in an external database for a more secure "
361
+ "and faster WordPress website."
 
 
 
 
362
  msgstr ""
363
 
364
  #: classes/Views/Help.php:6 classes/Views/Help.php:14
411
  msgstr ""
412
 
413
  #: classes/Views/Help.php:46
414
+ msgid "Plugin Documenation"
 
 
 
 
415
  msgstr ""
416
 
417
+ #: classes/Views/Help.php:48
418
+ msgid "FAQs"
419
  msgstr ""
420
 
421
+ #: classes/Views/Help.php:50
422
+ msgid "List of WordPress Security Alerts"
423
  msgstr ""
424
 
425
  #: classes/Views/Help.php:55
426
+ msgid "Keep Yourself Up-to-Date with WordPress Security"
 
 
 
427
  msgstr ""
428
 
429
  #: classes/Views/Help.php:57
430
+ msgid ""
431
+ "Keep yourself informed with what is happening in the WordPress security "
432
+ "ecosystem, which are the new vulnerabilities, which plugins you need to "
433
+ "update and what are the latest WordPress security hacks so you can stay one "
434
+ "step ahead of the hackers."
435
  msgstr ""
436
 
437
  #: classes/Views/Help.php:59
438
+ msgid "Read the WP White Security Blog"
439
+ msgstr ""
440
+
441
+ #: classes/Views/Help.php:61
442
+ msgid ""
443
+ "Subscribe to WP Security Bloggers (An Aggregate of WordPress Security Blogs)"
444
  msgstr ""
445
 
446
  #: classes/Views/Licensing.php:6 classes/Views/Licensing.php:14
447
  msgid "Licensing"
448
  msgstr ""
449
 
450
+ #: classes/Views/Licensing.php:39 classes/Views/Settings.php:138
451
+ #: classes/Views/ToggleAlerts.php:45
452
  msgid "Settings have been saved."
453
  msgstr ""
454
 
455
+ #: classes/Views/Licensing.php:41 classes/Views/Settings.php:141
456
+ #: classes/Views/ToggleAlerts.php:47
457
  msgid "Error: "
458
  msgstr ""
459
 
469
  msgid "Inactive"
470
  msgstr ""
471
 
472
+ #: classes/Views/LogInUsers.php:7
473
+ msgid "User Sessions Management Add-On"
474
+ msgstr ""
475
+
476
+ #: classes/Views/LogInUsers.php:17
477
+ msgid "Logged In Users"
478
+ msgstr ""
479
+
480
+ #: classes/Views/LogInUsers.php:39
481
+ msgid "Users login and Management"
482
+ msgstr ""
483
+
484
+ #: classes/Views/LogInUsers.php:41
485
+ msgid ""
486
+ "This premium add-on allows you to see who is logged in to your WordPress,"
487
+ "<br> block multiple same-user WordPress sessions and more."
488
+ msgstr ""
489
+
490
+ #: classes/Views/Reports.php:7
491
+ msgid "Reports Add-On"
492
+ msgstr ""
493
+
494
+ #: classes/Views/Reports.php:41
495
+ msgid ""
496
+ "Generate any type of user and site activity report to keep track of user "
497
+ "productivity<br> and meet regulatory compliance requirements. You can also "
498
+ "configure automated weekly or monthly email summary reports."
499
+ msgstr ""
500
+
501
+ #: classes/Views/Search.php:7
502
+ msgid "Search Add-On"
503
+ msgstr ""
504
+
505
+ #: classes/Views/Search.php:41
506
+ msgid ""
507
+ "Do free-text based searches for specific activity in the WordPress audit "
508
+ "trail.<br> You can also use the built-in filters to fine-tune your searches."
509
+ msgstr ""
510
+
511
+ #: classes/Views/Settings.php:22 classes/Views/Settings.php:30
512
  msgid "Settings"
513
  msgstr ""
514
 
515
+ #: classes/Views/Settings.php:162
516
  msgid "Security Alerts Pruning"
517
  msgstr ""
518
 
519
+ #: classes/Views/Settings.php:165 classes/Views/Settings.php:173
520
  msgid "(eg: 1 month)"
521
  msgstr ""
522
 
523
+ #: classes/Views/Settings.php:169
524
  msgid "None"
525
  msgstr ""
526
 
527
+ #: classes/Views/Settings.php:177
528
  msgid "Delete alerts older than"
529
  msgstr ""
530
 
531
+ #: classes/Views/Settings.php:185
532
  msgid "(eg: 80)"
533
  msgstr ""
534
 
535
+ #: classes/Views/Settings.php:189
536
  msgid "Keep up to"
537
  msgstr ""
538
 
539
+ #: classes/Views/Settings.php:194
540
  msgid "alerts"
541
  msgstr ""
542
 
543
+ #: classes/Views/Settings.php:198
544
  msgid "Next Scheduled Cleanup is in "
545
  msgstr ""
546
 
547
+ #: classes/Views/Settings.php:202
548
  msgid "(or %s)"
549
  msgstr ""
550
 
551
+ #: classes/Views/Settings.php:203
552
  msgid "Run Manually"
553
  msgstr ""
554
 
555
+ #: classes/Views/Settings.php:209
556
+ msgid "From Email & Name"
557
+ msgstr ""
558
+
559
+ #: classes/Views/Settings.php:212
560
+ msgid "Email Address"
561
+ msgstr ""
562
+
563
+ #: classes/Views/Settings.php:215
564
+ msgid "Display Name"
565
+ msgstr ""
566
+
567
+ #: classes/Views/Settings.php:221
568
+ msgid ""
569
+ "These email address and display name will be used as From details in the "
570
+ "emails sent by the %s . Please ensure the mail server can relay emails with "
571
+ "the domain of the specified email address."
572
+ msgstr ""
573
+
574
+ #: classes/Views/Settings.php:222
575
+ msgid "(premium add-ons)"
576
+ msgstr ""
577
+
578
+ #: classes/Views/Settings.php:229
579
  msgid "Alerts Dashboard Widget"
580
  msgstr ""
581
 
582
+ #: classes/Views/Settings.php:235
583
  msgid "On"
584
  msgstr ""
585
 
586
+ #: classes/Views/Settings.php:240
587
  msgid "Off"
588
  msgstr ""
589
 
590
+ #: classes/Views/Settings.php:245
591
  msgid "Display a dashboard widget with the latest %d security alerts."
592
  msgstr ""
593
 
594
+ #: classes/Views/Settings.php:253
595
  msgid "Reverse Proxy / Firewall Options"
596
  msgstr ""
597
 
598
+ #: classes/Views/Settings.php:259
599
  msgid "WordPress running behind firewall or proxy"
600
  msgstr ""
601
 
602
+ #: classes/Views/Settings.php:260
603
  msgid ""
604
  "Enable this option if your WordPress is running behind a firewall or reverse "
605
  "proxy. When this option is enabled the plugin will retrieve the user's IP "
606
  "address from the proxy header."
607
  msgstr ""
608
 
609
+ #: classes/Views/Settings.php:266
610
  msgid "Filter Internal IP Addresses"
611
  msgstr ""
612
 
613
+ #: classes/Views/Settings.php:267
614
  msgid ""
615
  "Enable this option to filter internal IP addresses from the proxy headers."
616
  msgstr ""
617
 
618
+ #: classes/Views/Settings.php:273
619
  msgid "Can View Alerts"
620
  msgstr ""
621
 
622
+ #: classes/Views/Settings.php:280
623
  msgid "Users and Roles in this list can view the security alerts"
624
  msgstr ""
625
 
626
+ #: classes/Views/Settings.php:295
627
  msgid "Can Manage Plugin"
628
  msgstr ""
629
 
630
+ #: classes/Views/Settings.php:302
631
  msgid "Users and Roles in this list can manage the plugin settings"
632
  msgstr ""
633
 
634
+ #: classes/Views/Settings.php:317
635
  msgid "Restrict Plugin Access"
636
  msgstr ""
637
 
638
+ #: classes/Views/Settings.php:325
639
  msgid ""
640
  "By default all the administrators on this WordPress have access to manage "
641
  "this plugin.<br/>By enabling this option only the users specified in the two "
643
  "this plugin."
644
  msgstr ""
645
 
646
+ #: classes/Views/Settings.php:332
647
  msgid "Refresh Audit Log Viewer"
648
  msgstr ""
649
 
650
+ #: classes/Views/Settings.php:338
651
  msgid "Automatic"
652
  msgstr ""
653
 
654
+ #: classes/Views/Settings.php:340
655
  msgid "Refresh Audit Log Viewer as soon as there are new alerts."
656
  msgstr ""
657
 
658
+ #: classes/Views/Settings.php:344
659
  msgid "Manual"
660
  msgstr ""
661
 
662
+ #: classes/Views/Settings.php:346
663
  msgid "Refresh Audit Log Viewer only when the page is reloaded."
664
  msgstr ""
665
 
666
+ #: classes/Views/Settings.php:352
667
  msgid "Alerts Time Format"
668
  msgstr ""
669
 
670
+ #: classes/Views/Settings.php:358
671
  msgid "24 hours"
672
  msgstr ""
673
 
674
+ #: classes/Views/Settings.php:363
675
  msgid "AM/PM"
676
  msgstr ""
677
 
678
+ #: classes/Views/Settings.php:370
679
+ msgid "Alerts Timestamp"
680
+ msgstr ""
681
+
682
+ #: classes/Views/Settings.php:376
683
+ msgid "UTC"
684
+ msgstr ""
685
+
686
+ #: classes/Views/Settings.php:381
687
+ msgid "WordPress' timezone"
688
+ msgstr ""
689
+
690
+ #: classes/Views/Settings.php:384
691
+ msgid ""
692
+ "Select which timestamp should the alerts have in the Audit Log viewer. Note "
693
+ "that the WordPress' timezone might be different from that of the server."
694
+ msgstr ""
695
+
696
+ #: classes/Views/Settings.php:389
697
+ msgid "Audit Log Columns Selection"
698
+ msgstr ""
699
+
700
+ #: classes/Views/Settings.php:400
701
+ msgid ""
702
+ "When you disable any of the above such details won’t be shown in the Audit "
703
+ "Log\n"
704
+ "viewer though the plugin will still record such information in the database."
705
+ msgstr ""
706
+
707
+ #: classes/Views/Settings.php:406
708
  msgid "Developer Options"
709
  msgstr ""
710
 
711
+ #: classes/Views/Settings.php:414
712
  msgid ""
713
  "Only enable these options on testing, staging and development websites. "
714
  "Enabling any of the settings below on LIVE websites may cause unintended "
715
  "side-effects including degraded performance."
716
  msgstr ""
717
 
718
+ #: classes/Views/Settings.php:418
719
  msgid "Data Inspector"
720
  msgstr ""
721
 
722
+ #: classes/Views/Settings.php:419
723
  msgid "View data logged for each triggered alert."
724
  msgstr ""
725
 
726
+ #: classes/Views/Settings.php:422
727
  msgid "PHP Errors"
728
  msgstr ""
729
 
730
+ #: classes/Views/Settings.php:423
731
  msgid "Enables sensor for alerts generated from PHP."
732
  msgstr ""
733
 
734
+ #: classes/Views/Settings.php:426
735
  msgid "Request Log"
736
  msgstr ""
737
 
738
+ #: classes/Views/Settings.php:427
739
  msgid "Enables logging request to file."
740
  msgstr ""
741
 
742
+ #: classes/Views/Settings.php:430
743
  msgid "Backtrace"
744
  msgstr ""
745
 
746
+ #: classes/Views/Settings.php:431
747
  msgid "Log full backtrace for PHP-generated alerts."
748
  msgstr ""
749
 
750
+ #: classes/Views/Settings.php:449
751
  msgid "Hide Plugin in Plugins Page"
752
  msgstr ""
753
 
754
+ #: classes/Views/Settings.php:455
755
  msgid "Hide"
756
  msgstr ""
757
 
758
+ #: classes/Views/Settings.php:459
759
  msgid ""
760
  "To manually revert this setting set the value of option wsal-hide-plugin to "
761
  "0 in the wp_options table."
762
  msgstr ""
763
 
764
+ #: classes/Views/Settings.php:465
765
+ msgid "Disable Alerts for WordPress Background Activity"
766
+ msgstr ""
767
+
768
+ #: classes/Views/Settings.php:471
769
+ msgid "Hide activity"
770
  msgstr ""
771
 
772
+ #: classes/Views/Settings.php:475
773
+ msgid ""
774
+ "For example do not raise an alert when WordPress deletes the auto drafts."
775
+ msgstr ""
776
+
777
+ #: classes/Views/Settings.php:481
778
+ msgid "Remove Data on Uninstall"
779
+ msgstr ""
780
+
781
+ #: classes/Views/Settings.php:504
782
  msgid "Excluded Users"
783
  msgstr ""
784
 
785
+ #: classes/Views/Settings.php:523
786
  msgid "Excluded Roles"
787
  msgstr ""
788
 
789
+ #: classes/Views/Settings.php:549
790
  msgid "Excluded Custom Fields"
791
  msgstr ""
792
 
793
+ #: classes/Views/Settings.php:574
794
+ msgid "Excluded IP Addresses"
795
+ msgstr ""
796
+
797
+ #: classes/Views/ToggleAlerts.php:6 classes/Views/ToggleAlerts.php:14
798
  msgid "Enable/Disable Alerts"
799
  msgstr ""
800
 
801
+ #: classes/Views/ToggleAlerts.php:77 classes/WidgetManager.php:48
802
  msgid "Description"
803
  msgstr ""
804
 
805
+ #: classes/Views/ToggleAlerts.php:87
806
  msgid "Not Implemented"
807
  msgstr ""
808
 
809
+ #: classes/Views/ToggleAlerts.php:90
810
  msgid "Not Available"
811
  msgstr ""
812
 
813
+ #: classes/Views/ToggleAlerts.php:105
814
+ msgid ""
815
+ "Capture 404 requests to file (the log file are created in the /wp-content/"
816
+ "uploads/wp-security-audit-log/404s/ directory)"
817
+ msgstr ""
818
+
819
+ #: classes/Views/ToggleAlerts.php:110
820
+ msgid "Purge log files older than one month"
821
+ msgstr ""
822
+
823
+ #: classes/Views/ToggleAlerts.php:118
824
  msgid "Save Changes"
825
  msgstr ""
826
 
827
+ #: classes/WidgetManager.php:22
828
  msgid "Latest Alerts"
829
  msgstr ""
830
 
831
+ #: classes/WidgetManager.php:42
832
  msgid "No alerts found."
833
  msgstr ""
834
 
835
+ #: classes/WidgetManager.php:47
836
  msgid "User"
837
  msgstr ""
838
 
839
+ #: defaults.php:17
840
  msgid "Fatal run-time error."
841
  msgstr ""
842
 
843
+ #: defaults.php:18
844
  msgid "Run-time warning (non-fatal error)."
845
  msgstr ""
846
 
847
+ #: defaults.php:19
848
  msgid "Compile-time parse error."
849
  msgstr ""
850
 
851
+ #: defaults.php:20
852
  msgid "Run-time notice."
853
  msgstr ""
854
 
855
+ #: defaults.php:21
856
  msgid "Fatal error that occurred during startup."
857
  msgstr ""
858
 
859
+ #: defaults.php:22
860
  msgid "Warnings that occurred during startup."
861
  msgstr ""
862
 
863
+ #: defaults.php:23
864
  msgid "Fatal compile-time error."
865
  msgstr ""
866
 
867
+ #: defaults.php:24
868
  msgid "Compile-time warning."
869
  msgstr ""
870
 
871
+ #: defaults.php:25
872
  msgid "User-generated error message."
873
  msgstr ""
874
 
875
+ #: defaults.php:26
876
  msgid "User-generated warning message."
877
  msgstr ""
878
 
879
+ #: defaults.php:27
880
  msgid "User-generated notice message."
881
  msgstr ""
882
 
883
+ #: defaults.php:28
884
  msgid "Non-standard/optimal code warning."
885
  msgstr ""
886
 
887
+ #: defaults.php:29
888
  msgid "Catchable fatal error."
889
  msgstr ""
890
 
891
+ #: defaults.php:30
892
  msgid "Run-time deprecation notices."
893
  msgstr ""
894
 
895
+ #: defaults.php:31
896
  msgid "Run-time user deprecation notices."
897
  msgstr ""
898
 
899
+ #: defaults.php:33
900
  msgid "Critical, high-impact messages."
901
  msgstr ""
902
 
903
+ #: defaults.php:34
904
  msgid "Debug informational messages."
905
  msgstr ""
906
 
 
 
 
 
 
 
 
 
907
  #: defaults.php:38
908
+ msgid "Other User Activity"
909
  msgstr ""
910
 
911
  #: defaults.php:39
912
+ msgid "User logged in"
913
  msgstr ""
914
 
915
  #: defaults.php:39
916
+ msgid "Successfully logged in."
917
  msgstr ""
918
 
919
  #: defaults.php:40
920
+ msgid "User logged out"
921
  msgstr ""
922
 
923
  #: defaults.php:40
924
+ msgid "Successfully logged out."
925
  msgstr ""
926
 
927
  #: defaults.php:41
928
+ msgid "Login failed"
929
  msgstr ""
930
 
931
  #: defaults.php:41
932
+ msgid "%Attempts% failed login(s) detected."
933
  msgstr ""
934
 
935
  #: defaults.php:42
936
+ msgid "Login failed / non existing user"
937
  msgstr ""
938
 
939
  #: defaults.php:42
940
+ msgid "%Attempts% failed login(s) detected using non existing user."
941
  msgstr ""
942
 
943
  #: defaults.php:43
944
+ msgid "Login blocked"
945
  msgstr ""
946
 
947
  #: defaults.php:43
948
+ msgid ""
949
+ "Blocked from logging in because the same WordPress user is logged in from "
950
+ "%ClientIP%."
951
  msgstr ""
952
 
953
  #: defaults.php:44
954
+ msgid "User logged in with existing session(s)"
955
  msgstr ""
956
 
957
  #: defaults.php:44
958
+ msgid ""
959
+ "Successfully logged in. Another session from %IPAddress% for this user "
960
+ "already exist."
961
  msgstr ""
962
 
963
  #: defaults.php:45
964
+ msgid "User uploaded file from Uploads directory"
965
  msgstr ""
966
 
967
  #: defaults.php:45
968
+ msgid "Uploaded the file %FileName% in %FilePath%."
969
  msgstr ""
970
 
971
  #: defaults.php:46
972
+ msgid "User deleted file from Uploads directory"
973
  msgstr ""
974
 
975
  #: defaults.php:46
976
+ msgid "Deleted the file %FileName% from %FilePath%."
 
977
  msgstr ""
978
 
979
  #: defaults.php:48
985
  msgstr ""
986
 
987
  #: defaults.php:49
988
+ msgid ""
989
+ "Created a new post called %PostTitle% and saved it as draft. %EditorLinkPost"
990
+ "%."
991
  msgstr ""
992
 
993
  #: defaults.php:50
995
  msgstr ""
996
 
997
  #: defaults.php:50
998
+ msgid ""
999
+ "Published a post called %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
1000
  msgstr ""
1001
 
1002
  #: defaults.php:51
1005
 
1006
  #: defaults.php:51
1007
  msgid ""
1008
+ "Modified the published post %PostTitle%. Post URL is %PostUrl%. "
1009
+ "%EditorLinkPost%."
1010
  msgstr ""
1011
 
1012
  #: defaults.php:52
1014
  msgstr ""
1015
 
1016
  #: defaults.php:52
1017
+ msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
1018
  msgstr ""
1019
 
1020
  #: defaults.php:53
1022
  msgstr ""
1023
 
1024
  #: defaults.php:53
1025
+ msgid ""
1026
+ "Permanently deleted the post %PostTitle%. Post URL was %PostUrl%. "
1027
+ "%EditorLinkPost%."
1028
  msgstr ""
1029
 
1030
  #: defaults.php:54
1032
  msgstr ""
1033
 
1034
  #: defaults.php:54
1035
+ msgid "Moved the post %PostTitle% to trash. Post URL is %PostUrl%."
1036
  msgstr ""
1037
 
1038
  #: defaults.php:55
1040
  msgstr ""
1041
 
1042
  #: defaults.php:55
1043
+ msgid "Post %PostTitle% has been restored from trash. %EditorLinkPost%."
1044
  msgstr ""
1045
 
1046
  #: defaults.php:56
1050
  #: defaults.php:56
1051
  msgid ""
1052
  "Changed the category of the post %PostTitle% from %OldCategories% to "
1053
+ "%NewCategories%. %EditorLinkPost%."
1054
  msgstr ""
1055
 
1056
  #: defaults.php:57
1058
  msgstr ""
1059
 
1060
  #: defaults.php:57
1061
+ msgid ""
1062
+ "Changed the URL of the post %PostTitle% from %OldUrl% to %NewUrl%. "
1063
+ "%EditorLinkPost%."
1064
  msgstr ""
1065
 
1066
  #: defaults.php:58
1068
  msgstr ""
1069
 
1070
  #: defaults.php:58
1071
+ msgid ""
1072
+ "Changed the author of %PostTitle% post from %OldAuthor% to %NewAuthor%. "
1073
+ "%EditorLinkPost%."
1074
  msgstr ""
1075
 
1076
  #: defaults.php:59
1078
  msgstr ""
1079
 
1080
  #: defaults.php:59
1081
+ msgid ""
1082
+ "Changed the status of %PostTitle% post from %OldStatus% to %NewStatus%. "
1083
+ "%EditorLinkPost%."
1084
  msgstr ""
1085
 
1086
  #: defaults.php:60
1088
  msgstr ""
1089
 
1090
  #: defaults.php:60
1091
+ msgid ""
1092
+ "Created a new category called %CategoryName% .Category slug is %Slug%. "
1093
+ "%CategoryLink%."
1094
  msgstr ""
1095
 
1096
  #: defaults.php:61
1098
  msgstr ""
1099
 
1100
  #: defaults.php:61
1101
+ msgid "Deleted the category %CategoryName%. Category slug was %Slug%."
1102
  msgstr ""
1103
 
1104
  #: defaults.php:62
1107
 
1108
  #: defaults.php:62
1109
  msgid ""
1110
+ "Changed the visibility of the post %PostTitle% from %OldVisibility% to "
1111
+ "%NewVisibility%. %EditorLinkPost%."
1112
  msgstr ""
1113
 
1114
  #: defaults.php:63
1116
  msgstr ""
1117
 
1118
  #: defaults.php:63
1119
+ msgid ""
1120
+ "Changed the date of the post %PostTitle% from %OldDate% to %NewDate%. "
1121
+ "%EditorLinkPost%."
1122
  msgstr ""
1123
 
1124
  #: defaults.php:64
1125
+ msgid "User set a post as sticky"
1126
  msgstr ""
1127
 
1128
  #: defaults.php:64
1129
+ msgid ""
1130
+ "Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
1131
  msgstr ""
1132
 
1133
  #: defaults.php:65
1134
+ msgid "User removed post from sticky"
1135
  msgstr ""
1136
 
1137
  #: defaults.php:65
1138
+ msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
1139
+ msgstr ""
1140
+
1141
+ #: defaults.php:66
1142
+ msgid "User changed generic tables"
1143
  msgstr ""
1144
 
1145
  #: defaults.php:66
1146
+ msgid ""
1147
+ "Changed the parent of the category %CategoryName% from %OldParent% to "
1148
+ "%NewParent%. %CategoryLink%."
1149
  msgstr ""
1150
 
1151
  #: defaults.php:67
1152
+ msgid "User created a custom field for a post"
1153
  msgstr ""
1154
 
1155
  #: defaults.php:68
1156
+ msgid "User updated a custom field value for a post"
1157
  msgstr ""
1158
 
1159
  #: defaults.php:69
1160
+ msgid "User deleted a custom field from a post"
 
 
 
 
1161
  msgstr ""
1162
 
1163
  #: defaults.php:70
1164
+ msgid "User updated a custom field name for a post"
1165
  msgstr ""
1166
 
1167
  #: defaults.php:71
1168
+ msgid "User modified content for a published post"
1169
  msgstr ""
1170
 
1171
+ #: defaults.php:72
1172
+ msgid "User modified content for a draft post"
1173
  msgstr ""
1174
 
1175
  #: defaults.php:73
1176
+ msgid "User modified content of a post"
1177
  msgstr ""
1178
 
1179
  #: defaults.php:74
1180
+ msgid "User submitted a post for review"
1181
  msgstr ""
1182
 
1183
  #: defaults.php:74
1184
+ msgid "Submitted the post %PostTitle% for review. %EditorLinkPost%."
1185
  msgstr ""
1186
 
1187
  #: defaults.php:75
1188
+ msgid "User scheduled a post"
1189
  msgstr ""
1190
 
1191
  #: defaults.php:75
1192
+ msgid ""
1193
+ "Scheduled the post %PostTitle% to be published %PublishingDate%. "
1194
+ "%EditorLinkPost%."
1195
  msgstr ""
1196
 
1197
  #: defaults.php:76
1198
+ msgid "User changed title of a post"
1199
  msgstr ""
1200
 
1201
  #: defaults.php:76
1202
+ msgid ""
1203
+ "Changed the title of the post %OldTitle% to %NewTitle%. %EditorLinkPost%."
 
 
 
 
 
 
 
 
 
 
 
1204
  msgstr ""
1205
 
1206
  #: defaults.php:78
1207
+ msgid "Pages"
1208
  msgstr ""
1209
 
1210
  #: defaults.php:79
1211
+ msgid "User created a new WordPress page and saved it as draft"
1212
  msgstr ""
1213
 
1214
  #: defaults.php:79
1215
+ msgid ""
1216
+ "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
1217
+ "%."
1218
  msgstr ""
1219
 
1220
  #: defaults.php:80
1221
+ msgid "User published a WorPress page"
1222
  msgstr ""
1223
 
1224
  #: defaults.php:80
1225
+ msgid ""
1226
+ "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1227
  msgstr ""
1228
 
1229
  #: defaults.php:81
1230
+ msgid "User modified a published WordPress page"
1231
  msgstr ""
1232
 
1233
  #: defaults.php:81
1234
+ msgid ""
1235
+ "Modified the published page %PostTitle%. Page URL is %PostUrl%. "
1236
+ "%EditorLinkPage%."
1237
  msgstr ""
1238
 
1239
  #: defaults.php:82
1240
+ msgid "User modified a draft WordPress page"
1241
  msgstr ""
1242
 
1243
  #: defaults.php:82
1244
+ msgid ""
1245
+ "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
1246
  msgstr ""
1247
 
1248
  #: defaults.php:83
1249
+ msgid "User permanently deleted a page from the trash"
1250
  msgstr ""
1251
 
1252
  #: defaults.php:83
1253
+ msgid ""
1254
+ "Permanently deleted the page %PostTitle%. Page URL was %PostUrl%. "
1255
+ "%EditorLinkPage%."
1256
  msgstr ""
1257
 
1258
  #: defaults.php:84
1259
+ msgid "User moved WordPress page to the trash"
1260
  msgstr ""
1261
 
1262
  #: defaults.php:84
1263
+ msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
 
 
1264
  msgstr ""
1265
 
1266
  #: defaults.php:85
1267
+ msgid "User restored a WordPress page from trash"
1268
  msgstr ""
1269
 
1270
  #: defaults.php:85
1271
+ msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
1272
  msgstr ""
1273
 
1274
  #: defaults.php:86
1275
+ msgid "User changed page URL"
1276
  msgstr ""
1277
 
1278
  #: defaults.php:86
1279
  msgid ""
1280
+ "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
1281
+ "%EditorLinkPage%."
1282
  msgstr ""
1283
 
1284
  #: defaults.php:87
1285
+ msgid "User changed page author"
1286
  msgstr ""
1287
 
1288
  #: defaults.php:87
1289
  msgid ""
1290
+ "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
1291
+ "%EditorLinkPage%."
1292
  msgstr ""
1293
 
1294
  #: defaults.php:88
1295
+ msgid "User changed page status"
1296
  msgstr ""
1297
 
1298
+ #: defaults.php:88
1299
+ msgid ""
1300
+ "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
1301
+ "%EditorLinkPage%."
1302
  msgstr ""
1303
 
1304
+ #: defaults.php:89
1305
+ msgid "User changed the visibility of a page post"
1306
  msgstr ""
1307
 
1308
+ #: defaults.php:89
1309
+ msgid ""
1310
+ "Changed the visibility of the page %PostTitle% from %OldVisibility% to "
1311
+ "%NewVisibility%. %EditorLinkPage%."
1312
  msgstr ""
1313
 
1314
+ #: defaults.php:90
1315
+ msgid "User changed the date of a page post"
1316
  msgstr ""
1317
 
1318
+ #: defaults.php:90
1319
+ msgid ""
1320
+ "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
1321
+ "%EditorLinkPage%."
 
 
 
 
 
 
 
 
 
 
1322
  msgstr ""
1323
 
1324
+ #: defaults.php:91
1325
+ msgid "User changed the parent of a page"
1326
  msgstr ""
1327
 
1328
+ #: defaults.php:91
1329
  msgid ""
1330
+ "Changed the parent of the page %PostTitle% from %OldParentName% to "
1331
+ "%NewParentName%. %EditorLinkPage%."
1332
  msgstr ""
1333
 
1334
+ #: defaults.php:92
1335
+ msgid "User changed the template of a page"
1336
  msgstr ""
1337
 
1338
+ #: defaults.php:92
1339
  msgid ""
1340
+ "Changed the template of the page %PostTitle% from %OldTemplate% to "
1341
+ "%NewTemplate%. %EditorLinkPage%."
 
 
 
1342
  msgstr ""
1343
 
1344
+ #: defaults.php:93
1345
+ msgid "User created a custom field for a page"
 
1346
  msgstr ""
1347
 
1348
+ #: defaults.php:94
1349
+ msgid "User updated a custom field value for a page"
1350
  msgstr ""
1351
 
1352
+ #: defaults.php:95
1353
+ msgid "User deleted a custom field from a page"
 
 
1354
  msgstr ""
1355
 
1356
+ #: defaults.php:96
1357
+ msgid "User updated a custom field name for a page"
1358
  msgstr ""
1359
 
1360
+ #: defaults.php:97
1361
+ msgid "User modified content for a published page"
1362
  msgstr ""
1363
 
1364
+ #: defaults.php:98
1365
+ msgid "User modified content for a draft page"
1366
  msgstr ""
1367
 
1368
+ #: defaults.php:99
1369
+ msgid "User scheduled a page"
1370
  msgstr ""
1371
 
1372
+ #: defaults.php:100
1373
+ msgid "User changed title of a page"
1374
  msgstr ""
1375
 
1376
  #: defaults.php:102
1377
+ msgid "Custom Posts"
1378
  msgstr ""
1379
 
1380
  #: defaults.php:103
1381
+ msgid "User created a new post with custom post type and saved it as draft"
1382
  msgstr ""
1383
 
1384
  #: defaults.php:103
1385
  msgid ""
1386
+ "Created a new custom post called %PostTitle% of type %PostType%. "
1387
+ "%EditorLinkPost%."
1388
  msgstr ""
1389
 
1390
  #: defaults.php:104
1391
+ msgid "User published a post with custom post type"
1392
  msgstr ""
1393
 
1394
  #: defaults.php:104
1395
  msgid ""
1396
+ "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
1397
+ "%. %EditorLinkPost%."
1398
  msgstr ""
1399
 
1400
  #: defaults.php:105
1401
+ msgid "User modified a post with custom post type"
1402
  msgstr ""
1403
 
1404
  #: defaults.php:105
1405
  msgid ""
1406
+ "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
1407
+ "%. %EditorLinkPost%."
1408
  msgstr ""
1409
 
1410
  #: defaults.php:106
1411
+ msgid "User modified a draft post with custom post type"
1412
  msgstr ""
1413
 
1414
  #: defaults.php:106
1415
  msgid ""
1416
+ "Modified the draft custom post %PostTitle% of type is %PostType%. "
1417
+ "%EditorLinkPost%."
1418
  msgstr ""
1419
 
1420
  #: defaults.php:107
1421
+ msgid "User permanently deleted post with custom post type"
1422
  msgstr ""
1423
 
1424
  #: defaults.php:107
1425
  msgid ""
1426
+ "Permanently Deleted the custom post %PostTitle% of type %PostType%. The post "
1427
+ "URL was %PostUrl%. %EditorLinkPost%."
1428
  msgstr ""
1429
 
1430
  #: defaults.php:108
1431
+ msgid "User moved post with custom post type to trash"
1432
  msgstr ""
1433
 
1434
  #: defaults.php:108
1435
  msgid ""
1436
+ "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
1437
+ "%PostUrl%."
1438
+ msgstr ""
1439
+
1440
+ #: defaults.php:109
1441
+ msgid "User restored post with custom post type from trash"
1442
  msgstr ""
1443
 
1444
  #: defaults.php:109
1445
+ msgid ""
1446
+ "The custom post %PostTitle% of type %PostType% has been restored from trash. "
1447
+ "%EditorLinkPost%."
1448
+ msgstr ""
1449
+
1450
+ #: defaults.php:110
1451
+ msgid "User changed the category of a post with custom post type"
1452
  msgstr ""
1453
 
1454
  #: defaults.php:110
1455
+ msgid ""
1456
+ "Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
1457
+ "from %OldCategories% to %NewCategories%. %EditorLinkPost%."
1458
+ msgstr ""
1459
+
1460
+ #: defaults.php:111
1461
+ msgid "User changed the URL of a post with custom post type"
1462
  msgstr ""
1463
 
1464
  #: defaults.php:111
1465
+ msgid ""
1466
+ "Changed the URL of the custom post %PostTitle% of type %PostType% from "
1467
+ "%OldUrl% to %NewUrl%. %EditorLinkPost%."
1468
+ msgstr ""
1469
+
1470
+ #: defaults.php:112
1471
+ msgid "User changed the author or post with custom post type"
1472
  msgstr ""
1473
 
1474
  #: defaults.php:112
1475
+ msgid ""
1476
+ "Changed the author of custom post %PostTitle% of type %PostType% from "
1477
+ "%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
1478
  msgstr ""
1479
 
1480
  #: defaults.php:113
1481
+ msgid "User changed the status of post with custom post type"
1482
  msgstr ""
1483
 
1484
  #: defaults.php:113
1485
+ msgid ""
1486
+ "Changed the status of custom post %PostTitle% of type %PostType% from "
1487
+ "%OldStatus% to %NewStatus%. %EditorLinkPost%."
1488
  msgstr ""
1489
 
1490
  #: defaults.php:114
1491
+ msgid "User changed the visibility of a post with custom post type"
1492
  msgstr ""
1493
 
1494
  #: defaults.php:114
1495
+ msgid ""
1496
+ "Changed the visibility of the custom post %PostTitle% of type %PostType% "
1497
+ "from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
1498
  msgstr ""
1499
 
1500
+ #: defaults.php:115
1501
+ msgid "User changed the date of post with custom post type"
1502
  msgstr ""
1503
 
1504
+ #: defaults.php:115
1505
+ msgid ""
1506
+ "Changed the date of the custom post %PostTitle% of type %PostType% from "
1507
+ "%OldDate% to %NewDate%. %EditorLinkPost%."
1508
  msgstr ""
1509
 
1510
+ #: defaults.php:116
1511
+ msgid "User created a custom field for a custom post type"
1512
  msgstr ""
1513
 
1514
+ #: defaults.php:117
1515
+ msgid "User updated a custom field for a custom post type"
1516
  msgstr ""
1517
 
1518
  #: defaults.php:118
1519
+ msgid "User deleted a custom field from a custom post type"
 
 
 
 
1520
  msgstr ""
1521
 
1522
  #: defaults.php:119
1523
+ msgid "User updated a custom field name for a custom post type"
1524
  msgstr ""
1525
 
1526
  #: defaults.php:120
1527
+ msgid "User modified content for a published custom post type"
1528
  msgstr ""
1529
 
1530
+ #: defaults.php:121
1531
+ msgid "User modified content for a draft custom post type"
1532
  msgstr ""
1533
 
1534
+ #: defaults.php:122
1535
+ msgid "User scheduled a custom post type"
1536
  msgstr ""
1537
 
1538
+ #: defaults.php:122
1539
  msgid ""
1540
+ "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
1541
+ "%EditorLinkPost%."
1542
  msgstr ""
1543
 
1544
  #: defaults.php:123
1545
+ msgid "User changed title of a custom post type"
 
 
 
 
1546
  msgstr ""
1547
 
1548
+ #: defaults.php:123
1549
  msgid ""
1550
+ "Changed the title of the custom post %OldTitle% to %NewTitle%. "
1551
+ "%EditorLinkPost%."
1552
  msgstr ""
1553
 
1554
  #: defaults.php:125
1555
+ msgid "Widgets"
 
 
 
 
 
 
1556
  msgstr ""
1557
 
1558
  #: defaults.php:126
1559
+ msgid "User added a new widget"
1560
  msgstr ""
1561
 
1562
  #: defaults.php:126
1563
+ msgid "Added a new %WidgetName% widget in %Sidebar%."
1564
  msgstr ""
1565
 
1566
  #: defaults.php:127
1567
+ msgid "User modified a widget"
1568
  msgstr ""
1569
 
1570
  #: defaults.php:127
1571
+ msgid "Modified the %WidgetName% widget in %Sidebar%."
1572
  msgstr ""
1573
 
1574
  #: defaults.php:128
1575
+ msgid "User deleted widget"
1576
  msgstr ""
1577
 
1578
  #: defaults.php:128
1579
+ msgid "Deleted the %WidgetName% widget from %Sidebar%."
 
 
1580
  msgstr ""
1581
 
1582
  #: defaults.php:129
1583
+ msgid "User moved widget"
1584
  msgstr ""
1585
 
1586
  #: defaults.php:129
1587
+ msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
1588
  msgstr ""
1589
 
1590
  #: defaults.php:130
1591
+ msgid "User changed widget position"
1592
  msgstr ""
1593
 
1594
  #: defaults.php:130
1595
+ msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
 
 
1596
  msgstr ""
1597
 
1598
+ #: defaults.php:132
1599
+ msgid "User Profiles"
1600
  msgstr ""
1601
 
1602
+ #: defaults.php:133
1603
+ msgid "New user was created on WordPress"
 
 
1604
  msgstr ""
1605
 
1606
  #: defaults.php:133
1607
+ msgid ""
1608
+ "A new user %NewUserData->Username% was created with role of %NewUserData-"
1609
+ ">Roles%."
1610
  msgstr ""
1611
 
1612
  #: defaults.php:134
1613
+ msgid "User created another WordPress user"
1614
  msgstr ""
1615
 
1616
  #: defaults.php:134
1617
+ msgid ""
1618
+ "%UserChanger% created a new user %NewUserData->Username% with the role of "
1619
+ "%NewUserData->Roles%."
1620
  msgstr ""
1621
 
1622
  #: defaults.php:135
1623
+ msgid "The role of a user was changed by another WordPress user"
1624
  msgstr ""
1625
 
1626
  #: defaults.php:135
1627
+ msgid ""
1628
+ "Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%."
1629
  msgstr ""
1630
 
1631
  #: defaults.php:136
1632
+ msgid "User has changed his or her password"
1633
  msgstr ""
1634
 
1635
  #: defaults.php:136
1636
+ msgid "Changed the password."
1637
  msgstr ""
1638
 
1639
  #: defaults.php:137
1640
+ msgid "User changed another user's password"
1641
  msgstr ""
1642
 
1643
  #: defaults.php:137
1644
  msgid ""
1645
+ "Changed the password for the user %TargetUserData->Username% with the role "
1646
+ "of %TargetUserData->Roles%."
1647
  msgstr ""
1648
 
1649
  #: defaults.php:138
1650
+ msgid "User changed his or her email address"
1651
  msgstr ""
1652
 
1653
  #: defaults.php:138
1654
+ msgid "Changed the email address from %OldEmail% to %NewEmail%."
1655
  msgstr ""
1656
 
1657
  #: defaults.php:139
1658
+ msgid "User changed another user's email address"
1659
  msgstr ""
1660
 
1661
  #: defaults.php:139
1662
+ msgid ""
1663
+ "Changed the email address of the user %TargetUsername% from %OldEmail% to "
1664
+ "%NewEmail%."
1665
  msgstr ""
1666
 
1667
  #: defaults.php:140
1668
+ msgid "User was deleted by another user"
1669
  msgstr ""
1670
 
1671
  #: defaults.php:140
1672
  msgid ""
1673
+ "Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
1674
+ ">Roles%."
1675
  msgstr ""
1676
 
1677
+ #: defaults.php:142
1678
+ msgid "Plugins & Themes"
1679
  msgstr ""
1680
 
1681
+ #: defaults.php:143
1682
+ msgid "User installed a plugin"
 
1683
  msgstr ""
1684
 
1685
  #: defaults.php:143
1686
+ msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
1687
  msgstr ""
1688
 
1689
  #: defaults.php:144
1690
+ msgid "User activated a WordPress plugin"
1691
  msgstr ""
1692
 
1693
  #: defaults.php:144
1694
+ msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
1695
  msgstr ""
1696
 
1697
  #: defaults.php:145
1698
+ msgid "User deactivated a WordPress plugin"
1699
  msgstr ""
1700
 
1701
+ #: defaults.php:145
1702
+ msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
 
1703
  msgstr ""
1704
 
1705
  #: defaults.php:146
1706
+ msgid "User uninstalled a plugin"
1707
+ msgstr ""
1708
+
1709
+ #: defaults.php:146
1710
+ msgid ""
1711
+ "Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
1712
+ "%."
1713
  msgstr ""
1714
 
1715
  #: defaults.php:147
1716
+ msgid "User upgraded a plugin"
1717
+ msgstr ""
1718
+
1719
+ #: defaults.php:147
1720
+ msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
1721
  msgstr ""
1722
 
1723
  #: defaults.php:148
1724
+ msgid "User installed a theme"
1725
+ msgstr ""
1726
+
1727
+ #: defaults.php:148
1728
+ msgid ""
1729
+ "Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
1730
  msgstr ""
1731
 
1732
  #: defaults.php:149
1733
+ msgid "User activated a theme"
1734
+ msgstr ""
1735
+
1736
+ #: defaults.php:149
1737
+ msgid ""
1738
+ "Activated the theme \"%Theme->Name%\", installed in %Theme-"
1739
+ ">get_template_directory%."
1740
  msgstr ""
1741
 
1742
  #: defaults.php:150
1743
+ msgid "User uninstalled a theme"
1744
  msgstr ""
1745
 
1746
  #: defaults.php:150
1747
+ msgid ""
1748
+ "Deleted the theme \"%Theme->Name%\" installed in %Theme-"
1749
+ ">get_template_directory%."
1750
  msgstr ""
1751
 
1752
  #: defaults.php:151
1753
+ msgid "A plugin created a post"
1754
  msgstr ""
1755
 
1756
  #: defaults.php:151
1757
+ msgid "A plugin automatically created the following post: %PostTitle%."
1758
  msgstr ""
1759
 
1760
  #: defaults.php:152
1761
+ msgid "A plugin created a page"
1762
  msgstr ""
1763
 
1764
  #: defaults.php:152
1765
+ msgid "A plugin automatically created the following page: %PostTitle%."
1766
  msgstr ""
1767
 
1768
  #: defaults.php:153
1769
+ msgid "A plugin created a custom post"
1770
  msgstr ""
1771
 
1772
  #: defaults.php:153
1773
+ msgid "A plugin automatically created the following custom post: %PostTitle%."
 
 
1774
  msgstr ""
1775
 
1776
  #: defaults.php:154
1777
+ msgid "A plugin deleted a post"
1778
  msgstr ""
1779
 
1780
  #: defaults.php:154
1781
+ msgid "A plugin automatically deleted the following post: %PostTitle%."
1782
  msgstr ""
1783
 
1784
  #: defaults.php:155
1785
+ msgid "A plugin deleted a page"
1786
  msgstr ""
1787
 
1788
  #: defaults.php:155
1789
+ msgid "A plugin automatically deleted the following page: %PostTitle%."
1790
  msgstr ""
1791
 
1792
+ #: defaults.php:156
1793
+ msgid "A plugin deleted a custom post"
1794
  msgstr ""
1795
 
1796
+ #: defaults.php:156
1797
+ msgid "A plugin automatically deleted the following custom post: %PostTitle%."
1798
  msgstr ""
1799
 
1800
+ #: defaults.php:157
1801
+ msgid "User updated a theme"
1802
  msgstr ""
1803
 
1804
+ #: defaults.php:157
1805
+ msgid ""
1806
+ "Updated the theme \"%Theme->Name%\" installed in %Theme-"
1807
+ ">get_template_directory%."
1808
  msgstr ""
1809
 
1810
+ #: defaults.php:158
1811
+ msgid "User changed a file using the theme editor"
1812
  msgstr ""
1813
 
1814
+ #: defaults.php:158
1815
+ msgid "Modified %File% with the Theme Editor."
1816
  msgstr ""
1817
 
1818
+ #: defaults.php:159
1819
+ msgid "User changed a file using the plugin editor"
 
 
1820
  msgstr ""
1821
 
1822
+ #: defaults.php:159
1823
+ msgid "Modified %File% with the Plugin Editor."
1824
  msgstr ""
1825
 
1826
  #: defaults.php:161
1827
+ msgid "System Activity"
 
1828
  msgstr ""
1829
 
1830
  #: defaults.php:162
1831
+ msgid "Unknown Error"
1832
  msgstr ""
1833
 
1834
  #: defaults.php:162
1835
+ msgid "An unexpected error has occurred ."
 
 
 
 
1836
  msgstr ""
1837
 
1838
  #: defaults.php:163
1839
+ msgid "PHP error"
1840
  msgstr ""
1841
 
1842
+ #: defaults.php:163 defaults.php:164 defaults.php:165 defaults.php:166
1843
+ #: defaults.php:167
1844
+ msgid "%Message%."
1845
  msgstr ""
1846
 
1847
  #: defaults.php:164
1848
+ msgid "PHP warning"
 
 
 
 
1849
  msgstr ""
1850
 
1851
  #: defaults.php:165
1852
+ msgid "PHP notice"
 
 
 
 
1853
  msgstr ""
1854
 
1855
  #: defaults.php:166
1856
+ msgid "PHP exception"
 
 
 
 
1857
  msgstr ""
1858
 
1859
  #: defaults.php:167
1860
+ msgid "PHP shutdown error"
1861
  msgstr ""
1862
 
1863
  #: defaults.php:168
1864
+ msgid "Events automatically pruned by system"
1865
  msgstr ""
1866
 
1867
  #: defaults.php:168
1868
+ msgid "System automatically deleted %EventCount% alert(s)."
1869
  msgstr ""
1870
 
1871
  #: defaults.php:169
1872
+ msgid "Option Anyone Can Register in WordPress settings changed"
1873
  msgstr ""
1874
 
1875
  #: defaults.php:169
1876
+ msgid "%NewValue% the option \"Anyone can register\"."
 
 
1877
  msgstr ""
1878
 
1879
  #: defaults.php:170
1880
+ msgid "New User Default Role changed"
1881
  msgstr ""
1882
 
1883
  #: defaults.php:170
1884
+ msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
1885
+ msgstr ""
1886
+
1887
+ #: defaults.php:171
1888
+ msgid "WordPress Administrator Notification email changed"
1889
+ msgstr ""
1890
+
1891
+ #: defaults.php:171
1892
  msgid ""
1893
+ "Changed the WordPress administrator notifications email address from "
1894
+ "%OldEmail% to %NewEmail%."
1895
  msgstr ""
1896
 
1897
  #: defaults.php:172
1898
+ msgid "WordPress was updated"
1899
  msgstr ""
1900
 
1901
+ #: defaults.php:172
1902
+ msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
1903
  msgstr ""
1904
 
1905
  #: defaults.php:173
1906
+ msgid "User changes the WordPress Permalinks"
1907
+ msgstr ""
1908
+
1909
+ #: defaults.php:173
1910
+ msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
1911
  msgstr ""
1912
 
1913
  #: defaults.php:174
1914
+ msgid "User requests non-existing pages (404 Error Pages)"
1915
  msgstr ""
1916
 
1917
  #: defaults.php:174
1918
  msgid ""
1919
+ "Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. These "
1920
+ "requests are being logged to a log file in the /wp-uploads/wp-security-audit-"
1921
+ "log/404s/ directory."
1922
  msgstr ""
1923
 
1924
  #: defaults.php:175
1925
+ msgid "Advertising Add-ons."
1926
  msgstr ""
1927
 
1928
  #: defaults.php:175
1929
+ msgid "%PromoName% %PromoMessage%"
1930
+ msgstr ""
1931
+
1932
+ #: defaults.php:177
1933
+ msgid "MultiSite"
1934
+ msgstr ""
1935
+
1936
+ #: defaults.php:178
1937
+ msgid "User granted Super Admin privileges"
1938
+ msgstr ""
1939
+
1940
+ #: defaults.php:178
1941
+ msgid "Granted Super Admin privileges to %TargetUsername%."
1942
+ msgstr ""
1943
+
1944
+ #: defaults.php:179
1945
+ msgid "User revoked from Super Admin privileges"
1946
+ msgstr ""
1947
+
1948
+ #: defaults.php:179
1949
+ msgid "Revoked Super Admin privileges from %TargetUsername%."
1950
+ msgstr ""
1951
+
1952
+ #: defaults.php:180
1953
+ msgid "Existing user added to a site"
1954
+ msgstr ""
1955
+
1956
+ #: defaults.php:180
1957
+ msgid ""
1958
+ "Added the existing user %TargetUsername% with %TargetUserRole% role to site "
1959
+ "%SiteName%."
1960
+ msgstr ""
1961
+
1962
+ #: defaults.php:181
1963
+ msgid "User removed from site"
1964
+ msgstr ""
1965
+
1966
+ #: defaults.php:181
1967
+ msgid ""
1968
+ "Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
1969
+ "site."
1970
+ msgstr ""
1971
+
1972
+ #: defaults.php:182
1973
+ msgid "New network user created"
1974
+ msgstr ""
1975
+
1976
+ #: defaults.php:182
1977
+ msgid "Created a new network user %NewUserData->Username%."
1978
+ msgstr ""
1979
+
1980
+ #: defaults.php:183
1981
+ msgid "The forum role of a user was changed by another WordPress user"
1982
+ msgstr ""
1983
+
1984
+ #: defaults.php:183
1985
+ msgid ""
1986
+ "Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
1987
+ "% by %UserChanger%."
1988
+ msgstr ""
1989
+
1990
+ #: defaults.php:184
1991
+ msgid "New site added on the network"
1992
+ msgstr ""
1993
+
1994
+ #: defaults.php:184
1995
+ msgid "Added the site %SiteName% to the network."
1996
+ msgstr ""
1997
+
1998
+ #: defaults.php:185
1999
+ msgid "Existing site archived"
2000
+ msgstr ""
2001
+
2002
+ #: defaults.php:185
2003
+ msgid "Archived the site %SiteName%."
2004
+ msgstr ""
2005
+
2006
+ #: defaults.php:186
2007
+ msgid "Archived site has been unarchived"
2008
+ msgstr ""
2009
+
2010
+ #: defaults.php:186
2011
+ msgid "Unarchived the site %SiteName%."
2012
+ msgstr ""
2013
+
2014
+ #: defaults.php:187
2015
+ msgid "Deactivated site has been activated"
2016
+ msgstr ""
2017
+
2018
+ #: defaults.php:187
2019
+ msgid "Activated the site %SiteName%."
2020
+ msgstr ""
2021
+
2022
+ #: defaults.php:188
2023
+ msgid "Site has been deactivated"
2024
+ msgstr ""
2025
+
2026
+ #: defaults.php:188
2027
+ msgid "Deactivated the site %SiteName%."
2028
+ msgstr ""
2029
+
2030
+ #: defaults.php:189
2031
+ msgid "Existing site deleted from network"
2032
+ msgstr ""
2033
+
2034
+ #: defaults.php:189
2035
+ msgid "Deleted the site %SiteName%."
2036
+ msgstr ""
2037
+
2038
+ #: defaults.php:190
2039
+ msgid "Activated theme on network"
2040
+ msgstr ""
2041
+
2042
+ #: defaults.php:190
2043
+ msgid ""
2044
+ "Network activated the theme %Theme->Name% installed in %Theme-"
2045
+ ">get_template_directory%."
2046
+ msgstr ""
2047
+
2048
+ #: defaults.php:191
2049
+ msgid "Deactivated theme from network"
2050
+ msgstr ""
2051
+
2052
+ #: defaults.php:191
2053
+ msgid ""
2054
+ "Network deactivated the theme %Theme->Name% installed in %Theme-"
2055
+ ">get_template_directory%."
2056
+ msgstr ""
2057
+
2058
+ #: defaults.php:193
2059
+ msgid "Database"
2060
+ msgstr ""
2061
+
2062
+ #: defaults.php:194
2063
+ msgid "Plugin created tables"
2064
+ msgstr ""
2065
+
2066
+ #: defaults.php:194
2067
+ msgid ""
2068
+ "Plugin %Plugin->Name% created these tables in the database: %TableNames%."
2069
+ msgstr ""
2070
+
2071
+ #: defaults.php:195
2072
+ msgid "Plugin modified tables structure"
2073
+ msgstr ""
2074
+
2075
+ #: defaults.php:195
2076
+ msgid ""
2077
+ "Plugin %Plugin->Name% modified the structure of these database tables: "
2078
+ "%TableNames%."
2079
+ msgstr ""
2080
+
2081
+ #: defaults.php:196
2082
+ msgid "Plugin deleted tables"
2083
+ msgstr ""
2084
+
2085
+ #: defaults.php:196
2086
  msgid ""
2087
  "Plugin %Plugin->Name% deleted the following tables from the database: "
2088
+ "%TableNames%."
2089
  msgstr ""
2090
 
2091
+ #: defaults.php:197
2092
  msgid "Theme created tables"
2093
  msgstr ""
2094
 
2095
+ #: defaults.php:197
2096
+ msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
2097
  msgstr ""
2098
 
2099
+ #: defaults.php:198
2100
  msgid "Theme modified tables structure"
2101
  msgstr ""
2102
 
2103
+ #: defaults.php:198
2104
  msgid ""
2105
  "Theme %Theme->Name% modified the structure of these database tables: "
2106
+ "%TableNames%."
2107
  msgstr ""
2108
 
2109
+ #: defaults.php:199
2110
  msgid "Theme deleted tables"
2111
  msgstr ""
2112
 
2113
+ #: defaults.php:199
2114
  msgid ""
2115
  "Theme %Theme->Name% deleted the following tables from the database: "
2116
+ "%TableNames%."
2117
  msgstr ""
2118
 
2119
+ #: defaults.php:200
2120
  msgid "Unknown component created tables"
2121
  msgstr ""
2122
 
2123
+ #: defaults.php:200
2124
+ msgid ""
2125
+ "An unknown component created these tables in the database: %TableNames%."
2126
  msgstr ""
2127
 
2128
+ #: defaults.php:201
2129
  msgid "Unknown component modified tables structure"
2130
  msgstr ""
2131
 
2132
+ #: defaults.php:201
2133
  msgid ""
2134
  "An unknown component modified the structure of these database tables: "
2135
+ "%TableNames%."
2136
  msgstr ""
2137
 
2138
+ #: defaults.php:202
2139
  msgid "Unknown component deleted tables"
2140
  msgstr ""
2141
 
2142
+ #: defaults.php:202
2143
  msgid ""
2144
  "An unknown component deleted the following tables from the database: "
2145
+ "%TableNames%."
2146
+ msgstr ""
2147
+
2148
+ #: defaults.php:204
2149
+ msgid "BBPress Forum"
2150
+ msgstr ""
2151
+
2152
+ #: defaults.php:205
2153
+ msgid "User created new forum"
2154
+ msgstr ""
2155
+
2156
+ #: defaults.php:206
2157
+ msgid "User changed status of a forum"
2158
+ msgstr ""
2159
+
2160
+ #: defaults.php:207
2161
+ msgid "User changed visibility of a forum"
2162
+ msgstr ""
2163
+
2164
+ #: defaults.php:208
2165
+ msgid "User changed the URL of a forum"
2166
+ msgstr ""
2167
+
2168
+ #: defaults.php:209
2169
+ msgid "User changed order of a forum"
2170
+ msgstr ""
2171
+
2172
+ #: defaults.php:210
2173
+ msgid "User moved forum to trash"
2174
+ msgstr ""
2175
+
2176
+ #: defaults.php:210
2177
+ msgid "Moved the forum %ForumName% to trash."
2178
+ msgstr ""
2179
+
2180
+ #: defaults.php:211
2181
+ msgid "User permanently deleted forum"
2182
+ msgstr ""
2183
+
2184
+ #: defaults.php:211
2185
+ msgid "Permanently deleted the forum %ForumName%."
2186
+ msgstr ""
2187
+
2188
+ #: defaults.php:212
2189
+ msgid "User restored forum from trash"
2190
+ msgstr ""
2191
+
2192
+ #: defaults.php:213
2193
+ msgid "User changed the parent of a forum"
2194
+ msgstr ""
2195
+
2196
+ #: defaults.php:214
2197
+ msgid "User changed forum's role"
2198
+ msgstr ""
2199
+
2200
+ #: defaults.php:214
2201
+ msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
2202
+ msgstr ""
2203
+
2204
+ #: defaults.php:215
2205
+ msgid "User changed option of a forum"
2206
+ msgstr ""
2207
+
2208
+ #: defaults.php:215
2209
+ msgid "%Status% the option for anonymous posting on forum."
2210
+ msgstr ""
2211
+
2212
+ #: defaults.php:216
2213
+ msgid "User changed type of a forum"
2214
+ msgstr ""
2215
+
2216
+ #: defaults.php:217
2217
+ msgid "User changed time to disallow post editing"
2218
+ msgstr ""
2219
+
2220
+ #: defaults.php:217
2221
+ msgid ""
2222
+ "Changed the time to disallow post editing from %OldTime% to %NewTime% "
2223
+ "minutes in the forums."
2224
+ msgstr ""
2225
+
2226
+ #: defaults.php:218
2227
+ msgid "User changed the forum setting posting throttle time"
2228
+ msgstr ""
2229
+
2230
+ #: defaults.php:218
2231
+ msgid ""
2232
+ "Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
2233
+ "forums."
2234
+ msgstr ""
2235
+
2236
+ #: defaults.php:219
2237
+ msgid "User created new topic"
2238
+ msgstr ""
2239
+
2240
+ #: defaults.php:220
2241
+ msgid "User changed status of a topic"
2242
+ msgstr ""
2243
+
2244
+ #: defaults.php:221
2245
+ msgid "User changed type of a topic"
2246
+ msgstr ""
2247
+
2248
+ #: defaults.php:222
2249
+ msgid "User changed URL of a topic"
2250
+ msgstr ""
2251
+
2252
+ #: defaults.php:222
2253
+ msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
2254
+ msgstr ""
2255
+
2256
+ #: defaults.php:223
2257
+ msgid "User changed the forum of a topic"
2258
+ msgstr ""
2259
+
2260
+ #: defaults.php:224
2261
+ msgid "User moved topic to trash"
2262
+ msgstr ""
2263
+
2264
+ #: defaults.php:224
2265
+ msgid "Moved the topic %TopicName% to trash."
2266
+ msgstr ""
2267
+
2268
+ #: defaults.php:225
2269
+ msgid "User permanently deleted topic"
2270
+ msgstr ""
2271
+
2272
+ #: defaults.php:225
2273
+ msgid "Permanently deleted the topic %TopicName%."
2274
+ msgstr ""
2275
+
2276
+ #: defaults.php:226
2277
+ msgid "User restored topic from trash"
2278
+ msgstr ""
2279
+
2280
+ #: defaults.php:227
2281
+ msgid "User changed visibility of a topic"
2282
+ msgstr ""
2283
+
2284
+ #: defaults.php:229
2285
+ msgid "Menus"
2286
+ msgstr ""
2287
+
2288
+ #: defaults.php:230
2289
+ msgid "User created new menu"
2290
+ msgstr ""
2291
+
2292
+ #: defaults.php:230
2293
+ msgid "Created a new menu called %MenuName%."
2294
+ msgstr ""
2295
+
2296
+ #: defaults.php:231
2297
+ msgid "User added content to a menu"
2298
+ msgstr ""
2299
+
2300
+ #: defaults.php:231
2301
+ msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
2302
+ msgstr ""
2303
+
2304
+ #: defaults.php:232
2305
+ msgid "User removed content from a menu"
2306
+ msgstr ""
2307
+
2308
+ #: defaults.php:232
2309
+ msgid ""
2310
+ "Removed the %ContentType% called %ContentName% from the menu %MenuName%."
2311
+ msgstr ""
2312
+
2313
+ #: defaults.php:233
2314
+ msgid "User deleted menu"
2315
+ msgstr ""
2316
+
2317
+ #: defaults.php:233
2318
+ msgid "Deleted the menu %MenuName%."
2319
+ msgstr ""
2320
+
2321
+ #: defaults.php:234
2322
+ msgid "User changed menu setting"
2323
+ msgstr ""
2324
+
2325
+ #: defaults.php:234
2326
+ msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
2327
+ msgstr ""
2328
+
2329
+ #: defaults.php:235
2330
+ msgid "User modified content in a menu"
2331
+ msgstr ""
2332
+
2333
+ #: defaults.php:235
2334
+ msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
2335
+ msgstr ""
2336
+
2337
+ #: defaults.php:236
2338
+ msgid "User changed name of a menu"
2339
+ msgstr ""
2340
+
2341
+ #: defaults.php:236
2342
+ msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
2343
+ msgstr ""
2344
+
2345
+ #: defaults.php:237
2346
+ msgid "User changed order of the objects in a menu"
2347
+ msgstr ""
2348
+
2349
+ #: defaults.php:237
2350
+ msgid "Changed the order of the %ItemName% in menu %MenuName%."
2351
+ msgstr ""
2352
+
2353
+ #: defaults.php:238
2354
+ msgid "User moved objects as a sub-item"
2355
+ msgstr ""
2356
+
2357
+ #: defaults.php:238
2358
+ msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
2359
+ msgstr ""
2360
+
2361
+ #: defaults.php:240
2362
+ msgid "Comments"
2363
+ msgstr ""
2364
+
2365
+ #: defaults.php:241
2366
+ msgid "User approved a comment"
2367
+ msgstr ""
2368
+
2369
+ #: defaults.php:241
2370
+ msgid ""
2371
+ "Approved the comment posted in response to the post %PostTitle% by %Author% "
2372
+ "on %CommentLink%."
2373
+ msgstr ""
2374
+
2375
+ #: defaults.php:242
2376
+ msgid "User unapproved a comment"
2377
+ msgstr ""
2378
+
2379
+ #: defaults.php:242
2380
+ msgid ""
2381
+ "Unapproved the comment posted in response to the post %PostTitle% by %Author"
2382
+ "% on %CommentLink%."
2383
+ msgstr ""
2384
+
2385
+ #: defaults.php:243
2386
+ msgid "User replied to a comment"
2387
+ msgstr ""
2388
+
2389
+ #: defaults.php:243
2390
+ msgid ""
2391
+ "Replied to the comment posted in response to the post %PostTitle% by %Author"
2392
+ "% on %CommentLink%."
2393
+ msgstr ""
2394
+
2395
+ #: defaults.php:244
2396
+ msgid "User edited a comment"
2397
+ msgstr ""
2398
+
2399
+ #: defaults.php:244
2400
+ msgid ""
2401
+ "Edited a comment posted in response to the post %PostTitle% by %Author% on "
2402
+ "%CommentLink%."
2403
+ msgstr ""
2404
+
2405
+ #: defaults.php:245
2406
+ msgid "User marked a comment as Spam"
2407
+ msgstr ""
2408
+
2409
+ #: defaults.php:245
2410
+ msgid ""
2411
+ "Marked the comment posted in response to the post %PostTitle% by %Author% on "
2412
+ "%CommentLink% as Spam."
2413
+ msgstr ""
2414
+
2415
+ #: defaults.php:246
2416
+ msgid "User marked a comment as Not Spam"
2417
+ msgstr ""
2418
+
2419
+ #: defaults.php:246
2420
+ msgid ""
2421
+ "Marked the comment posted in response to the post %PostTitle% by %Author% on "
2422
+ "%CommentLink% as Not Spam."
2423
+ msgstr ""
2424
+
2425
+ #: defaults.php:247
2426
+ msgid "User moved a comment to trash"
2427
+ msgstr ""
2428
+
2429
+ #: defaults.php:247
2430
+ msgid ""
2431
+ "Moved the comment posted in response to the post %PostTitle% by %Author% on "
2432
+ "%Date% to trash."
2433
+ msgstr ""
2434
+
2435
+ #: defaults.php:248
2436
+ msgid "User restored a comment from the trash"
2437
+ msgstr ""
2438
+
2439
+ #: defaults.php:248
2440
+ msgid ""
2441
+ "Restored the comment posted in response to the post %PostTitle% by %Author% "
2442
+ "on %CommentLink% from the trash."
2443
+ msgstr ""
2444
+
2445
+ #: defaults.php:249
2446
+ msgid "User permanently deleted a comment"
2447
+ msgstr ""
2448
+
2449
+ #: defaults.php:249
2450
+ msgid ""
2451
+ "Permanently deleted the comment posted in response to the post %PostTitle% "
2452
+ "by %Author% on %Date%."
2453
+ msgstr ""
2454
+
2455
+ #: defaults.php:250
2456
+ msgid "User posted a comment"
2457
+ msgstr ""
2458
+
2459
+ #: defaults.php:250
2460
+ msgid "%CommentMsg% on %CommentLink%."
2461
+ msgstr ""
2462
+
2463
+ #: defaults.php:252
2464
+ msgid "Custom Alerts"
2465
+ msgstr ""
2466
+
2467
+ #: defaults.php:253
2468
+ msgid "Custom critical Alert"
2469
+ msgstr ""
2470
+
2471
+ #: defaults.php:253 defaults.php:254 defaults.php:255
2472
+ msgid "%CustomAlertText%"
2473
+ msgstr ""
2474
+
2475
+ #: defaults.php:254
2476
+ msgid "Custom warning Alert"
2477
+ msgstr ""
2478
+
2479
+ #: defaults.php:255
2480
+ msgid "Custom notice Alert"
2481
  msgstr ""
2482
 
2483
+ #: wp-security-audit-log.php:250
2484
  msgid ""
2485
  "You are using a version of PHP that is older than %s, which is no longer "
2486
  "supported.<br/>Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
2492
  msgid "WP Security Audit Log"
2493
  msgstr ""
2494
 
2495
+ #. #-#-#-#-# plugin.pot (WP Security Audit Log 2.5.2) #-#-#-#-#
2496
  #. Plugin URI of the plugin/theme
2497
+ #. #-#-#-#-# plugin.pot (WP Security Audit Log 2.5.2) #-#-#-#-#
2498
  #. Author URI of the plugin/theme
2499
  msgid "http://www.wpsecurityauditlog.com/"
2500
  msgstr ""
readme.txt CHANGED
@@ -6,8 +6,8 @@ License: GPLv3
6
  License URI: http://www.gnu.org/licenses/gpl.html
7
  Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
8
  Requires at least: 3.6
9
- Tested up to: 4.5
10
- Stable tag: 2.5.1
11
 
12
  Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
13
 
@@ -176,11 +176,21 @@ Please refer to the [FAQs page](https://www.wpsecurityauditlog.com/documentation
176
 
177
  == Changelog ==
178
 
 
 
 
 
 
 
 
 
 
 
179
  = 2.5.1 (2016-07-26) =
180
 
181
  * **Bug fixes**
182
  * Fixed the disabling functionality of Alert 6007 because it was not working.
183
- * Fixed the disabling functionality for Alerts 1000 and 1001.
184
  * Merged bug fixes from version 2.4.4 (were not included in 2.5.0).
185
 
186
  = 2.5.0 (2016-07-12) =
6
  License URI: http://www.gnu.org/licenses/gpl.html
7
  Tags: wordpress security plugin, wordpress security audit log, audit log, wordpress log, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, security audit trail, wordpress security alerts, wordpress monitor, wordpress security monitor, wordpress admin, wordpress admin monitoring, analytics, activity, admin, multisite, wordpress multisite, actions, dashboard, log, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
8
  Requires at least: 3.6
9
+ Tested up to: 4.6
10
+ Stable tag: 2.5.2
11
 
12
  Keep an audit trail of all changes and under the hood WordPress activity to ensure productivity and thwart possible WordPress hacker attacks.
13
 
176
 
177
  == Changelog ==
178
 
179
+ = 2.5.2 (2016-08-12) =
180
+
181
+ Read the [WP Security Audit Log 2.5.2 release notes](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-releases/logging-404-requests-support-wordpress-4-6/) for more details on what is new.
182
+
183
+ * **New Feature**
184
+ * Logging of 404 Requests to a Log file. Read this [FAQ](https://www.wpsecurityauditlog.com/wordpress-user-monitoring-plugin-documentation/logging-404-requests-urls-logfile/) for more information on this functionality.
185
+
186
+ * **Improvements**
187
+ * Fixed several alerts / monitoring capabilities that were not working correctly in WordPress 4.6.
188
+
189
  = 2.5.1 (2016-07-26) =
190
 
191
  * **Bug fixes**
192
  * Fixed the disabling functionality of Alert 6007 because it was not working.
193
+ * Fixed the disabling functionality for Alerts 1000 and 10001.
194
  * Merged bug fixes from version 2.4.4 (were not included in 2.5.0).
195
 
196
  = 2.5.0 (2016-07-12) =
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Audit Log
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: 2.5.1
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2
@@ -274,7 +274,7 @@ class WpSecurityAuditLog {
274
  // if system wasn't installed, try migration now
275
  if (!$PreInstalled && $this->CanMigrate()) $this->Migrate();
276
 
277
- //setting the prunig date with the old value or the default value
278
  $pruningDate = $this->settings->GetPruningDate();
279
  $this->settings->SetPruningDate($pruningDate);
280
 
@@ -289,6 +289,18 @@ class WpSecurityAuditLog {
289
  if (empty($oldDisabled)) {
290
  $this->settings->SetDisabledAlerts(array(2099));
291
  }
 
 
 
 
 
 
 
 
 
 
 
 
292
 
293
  // install cleanup hook (remove older one if it exists)
294
  wp_clear_scheduled_hook('wsal_cleanup');
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: 2.5.2
8
  Text Domain: wp-security-audit-log
9
  Author URI: http://www.wpsecurityauditlog.com/
10
  License: GPL2
274
  // if system wasn't installed, try migration now
275
  if (!$PreInstalled && $this->CanMigrate()) $this->Migrate();
276
 
277
+ // setting the prunig date with the old value or the default value
278
  $pruningDate = $this->settings->GetPruningDate();
279
  $this->settings->SetPruningDate($pruningDate);
280
 
289
  if (empty($oldDisabled)) {
290
  $this->settings->SetDisabledAlerts(array(2099));
291
  }
292
+
293
+ $log_404 = $this->GetGlobalOption('log-404');
294
+ // If old setting is empty enable 404 logging by default
295
+ if ($log_404 === false) {
296
+ $this->SetGlobalOption('log-404', 1);
297
+ }
298
+
299
+ $purge_log_404 = $this->GetGlobalOption('purge-404-log');
300
+ // If old setting is empty enable 404 purge log by default
301
+ if ($purge_log_404 === false) {
302
+ $this->SetGlobalOption('purge-404-log', 1);
303
+ }
304
 
305
  // install cleanup hook (remove older one if it exists)
306
  wp_clear_scheduled_hook('wsal_cleanup');