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