Version Description
(2014-10-30) = * New WordPress Security Alerts * Alert 2065: User modified the content of a blog post * Alert 2066: User modified the content of a WordPress page * Alert 2067: User modified the content of a custom post type
- Improvements
- We have also improved the code of some of the sensors which monitor the WordPress activity
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 1.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.2.9 to 1.3.0
- classes/Sensors/Content.php +12 -2
- classes/Views/AuditLog.php +1 -1
- classes/Views/Extensions.php +9 -2
- classes/Views/Settings.php +9 -0
- css/settings.css +18 -0
- defaults.php +3 -0
- img/reporting_04_250x250.gif +0 -0
- img/wordpress_email_alerts_250x250.gif +0 -0
- languages/wp-security-audit-log.pot +247 -205
- readme.txt +23 -5
- wp-security-audit-log.php +1 -1
classes/Sensors/Content.php
CHANGED
@@ -382,15 +382,25 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
|
|
382 |
}
|
383 |
|
384 |
protected function CheckModificationChange($oldpost, $newpost){
|
|
|
|
|
385 |
if($oldpost->post_modified != $newpost->post_modified){
|
386 |
$event = 0;
|
387 |
// @see http://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters
|
388 |
switch($oldpost->post_status){ // TODO or should this be $newpost?
|
389 |
case 'draft':
|
390 |
-
|
|
|
|
|
|
|
|
|
391 |
break;
|
392 |
case 'publish':
|
393 |
-
|
|
|
|
|
|
|
|
|
394 |
break;
|
395 |
}
|
396 |
if($event){
|
382 |
}
|
383 |
|
384 |
protected function CheckModificationChange($oldpost, $newpost){
|
385 |
+
$contentChanged = $oldpost->post_content != $newpost->post_content; // TODO what about excerpts?
|
386 |
+
|
387 |
if($oldpost->post_modified != $newpost->post_modified){
|
388 |
$event = 0;
|
389 |
// @see http://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters
|
390 |
switch($oldpost->post_status){ // TODO or should this be $newpost?
|
391 |
case 'draft':
|
392 |
+
if($contentChanged){
|
393 |
+
$event = $this->GetEventTypeForPostType($newpost, 2065, 2066, 2067);
|
394 |
+
}else{
|
395 |
+
$event = $this->GetEventTypeForPostType($newpost, 2003, 2007, 2032);
|
396 |
+
}
|
397 |
break;
|
398 |
case 'publish':
|
399 |
+
if($contentChanged){
|
400 |
+
$event = $this->GetEventTypeForPostType($newpost, 2065, 2066, 2067);
|
401 |
+
}else{
|
402 |
+
$event = $this->GetEventTypeForPostType($newpost, 2002, 2006, 2031);
|
403 |
+
}
|
404 |
break;
|
405 |
}
|
406 |
if($event){
|
classes/Views/AuditLog.php
CHANGED
@@ -24,7 +24,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
24 |
?><div class="updated" data-notice-name="notifications-extension">
|
25 |
<p><?php _e('Get notified instantly via email of important changes on your WordPress', 'wp-security-audit-log'); ?></p>
|
26 |
<p>
|
27 |
-
<?php $url = 'http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress
|
28 |
<a href="<?php echo esc_attr($url); ?>" target="_blank"><?php _e('Learn More', 'wp-security-audit-log'); ?></a>
|
29 |
| <a href="javascript:;" class="wsal-dismiss-notification"><?php _e('Dismiss this notice', 'wp-security-audit-log'); ?></a>
|
30 |
</p>
|
24 |
?><div class="updated" data-notice-name="notifications-extension">
|
25 |
<p><?php _e('Get notified instantly via email of important changes on your WordPress', 'wp-security-audit-log'); ?></p>
|
26 |
<p>
|
27 |
+
<?php $url = 'http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/?utm_source=plugin&utm_medium=auditlogviewer&utm_campaign=notifications'; ?>
|
28 |
<a href="<?php echo esc_attr($url); ?>" target="_blank"><?php _e('Learn More', 'wp-security-audit-log'); ?></a>
|
29 |
| <a href="javascript:;" class="wsal-dismiss-notification"><?php _e('Dismiss this notice', 'wp-security-audit-log'); ?></a>
|
30 |
</p>
|
classes/Views/Extensions.php
CHANGED
@@ -28,11 +28,18 @@ class WSAL_Views_Extensions extends WSAL_AbstractView {
|
|
28 |
<p><?php _e('Below is a list of extensions that allow you to extend the functionality of WP Security Audit Log plugin for a much better auditing and monitoring experience.', 'wp-security-audit-log'); ?></p>
|
29 |
</div>
|
30 |
|
31 |
-
<div class="">
|
32 |
<h2><?php _e('Notifications Extension', 'wp-security-audit-log'); ?></h2>
|
33 |
<strong><?php _e('Get notified instantly via email when important changes are made on your WordPress!', 'wp-security-audit-log'); ?></strong>
|
34 |
<p><?php _e('The Notifications Extension allows you to easily configure rules to receive an email when there is a change on WordPress. You do not need manually browse through the Audit Lock viewer anymore when looking for a specific change and the good thing is that you will be instantly alerted when it happens!', 'wp-security-audit-log'); ?></p>
|
35 |
-
<a class="button" href="http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
</div>
|
37 |
</div>
|
38 |
</div>
|
28 |
<p><?php _e('Below is a list of extensions that allow you to extend the functionality of WP Security Audit Log plugin for a much better auditing and monitoring experience.', 'wp-security-audit-log'); ?></p>
|
29 |
</div>
|
30 |
|
31 |
+
<div class="activity-block">
|
32 |
<h2><?php _e('Notifications Extension', 'wp-security-audit-log'); ?></h2>
|
33 |
<strong><?php _e('Get notified instantly via email when important changes are made on your WordPress!', 'wp-security-audit-log'); ?></strong>
|
34 |
<p><?php _e('The Notifications Extension allows you to easily configure rules to receive an email when there is a change on WordPress. You do not need manually browse through the Audit Lock viewer anymore when looking for a specific change and the good thing is that you will be instantly alerted when it happens!', 'wp-security-audit-log'); ?></p>
|
35 |
+
<p><a class="button" href="http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/?utm_source=plugin&utm_medium=extensionspage&utm_campaign=notifications" target="_blank"><?php _e('More Information', 'wp-security-audit-log'); ?></a></p>
|
36 |
+
</div>
|
37 |
+
|
38 |
+
<div class="">
|
39 |
+
<h2><?php _e('Reporting Extension', 'wp-security-audit-log'); ?></h2>
|
40 |
+
<strong><?php _e('Generate User, Site and Other Types of Reports from the Audit Log.', 'wp-security-audit-log'); ?></strong>
|
41 |
+
<p><?php _e('The Reporting Extension allows you to generate reports to keep track and record of the productivity, and to meet any legal and regulatory compliance your business need to adhere to. Unlike other reporting plugins WSAL Reporting Extension does not have any built-in templates that restrict you to specific type of reports, you can generate any type of report using all of the available data.', 'wp-security-audit-log'); ?></p>
|
42 |
+
<p><a class="button" href="http://www.wpwhitesecurity.com/plugins-premium-extensions/wordpress-reports/?utm_source=plugin&utm_medium=extensionspage&utm_campaign=reports" target="_blank"><?php _e('More Information', 'wp-security-audit-log'); ?></a></p>
|
43 |
</div>
|
44 |
</div>
|
45 |
</div>
|
classes/Views/Settings.php
CHANGED
@@ -92,6 +92,15 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
|
|
92 |
<input type="hidden" id="ajaxurl" value="<?php echo esc_attr(admin_url('admin-ajax.php')); ?>" />
|
93 |
<?php wp_nonce_field('wsal-settings'); ?>
|
94 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
<table class="form-table">
|
96 |
<tbody>
|
97 |
<tr>
|
92 |
<input type="hidden" id="ajaxurl" value="<?php echo esc_attr(admin_url('admin-ajax.php')); ?>" />
|
93 |
<?php wp_nonce_field('wsal-settings'); ?>
|
94 |
|
95 |
+
<div id="audit-log-adverts">
|
96 |
+
<a href="http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/?utm_source=plugin&utm_medium=settingspage&utm_campaign=notifications">
|
97 |
+
<img src="<?php echo $this->_plugin->GetBaseUrl(); ?>/img/wordpress_email_alerts_250x250.gif" width="250" height="250" alt=""/>
|
98 |
+
</a>
|
99 |
+
<a href="http://www.wpwhitesecurity.com/plugins-premium-extensions/wordpress-reports-extension/?utm_source=plugin&utm_medium=settingspage&utm_campaign=reports">
|
100 |
+
<img src="<?php echo $this->_plugin->GetBaseUrl(); ?>/img/reporting_04_250x250.gif" width="250" height="250" alt=""/>
|
101 |
+
</a>
|
102 |
+
</div>
|
103 |
+
|
104 |
<table class="form-table">
|
105 |
<tbody>
|
106 |
<tr>
|
css/settings.css
CHANGED
@@ -1,3 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.sectoken-user,
|
2 |
.sectoken-role,
|
3 |
.sectoken-other {
|
1 |
+
#audit-log-settings {
|
2 |
+
padding-right: 256px;
|
3 |
+
position: relative;
|
4 |
+
}
|
5 |
+
|
6 |
+
#audit-log-adverts {
|
7 |
+
position: absolute;
|
8 |
+
top: 3px;
|
9 |
+
right: 3px;
|
10 |
+
overflow: hidden;
|
11 |
+
}
|
12 |
+
|
13 |
+
#audit-log-adverts a {
|
14 |
+
display: block;
|
15 |
+
text-decoration: none;
|
16 |
+
margin: 4px 0;
|
17 |
+
}
|
18 |
+
|
19 |
.sectoken-user,
|
20 |
.sectoken-role,
|
21 |
.sectoken-other {
|
defaults.php
CHANGED
@@ -66,6 +66,7 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal){
|
|
66 |
array(2054, E_NOTICE, __('User updates a custom field value for a post', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in post %PostTitle%', 'wp-security-audit-log')),
|
67 |
array(2055, E_NOTICE, __('User deletes a custom field from a post', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from post %PostTitle%', 'wp-security-audit-log')),
|
68 |
array(2062, E_NOTICE, __('User updates a custom field name for a post', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in post %PostTitle%', 'wp-security-audit-log')),
|
|
|
69 |
),
|
70 |
__('Pages', 'wp-security-audit-log') => array(
|
71 |
array(2004, E_NOTICE, __('User created a new WordPress page and saved it as draft', 'wp-security-audit-log'), __('Created a new page called %PostTitle%. Page ID is %PostID%', 'wp-security-audit-log')),
|
@@ -86,6 +87,7 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal){
|
|
86 |
array(2060, E_NOTICE, __('User updates a custom field value for a page', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in page %PostTitle%', 'wp-security-audit-log')),
|
87 |
array(2061, E_NOTICE, __('User deletes a custom field from a page', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from page %PostTitle%', 'wp-security-audit-log')),
|
88 |
array(2064, E_NOTICE, __('User updates a custom field name for a page', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in page %PostTitle%', 'wp-security-audit-log')),
|
|
|
89 |
),
|
90 |
__('Custom Posts', 'wp-security-audit-log') => array(
|
91 |
array(2029, E_NOTICE, __('User created a new post with custom post type and saved it as draft', 'wp-security-audit-log'), __('Created a new custom post called %PostTitle% of type %PostType%. Post ID is %PostID%', 'wp-security-audit-log')),
|
@@ -105,6 +107,7 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal){
|
|
105 |
array(2057, E_NOTICE, __('User updates a custom field for a custom post', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
106 |
array(2058, E_NOTICE, __('User deletes a custom field from a custom post', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
107 |
array(2063, E_NOTICE, __('User updates a custom field name for a custom post', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
|
|
108 |
),
|
109 |
__('Widgets', 'wp-security-audit-log') => array(
|
110 |
array(2042, E_CRITICAL, __('User added a new widget', 'wp-security-audit-log'), __('Added a new %WidgetName% widget in %Sidebar%', 'wp-security-audit-log')),
|
66 |
array(2054, E_NOTICE, __('User updates a custom field value for a post', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in post %PostTitle%', 'wp-security-audit-log')),
|
67 |
array(2055, E_NOTICE, __('User deletes a custom field from a post', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from post %PostTitle%', 'wp-security-audit-log')),
|
68 |
array(2062, E_NOTICE, __('User updates a custom field name for a post', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in post %PostTitle%', 'wp-security-audit-log')),
|
69 |
+
array(2065, E_NOTICE, __('User modifies content for a post', 'wp-security-audit-log'), __('Modified the content of post %PostTitle%', 'wp-security-audit-log')),
|
70 |
),
|
71 |
__('Pages', 'wp-security-audit-log') => array(
|
72 |
array(2004, E_NOTICE, __('User created a new WordPress page and saved it as draft', 'wp-security-audit-log'), __('Created a new page called %PostTitle%. Page ID is %PostID%', 'wp-security-audit-log')),
|
87 |
array(2060, E_NOTICE, __('User updates a custom field value for a page', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in page %PostTitle%', 'wp-security-audit-log')),
|
88 |
array(2061, E_NOTICE, __('User deletes a custom field from a page', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from page %PostTitle%', 'wp-security-audit-log')),
|
89 |
array(2064, E_NOTICE, __('User updates a custom field name for a page', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in page %PostTitle%', 'wp-security-audit-log')),
|
90 |
+
array(2066, E_NOTICE, __('User modifies content for a page', 'wp-security-audit-log'), __('Modified the content of page %PostTitle%', 'wp-security-audit-log')),
|
91 |
),
|
92 |
__('Custom Posts', 'wp-security-audit-log') => array(
|
93 |
array(2029, E_NOTICE, __('User created a new post with custom post type and saved it as draft', 'wp-security-audit-log'), __('Created a new custom post called %PostTitle% of type %PostType%. Post ID is %PostID%', 'wp-security-audit-log')),
|
107 |
array(2057, E_NOTICE, __('User updates a custom field for a custom post', 'wp-security-audit-log'), __('Modified the value of custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
108 |
array(2058, E_NOTICE, __('User deletes a custom field from a custom post', 'wp-security-audit-log'), __('Deleted custom field %MetaKey% with value %MetaValue% from custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
109 |
array(2063, E_NOTICE, __('User updates a custom field name for a custom post', 'wp-security-audit-log'), __('Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType%', 'wp-security-audit-log')),
|
110 |
+
array(2067, E_NOTICE, __('User modifies content for a custom post', 'wp-security-audit-log'), __('Modified the content of custom post type %PostTitle%', 'wp-security-audit-log')),
|
111 |
),
|
112 |
__('Widgets', 'wp-security-audit-log') => array(
|
113 |
array(2042, E_CRITICAL, __('User added a new widget', 'wp-security-audit-log'), __('Added a new %WidgetName% widget in %Sidebar%', 'wp-security-audit-log')),
|
img/reporting_04_250x250.gif
ADDED
Binary file
|
img/wordpress_email_alerts_250x250.gif
ADDED
Binary file
|
languages/wp-security-audit-log.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
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 1.
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-security-audit-log\n"
|
7 |
-
"POT-Creation-Date: 2014-10-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -271,10 +271,28 @@ msgid ""
|
|
271 |
"happens!"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: classes/Views/Extensions.php:35
|
275 |
msgid "More Information"
|
276 |
msgstr ""
|
277 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
#: classes/Views/Help.php:6 classes/Views/Help.php:14
|
279 |
msgid "Help"
|
280 |
msgstr ""
|
@@ -408,7 +426,7 @@ msgid "Inactive"
|
|
408 |
msgstr ""
|
409 |
|
410 |
#: classes/Views/Sandbox.php:11 classes/Views/Sandbox.php:19
|
411 |
-
#: classes/Views/Settings.php:
|
412 |
msgid "Sandbox"
|
413 |
msgstr ""
|
414 |
|
@@ -420,83 +438,83 @@ msgstr ""
|
|
420 |
msgid "Settings"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: classes/Views/Settings.php:
|
424 |
msgid "Security Alerts Pruning"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: classes/Views/Settings.php:
|
428 |
msgid "(eg: 1 month)"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: classes/Views/Settings.php:
|
432 |
msgid "None"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: classes/Views/Settings.php:
|
436 |
msgid "Delete alerts older than"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: classes/Views/Settings.php:
|
440 |
msgid "(eg: 80)"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: classes/Views/Settings.php:
|
444 |
msgid "Keep up to"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: classes/Views/Settings.php:
|
448 |
msgid "alerts"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: classes/Views/Settings.php:
|
452 |
msgid "Next Scheduled Cleanup is in "
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: classes/Views/Settings.php:
|
456 |
msgid "(or %s)"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: classes/Views/Settings.php:
|
460 |
msgid "Run Manually"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: classes/Views/Settings.php:
|
464 |
msgid "Alerts Dashboard Widget"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: classes/Views/Settings.php:
|
468 |
msgid "On"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: classes/Views/Settings.php:
|
472 |
msgid "Off"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: classes/Views/Settings.php:
|
476 |
msgid "Display a dashboard widget with the latest %d security alerts."
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: classes/Views/Settings.php:
|
480 |
msgid "Can View Alerts"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: classes/Views/Settings.php:
|
484 |
msgid "Users and Roles in this list can view the security alerts"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: classes/Views/Settings.php:
|
488 |
msgid "Can Manage Plugin"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: classes/Views/Settings.php:
|
492 |
msgid "Users and Roles in this list can manage the plugin settings"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: classes/Views/Settings.php:
|
496 |
msgid "Restrict Plugin Access"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: classes/Views/Settings.php:
|
500 |
msgid ""
|
501 |
"By default all the administrators on this WordPress have access to manage "
|
502 |
"this plugin.<br/>By enabling this option only the users specified in the two "
|
@@ -504,78 +522,78 @@ msgid ""
|
|
504 |
"this plugin."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: classes/Views/Settings.php:
|
508 |
msgid "Refresh Audit View"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: classes/Views/Settings.php:
|
512 |
msgid "Automatic"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: classes/Views/Settings.php:
|
516 |
msgid "Refresh Audit View as soon as there are new events."
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: classes/Views/Settings.php:
|
520 |
msgid "Manual"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: classes/Views/Settings.php:
|
524 |
msgid "Refresh Audit View only when page is reloaded."
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: classes/Views/Settings.php:
|
528 |
msgid "Developer Options"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: classes/Views/Settings.php:
|
532 |
msgid ""
|
533 |
"Only enable these options on testing, staging and development websites. "
|
534 |
"Enabling any of the settings below on LIVE websites may cause unintended "
|
535 |
"side-effects including degraded performance."
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: classes/Views/Settings.php:
|
539 |
msgid "Data Inspector"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: classes/Views/Settings.php:
|
543 |
msgid "View data logged for each triggered alert."
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: classes/Views/Settings.php:
|
547 |
msgid "PHP Errors"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: classes/Views/Settings.php:
|
551 |
msgid "Enables sensor for alerts generated from PHP."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: classes/Views/Settings.php:
|
555 |
msgid "Request Log"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: classes/Views/Settings.php:
|
559 |
msgid "Enables logging request to file."
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: classes/Views/Settings.php:
|
563 |
msgid "Enables sandbox for testing PHP code."
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: classes/Views/Settings.php:
|
567 |
msgid "Backtrace"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: classes/Views/Settings.php:
|
571 |
msgid "Log full backtrace for PHP-generated alerts."
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: classes/Views/Settings.php:
|
575 |
msgid "Hide Plugin from Plugins Page"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: classes/Views/Settings.php:
|
579 |
msgid "Hide"
|
580 |
msgstr ""
|
581 |
|
@@ -922,713 +940,737 @@ msgid ""
|
|
922 |
"%PostTitle%"
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: defaults.php:
|
926 |
-
msgid "
|
|
|
|
|
|
|
|
|
927 |
msgstr ""
|
928 |
|
929 |
#: defaults.php:71
|
|
|
|
|
|
|
|
|
930 |
msgid "User created a new WordPress page and saved it as draft"
|
931 |
msgstr ""
|
932 |
|
933 |
-
#: defaults.php:
|
934 |
msgid "Created a new page called %PostTitle%. Page ID is %PostID%"
|
935 |
msgstr ""
|
936 |
|
937 |
-
#: defaults.php:
|
938 |
msgid "User published a WorPress page"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: defaults.php:
|
942 |
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: defaults.php:
|
946 |
msgid "User modified a published WordPress page"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: defaults.php:
|
950 |
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: defaults.php:
|
954 |
msgid "User modified a draft WordPress page"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: defaults.php:
|
958 |
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: defaults.php:
|
962 |
msgid "User permanently deleted a page from the trash"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: defaults.php:
|
966 |
msgid "Deleted the page %PostTitle%. Page ID is %PostID%"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: defaults.php:
|
970 |
msgid "User moved WordPress page to the trash"
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: defaults.php:
|
974 |
msgid "Moved the page %PostTitle% to trash"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: defaults.php:
|
978 |
msgid "User restored a WordPress page from trash"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: defaults.php:
|
982 |
msgid "Restored page %PostTitle% from trash"
|
983 |
msgstr ""
|
984 |
|
985 |
-
#: defaults.php:
|
986 |
msgid "User changed page URL"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: defaults.php:
|
990 |
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%"
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: defaults.php:
|
994 |
msgid "User changed page author"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: defaults.php:
|
998 |
msgid "Changed the author of %PostTitle% page from %OldAuthor% to %NewAuthor%"
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: defaults.php:
|
1002 |
msgid "User changed page status"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
-
#: defaults.php:
|
1006 |
msgid "Changed the status of %PostTitle% page from %OldStatus% to %NewStatus%"
|
1007 |
msgstr ""
|
1008 |
|
1009 |
-
#: defaults.php:
|
1010 |
msgid "User changed the visibility of a page post"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
-
#: defaults.php:
|
1014 |
msgid ""
|
1015 |
"Changed the visibility of %PostTitle% page from %OldVisibility% to "
|
1016 |
"%NewVisibility%"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: defaults.php:
|
1020 |
msgid "User changed the date of a page post"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: defaults.php:
|
1024 |
msgid "Changed the date of %PostTitle% page from %OldDate% to %NewDate%"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: defaults.php:
|
1028 |
msgid "User changed the parent of a page"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: defaults.php:
|
1032 |
msgid ""
|
1033 |
"Changed the parent of %PostTitle% page from %OldParentName% to %NewParentName"
|
1034 |
"%"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: defaults.php:
|
1038 |
msgid "User changes the template of a page"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: defaults.php:
|
1042 |
msgid ""
|
1043 |
"Changed the template of %PostTitle% page from %OldTemplate% to %NewTemplate%"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: defaults.php:
|
1047 |
msgid "User creates a custom field for a page"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: defaults.php:
|
1051 |
msgid ""
|
1052 |
"Created custom field %MetaKey% with value %MetaValue% in page %PostTitle%"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: defaults.php:
|
1056 |
msgid "User updates a custom field value for a page"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: defaults.php:
|
1060 |
msgid ""
|
1061 |
"Modified the value of custom field %MetaKey% from %MetaValueOld% to "
|
1062 |
"%MetaValueNew% in page %PostTitle%"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: defaults.php:
|
1066 |
msgid "User deletes a custom field from a page"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: defaults.php:
|
1070 |
msgid ""
|
1071 |
"Deleted custom field %MetaKey% with value %MetaValue% from page %PostTitle%"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: defaults.php:
|
1075 |
msgid "User updates a custom field name for a page"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: defaults.php:
|
1079 |
msgid ""
|
1080 |
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in page "
|
1081 |
"%PostTitle%"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
#: defaults.php:90
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1085 |
msgid "Custom Posts"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: defaults.php:
|
1089 |
msgid "User created a new post with custom post type and saved it as draft"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: defaults.php:
|
1093 |
msgid ""
|
1094 |
"Created a new custom post called %PostTitle% of type %PostType%. Post ID is "
|
1095 |
"%PostID%"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: defaults.php:
|
1099 |
msgid "User published a post with custom post type"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: defaults.php:
|
1103 |
msgid ""
|
1104 |
"Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: defaults.php:
|
1108 |
msgid "User modified a post with custom post type"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: defaults.php:
|
1112 |
msgid ""
|
1113 |
"Modified custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: defaults.php:
|
1117 |
msgid "User modified a draft post with custom post type"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: defaults.php:
|
1121 |
msgid ""
|
1122 |
"Modified draft custom post %PostTitle% of type is %PostType%. Post URL is "
|
1123 |
"%PostUrl%"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: defaults.php:
|
1127 |
msgid "User permanently deleted post with custom post type"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: defaults.php:
|
1131 |
msgid "Deleted custom post %PostTitle% of type %PostType%"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: defaults.php:
|
1135 |
msgid "User moved post with custom post type to trash"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: defaults.php:
|
1139 |
msgid "Moved custom post %PostTitle% to trash. Post type is %PostType%"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: defaults.php:
|
1143 |
msgid "User restored post with custom post type from trash"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: defaults.php:
|
1147 |
msgid "Restored custom post %PostTitle% of type %PostType% from trash"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: defaults.php:
|
1151 |
msgid "User changed the category of a post with custom post type"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: defaults.php:
|
1155 |
msgid ""
|
1156 |
"Changed the category(ies) of custom post %PostTitle% of type %PostType% from "
|
1157 |
"%OldCategories% to %NewCategories%"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: defaults.php:
|
1161 |
msgid "User changed the URL of a post with custom post type"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: defaults.php:
|
1165 |
msgid ""
|
1166 |
"Changed the URL of custom post %PostTitle% of type %PostType% from %OldUrl% "
|
1167 |
"to %NewUrl%"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: defaults.php:
|
1171 |
msgid "User changed the author or post with custom post type"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: defaults.php:
|
1175 |
msgid ""
|
1176 |
"Changed the author of custom post %PostTitle% of type %PostType% from "
|
1177 |
"%OldAuthor% to %NewAuthor%"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: defaults.php:
|
1181 |
msgid "User changed the status of post with custom post type"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: defaults.php:
|
1185 |
msgid ""
|
1186 |
"Changed the status of custom post %PostTitle% of type %PostType% from "
|
1187 |
"%OldStatus% to %NewStatus%"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: defaults.php:
|
1191 |
msgid "User changed the visibility of a post with custom post type"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: defaults.php:
|
1195 |
msgid ""
|
1196 |
"Changed the visibility of custom post %PostTitle% of type %PostType% from "
|
1197 |
"%OldVisibility% to %NewVisibility%"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: defaults.php:
|
1201 |
msgid "User changed the date of post with custom post type"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: defaults.php:
|
1205 |
msgid ""
|
1206 |
"Changed the date of custom post %PostTitle% of type %PostType% from %OldDate"
|
1207 |
"% to %NewDate%"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: defaults.php:
|
1211 |
msgid "User creates a custom field for a custom post"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: defaults.php:
|
1215 |
msgid ""
|
1216 |
"Created custom field %MetaKey% with value %MetaValue% in custom post "
|
1217 |
"%PostTitle% of type %PostType%"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: defaults.php:
|
1221 |
msgid "User updates a custom field for a custom post"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: defaults.php:
|
1225 |
msgid ""
|
1226 |
"Modified the value of custom field %MetaKey% from %MetaValueOld% to "
|
1227 |
"%MetaValueNew% in custom post %PostTitle% of type %PostType%"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: defaults.php:
|
1231 |
msgid "User deletes a custom field from a custom post"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: defaults.php:
|
1235 |
msgid ""
|
1236 |
"Deleted custom field %MetaKey% with value %MetaValue% from custom post "
|
1237 |
"%PostTitle% of type %PostType%"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: defaults.php:
|
1241 |
msgid "User updates a custom field name for a custom post"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: defaults.php:
|
1245 |
msgid ""
|
1246 |
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
|
1247 |
"post %PostTitle% of type %PostType%"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: defaults.php:
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
#: defaults.php:110
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1255 |
msgid "User added a new widget"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: defaults.php:
|
1259 |
msgid "Added a new %WidgetName% widget in %Sidebar%"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: defaults.php:
|
1263 |
msgid "User modified a widget"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: defaults.php:
|
1267 |
msgid "Modified the %WidgetName% widget in %Sidebar%"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: defaults.php:
|
1271 |
msgid "User deleted widget"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
-
#: defaults.php:
|
1275 |
msgid "Deleted the %WidgetName% widget from %Sidebar%"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: defaults.php:
|
1279 |
msgid "User moved widget"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: defaults.php:
|
1283 |
msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: defaults.php:
|
1287 |
msgid "User Profiles"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: defaults.php:
|
1291 |
msgid "A new user was created on WordPress"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: defaults.php:
|
1295 |
msgid ""
|
1296 |
"User %NewUserData->Username% subscribed with a role of %NewUserData->Roles%"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: defaults.php:
|
1300 |
msgid "A user created another WordPress user"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: defaults.php:
|
1304 |
msgid ""
|
1305 |
"Created a new user %NewUserData->Username% with the role of %NewUserData-"
|
1306 |
">Roles%"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: defaults.php:
|
1310 |
msgid "The role of a user was changed by another WordPress user"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: defaults.php:
|
1314 |
msgid "Changed the role of user %TargetUsername% from %OldRole% to %NewRole%"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: defaults.php:
|
1318 |
msgid "User has changed his or her password"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: defaults.php:
|
1322 |
msgid "Changed the password"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: defaults.php:
|
1326 |
msgid "A user changed another user's password"
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: defaults.php:
|
1330 |
msgid ""
|
1331 |
"Changed the password for user %TargetUserData->Username% with the role of "
|
1332 |
"%TargetUserData->Roles%"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: defaults.php:
|
1336 |
msgid "User changed his or her email address"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: defaults.php:
|
1340 |
msgid "Changed the email address from %OldEmail% to %NewEmail%"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: defaults.php:
|
1344 |
msgid "A user changed another user's email address"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: defaults.php:
|
1348 |
msgid ""
|
1349 |
"Changed the email address of user account %TargetUsername% from %OldEmail% "
|
1350 |
"to %NewEmail%"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: defaults.php:
|
1354 |
msgid "A user was deleted by another user"
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: defaults.php:
|
1358 |
msgid ""
|
1359 |
"Deleted User %TargetUserData->Username% with the role of %TargetUserData-"
|
1360 |
">Roles%"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: defaults.php:
|
1364 |
msgid "Plugins & Themes"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: defaults.php:
|
1368 |
msgid "User installed a plugin"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: defaults.php:
|
1372 |
msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: defaults.php:
|
1376 |
msgid "User activated a WordPress plugin"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: defaults.php:
|
1380 |
msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: defaults.php:
|
1384 |
msgid "User deactivated a WordPress plugin"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: defaults.php:
|
1388 |
msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%"
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: defaults.php:
|
1392 |
msgid "User uninstalled a plugin"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: defaults.php:
|
1396 |
msgid ""
|
1397 |
"Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile%"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: defaults.php:
|
1401 |
msgid "User upgraded a plugin"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: defaults.php:
|
1405 |
msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: defaults.php:
|
1409 |
msgid "User installed a theme"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: defaults.php:
|
1413 |
msgid "Installed theme \"%Theme->Name%\" in %Theme->get_template_directory%"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: defaults.php:
|
1417 |
msgid "User activated a theme"
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: defaults.php:
|
1421 |
msgid ""
|
1422 |
"Activated theme \"%Theme->Name%\", installed in %Theme-"
|
1423 |
">get_template_directory%"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
#: defaults.php:
|
1427 |
msgid "User uninstalled a theme"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
-
#: defaults.php:
|
1431 |
msgid ""
|
1432 |
"Deleted theme \"%Theme->Name%\" installed in %Theme->get_template_directory%"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: defaults.php:
|
1436 |
msgid "System Activity"
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: defaults.php:
|
1440 |
msgid "Unknown Error"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: defaults.php:
|
1444 |
msgid "An unexpected error has occurred"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: defaults.php:
|
1448 |
msgid "PHP error"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: defaults.php:
|
1452 |
-
#: defaults.php:
|
1453 |
msgid "%Message%"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: defaults.php:
|
1457 |
msgid "PHP warning"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: defaults.php:
|
1461 |
msgid "PHP notice"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: defaults.php:
|
1465 |
msgid "PHP exception"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#: defaults.php:
|
1469 |
msgid "PHP shutdown error"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#: defaults.php:
|
1473 |
msgid "Events automatically pruned by system"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: defaults.php:
|
1477 |
msgid "%EventCount% event(s) automatically deleted by system"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: defaults.php:
|
1481 |
msgid "Option Anyone Can Register in WordPress settings changed"
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#: defaults.php:
|
1485 |
msgid "%NewValue% the option \"Anyone can register\""
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: defaults.php:
|
1489 |
msgid "New User Default Role changed"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#: defaults.php:
|
1493 |
msgid "Changed the New User Default Role from %OldRole% to %NewRole%"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#: defaults.php:
|
1497 |
msgid "WordPress Administrator Notification email changed"
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: defaults.php:
|
1501 |
msgid ""
|
1502 |
"Changed the WordPress administrator notifications email address from "
|
1503 |
"%OldEmail% to %NewEmail%"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
-
#: defaults.php:
|
1507 |
msgid "WordPress was updated"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
-
#: defaults.php:
|
1511 |
msgid "Updated WordPress from version %OldVersion% to %NewVersion%"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
-
#: defaults.php:
|
1515 |
msgid "User changes the WordPress Permalinks"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: defaults.php:
|
1519 |
msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: defaults.php:
|
1523 |
msgid "MultiSite"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#: defaults.php:
|
1527 |
msgid "User granted Super Admin privileges"
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: defaults.php:
|
1531 |
msgid "Granted Super Admin privileges to %TargetUsername%"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
#: defaults.php:
|
1535 |
msgid "User revoked from Super Admin privileges"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
-
#: defaults.php:
|
1539 |
msgid "Revoked Super Admin privileges from %TargetUsername%"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
-
#: defaults.php:
|
1543 |
msgid "Existing user added to a site"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#: defaults.php:
|
1547 |
msgid ""
|
1548 |
"Added existing user %TargetUsername% with %TargetUserRole% role to site "
|
1549 |
"%SiteName%"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#: defaults.php:
|
1553 |
msgid "User removed from site"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#: defaults.php:
|
1557 |
msgid ""
|
1558 |
"Removed user %TargetUsername% with role %TargetUserRole% from %SiteName% site"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#: defaults.php:
|
1562 |
msgid "New network user created"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: defaults.php:
|
1566 |
msgid "Created a new network user %NewUserData->Username%"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: defaults.php:
|
1570 |
msgid "New site added on network"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: defaults.php:
|
1574 |
msgid "Added site %SiteName% to the network"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: defaults.php:
|
1578 |
msgid "Existing site archived"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
-
#: defaults.php:
|
1582 |
msgid "Archived site %SiteName%"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: defaults.php:
|
1586 |
msgid "Archived site has been unarchived"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#: defaults.php:
|
1590 |
msgid "Unarchived site %SiteName%"
|
1591 |
msgstr ""
|
1592 |
|
1593 |
-
#: defaults.php:
|
1594 |
msgid "Deactivated site has been activated"
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: defaults.php:
|
1598 |
msgid "Activated site %SiteName%"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: defaults.php:
|
1602 |
msgid "Site has been deactivated"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: defaults.php:
|
1606 |
msgid "Deactivated site %SiteName%"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: defaults.php:
|
1610 |
msgid "Existing site deleted from network"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: defaults.php:
|
1614 |
msgid "Deleted site %SiteName%"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: defaults.php:
|
1618 |
msgid "Activated theme on network"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: defaults.php:
|
1622 |
msgid ""
|
1623 |
"Network activated %Theme->Name% theme installed in %Theme-"
|
1624 |
">get_template_directory%"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: defaults.php:
|
1628 |
msgid "Deactivated theme from network"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: defaults.php:
|
1632 |
msgid ""
|
1633 |
"Network deactivated %Theme->Name% theme installed in %Theme-"
|
1634 |
">get_template_directory%"
|
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 1.3.0\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-security-audit-log\n"
|
7 |
+
"POT-Creation-Date: 2014-10-30 11:38:17+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
271 |
"happens!"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: classes/Views/Extensions.php:35 classes/Views/Extensions.php:42
|
275 |
msgid "More Information"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: classes/Views/Extensions.php:39
|
279 |
+
msgid "Reporting Extension"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: classes/Views/Extensions.php:40
|
283 |
+
msgid "Generate User, Site and Other Types of Reports from the Audit Log."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: classes/Views/Extensions.php:41
|
287 |
+
msgid ""
|
288 |
+
"The Reporting Extension allows you to generate reports to keep track and "
|
289 |
+
"record of the productivity, and to meet any legal and regulatory compliance "
|
290 |
+
"your business need to adhere to. Unlike other reporting plugins WSAL "
|
291 |
+
"Reporting Extension does not have any built-in templates that restrict you "
|
292 |
+
"to specific type of reports, you can generate any type of report using all "
|
293 |
+
"of the available data."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
#: classes/Views/Help.php:6 classes/Views/Help.php:14
|
297 |
msgid "Help"
|
298 |
msgstr ""
|
426 |
msgstr ""
|
427 |
|
428 |
#: classes/Views/Sandbox.php:11 classes/Views/Sandbox.php:19
|
429 |
+
#: classes/Views/Settings.php:281
|
430 |
msgid "Sandbox"
|
431 |
msgstr ""
|
432 |
|
438 |
msgid "Settings"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: classes/Views/Settings.php:107
|
442 |
msgid "Security Alerts Pruning"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: classes/Views/Settings.php:110 classes/Views/Settings.php:118
|
446 |
msgid "(eg: 1 month)"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: classes/Views/Settings.php:114
|
450 |
msgid "None"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: classes/Views/Settings.php:122
|
454 |
msgid "Delete alerts older than"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: classes/Views/Settings.php:130
|
458 |
msgid "(eg: 80)"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: classes/Views/Settings.php:134
|
462 |
msgid "Keep up to"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: classes/Views/Settings.php:139
|
466 |
msgid "alerts"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: classes/Views/Settings.php:143
|
470 |
msgid "Next Scheduled Cleanup is in "
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: classes/Views/Settings.php:147
|
474 |
msgid "(or %s)"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: classes/Views/Settings.php:148
|
478 |
msgid "Run Manually"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: classes/Views/Settings.php:154
|
482 |
msgid "Alerts Dashboard Widget"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: classes/Views/Settings.php:160
|
486 |
msgid "On"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: classes/Views/Settings.php:165
|
490 |
msgid "Off"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: classes/Views/Settings.php:170
|
494 |
msgid "Display a dashboard widget with the latest %d security alerts."
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: classes/Views/Settings.php:178
|
498 |
msgid "Can View Alerts"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: classes/Views/Settings.php:185
|
502 |
msgid "Users and Roles in this list can view the security alerts"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: classes/Views/Settings.php:200
|
506 |
msgid "Can Manage Plugin"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: classes/Views/Settings.php:207
|
510 |
msgid "Users and Roles in this list can manage the plugin settings"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: classes/Views/Settings.php:222
|
514 |
msgid "Restrict Plugin Access"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: classes/Views/Settings.php:230
|
518 |
msgid ""
|
519 |
"By default all the administrators on this WordPress have access to manage "
|
520 |
"this plugin.<br/>By enabling this option only the users specified in the two "
|
522 |
"this plugin."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: classes/Views/Settings.php:237
|
526 |
msgid "Refresh Audit View"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: classes/Views/Settings.php:243
|
530 |
msgid "Automatic"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: classes/Views/Settings.php:245
|
534 |
msgid "Refresh Audit View as soon as there are new events."
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: classes/Views/Settings.php:249
|
538 |
msgid "Manual"
|
539 |
msgstr ""
|
540 |
|
541 |
+
#: classes/Views/Settings.php:251
|
542 |
msgid "Refresh Audit View only when page is reloaded."
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: classes/Views/Settings.php:257
|
546 |
msgid "Developer Options"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: classes/Views/Settings.php:265
|
550 |
msgid ""
|
551 |
"Only enable these options on testing, staging and development websites. "
|
552 |
"Enabling any of the settings below on LIVE websites may cause unintended "
|
553 |
"side-effects including degraded performance."
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: classes/Views/Settings.php:269
|
557 |
msgid "Data Inspector"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: classes/Views/Settings.php:270
|
561 |
msgid "View data logged for each triggered alert."
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: classes/Views/Settings.php:273
|
565 |
msgid "PHP Errors"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: classes/Views/Settings.php:274
|
569 |
msgid "Enables sensor for alerts generated from PHP."
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: classes/Views/Settings.php:277
|
573 |
msgid "Request Log"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: classes/Views/Settings.php:278
|
577 |
msgid "Enables logging request to file."
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: classes/Views/Settings.php:282
|
581 |
msgid "Enables sandbox for testing PHP code."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: classes/Views/Settings.php:285
|
585 |
msgid "Backtrace"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: classes/Views/Settings.php:286
|
589 |
msgid "Log full backtrace for PHP-generated alerts."
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: classes/Views/Settings.php:304
|
593 |
msgid "Hide Plugin from Plugins Page"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: classes/Views/Settings.php:310
|
597 |
msgid "Hide"
|
598 |
msgstr ""
|
599 |
|
940 |
"%PostTitle%"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: defaults.php:69
|
944 |
+
msgid "User modifies content for a post"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: defaults.php:69
|
948 |
+
msgid "Modified the content of post %PostTitle%"
|
949 |
msgstr ""
|
950 |
|
951 |
#: defaults.php:71
|
952 |
+
msgid "Pages"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: defaults.php:72
|
956 |
msgid "User created a new WordPress page and saved it as draft"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: defaults.php:72
|
960 |
msgid "Created a new page called %PostTitle%. Page ID is %PostID%"
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: defaults.php:73
|
964 |
msgid "User published a WorPress page"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: defaults.php:73
|
968 |
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: defaults.php:74
|
972 |
msgid "User modified a published WordPress page"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: defaults.php:74
|
976 |
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: defaults.php:75
|
980 |
msgid "User modified a draft WordPress page"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: defaults.php:75
|
984 |
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: defaults.php:76
|
988 |
msgid "User permanently deleted a page from the trash"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: defaults.php:76
|
992 |
msgid "Deleted the page %PostTitle%. Page ID is %PostID%"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: defaults.php:77
|
996 |
msgid "User moved WordPress page to the trash"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: defaults.php:77
|
1000 |
msgid "Moved the page %PostTitle% to trash"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: defaults.php:78
|
1004 |
msgid "User restored a WordPress page from trash"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: defaults.php:78
|
1008 |
msgid "Restored page %PostTitle% from trash"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: defaults.php:79
|
1012 |
msgid "User changed page URL"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: defaults.php:79
|
1016 |
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: defaults.php:80
|
1020 |
msgid "User changed page author"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: defaults.php:80
|
1024 |
msgid "Changed the author of %PostTitle% page from %OldAuthor% to %NewAuthor%"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: defaults.php:81
|
1028 |
msgid "User changed page status"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: defaults.php:81
|
1032 |
msgid "Changed the status of %PostTitle% page from %OldStatus% to %NewStatus%"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: defaults.php:82
|
1036 |
msgid "User changed the visibility of a page post"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: defaults.php:82
|
1040 |
msgid ""
|
1041 |
"Changed the visibility of %PostTitle% page from %OldVisibility% to "
|
1042 |
"%NewVisibility%"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: defaults.php:83
|
1046 |
msgid "User changed the date of a page post"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: defaults.php:83
|
1050 |
msgid "Changed the date of %PostTitle% page from %OldDate% to %NewDate%"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
+
#: defaults.php:84
|
1054 |
msgid "User changed the parent of a page"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: defaults.php:84
|
1058 |
msgid ""
|
1059 |
"Changed the parent of %PostTitle% page from %OldParentName% to %NewParentName"
|
1060 |
"%"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: defaults.php:85
|
1064 |
msgid "User changes the template of a page"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: defaults.php:85
|
1068 |
msgid ""
|
1069 |
"Changed the template of %PostTitle% page from %OldTemplate% to %NewTemplate%"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: defaults.php:86
|
1073 |
msgid "User creates a custom field for a page"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: defaults.php:86
|
1077 |
msgid ""
|
1078 |
"Created custom field %MetaKey% with value %MetaValue% in page %PostTitle%"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: defaults.php:87
|
1082 |
msgid "User updates a custom field value for a page"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: defaults.php:87
|
1086 |
msgid ""
|
1087 |
"Modified the value of custom field %MetaKey% from %MetaValueOld% to "
|
1088 |
"%MetaValueNew% in page %PostTitle%"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: defaults.php:88
|
1092 |
msgid "User deletes a custom field from a page"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: defaults.php:88
|
1096 |
msgid ""
|
1097 |
"Deleted custom field %MetaKey% with value %MetaValue% from page %PostTitle%"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: defaults.php:89
|
1101 |
msgid "User updates a custom field name for a page"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: defaults.php:89
|
1105 |
msgid ""
|
1106 |
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in page "
|
1107 |
"%PostTitle%"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: defaults.php:90
|
1111 |
+
msgid "User modifies content for a page"
|
1112 |
+
msgstr ""
|
1113 |
+
|
1114 |
+
#: defaults.php:90
|
1115 |
+
msgid "Modified the content of page %PostTitle%"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: defaults.php:92
|
1119 |
msgid "Custom Posts"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: defaults.php:93
|
1123 |
msgid "User created a new post with custom post type and saved it as draft"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: defaults.php:93
|
1127 |
msgid ""
|
1128 |
"Created a new custom post called %PostTitle% of type %PostType%. Post ID is "
|
1129 |
"%PostID%"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: defaults.php:94
|
1133 |
msgid "User published a post with custom post type"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: defaults.php:94
|
1137 |
msgid ""
|
1138 |
"Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: defaults.php:95
|
1142 |
msgid "User modified a post with custom post type"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: defaults.php:95
|
1146 |
msgid ""
|
1147 |
"Modified custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: defaults.php:96
|
1151 |
msgid "User modified a draft post with custom post type"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: defaults.php:96
|
1155 |
msgid ""
|
1156 |
"Modified draft custom post %PostTitle% of type is %PostType%. Post URL is "
|
1157 |
"%PostUrl%"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: defaults.php:97
|
1161 |
msgid "User permanently deleted post with custom post type"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: defaults.php:97
|
1165 |
msgid "Deleted custom post %PostTitle% of type %PostType%"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: defaults.php:98
|
1169 |
msgid "User moved post with custom post type to trash"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: defaults.php:98
|
1173 |
msgid "Moved custom post %PostTitle% to trash. Post type is %PostType%"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: defaults.php:99
|
1177 |
msgid "User restored post with custom post type from trash"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: defaults.php:99
|
1181 |
msgid "Restored custom post %PostTitle% of type %PostType% from trash"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: defaults.php:100
|
1185 |
msgid "User changed the category of a post with custom post type"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: defaults.php:100
|
1189 |
msgid ""
|
1190 |
"Changed the category(ies) of custom post %PostTitle% of type %PostType% from "
|
1191 |
"%OldCategories% to %NewCategories%"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: defaults.php:101
|
1195 |
msgid "User changed the URL of a post with custom post type"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: defaults.php:101
|
1199 |
msgid ""
|
1200 |
"Changed the URL of custom post %PostTitle% of type %PostType% from %OldUrl% "
|
1201 |
"to %NewUrl%"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: defaults.php:102
|
1205 |
msgid "User changed the author or post with custom post type"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: defaults.php:102
|
1209 |
msgid ""
|
1210 |
"Changed the author of custom post %PostTitle% of type %PostType% from "
|
1211 |
"%OldAuthor% to %NewAuthor%"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
+
#: defaults.php:103
|
1215 |
msgid "User changed the status of post with custom post type"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: defaults.php:103
|
1219 |
msgid ""
|
1220 |
"Changed the status of custom post %PostTitle% of type %PostType% from "
|
1221 |
"%OldStatus% to %NewStatus%"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: defaults.php:104
|
1225 |
msgid "User changed the visibility of a post with custom post type"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: defaults.php:104
|
1229 |
msgid ""
|
1230 |
"Changed the visibility of custom post %PostTitle% of type %PostType% from "
|
1231 |
"%OldVisibility% to %NewVisibility%"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: defaults.php:105
|
1235 |
msgid "User changed the date of post with custom post type"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: defaults.php:105
|
1239 |
msgid ""
|
1240 |
"Changed the date of custom post %PostTitle% of type %PostType% from %OldDate"
|
1241 |
"% to %NewDate%"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: defaults.php:106
|
1245 |
msgid "User creates a custom field for a custom post"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: defaults.php:106
|
1249 |
msgid ""
|
1250 |
"Created custom field %MetaKey% with value %MetaValue% in custom post "
|
1251 |
"%PostTitle% of type %PostType%"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: defaults.php:107
|
1255 |
msgid "User updates a custom field for a custom post"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: defaults.php:107
|
1259 |
msgid ""
|
1260 |
"Modified the value of custom field %MetaKey% from %MetaValueOld% to "
|
1261 |
"%MetaValueNew% in custom post %PostTitle% of type %PostType%"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: defaults.php:108
|
1265 |
msgid "User deletes a custom field from a custom post"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: defaults.php:108
|
1269 |
msgid ""
|
1270 |
"Deleted custom field %MetaKey% with value %MetaValue% from custom post "
|
1271 |
"%PostTitle% of type %PostType%"
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: defaults.php:109
|
1275 |
msgid "User updates a custom field name for a custom post"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: defaults.php:109
|
1279 |
msgid ""
|
1280 |
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
|
1281 |
"post %PostTitle% of type %PostType%"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: defaults.php:110
|
1285 |
+
msgid "User modifies content for a custom post"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
#: defaults.php:110
|
1289 |
+
msgid "Modified the content of custom post type %PostTitle%"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: defaults.php:112
|
1293 |
+
msgid "Widgets"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: defaults.php:113
|
1297 |
msgid "User added a new widget"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: defaults.php:113
|
1301 |
msgid "Added a new %WidgetName% widget in %Sidebar%"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: defaults.php:114
|
1305 |
msgid "User modified a widget"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: defaults.php:114
|
1309 |
msgid "Modified the %WidgetName% widget in %Sidebar%"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: defaults.php:115
|
1313 |
msgid "User deleted widget"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: defaults.php:115
|
1317 |
msgid "Deleted the %WidgetName% widget from %Sidebar%"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
+
#: defaults.php:116
|
1321 |
msgid "User moved widget"
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: defaults.php:116
|
1325 |
msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: defaults.php:118
|
1329 |
msgid "User Profiles"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: defaults.php:119
|
1333 |
msgid "A new user was created on WordPress"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: defaults.php:119
|
1337 |
msgid ""
|
1338 |
"User %NewUserData->Username% subscribed with a role of %NewUserData->Roles%"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: defaults.php:120
|
1342 |
msgid "A user created another WordPress user"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: defaults.php:120
|
1346 |
msgid ""
|
1347 |
"Created a new user %NewUserData->Username% with the role of %NewUserData-"
|
1348 |
">Roles%"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: defaults.php:121
|
1352 |
msgid "The role of a user was changed by another WordPress user"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: defaults.php:121
|
1356 |
msgid "Changed the role of user %TargetUsername% from %OldRole% to %NewRole%"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: defaults.php:122
|
1360 |
msgid "User has changed his or her password"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: defaults.php:122
|
1364 |
msgid "Changed the password"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: defaults.php:123
|
1368 |
msgid "A user changed another user's password"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: defaults.php:123
|
1372 |
msgid ""
|
1373 |
"Changed the password for user %TargetUserData->Username% with the role of "
|
1374 |
"%TargetUserData->Roles%"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: defaults.php:124
|
1378 |
msgid "User changed his or her email address"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: defaults.php:124
|
1382 |
msgid "Changed the email address from %OldEmail% to %NewEmail%"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: defaults.php:125
|
1386 |
msgid "A user changed another user's email address"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: defaults.php:125
|
1390 |
msgid ""
|
1391 |
"Changed the email address of user account %TargetUsername% from %OldEmail% "
|
1392 |
"to %NewEmail%"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: defaults.php:126
|
1396 |
msgid "A user was deleted by another user"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: defaults.php:126
|
1400 |
msgid ""
|
1401 |
"Deleted User %TargetUserData->Username% with the role of %TargetUserData-"
|
1402 |
">Roles%"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: defaults.php:128
|
1406 |
msgid "Plugins & Themes"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: defaults.php:129
|
1410 |
msgid "User installed a plugin"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: defaults.php:129
|
1414 |
msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: defaults.php:130
|
1418 |
msgid "User activated a WordPress plugin"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: defaults.php:130
|
1422 |
msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: defaults.php:131
|
1426 |
msgid "User deactivated a WordPress plugin"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: defaults.php:131
|
1430 |
msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: defaults.php:132
|
1434 |
msgid "User uninstalled a plugin"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: defaults.php:132
|
1438 |
msgid ""
|
1439 |
"Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile%"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: defaults.php:133
|
1443 |
msgid "User upgraded a plugin"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: defaults.php:133
|
1447 |
msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: defaults.php:134
|
1451 |
msgid "User installed a theme"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: defaults.php:134
|
1455 |
msgid "Installed theme \"%Theme->Name%\" in %Theme->get_template_directory%"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
+
#: defaults.php:135
|
1459 |
msgid "User activated a theme"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: defaults.php:135
|
1463 |
msgid ""
|
1464 |
"Activated theme \"%Theme->Name%\", installed in %Theme-"
|
1465 |
">get_template_directory%"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: defaults.php:136
|
1469 |
msgid "User uninstalled a theme"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: defaults.php:136
|
1473 |
msgid ""
|
1474 |
"Deleted theme \"%Theme->Name%\" installed in %Theme->get_template_directory%"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: defaults.php:138
|
1478 |
msgid "System Activity"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: defaults.php:139
|
1482 |
msgid "Unknown Error"
|
1483 |
msgstr ""
|
1484 |
|
1485 |
+
#: defaults.php:139
|
1486 |
msgid "An unexpected error has occurred"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: defaults.php:140
|
1490 |
msgid "PHP error"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: defaults.php:140 defaults.php:141 defaults.php:142 defaults.php:143
|
1494 |
+
#: defaults.php:144
|
1495 |
msgid "%Message%"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: defaults.php:141
|
1499 |
msgid "PHP warning"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: defaults.php:142
|
1503 |
msgid "PHP notice"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: defaults.php:143
|
1507 |
msgid "PHP exception"
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: defaults.php:144
|
1511 |
msgid "PHP shutdown error"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: defaults.php:145
|
1515 |
msgid "Events automatically pruned by system"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: defaults.php:145
|
1519 |
msgid "%EventCount% event(s) automatically deleted by system"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: defaults.php:146
|
1523 |
msgid "Option Anyone Can Register in WordPress settings changed"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: defaults.php:146
|
1527 |
msgid "%NewValue% the option \"Anyone can register\""
|
1528 |
msgstr ""
|
1529 |
|
1530 |
+
#: defaults.php:147
|
1531 |
msgid "New User Default Role changed"
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: defaults.php:147
|
1535 |
msgid "Changed the New User Default Role from %OldRole% to %NewRole%"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: defaults.php:148
|
1539 |
msgid "WordPress Administrator Notification email changed"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: defaults.php:148
|
1543 |
msgid ""
|
1544 |
"Changed the WordPress administrator notifications email address from "
|
1545 |
"%OldEmail% to %NewEmail%"
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: defaults.php:149
|
1549 |
msgid "WordPress was updated"
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: defaults.php:149
|
1553 |
msgid "Updated WordPress from version %OldVersion% to %NewVersion%"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: defaults.php:150
|
1557 |
msgid "User changes the WordPress Permalinks"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: defaults.php:150
|
1561 |
msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%"
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: defaults.php:152
|
1565 |
msgid "MultiSite"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: defaults.php:153
|
1569 |
msgid "User granted Super Admin privileges"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: defaults.php:153
|
1573 |
msgid "Granted Super Admin privileges to %TargetUsername%"
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: defaults.php:154
|
1577 |
msgid "User revoked from Super Admin privileges"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: defaults.php:154
|
1581 |
msgid "Revoked Super Admin privileges from %TargetUsername%"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: defaults.php:155
|
1585 |
msgid "Existing user added to a site"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: defaults.php:155
|
1589 |
msgid ""
|
1590 |
"Added existing user %TargetUsername% with %TargetUserRole% role to site "
|
1591 |
"%SiteName%"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: defaults.php:156
|
1595 |
msgid "User removed from site"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: defaults.php:156
|
1599 |
msgid ""
|
1600 |
"Removed user %TargetUsername% with role %TargetUserRole% from %SiteName% site"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: defaults.php:157
|
1604 |
msgid "New network user created"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: defaults.php:157
|
1608 |
msgid "Created a new network user %NewUserData->Username%"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: defaults.php:158
|
1612 |
msgid "New site added on network"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: defaults.php:158
|
1616 |
msgid "Added site %SiteName% to the network"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: defaults.php:159
|
1620 |
msgid "Existing site archived"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: defaults.php:159
|
1624 |
msgid "Archived site %SiteName%"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: defaults.php:160
|
1628 |
msgid "Archived site has been unarchived"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: defaults.php:160
|
1632 |
msgid "Unarchived site %SiteName%"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: defaults.php:161
|
1636 |
msgid "Deactivated site has been activated"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: defaults.php:161
|
1640 |
msgid "Activated site %SiteName%"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: defaults.php:162
|
1644 |
msgid "Site has been deactivated"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: defaults.php:162
|
1648 |
msgid "Deactivated site %SiteName%"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: defaults.php:163
|
1652 |
msgid "Existing site deleted from network"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: defaults.php:163
|
1656 |
msgid "Deleted site %SiteName%"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: defaults.php:164
|
1660 |
msgid "Activated theme on network"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: defaults.php:164
|
1664 |
msgid ""
|
1665 |
"Network activated %Theme->Name% theme installed in %Theme-"
|
1666 |
">get_template_directory%"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: defaults.php:165
|
1670 |
msgid "Deactivated theme from network"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: defaults.php:165
|
1674 |
msgid ""
|
1675 |
"Network deactivated %Theme->Name% theme installed in %Theme-"
|
1676 |
">get_template_directory%"
|
readme.txt
CHANGED
@@ -6,20 +6,20 @@ 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
|
8 |
Requires at least: 3.6
|
9 |
-
Tested up to: 4.0
|
10 |
-
Stable tag: 1.
|
11 |
|
12 |
Identify WordPress issues before they become a security problem by keeping an audit log of users and all of the under the hood WordPress activity.
|
13 |
|
14 |
== Description ==
|
15 |
**Note: This plugin requires PHP 5.3 or higher to be activated because older versions of PHP are no longer maintained by PHP themselves, which make them prone to security issues. For more information or if you need assistance with your version of PHP please get in touch with us by using our [contact form](https://www.wpwhitesecurity.com/contact-wp-white-security/).**
|
16 |
|
17 |
-
Keep an audit log and track of everything that is happening on your WordPress and [WordPress multisite](http://www.wpwhitesecurity.com/wordpress-plugins/wp-security-audit-log-plugin-features-wordpress-multisite/) with WP Security Audit Log plugin to ensure user productivity and identify WordPress security issues before they become a security problem. WP Security Audit Log already helps thousands of WordPress administrators, owners and security professionals ensure the security of their websites and blogs. Ensure the security of your WordPress too by installing WP Security Audit Log. The community's favourite security monitoring and auditing plugin and is developed by WordPress Security Consultants and Professionals [WP White Security](http://www.wpwhitesecurity.com/wordpress-security-services/).
|
18 |
|
19 |
> <strong>Free and Premium Support</strong><br>
|
20 |
>
|
21 |
> WP White Security provides support for WP Security Audit Log plugin on the WordPress forums for free, though please note that it is free support hence it is not always possible to answer all questions on a timely manner, although we do try.
|
22 |
-
> Personalized premium support is available via email to anyone who purchases the [
|
23 |
|
24 |
= Keep A WordPress Security Audit Log & Identify WordPress Security Issues =
|
25 |
WP Security Audit Log keeps a log of everything happening on your WordPress blog or website and WordPress multisite network. By using WP Security Audit Log security plugin it is very easy to track suspicious user activity before it becomes a problem or a security issue. A security alert is generated by the plugin when:
|
@@ -60,7 +60,12 @@ Refer to the complete list of [WordPress Security Audit Alerts](http://www.wpwhi
|
|
60 |
= Get Notified Instantly of Changes on Your WordPress =
|
61 |
<strong>Get notified instantly via email of important changes happening on your blogs and websites running on WordPress and WordPress multisite.</strong>
|
62 |
|
63 |
-
Use the [WSAL Notifications Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/) to configure monitoring rules and get notified via email of specific actions. For example you can setup notifications rules to be alerted via email should any WordPress user logs in to your WordPress outside office hours. The email alerts include all the details a WordPress administrator or owner might need, such as the source IP address, user, user role, date, time, details about the actual action and much more.
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
= WP Security Audit Log for WordPress Multisite =
|
66 |
WP Security Audit Log is the first tracking and audit WordPress security monitoring plugin that supports WordPress multisite network installations and can monitor activity on such WordPress multisite network installations.
|
@@ -136,6 +141,10 @@ Yes, WP Security Audit Log works on WordPress Multisite networks, i.e. it can mo
|
|
136 |
|
137 |
= Can I receive an email notification when a specific change happens on WordPress? =
|
138 |
Yes it is possible to do so with the [WSAL Notifications Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/). This plugin extension enables you to configure triggers to monitor for specific changes and when such changes take place an email is automatically sent to your email address of choice with all the details of such change such as the Alert ID, user, user role, date, time, details about the actual change and more.
|
|
|
|
|
|
|
|
|
139 |
== Screenshots ==
|
140 |
|
141 |
1. The Audit Log Viewer from where the WordPress administrator can see all the security events generated by WP Security Audit Log WordPress plugin.
|
@@ -146,6 +155,15 @@ Yes it is possible to do so with the [WSAL Notifications Extension](http://www.w
|
|
146 |
|
147 |
== Changelog ==
|
148 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
149 |
= 1.2.9 (2014-10-21) =
|
150 |
* Bug Fix
|
151 |
* Fixed an issue with the queries used for the alerts pruning as reported in this [support ticket](https://wordpress.org/support/topic/this-version-of-mysql-doesnt-yet-support).
|
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
|
8 |
Requires at least: 3.6
|
9 |
+
Tested up to: 4.0.1
|
10 |
+
Stable tag: 1.3.0
|
11 |
|
12 |
Identify WordPress issues before they become a security problem by keeping an audit log of users and all of the under the hood WordPress activity.
|
13 |
|
14 |
== Description ==
|
15 |
**Note: This plugin requires PHP 5.3 or higher to be activated because older versions of PHP are no longer maintained by PHP themselves, which make them prone to security issues. For more information or if you need assistance with your version of PHP please get in touch with us by using our [contact form](https://www.wpwhitesecurity.com/contact-wp-white-security/).**
|
16 |
|
17 |
+
Keep an audit log and track of everything that is happening on your WordPress and [WordPress multisite](http://www.wpwhitesecurity.com/wordpress-plugins/wp-security-audit-log-plugin-features-wordpress-multisite/) with WP Security Audit Log plugin to ensure user productivity and identify WordPress security issues before they become a security problem. WP Security Audit Log, WordPress' most comprehensive monitoring and audit log plugin already helps thousands of WordPress administrators, owners and security professionals ensure the security of their websites and blogs. Ensure the security of your WordPress too by installing WP Security Audit Log. The community's favourite security monitoring and auditing plugin and is developed by WordPress Security Consultants and Professionals [WP White Security](http://www.wpwhitesecurity.com/wordpress-security-services/).
|
18 |
|
19 |
> <strong>Free and Premium Support</strong><br>
|
20 |
>
|
21 |
> WP White Security provides support for WP Security Audit Log plugin on the WordPress forums for free, though please note that it is free support hence it is not always possible to answer all questions on a timely manner, although we do try.
|
22 |
+
> Personalized premium support is available via email to anyone who purchases any of the [Premium Extensions](http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-log/extensions/), such as the [Notifications](http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/) and [Reporting](http://www.wpwhitesecurity.com/plugins-premium-extensions/wordpress-reports-extension/) extensions.
|
23 |
|
24 |
= Keep A WordPress Security Audit Log & Identify WordPress Security Issues =
|
25 |
WP Security Audit Log keeps a log of everything happening on your WordPress blog or website and WordPress multisite network. By using WP Security Audit Log security plugin it is very easy to track suspicious user activity before it becomes a problem or a security issue. A security alert is generated by the plugin when:
|
60 |
= Get Notified Instantly of Changes on Your WordPress =
|
61 |
<strong>Get notified instantly via email of important changes happening on your blogs and websites running on WordPress and WordPress multisite.</strong>
|
62 |
|
63 |
+
Use the premium [WSAL Notifications Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/) to configure monitoring rules and get notified via email of specific actions. For example you can setup notifications rules to be alerted via email should any WordPress user logs in to your WordPress outside office hours. The email alerts include all the details a WordPress administrator or owner might need, such as the source IP address, user, user role, date, time, details about the actual action and much more.
|
64 |
+
|
65 |
+
= Generate HTML and CSV WordPress Reports =
|
66 |
+
<strong>Generate WordPress activity reports to ensure users' productivity and meet any legal and regulatory compliance requirements your business needs to adhere to.</strong>
|
67 |
+
|
68 |
+
Use the premium [WSAL Reporting Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/wordpress-reports-extension/) to generate any type of WordPress report. For example you can generate a WordPress user or group of users activity report, specific role activity report and also site activity report in case you are running WordPress multisite. Unlike other WordPress reports plugins, WSAL Reporting Extension does not have templates that restrict you to specific reports types, but it allows you to choose any data source for your reports.
|
69 |
|
70 |
= WP Security Audit Log for WordPress Multisite =
|
71 |
WP Security Audit Log is the first tracking and audit WordPress security monitoring plugin that supports WordPress multisite network installations and can monitor activity on such WordPress multisite network installations.
|
141 |
|
142 |
= Can I receive an email notification when a specific change happens on WordPress? =
|
143 |
Yes it is possible to do so with the [WSAL Notifications Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/email-notifications-wordpress/). This plugin extension enables you to configure triggers to monitor for specific changes and when such changes take place an email is automatically sent to your email address of choice with all the details of such change such as the Alert ID, user, user role, date, time, details about the actual change and more.
|
144 |
+
|
145 |
+
= Can I generate reports from the WordPress security audit log? =
|
146 |
+
Yes it is possible to do so with the premium [WSAL Reporting Extension](http://www.wpwhitesecurity.com/plugins-premium-extensions/wordpress-reports-extension/). This plugin extension allows you to generate any type of WordPress report using any type of data source. Reports can be generated in HTML and CSV format.
|
147 |
+
|
148 |
== Screenshots ==
|
149 |
|
150 |
1. The Audit Log Viewer from where the WordPress administrator can see all the security events generated by WP Security Audit Log WordPress plugin.
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.3.0 (2014-10-30) =
|
159 |
+
* New WordPress Security Alerts
|
160 |
+
* Alert 2065: User modified the content of a blog post
|
161 |
+
* Alert 2066: User modified the content of a WordPress page
|
162 |
+
* Alert 2067: User modified the content of a custom post type
|
163 |
+
|
164 |
+
* Improvements
|
165 |
+
* We have also improved the code of some of the sensors which monitor the WordPress activity
|
166 |
+
|
167 |
= 1.2.9 (2014-10-21) =
|
168 |
* Bug Fix
|
169 |
* Fixed an issue with the queries used for the alerts pruning as reported in this [support ticket](https://wordpress.org/support/topic/this-version-of-mysql-doesnt-yet-support).
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Audit Log
|
|
4 |
Plugin URI: http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-log/
|
5 |
Description: Identify WordPress security issues before they become a problem and keep track of everything happening on your WordPress, including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log will generate a security alert for everything that happens on your WordPress blog or website. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
Author: WP White Security
|
7 |
-
Version: 1.
|
8 |
Text Domain: wp-security-audit-log
|
9 |
Author URI: http://www.wpwhitesecurity.com/
|
10 |
License: GPL2
|
4 |
Plugin URI: http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-log/
|
5 |
Description: Identify WordPress security issues before they become a problem and keep track of everything happening on your WordPress, including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log will generate a security alert for everything that happens on your WordPress blog or website. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
Author: WP White Security
|
7 |
+
Version: 1.3.0
|
8 |
Text Domain: wp-security-audit-log
|
9 |
Author URI: http://www.wpwhitesecurity.com/
|
10 |
License: GPL2
|