Version Description
(2015-04-16) = * New Security Alerts * 5010: plugin created new tables in the WordPress database * 5011: plugin modified the structure of a number of tables in the WordPress database * 5012: plugin deleted tables from the WordPress database * 5013: theme created new tables in the WordPress database * 5014: theme modified the structure of a number of tables in the WordPress database * 5015: theme deleted tables from the WordPress database * 5016: an unknown component created new tables in the WordPress database * 5017: an unknown component theme modified the structure of a number of tables in the WordPress database * 5018: an unknown component theme deleted tables from the WordPress database * 2052: a user changed the parent of a category
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 1.6.0 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.6.0
- classes/AuditLogListView.php +2 -2
- classes/Sensors/Content.php +25 -0
- classes/Sensors/Database.php +130 -0
- classes/Sensors/Files.php +1 -2
- defaults.php +12 -0
- languages/wp-security-audit-log.pot +1835 -1789
- readme.txt +14 -1
- wp-security-audit-log.php +1 -1
@@ -126,7 +126,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
126 |
return $cols;
|
127 |
}
|
128 |
|
129 |
-
public function column_cb(
|
130 |
return '<input type="checkbox" value="'.$item->id.'" '
|
131 |
. 'name="'.esc_attr($this->_args['singular']).'[]"/>';
|
132 |
}
|
@@ -143,7 +143,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
143 |
);
|
144 |
}
|
145 |
|
146 |
-
public function column_default(
|
147 |
switch($column_name){
|
148 |
case 'read':
|
149 |
return '<span class="log-read log-read-'
|
126 |
return $cols;
|
127 |
}
|
128 |
|
129 |
+
public function column_cb($item){
|
130 |
return '<input type="checkbox" value="'.$item->id.'" '
|
131 |
. 'name="'.esc_attr($this->_args['singular']).'[]"/>';
|
132 |
}
|
143 |
);
|
144 |
}
|
145 |
|
146 |
+
public function column_default($item, $column_name){
|
147 |
switch($column_name){
|
148 |
case 'read':
|
149 |
return '<span class="log-read log-read-'
|
@@ -8,6 +8,7 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
|
|
8 |
add_action('delete_post', array($this, 'EventPostDeleted'), 10, 1);
|
9 |
add_action('wp_trash_post', array($this, 'EventPostTrashed'), 10, 1);
|
10 |
add_action('untrash_post', array($this, 'EventPostUntrashed'));
|
|
|
11 |
}
|
12 |
|
13 |
protected function GetEventTypeForPostType($post, $typePost, $typePage, $typeCustom){
|
@@ -415,4 +416,28 @@ class WSAL_Sensors_Content extends WSAL_AbstractSensor {
|
|
415 |
}
|
416 |
}
|
417 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
418 |
}
|
8 |
add_action('delete_post', array($this, 'EventPostDeleted'), 10, 1);
|
9 |
add_action('wp_trash_post', array($this, 'EventPostTrashed'), 10, 1);
|
10 |
add_action('untrash_post', array($this, 'EventPostUntrashed'));
|
11 |
+
add_action('edit_category', array($this, 'EventChangedCategoryParent'));
|
12 |
}
|
13 |
|
14 |
protected function GetEventTypeForPostType($post, $typePost, $typePage, $typeCustom){
|
416 |
}
|
417 |
}
|
418 |
}
|
419 |
+
|
420 |
+
public function EventChangedCategoryParent() {
|
421 |
+
if (empty($_POST)) return;
|
422 |
+
if (!current_user_can("manage_categories")) return;
|
423 |
+
if(isset($_POST['name'])) {
|
424 |
+
$category = get_category($_POST['tag_ID']);
|
425 |
+
if ( $category->parent != 0) {
|
426 |
+
$oldParent = get_category($category->parent);
|
427 |
+
$oldParentName = (empty($oldParent))? 'no parent' : $oldParent->name;
|
428 |
+
} else {
|
429 |
+
$oldParentName = 'no parent';
|
430 |
+
}
|
431 |
+
if(isset($_POST['parent'])) {
|
432 |
+
$newParent = get_category($_POST['parent']);
|
433 |
+
$newParentName = (empty($newParent))? 'no parent' : $newParent->name;
|
434 |
+
}
|
435 |
+
$this->plugin->alerts->Trigger(2052, array(
|
436 |
+
'CategoryName' => $category->name,
|
437 |
+
'OldParent' => $oldParentName,
|
438 |
+
'NewParent' => $newParentName,
|
439 |
+
));
|
440 |
+
}
|
441 |
+
}
|
442 |
+
|
443 |
}
|
@@ -0,0 +1,130 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
4 |
+
|
5 |
+
public function HookEvents() {
|
6 |
+
add_action('dbdelta_queries', array($this, 'EventDBDeltaQuery'));
|
7 |
+
add_action('query', array($this, 'EventDropQuery'));
|
8 |
+
}
|
9 |
+
|
10 |
+
public function EventDropQuery($query) {
|
11 |
+
$table_names = array();
|
12 |
+
$str = explode(" ", $query);
|
13 |
+
|
14 |
+
if (preg_match("|DROP TABLE ([^ ]*)|", $query)) {
|
15 |
+
if (!empty($str[4])) {
|
16 |
+
array_push($table_names, $str[4]);
|
17 |
+
} else {
|
18 |
+
array_push($table_names, $str[2]);
|
19 |
+
}
|
20 |
+
$actype = basename($_SERVER['SCRIPT_NAME'], '.php');
|
21 |
+
$alertOptions = $this->GetActionType($actype);
|
22 |
+
}
|
23 |
+
|
24 |
+
if (!empty($table_names)) {
|
25 |
+
$event_code = $this->GetEventQueryType($actype, "delete");
|
26 |
+
$alertOptions["TableNames"] = implode(",", $table_names);
|
27 |
+
$this->plugin->alerts->Trigger($event_code, $alertOptions);
|
28 |
+
}
|
29 |
+
return $query;
|
30 |
+
}
|
31 |
+
|
32 |
+
public function EventDBDeltaQuery($queries) {
|
33 |
+
|
34 |
+
$typeQueries = array(
|
35 |
+
"create" => array(),
|
36 |
+
"update" => array(),
|
37 |
+
"delete" => array()
|
38 |
+
);
|
39 |
+
global $wpdb;
|
40 |
+
|
41 |
+
foreach($queries as $qry) {
|
42 |
+
$str = explode(" ", $qry);
|
43 |
+
if (preg_match("|CREATE TABLE ([^ ]*)|", $qry)) {
|
44 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '" . $str[2] . "'") != $str[2]) {
|
45 |
+
//some plugins keep trying to create tables even when they already exist- would result in too many alerts
|
46 |
+
array_push($typeQueries['create'], $str[2]);
|
47 |
+
}
|
48 |
+
} else if (preg_match("|ALTER TABLE ([^ ]*)|", $qry)) {
|
49 |
+
array_push($typeQueries['update'], $str[2]);
|
50 |
+
} else if (preg_match("|DROP TABLE ([^ ]*)|", $qry)) {
|
51 |
+
if (!empty($str[4])) {
|
52 |
+
array_push($typeQueries['delete'], $str[4]);
|
53 |
+
} else {
|
54 |
+
array_push($typeQueries['delete'], $str[2]);
|
55 |
+
}
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
if (!empty($typeQueries["create"]) || !empty($typeQueries["update"]) || !empty($typeQueries["delete"])) {
|
60 |
+
$actype = basename($_SERVER['SCRIPT_NAME'], '.php');
|
61 |
+
$alertOptions = $this->GetActionType($actype);
|
62 |
+
|
63 |
+
|
64 |
+
foreach($typeQueries as $queryType => $tableNames) {
|
65 |
+
if (!empty($tableNames)) {
|
66 |
+
$event_code = $this->GetEventQueryType($actype, $queryType);
|
67 |
+
$alertOptions["TableNames"] = implode(",", $tableNames);
|
68 |
+
$this->plugin->alerts->Trigger($event_code, $alertOptions);
|
69 |
+
}
|
70 |
+
}
|
71 |
+
}
|
72 |
+
|
73 |
+
return $queries;
|
74 |
+
}
|
75 |
+
|
76 |
+
protected function GetEventQueryType($type_action, $type_query) {
|
77 |
+
switch($type_action){
|
78 |
+
case 'plugins':
|
79 |
+
if ($type_query == 'create') return 5010;
|
80 |
+
else if ($type_query == 'update') return 5011;
|
81 |
+
else if ($type_query == 'delete') return 5012;
|
82 |
+
case 'themes':
|
83 |
+
if ($type_query == 'create') return 5013;
|
84 |
+
else if ($type_query == 'update') return 5014;
|
85 |
+
else if ($type_query == 'delete') return 5015;
|
86 |
+
default:
|
87 |
+
if ($type_query == 'create') return 5016;
|
88 |
+
else if ($type_query == 'update') return 5017;
|
89 |
+
else if ($type_query == 'delete') return 5018;
|
90 |
+
}
|
91 |
+
}
|
92 |
+
|
93 |
+
protected function GetActionType($actype) {
|
94 |
+
$is_themes = $actype == 'themes';
|
95 |
+
$is_plugins = $actype == 'plugins';
|
96 |
+
//Action Plugin Component
|
97 |
+
$alertOptions = array();
|
98 |
+
if ($is_plugins) {
|
99 |
+
if (isset($_REQUEST['plugin'])) {
|
100 |
+
$pluginFile = $_REQUEST['plugin'];
|
101 |
+
} else {
|
102 |
+
$pluginFile = $_REQUEST['checked'][0];
|
103 |
+
}
|
104 |
+
$pluginName = basename($pluginFile, '.php');
|
105 |
+
$pluginName = str_replace(array('_', '-', ' '), ' ', $pluginName);
|
106 |
+
$pluginName = ucwords($pluginName);
|
107 |
+
$alertOptions["Plugin"] = (object)array(
|
108 |
+
'Name' => $pluginName,
|
109 |
+
);
|
110 |
+
//Action Theme Component
|
111 |
+
} else if ($is_themes) {
|
112 |
+
if (isset($_REQUEST['theme'])) {
|
113 |
+
$themeName = $_REQUEST['theme'];
|
114 |
+
} else {
|
115 |
+
$themeName = $_REQUEST['checked'][0];
|
116 |
+
}
|
117 |
+
$themeName = str_replace(array('_', '-', ' '), ' ', $themeName);
|
118 |
+
$themeName = ucwords($themeName);
|
119 |
+
$alertOptions["Theme"] = (object)array(
|
120 |
+
'Name' => $themeName,
|
121 |
+
);
|
122 |
+
//Action Unknown Component
|
123 |
+
} else {
|
124 |
+
$alertOptions["Component"] = "Unknown";
|
125 |
+
}
|
126 |
+
|
127 |
+
return $alertOptions;
|
128 |
+
}
|
129 |
+
|
130 |
+
}
|
@@ -51,6 +51,5 @@ class WSAL_Sensors_Files extends WSAL_AbstractSensor {
|
|
51 |
'Plugin' => $_REQUEST['plugin'],
|
52 |
));
|
53 |
}
|
54 |
-
}
|
55 |
-
|
56 |
}
|
51 |
'Plugin' => $_REQUEST['plugin'],
|
52 |
));
|
53 |
}
|
54 |
+
}
|
|
|
55 |
}
|
@@ -43,6 +43,7 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal){
|
|
43 |
array(2011, E_WARNING, __('User deleted file from Uploads directory', 'wp-security-audit-log'), __('Deleted the file %FileName% from %FilePath%', 'wp-security-audit-log')),
|
44 |
array(2046, E_CRITICAL, __('User changed a file using the theme editor', 'wp-security-audit-log'), __('Modified %File% with the Theme Editor', 'wp-security-audit-log')),
|
45 |
array(2051, E_CRITICAL, __('User changed a file using the plugin editor', 'wp-security-audit-log'), __('Modified %File% with the Plugin Editor', 'wp-security-audit-log')),
|
|
|
46 |
),
|
47 |
__('Blog Posts', 'wp-security-audit-log') => array(
|
48 |
array(2000, E_NOTICE, __('User created a new blog post and saved it as draft', 'wp-security-audit-log'), __('Created a new blog post called %PostTitle%. Blog post ID is %PostID%', 'wp-security-audit-log')),
|
@@ -168,6 +169,17 @@ function wsaldefaults_wsal_init(WpSecurityAuditLog $wsal){
|
|
168 |
array(5008, E_CRITICAL, __('Activated theme on network', 'wp-security-audit-log'), __('Network activated %Theme->Name% theme installed in %Theme->get_template_directory%', 'wp-security-audit-log')),
|
169 |
array(5009, E_CRITICAL, __('Deactivated theme from network', 'wp-security-audit-log'), __('Network deactivated %Theme->Name% theme installed in %Theme->get_template_directory%', 'wp-security-audit-log')),
|
170 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
171 |
));
|
172 |
}
|
173 |
add_action('wsal_init', 'wsaldefaults_wsal_init');
|
43 |
array(2011, E_WARNING, __('User deleted file from Uploads directory', 'wp-security-audit-log'), __('Deleted the file %FileName% from %FilePath%', 'wp-security-audit-log')),
|
44 |
array(2046, E_CRITICAL, __('User changed a file using the theme editor', 'wp-security-audit-log'), __('Modified %File% with the Theme Editor', 'wp-security-audit-log')),
|
45 |
array(2051, E_CRITICAL, __('User changed a file using the plugin editor', 'wp-security-audit-log'), __('Modified %File% with the Plugin Editor', 'wp-security-audit-log')),
|
46 |
+
array(2052, E_CRITICAL, __('User changed generic tables', 'wp-security-audit-log'), __('Changed the parent of %CategoryName% category from %OldParent% to %NewParent%', 'wp-security-audit-log')),
|
47 |
),
|
48 |
__('Blog Posts', 'wp-security-audit-log') => array(
|
49 |
array(2000, E_NOTICE, __('User created a new blog post and saved it as draft', 'wp-security-audit-log'), __('Created a new blog post called %PostTitle%. Blog post ID is %PostID%', 'wp-security-audit-log')),
|
169 |
array(5008, E_CRITICAL, __('Activated theme on network', 'wp-security-audit-log'), __('Network activated %Theme->Name% theme installed in %Theme->get_template_directory%', 'wp-security-audit-log')),
|
170 |
array(5009, E_CRITICAL, __('Deactivated theme from network', 'wp-security-audit-log'), __('Network deactivated %Theme->Name% theme installed in %Theme->get_template_directory%', 'wp-security-audit-log')),
|
171 |
),
|
172 |
+
__('Database', 'wp-security-audit-log') => array(
|
173 |
+
array(5010, E_CRITICAL, __('Plugin created tables', 'wp-security-audit-log'), __('Plugin %Plugin->Name% created these tables in the database: %TableNames%', 'wp-security-audit-log')),
|
174 |
+
array(5011, E_CRITICAL, __('Plugin modified tables structure', 'wp-security-audit-log'), __('Plugin %Plugin->Name% modified the structure of these database tables: %TableNames%', 'wp-security-audit-log')),
|
175 |
+
array(5012, E_CRITICAL, __('Plugin deleted tables', 'wp-security-audit-log'), __('Plugin %Plugin->Name% deleted the following tables from the database: %TableNames%', 'wp-security-audit-log')),
|
176 |
+
array(5013, E_CRITICAL, __('Theme created tables', 'wp-security-audit-log'), __('Theme %Theme->Name% created these tables in the database: %TableNames%', 'wp-security-audit-log')),
|
177 |
+
array(5014, E_CRITICAL, __('Theme modified tables structure', 'wp-security-audit-log'), __('Theme %Theme->Name% modified the structure of these database tables: %TableNames%', 'wp-security-audit-log')),
|
178 |
+
array(5015, E_CRITICAL, __('Theme deleted tables', 'wp-security-audit-log'), __('Theme %Theme->Name% deleted the following tables from the database: %TableNames%', 'wp-security-audit-log')),
|
179 |
+
array(5016, E_CRITICAL, __('Unknown component created tables', 'wp-security-audit-log'), __('An unknown component created these tables in the database: %TableNames%', 'wp-security-audit-log')),
|
180 |
+
array(5017, E_CRITICAL, __('Unknown component modified tables structure', 'wp-security-audit-log'), __('An unknown component modified the structure of these database tables: %TableNames%', 'wp-security-audit-log')),
|
181 |
+
array(5018, E_CRITICAL, __('Unknown component deleted tables', 'wp-security-audit-log'), __('An unknown component deleted the following tables from the database: %TableNames%', 'wp-security-audit-log')),
|
182 |
+
),
|
183 |
));
|
184 |
}
|
185 |
add_action('wsal_init', 'wsaldefaults_wsal_init');
|
@@ -1,1789 +1,1835 @@
|
|
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 1.
|
6 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-security-audit-"
|
7 |
-
"log\n"
|
8 |
-
"POT-Creation-Date: 2015-
|
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:85
|
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:151
|
65 |
-
msgid "Click to toggle."
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: classes/AuditLogListView.php:157
|
69 |
-
msgid "Unknown error code."
|
70 |
-
msgstr ""
|
71 |
-
|
72 |
-
#: classes/AuditLogListView.php:178 classes/AuditLogListView.php:181
|
73 |
-
msgid "Unknown"
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
#: classes/AuditLogListView.php:182
|
77 |
-
msgid "System"
|
78 |
-
msgstr ""
|
79 |
-
|
80 |
-
#: classes/AuditLogListView.php:205
|
81 |
-
msgid "Alert Data Inspector"
|
82 |
-
msgstr ""
|
83 |
-
|
84 |
-
#: classes/Sensors/Content.php:
|
85 |
-
msgid "Password Protected"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: classes/Sensors/Content.php:
|
89 |
-
msgid "Public"
|
90 |
-
msgstr ""
|
91 |
-
|
92 |
-
#: classes/Sensors/Content.php:
|
93 |
-
msgid "Private"
|
94 |
-
msgstr ""
|
95 |
-
|
96 |
-
#: classes/Views/About.php:6
|
97 |
-
msgid "About WP Security Audit Log"
|
98 |
-
msgstr ""
|
99 |
-
|
100 |
-
#: classes/Views/About.php:14
|
101 |
-
msgid "About"
|
102 |
-
msgstr ""
|
103 |
-
|
104 |
-
#: classes/Views/About.php:28
|
105 |
-
msgid ""
|
106 |
-
"WP Security Audit Log enables WordPress administrators and owners to "
|
107 |
-
"identify WordPress security issues before they become a security problem by "
|
108 |
-
"keeping a security audit log. WP Security Audit Log is developed by "
|
109 |
-
"WordPress security professionals WP White Security."
|
110 |
-
msgstr ""
|
111 |
-
|
112 |
-
#: classes/Views/About.php:30
|
113 |
-
msgid ""
|
114 |
-
"Keep A WordPress Security Audit Log & Identify WordPress Security Issues"
|
115 |
-
msgstr ""
|
116 |
-
|
117 |
-
#: classes/Views/About.php:32
|
118 |
-
msgid ""
|
119 |
-
"WP Security Audit Log logs everything happening on your WordPress blog or "
|
120 |
-
"website and WordPress multisite network. By using WP Security Audit Log "
|
121 |
-
"security plugin it is very easy to track suspicious user activity before it "
|
122 |
-
"becomes a problem or a security issue. A WordPress security alert is "
|
123 |
-
"generated by the plugin when:"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: classes/Views/About.php:35
|
127 |
-
msgid "User creates a new user or a new user is registered"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: classes/Views/About.php:36
|
131 |
-
msgid ""
|
132 |
-
"Existing user changes the role, password or other properties of another user"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: classes/Views/About.php:37
|
136 |
-
msgid "Existing user on a WordPress multisite network is added to a site"
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: classes/Views/About.php:38
|
140 |
-
msgid "User uploads or deletes a file, changes a password or email address"
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: classes/Views/About.php:39
|
144 |
-
msgid "User installs, activates, deactivates, upgrades or uninstalls a plugin"
|
145 |
-
msgstr ""
|
146 |
-
|
147 |
-
#: classes/Views/About.php:40
|
148 |
-
msgid ""
|
149 |
-
"User creates, modifies or deletes a new post, page, category or a custom "
|
150 |
-
"post type"
|
151 |
-
msgstr ""
|
152 |
-
|
153 |
-
#: classes/Views/About.php:41
|
154 |
-
msgid "User installs or activates a WordPress theme"
|
155 |
-
msgstr ""
|
156 |
-
|
157 |
-
#: classes/Views/About.php:42
|
158 |
-
msgid "User adds, modifies or deletes a widget"
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: classes/Views/About.php:43
|
162 |
-
msgid "User uses the dashboard file editor"
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: classes/Views/About.php:44
|
166 |
-
msgid "WordPress settings are changed"
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: classes/Views/About.php:45
|
170 |
-
msgid "Failed login attempts"
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: classes/Views/About.php:46
|
174 |
-
msgid "and much more…"
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: classes/Views/About.php:56 classes/Views/Help.php:79
|
178 |
-
msgid "WP Password Policy Manager"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: classes/Views/About.php:59 classes/Views/Help.php:82
|
182 |
-
msgid ""
|
183 |
-
"Easily configure WordPress password policies and ensure users use strong "
|
184 |
-
"passwords with our plugin WP Password Policy Manager."
|
185 |
-
msgstr ""
|
186 |
-
|
187 |
-
#: classes/Views/About.php:61 classes/Views/Help.php:84
|
188 |
-
msgid "Download"
|
189 |
-
msgstr ""
|
190 |
-
|
191 |
-
#: classes/Views/About.php:65 classes/Views/Help.php:88
|
192 |
-
msgid "WP Security Audit Log in your Language!"
|
193 |
-
msgstr ""
|
194 |
-
|
195 |
-
#: classes/Views/About.php:67 classes/Views/Help.php:90
|
196 |
-
msgid ""
|
197 |
-
"If you are interested in translating our plugin please drop us an email on"
|
198 |
-
msgstr ""
|
199 |
-
|
200 |
-
#: classes/Views/About.php:72
|
201 |
-
msgid "WordPress Security Services"
|
202 |
-
msgstr ""
|
203 |
-
|
204 |
-
#: classes/Views/About.php:74
|
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:
|
226 |
-
msgid "You do not have sufficient permissions to access this page."
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: classes/Views/AuditLog.php:84
|
230 |
-
msgid "Please enter the number of alerts you would like to see on one page:"
|
231 |
-
msgstr ""
|
232 |
-
|
233 |
-
#: classes/Views/AuditLog.php:86
|
234 |
-
msgid "No Results"
|
235 |
-
msgstr ""
|
236 |
-
|
237 |
-
#: classes/Views/Extensions.php:6
|
238 |
-
msgid "WP Security Audit Log Functionality Extensions"
|
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 extensions allow you to extend the functionality of WP Security "
|
248 |
-
"Audit Log plugin thus enabling you to get more benefits out of the WordPress "
|
249 |
-
"security audit, such as configurable WordPress email alerts, WordPress "
|
250 |
-
"security alerts search and user activity reports."
|
251 |
-
msgstr ""
|
252 |
-
|
253 |
-
#: classes/Views/Extensions.php:31
|
254 |
-
msgid "WordPress Email Notifications Extension"
|
255 |
-
msgstr ""
|
256 |
-
|
257 |
-
#: classes/Views/Extensions.php:32
|
258 |
-
msgid ""
|
259 |
-
"Get notified instantly via email when important changes are made on your "
|
260 |
-
"WordPress!"
|
261 |
-
msgstr ""
|
262 |
-
|
263 |
-
#: classes/Views/Extensions.php:33
|
264 |
-
msgid ""
|
265 |
-
"With the Notifications Extension you can easily configure monitoring rules "
|
266 |
-
"so when a specific change happens on your WordPress you are alerted via "
|
267 |
-
"email. For example you can configure rules to receive an email when existing "
|
268 |
-
"content is changed, when a new user is created or when someone logs in to "
|
269 |
-
"WordPress outside normal office hours or from an odd location."
|
270 |
-
msgstr ""
|
271 |
-
|
272 |
-
#: classes/Views/Extensions.php:34 classes/Views/Extensions.php:41
|
273 |
-
#: classes/Views/Extensions.php:48
|
274 |
-
msgid "More Information"
|
275 |
-
msgstr ""
|
276 |
-
|
277 |
-
#: classes/Views/Extensions.php:38
|
278 |
-
msgid "Security Alerts Search Extension"
|
279 |
-
msgstr ""
|
280 |
-
|
281 |
-
#: classes/Views/Extensions.php:39
|
282 |
-
msgid ""
|
283 |
-
"Automatically Search for specific WordPress user and site activity in "
|
284 |
-
"WordPress Security Audit Log."
|
285 |
-
msgstr ""
|
286 |
-
|
287 |
-
#: classes/Views/Extensions.php:40
|
288 |
-
msgid ""
|
289 |
-
"The Search Extension enables you to easily find specific WordPress activity "
|
290 |
-
"in the Audit Log with free text based searches. Filters can also be used in "
|
291 |
-
"conjunction with free text based searches to further narrow down and have "
|
292 |
-
"more accurate search results."
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: classes/Views/Extensions.php:45
|
296 |
-
msgid "Reporting Extension"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: classes/Views/Extensions.php:46
|
300 |
-
msgid "Generate User, Site and Other Types of Reports from the Audit Log."
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: classes/Views/Extensions.php:47
|
304 |
-
msgid ""
|
305 |
-
"The Reporting Extension allows you to generate reports to keep track and "
|
306 |
-
"record of the productivity, and to meet any legal and regulatory compliance "
|
307 |
-
"your business need to adhere to. Unlike other reporting plugins WSAL "
|
308 |
-
"Reporting Extension does not have any built-in templates that restrict you "
|
309 |
-
"to specific type of reports, you can generate any type of report using all "
|
310 |
-
"of the available data."
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: classes/Views/Help.php:6 classes/Views/Help.php:14
|
314 |
-
msgid "Help"
|
315 |
-
msgstr ""
|
316 |
-
|
317 |
-
#: classes/Views/Help.php:27
|
318 |
-
msgid "Plugin Support"
|
319 |
-
msgstr ""
|
320 |
-
|
321 |
-
#: classes/Views/Help.php:29
|
322 |
-
msgid ""
|
323 |
-
"Have you encountered or noticed any issues while using WP Security Audit Log "
|
324 |
-
"plugin?"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: classes/Views/Help.php:30
|
328 |
-
msgid ""
|
329 |
-
"Or you want to report something to us? Click any of the options below to "
|
330 |
-
"post on the plugin's forum or contact our support directly."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: classes/Views/Help.php:32
|
334 |
-
msgid "Free Support Forum"
|
335 |
-
msgstr ""
|
336 |
-
|
337 |
-
#: classes/Views/Help.php:34
|
338 |
-
msgid "Free Support Email"
|
339 |
-
msgstr ""
|
340 |
-
|
341 |
-
#: classes/Views/Help.php:39
|
342 |
-
msgid "Plugin Documentation"
|
343 |
-
msgstr ""
|
344 |
-
|
345 |
-
#: classes/Views/Help.php:41
|
346 |
-
msgid ""
|
347 |
-
"For more detailed information about WP Security Audit Log you can visit the "
|
348 |
-
"official plugin page."
|
349 |
-
msgstr ""
|
350 |
-
|
351 |
-
#: classes/Views/Help.php:42
|
352 |
-
msgid ""
|
353 |
-
"You can also visit the official list of WordPress Security Alerts for more "
|
354 |
-
"information about all of the activity you can monitor with WP Security Audit "
|
355 |
-
"Log."
|
356 |
-
msgstr ""
|
357 |
-
|
358 |
-
#: classes/Views/Help.php:44
|
359 |
-
msgid "Official Plugin Page"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: classes/Views/Help.php:46
|
363 |
-
msgid "List of WordPress Security Alerts"
|
364 |
-
msgstr ""
|
365 |
-
|
366 |
-
#: classes/Views/Help.php:51
|
367 |
-
msgid "Need Help Securing WordPress?"
|
368 |
-
msgstr ""
|
369 |
-
|
370 |
-
#: classes/Views/Help.php:53
|
371 |
-
msgid "Is your WordPress website hackable?"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: classes/Views/Help.php:54
|
375 |
-
msgid ""
|
376 |
-
"If you are not sure contact our WordPress security professionals to audit "
|
377 |
-
"your WordPress or to simply secure your WordPress website."
|
378 |
-
msgstr ""
|
379 |
-
|
380 |
-
#: classes/Views/Help.php:55
|
381 |
-
msgid "Click on any of the below service buttons for more information."
|
382 |
-
msgstr ""
|
383 |
-
|
384 |
-
#: classes/Views/Help.php:57
|
385 |
-
msgid "WordPress Security Hardening"
|
386 |
-
msgstr ""
|
387 |
-
|
388 |
-
#: classes/Views/Help.php:59
|
389 |
-
msgid "WordPress Security Audit"
|
390 |
-
msgstr ""
|
391 |
-
|
392 |
-
#: classes/Views/Help.php:64
|
393 |
-
msgid "WordPress Security Readings"
|
394 |
-
msgstr ""
|
395 |
-
|
396 |
-
#: classes/Views/Help.php:66
|
397 |
-
msgid "New to WordPress security?"
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: classes/Views/Help.php:67
|
401 |
-
msgid "Do not know from where to start or which is the best services for you?"
|
402 |
-
msgstr ""
|
403 |
-
|
404 |
-
#: classes/Views/Help.php:68
|
405 |
-
msgid ""
|
406 |
-
"Visit our WordPress security blog or the WordPress Security category "
|
407 |
-
"directly for more information and a number of tips and tricks about "
|
408 |
-
"WordPress security."
|
409 |
-
msgstr ""
|
410 |
-
|
411 |
-
#: classes/Views/Help.php:70
|
412 |
-
msgid "WP White Security Blog"
|
413 |
-
msgstr ""
|
414 |
-
|
415 |
-
#: classes/Views/Help.php:72
|
416 |
-
msgid "WordPress Security Category"
|
417 |
-
msgstr ""
|
418 |
-
|
419 |
-
#: classes/Views/Licensing.php:6 classes/Views/Licensing.php:14
|
420 |
-
msgid "Licensing"
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: classes/Views/Licensing.php:39 classes/Views/Settings.php:
|
424 |
-
#: classes/Views/ToggleAlerts.php:43
|
425 |
-
msgid "Settings have been saved."
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: classes/Views/Licensing.php:41 classes/Views/Settings.php:
|
429 |
-
#: classes/Views/ToggleAlerts.php:45
|
430 |
-
msgid "Error: "
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: classes/Views/Licensing.php:61
|
434 |
-
msgid "Version"
|
435 |
-
msgstr ""
|
436 |
-
|
437 |
-
#: classes/Views/Licensing.php:71
|
438 |
-
msgid "Active"
|
439 |
-
msgstr ""
|
440 |
-
|
441 |
-
#: classes/Views/Licensing.php:73
|
442 |
-
msgid "Inactive"
|
443 |
-
msgstr ""
|
444 |
-
|
445 |
-
#: classes/Views/Settings.php:
|
446 |
-
msgid "Settings"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: classes/Views/Settings.php:
|
450 |
-
msgid "Security Alerts Pruning"
|
451 |
-
msgstr ""
|
452 |
-
|
453 |
-
#: classes/Views/Settings.php:
|
454 |
-
msgid "(eg: 1 month)"
|
455 |
-
msgstr ""
|
456 |
-
|
457 |
-
#: classes/Views/Settings.php:
|
458 |
-
msgid "None"
|
459 |
-
msgstr ""
|
460 |
-
|
461 |
-
#: classes/Views/Settings.php:
|
462 |
-
msgid "Delete alerts older than"
|
463 |
-
msgstr ""
|
464 |
-
|
465 |
-
#: classes/Views/Settings.php:
|
466 |
-
msgid "(eg: 80)"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: classes/Views/Settings.php:
|
470 |
-
msgid "Keep up to"
|
471 |
-
msgstr ""
|
472 |
-
|
473 |
-
#: classes/Views/Settings.php:
|
474 |
-
msgid "alerts"
|
475 |
-
msgstr ""
|
476 |
-
|
477 |
-
#: classes/Views/Settings.php:
|
478 |
-
msgid "Next Scheduled Cleanup is in "
|
479 |
-
msgstr ""
|
480 |
-
|
481 |
-
#: classes/Views/Settings.php:
|
482 |
-
msgid "(or %s)"
|
483 |
-
msgstr ""
|
484 |
-
|
485 |
-
#: classes/Views/Settings.php:
|
486 |
-
msgid "Run Manually"
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: classes/Views/Settings.php:
|
490 |
-
msgid "Alerts Dashboard Widget"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: classes/Views/Settings.php:
|
494 |
-
msgid "On"
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: classes/Views/Settings.php:
|
498 |
-
msgid "Off"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: classes/Views/Settings.php:
|
502 |
-
msgid "Display a dashboard widget with the latest %d security alerts."
|
503 |
-
msgstr ""
|
504 |
-
|
505 |
-
#: classes/Views/Settings.php:
|
506 |
-
msgid "Reverse Proxy / Firewall Options"
|
507 |
-
msgstr ""
|
508 |
-
|
509 |
-
#: classes/Views/Settings.php:
|
510 |
-
msgid "WordPress running behind firewall or proxy"
|
511 |
-
msgstr ""
|
512 |
-
|
513 |
-
#: classes/Views/Settings.php:
|
514 |
-
msgid ""
|
515 |
-
"Enable this option if your WordPress is running behind a firewall or reverse "
|
516 |
-
"proxy. When this option is enabled the plugin will retrieve the user's IP "
|
517 |
-
"address from the proxy header."
|
518 |
-
msgstr ""
|
519 |
-
|
520 |
-
#: classes/Views/Settings.php:
|
521 |
-
msgid "Filter Internal IP Addresses"
|
522 |
-
msgstr ""
|
523 |
-
|
524 |
-
#: classes/Views/Settings.php:
|
525 |
-
msgid ""
|
526 |
-
"Enable this option to filter internal IP addresses from the proxy headers."
|
527 |
-
msgstr ""
|
528 |
-
|
529 |
-
#: classes/Views/Settings.php:
|
530 |
-
msgid "Can View Alerts"
|
531 |
-
msgstr ""
|
532 |
-
|
533 |
-
#: classes/Views/Settings.php:
|
534 |
-
msgid "Users and Roles in this list can view the security alerts"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: classes/Views/Settings.php:
|
538 |
-
msgid "Can Manage Plugin"
|
539 |
-
msgstr ""
|
540 |
-
|
541 |
-
#: classes/Views/Settings.php:
|
542 |
-
msgid "Users and Roles in this list can manage the plugin settings"
|
543 |
-
msgstr ""
|
544 |
-
|
545 |
-
#: classes/Views/Settings.php:
|
546 |
-
msgid "Restrict Plugin Access"
|
547 |
-
msgstr ""
|
548 |
-
|
549 |
-
#: classes/Views/Settings.php:
|
550 |
-
msgid ""
|
551 |
-
"By default all the administrators on this WordPress have access to manage "
|
552 |
-
"this plugin.<br/>By enabling this option only the users specified in the two "
|
553 |
-
"options above and your username will have access to view alerts and manage "
|
554 |
-
"this plugin."
|
555 |
-
msgstr ""
|
556 |
-
|
557 |
-
#: classes/Views/Settings.php:
|
558 |
-
msgid "Refresh Audit Log Viewer"
|
559 |
-
msgstr ""
|
560 |
-
|
561 |
-
#: classes/Views/Settings.php:
|
562 |
-
msgid "Automatic"
|
563 |
-
msgstr ""
|
564 |
-
|
565 |
-
#: classes/Views/Settings.php:
|
566 |
-
msgid "Refresh Audit Log Viewer as soon as there are new alerts."
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: classes/Views/Settings.php:
|
570 |
-
msgid "Manual"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: classes/Views/Settings.php:
|
574 |
-
msgid "Refresh Audit Log Viewer only when the page is reloaded."
|
575 |
-
msgstr ""
|
576 |
-
|
577 |
-
#: classes/Views/Settings.php:
|
578 |
-
msgid "Developer Options"
|
579 |
-
msgstr ""
|
580 |
-
|
581 |
-
#: classes/Views/Settings.php:
|
582 |
-
msgid ""
|
583 |
-
"Only enable these options on testing, staging and development websites. "
|
584 |
-
"Enabling any of the settings below on LIVE websites may cause unintended "
|
585 |
-
"side-effects including degraded performance."
|
586 |
-
msgstr ""
|
587 |
-
|
588 |
-
#: classes/Views/Settings.php:
|
589 |
-
msgid "Data Inspector"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: classes/Views/Settings.php:
|
593 |
-
msgid "View data logged for each triggered alert."
|
594 |
-
msgstr ""
|
595 |
-
|
596 |
-
#: classes/Views/Settings.php:
|
597 |
-
msgid "PHP Errors"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: classes/Views/Settings.php:
|
601 |
-
msgid "Enables sensor for alerts generated from PHP."
|
602 |
-
msgstr ""
|
603 |
-
|
604 |
-
#: classes/Views/Settings.php:
|
605 |
-
msgid "Request Log"
|
606 |
-
msgstr ""
|
607 |
-
|
608 |
-
#: classes/Views/Settings.php:
|
609 |
-
msgid "Enables logging request to file."
|
610 |
-
msgstr ""
|
611 |
-
|
612 |
-
#: classes/Views/Settings.php:
|
613 |
-
msgid "Backtrace"
|
614 |
-
msgstr ""
|
615 |
-
|
616 |
-
#: classes/Views/Settings.php:
|
617 |
-
msgid "Log full backtrace for PHP-generated alerts."
|
618 |
-
msgstr ""
|
619 |
-
|
620 |
-
#: classes/Views/Settings.php:
|
621 |
-
msgid "Hide Plugin in Plugins Page"
|
622 |
-
msgstr ""
|
623 |
-
|
624 |
-
#: classes/Views/Settings.php:
|
625 |
-
msgid "Hide"
|
626 |
-
msgstr ""
|
627 |
-
|
628 |
-
#: classes/Views/Settings.php:
|
629 |
-
msgid ""
|
630 |
-
"To manually revert this setting set the value of option wsal-hide-plugin to "
|
631 |
-
"0 in the wp_options table."
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: classes/Views/Settings.php:
|
635 |
-
msgid "Remove Data on Unistall"
|
636 |
-
msgstr ""
|
637 |
-
|
638 |
-
#: classes/Views/
|
639 |
-
msgid "
|
640 |
-
msgstr ""
|
641 |
-
|
642 |
-
#: classes/Views/
|
643 |
-
msgid "
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: classes/Views/
|
647 |
-
msgid "
|
648 |
-
msgstr ""
|
649 |
-
|
650 |
-
#: classes/Views/ToggleAlerts.php:
|
651 |
-
msgid "
|
652 |
-
msgstr ""
|
653 |
-
|
654 |
-
#: classes/Views/ToggleAlerts.php:
|
655 |
-
msgid "
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: classes/
|
659 |
-
msgid "
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: classes/
|
663 |
-
msgid "
|
664 |
-
msgstr ""
|
665 |
-
|
666 |
-
#: classes/
|
667 |
-
msgid "
|
668 |
-
msgstr ""
|
669 |
-
|
670 |
-
#:
|
671 |
-
msgid "
|
672 |
-
msgstr ""
|
673 |
-
|
674 |
-
#:
|
675 |
-
msgid "
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#:
|
679 |
-
msgid "
|
680 |
-
msgstr ""
|
681 |
-
|
682 |
-
#: defaults.php:
|
683 |
-
msgid "
|
684 |
-
msgstr ""
|
685 |
-
|
686 |
-
#: defaults.php:
|
687 |
-
msgid "
|
688 |
-
msgstr ""
|
689 |
-
|
690 |
-
#: defaults.php:
|
691 |
-
msgid "
|
692 |
-
msgstr ""
|
693 |
-
|
694 |
-
#: defaults.php:
|
695 |
-
msgid "
|
696 |
-
msgstr ""
|
697 |
-
|
698 |
-
#: defaults.php:
|
699 |
-
msgid "
|
700 |
-
msgstr ""
|
701 |
-
|
702 |
-
#: defaults.php:
|
703 |
-
msgid "
|
704 |
-
msgstr ""
|
705 |
-
|
706 |
-
#: defaults.php:
|
707 |
-
msgid "
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: defaults.php:
|
711 |
-
msgid "
|
712 |
-
msgstr ""
|
713 |
-
|
714 |
-
#: defaults.php:
|
715 |
-
msgid "
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: defaults.php:
|
719 |
-
msgid "
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
-
#: defaults.php:
|
723 |
-
msgid "
|
724 |
-
msgstr ""
|
725 |
-
|
726 |
-
#: defaults.php:
|
727 |
-
msgid "
|
728 |
-
msgstr ""
|
729 |
-
|
730 |
-
#: defaults.php:
|
731 |
-
msgid "
|
732 |
-
msgstr ""
|
733 |
-
|
734 |
-
#: defaults.php:
|
735 |
-
msgid "
|
736 |
-
msgstr ""
|
737 |
-
|
738 |
-
#: defaults.php:
|
739 |
-
msgid "
|
740 |
-
msgstr ""
|
741 |
-
|
742 |
-
#: defaults.php:
|
743 |
-
msgid "
|
744 |
-
msgstr ""
|
745 |
-
|
746 |
-
#: defaults.php:
|
747 |
-
msgid "
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: defaults.php:
|
751 |
-
msgid "User
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: defaults.php:
|
755 |
-
msgid "
|
756 |
-
msgstr ""
|
757 |
-
|
758 |
-
#: defaults.php:
|
759 |
-
msgid "
|
760 |
-
msgstr ""
|
761 |
-
|
762 |
-
#: defaults.php:
|
763 |
-
msgid "
|
764 |
-
msgstr ""
|
765 |
-
|
766 |
-
#: defaults.php:
|
767 |
-
msgid "
|
768 |
-
msgstr ""
|
769 |
-
|
770 |
-
#: defaults.php:
|
771 |
-
msgid "
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: defaults.php:
|
775 |
-
msgid "
|
776 |
-
msgstr ""
|
777 |
-
|
778 |
-
#: defaults.php:
|
779 |
-
msgid "
|
780 |
-
msgstr ""
|
781 |
-
|
782 |
-
#: defaults.php:
|
783 |
-
msgid "
|
784 |
-
msgstr ""
|
785 |
-
|
786 |
-
#: defaults.php:
|
787 |
-
msgid "User
|
788 |
-
msgstr ""
|
789 |
-
|
790 |
-
#: defaults.php:
|
791 |
-
msgid "
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: defaults.php:
|
795 |
-
msgid "User
|
796 |
-
msgstr ""
|
797 |
-
|
798 |
-
#: defaults.php:
|
799 |
-
msgid "
|
800 |
-
msgstr ""
|
801 |
-
|
802 |
-
#: defaults.php:
|
803 |
-
msgid "
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: defaults.php:
|
807 |
-
msgid "
|
808 |
-
msgstr ""
|
809 |
-
|
810 |
-
#: defaults.php:
|
811 |
-
msgid "
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: defaults.php:
|
815 |
-
msgid "
|
816 |
-
msgstr ""
|
817 |
-
|
818 |
-
#: defaults.php:
|
819 |
-
msgid "
|
820 |
-
msgstr ""
|
821 |
-
|
822 |
-
#: defaults.php:
|
823 |
-
msgid "
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
"
|
829 |
-
msgstr ""
|
830 |
-
|
831 |
-
#: defaults.php:
|
832 |
-
msgid "User
|
833 |
-
msgstr ""
|
834 |
-
|
835 |
-
#: defaults.php:
|
836 |
-
msgid "
|
837 |
-
msgstr ""
|
838 |
-
|
839 |
-
#: defaults.php:
|
840 |
-
msgid "User
|
841 |
-
msgstr ""
|
842 |
-
|
843 |
-
#: defaults.php:
|
844 |
-
msgid "
|
845 |
-
msgstr ""
|
846 |
-
|
847 |
-
#: defaults.php:
|
848 |
-
msgid "User
|
849 |
-
msgstr ""
|
850 |
-
|
851 |
-
#: defaults.php:
|
852 |
-
msgid "
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
"
|
870 |
-
"
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
"Changed the
|
920 |
-
"
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
"
|
954 |
-
msgstr ""
|
955 |
-
|
956 |
-
#: defaults.php:
|
957 |
-
msgid "User
|
958 |
-
msgstr ""
|
959 |
-
|
960 |
-
#: defaults.php:
|
961 |
-
msgid ""
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
"
|
982 |
-
"
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
"
|
1139 |
-
msgstr ""
|
1140 |
-
|
1141 |
-
#: defaults.php:
|
1142 |
-
msgid "User
|
1143 |
-
msgstr ""
|
1144 |
-
|
1145 |
-
#: defaults.php:
|
1146 |
-
msgid ""
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
msgstr ""
|
1179 |
-
|
1180 |
-
#: defaults.php:
|
1181 |
-
msgid "User
|
1182 |
-
msgstr ""
|
1183 |
-
|
1184 |
-
#: defaults.php:
|
1185 |
-
msgid ""
|
1186 |
-
"
|
1187 |
-
"
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
"
|
1197 |
-
msgstr ""
|
1198 |
-
|
1199 |
-
#: defaults.php:
|
1200 |
-
msgid "User
|
1201 |
-
msgstr ""
|
1202 |
-
|
1203 |
-
#: defaults.php:
|
1204 |
-
msgid ""
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
"%
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
"
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
"%
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
"%
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
"
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
"
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
"
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
|
1371 |
-
|
1372 |
-
msgstr ""
|
1373 |
-
|
1374 |
-
#: defaults.php:
|
1375 |
-
msgid "
|
1376 |
-
msgstr ""
|
1377 |
-
|
1378 |
-
#: defaults.php:
|
1379 |
-
msgid "
|
1380 |
-
|
1381 |
-
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
"
|
1402 |
-
msgstr ""
|
1403 |
-
|
1404 |
-
#: defaults.php:
|
1405 |
-
msgid "
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
"
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
"
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
msgstr ""
|
1474 |
-
|
1475 |
-
#: defaults.php:
|
1476 |
-
msgid ""
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
msgstr ""
|
1500 |
-
|
1501 |
-
#: defaults.php:
|
1502 |
-
msgid "User
|
1503 |
-
msgstr ""
|
1504 |
-
|
1505 |
-
#: defaults.php:
|
1506 |
-
msgid "
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
"
|
1516 |
-
msgstr ""
|
1517 |
-
|
1518 |
-
#: defaults.php:
|
1519 |
-
msgid "
|
1520 |
-
msgstr ""
|
1521 |
-
|
1522 |
-
#: defaults.php:
|
1523 |
-
msgid "
|
1524 |
-
msgstr ""
|
1525 |
-
|
1526 |
-
#: defaults.php:
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
"
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
msgstr ""
|
1635 |
-
|
1636 |
-
#: defaults.php:
|
1637 |
-
msgid "
|
1638 |
-
msgstr ""
|
1639 |
-
|
1640 |
-
#: defaults.php:
|
1641 |
-
msgid "
|
1642 |
-
msgstr ""
|
1643 |
-
|
1644 |
-
#: defaults.php:
|
1645 |
-
msgid "
|
1646 |
-
msgstr ""
|
1647 |
-
|
1648 |
-
#: defaults.php:
|
1649 |
-
msgid "
|
1650 |
-
msgstr ""
|
1651 |
-
|
1652 |
-
#: defaults.php:
|
1653 |
-
msgid "
|
1654 |
-
msgstr ""
|
1655 |
-
|
1656 |
-
#: defaults.php:
|
1657 |
-
msgid "
|
1658 |
-
msgstr ""
|
1659 |
-
|
1660 |
-
#: defaults.php:
|
1661 |
-
msgid "
|
1662 |
-
msgstr ""
|
1663 |
-
|
1664 |
-
#: defaults.php:
|
1665 |
-
msgid ""
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
msgstr ""
|
1734 |
-
|
1735 |
-
#: defaults.php:
|
1736 |
-
msgid "
|
1737 |
-
msgstr ""
|
1738 |
-
|
1739 |
-
#: defaults.php:
|
1740 |
-
msgid ""
|
1741 |
-
"
|
1742 |
-
"
|
1743 |
-
msgstr ""
|
1744 |
-
|
1745 |
-
#: defaults.php:
|
1746 |
-
msgid "
|
1747 |
-
msgstr ""
|
1748 |
-
|
1749 |
-
#: defaults.php:
|
1750 |
-
msgid ""
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
"
|
1760 |
-
"
|
1761 |
-
msgstr ""
|
1762 |
-
|
1763 |
-
|
1764 |
-
msgid "
|
1765 |
-
msgstr ""
|
1766 |
-
|
1767 |
-
|
1768 |
-
msgid ""
|
1769 |
-
"
|
1770 |
-
"
|
1771 |
-
msgstr ""
|
1772 |
-
|
1773 |
-
|
1774 |
-
msgid ""
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
"
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 1.6.0\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/wp-security-audit-"
|
7 |
+
"log\n"
|
8 |
+
"POT-Creation-Date: 2015-04-16 13:28:53+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:85
|
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:151
|
65 |
+
msgid "Click to toggle."
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: classes/AuditLogListView.php:157
|
69 |
+
msgid "Unknown error code."
|
70 |
+
msgstr ""
|
71 |
+
|
72 |
+
#: classes/AuditLogListView.php:178 classes/AuditLogListView.php:181
|
73 |
+
msgid "Unknown"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: classes/AuditLogListView.php:182
|
77 |
+
msgid "System"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: classes/AuditLogListView.php:205
|
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 |
+
|
96 |
+
#: classes/Views/About.php:6
|
97 |
+
msgid "About WP Security Audit Log"
|
98 |
+
msgstr ""
|
99 |
+
|
100 |
+
#: classes/Views/About.php:14
|
101 |
+
msgid "About"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: classes/Views/About.php:28
|
105 |
+
msgid ""
|
106 |
+
"WP Security Audit Log enables WordPress administrators and owners to "
|
107 |
+
"identify WordPress security issues before they become a security problem by "
|
108 |
+
"keeping a security audit log. WP Security Audit Log is developed by "
|
109 |
+
"WordPress security professionals WP White Security."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: classes/Views/About.php:30
|
113 |
+
msgid ""
|
114 |
+
"Keep A WordPress Security Audit Log & Identify WordPress Security Issues"
|
115 |
+
msgstr ""
|
116 |
+
|
117 |
+
#: classes/Views/About.php:32
|
118 |
+
msgid ""
|
119 |
+
"WP Security Audit Log logs everything happening on your WordPress blog or "
|
120 |
+
"website and WordPress multisite network. By using WP Security Audit Log "
|
121 |
+
"security plugin it is very easy to track suspicious user activity before it "
|
122 |
+
"becomes a problem or a security issue. A WordPress security alert is "
|
123 |
+
"generated by the plugin when:"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: classes/Views/About.php:35
|
127 |
+
msgid "User creates a new user or a new user is registered"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: classes/Views/About.php:36
|
131 |
+
msgid ""
|
132 |
+
"Existing user changes the role, password or other properties of another user"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: classes/Views/About.php:37
|
136 |
+
msgid "Existing user on a WordPress multisite network is added to a site"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: classes/Views/About.php:38
|
140 |
+
msgid "User uploads or deletes a file, changes a password or email address"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: classes/Views/About.php:39
|
144 |
+
msgid "User installs, activates, deactivates, upgrades or uninstalls a plugin"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: classes/Views/About.php:40
|
148 |
+
msgid ""
|
149 |
+
"User creates, modifies or deletes a new post, page, category or a custom "
|
150 |
+
"post type"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: classes/Views/About.php:41
|
154 |
+
msgid "User installs or activates a WordPress theme"
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: classes/Views/About.php:42
|
158 |
+
msgid "User adds, modifies or deletes a widget"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: classes/Views/About.php:43
|
162 |
+
msgid "User uses the dashboard file editor"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: classes/Views/About.php:44
|
166 |
+
msgid "WordPress settings are changed"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: classes/Views/About.php:45
|
170 |
+
msgid "Failed login attempts"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: classes/Views/About.php:46
|
174 |
+
msgid "and much more…"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: classes/Views/About.php:56 classes/Views/Help.php:79
|
178 |
+
msgid "WP Password Policy Manager"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: classes/Views/About.php:59 classes/Views/Help.php:82
|
182 |
+
msgid ""
|
183 |
+
"Easily configure WordPress password policies and ensure users use strong "
|
184 |
+
"passwords with our plugin WP Password Policy Manager."
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: classes/Views/About.php:61 classes/Views/Help.php:84
|
188 |
+
msgid "Download"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: classes/Views/About.php:65 classes/Views/Help.php:88
|
192 |
+
msgid "WP Security Audit Log in your Language!"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: classes/Views/About.php:67 classes/Views/Help.php:90
|
196 |
+
msgid ""
|
197 |
+
"If you are interested in translating our plugin please drop us an email on"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: classes/Views/About.php:72
|
201 |
+
msgid "WordPress Security Services"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: classes/Views/About.php:74
|
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:88 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:84
|
230 |
+
msgid "Please enter the number of alerts you would like to see on one page:"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: classes/Views/AuditLog.php:86
|
234 |
+
msgid "No Results"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: classes/Views/Extensions.php:6
|
238 |
+
msgid "WP Security Audit Log Functionality Extensions"
|
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 extensions allow you to extend the functionality of WP Security "
|
248 |
+
"Audit Log plugin thus enabling you to get more benefits out of the WordPress "
|
249 |
+
"security audit, such as configurable WordPress email alerts, WordPress "
|
250 |
+
"security alerts search and user activity reports."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: classes/Views/Extensions.php:31
|
254 |
+
msgid "WordPress Email Notifications Extension"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: classes/Views/Extensions.php:32
|
258 |
+
msgid ""
|
259 |
+
"Get notified instantly via email when important changes are made on your "
|
260 |
+
"WordPress!"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: classes/Views/Extensions.php:33
|
264 |
+
msgid ""
|
265 |
+
"With the Notifications Extension you can easily configure monitoring rules "
|
266 |
+
"so when a specific change happens on your WordPress you are alerted via "
|
267 |
+
"email. For example you can configure rules to receive an email when existing "
|
268 |
+
"content is changed, when a new user is created or when someone logs in to "
|
269 |
+
"WordPress outside normal office hours or from an odd location."
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: classes/Views/Extensions.php:34 classes/Views/Extensions.php:41
|
273 |
+
#: classes/Views/Extensions.php:48
|
274 |
+
msgid "More Information"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: classes/Views/Extensions.php:38
|
278 |
+
msgid "Security Alerts Search Extension"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: classes/Views/Extensions.php:39
|
282 |
+
msgid ""
|
283 |
+
"Automatically Search for specific WordPress user and site activity in "
|
284 |
+
"WordPress Security Audit Log."
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: classes/Views/Extensions.php:40
|
288 |
+
msgid ""
|
289 |
+
"The Search Extension enables you to easily find specific WordPress activity "
|
290 |
+
"in the Audit Log with free text based searches. Filters can also be used in "
|
291 |
+
"conjunction with free text based searches to further narrow down and have "
|
292 |
+
"more accurate search results."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: classes/Views/Extensions.php:45
|
296 |
+
msgid "Reporting Extension"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: classes/Views/Extensions.php:46
|
300 |
+
msgid "Generate User, Site and Other Types of Reports from the Audit Log."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: classes/Views/Extensions.php:47
|
304 |
+
msgid ""
|
305 |
+
"The Reporting Extension allows you to generate reports to keep track and "
|
306 |
+
"record of the productivity, and to meet any legal and regulatory compliance "
|
307 |
+
"your business need to adhere to. Unlike other reporting plugins WSAL "
|
308 |
+
"Reporting Extension does not have any built-in templates that restrict you "
|
309 |
+
"to specific type of reports, you can generate any type of report using all "
|
310 |
+
"of the available data."
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: classes/Views/Help.php:6 classes/Views/Help.php:14
|
314 |
+
msgid "Help"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: classes/Views/Help.php:27
|
318 |
+
msgid "Plugin Support"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: classes/Views/Help.php:29
|
322 |
+
msgid ""
|
323 |
+
"Have you encountered or noticed any issues while using WP Security Audit Log "
|
324 |
+
"plugin?"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: classes/Views/Help.php:30
|
328 |
+
msgid ""
|
329 |
+
"Or you want to report something to us? Click any of the options below to "
|
330 |
+
"post on the plugin's forum or contact our support directly."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: classes/Views/Help.php:32
|
334 |
+
msgid "Free Support Forum"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: classes/Views/Help.php:34
|
338 |
+
msgid "Free Support Email"
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: classes/Views/Help.php:39
|
342 |
+
msgid "Plugin Documentation"
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: classes/Views/Help.php:41
|
346 |
+
msgid ""
|
347 |
+
"For more detailed information about WP Security Audit Log you can visit the "
|
348 |
+
"official plugin page."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: classes/Views/Help.php:42
|
352 |
+
msgid ""
|
353 |
+
"You can also visit the official list of WordPress Security Alerts for more "
|
354 |
+
"information about all of the activity you can monitor with WP Security Audit "
|
355 |
+
"Log."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: classes/Views/Help.php:44
|
359 |
+
msgid "Official Plugin Page"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: classes/Views/Help.php:46
|
363 |
+
msgid "List of WordPress Security Alerts"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: classes/Views/Help.php:51
|
367 |
+
msgid "Need Help Securing WordPress?"
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: classes/Views/Help.php:53
|
371 |
+
msgid "Is your WordPress website hackable?"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: classes/Views/Help.php:54
|
375 |
+
msgid ""
|
376 |
+
"If you are not sure contact our WordPress security professionals to audit "
|
377 |
+
"your WordPress or to simply secure your WordPress website."
|
378 |
+
msgstr ""
|
379 |
+
|
380 |
+
#: classes/Views/Help.php:55
|
381 |
+
msgid "Click on any of the below service buttons for more information."
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: classes/Views/Help.php:57
|
385 |
+
msgid "WordPress Security Hardening"
|
386 |
+
msgstr ""
|
387 |
+
|
388 |
+
#: classes/Views/Help.php:59
|
389 |
+
msgid "WordPress Security Audit"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: classes/Views/Help.php:64
|
393 |
+
msgid "WordPress Security Readings"
|
394 |
+
msgstr ""
|
395 |
+
|
396 |
+
#: classes/Views/Help.php:66
|
397 |
+
msgid "New to WordPress security?"
|
398 |
+
msgstr ""
|
399 |
+
|
400 |
+
#: classes/Views/Help.php:67
|
401 |
+
msgid "Do not know from where to start or which is the best services for you?"
|
402 |
+
msgstr ""
|
403 |
+
|
404 |
+
#: classes/Views/Help.php:68
|
405 |
+
msgid ""
|
406 |
+
"Visit our WordPress security blog or the WordPress Security category "
|
407 |
+
"directly for more information and a number of tips and tricks about "
|
408 |
+
"WordPress security."
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: classes/Views/Help.php:70
|
412 |
+
msgid "WP White Security Blog"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: classes/Views/Help.php:72
|
416 |
+
msgid "WordPress Security Category"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: classes/Views/Licensing.php:6 classes/Views/Licensing.php:14
|
420 |
+
msgid "Licensing"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: classes/Views/Licensing.php:39 classes/Views/Settings.php:93
|
424 |
+
#: classes/Views/ToggleAlerts.php:43
|
425 |
+
msgid "Settings have been saved."
|
426 |
+
msgstr ""
|
427 |
+
|
428 |
+
#: classes/Views/Licensing.php:41 classes/Views/Settings.php:95
|
429 |
+
#: classes/Views/ToggleAlerts.php:45
|
430 |
+
msgid "Error: "
|
431 |
+
msgstr ""
|
432 |
+
|
433 |
+
#: classes/Views/Licensing.php:61
|
434 |
+
msgid "Version"
|
435 |
+
msgstr ""
|
436 |
+
|
437 |
+
#: classes/Views/Licensing.php:71
|
438 |
+
msgid "Active"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: classes/Views/Licensing.php:73
|
442 |
+
msgid "Inactive"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: classes/Views/Settings.php:18 classes/Views/Settings.php:26
|
446 |
+
msgid "Settings"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: classes/Views/Settings.php:122
|
450 |
+
msgid "Security Alerts Pruning"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: classes/Views/Settings.php:125 classes/Views/Settings.php:133
|
454 |
+
msgid "(eg: 1 month)"
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: classes/Views/Settings.php:129
|
458 |
+
msgid "None"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: classes/Views/Settings.php:137
|
462 |
+
msgid "Delete alerts older than"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: classes/Views/Settings.php:145
|
466 |
+
msgid "(eg: 80)"
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: classes/Views/Settings.php:149
|
470 |
+
msgid "Keep up to"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: classes/Views/Settings.php:154
|
474 |
+
msgid "alerts"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: classes/Views/Settings.php:158
|
478 |
+
msgid "Next Scheduled Cleanup is in "
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: classes/Views/Settings.php:162
|
482 |
+
msgid "(or %s)"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: classes/Views/Settings.php:163
|
486 |
+
msgid "Run Manually"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: classes/Views/Settings.php:169
|
490 |
+
msgid "Alerts Dashboard Widget"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: classes/Views/Settings.php:175
|
494 |
+
msgid "On"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: classes/Views/Settings.php:180
|
498 |
+
msgid "Off"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: classes/Views/Settings.php:185
|
502 |
+
msgid "Display a dashboard widget with the latest %d security alerts."
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: classes/Views/Settings.php:193
|
506 |
+
msgid "Reverse Proxy / Firewall Options"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: classes/Views/Settings.php:199
|
510 |
+
msgid "WordPress running behind firewall or proxy"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: classes/Views/Settings.php:200
|
514 |
+
msgid ""
|
515 |
+
"Enable this option if your WordPress is running behind a firewall or reverse "
|
516 |
+
"proxy. When this option is enabled the plugin will retrieve the user's IP "
|
517 |
+
"address from the proxy header."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: classes/Views/Settings.php:206
|
521 |
+
msgid "Filter Internal IP Addresses"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: classes/Views/Settings.php:207
|
525 |
+
msgid ""
|
526 |
+
"Enable this option to filter internal IP addresses from the proxy headers."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: classes/Views/Settings.php:213
|
530 |
+
msgid "Can View Alerts"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: classes/Views/Settings.php:220
|
534 |
+
msgid "Users and Roles in this list can view the security alerts"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: classes/Views/Settings.php:235
|
538 |
+
msgid "Can Manage Plugin"
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: classes/Views/Settings.php:242
|
542 |
+
msgid "Users and Roles in this list can manage the plugin settings"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: classes/Views/Settings.php:257
|
546 |
+
msgid "Restrict Plugin Access"
|
547 |
+
msgstr ""
|
548 |
+
|
549 |
+
#: classes/Views/Settings.php:265
|
550 |
+
msgid ""
|
551 |
+
"By default all the administrators on this WordPress have access to manage "
|
552 |
+
"this plugin.<br/>By enabling this option only the users specified in the two "
|
553 |
+
"options above and your username will have access to view alerts and manage "
|
554 |
+
"this plugin."
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: classes/Views/Settings.php:272
|
558 |
+
msgid "Refresh Audit Log Viewer"
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: classes/Views/Settings.php:278
|
562 |
+
msgid "Automatic"
|
563 |
+
msgstr ""
|
564 |
+
|
565 |
+
#: classes/Views/Settings.php:280
|
566 |
+
msgid "Refresh Audit Log Viewer as soon as there are new alerts."
|
567 |
+
msgstr ""
|
568 |
+
|
569 |
+
#: classes/Views/Settings.php:284
|
570 |
+
msgid "Manual"
|
571 |
+
msgstr ""
|
572 |
+
|
573 |
+
#: classes/Views/Settings.php:286
|
574 |
+
msgid "Refresh Audit Log Viewer only when the page is reloaded."
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: classes/Views/Settings.php:292
|
578 |
+
msgid "Developer Options"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: classes/Views/Settings.php:300
|
582 |
+
msgid ""
|
583 |
+
"Only enable these options on testing, staging and development websites. "
|
584 |
+
"Enabling any of the settings below on LIVE websites may cause unintended "
|
585 |
+
"side-effects including degraded performance."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: classes/Views/Settings.php:304
|
589 |
+
msgid "Data Inspector"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: classes/Views/Settings.php:305
|
593 |
+
msgid "View data logged for each triggered alert."
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: classes/Views/Settings.php:308
|
597 |
+
msgid "PHP Errors"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: classes/Views/Settings.php:309
|
601 |
+
msgid "Enables sensor for alerts generated from PHP."
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: classes/Views/Settings.php:312
|
605 |
+
msgid "Request Log"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: classes/Views/Settings.php:313
|
609 |
+
msgid "Enables logging request to file."
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: classes/Views/Settings.php:316
|
613 |
+
msgid "Backtrace"
|
614 |
+
msgstr ""
|
615 |
+
|
616 |
+
#: classes/Views/Settings.php:317
|
617 |
+
msgid "Log full backtrace for PHP-generated alerts."
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: classes/Views/Settings.php:335
|
621 |
+
msgid "Hide Plugin in Plugins Page"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: classes/Views/Settings.php:341
|
625 |
+
msgid "Hide"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: classes/Views/Settings.php:345
|
629 |
+
msgid ""
|
630 |
+
"To manually revert this setting set the value of option wsal-hide-plugin to "
|
631 |
+
"0 in the wp_options table."
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: classes/Views/Settings.php:351
|
635 |
+
msgid "Remove Data on Unistall"
|
636 |
+
msgstr ""
|
637 |
+
|
638 |
+
#: classes/Views/Settings.php:373
|
639 |
+
msgid "Excluded Users"
|
640 |
+
msgstr ""
|
641 |
+
|
642 |
+
#: classes/Views/Settings.php:392
|
643 |
+
msgid "Excluded Roles"
|
644 |
+
msgstr ""
|
645 |
+
|
646 |
+
#: classes/Views/Settings.php:417
|
647 |
+
msgid "Excluded Custom Fields"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: classes/Views/ToggleAlerts.php:5 classes/Views/ToggleAlerts.php:13
|
651 |
+
msgid "Enable/Disable Alerts"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: classes/Views/ToggleAlerts.php:71 classes/WidgetManager.php:38
|
655 |
+
msgid "Description"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: classes/Views/ToggleAlerts.php:80
|
659 |
+
msgid "Not Implemented"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: classes/Views/ToggleAlerts.php:83
|
663 |
+
msgid "Not Available"
|
664 |
+
msgstr ""
|
665 |
+
|
666 |
+
#: classes/Views/ToggleAlerts.php:97
|
667 |
+
msgid "Save Changes"
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
+
#: classes/WidgetManager.php:19
|
671 |
+
msgid "Latest Alerts"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: classes/WidgetManager.php:32
|
675 |
+
msgid "No alerts found."
|
676 |
+
msgstr ""
|
677 |
+
|
678 |
+
#: classes/WidgetManager.php:37
|
679 |
+
msgid "User"
|
680 |
+
msgstr ""
|
681 |
+
|
682 |
+
#: defaults.php:16
|
683 |
+
msgid "Fatal run-time error."
|
684 |
+
msgstr ""
|
685 |
+
|
686 |
+
#: defaults.php:17
|
687 |
+
msgid "Run-time warning (non-fatal error)."
|
688 |
+
msgstr ""
|
689 |
+
|
690 |
+
#: defaults.php:18
|
691 |
+
msgid "Compile-time parse error."
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: defaults.php:19
|
695 |
+
msgid "Run-time notice."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: defaults.php:20
|
699 |
+
msgid "Fatal error that occurred during startup."
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: defaults.php:21
|
703 |
+
msgid "Warnings that occurred during startup."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: defaults.php:22
|
707 |
+
msgid "Fatal compile-time error."
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: defaults.php:23
|
711 |
+
msgid "Compile-time warning."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: defaults.php:24
|
715 |
+
msgid "User-generated error message."
|
716 |
+
msgstr ""
|
717 |
+
|
718 |
+
#: defaults.php:25
|
719 |
+
msgid "User-generated warning message."
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: defaults.php:26
|
723 |
+
msgid "User-generated notice message."
|
724 |
+
msgstr ""
|
725 |
+
|
726 |
+
#: defaults.php:27
|
727 |
+
msgid "Non-standard/optimal code warning."
|
728 |
+
msgstr ""
|
729 |
+
|
730 |
+
#: defaults.php:28
|
731 |
+
msgid "Catchable fatal error."
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: defaults.php:29
|
735 |
+
msgid "Run-time deprecation notices."
|
736 |
+
msgstr ""
|
737 |
+
|
738 |
+
#: defaults.php:30
|
739 |
+
msgid "Run-time user deprecation notices."
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: defaults.php:32
|
743 |
+
msgid "Critical, high-impact messages."
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: defaults.php:33
|
747 |
+
msgid "Debug informational messages."
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: defaults.php:37
|
751 |
+
msgid "Other User Activity"
|
752 |
+
msgstr ""
|
753 |
+
|
754 |
+
#: defaults.php:38
|
755 |
+
msgid "User logs in"
|
756 |
+
msgstr ""
|
757 |
+
|
758 |
+
#: defaults.php:38
|
759 |
+
msgid "Successfully logged in"
|
760 |
+
msgstr ""
|
761 |
+
|
762 |
+
#: defaults.php:39
|
763 |
+
msgid "User logs out"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: defaults.php:39
|
767 |
+
msgid "Successfully logged out"
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: defaults.php:40
|
771 |
+
msgid "Login failed"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: defaults.php:40
|
775 |
+
msgid "%Attempts% failed login(s) detected"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: defaults.php:41
|
779 |
+
msgid "Login failed / non existing user"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: defaults.php:41
|
783 |
+
msgid "%Attempts% failed login(s) detected using non existing user."
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: defaults.php:42
|
787 |
+
msgid "User uploaded file from Uploads directory"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: defaults.php:42
|
791 |
+
msgid "Uploaded the file %FileName% in %FilePath%"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: defaults.php:43
|
795 |
+
msgid "User deleted file from Uploads directory"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: defaults.php:43
|
799 |
+
msgid "Deleted the file %FileName% from %FilePath%"
|
800 |
+
msgstr ""
|
801 |
+
|
802 |
+
#: defaults.php:44
|
803 |
+
msgid "User changed a file using the theme editor"
|
804 |
+
msgstr ""
|
805 |
+
|
806 |
+
#: defaults.php:44
|
807 |
+
msgid "Modified %File% with the Theme Editor"
|
808 |
+
msgstr ""
|
809 |
+
|
810 |
+
#: defaults.php:45
|
811 |
+
msgid "User changed a file using the plugin editor"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: defaults.php:45
|
815 |
+
msgid "Modified %File% with the Plugin Editor"
|
816 |
+
msgstr ""
|
817 |
+
|
818 |
+
#: defaults.php:46
|
819 |
+
msgid "User changed generic tables"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
+
#: defaults.php:46
|
823 |
+
msgid ""
|
824 |
+
"Changed the parent of %CategoryName% category from %OldParent% to %NewParent%"
|
825 |
+
msgstr ""
|
826 |
+
|
827 |
+
#: defaults.php:48
|
828 |
+
msgid "Blog Posts"
|
829 |
+
msgstr ""
|
830 |
+
|
831 |
+
#: defaults.php:49
|
832 |
+
msgid "User created a new blog post and saved it as draft"
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: defaults.php:49
|
836 |
+
msgid "Created a new blog post called %PostTitle%. Blog post ID is %PostID%"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: defaults.php:50
|
840 |
+
msgid "User published a blog post"
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: defaults.php:50
|
844 |
+
msgid "Published a blog post called %PostTitle%. Blog post URL is %PostUrl%"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: defaults.php:51
|
848 |
+
msgid "User modified a published blog post"
|
849 |
+
msgstr ""
|
850 |
+
|
851 |
+
#: defaults.php:51
|
852 |
+
msgid ""
|
853 |
+
"Modified the published blog post %PostTitle%. Blog post URL is %PostUrl%"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: defaults.php:52
|
857 |
+
msgid "User modified a draft blog post"
|
858 |
+
msgstr ""
|
859 |
+
|
860 |
+
#: defaults.php:52
|
861 |
+
msgid "Modified the draft blog post %PostTitle%. Blog post ID is %PostID%"
|
862 |
+
msgstr ""
|
863 |
+
|
864 |
+
#: defaults.php:53
|
865 |
+
msgid "User permanently deleted a blog post from the trash"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: defaults.php:53
|
869 |
+
msgid "Permanently deleted the post %PostTitle%. Blog post ID is %PostID%"
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: defaults.php:54
|
873 |
+
msgid "User moved a blog post to the trash"
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: defaults.php:54
|
877 |
+
msgid "Moved the blog post %PostTitle% to trash"
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: defaults.php:55
|
881 |
+
msgid "User restored a blog post from trash"
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: defaults.php:55
|
885 |
+
msgid "Restored post %PostTitle% from trash"
|
886 |
+
msgstr ""
|
887 |
+
|
888 |
+
#: defaults.php:56
|
889 |
+
msgid "User changed blog post category"
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: defaults.php:56
|
893 |
+
msgid ""
|
894 |
+
"Changed the category of the post %PostTitle% from %OldCategories% to "
|
895 |
+
"%NewCategories%"
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
+
#: defaults.php:57
|
899 |
+
msgid "User changed blog post URL"
|
900 |
+
msgstr ""
|
901 |
+
|
902 |
+
#: defaults.php:57
|
903 |
+
msgid "Changed the URL of the post %PostTitle% from %OldUrl% to %NewUrl%"
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: defaults.php:58
|
907 |
+
msgid "User changed blog post author"
|
908 |
+
msgstr ""
|
909 |
+
|
910 |
+
#: defaults.php:58
|
911 |
+
msgid "Changed the author of %PostTitle% post from %OldAuthor% to %NewAuthor%"
|
912 |
+
msgstr ""
|
913 |
+
|
914 |
+
#: defaults.php:59
|
915 |
+
msgid "User changed blog post status"
|
916 |
+
msgstr ""
|
917 |
+
|
918 |
+
#: defaults.php:59
|
919 |
+
msgid "Changed the status of %PostTitle% post from %OldStatus% to %NewStatus%"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: defaults.php:60
|
923 |
+
msgid "User created new category"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: defaults.php:60
|
927 |
+
msgid "Created a new category called %CategoryName%"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: defaults.php:61
|
931 |
+
msgid "User deleted category"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: defaults.php:61
|
935 |
+
msgid "Deleted the %CategoryName% category"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: defaults.php:62
|
939 |
+
msgid "User changed the visibility of a blog post"
|
940 |
+
msgstr ""
|
941 |
+
|
942 |
+
#: defaults.php:62
|
943 |
+
msgid ""
|
944 |
+
"Changed the visibility of %PostTitle% blog post from %OldVisibility% to "
|
945 |
+
"%NewVisibility%"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: defaults.php:63
|
949 |
+
msgid "User changed the date of a blog post"
|
950 |
+
msgstr ""
|
951 |
+
|
952 |
+
#: defaults.php:63
|
953 |
+
msgid "Changed the date of %PostTitle% blog post from %OldDate% to %NewDate%"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: defaults.php:64
|
957 |
+
msgid "User sets a post as sticky"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: defaults.php:64
|
961 |
+
msgid "Set the post %PostTitle% as Sticky"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: defaults.php:65
|
965 |
+
msgid "User removes post from sticky"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: defaults.php:65
|
969 |
+
msgid "Removed the post %PostTitle% from Sticky"
|
970 |
+
msgstr ""
|
971 |
+
|
972 |
+
#: defaults.php:66
|
973 |
+
msgid "User creates a custom field for a post"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: defaults.php:67
|
977 |
+
msgid "User updates a custom field value for a post"
|
978 |
+
msgstr ""
|
979 |
+
|
980 |
+
#: defaults.php:68
|
981 |
+
msgid "User deletes a custom field from a post"
|
982 |
+
msgstr ""
|
983 |
+
|
984 |
+
#: defaults.php:69
|
985 |
+
msgid "User updates a custom field name for a post"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: defaults.php:70
|
989 |
+
msgid "User modifies content for a published post"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: defaults.php:70
|
993 |
+
msgid "Modified the content of published post %PostTitle%"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: defaults.php:71
|
997 |
+
msgid "User modifies content for a draft post"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: defaults.php:71
|
1001 |
+
msgid "Modified the content of draft post %PostTitle%"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: defaults.php:73
|
1005 |
+
msgid "Pages"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: defaults.php:74
|
1009 |
+
msgid "User created a new WordPress page and saved it as draft"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: defaults.php:74
|
1013 |
+
msgid "Created a new page called %PostTitle%. Page ID is %PostID%"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: defaults.php:75
|
1017 |
+
msgid "User published a WorPress page"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: defaults.php:75
|
1021 |
+
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%"
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: defaults.php:76
|
1025 |
+
msgid "User modified a published WordPress page"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: defaults.php:76
|
1029 |
+
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: defaults.php:77
|
1033 |
+
msgid "User modified a draft WordPress page"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: defaults.php:77
|
1037 |
+
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%"
|
1038 |
+
msgstr ""
|
1039 |
+
|
1040 |
+
#: defaults.php:78
|
1041 |
+
msgid "User permanently deleted a page from the trash"
|
1042 |
+
msgstr ""
|
1043 |
+
|
1044 |
+
#: defaults.php:78
|
1045 |
+
msgid "Permanently deleted the page %PostTitle%. Page ID is %PostID%"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: defaults.php:79
|
1049 |
+
msgid "User moved WordPress page to the trash"
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: defaults.php:79
|
1053 |
+
msgid "Moved the page %PostTitle% to trash"
|
1054 |
+
msgstr ""
|
1055 |
+
|
1056 |
+
#: defaults.php:80
|
1057 |
+
msgid "User restored a WordPress page from trash"
|
1058 |
+
msgstr ""
|
1059 |
+
|
1060 |
+
#: defaults.php:80
|
1061 |
+
msgid "Restored page %PostTitle% from trash"
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: defaults.php:81
|
1065 |
+
msgid "User changed page URL"
|
1066 |
+
msgstr ""
|
1067 |
+
|
1068 |
+
#: defaults.php:81
|
1069 |
+
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%"
|
1070 |
+
msgstr ""
|
1071 |
+
|
1072 |
+
#: defaults.php:82
|
1073 |
+
msgid "User changed page author"
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: defaults.php:82
|
1077 |
+
msgid "Changed the author of %PostTitle% page from %OldAuthor% to %NewAuthor%"
|
1078 |
+
msgstr ""
|
1079 |
+
|
1080 |
+
#: defaults.php:83
|
1081 |
+
msgid "User changed page status"
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: defaults.php:83
|
1085 |
+
msgid "Changed the status of %PostTitle% page from %OldStatus% to %NewStatus%"
|
1086 |
+
msgstr ""
|
1087 |
+
|
1088 |
+
#: defaults.php:84
|
1089 |
+
msgid "User changed the visibility of a page post"
|
1090 |
+
msgstr ""
|
1091 |
+
|
1092 |
+
#: defaults.php:84
|
1093 |
+
msgid ""
|
1094 |
+
"Changed the visibility of %PostTitle% page from %OldVisibility% to "
|
1095 |
+
"%NewVisibility%"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: defaults.php:85
|
1099 |
+
msgid "User changed the date of a page post"
|
1100 |
+
msgstr ""
|
1101 |
+
|
1102 |
+
#: defaults.php:85
|
1103 |
+
msgid "Changed the date of %PostTitle% page from %OldDate% to %NewDate%"
|
1104 |
+
msgstr ""
|
1105 |
+
|
1106 |
+
#: defaults.php:86
|
1107 |
+
msgid "User changed the parent of a page"
|
1108 |
+
msgstr ""
|
1109 |
+
|
1110 |
+
#: defaults.php:86
|
1111 |
+
msgid ""
|
1112 |
+
"Changed the parent of %PostTitle% page from %OldParentName% to %NewParentName"
|
1113 |
+
"%"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: defaults.php:87
|
1117 |
+
msgid "User changes the template of a page"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: defaults.php:87
|
1121 |
+
msgid ""
|
1122 |
+
"Changed the template of %PostTitle% page from %OldTemplate% to %NewTemplate%"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: defaults.php:88
|
1126 |
+
msgid "User creates a custom field for a page"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: defaults.php:89
|
1130 |
+
msgid "User updates a custom field value for a page"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: defaults.php:90
|
1134 |
+
msgid "User deletes a custom field from a page"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: defaults.php:91
|
1138 |
+
msgid "User updates a custom field name for a page"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: defaults.php:92
|
1142 |
+
msgid "User modifies content for a published page"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: defaults.php:92
|
1146 |
+
msgid "Modified the content of published page %PostTitle%"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: defaults.php:93
|
1150 |
+
msgid "User modifies content for a draft page"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: defaults.php:93
|
1154 |
+
msgid "Modified the content of draft page %PostTitle%"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: defaults.php:95
|
1158 |
+
msgid "Custom Posts"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: defaults.php:96
|
1162 |
+
msgid "User created a new post with custom post type and saved it as draft"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: defaults.php:96
|
1166 |
+
msgid ""
|
1167 |
+
"Created a new custom post called %PostTitle% of type %PostType%. Post ID is "
|
1168 |
+
"%PostID%"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: defaults.php:97
|
1172 |
+
msgid "User published a post with custom post type"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: defaults.php:97
|
1176 |
+
msgid ""
|
1177 |
+
"Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1178 |
+
msgstr ""
|
1179 |
+
|
1180 |
+
#: defaults.php:98
|
1181 |
+
msgid "User modified a post with custom post type"
|
1182 |
+
msgstr ""
|
1183 |
+
|
1184 |
+
#: defaults.php:98
|
1185 |
+
msgid ""
|
1186 |
+
"Modified custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: defaults.php:99
|
1190 |
+
msgid "User modified a draft post with custom post type"
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: defaults.php:99
|
1194 |
+
msgid ""
|
1195 |
+
"Modified draft custom post %PostTitle% of type is %PostType%. Post URL is "
|
1196 |
+
"%PostUrl%"
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: defaults.php:100
|
1200 |
+
msgid "User permanently deleted post with custom post type"
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: defaults.php:100
|
1204 |
+
msgid "Permanently Deleted custom post %PostTitle% of type %PostType%"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: defaults.php:101
|
1208 |
+
msgid "User moved post with custom post type to trash"
|
1209 |
+
msgstr ""
|
1210 |
+
|
1211 |
+
#: defaults.php:101
|
1212 |
+
msgid "Moved custom post %PostTitle% to trash. Post type is %PostType%"
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: defaults.php:102
|
1216 |
+
msgid "User restored post with custom post type from trash"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: defaults.php:102
|
1220 |
+
msgid "Restored custom post %PostTitle% of type %PostType% from trash"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: defaults.php:103
|
1224 |
+
msgid "User changed the category of a post with custom post type"
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: defaults.php:103
|
1228 |
+
msgid ""
|
1229 |
+
"Changed the category(ies) of custom post %PostTitle% of type %PostType% from "
|
1230 |
+
"%OldCategories% to %NewCategories%"
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: defaults.php:104
|
1234 |
+
msgid "User changed the URL of a post with custom post type"
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: defaults.php:104
|
1238 |
+
msgid ""
|
1239 |
+
"Changed the URL of custom post %PostTitle% of type %PostType% from %OldUrl% "
|
1240 |
+
"to %NewUrl%"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: defaults.php:105
|
1244 |
+
msgid "User changed the author or post with custom post type"
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: defaults.php:105
|
1248 |
+
msgid ""
|
1249 |
+
"Changed the author of custom post %PostTitle% of type %PostType% from "
|
1250 |
+
"%OldAuthor% to %NewAuthor%"
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: defaults.php:106
|
1254 |
+
msgid "User changed the status of post with custom post type"
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: defaults.php:106
|
1258 |
+
msgid ""
|
1259 |
+
"Changed the status of custom post %PostTitle% of type %PostType% from "
|
1260 |
+
"%OldStatus% to %NewStatus%"
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: defaults.php:107
|
1264 |
+
msgid "User changed the visibility of a post with custom post type"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: defaults.php:107
|
1268 |
+
msgid ""
|
1269 |
+
"Changed the visibility of custom post %PostTitle% of type %PostType% from "
|
1270 |
+
"%OldVisibility% to %NewVisibility%"
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: defaults.php:108
|
1274 |
+
msgid "User changed the date of post with custom post type"
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: defaults.php:108
|
1278 |
+
msgid ""
|
1279 |
+
"Changed the date of custom post %PostTitle% of type %PostType% from %OldDate"
|
1280 |
+
"% to %NewDate%"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: defaults.php:109
|
1284 |
+
msgid "User creates a custom field for a custom post"
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: defaults.php:110
|
1288 |
+
msgid "User updates a custom field for a custom post"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: defaults.php:111
|
1292 |
+
msgid "User deletes a custom field from a custom post"
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: defaults.php:112
|
1296 |
+
msgid "User updates a custom field name for a custom post"
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: defaults.php:113
|
1300 |
+
msgid "User modifies content for a published custom post"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: defaults.php:113
|
1304 |
+
msgid "Modified the content of published custom post type %PostTitle%"
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: defaults.php:114
|
1308 |
+
msgid "User modifies content for a draft custom post"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: defaults.php:114
|
1312 |
+
msgid "Modified the content of draft custom post type %PostTitle%"
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: defaults.php:116
|
1316 |
+
msgid "Widgets"
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: defaults.php:117
|
1320 |
+
msgid "User added a new widget"
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: defaults.php:117
|
1324 |
+
msgid "Added a new %WidgetName% widget in %Sidebar%"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: defaults.php:118
|
1328 |
+
msgid "User modified a widget"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: defaults.php:118
|
1332 |
+
msgid "Modified the %WidgetName% widget in %Sidebar%"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: defaults.php:119
|
1336 |
+
msgid "User deleted widget"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: defaults.php:119
|
1340 |
+
msgid "Deleted the %WidgetName% widget from %Sidebar%"
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: defaults.php:120
|
1344 |
+
msgid "User moved widget"
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: defaults.php:120
|
1348 |
+
msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%"
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: defaults.php:121
|
1352 |
+
msgid "User changed widget position"
|
1353 |
+
msgstr ""
|
1354 |
+
|
1355 |
+
#: defaults.php:121
|
1356 |
+
msgid ""
|
1357 |
+
"Moved the %WidgetName% widget from position %OldPosition% to position "
|
1358 |
+
"%NewPosition% in sidebar %Sidebar%"
|
1359 |
+
msgstr ""
|
1360 |
+
|
1361 |
+
#: defaults.php:123
|
1362 |
+
msgid "User Profiles"
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: defaults.php:124
|
1366 |
+
msgid "A new user was created on WordPress"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: defaults.php:124
|
1370 |
+
msgid ""
|
1371 |
+
"User %NewUserData->Username% subscribed with a role of %NewUserData->Roles%"
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: defaults.php:125
|
1375 |
+
msgid "A user created another WordPress user"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: defaults.php:125
|
1379 |
+
msgid ""
|
1380 |
+
"Created a new user %NewUserData->Username% with the role of %NewUserData-"
|
1381 |
+
">Roles%"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: defaults.php:126
|
1385 |
+
msgid "The role of a user was changed by another WordPress user"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: defaults.php:126
|
1389 |
+
msgid "Changed the role of user %TargetUsername% from %OldRole% to %NewRole%"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: defaults.php:127
|
1393 |
+
msgid "User has changed his or her password"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: defaults.php:127
|
1397 |
+
msgid "Changed the password"
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: defaults.php:128
|
1401 |
+
msgid "A user changed another user's password"
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: defaults.php:128
|
1405 |
+
msgid ""
|
1406 |
+
"Changed the password for user %TargetUserData->Username% with the role of "
|
1407 |
+
"%TargetUserData->Roles%"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: defaults.php:129
|
1411 |
+
msgid "User changed his or her email address"
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: defaults.php:129
|
1415 |
+
msgid "Changed the email address from %OldEmail% to %NewEmail%"
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: defaults.php:130
|
1419 |
+
msgid "A user changed another user's email address"
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: defaults.php:130
|
1423 |
+
msgid ""
|
1424 |
+
"Changed the email address of user account %TargetUsername% from %OldEmail% "
|
1425 |
+
"to %NewEmail%"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: defaults.php:131
|
1429 |
+
msgid "A user was deleted by another user"
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: defaults.php:131
|
1433 |
+
msgid ""
|
1434 |
+
"Deleted User %TargetUserData->Username% with the role of %TargetUserData-"
|
1435 |
+
">Roles%"
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: defaults.php:133
|
1439 |
+
msgid "Plugins & Themes"
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: defaults.php:134
|
1443 |
+
msgid "User installed a plugin"
|
1444 |
+
msgstr ""
|
1445 |
+
|
1446 |
+
#: defaults.php:134
|
1447 |
+
msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%"
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: defaults.php:135
|
1451 |
+
msgid "User activated a WordPress plugin"
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: defaults.php:135
|
1455 |
+
msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%"
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: defaults.php:136
|
1459 |
+
msgid "User deactivated a WordPress plugin"
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: defaults.php:136
|
1463 |
+
msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: defaults.php:137
|
1467 |
+
msgid "User uninstalled a plugin"
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: defaults.php:137
|
1471 |
+
msgid ""
|
1472 |
+
"Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile%"
|
1473 |
+
msgstr ""
|
1474 |
+
|
1475 |
+
#: defaults.php:138
|
1476 |
+
msgid "User upgraded a plugin"
|
1477 |
+
msgstr ""
|
1478 |
+
|
1479 |
+
#: defaults.php:138
|
1480 |
+
msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: defaults.php:139
|
1484 |
+
msgid "User installed a theme"
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: defaults.php:139
|
1488 |
+
msgid "Installed theme \"%Theme->Name%\" in %Theme->get_template_directory%"
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: defaults.php:140
|
1492 |
+
msgid "User activated a theme"
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: defaults.php:140
|
1496 |
+
msgid ""
|
1497 |
+
"Activated theme \"%Theme->Name%\", installed in %Theme-"
|
1498 |
+
">get_template_directory%"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: defaults.php:141
|
1502 |
+
msgid "User uninstalled a theme"
|
1503 |
+
msgstr ""
|
1504 |
+
|
1505 |
+
#: defaults.php:141
|
1506 |
+
msgid ""
|
1507 |
+
"Deleted theme \"%Theme->Name%\" installed in %Theme->get_template_directory%"
|
1508 |
+
msgstr ""
|
1509 |
+
|
1510 |
+
#: defaults.php:143
|
1511 |
+
msgid "System Activity"
|
1512 |
+
msgstr ""
|
1513 |
+
|
1514 |
+
#: defaults.php:144
|
1515 |
+
msgid "Unknown Error"
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: defaults.php:144
|
1519 |
+
msgid "An unexpected error has occurred"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: defaults.php:145
|
1523 |
+
msgid "PHP error"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: defaults.php:145 defaults.php:146 defaults.php:147 defaults.php:148
|
1527 |
+
#: defaults.php:149
|
1528 |
+
msgid "%Message%"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: defaults.php:146
|
1532 |
+
msgid "PHP warning"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: defaults.php:147
|
1536 |
+
msgid "PHP notice"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: defaults.php:148
|
1540 |
+
msgid "PHP exception"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: defaults.php:149
|
1544 |
+
msgid "PHP shutdown error"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: defaults.php:150
|
1548 |
+
msgid "Events automatically pruned by system"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: defaults.php:150
|
1552 |
+
msgid "%EventCount% event(s) automatically deleted by system"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: defaults.php:151
|
1556 |
+
msgid "Option Anyone Can Register in WordPress settings changed"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: defaults.php:151
|
1560 |
+
msgid "%NewValue% the option \"Anyone can register\""
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: defaults.php:152
|
1564 |
+
msgid "New User Default Role changed"
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: defaults.php:152
|
1568 |
+
msgid "Changed the New User Default Role from %OldRole% to %NewRole%"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: defaults.php:153
|
1572 |
+
msgid "WordPress Administrator Notification email changed"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: defaults.php:153
|
1576 |
+
msgid ""
|
1577 |
+
"Changed the WordPress administrator notifications email address from "
|
1578 |
+
"%OldEmail% to %NewEmail%"
|
1579 |
+
msgstr ""
|
1580 |
+
|
1581 |
+
#: defaults.php:154
|
1582 |
+
msgid "WordPress was updated"
|
1583 |
+
msgstr ""
|
1584 |
+
|
1585 |
+
#: defaults.php:154
|
1586 |
+
msgid "Updated WordPress from version %OldVersion% to %NewVersion%"
|
1587 |
+
msgstr ""
|
1588 |
+
|
1589 |
+
#: defaults.php:155
|
1590 |
+
msgid "User changes the WordPress Permalinks"
|
1591 |
+
msgstr ""
|
1592 |
+
|
1593 |
+
#: defaults.php:155
|
1594 |
+
msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%"
|
1595 |
+
msgstr ""
|
1596 |
+
|
1597 |
+
#: defaults.php:157
|
1598 |
+
msgid "MultiSite"
|
1599 |
+
msgstr ""
|
1600 |
+
|
1601 |
+
#: defaults.php:158
|
1602 |
+
msgid "User granted Super Admin privileges"
|
1603 |
+
msgstr ""
|
1604 |
+
|
1605 |
+
#: defaults.php:158
|
1606 |
+
msgid "Granted Super Admin privileges to %TargetUsername%"
|
1607 |
+
msgstr ""
|
1608 |
+
|
1609 |
+
#: defaults.php:159
|
1610 |
+
msgid "User revoked from Super Admin privileges"
|
1611 |
+
msgstr ""
|
1612 |
+
|
1613 |
+
#: defaults.php:159
|
1614 |
+
msgid "Revoked Super Admin privileges from %TargetUsername%"
|
1615 |
+
msgstr ""
|
1616 |
+
|
1617 |
+
#: defaults.php:160
|
1618 |
+
msgid "Existing user added to a site"
|
1619 |
+
msgstr ""
|
1620 |
+
|
1621 |
+
#: defaults.php:160
|
1622 |
+
msgid ""
|
1623 |
+
"Added existing user %TargetUsername% with %TargetUserRole% role to site "
|
1624 |
+
"%SiteName%"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: defaults.php:161
|
1628 |
+
msgid "User removed from site"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: defaults.php:161
|
1632 |
+
msgid ""
|
1633 |
+
"Removed user %TargetUsername% with role %TargetUserRole% from %SiteName% site"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: defaults.php:162
|
1637 |
+
msgid "New network user created"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: defaults.php:162
|
1641 |
+
msgid "Created a new network user %NewUserData->Username%"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: defaults.php:163
|
1645 |
+
msgid "New site added on network"
|
1646 |
+
msgstr ""
|
1647 |
+
|
1648 |
+
#: defaults.php:163
|
1649 |
+
msgid "Added site %SiteName% to the network"
|
1650 |
+
msgstr ""
|
1651 |
+
|
1652 |
+
#: defaults.php:164
|
1653 |
+
msgid "Existing site archived"
|
1654 |
+
msgstr ""
|
1655 |
+
|
1656 |
+
#: defaults.php:164
|
1657 |
+
msgid "Archived site %SiteName%"
|
1658 |
+
msgstr ""
|
1659 |
+
|
1660 |
+
#: defaults.php:165
|
1661 |
+
msgid "Archived site has been unarchived"
|
1662 |
+
msgstr ""
|
1663 |
+
|
1664 |
+
#: defaults.php:165
|
1665 |
+
msgid "Unarchived site %SiteName%"
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: defaults.php:166
|
1669 |
+
msgid "Deactivated site has been activated"
|
1670 |
+
msgstr ""
|
1671 |
+
|
1672 |
+
#: defaults.php:166
|
1673 |
+
msgid "Activated site %SiteName%"
|
1674 |
+
msgstr ""
|
1675 |
+
|
1676 |
+
#: defaults.php:167
|
1677 |
+
msgid "Site has been deactivated"
|
1678 |
+
msgstr ""
|
1679 |
+
|
1680 |
+
#: defaults.php:167
|
1681 |
+
msgid "Deactivated site %SiteName%"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: defaults.php:168
|
1685 |
+
msgid "Existing site deleted from network"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: defaults.php:168
|
1689 |
+
msgid "Deleted site %SiteName%"
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: defaults.php:169
|
1693 |
+
msgid "Activated theme on network"
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: defaults.php:169
|
1697 |
+
msgid ""
|
1698 |
+
"Network activated %Theme->Name% theme installed in %Theme-"
|
1699 |
+
">get_template_directory%"
|
1700 |
+
msgstr ""
|
1701 |
+
|
1702 |
+
#: defaults.php:170
|
1703 |
+
msgid "Deactivated theme from network"
|
1704 |
+
msgstr ""
|
1705 |
+
|
1706 |
+
#: defaults.php:170
|
1707 |
+
msgid ""
|
1708 |
+
"Network deactivated %Theme->Name% theme installed in %Theme-"
|
1709 |
+
">get_template_directory%"
|
1710 |
+
msgstr ""
|
1711 |
+
|
1712 |
+
#: defaults.php:172
|
1713 |
+
msgid "Database"
|
1714 |
+
msgstr ""
|
1715 |
+
|
1716 |
+
#: defaults.php:173
|
1717 |
+
msgid "Plugin created tables"
|
1718 |
+
msgstr ""
|
1719 |
+
|
1720 |
+
#: defaults.php:173
|
1721 |
+
msgid ""
|
1722 |
+
"Plugin %Plugin->Name% created these tables in the database: %TableNames%"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: defaults.php:174
|
1726 |
+
msgid "Plugin modified tables structure"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: defaults.php:174
|
1730 |
+
msgid ""
|
1731 |
+
"Plugin %Plugin->Name% modified the structure of these database tables: "
|
1732 |
+
"%TableNames%"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: defaults.php:175
|
1736 |
+
msgid "Plugin deleted tables"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: defaults.php:175
|
1740 |
+
msgid ""
|
1741 |
+
"Plugin %Plugin->Name% deleted the following tables from the database: "
|
1742 |
+
"%TableNames%"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: defaults.php:176
|
1746 |
+
msgid "Theme created tables"
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: defaults.php:176
|
1750 |
+
msgid "Theme %Theme->Name% created these tables in the database: %TableNames%"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: defaults.php:177
|
1754 |
+
msgid "Theme modified tables structure"
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: defaults.php:177
|
1758 |
+
msgid ""
|
1759 |
+
"Theme %Theme->Name% modified the structure of these database tables: "
|
1760 |
+
"%TableNames%"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: defaults.php:178
|
1764 |
+
msgid "Theme deleted tables"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: defaults.php:178
|
1768 |
+
msgid ""
|
1769 |
+
"Theme %Theme->Name% deleted the following tables from the database: "
|
1770 |
+
"%TableNames%"
|
1771 |
+
msgstr ""
|
1772 |
+
|
1773 |
+
#: defaults.php:179
|
1774 |
+
msgid "Unknown component created tables"
|
1775 |
+
msgstr ""
|
1776 |
+
|
1777 |
+
#: defaults.php:179
|
1778 |
+
msgid "An unknown component created these tables in the database: %TableNames%"
|
1779 |
+
msgstr ""
|
1780 |
+
|
1781 |
+
#: defaults.php:180
|
1782 |
+
msgid "Unknown component modified tables structure"
|
1783 |
+
msgstr ""
|
1784 |
+
|
1785 |
+
#: defaults.php:180
|
1786 |
+
msgid ""
|
1787 |
+
"An unknown component modified the structure of these database tables: "
|
1788 |
+
"%TableNames%"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: defaults.php:181
|
1792 |
+
msgid "Unknown component deleted tables"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: defaults.php:181
|
1796 |
+
msgid ""
|
1797 |
+
"An unknown component deleted the following tables from the database: "
|
1798 |
+
"%TableNames%"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: wp-security-audit-log.php:247
|
1802 |
+
msgid ""
|
1803 |
+
"You are using a version of PHP that is older than %s, which is no longer "
|
1804 |
+
"supported.<br/>Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
|
1805 |
+
"\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
|
1806 |
+
"are using."
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#. Plugin Name of the plugin/theme
|
1810 |
+
msgid "WP Security Audit Log"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#. Plugin URI of the plugin/theme
|
1814 |
+
msgid ""
|
1815 |
+
"http://www.wpwhitesecurity.com/wordpress-security-plugins/wp-security-audit-"
|
1816 |
+
"log/"
|
1817 |
+
msgstr ""
|
1818 |
+
|
1819 |
+
#. Description of the plugin/theme
|
1820 |
+
msgid ""
|
1821 |
+
"Identify WordPress security issues before they become a problem. Keep track "
|
1822 |
+
"of everything happening on your WordPress including WordPress users "
|
1823 |
+
"activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit "
|
1824 |
+
"Log generates a security alert for everything that happens on your WordPress "
|
1825 |
+
"blogs and websites. Use the Audit Log Viewer included in the plugin to see "
|
1826 |
+
"all the security alerts."
|
1827 |
+
msgstr ""
|
1828 |
+
|
1829 |
+
#. Author of the plugin/theme
|
1830 |
+
msgid "WP White Security"
|
1831 |
+
msgstr ""
|
1832 |
+
|
1833 |
+
#. Author URI of the plugin/theme
|
1834 |
+
msgid "http://www.wpwhitesecurity.com/"
|
1835 |
+
msgstr ""
|
@@ -7,7 +7,7 @@ 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
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 4.1.1
|
10 |
-
Stable tag: 1.
|
11 |
|
12 |
Keep an WordPress audit log of all users' changes and other under the hood activity - Identify WordPress issues before they become security problems.
|
13 |
|
@@ -178,6 +178,19 @@ Yes it is possible to exclude custom fields from being monitored. To exclude a c
|
|
178 |
|
179 |
== Changelog ==
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
= 1.5.2 (2015-04-07) =
|
182 |
* **Bug Fix**
|
183 |
* Removed a clause which changed the debug log path (used for testing) [Support Ticket](https://wordpress.org/support/topic/plugin-is-changing-error-log-location)
|
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
|
8 |
Requires at least: 3.6
|
9 |
Tested up to: 4.1.1
|
10 |
+
Stable tag: 1.6.0
|
11 |
|
12 |
Keep an WordPress audit log of all users' changes and other under the hood activity - Identify WordPress issues before they become security problems.
|
13 |
|
178 |
|
179 |
== Changelog ==
|
180 |
|
181 |
+
= 1.6.0 (2015-04-16) =
|
182 |
+
* **New Security Alerts**
|
183 |
+
* 5010: plugin created new tables in the WordPress database
|
184 |
+
* 5011: plugin modified the structure of a number of tables in the WordPress database
|
185 |
+
* 5012: plugin deleted tables from the WordPress database
|
186 |
+
* 5013: theme created new tables in the WordPress database
|
187 |
+
* 5014: theme modified the structure of a number of tables in the WordPress database
|
188 |
+
* 5015: theme deleted tables from the WordPress database
|
189 |
+
* 5016: an unknown component created new tables in the WordPress database
|
190 |
+
* 5017: an unknown component theme modified the structure of a number of tables in the WordPress database
|
191 |
+
* 5018: an unknown component theme deleted tables from the WordPress database
|
192 |
+
* 2052: a user changed the parent of a category
|
193 |
+
|
194 |
= 1.5.2 (2015-04-07) =
|
195 |
* **Bug Fix**
|
196 |
* Removed a clause which changed the debug log path (used for testing) [Support Ticket](https://wordpress.org/support/topic/plugin-is-changing-error-log-location)
|
@@ -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. 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: 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. 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: 1.6.0
|
8 |
Text Domain: wp-security-audit-log
|
9 |
Author URI: http://www.wpwhitesecurity.com/
|
10 |
License: GPL2
|