Version Description
(2020-08-14) =
-
Improvement
- Released extension WP Activity Log for WooCommerce update 1.1 (improved logging etc).
-
Bug fixes
- The orders details in WooCommerce were not being added to the order (Support ticket).
- An empty space was added to the top of the WordPress admin menu.
- Third party plugins extensions notification not showing in the activity log viewer.
- Thurd party plugins extension help text was shown on the wrong pages.
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 4.1.3.2 |
Comparing to | |
See all releases |
Code changes from version 4.1.3.1 to 4.1.3.2
- classes/Adapters/MySQL/ActiveRecordAdapter.php +1 -1
- classes/AlertManager.php +2 -2
- classes/AuditLogGridView.php +2 -2
- classes/AuditLogListView.php +2 -2
- classes/Sensors/FrontendSystem.php +2 -2
- classes/Sensors/FrontendWooCommerce.php +2 -2
- classes/Sensors/MetaData.php +7 -1
- classes/Sensors/Public.php +2 -2
- classes/Sensors/System.php +2 -2
- classes/Utilities/PluginInstallAndActivate.php +6 -6
- classes/Views/AuditLog.php +19 -10
- classes/Views/ToggleAlerts.php +4 -2
- languages/wp-security-audit-log.pot +3662 -218
- readme.txt +17 -6
- wp-security-audit-log.php +18 -11
classes/Adapters/MySQL/ActiveRecordAdapter.php
CHANGED
@@ -821,7 +821,7 @@ class WSAL_Adapters_MySQL_ActiveRecord implements WSAL_Adapters_ActiveRecordInte
|
|
821 |
AND (@endTimestamp is NULL OR occ.created_on <= @endTimestamp)
|
822 |
AND (@ipAddress is NULL OR (meta.name = 'ClientIP' AND find_in_set(meta.value, @ipAddress) > 0))
|
823 |
HAVING user_login IS NOT NULL) ip_logins
|
824 |
-
WHERE user_login NOT IN ('
|
825 |
ORDER BY user_login ASC
|
826 |
";
|
827 |
$_wpdb->query( "SET @siteId = $_site_id" );
|
821 |
AND (@endTimestamp is NULL OR occ.created_on <= @endTimestamp)
|
822 |
AND (@ipAddress is NULL OR (meta.name = 'ClientIP' AND find_in_set(meta.value, @ipAddress) > 0))
|
823 |
HAVING user_login IS NOT NULL) ip_logins
|
824 |
+
WHERE user_login NOT IN ('Unregistered user', 'Plugins', 'Plugin')
|
825 |
ORDER BY user_login ASC
|
826 |
";
|
827 |
$_wpdb->query( "SET @siteId = $_site_id" );
|
classes/AlertManager.php
CHANGED
@@ -980,8 +980,8 @@ final class WSAL_AlertManager {
|
|
980 |
$user_data->username = 'Plugin';
|
981 |
} elseif ( 'Plugins' === $username ) {
|
982 |
$user_data->username = 'Plugins';
|
983 |
-
} elseif ( 'Website Visitor' === $username ) {
|
984 |
-
$user_data->username = '
|
985 |
} else {
|
986 |
// Check WP user.
|
987 |
if ( isset( $this->wp_users[ $username ] ) ) {
|
980 |
$user_data->username = 'Plugin';
|
981 |
} elseif ( 'Plugins' === $username ) {
|
982 |
$user_data->username = 'Plugins';
|
983 |
+
} elseif ( 'Website Visitor' === $username || 'Unregistered user' === $username ) {
|
984 |
+
$user_data->username = 'Unregistered user';
|
985 |
} else {
|
986 |
// Check WP user.
|
987 |
if ( isset( $this->wp_users[ $username ] ) ) {
|
classes/AuditLogGridView.php
CHANGED
@@ -510,8 +510,8 @@ class WSAL_AuditLogGridView extends WP_List_Table {
|
|
510 |
} elseif ( 'Plugins' == $username ) {
|
511 |
$uhtml = '<i>' . __( 'Plugins', 'wp-security-audit-log' ) . '</i>';
|
512 |
$roles = '';
|
513 |
-
} elseif ( 'Website Visitor' == $username ) {
|
514 |
-
$uhtml = '<i>' . __( '
|
515 |
$roles = '';
|
516 |
} else {
|
517 |
$uhtml = '<i>' . __( 'System', 'wp-security-audit-log' ) . '</i>';
|
510 |
} elseif ( 'Plugins' == $username ) {
|
511 |
$uhtml = '<i>' . __( 'Plugins', 'wp-security-audit-log' ) . '</i>';
|
512 |
$roles = '';
|
513 |
+
} elseif ( 'Website Visitor' == $username || 'Unregistered user' == $username ) {
|
514 |
+
$uhtml = '<i>' . __( 'Unregistered user', 'wp-security-audit-log' ) . '</i>';
|
515 |
$roles = '';
|
516 |
} else {
|
517 |
$uhtml = '<i>' . __( 'System', 'wp-security-audit-log' ) . '</i>';
|
classes/AuditLogListView.php
CHANGED
@@ -534,9 +534,9 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
534 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
535 |
$uhtml = '<i>' . __( 'Plugins', 'wp-security-audit-log' ) . '</i>';
|
536 |
$roles = '';
|
537 |
-
} elseif ( 'Website Visitor' == $username ) {
|
538 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
539 |
-
$uhtml = '<i>' . __( '
|
540 |
$roles = '';
|
541 |
} else {
|
542 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
534 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
535 |
$uhtml = '<i>' . __( 'Plugins', 'wp-security-audit-log' ) . '</i>';
|
536 |
$roles = '';
|
537 |
+
} elseif ( 'Website Visitor' == $username || 'Unregistered user' == $username ) {
|
538 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
539 |
+
$uhtml = '<i>' . __( 'Unregistered user', 'wp-security-audit-log' ) . '</i>';
|
540 |
$roles = '';
|
541 |
} else {
|
542 |
$image = '<span class="dashicons dashicons-wordpress wsal-system-icon"></span>';
|
classes/Sensors/FrontendSystem.php
CHANGED
@@ -46,7 +46,7 @@ class WSAL_Sensors_FrontendSystem extends WSAL_AbstractSensor {
|
|
46 |
$ip = $this->plugin->settings()->GetMainClientIP();
|
47 |
|
48 |
if ( ! is_user_logged_in() ) {
|
49 |
-
$username = '
|
50 |
} else {
|
51 |
$username = wp_get_current_user()->user_login;
|
52 |
}
|
@@ -67,7 +67,7 @@ class WSAL_Sensors_FrontendSystem extends WSAL_AbstractSensor {
|
|
67 |
return;
|
68 |
}
|
69 |
|
70 |
-
if ( 'Website Visitor' === $username ) {
|
71 |
// Check if the alert is disabled from the "Enable/Disable Alerts" section.
|
72 |
if ( ! $this->plugin->alerts->IsEnabled( 6023 ) ) {
|
73 |
return;
|
46 |
$ip = $this->plugin->settings()->GetMainClientIP();
|
47 |
|
48 |
if ( ! is_user_logged_in() ) {
|
49 |
+
$username = 'Unregistered user';
|
50 |
} else {
|
51 |
$username = wp_get_current_user()->user_login;
|
52 |
}
|
67 |
return;
|
68 |
}
|
69 |
|
70 |
+
if ( 'Website Visitor' === $username || 'Unregistered user' === $username ) {
|
71 |
// Check if the alert is disabled from the "Enable/Disable Alerts" section.
|
72 |
if ( ! $this->plugin->alerts->IsEnabled( 6023 ) ) {
|
73 |
return;
|
classes/Sensors/FrontendWooCommerce.php
CHANGED
@@ -149,7 +149,7 @@ class WSAL_Sensors_FrontendWooCommerce extends WSAL_AbstractSensor {
|
|
149 |
// Set username.
|
150 |
$username = '';
|
151 |
if ( ! is_user_logged_in() ) {
|
152 |
-
$username = '
|
153 |
} else {
|
154 |
$username = wp_get_current_user()->user_login;
|
155 |
}
|
@@ -174,7 +174,7 @@ class WSAL_Sensors_FrontendWooCommerce extends WSAL_AbstractSensor {
|
|
174 |
$wc_all_stock_changes = $this->plugin->GetGlobalBooleanSetting( 'wc-all-stock-changes', true );
|
175 |
|
176 |
// If stock has changed then trigger the alert.
|
177 |
-
if ( ( $old_stock !== $new_stock ) && (
|
178 |
$editor_link = $this->get_editor_link( $post );
|
179 |
|
180 |
// Check if this was done via an order by looking for event 9035.
|
149 |
// Set username.
|
150 |
$username = '';
|
151 |
if ( ! is_user_logged_in() ) {
|
152 |
+
$username = 'Unregistered user';
|
153 |
} else {
|
154 |
$username = wp_get_current_user()->user_login;
|
155 |
}
|
174 |
$wc_all_stock_changes = $this->plugin->GetGlobalBooleanSetting( 'wc-all-stock-changes', true );
|
175 |
|
176 |
// If stock has changed then trigger the alert.
|
177 |
+
if ( ( $old_stock !== $new_stock ) && ( $wc_all_stock_changes ) ) {
|
178 |
$editor_link = $this->get_editor_link( $post );
|
179 |
|
180 |
// Check if this was done via an order by looking for event 9035.
|
classes/Sensors/MetaData.php
CHANGED
@@ -89,6 +89,11 @@ class WSAL_Sensors_MetaData extends WSAL_AbstractMetaDataSensor {
|
|
89 |
return;
|
90 |
}
|
91 |
|
|
|
|
|
|
|
|
|
|
|
92 |
// Ignore updates from ignored custom post types.
|
93 |
if ( in_array( $post->post_type, $this->plugin->alerts->ignored_cpts, true ) ) {
|
94 |
return;
|
@@ -108,6 +113,7 @@ class WSAL_Sensors_MetaData extends WSAL_AbstractMetaDataSensor {
|
|
108 |
* @param WP_Post $post - Post object.
|
109 |
*/
|
110 |
$log_meta_event = apply_filters( 'wsal_before_post_meta_create_event', true, $meta_key, $meta_value, $post );
|
|
|
111 |
if ( $log_meta_event ) {
|
112 |
$editor_link = $this->GetEditorLink( $post );
|
113 |
$this->plugin->alerts->Trigger(
|
@@ -304,7 +310,7 @@ class WSAL_Sensors_MetaData extends WSAL_AbstractMetaDataSensor {
|
|
304 |
if ( in_array( $post->post_type, $this->plugin->alerts->ignored_cpts, true ) ) {
|
305 |
return;
|
306 |
}
|
307 |
-
|
308 |
// If not allowed to log meta event then skip it.
|
309 |
if ( ! $log_meta_event ) {
|
310 |
continue;
|
89 |
return;
|
90 |
}
|
91 |
|
92 |
+
// Remove WC coupons from ignored array.
|
93 |
+
if ( ( $key = array_search( 'shop_coupon', $this->plugin->alerts->ignored_cpts ) ) !== false) {
|
94 |
+
unset( $this->plugin->alerts->ignored_cpts[$key] );
|
95 |
+
}
|
96 |
+
|
97 |
// Ignore updates from ignored custom post types.
|
98 |
if ( in_array( $post->post_type, $this->plugin->alerts->ignored_cpts, true ) ) {
|
99 |
return;
|
113 |
* @param WP_Post $post - Post object.
|
114 |
*/
|
115 |
$log_meta_event = apply_filters( 'wsal_before_post_meta_create_event', true, $meta_key, $meta_value, $post );
|
116 |
+
|
117 |
if ( $log_meta_event ) {
|
118 |
$editor_link = $this->GetEditorLink( $post );
|
119 |
$this->plugin->alerts->Trigger(
|
310 |
if ( in_array( $post->post_type, $this->plugin->alerts->ignored_cpts, true ) ) {
|
311 |
return;
|
312 |
}
|
313 |
+
|
314 |
// If not allowed to log meta event then skip it.
|
315 |
if ( ! $log_meta_event ) {
|
316 |
continue;
|
classes/Sensors/Public.php
CHANGED
@@ -333,7 +333,7 @@ class WSAL_Sensors_Public extends WSAL_AbstractSensor {
|
|
333 |
// Set username.
|
334 |
$username = '';
|
335 |
if ( ! is_user_logged_in() ) {
|
336 |
-
$username = '
|
337 |
} else {
|
338 |
$username = wp_get_current_user()->user_login;
|
339 |
}
|
@@ -358,7 +358,7 @@ class WSAL_Sensors_Public extends WSAL_AbstractSensor {
|
|
358 |
$wc_all_stock_changes = $this->plugin->GetGlobalBooleanSetting( 'wc-all-stock-changes', true );
|
359 |
|
360 |
// If stock has changed then trigger the alert.
|
361 |
-
if ( ( $old_stock !== $new_stock ) && (
|
362 |
$editor_link = $this->get_editor_link( $post );
|
363 |
|
364 |
// Check if this was done via an order by looking for event 9035.
|
333 |
// Set username.
|
334 |
$username = '';
|
335 |
if ( ! is_user_logged_in() ) {
|
336 |
+
$username = 'Unregistered user';
|
337 |
} else {
|
338 |
$username = wp_get_current_user()->user_login;
|
339 |
}
|
358 |
$wc_all_stock_changes = $this->plugin->GetGlobalBooleanSetting( 'wc-all-stock-changes', true );
|
359 |
|
360 |
// If stock has changed then trigger the alert.
|
361 |
+
if ( ( $old_stock !== $new_stock ) && ( $wc_all_stock_changes ) ) {
|
362 |
$editor_link = $this->get_editor_link( $post );
|
363 |
|
364 |
// Check if this was done via an order by looking for event 9035.
|
classes/Sensors/System.php
CHANGED
@@ -236,7 +236,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor {
|
|
236 |
$ip = $this->plugin->settings()->GetMainClientIP();
|
237 |
|
238 |
if ( ! is_user_logged_in() ) {
|
239 |
-
$username = '
|
240 |
} else {
|
241 |
$username = wp_get_current_user()->user_login;
|
242 |
}
|
@@ -257,7 +257,7 @@ class WSAL_Sensors_System extends WSAL_AbstractSensor {
|
|
257 |
return;
|
258 |
}
|
259 |
|
260 |
-
if ( '
|
261 |
// Check if the alert is disabled from the "Enable/Disable Alerts" section.
|
262 |
if ( ! $this->plugin->alerts->IsEnabled( 6007 ) ) {
|
263 |
return;
|
236 |
$ip = $this->plugin->settings()->GetMainClientIP();
|
237 |
|
238 |
if ( ! is_user_logged_in() ) {
|
239 |
+
$username = 'Unregistered user';
|
240 |
} else {
|
241 |
$username = wp_get_current_user()->user_login;
|
242 |
}
|
257 |
return;
|
258 |
}
|
259 |
|
260 |
+
if ( 'Unregistered user' !== $username ) {
|
261 |
// Check if the alert is disabled from the "Enable/Disable Alerts" section.
|
262 |
if ( ! $this->plugin->alerts->IsEnabled( 6007 ) ) {
|
263 |
return;
|
classes/Utilities/PluginInstallAndActivate.php
CHANGED
@@ -76,10 +76,10 @@ if ( ! class_exists( 'WSAL_PluginInstallAndActivate' ) ) {
|
|
76 |
$our_plugins = $this->get_installable_plugins();
|
77 |
?>
|
78 |
<table id="tab-third-party-plugins" class="form-table wp-list-table wsal-tab widefat fixed" style="display: table;" cellspacing="0">
|
79 |
-
<p class="description"><?php esc_html_e( 'WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin.', 'wp-security-audit-log' ); ?></p>
|
80 |
<tbody>
|
81 |
<tr>
|
82 |
<td class="addon-td">
|
|
|
83 |
<?php
|
84 |
// Create a nonce to pass through via data attr.
|
85 |
$nonce = wp_create_nonce( 'wsal-install-addon' );
|
@@ -132,7 +132,7 @@ if ( ! class_exists( 'WSAL_PluginInstallAndActivate' ) ) {
|
|
132 |
$plugins = array(
|
133 |
array(
|
134 |
'addon_for' => 'bbpress',
|
135 |
-
'title' => 'BBPress
|
136 |
'image_filename' => 'bbpress.png',
|
137 |
'plugin_slug' => 'wp-security-audit-log-add-on-for-bbpress/wsal-bbpress.php',
|
138 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-security-audit-log-add-on-for-bbpress.latest-stable.zip',
|
@@ -141,21 +141,21 @@ if ( ! class_exists( 'WSAL_PluginInstallAndActivate' ) ) {
|
|
141 |
),
|
142 |
array(
|
143 |
'addon_for' => 'wpforms',
|
144 |
-
'title' => 'WPForms
|
145 |
'image_filename' => 'wpforms.png',
|
146 |
'plugin_slug' => 'wp-security-audit-log-add-on-for-wpforms/wsal-wpforms.php',
|
147 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-security-audit-log-add-on-for-wpforms.latest-stable.zip',
|
148 |
'event_tab_id' => '#tab-wpforms',
|
149 |
-
'plugin_description' => 'Keep a record of when someone adds,
|
150 |
),
|
151 |
array(
|
152 |
'addon_for' => 'woocommerce',
|
153 |
-
'title' => 'WooCommerce
|
154 |
'image_filename' => 'woocommerce.png',
|
155 |
'plugin_slug' => 'wp-activity-log-for-woocommerce/wsal-woocommerce.php',
|
156 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-activity-log-for-woocommerce.latest-stable.zip',
|
157 |
'event_tab_id' => '#tab-woocommerce',
|
158 |
-
'plugin_description' => 'Keep a
|
159 |
),
|
160 |
array(
|
161 |
'addon_for' => 'wfcm',
|
76 |
$our_plugins = $this->get_installable_plugins();
|
77 |
?>
|
78 |
<table id="tab-third-party-plugins" class="form-table wp-list-table wsal-tab widefat fixed" style="display: table;" cellspacing="0">
|
|
|
79 |
<tbody>
|
80 |
<tr>
|
81 |
<td class="addon-td">
|
82 |
+
<p class="description"><?php esc_html_e( 'WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin.', 'wp-security-audit-log' ); ?></p></br>
|
83 |
<?php
|
84 |
// Create a nonce to pass through via data attr.
|
85 |
$nonce = wp_create_nonce( 'wsal-install-addon' );
|
132 |
$plugins = array(
|
133 |
array(
|
134 |
'addon_for' => 'bbpress',
|
135 |
+
'title' => 'BBPress',
|
136 |
'image_filename' => 'bbpress.png',
|
137 |
'plugin_slug' => 'wp-security-audit-log-add-on-for-bbpress/wsal-bbpress.php',
|
138 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-security-audit-log-add-on-for-bbpress.latest-stable.zip',
|
141 |
),
|
142 |
array(
|
143 |
'addon_for' => 'wpforms',
|
144 |
+
'title' => 'WPForms',
|
145 |
'image_filename' => 'wpforms.png',
|
146 |
'plugin_slug' => 'wp-security-audit-log-add-on-for-wpforms/wsal-wpforms.php',
|
147 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-security-audit-log-add-on-for-wpforms.latest-stable.zip',
|
148 |
'event_tab_id' => '#tab-wpforms',
|
149 |
+
'plugin_description' => 'Keep a record of when someone adds, modifies or deletes forms, entries and more in the WPForms plugin.',
|
150 |
),
|
151 |
array(
|
152 |
'addon_for' => 'woocommerce',
|
153 |
+
'title' => 'WooCommerce',
|
154 |
'image_filename' => 'woocommerce.png',
|
155 |
'plugin_slug' => 'wp-activity-log-for-woocommerce/wsal-woocommerce.php',
|
156 |
'plugin_url' => 'https://downloads.wordpress.org/plugin/wp-activity-log-for-woocommerce.latest-stable.zip',
|
157 |
'event_tab_id' => '#tab-woocommerce',
|
158 |
+
'plugin_description' => 'Keep a log of your team\'s store settings, products, orders, coupons and any other changes they might do on your eCommerce store.',
|
159 |
),
|
160 |
array(
|
161 |
'addon_for' => 'wfcm',
|
classes/Views/AuditLog.php
CHANGED
@@ -247,27 +247,36 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
247 |
$screen = get_current_screen();
|
248 |
$notice_already_dismissed = $this->_plugin->GetGlobalSetting( 'addon_available_notice_dismissed' );
|
249 |
if ( $screen->base === 'toplevel_page_wsal-auditlog' && $is_current_view && ! $notice_already_dismissed || $screen->base === 'toplevel_page_wsal-auditlog-network' && $is_current_view && ! $notice_already_dismissed ) {
|
250 |
-
|
251 |
-
$all_plugins
|
252 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
$predefined_plugins = WSAL_PluginInstallAndActivate::get_installable_plugins();
|
254 |
-
$
|
255 |
-
|
|
|
|
|
|
|
256 |
$display_notice = false;
|
257 |
|
258 |
-
if ( isset( $
|
259 |
$addon_names = '';
|
260 |
$i = 0;
|
261 |
-
foreach ( $
|
262 |
-
$addon_slug =
|
263 |
-
$is_addon_installed =
|
264 |
|
265 |
// Check if a function from the addon exists, just in case.
|
266 |
if ( $addon === 'wpforms' && function_exists( 'wsal_wpforms_init_actions' ) || $addon === 'bbpress' && function_exists( 'wsal_bbpress_init_actions' ) ) {
|
267 |
continue;
|
268 |
}
|
269 |
|
270 |
-
if (
|
271 |
$addon = str_replace( '-', ' ', $addon);
|
272 |
if ( $addon === 'bbpress' ) {
|
273 |
$addon = 'bbPress';
|
247 |
$screen = get_current_screen();
|
248 |
$notice_already_dismissed = $this->_plugin->GetGlobalSetting( 'addon_available_notice_dismissed' );
|
249 |
if ( $screen->base === 'toplevel_page_wsal-auditlog' && $is_current_view && ! $notice_already_dismissed || $screen->base === 'toplevel_page_wsal-auditlog-network' && $is_current_view && ! $notice_already_dismissed ) {
|
250 |
+
// Grab list of installed plugins.
|
251 |
+
$all_plugins = get_plugins();
|
252 |
+
$plugin_filenames = array();
|
253 |
+
foreach ( $all_plugins as $plugin => $info ) {
|
254 |
+
// here we strip all of the plugin slug, leaving just the filename itself. Neat!
|
255 |
+
$plugin_filenames[] = preg_replace( '/\\.[^.\\s]{3,4}$/', '', substr( basename( json_encode( $plugin ) ), 0, -1 ) );
|
256 |
+
}
|
257 |
+
|
258 |
+
// Grab list of plugins we have addons for.
|
259 |
$predefined_plugins = WSAL_PluginInstallAndActivate::get_installable_plugins();
|
260 |
+
$predefined_plugins_check = array_column( $predefined_plugins, 'addon_for' );
|
261 |
+
|
262 |
+
// Loop through plugins and create an array of slugs, we will compare these agains the plugins we have addons for.
|
263 |
+
$we_have_addon = array_intersect( $plugin_filenames, $predefined_plugins_check );
|
264 |
+
|
265 |
$display_notice = false;
|
266 |
|
267 |
+
if ( isset( $we_have_addon ) && is_array( $we_have_addon ) ) {
|
268 |
$addon_names = '';
|
269 |
$i = 0;
|
270 |
+
foreach ( $we_have_addon as $addon ) {
|
271 |
+
$addon_slug = array_search( $addon, array_column( $predefined_plugins, 'addon_for', 'plugin_slug' ) );
|
272 |
+
$is_addon_installed = is_plugin_active( $addon_slug );
|
273 |
|
274 |
// Check if a function from the addon exists, just in case.
|
275 |
if ( $addon === 'wpforms' && function_exists( 'wsal_wpforms_init_actions' ) || $addon === 'bbpress' && function_exists( 'wsal_bbpress_init_actions' ) ) {
|
276 |
continue;
|
277 |
}
|
278 |
|
279 |
+
if ( ! $is_addon_installed ) {
|
280 |
$addon = str_replace( '-', ' ', $addon);
|
281 |
if ( $addon === 'bbpress' ) {
|
282 |
$addon = 'bbPress';
|
classes/Views/ToggleAlerts.php
CHANGED
@@ -179,7 +179,7 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView {
|
|
179 |
$is_custom = ! empty( $events_diff ) ? true : false; // If difference is not empty then mode is custom.
|
180 |
$log_details = $this->_plugin->GetGlobalSetting( 'details-level', false ); // Get log level option.
|
181 |
|
182 |
-
$subcat_alerts = array( 1004, 2010, 2111, 9007, 9047 );
|
183 |
$obsolete_events = array( 9999, 2126, 6023, 9011, 9070, 9075, 4013 );
|
184 |
?>
|
185 |
<p>
|
@@ -408,6 +408,8 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView {
|
|
408 |
esc_html_e( 'Post Settings', 'wp-security-audit-log' );
|
409 |
} elseif ( 9007 === $alert->type ) {
|
410 |
esc_html_e( 'Product Admin', 'wp-security-audit-log' );
|
|
|
|
|
411 |
} elseif ( 9047 === $alert->type ) {
|
412 |
esc_html_e( 'Product Attributes', 'wp-security-audit-log' );
|
413 |
}
|
@@ -527,7 +529,7 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView {
|
|
527 |
<tr>
|
528 |
<td></td>
|
529 |
<td>
|
530 |
-
<input name="wc_all_stock_changes" type="checkbox" id="wc_all_stock_changes" value="1" <?php checked( $wc_all_stock_changes
|
531 |
</td>
|
532 |
<td colspan="2"><?php esc_html_e( 'Log all stock changes. Disable this setting to only keep a log of stock changes done manually via the WooCommerce dashboard. Therefore automated stock changes typically done via customers placing orders or via other plugins will not be logged.', 'wp-security-audit-log' ); ?></td>
|
533 |
</tr>
|
179 |
$is_custom = ! empty( $events_diff ) ? true : false; // If difference is not empty then mode is custom.
|
180 |
$log_details = $this->_plugin->GetGlobalSetting( 'details-level', false ); // Get log level option.
|
181 |
|
182 |
+
$subcat_alerts = array( 1004, 2010, 2111, 9007, 9105, 9047 );
|
183 |
$obsolete_events = array( 9999, 2126, 6023, 9011, 9070, 9075, 4013 );
|
184 |
?>
|
185 |
<p>
|
408 |
esc_html_e( 'Post Settings', 'wp-security-audit-log' );
|
409 |
} elseif ( 9007 === $alert->type ) {
|
410 |
esc_html_e( 'Product Admin', 'wp-security-audit-log' );
|
411 |
+
} elseif ( 9105 === $alert->type ) {
|
412 |
+
esc_html_e( 'Product Stock Changes', 'wp-security-audit-log' );
|
413 |
} elseif ( 9047 === $alert->type ) {
|
414 |
esc_html_e( 'Product Attributes', 'wp-security-audit-log' );
|
415 |
}
|
529 |
<tr>
|
530 |
<td></td>
|
531 |
<td>
|
532 |
+
<input name="wc_all_stock_changes" type="checkbox" id="wc_all_stock_changes" value="1" <?php checked( $wc_all_stock_changes ); ?> />
|
533 |
</td>
|
534 |
<td colspan="2"><?php esc_html_e( 'Log all stock changes. Disable this setting to only keep a log of stock changes done manually via the WooCommerce dashboard. Therefore automated stock changes typically done via customers placing orders or via other plugins will not be logged.', 'wp-security-audit-log' ); ?></td>
|
535 |
</tr>
|
languages/wp-security-audit-log.pot
CHANGED
@@ -3,25 +3,23 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: WP Activity Log\n"
|
6 |
-
"POT-Creation-Date: 2020-08-
|
7 |
-
"PO-Revision-Date: 2020-08-
|
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
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: wp-security-audit-log.php\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
19 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
20 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
-
"X-Poedit-SearchPathExcluded-0: *.
|
23 |
|
24 |
-
#. translators: Event ID
|
25 |
#: classes/AlertManager.php:363
|
26 |
#, php-format
|
27 |
msgid "Event with code %d has not be registered."
|
@@ -52,14 +50,21 @@ msgid "Contact us"
|
|
52 |
msgstr ""
|
53 |
|
54 |
#: classes/AlertManager.php:1106 classes/AuditLogListView.php:333
|
55 |
-
#: classes/AuditLogListView.php:367 classes/Views/Settings.php:
|
56 |
#: classes/WidgetManager.php:76
|
|
|
|
|
|
|
|
|
57 |
msgid "User"
|
58 |
msgstr ""
|
59 |
|
60 |
#: classes/AlertManager.php:1107 classes/AlertManager.php:1893
|
61 |
#: classes/AuditLogGridView.php:517 classes/AuditLogListView.php:543
|
62 |
#: defaults.php:373
|
|
|
|
|
|
|
63 |
msgid "System"
|
64 |
msgstr ""
|
65 |
|
@@ -142,6 +147,9 @@ msgid "Multisite Network"
|
|
142 |
msgstr ""
|
143 |
|
144 |
#: classes/AlertManager.php:1128
|
|
|
|
|
|
|
145 |
msgid "IP Address"
|
146 |
msgstr ""
|
147 |
|
@@ -178,6 +186,7 @@ msgid "Updated"
|
|
178 |
msgstr ""
|
179 |
|
180 |
#: classes/AlertManager.php:1188
|
|
|
181 |
msgid "Created"
|
182 |
msgstr ""
|
183 |
|
@@ -185,7 +194,7 @@ msgstr ""
|
|
185 |
msgid "Modified"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: classes/AlertManager.php:1190
|
189 |
msgid "Deleted"
|
190 |
msgstr ""
|
191 |
|
@@ -206,6 +215,7 @@ msgid "Enabled"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: classes/AlertManager.php:1195
|
|
|
209 |
msgid "Disabled"
|
210 |
msgstr ""
|
211 |
|
@@ -267,23 +277,33 @@ msgstr ""
|
|
267 |
|
268 |
#: classes/AlertManager.php:1470 classes/Views/ToggleAlerts.php:235
|
269 |
#: classes/Views/ToggleAlerts.php:267 defaults.php:268
|
|
|
|
|
|
|
270 |
msgid "Pages"
|
271 |
msgstr ""
|
272 |
|
273 |
#: classes/AlertManager.php:1470 classes/Views/ToggleAlerts.php:235
|
274 |
#: classes/Views/ToggleAlerts.php:267 defaults.php:228
|
|
|
|
|
|
|
275 |
msgid "Custom Post Types"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: classes/AlertManager.php:1792
|
279 |
msgid "System Activity"
|
280 |
msgstr ""
|
281 |
|
282 |
#: classes/AlertManager.php:1852 classes/ConstantManager.php:146
|
|
|
|
|
283 |
msgid "Unknown error code."
|
284 |
msgstr ""
|
285 |
|
286 |
#: classes/AlertManager.php:1859 classes/AlertManager.php:1871
|
|
|
|
|
287 |
msgid "Unknown Site"
|
288 |
msgstr ""
|
289 |
|
@@ -313,6 +333,7 @@ msgstr ""
|
|
313 |
|
314 |
#: classes/AuditLogGridView.php:229 classes/AuditLogListView.php:235
|
315 |
#: classes/Views/AuditLog.php:628
|
|
|
316 |
msgid "All Sites"
|
317 |
msgstr ""
|
318 |
|
@@ -331,21 +352,28 @@ msgstr ""
|
|
331 |
|
332 |
#: classes/AuditLogGridView.php:315 classes/AuditLogGridView.php:341
|
333 |
#: classes/AuditLogListView.php:331 classes/AuditLogListView.php:361
|
334 |
-
#: classes/Views/Settings.php:
|
|
|
|
|
335 |
msgid "Severity"
|
336 |
msgstr ""
|
337 |
|
338 |
#: classes/AuditLogGridView.php:316
|
|
|
339 |
msgid "Info"
|
340 |
msgstr ""
|
341 |
|
342 |
#: classes/AuditLogGridView.php:321 classes/AuditLogListView.php:341
|
343 |
#: classes/AuditLogListView.php:373
|
|
|
|
|
|
|
344 |
msgid "Site"
|
345 |
msgstr ""
|
346 |
|
347 |
#: classes/AuditLogGridView.php:324 classes/AuditLogGridView.php:347
|
348 |
#: classes/AuditLogListView.php:344 classes/AuditLogListView.php:382
|
|
|
349 |
msgid "Message"
|
350 |
msgstr ""
|
351 |
|
@@ -430,33 +458,46 @@ msgstr ""
|
|
430 |
|
431 |
#: classes/AuditLogGridView.php:752 classes/AuditLogListView.php:752
|
432 |
#: classes/Settings.php:1849 classes/Settings.php:2089
|
|
|
433 |
msgid "published"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#. translators: Mailto link for support.
|
437 |
#: classes/AuditLogGridView.php:780 classes/AuditLogListView.php:780
|
438 |
#: classes/Settings.php:1875 classes/Settings.php:2115
|
|
|
|
|
439 |
#, php-format
|
440 |
msgid "Contact us on %s for assistance"
|
441 |
msgstr ""
|
442 |
|
443 |
#: classes/AuditLogGridView.php:914 classes/AuditLogListView.php:914
|
|
|
|
|
|
|
444 |
msgid "Select All"
|
445 |
msgstr ""
|
446 |
|
447 |
#: classes/AuditLogListView.php:332 classes/AuditLogListView.php:364
|
|
|
448 |
msgid "Date"
|
449 |
msgstr ""
|
450 |
|
451 |
#: classes/AuditLogListView.php:334 classes/AuditLogListView.php:370
|
|
|
452 |
msgid "IP"
|
453 |
msgstr ""
|
454 |
|
455 |
#: classes/AuditLogListView.php:335 classes/AuditLogListView.php:376
|
|
|
|
|
|
|
456 |
msgid "Object"
|
457 |
msgstr ""
|
458 |
|
459 |
#: classes/AuditLogListView.php:336 classes/AuditLogListView.php:379
|
|
|
|
|
|
|
460 |
msgid "Event Type"
|
461 |
msgstr ""
|
462 |
|
@@ -465,10 +506,12 @@ msgid "Click to toggle."
|
|
465 |
msgstr ""
|
466 |
|
467 |
#: classes/AuditLogListView.php:446 classes/Models/Occurrence.php:83
|
|
|
468 |
msgid "Alert message not found."
|
469 |
msgstr ""
|
470 |
|
471 |
#: classes/AuditLogListView.php:447 classes/Models/Occurrence.php:84
|
|
|
472 |
msgid "Alert description not found."
|
473 |
msgstr ""
|
474 |
|
@@ -478,7 +521,6 @@ msgid ""
|
|
478 |
"valid."
|
479 |
msgstr ""
|
480 |
|
481 |
-
#. translators: 1 - mysqli error code, 2 - mysqli error message
|
482 |
#: classes/Connector/MySQLDB.php:69
|
483 |
#, php-format
|
484 |
msgid "Code %1$d: %2$s"
|
@@ -488,7 +530,6 @@ msgstr ""
|
|
488 |
msgid "Error establishing a database connection"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#. translators: 1: wp-config.php. 2: database host
|
492 |
#: classes/Connector/wp-db-custom.php:216
|
493 |
#, php-format
|
494 |
msgid ""
|
@@ -509,7 +550,6 @@ msgstr ""
|
|
509 |
msgid "Are you sure that the database server is running?"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#. translators: %s: support forums URL
|
513 |
#: classes/Connector/wp-db-custom.php:229
|
514 |
#, php-format
|
515 |
msgid ""
|
@@ -526,7 +566,6 @@ msgstr ""
|
|
526 |
msgid "Can’t select database"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#. translators: %s: database name
|
530 |
#: classes/Connector/wp-db-custom.php:287
|
531 |
#, php-format
|
532 |
msgid ""
|
@@ -538,13 +577,11 @@ msgstr ""
|
|
538 |
msgid "Are you sure it exists?"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#. translators: 1: database user, 2: database name
|
542 |
#: classes/Connector/wp-db-custom.php:296
|
543 |
#, php-format
|
544 |
msgid "Does the user %1$s have permission to use the %2$s database?"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#. translators: %s: database name
|
548 |
#: classes/Connector/wp-db-custom.php:303
|
549 |
#, php-format
|
550 |
msgid ""
|
@@ -552,7 +589,6 @@ msgid ""
|
|
552 |
"it would be like <code>username_%1$s</code>. Could that be the problem?"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#. translators: %s: support forums URL
|
556 |
#: classes/Connector/wp-db-custom.php:311
|
557 |
#, php-format
|
558 |
msgid ""
|
@@ -567,6 +603,7 @@ msgstr ""
|
|
567 |
|
568 |
#: classes/ConstantManager.php:152 classes/ConstantManager.php:158
|
569 |
#: classes/Views/ToggleAlerts.php:442 classes/Views/ToggleAlerts.php:448
|
|
|
570 |
msgid "Critical"
|
571 |
msgstr ""
|
572 |
|
@@ -580,14 +617,17 @@ msgid "Notification"
|
|
580 |
msgstr ""
|
581 |
|
582 |
#: classes/ConstantManager.php:160 classes/Views/ToggleAlerts.php:450
|
|
|
583 |
msgid "High"
|
584 |
msgstr ""
|
585 |
|
586 |
#: classes/ConstantManager.php:162 classes/Views/ToggleAlerts.php:452
|
|
|
587 |
msgid "Medium"
|
588 |
msgstr ""
|
589 |
|
590 |
#: classes/ConstantManager.php:164 classes/Views/ToggleAlerts.php:454
|
|
|
591 |
msgid "Low"
|
592 |
msgstr ""
|
593 |
|
@@ -613,6 +653,7 @@ msgid "BBPress"
|
|
613 |
msgstr ""
|
614 |
|
615 |
#: classes/Models/Occurrence.php:208 classes/Views/ToggleAlerts.php:329
|
|
|
616 |
msgid "WooCommerce"
|
617 |
msgstr ""
|
618 |
|
@@ -651,7 +692,6 @@ msgstr ""
|
|
651 |
msgid "On backorder"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#. translators: %s: Directory path.
|
655 |
#: classes/Settings.php:272
|
656 |
#, php-format
|
657 |
msgid ""
|
@@ -664,42 +704,60 @@ msgid "This function is deprecated"
|
|
664 |
msgstr ""
|
665 |
|
666 |
#: classes/Settings.php:1753
|
|
|
|
|
667 |
msgid "View the content changes"
|
668 |
msgstr ""
|
669 |
|
670 |
#: classes/Settings.php:1758
|
|
|
|
|
|
|
|
|
671 |
msgid "View post in the editor"
|
672 |
msgstr ""
|
673 |
|
674 |
#: classes/Settings.php:1761
|
|
|
|
|
675 |
msgid "View Order"
|
676 |
msgstr ""
|
677 |
|
678 |
#: classes/Settings.php:1766
|
|
|
|
|
679 |
msgid "View category"
|
680 |
msgstr ""
|
681 |
|
682 |
#: classes/Settings.php:1769
|
|
|
|
|
683 |
msgid "View tag"
|
684 |
msgstr ""
|
685 |
|
686 |
#: classes/Settings.php:1773
|
|
|
|
|
687 |
msgid "User profile page"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: classes/Settings.php:1887
|
691 |
msgid "Increase maximum file size limit"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: classes/Settings.php:1890
|
695 |
msgid "Contact Support"
|
696 |
msgstr ""
|
697 |
|
698 |
#: classes/Settings.php:2127
|
|
|
|
|
699 |
msgid "plugin settings"
|
700 |
msgstr ""
|
701 |
|
702 |
#: classes/Settings.php:2130
|
|
|
|
|
703 |
msgid "contact our support"
|
704 |
msgstr ""
|
705 |
|
@@ -761,23 +819,23 @@ msgid ""
|
|
761 |
msgstr ""
|
762 |
|
763 |
#: classes/Utilities/PluginInstallAndActivate.php:100
|
764 |
-
#: classes/Views/SetupWizard.php:
|
765 |
msgid "Extension for "
|
766 |
msgstr ""
|
767 |
|
768 |
#: classes/Utilities/PluginInstallAndActivate.php:105
|
769 |
-
#: classes/Views/SetupWizard.php:
|
770 |
msgid "Extension installed, activate now?"
|
771 |
msgstr ""
|
772 |
|
773 |
#: classes/Utilities/PluginInstallAndActivate.php:107
|
774 |
-
#: classes/Views/SetupWizard.php:274 classes/Views/SetupWizard.php:
|
775 |
-
#: wp-security-audit-log.php:
|
776 |
msgid "Extension installed"
|
777 |
msgstr ""
|
778 |
|
779 |
#: classes/Utilities/PluginInstallAndActivate.php:109
|
780 |
-
#: classes/Views/AuditLog.php:283 classes/Views/SetupWizard.php:
|
781 |
msgid "Install Extension"
|
782 |
msgstr ""
|
783 |
|
@@ -785,16 +843,58 @@ msgstr ""
|
|
785 |
msgid "Tried to install a zip or slug that was not in the allowed list"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: classes/ViewManager.php:
|
789 |
msgid ""
|
790 |
"WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade "
|
791 |
"that plugin."
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: classes/ViewManager.php:
|
795 |
msgid "Free Premium Trial"
|
796 |
msgstr ""
|
797 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
798 |
#: classes/Views/AuditLog.php:99
|
799 |
msgid ""
|
800 |
"Get instantly alerted of critical changes via SMS & email, search the "
|
@@ -899,6 +999,14 @@ msgstr ""
|
|
899 |
|
900 |
#: classes/Views/AuditLog.php:542 classes/Views/Settings.php:325
|
901 |
#: classes/Views/ToggleAlerts.php:132
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
902 |
msgid "You do not have sufficient permissions to access this page."
|
903 |
msgstr ""
|
904 |
|
@@ -910,20 +1018,20 @@ msgstr ""
|
|
910 |
|
911 |
#: classes/Views/AuditLog.php:592 classes/Views/Settings.php:528
|
912 |
#: classes/Views/Settings.php:555 classes/Views/Settings.php:621
|
913 |
-
#: classes/Views/Settings.php:679 classes/Views/Settings.php:
|
914 |
-
#: classes/Views/Settings.php:
|
915 |
-
#: classes/Views/Settings.php:
|
916 |
-
#: classes/Views/Settings.php:
|
917 |
#: classes/Views/SetupWizard.php:612
|
918 |
msgid "Yes"
|
919 |
msgstr ""
|
920 |
|
921 |
#: classes/Views/AuditLog.php:593 classes/Views/Settings.php:533
|
922 |
#: classes/Views/Settings.php:560 classes/Views/Settings.php:651
|
923 |
-
#: classes/Views/Settings.php:689 classes/Views/Settings.php:
|
924 |
-
#: classes/Views/Settings.php:
|
925 |
-
#: classes/Views/Settings.php:
|
926 |
-
#: classes/Views/Settings.php:
|
927 |
#: classes/Views/SetupWizard.php:617
|
928 |
msgid "No"
|
929 |
msgstr ""
|
@@ -940,14 +1048,6 @@ msgstr ""
|
|
940 |
msgid "No users found."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: classes/Views/AuditLog.php:816 classes/Views/AuditLog.php:877
|
944 |
-
#: classes/Views/AuditLog.php:903 classes/Views/AuditLog.php:1223
|
945 |
-
#: classes/Views/AuditLog.php:1293 classes/Views/Settings.php:234
|
946 |
-
#: classes/Views/Settings.php:1793 classes/Views/Settings.php:1821
|
947 |
-
#: classes/Views/Settings.php:1851 classes/Views/SetupWizard.php:96
|
948 |
-
msgid "Nonce verification failed."
|
949 |
-
msgstr ""
|
950 |
-
|
951 |
#: classes/Views/AuditLog.php:835
|
952 |
msgid "Log file does not exist."
|
953 |
msgstr ""
|
@@ -964,7 +1064,6 @@ msgstr ""
|
|
964 |
msgid "Freemius opt choice not found."
|
965 |
msgstr ""
|
966 |
|
967 |
-
#. translators: 1 - an opening link tag, 2 - the closing tag.
|
968 |
#: classes/Views/AuditLog.php:1038
|
969 |
#, php-format
|
970 |
msgid ""
|
@@ -1436,6 +1535,8 @@ msgid "Advanced Settings"
|
|
1436 |
msgstr ""
|
1437 |
|
1438 |
#: classes/Views/Settings.php:160 classes/Views/Settings.php:174
|
|
|
|
|
1439 |
msgid "Settings"
|
1440 |
msgstr ""
|
1441 |
|
@@ -1447,11 +1548,6 @@ msgstr ""
|
|
1447 |
msgid "Unknown settings tab."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
-
#: classes/Views/Settings.php:219 classes/Views/Settings.php:1881
|
1451 |
-
#: classes/Views/Settings.php:1910 classes/Views/SetupWizard.php:83
|
1452 |
-
msgid "Access Denied."
|
1453 |
-
msgstr ""
|
1454 |
-
|
1455 |
#: classes/Views/Settings.php:244 classes/Views/SetupWizard.php:106
|
1456 |
msgid "Invalid input."
|
1457 |
msgstr ""
|
@@ -1461,10 +1557,13 @@ msgid "Message sent successfully."
|
|
1461 |
msgstr ""
|
1462 |
|
1463 |
#: classes/Views/Settings.php:341 classes/Views/ToggleAlerts.php:149
|
|
|
1464 |
msgid "Settings have been saved."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
#: classes/Views/Settings.php:347 classes/Views/ToggleAlerts.php:155
|
|
|
|
|
1468 |
msgid "Error: "
|
1469 |
msgstr ""
|
1470 |
|
@@ -1493,7 +1592,6 @@ msgstr ""
|
|
1493 |
msgid "Use infinite scroll or pagination for the event viewer?"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#. translators: Learn more link.
|
1497 |
#: classes/Views/Settings.php:454
|
1498 |
#, php-format
|
1499 |
msgid ""
|
@@ -1543,7 +1641,6 @@ msgstr ""
|
|
1543 |
msgid "Display latest events widget in Dashboard & Admin bar"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#. translators: Max number of dashboard widget alerts.
|
1547 |
#: classes/Views/Settings.php:514
|
1548 |
#, php-format
|
1549 |
msgid ""
|
@@ -1618,7 +1715,6 @@ msgstr ""
|
|
1618 |
msgid "Is your website running behind a firewall or reverse proxy?"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#. translators: Learn more link.
|
1622 |
#: classes/Views/Settings.php:666
|
1623 |
#, php-format
|
1624 |
msgid ""
|
@@ -1646,7 +1742,6 @@ msgstr ""
|
|
1646 |
msgid "Who can change the plugin settings?"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#. translators: Learn more link.
|
1650 |
#: classes/Views/Settings.php:712
|
1651 |
#, php-format
|
1652 |
msgid ""
|
@@ -1793,83 +1888,85 @@ msgid ""
|
|
1793 |
"data in an external database."
|
1794 |
msgstr ""
|
1795 |
|
1796 |
-
|
1797 |
-
#: classes/Views/Settings.php:978
|
1798 |
#, php-format
|
1799 |
msgid ""
|
1800 |
"Retention settings moved to %1$s archiving settings %2$s because archiving "
|
1801 |
"is enabled"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: classes/Views/Settings.php:
|
1805 |
msgid "Activity log retention"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#: classes/Views/Settings.php:
|
1809 |
msgid "Keep all data"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: classes/Views/Settings.php:
|
|
|
1813 |
msgid "Delete events older than"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: classes/Views/Settings.php:
|
|
|
1817 |
msgid "Months"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: classes/Views/Settings.php:
|
|
|
1821 |
msgid "Years"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: classes/Views/Settings.php:
|
1825 |
msgid "The next scheduled purging of activity log data that is older than "
|
1826 |
msgstr ""
|
1827 |
|
1828 |
-
#: classes/Views/Settings.php:
|
1829 |
msgid "You can run the purging process now by clicking the button below."
|
1830 |
msgstr ""
|
1831 |
|
1832 |
-
#: classes/Views/Settings.php:
|
1833 |
msgid "Purge Old Data"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
-
#: classes/Views/Settings.php:
|
1837 |
msgid "What timestamp you would like to see in the WordPress activity log?"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#: classes/Views/Settings.php:
|
1841 |
msgid ""
|
1842 |
"Note that the WordPress' timezone might be different from that configured on "
|
1843 |
"the server so when you switch from UTC to WordPress timezone or vice versa "
|
1844 |
"you might notice a big difference."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: classes/Views/Settings.php:
|
1848 |
msgid "Events Timestamp"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: classes/Views/Settings.php:
|
1852 |
msgid "UTC"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: classes/Views/Settings.php:
|
1856 |
msgid "Timezone configured on this WordPress website"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: classes/Views/Settings.php:
|
1860 |
msgid "Show Milliseconds"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: classes/Views/Settings.php:
|
1864 |
msgid "Show Milliseconds in list view"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: classes/Views/Settings.php:
|
1868 |
msgid ""
|
1869 |
"What user information should be displayed in the WordPress activity log?"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: classes/Views/Settings.php:
|
1873 |
msgid ""
|
1874 |
"Usernames might not be the same as a user's first and last name so it can be "
|
1875 |
"difficult to recognize whose user was that did a change. When there is no "
|
@@ -1877,57 +1974,62 @@ msgid ""
|
|
1877 |
"back to the WordPress username."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: classes/Views/Settings.php:
|
1881 |
msgid "User information in Activity log"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: classes/Views/Settings.php:
|
1885 |
msgid "WordPress username"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: classes/Views/Settings.php:
|
1889 |
msgid "First name & last name"
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#: classes/Views/Settings.php:
|
1893 |
msgid "Configured public display name"
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: classes/Views/Settings.php:
|
1897 |
msgid "Select the columns to be displayed in the WordPress activity log"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#: classes/Views/Settings.php:
|
1901 |
msgid ""
|
1902 |
"When you deselect a column it won’t be shown in the activity log viewer in "
|
1903 |
"both views. The data will still be recorded by the plugin."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: classes/Views/Settings.php:
|
1907 |
msgid "Activity log columns selection"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: classes/Views/Settings.php:
|
|
|
|
|
|
|
|
|
|
|
1911 |
msgid "Event ID"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#: classes/Views/Settings.php:
|
1915 |
msgid "Date & Time"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: classes/Views/Settings.php:
|
1919 |
msgid "Source IP Address"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
-
#: classes/Views/Settings.php:
|
1923 |
msgid "Info (used in Grid view mode only)"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: classes/Views/Settings.php:
|
1927 |
msgid "Do you want to keep a log of WordPress background activity?"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: classes/Views/Settings.php:
|
1931 |
msgid ""
|
1932 |
"WordPress does a lot of things in the background that you do not necessarily "
|
1933 |
"need to know about, such as; deletion of post revisions, deletion of auto "
|
@@ -1935,37 +2037,37 @@ msgid ""
|
|
1935 |
"might be a lot and are irrelevant to the user."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: classes/Views/Settings.php:
|
1939 |
msgid "Enable Events for WordPress Background Activity"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: classes/Views/Settings.php:
|
1943 |
msgid "Website File Changes Monitor"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: classes/Views/Settings.php:
|
1947 |
msgid ""
|
1948 |
"To keep a log of file changes please install Website File Changes Monitor, a "
|
1949 |
"plugin which is also developed by us."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: classes/Views/Settings.php:
|
1953 |
msgid "Install plugin now"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#: classes/Views/Settings.php:
|
1957 |
msgid "Learn More"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: classes/Views/Settings.php:
|
1961 |
msgid "Configure how often file changes scan run and other settings from the"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: classes/Views/Settings.php:
|
1965 |
msgid "Website File Changes plugin settings"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: classes/Views/Settings.php:
|
1969 |
msgid ""
|
1970 |
"By default the plugin keeps a log of all user changes done on your WordPress "
|
1971 |
"website. Use the setting below to exclude any objects from the activity log. "
|
@@ -1973,83 +2075,83 @@ msgid ""
|
|
1973 |
"object is referred will not be logged in the activity log."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: classes/Views/Settings.php:
|
1977 |
msgid "Exclude Users:"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: classes/Views/Settings.php:
|
1981 |
msgid "Exclude Roles:"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#: classes/Views/Settings.php:
|
1985 |
msgid "Exclude IP Address(es):"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: classes/Views/Settings.php:
|
1989 |
msgid ""
|
1990 |
"You can exclude an individual IP address or a range of IP addresses. To "
|
1991 |
"exclude a range use the following format: [first IP]-[last octet of the last "
|
1992 |
"IP]. Example: 172.16.180.6-127."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: classes/Views/Settings.php:
|
1996 |
msgid "Exclude Post Type:"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: classes/Views/Settings.php:
|
2000 |
msgid ""
|
2001 |
"WordPress has the post and page post types by default though your website "
|
2002 |
"might use more post types (custom post types). You can exclude all post "
|
2003 |
"types, including the default WordPress ones."
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: classes/Views/Settings.php:
|
2007 |
msgid "Exclude Custom Fields:"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: classes/Views/Settings.php:
|
2011 |
msgid ""
|
2012 |
"You can use the * wildcard to exclude multiple matching custom fields. For "
|
2013 |
"example to exclude all custom fields starting with wp123 enter wp123*"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#: classes/Views/Settings.php:
|
2017 |
msgid "Exclude Non-Existing URLs:"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#: classes/Views/Settings.php:
|
2021 |
msgid ""
|
2022 |
"Add the non existing URLs for which you do not want to be alerted of HTTP "
|
2023 |
"404 errors in the activity log by specifying the complete URL.\tExamples "
|
2024 |
"below:"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: classes/Views/Settings.php:
|
2028 |
msgid "File: "
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: classes/Views/Settings.php:
|
2032 |
msgid "Directory: "
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: classes/Views/Settings.php:
|
2036 |
msgid "These settings are for advanced users."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: classes/Views/Settings.php:
|
2040 |
msgid ""
|
2041 |
"If you have any questions <a href=\"https://wpactivitylog.com/contact/?"
|
2042 |
"utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings"
|
2043 |
"+pages\" target=\"_blank\">contact us</a>."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: classes/Views/Settings.php:
|
2047 |
msgid ""
|
2048 |
"Where do you want the plugin's working directory for log files, reports and "
|
2049 |
"other files?"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: classes/Views/Settings.php:
|
2053 |
msgid ""
|
2054 |
"The plugin stores the reports it generates, a number of log files ( for "
|
2055 |
"example to keep a log of 404 errors), and the request log in this working "
|
@@ -2059,81 +2161,81 @@ msgid ""
|
|
2059 |
"directory. Please specify the relative path of the directory."
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: classes/Views/Settings.php:
|
2063 |
msgid "Working directory location"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: classes/Views/Settings.php:
|
2067 |
msgid ""
|
2068 |
"<strong>Note:</strong> Enter a path from the root of your website: eg \"/wp-"
|
2069 |
"content/uploads/wp-activity-log/\"."
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: classes/Views/Settings.php:
|
2073 |
msgid ""
|
2074 |
"Troubleshooting setting: Keep a debug log of all the requests this website "
|
2075 |
"receives"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: classes/Views/Settings.php:
|
2079 |
msgid ""
|
2080 |
"Only enable the request log on testing, staging and development website. "
|
2081 |
"Never enable logging on a live website unless instructed to do so. Enabling "
|
2082 |
"request logging on a live website may degrade the performance of the website."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
-
#: classes/Views/Settings.php:
|
2086 |
msgid "Request Log"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: classes/Views/Settings.php:
|
2090 |
msgid ""
|
2091 |
"<strong>Note:</strong> The requests debug log file is saved as request.log."
|
2092 |
"php in the /wp-content/uploads/wp-activity-log/ directory."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: classes/Views/Settings.php:
|
2096 |
msgid "Reset plugin settings to default"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: classes/Views/Settings.php:
|
2100 |
msgid ""
|
2101 |
"Click the RESET button to reset ALL plugin settings to default. Note that "
|
2102 |
"the activity log data will be retained and only the plugin settings will be "
|
2103 |
"reset. To purge the data of the activity log use the setting below."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: classes/Views/Settings.php:
|
2107 |
msgid "Reset Settings"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: classes/Views/Settings.php:
|
2111 |
msgid "RESET"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: classes/Views/Settings.php:
|
2115 |
msgid "Purge the WordPress activity log"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: classes/Views/Settings.php:
|
2119 |
msgid ""
|
2120 |
"Click the Purge button below to delete all the data from the WordPress "
|
2121 |
"activity log and start afresh."
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#: classes/Views/Settings.php:
|
2125 |
msgid "Purge Activity Log"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#: classes/Views/Settings.php:
|
2129 |
msgid "PURGE"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#: classes/Views/Settings.php:
|
2133 |
msgid "MainWP Child Site Stealth Mode"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
-
#: classes/Views/Settings.php:
|
2137 |
msgid ""
|
2138 |
"This option is enabled automatically when the plugin detects the MainWP "
|
2139 |
"Child plugin on the site. When this setting is enabled plugin access is "
|
@@ -2142,23 +2244,23 @@ msgid ""
|
|
2142 |
"Disable this option to change the plugin to the default setup."
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: classes/Views/Settings.php:
|
2146 |
msgid "Enable MainWP Child Site Stealth Mode"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#: classes/Views/Settings.php:
|
2150 |
msgid "Admin blocking plugins support"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#: classes/Views/Settings.php:
|
2154 |
msgid "Enable early plugin loading on sites that use admin blocking plugins"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#: classes/Views/Settings.php:
|
2158 |
msgid "Do you want to delete the plugin data from the database upon uninstall?"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: classes/Views/Settings.php:
|
2162 |
msgid ""
|
2163 |
"The plugin saves the activity log data and settings in the WordPress "
|
2164 |
"database. By default upon uninstalling the plugin the data is kept in the "
|
@@ -2167,65 +2269,65 @@ msgid ""
|
|
2167 |
"access it again even when you reinstall the plugin."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: classes/Views/Settings.php:
|
2171 |
msgid "Remove Data on Uninstall"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: classes/Views/Settings.php:
|
2175 |
msgid "Are you sure you want to reset all the plugin settings to default?"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: classes/Views/Settings.php:
|
2179 |
msgid "Are you sure you want to purge all the activity log data?"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: classes/Views/Settings.php:
|
2183 |
msgid "MainWP Child plugin is not active on this website."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: classes/Views/Settings.php:
|
2187 |
msgid ""
|
2188 |
"The plugin cannot create the directory for the log files. Please check "
|
2189 |
"permissions and configure it again."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: classes/Views/Settings.php:
|
2193 |
msgid "The specified value is not a valid URL!"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
-
#: classes/Views/Settings.php:
|
2197 |
msgid "The specified value is not a valid post type!"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#: classes/Views/Settings.php:
|
2201 |
msgid "The specified value is not a valid IP address!"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: classes/Views/Settings.php:
|
2205 |
msgid "The specified value is not a user nor a role!"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: classes/Views/Settings.php:
|
2209 |
msgid "Filename cannot be added because it contains invalid characters."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: classes/Views/Settings.php:
|
2213 |
msgid "File extension cannot be added because it contains invalid characters."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: classes/Views/Settings.php:
|
2217 |
msgid "Directory cannot be added because it contains invalid characters."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: classes/Views/Settings.php:
|
2221 |
msgid "Tables has been reset."
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: classes/Views/Settings.php:
|
2225 |
msgid "Reset query failed."
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: classes/Views/Settings.php:
|
2229 |
msgid "Nonce Verification Failed."
|
2230 |
msgstr ""
|
2231 |
|
@@ -2253,8 +2355,8 @@ msgstr ""
|
|
2253 |
msgid "Log Retention"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: classes/Views/SetupWizard.php:207 classes/Views/SetupWizard.php:
|
2257 |
-
#: classes/Views/SetupWizard.php:
|
2258 |
msgid "Finish"
|
2259 |
msgstr ""
|
2260 |
|
@@ -2270,19 +2372,19 @@ msgstr ""
|
|
2270 |
msgid "Specified value in not an IP address."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: classes/Views/SetupWizard.php:272 wp-security-audit-log.php:
|
2274 |
msgid "Installing, please wait"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
-
#: classes/Views/SetupWizard.php:273 wp-security-audit-log.php:
|
2278 |
msgid "Already installed"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: classes/Views/SetupWizard.php:275 wp-security-audit-log.php:
|
2282 |
msgid "Extension activated"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: classes/Views/SetupWizard.php:276 wp-security-audit-log.php:
|
2286 |
msgid "Install failed"
|
2287 |
msgstr ""
|
2288 |
|
@@ -2294,7 +2396,6 @@ msgstr ""
|
|
2294 |
msgid "Close Wizard"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#. translators: 1 - an opening link tag, 2 - a closing link tag.
|
2298 |
#: classes/Views/SetupWizard.php:417
|
2299 |
#, php-format
|
2300 |
msgid ""
|
@@ -2337,7 +2438,11 @@ msgstr ""
|
|
2337 |
#: classes/Views/SetupWizard.php:470 classes/Views/SetupWizard.php:527
|
2338 |
#: classes/Views/SetupWizard.php:575 classes/Views/SetupWizard.php:624
|
2339 |
#: classes/Views/SetupWizard.php:684 classes/Views/SetupWizard.php:685
|
2340 |
-
#: classes/Views/SetupWizard.php:
|
|
|
|
|
|
|
|
|
2341 |
msgid "Next"
|
2342 |
msgstr ""
|
2343 |
|
@@ -2413,29 +2518,37 @@ msgid ""
|
|
2413 |
"Database tools to store the WordPress activity log in an external database."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: classes/Views/SetupWizard.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2417 |
msgid ""
|
2418 |
"Your plugin is all set and it is ready to start keeping a record of "
|
2419 |
"everything that is happening on your WordPress in a WordPress activity log."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: classes/Views/SetupWizard.php:
|
2423 |
msgid "Below are a few useful links you might need to refer to:"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: classes/Views/SetupWizard.php:
|
2427 |
msgid "Getting started with the WP Activity Log plugin"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: classes/Views/SetupWizard.php:
|
2431 |
msgid "Knowledge Base & Support Documents"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: classes/Views/SetupWizard.php:
|
2435 |
msgid "Benefits of keeping a WordPress activity log"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: classes/Views/SetupWizard.php:
|
2439 |
msgid ""
|
2440 |
"We trust this plugin meets all your activity log requirements. Should you "
|
2441 |
"encounter any problems, have feature requests or would like to share some "
|
@@ -2444,15 +2557,15 @@ msgid ""
|
|
2444 |
"+configuration\" target=\"_blank\">please get in touch!</a>"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: classes/Views/SetupWizard.php:
|
2448 |
msgid "Third Party Extensions"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: classes/Views/SetupWizard.php:
|
2452 |
msgid "Monitoring changes done in third party plugins"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: classes/Views/SetupWizard.php:
|
2456 |
msgid ""
|
2457 |
"We noticed that the below plugins are installed on this website. You can "
|
2458 |
"install our extensions to also keep a log of changes users do on these "
|
@@ -2681,13 +2794,15 @@ msgstr ""
|
|
2681 |
msgid "Log Level Updated"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#. translators: Alerts log level.
|
2685 |
#: classes/Views/ToggleAlerts.php:658
|
2686 |
#, php-format
|
2687 |
msgid "The %s log level has been successfully loaded and applied."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
#: classes/Views/ToggleAlerts.php:662
|
|
|
|
|
|
|
2691 |
msgid "OK"
|
2692 |
msgstr ""
|
2693 |
|
@@ -2750,6 +2865,7 @@ msgid "Users Logins & Sessions Events"
|
|
2750 |
msgstr ""
|
2751 |
|
2752 |
#: defaults.php:87
|
|
|
2753 |
msgid "User Activity"
|
2754 |
msgstr ""
|
2755 |
|
@@ -5220,173 +5336,3502 @@ msgstr ""
|
|
5220 |
msgid "Dummy"
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
|
5224 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5225 |
#, php-format
|
5226 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5227 |
msgstr ""
|
5228 |
|
5229 |
-
#:
|
|
|
|
|
5230 |
msgid ""
|
5231 |
-
"
|
5232 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#:
|
5236 |
-
msgid "
|
5237 |
msgstr ""
|
5238 |
|
5239 |
-
#:
|
5240 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5241 |
msgstr ""
|
5242 |
|
5243 |
-
|
5244 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
5245 |
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5246 |
msgid ""
|
5247 |
-
"
|
5248 |
-
"
|
5249 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5250 |
msgstr ""
|
5251 |
|
5252 |
-
|
5253 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5254 |
#, php-format
|
5255 |
msgid ""
|
5256 |
-
"
|
5257 |
-
"
|
5258 |
msgstr ""
|
5259 |
|
5260 |
-
|
5261 |
-
|
5262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#: wp-security-audit-log.php:
|
5266 |
msgid "Start free trial"
|
5267 |
msgstr ""
|
5268 |
|
5269 |
-
#: wp-security-audit-log.php:
|
5270 |
#, php-format
|
5271 |
msgid ""
|
5272 |
"You need to activate the licence key to use WP Activity Log Premium. %2$s"
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: wp-security-audit-log.php:
|
5276 |
msgid "Activate the licence key now"
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: wp-security-audit-log.php:
|
5280 |
#, php-format
|
5281 |
msgid ""
|
5282 |
"The license is limited to %s sub-sites. You need to upgrade your license to "
|
5283 |
"cover all the sub-sites on this network."
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: wp-security-audit-log.php:
|
5287 |
msgid ""
|
5288 |
"Error: You do not have sufficient permissions to disable this custom field."
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: wp-security-audit-log.php:
|
5292 |
#, php-format
|
5293 |
msgid ""
|
5294 |
"Custom Field %1$s is no longer being monitored.<br />Enable the monitoring "
|
5295 |
"of this custom field again from the"
|
5296 |
msgstr ""
|
5297 |
|
5298 |
-
#: wp-security-audit-log.php:
|
5299 |
msgid "Excluded Objects"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: wp-security-audit-log.php:
|
5303 |
msgid " tab in the plugin settings"
|
5304 |
msgstr ""
|
5305 |
|
5306 |
-
#: wp-security-audit-log.php:
|
5307 |
msgid "Error: You do not have sufficient permissions to disable this alert."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: wp-security-audit-log.php:
|
5311 |
#, php-format
|
5312 |
msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: wp-security-audit-log.php:
|
5316 |
msgid ""
|
5317 |
"You can enable this alert again from the Enable/Disable Alerts node in the "
|
5318 |
"plugin menu."
|
5319 |
msgstr ""
|
5320 |
|
5321 |
-
#: wp-security-audit-log.php:
|
5322 |
#, php-format
|
5323 |
msgid ""
|
5324 |
"You are using a version of PHP that is older than %s, which is no longer "
|
5325 |
"supported."
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: wp-security-audit-log.php:
|
5329 |
msgid ""
|
5330 |
"Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
|
5331 |
"\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
|
5332 |
"are using."
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: wp-security-audit-log.php:
|
5336 |
msgid ""
|
5337 |
"The WP Activity Log plugin is a multisite network tool, so it has to be "
|
5338 |
"activated at network level."
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: wp-security-audit-log.php:
|
5342 |
msgid "Redirect me to the network dashboard"
|
5343 |
msgstr ""
|
5344 |
|
5345 |
-
#: wp-security-audit-log.php:
|
5346 |
#, php-format
|
5347 |
msgid "Please install the %s plugin on the MainWP dashboard."
|
5348 |
msgstr ""
|
5349 |
|
5350 |
-
#: wp-security-audit-log.php:
|
5351 |
msgid "Activity Log for MainWP"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
-
#: wp-security-audit-log.php:
|
5355 |
#, php-format
|
5356 |
msgid ""
|
5357 |
"The WP Activity Log should be installed on the child sites only. Refer to "
|
5358 |
"the %s for more information."
|
5359 |
msgstr ""
|
5360 |
|
5361 |
-
#: wp-security-audit-log.php:
|
5362 |
msgid "getting started guide"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
-
#: wp-security-audit-log.php:
|
5366 |
msgid ""
|
5367 |
"This plugin uses 3 tables in the WordPress database to store the activity "
|
5368 |
"log and settings. It seems that these tables were not created."
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: wp-security-audit-log.php:
|
5372 |
msgid ""
|
5373 |
"This could happen because the database user does not have the right "
|
5374 |
"privileges to create the tables in the database. We recommend you to update "
|
5375 |
"the privileges and try enabling the plugin again."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: wp-security-audit-log.php:
|
5379 |
#, php-format
|
5380 |
msgid ""
|
5381 |
"If after doing so you still have issues, please send us an email on %s for "
|
5382 |
"assistance."
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: wp-security-audit-log.php:
|
5386 |
msgid "support@wpsecurityauditlog.com"
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: wp-security-audit-log.php:
|
5390 |
msgid ""
|
5391 |
"For security and auditing purposes, a record of all of your logged-in "
|
5392 |
"actions and changes within the WordPress dashboard will be recorded in an "
|
@@ -5395,32 +8840,31 @@ msgid ""
|
|
5395 |
"where you accessed this site from."
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: wp-security-audit-log.php:
|
5399 |
msgid "Every 6 hours"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: wp-security-audit-log.php:
|
5403 |
msgid "Every 45 minutes"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: wp-security-audit-log.php:
|
5407 |
msgid "Every 30 minutes"
|
5408 |
msgstr ""
|
5409 |
|
5410 |
-
#: wp-security-audit-log.php:
|
5411 |
msgid "Every 15 minutes"
|
5412 |
msgstr ""
|
5413 |
|
5414 |
-
#: wp-security-audit-log.php:
|
5415 |
msgid "Every 10 minutes"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
-
#: wp-security-audit-log.php:
|
5419 |
msgid "Every 1 minute"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
|
5423 |
-
#: wp-security-audit-log.php:2301
|
5424 |
#, php-format
|
5425 |
msgid "Method %1$s is deprecated since version %2$s!"
|
5426 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: WP Activity Log\n"
|
6 |
+
"POT-Creation-Date: 2020-08-10 10:44+0100\n"
|
7 |
+
"PO-Revision-Date: 2020-08-10 10:43+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 1.8.13\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
|
|
15 |
"X-Poedit-WPHeader: wp-security-audit-log.php\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
|
18 |
"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
|
19 |
"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
20 |
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
|
|
|
23 |
#: classes/AlertManager.php:363
|
24 |
#, php-format
|
25 |
msgid "Event with code %d has not be registered."
|
50 |
msgstr ""
|
51 |
|
52 |
#: classes/AlertManager.php:1106 classes/AuditLogListView.php:333
|
53 |
+
#: classes/AuditLogListView.php:367 classes/Views/Settings.php:1168
|
54 |
#: classes/WidgetManager.php:76
|
55 |
+
#: extensions/search/classes/Filters/UserNameFilter.php:44
|
56 |
+
#: extensions/search/classes/Filters/userfirstnamefilter.php:50
|
57 |
+
#: extensions/search/classes/Filters/userlastnamefilter.php:50
|
58 |
+
#: extensions/user-sessions/classes/View/Sessions.php:172
|
59 |
msgid "User"
|
60 |
msgstr ""
|
61 |
|
62 |
#: classes/AlertManager.php:1107 classes/AlertManager.php:1893
|
63 |
#: classes/AuditLogGridView.php:517 classes/AuditLogListView.php:543
|
64 |
#: defaults.php:373
|
65 |
+
#: extensions/email-notifications/classes/DailyNotification.php:241
|
66 |
+
#: extensions/email-notifications/classes/Notifier.php:633
|
67 |
+
#: extensions/reports/classes/Common.php:688
|
68 |
msgid "System"
|
69 |
msgstr ""
|
70 |
|
147 |
msgstr ""
|
148 |
|
149 |
#: classes/AlertManager.php:1128
|
150 |
+
#: extensions/email-notifications/classes/Common.php:1204
|
151 |
+
#: extensions/search/classes/Filters/IpFilter.php:87
|
152 |
+
#: extensions/user-sessions/classes/View/Sessions.php:352
|
153 |
msgid "IP Address"
|
154 |
msgstr ""
|
155 |
|
186 |
msgstr ""
|
187 |
|
188 |
#: classes/AlertManager.php:1188
|
189 |
+
#: extensions/user-sessions/classes/View/Sessions.php:179
|
190 |
msgid "Created"
|
191 |
msgstr ""
|
192 |
|
194 |
msgid "Modified"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: classes/AlertManager.php:1190 extensions/search/search-init.php:332
|
198 |
msgid "Deleted"
|
199 |
msgstr ""
|
200 |
|
215 |
msgstr ""
|
216 |
|
217 |
#: classes/AlertManager.php:1195
|
218 |
+
#: extensions/email-notifications/classes/Notifications.php:1922
|
219 |
msgid "Disabled"
|
220 |
msgstr ""
|
221 |
|
277 |
|
278 |
#: classes/AlertManager.php:1470 classes/Views/ToggleAlerts.php:235
|
279 |
#: classes/Views/ToggleAlerts.php:267 defaults.php:268
|
280 |
+
#: extensions/external-db/classes/Mirroring.php:457
|
281 |
+
#: extensions/external-db/classes/Mirroring.php:490
|
282 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:74
|
283 |
msgid "Pages"
|
284 |
msgstr ""
|
285 |
|
286 |
#: classes/AlertManager.php:1470 classes/Views/ToggleAlerts.php:235
|
287 |
#: classes/Views/ToggleAlerts.php:267 defaults.php:228
|
288 |
+
#: extensions/external-db/classes/Mirroring.php:457
|
289 |
+
#: extensions/external-db/classes/Mirroring.php:490
|
290 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:74
|
291 |
msgid "Custom Post Types"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: classes/AlertManager.php:1792 extensions/reports/classes/Common.php:1595
|
295 |
msgid "System Activity"
|
296 |
msgstr ""
|
297 |
|
298 |
#: classes/AlertManager.php:1852 classes/ConstantManager.php:146
|
299 |
+
#: extensions/external-db/classes/Common.php:719
|
300 |
+
#: extensions/external-db/classes/Common.php:960
|
301 |
msgid "Unknown error code."
|
302 |
msgstr ""
|
303 |
|
304 |
#: classes/AlertManager.php:1859 classes/AlertManager.php:1871
|
305 |
+
#: extensions/reports/classes/Common.php:658
|
306 |
+
#: extensions/reports/classes/Common.php:668
|
307 |
msgid "Unknown Site"
|
308 |
msgstr ""
|
309 |
|
333 |
|
334 |
#: classes/AuditLogGridView.php:229 classes/AuditLogListView.php:235
|
335 |
#: classes/Views/AuditLog.php:628
|
336 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:605
|
337 |
msgid "All Sites"
|
338 |
msgstr ""
|
339 |
|
352 |
|
353 |
#: classes/AuditLogGridView.php:315 classes/AuditLogGridView.php:341
|
354 |
#: classes/AuditLogListView.php:331 classes/AuditLogListView.php:361
|
355 |
+
#: classes/Views/Settings.php:1164 classes/Views/ToggleAlerts.php:318
|
356 |
+
#: extensions/search/classes/Filters/CodeFilter.php:38
|
357 |
+
#: extensions/search/classes/Filters/CodeFilter.php:64
|
358 |
msgid "Severity"
|
359 |
msgstr ""
|
360 |
|
361 |
#: classes/AuditLogGridView.php:316
|
362 |
+
#: extensions/search/classes/Filters/CodeFilter.php:71
|
363 |
msgid "Info"
|
364 |
msgstr ""
|
365 |
|
366 |
#: classes/AuditLogGridView.php:321 classes/AuditLogListView.php:341
|
367 |
#: classes/AuditLogListView.php:373
|
368 |
+
#: extensions/email-notifications/classes/Common.php:1202
|
369 |
+
#: extensions/email-notifications/classes/Common.php:1261
|
370 |
+
#: extensions/search/classes/Filters/SiteFilter.php:29
|
371 |
msgid "Site"
|
372 |
msgstr ""
|
373 |
|
374 |
#: classes/AuditLogGridView.php:324 classes/AuditLogGridView.php:347
|
375 |
#: classes/AuditLogListView.php:344 classes/AuditLogListView.php:382
|
376 |
+
#: extensions/email-notifications/classes/Common.php:1235
|
377 |
msgid "Message"
|
378 |
msgstr ""
|
379 |
|
458 |
|
459 |
#: classes/AuditLogGridView.php:752 classes/AuditLogListView.php:752
|
460 |
#: classes/Settings.php:1849 classes/Settings.php:2089
|
461 |
+
#: extensions/email-notifications/classes/Notifier.php:794
|
462 |
msgid "published"
|
463 |
msgstr ""
|
464 |
|
|
|
465 |
#: classes/AuditLogGridView.php:780 classes/AuditLogListView.php:780
|
466 |
#: classes/Settings.php:1875 classes/Settings.php:2115
|
467 |
+
#: extensions/email-notifications/classes/Notifier.php:820
|
468 |
+
#: extensions/reports/classes/Common.php:582
|
469 |
#, php-format
|
470 |
msgid "Contact us on %s for assistance"
|
471 |
msgstr ""
|
472 |
|
473 |
#: classes/AuditLogGridView.php:914 classes/AuditLogListView.php:914
|
474 |
+
#: extensions/email-notifications/classes/Notifications.php:1956
|
475 |
+
#: extensions/email-notifications/classes/Notifications.php:1967
|
476 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:739
|
477 |
msgid "Select All"
|
478 |
msgstr ""
|
479 |
|
480 |
#: classes/AuditLogListView.php:332 classes/AuditLogListView.php:364
|
481 |
+
#: extensions/search/classes/Filters/DateFilter.php:27
|
482 |
msgid "Date"
|
483 |
msgstr ""
|
484 |
|
485 |
#: classes/AuditLogListView.php:334 classes/AuditLogListView.php:370
|
486 |
+
#: extensions/search/classes/Filters/IpFilter.php:45
|
487 |
msgid "IP"
|
488 |
msgstr ""
|
489 |
|
490 |
#: classes/AuditLogListView.php:335 classes/AuditLogListView.php:376
|
491 |
+
#: extensions/email-notifications/classes/Common.php:1175
|
492 |
+
#: extensions/search/classes/Filters/ObjectFilter.php:29
|
493 |
+
#: extensions/search/classes/Filters/ObjectFilter.php:53
|
494 |
msgid "Object"
|
495 |
msgstr ""
|
496 |
|
497 |
#: classes/AuditLogListView.php:336 classes/AuditLogListView.php:379
|
498 |
+
#: extensions/email-notifications/classes/Common.php:1176
|
499 |
+
#: extensions/search/classes/Filters/EventTypeFilter.php:29
|
500 |
+
#: extensions/search/classes/Filters/EventTypeFilter.php:53
|
501 |
msgid "Event Type"
|
502 |
msgstr ""
|
503 |
|
506 |
msgstr ""
|
507 |
|
508 |
#: classes/AuditLogListView.php:446 classes/Models/Occurrence.php:83
|
509 |
+
#: classes/ViewManager.php:510
|
510 |
msgid "Alert message not found."
|
511 |
msgstr ""
|
512 |
|
513 |
#: classes/AuditLogListView.php:447 classes/Models/Occurrence.php:84
|
514 |
+
#: classes/ViewManager.php:511
|
515 |
msgid "Alert description not found."
|
516 |
msgstr ""
|
517 |
|
521 |
"valid."
|
522 |
msgstr ""
|
523 |
|
|
|
524 |
#: classes/Connector/MySQLDB.php:69
|
525 |
#, php-format
|
526 |
msgid "Code %1$d: %2$s"
|
530 |
msgid "Error establishing a database connection"
|
531 |
msgstr ""
|
532 |
|
|
|
533 |
#: classes/Connector/wp-db-custom.php:216
|
534 |
#, php-format
|
535 |
msgid ""
|
550 |
msgid "Are you sure that the database server is running?"
|
551 |
msgstr ""
|
552 |
|
|
|
553 |
#: classes/Connector/wp-db-custom.php:229
|
554 |
#, php-format
|
555 |
msgid ""
|
566 |
msgid "Can’t select database"
|
567 |
msgstr ""
|
568 |
|
|
|
569 |
#: classes/Connector/wp-db-custom.php:287
|
570 |
#, php-format
|
571 |
msgid ""
|
577 |
msgid "Are you sure it exists?"
|
578 |
msgstr ""
|
579 |
|
|
|
580 |
#: classes/Connector/wp-db-custom.php:296
|
581 |
#, php-format
|
582 |
msgid "Does the user %1$s have permission to use the %2$s database?"
|
583 |
msgstr ""
|
584 |
|
|
|
585 |
#: classes/Connector/wp-db-custom.php:303
|
586 |
#, php-format
|
587 |
msgid ""
|
589 |
"it would be like <code>username_%1$s</code>. Could that be the problem?"
|
590 |
msgstr ""
|
591 |
|
|
|
592 |
#: classes/Connector/wp-db-custom.php:311
|
593 |
#, php-format
|
594 |
msgid ""
|
603 |
|
604 |
#: classes/ConstantManager.php:152 classes/ConstantManager.php:158
|
605 |
#: classes/Views/ToggleAlerts.php:442 classes/Views/ToggleAlerts.php:448
|
606 |
+
#: extensions/search/classes/Filters/CodeFilter.php:67
|
607 |
msgid "Critical"
|
608 |
msgstr ""
|
609 |
|
617 |
msgstr ""
|
618 |
|
619 |
#: classes/ConstantManager.php:160 classes/Views/ToggleAlerts.php:450
|
620 |
+
#: extensions/search/classes/Filters/CodeFilter.php:68
|
621 |
msgid "High"
|
622 |
msgstr ""
|
623 |
|
624 |
#: classes/ConstantManager.php:162 classes/Views/ToggleAlerts.php:452
|
625 |
+
#: extensions/search/classes/Filters/CodeFilter.php:69
|
626 |
msgid "Medium"
|
627 |
msgstr ""
|
628 |
|
629 |
#: classes/ConstantManager.php:164 classes/Views/ToggleAlerts.php:454
|
630 |
+
#: extensions/search/classes/Filters/CodeFilter.php:70
|
631 |
msgid "Low"
|
632 |
msgstr ""
|
633 |
|
653 |
msgstr ""
|
654 |
|
655 |
#: classes/Models/Occurrence.php:208 classes/Views/ToggleAlerts.php:329
|
656 |
+
#: extensions/email-notifications/classes/Notifications.php:179
|
657 |
msgid "WooCommerce"
|
658 |
msgstr ""
|
659 |
|
692 |
msgid "On backorder"
|
693 |
msgstr ""
|
694 |
|
|
|
695 |
#: classes/Settings.php:272
|
696 |
#, php-format
|
697 |
msgid ""
|
704 |
msgstr ""
|
705 |
|
706 |
#: classes/Settings.php:1753
|
707 |
+
#: extensions/email-notifications/classes/Notifier.php:742
|
708 |
+
#: extensions/reports/classes/Common.php:523
|
709 |
msgid "View the content changes"
|
710 |
msgstr ""
|
711 |
|
712 |
#: classes/Settings.php:1758
|
713 |
+
#: extensions/email-notifications/classes/Notifier.php:747
|
714 |
+
#: extensions/email-notifications/classes/Notifier.php:753
|
715 |
+
#: extensions/reports/classes/Common.php:528
|
716 |
+
#: extensions/reports/classes/Common.php:534
|
717 |
msgid "View post in the editor"
|
718 |
msgstr ""
|
719 |
|
720 |
#: classes/Settings.php:1761
|
721 |
+
#: extensions/email-notifications/classes/Notifier.php:750
|
722 |
+
#: extensions/reports/classes/Common.php:531
|
723 |
msgid "View Order"
|
724 |
msgstr ""
|
725 |
|
726 |
#: classes/Settings.php:1766
|
727 |
+
#: extensions/email-notifications/classes/Notifier.php:756
|
728 |
+
#: extensions/reports/classes/Common.php:537
|
729 |
msgid "View category"
|
730 |
msgstr ""
|
731 |
|
732 |
#: classes/Settings.php:1769
|
733 |
+
#: extensions/email-notifications/classes/Notifier.php:759
|
734 |
+
#: extensions/reports/classes/Common.php:540
|
735 |
msgid "View tag"
|
736 |
msgstr ""
|
737 |
|
738 |
#: classes/Settings.php:1773
|
739 |
+
#: extensions/email-notifications/classes/Notifier.php:769
|
740 |
+
#: extensions/reports/classes/Common.php:550
|
741 |
msgid "User profile page"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Settings.php:1887 extensions/reports/classes/Common.php:594
|
745 |
msgid "Increase maximum file size limit"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Settings.php:1890 extensions/reports/classes/Common.php:597
|
749 |
msgid "Contact Support"
|
750 |
msgstr ""
|
751 |
|
752 |
#: classes/Settings.php:2127
|
753 |
+
#: extensions/email-notifications/classes/Notifier.php:831
|
754 |
+
#: extensions/email-notifications/classes/Notifier.php:959
|
755 |
msgid "plugin settings"
|
756 |
msgstr ""
|
757 |
|
758 |
#: classes/Settings.php:2130
|
759 |
+
#: extensions/email-notifications/classes/Notifier.php:834
|
760 |
+
#: extensions/email-notifications/classes/Notifier.php:964
|
761 |
msgid "contact our support"
|
762 |
msgstr ""
|
763 |
|
819 |
msgstr ""
|
820 |
|
821 |
#: classes/Utilities/PluginInstallAndActivate.php:100
|
822 |
+
#: classes/Views/SetupWizard.php:890
|
823 |
msgid "Extension for "
|
824 |
msgstr ""
|
825 |
|
826 |
#: classes/Utilities/PluginInstallAndActivate.php:105
|
827 |
+
#: classes/Views/SetupWizard.php:895
|
828 |
msgid "Extension installed, activate now?"
|
829 |
msgstr ""
|
830 |
|
831 |
#: classes/Utilities/PluginInstallAndActivate.php:107
|
832 |
+
#: classes/Views/SetupWizard.php:274 classes/Views/SetupWizard.php:897
|
833 |
+
#: wp-security-audit-log.php:1283
|
834 |
msgid "Extension installed"
|
835 |
msgstr ""
|
836 |
|
837 |
#: classes/Utilities/PluginInstallAndActivate.php:109
|
838 |
+
#: classes/Views/AuditLog.php:283 classes/Views/SetupWizard.php:899
|
839 |
msgid "Install Extension"
|
840 |
msgstr ""
|
841 |
|
843 |
msgid "Tried to install a zip or slug that was not in the allowed list"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: classes/ViewManager.php:163
|
847 |
msgid ""
|
848 |
"WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade "
|
849 |
"that plugin."
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: classes/ViewManager.php:304
|
853 |
msgid "Free Premium Trial"
|
854 |
msgstr ""
|
855 |
|
856 |
+
#: classes/ViewManager.php:536 classes/Views/Settings.php:219
|
857 |
+
#: classes/Views/Settings.php:1887 classes/Views/Settings.php:1916
|
858 |
+
#: classes/Views/SetupWizard.php:83
|
859 |
+
#: extensions/email-notifications/classes/Notifications.php:117
|
860 |
+
#: extensions/external-db/classes/Connections.php:738
|
861 |
+
#: extensions/external-db/classes/Connections.php:772
|
862 |
+
#: extensions/external-db/classes/Connections.php:969
|
863 |
+
#: extensions/external-db/classes/Settings.php:282
|
864 |
+
#: extensions/external-db/classes/Settings.php:373
|
865 |
+
#: extensions/external-db/classes/Settings.php:1078
|
866 |
+
#: extensions/external-db/classes/Settings.php:1317
|
867 |
+
#: extensions/external-db/classes/Settings.php:1381
|
868 |
+
#: extensions/external-db/classes/Settings.php:1433
|
869 |
+
msgid "Access Denied."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: classes/ViewManager.php:567
|
873 |
+
msgid "Log count parameter expected."
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: classes/ViewManager.php:575 classes/Views/AuditLog.php:816
|
877 |
+
#: classes/Views/AuditLog.php:877 classes/Views/AuditLog.php:903
|
878 |
+
#: classes/Views/AuditLog.php:1223 classes/Views/AuditLog.php:1293
|
879 |
+
#: classes/Views/Settings.php:234 classes/Views/Settings.php:1799
|
880 |
+
#: classes/Views/Settings.php:1827 classes/Views/Settings.php:1857
|
881 |
+
#: classes/Views/SetupWizard.php:96
|
882 |
+
#: extensions/email-notifications/classes/Notifications.php:492
|
883 |
+
#: extensions/external-db/classes/Connections.php:757
|
884 |
+
#: extensions/external-db/classes/Connections.php:953
|
885 |
+
#: extensions/external-db/classes/Connections.php:1021
|
886 |
+
#: extensions/external-db/classes/Settings.php:312
|
887 |
+
#: extensions/external-db/classes/Settings.php:400
|
888 |
+
#: extensions/external-db/classes/Settings.php:1147
|
889 |
+
#: extensions/external-db/classes/Settings.php:1364
|
890 |
+
#: extensions/external-db/classes/Settings.php:1416
|
891 |
+
#: extensions/external-db/classes/Settings.php:1449
|
892 |
+
#: extensions/reports/classes/Views/Main.php:768
|
893 |
+
#: extensions/search/search-init.php:470 extensions/search/search-init.php:541
|
894 |
+
#: extensions/user-sessions/classes/Views.php:581
|
895 |
+
msgid "Nonce verification failed."
|
896 |
+
msgstr ""
|
897 |
+
|
898 |
#: classes/Views/AuditLog.php:99
|
899 |
msgid ""
|
900 |
"Get instantly alerted of critical changes via SMS & email, search the "
|
999 |
|
1000 |
#: classes/Views/AuditLog.php:542 classes/Views/Settings.php:325
|
1001 |
#: classes/Views/ToggleAlerts.php:132
|
1002 |
+
#: extensions/email-notifications/classes/AddNotification.php:246
|
1003 |
+
#: extensions/email-notifications/classes/AddNotification.php:279
|
1004 |
+
#: extensions/email-notifications/classes/EditNotification.php:250
|
1005 |
+
#: extensions/email-notifications/classes/EditNotification.php:254
|
1006 |
+
#: extensions/email-notifications/classes/EditNotification.php:258
|
1007 |
+
#: extensions/email-notifications/classes/EditNotification.php:263
|
1008 |
+
#: extensions/email-notifications/classes/EditNotification.php:291
|
1009 |
+
#: extensions/external-db/classes/Settings.php:420
|
1010 |
msgid "You do not have sufficient permissions to access this page."
|
1011 |
msgstr ""
|
1012 |
|
1018 |
|
1019 |
#: classes/Views/AuditLog.php:592 classes/Views/Settings.php:528
|
1020 |
#: classes/Views/Settings.php:555 classes/Views/Settings.php:621
|
1021 |
+
#: classes/Views/Settings.php:679 classes/Views/Settings.php:1200
|
1022 |
+
#: classes/Views/Settings.php:1491 classes/Views/Settings.php:1550
|
1023 |
+
#: classes/Views/Settings.php:1591 classes/Views/Settings.php:1612
|
1024 |
+
#: classes/Views/Settings.php:1622 classes/Views/SetupWizard.php:564
|
1025 |
#: classes/Views/SetupWizard.php:612
|
1026 |
msgid "Yes"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
#: classes/Views/AuditLog.php:593 classes/Views/Settings.php:533
|
1030 |
#: classes/Views/Settings.php:560 classes/Views/Settings.php:651
|
1031 |
+
#: classes/Views/Settings.php:689 classes/Views/Settings.php:1205
|
1032 |
+
#: classes/Views/Settings.php:1496 classes/Views/Settings.php:1557
|
1033 |
+
#: classes/Views/Settings.php:1598 classes/Views/Settings.php:1613
|
1034 |
+
#: classes/Views/Settings.php:1623 classes/Views/SetupWizard.php:569
|
1035 |
#: classes/Views/SetupWizard.php:617
|
1036 |
msgid "No"
|
1037 |
msgstr ""
|
1048 |
msgid "No users found."
|
1049 |
msgstr ""
|
1050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
#: classes/Views/AuditLog.php:835
|
1052 |
msgid "Log file does not exist."
|
1053 |
msgstr ""
|
1064 |
msgid "Freemius opt choice not found."
|
1065 |
msgstr ""
|
1066 |
|
|
|
1067 |
#: classes/Views/AuditLog.php:1038
|
1068 |
#, php-format
|
1069 |
msgid ""
|
1535 |
msgstr ""
|
1536 |
|
1537 |
#: classes/Views/Settings.php:160 classes/Views/Settings.php:174
|
1538 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:143
|
1539 |
+
#: extensions/user-sessions/classes/View/Settings.php:21
|
1540 |
msgid "Settings"
|
1541 |
msgstr ""
|
1542 |
|
1548 |
msgid "Unknown settings tab."
|
1549 |
msgstr ""
|
1550 |
|
|
|
|
|
|
|
|
|
|
|
1551 |
#: classes/Views/Settings.php:244 classes/Views/SetupWizard.php:106
|
1552 |
msgid "Invalid input."
|
1553 |
msgstr ""
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: classes/Views/Settings.php:341 classes/Views/ToggleAlerts.php:149
|
1560 |
+
#: extensions/external-db/classes/Settings.php:431
|
1561 |
msgid "Settings have been saved."
|
1562 |
msgstr ""
|
1563 |
|
1564 |
#: classes/Views/Settings.php:347 classes/Views/ToggleAlerts.php:155
|
1565 |
+
#: extensions/external-db/classes/Settings.php:436
|
1566 |
+
#: extensions/user-sessions/classes/View/Sessions.php:164
|
1567 |
msgid "Error: "
|
1568 |
msgstr ""
|
1569 |
|
1592 |
msgid "Use infinite scroll or pagination for the event viewer?"
|
1593 |
msgstr ""
|
1594 |
|
|
|
1595 |
#: classes/Views/Settings.php:454
|
1596 |
#, php-format
|
1597 |
msgid ""
|
1641 |
msgid "Display latest events widget in Dashboard & Admin bar"
|
1642 |
msgstr ""
|
1643 |
|
|
|
1644 |
#: classes/Views/Settings.php:514
|
1645 |
#, php-format
|
1646 |
msgid ""
|
1715 |
msgid "Is your website running behind a firewall or reverse proxy?"
|
1716 |
msgstr ""
|
1717 |
|
|
|
1718 |
#: classes/Views/Settings.php:666
|
1719 |
#, php-format
|
1720 |
msgid ""
|
1742 |
msgid "Who can change the plugin settings?"
|
1743 |
msgstr ""
|
1744 |
|
|
|
1745 |
#: classes/Views/Settings.php:712
|
1746 |
#, php-format
|
1747 |
msgid ""
|
1888 |
"data in an external database."
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: classes/Views/Settings.php:984
|
|
|
1892 |
#, php-format
|
1893 |
msgid ""
|
1894 |
"Retention settings moved to %1$s archiving settings %2$s because archiving "
|
1895 |
"is enabled"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: classes/Views/Settings.php:991
|
1899 |
msgid "Activity log retention"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: classes/Views/Settings.php:997
|
1903 |
msgid "Keep all data"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: classes/Views/Settings.php:1024
|
1907 |
+
#: extensions/external-db/classes/Settings.php:753
|
1908 |
msgid "Delete events older than"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: classes/Views/Settings.php:1031
|
1912 |
+
#: extensions/external-db/classes/Settings.php:759
|
1913 |
msgid "Months"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: classes/Views/Settings.php:1032
|
1917 |
+
#: extensions/external-db/classes/Settings.php:760
|
1918 |
msgid "Years"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: classes/Views/Settings.php:1040
|
1922 |
msgid "The next scheduled purging of activity log data that is older than "
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: classes/Views/Settings.php:1047
|
1926 |
msgid "You can run the purging process now by clicking the button below."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: classes/Views/Settings.php:1051
|
1930 |
msgid "Purge Old Data"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: classes/Views/Settings.php:1062
|
1934 |
msgid "What timestamp you would like to see in the WordPress activity log?"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: classes/Views/Settings.php:1063
|
1938 |
msgid ""
|
1939 |
"Note that the WordPress' timezone might be different from that configured on "
|
1940 |
"the server so when you switch from UTC to WordPress timezone or vice versa "
|
1941 |
"you might notice a big difference."
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: classes/Views/Settings.php:1067
|
1945 |
msgid "Events Timestamp"
|
1946 |
msgstr ""
|
1947 |
|
1948 |
+
#: classes/Views/Settings.php:1087
|
1949 |
msgid "UTC"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: classes/Views/Settings.php:1093
|
1953 |
msgid "Timezone configured on this WordPress website"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: classes/Views/Settings.php:1100
|
1957 |
msgid "Show Milliseconds"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: classes/Views/Settings.php:1107
|
1961 |
msgid "Show Milliseconds in list view"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: classes/Views/Settings.php:1117
|
1965 |
msgid ""
|
1966 |
"What user information should be displayed in the WordPress activity log?"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: classes/Views/Settings.php:1118
|
1970 |
msgid ""
|
1971 |
"Usernames might not be the same as a user's first and last name so it can be "
|
1972 |
"difficult to recognize whose user was that did a change. When there is no "
|
1974 |
"back to the WordPress username."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: classes/Views/Settings.php:1122
|
1978 |
msgid "User information in Activity log"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: classes/Views/Settings.php:1128
|
1982 |
msgid "WordPress username"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: classes/Views/Settings.php:1133
|
1986 |
msgid "First name & last name"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
+
#: classes/Views/Settings.php:1138
|
1990 |
msgid "Configured public display name"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
+
#: classes/Views/Settings.php:1148
|
1994 |
msgid "Select the columns to be displayed in the WordPress activity log"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
+
#: classes/Views/Settings.php:1149
|
1998 |
msgid ""
|
1999 |
"When you deselect a column it won’t be shown in the activity log viewer in "
|
2000 |
"both views. The data will still be recorded by the plugin."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: classes/Views/Settings.php:1153
|
2004 |
msgid "Activity log columns selection"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: classes/Views/Settings.php:1162
|
2008 |
+
#: extensions/email-notifications/classes/Common.php:1171
|
2009 |
+
#: extensions/email-notifications/classes/Common.php:1205
|
2010 |
+
#: extensions/email-notifications/classes/Common.php:1232
|
2011 |
+
#: extensions/search/classes/Filters/AlertFilter.php:26
|
2012 |
+
#: extensions/search/classes/Filters/AlertFilter.php:51
|
2013 |
msgid "Event ID"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: classes/Views/Settings.php:1166
|
2017 |
msgid "Date & Time"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: classes/Views/Settings.php:1170
|
2021 |
msgid "Source IP Address"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: classes/Views/Settings.php:1172
|
2025 |
msgid "Info (used in Grid view mode only)"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: classes/Views/Settings.php:1188
|
2029 |
msgid "Do you want to keep a log of WordPress background activity?"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: classes/Views/Settings.php:1190
|
2033 |
msgid ""
|
2034 |
"WordPress does a lot of things in the background that you do not necessarily "
|
2035 |
"need to know about, such as; deletion of post revisions, deletion of auto "
|
2037 |
"might be a lot and are irrelevant to the user."
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: classes/Views/Settings.php:1195
|
2041 |
msgid "Enable Events for WordPress Background Activity"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: classes/Views/Settings.php:1254 classes/Views/ToggleAlerts.php:555
|
2045 |
msgid "Website File Changes Monitor"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: classes/Views/Settings.php:1255 classes/Views/ToggleAlerts.php:556
|
2049 |
msgid ""
|
2050 |
"To keep a log of file changes please install Website File Changes Monitor, a "
|
2051 |
"plugin which is also developed by us."
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: classes/Views/Settings.php:1256 classes/Views/ToggleAlerts.php:557
|
2055 |
msgid "Install plugin now"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: classes/Views/Settings.php:1256 classes/Views/ToggleAlerts.php:557
|
2059 |
msgid "Learn More"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: classes/Views/Settings.php:1270
|
2063 |
msgid "Configure how often file changes scan run and other settings from the"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: classes/Views/Settings.php:1270
|
2067 |
msgid "Website File Changes plugin settings"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: classes/Views/Settings.php:1285
|
2071 |
msgid ""
|
2072 |
"By default the plugin keeps a log of all user changes done on your WordPress "
|
2073 |
"website. Use the setting below to exclude any objects from the activity log. "
|
2075 |
"object is referred will not be logged in the activity log."
|
2076 |
msgstr ""
|
2077 |
|
2078 |
+
#: classes/Views/Settings.php:1289
|
2079 |
msgid "Exclude Users:"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: classes/Views/Settings.php:1310
|
2083 |
msgid "Exclude Roles:"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
+
#: classes/Views/Settings.php:1331
|
2087 |
msgid "Exclude IP Address(es):"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: classes/Views/Settings.php:1347
|
2091 |
msgid ""
|
2092 |
"You can exclude an individual IP address or a range of IP addresses. To "
|
2093 |
"exclude a range use the following format: [first IP]-[last octet of the last "
|
2094 |
"IP]. Example: 172.16.180.6-127."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: classes/Views/Settings.php:1353
|
2098 |
msgid "Exclude Post Type:"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: classes/Views/Settings.php:1369
|
2102 |
msgid ""
|
2103 |
"WordPress has the post and page post types by default though your website "
|
2104 |
"might use more post types (custom post types). You can exclude all post "
|
2105 |
"types, including the default WordPress ones."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: classes/Views/Settings.php:1375
|
2109 |
msgid "Exclude Custom Fields:"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: classes/Views/Settings.php:1391
|
2113 |
msgid ""
|
2114 |
"You can use the * wildcard to exclude multiple matching custom fields. For "
|
2115 |
"example to exclude all custom fields starting with wp123 enter wp123*"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: classes/Views/Settings.php:1397
|
2119 |
msgid "Exclude Non-Existing URLs:"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: classes/Views/Settings.php:1413
|
2123 |
msgid ""
|
2124 |
"Add the non existing URLs for which you do not want to be alerted of HTTP "
|
2125 |
"404 errors in the activity log by specifying the complete URL.\tExamples "
|
2126 |
"below:"
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: classes/Views/Settings.php:1413
|
2130 |
msgid "File: "
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: classes/Views/Settings.php:1413
|
2134 |
msgid "Directory: "
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: classes/Views/Settings.php:1445
|
2138 |
msgid "These settings are for advanced users."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: classes/Views/Settings.php:1446
|
2142 |
msgid ""
|
2143 |
"If you have any questions <a href=\"https://wpactivitylog.com/contact/?"
|
2144 |
"utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings"
|
2145 |
"+pages\" target=\"_blank\">contact us</a>."
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: classes/Views/Settings.php:1449
|
2149 |
msgid ""
|
2150 |
"Where do you want the plugin's working directory for log files, reports and "
|
2151 |
"other files?"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: classes/Views/Settings.php:1450
|
2155 |
msgid ""
|
2156 |
"The plugin stores the reports it generates, a number of log files ( for "
|
2157 |
"example to keep a log of 404 errors), and the request log in this working "
|
2161 |
"directory. Please specify the relative path of the directory."
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: classes/Views/Settings.php:1455
|
2165 |
msgid "Working directory location"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: classes/Views/Settings.php:1465
|
2169 |
msgid ""
|
2170 |
"<strong>Note:</strong> Enter a path from the root of your website: eg \"/wp-"
|
2171 |
"content/uploads/wp-activity-log/\"."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: classes/Views/Settings.php:1478
|
2175 |
msgid ""
|
2176 |
"Troubleshooting setting: Keep a debug log of all the requests this website "
|
2177 |
"receives"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: classes/Views/Settings.php:1479
|
2181 |
msgid ""
|
2182 |
"Only enable the request log on testing, staging and development website. "
|
2183 |
"Never enable logging on a live website unless instructed to do so. Enabling "
|
2184 |
"request logging on a live website may degrade the performance of the website."
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: classes/Views/Settings.php:1483
|
2188 |
msgid "Request Log"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: classes/Views/Settings.php:1501
|
2192 |
msgid ""
|
2193 |
"<strong>Note:</strong> The requests debug log file is saved as request.log."
|
2194 |
"php in the /wp-content/uploads/wp-activity-log/ directory."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: classes/Views/Settings.php:1513
|
2198 |
msgid "Reset plugin settings to default"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: classes/Views/Settings.php:1514
|
2202 |
msgid ""
|
2203 |
"Click the RESET button to reset ALL plugin settings to default. Note that "
|
2204 |
"the activity log data will be retained and only the plugin settings will be "
|
2205 |
"reset. To purge the data of the activity log use the setting below."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: classes/Views/Settings.php:1518
|
2209 |
msgid "Reset Settings"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: classes/Views/Settings.php:1520
|
2213 |
msgid "RESET"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: classes/Views/Settings.php:1526
|
2217 |
msgid "Purge the WordPress activity log"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: classes/Views/Settings.php:1527
|
2221 |
msgid ""
|
2222 |
"Click the Purge button below to delete all the data from the WordPress "
|
2223 |
"activity log and start afresh."
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: classes/Views/Settings.php:1531
|
2227 |
msgid "Purge Activity Log"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: classes/Views/Settings.php:1533
|
2231 |
msgid "PURGE"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: classes/Views/Settings.php:1540
|
2235 |
msgid "MainWP Child Site Stealth Mode"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: classes/Views/Settings.php:1541
|
2239 |
msgid ""
|
2240 |
"This option is enabled automatically when the plugin detects the MainWP "
|
2241 |
"Child plugin on the site. When this setting is enabled plugin access is "
|
2244 |
"Disable this option to change the plugin to the default setup."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: classes/Views/Settings.php:1545
|
2248 |
msgid "Enable MainWP Child Site Stealth Mode"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: classes/Views/Settings.php:1565
|
2252 |
msgid "Admin blocking plugins support"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: classes/Views/Settings.php:1570
|
2256 |
msgid "Enable early plugin loading on sites that use admin blocking plugins"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: classes/Views/Settings.php:1579
|
2260 |
msgid "Do you want to delete the plugin data from the database upon uninstall?"
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: classes/Views/Settings.php:1580
|
2264 |
msgid ""
|
2265 |
"The plugin saves the activity log data and settings in the WordPress "
|
2266 |
"database. By default upon uninstalling the plugin the data is kept in the "
|
2269 |
"access it again even when you reinstall the plugin."
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: classes/Views/Settings.php:1584
|
2273 |
msgid "Remove Data on Uninstall"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: classes/Views/Settings.php:1609
|
2277 |
msgid "Are you sure you want to reset all the plugin settings to default?"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: classes/Views/Settings.php:1619
|
2281 |
msgid "Are you sure you want to purge all the activity log data?"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: classes/Views/Settings.php:1650
|
2285 |
msgid "MainWP Child plugin is not active on this website."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: classes/Views/Settings.php:1683
|
2289 |
msgid ""
|
2290 |
"The plugin cannot create the directory for the log files. Please check "
|
2291 |
"permissions and configure it again."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: classes/Views/Settings.php:1759
|
2295 |
msgid "The specified value is not a valid URL!"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: classes/Views/Settings.php:1760
|
2299 |
msgid "The specified value is not a valid post type!"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: classes/Views/Settings.php:1761
|
2303 |
msgid "The specified value is not a valid IP address!"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: classes/Views/Settings.php:1762
|
2307 |
msgid "The specified value is not a user nor a role!"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: classes/Views/Settings.php:1763
|
2311 |
msgid "Filename cannot be added because it contains invalid characters."
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: classes/Views/Settings.php:1764
|
2315 |
msgid "File extension cannot be added because it contains invalid characters."
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: classes/Views/Settings.php:1765
|
2319 |
msgid "Directory cannot be added because it contains invalid characters."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: classes/Views/Settings.php:1901 classes/Views/Settings.php:1928
|
2323 |
msgid "Tables has been reset."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: classes/Views/Settings.php:1903 classes/Views/Settings.php:1930
|
2327 |
msgid "Reset query failed."
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: classes/Views/Settings.php:1906 classes/Views/Settings.php:1933
|
2331 |
msgid "Nonce Verification Failed."
|
2332 |
msgstr ""
|
2333 |
|
2355 |
msgid "Log Retention"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: classes/Views/SetupWizard.php:207 classes/Views/SetupWizard.php:797
|
2359 |
+
#: classes/Views/SetupWizard.php:798
|
2360 |
msgid "Finish"
|
2361 |
msgstr ""
|
2362 |
|
2372 |
msgid "Specified value in not an IP address."
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: classes/Views/SetupWizard.php:272 wp-security-audit-log.php:1281
|
2376 |
msgid "Installing, please wait"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: classes/Views/SetupWizard.php:273 wp-security-audit-log.php:1282
|
2380 |
msgid "Already installed"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: classes/Views/SetupWizard.php:275 wp-security-audit-log.php:1284
|
2384 |
msgid "Extension activated"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: classes/Views/SetupWizard.php:276 wp-security-audit-log.php:1285
|
2388 |
msgid "Install failed"
|
2389 |
msgstr ""
|
2390 |
|
2396 |
msgid "Close Wizard"
|
2397 |
msgstr ""
|
2398 |
|
|
|
2399 |
#: classes/Views/SetupWizard.php:417
|
2400 |
#, php-format
|
2401 |
msgid ""
|
2438 |
#: classes/Views/SetupWizard.php:470 classes/Views/SetupWizard.php:527
|
2439 |
#: classes/Views/SetupWizard.php:575 classes/Views/SetupWizard.php:624
|
2440 |
#: classes/Views/SetupWizard.php:684 classes/Views/SetupWizard.php:685
|
2441 |
+
#: classes/Views/SetupWizard.php:912 classes/Views/SetupWizard.php:913
|
2442 |
+
#: extensions/external-db/classes/Connections.php:214
|
2443 |
+
#: extensions/external-db/classes/Connections.php:565
|
2444 |
+
#: extensions/external-db/classes/Mirroring.php:286
|
2445 |
+
#: extensions/external-db/classes/Mirroring.php:601
|
2446 |
msgid "Next"
|
2447 |
msgstr ""
|
2448 |
|
2518 |
"Database tools to store the WordPress activity log in an external database."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: classes/Views/SetupWizard.php:699
|
2522 |
+
msgid ""
|
2523 |
+
"The plugin stores the data in the WordPress database in a very efficient "
|
2524 |
+
"way, though the more data you keep the more hard disk space it will consume. "
|
2525 |
+
"If you need need to retain a lot of data we would recommend you to store the "
|
2526 |
+
"WordPress activity log in an external database or enable archiving."
|
2527 |
+
msgstr ""
|
2528 |
+
|
2529 |
+
#: classes/Views/SetupWizard.php:768
|
2530 |
msgid ""
|
2531 |
"Your plugin is all set and it is ready to start keeping a record of "
|
2532 |
"everything that is happening on your WordPress in a WordPress activity log."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
+
#: classes/Views/SetupWizard.php:769
|
2536 |
msgid "Below are a few useful links you might need to refer to:"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
+
#: classes/Views/SetupWizard.php:774
|
2540 |
msgid "Getting started with the WP Activity Log plugin"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: classes/Views/SetupWizard.php:779
|
2544 |
msgid "Knowledge Base & Support Documents"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
+
#: classes/Views/SetupWizard.php:784
|
2548 |
msgid "Benefits of keeping a WordPress activity log"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
+
#: classes/Views/SetupWizard.php:789
|
2552 |
msgid ""
|
2553 |
"We trust this plugin meets all your activity log requirements. Should you "
|
2554 |
"encounter any problems, have feature requests or would like to share some "
|
2557 |
"+configuration\" target=\"_blank\">please get in touch!</a>"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: classes/Views/SetupWizard.php:825
|
2561 |
msgid "Third Party Extensions"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: classes/Views/SetupWizard.php:866
|
2565 |
msgid "Monitoring changes done in third party plugins"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: classes/Views/SetupWizard.php:867
|
2569 |
msgid ""
|
2570 |
"We noticed that the below plugins are installed on this website. You can "
|
2571 |
"install our extensions to also keep a log of changes users do on these "
|
2794 |
msgid "Log Level Updated"
|
2795 |
msgstr ""
|
2796 |
|
|
|
2797 |
#: classes/Views/ToggleAlerts.php:658
|
2798 |
#, php-format
|
2799 |
msgid "The %s log level has been successfully loaded and applied."
|
2800 |
msgstr ""
|
2801 |
|
2802 |
#: classes/Views/ToggleAlerts.php:662
|
2803 |
+
#: extensions/email-notifications/classes/Notifications.php:292
|
2804 |
+
#: extensions/email-notifications/classes/Notifications.php:898
|
2805 |
+
#: extensions/email-notifications/classes/Notifications.php:2036
|
2806 |
msgid "OK"
|
2807 |
msgstr ""
|
2808 |
|
2865 |
msgstr ""
|
2866 |
|
2867 |
#: defaults.php:87
|
2868 |
+
#: extensions/email-notifications/classes/Notifications.php:1365
|
2869 |
msgid "User Activity"
|
2870 |
msgstr ""
|
2871 |
|
5336 |
msgid "Dummy"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: extensions/class-wsal-extension-manager.php:216
|
5340 |
+
#: extensions/external-db/classes/Settings.php:109
|
5341 |
+
#: extensions/external-db/classes/Settings.php:618
|
5342 |
+
msgid "External Storage"
|
5343 |
+
msgstr ""
|
5344 |
+
|
5345 |
+
#: extensions/class-wsal-extension-manager.php:257
|
5346 |
+
#: extensions/class-wsal-extension-manager.php:297
|
5347 |
+
#: extensions/class-wsal-extension-manager.php:321
|
5348 |
+
#: extensions/external-db/classes/Mirroring.php:658
|
5349 |
+
#: extensions/external-db/classes/Settings.php:121
|
5350 |
+
msgid "Mirroring"
|
5351 |
+
msgstr ""
|
5352 |
+
|
5353 |
+
#: extensions/class-wsal-extension-manager.php:374
|
5354 |
+
#: extensions/external-db/classes/Settings.php:115
|
5355 |
+
#: extensions/external-db/classes/Settings.php:870
|
5356 |
+
msgid "Archiving"
|
5357 |
+
msgstr ""
|
5358 |
+
|
5359 |
+
#: extensions/email-notifications/classes/AddNotification.php:58
|
5360 |
+
msgid "Add New Email Notification"
|
5361 |
+
msgstr ""
|
5362 |
+
|
5363 |
+
#: extensions/email-notifications/classes/AddNotification.php:72
|
5364 |
+
msgid "Add notification"
|
5365 |
+
msgstr ""
|
5366 |
+
|
5367 |
+
#: extensions/email-notifications/classes/AddNotification.php:236
|
5368 |
+
#: extensions/email-notifications/classes/EditNotification.php:240
|
5369 |
+
msgid "Back"
|
5370 |
+
msgstr ""
|
5371 |
+
|
5372 |
+
#: extensions/email-notifications/classes/AddNotification.php:252
|
5373 |
+
msgid "You have reached the maximum number of notifications you can add."
|
5374 |
+
msgstr ""
|
5375 |
+
|
5376 |
+
#: extensions/email-notifications/classes/AddNotification.php:297
|
5377 |
+
#: extensions/email-notifications/classes/EditNotification.php:348
|
5378 |
+
#: extensions/email-notifications/classes/Notifications.php:832
|
5379 |
+
#: extensions/email-notifications/classes/Notifications.php:952
|
5380 |
+
#: extensions/email-notifications/classes/Notifications.php:1361
|
5381 |
+
#: extensions/email-notifications/classes/Notifications.php:1525
|
5382 |
+
#: extensions/email-notifications/classes/Notifications.php:1619
|
5383 |
+
#: extensions/email-notifications/classes/Notifications.php:1785
|
5384 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:237
|
5385 |
#, php-format
|
5386 |
+
msgid "Click %s to configure Twilio integration for SMS notifications."
|
5387 |
+
msgstr ""
|
5388 |
+
|
5389 |
+
#: extensions/email-notifications/classes/AddNotification.php:297
|
5390 |
+
#: extensions/email-notifications/classes/EditNotification.php:348
|
5391 |
+
#: extensions/email-notifications/classes/Notifications.php:832
|
5392 |
+
#: extensions/email-notifications/classes/Notifications.php:952
|
5393 |
+
#: extensions/email-notifications/classes/Notifications.php:1361
|
5394 |
+
#: extensions/email-notifications/classes/Notifications.php:1525
|
5395 |
+
#: extensions/email-notifications/classes/Notifications.php:1619
|
5396 |
+
#: extensions/email-notifications/classes/Notifications.php:1785
|
5397 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:237
|
5398 |
+
msgid "here"
|
5399 |
msgstr ""
|
5400 |
|
5401 |
+
#: extensions/email-notifications/classes/AddNotification.php:305
|
5402 |
+
#: extensions/email-notifications/classes/EditNotification.php:356
|
5403 |
+
#, php-format
|
5404 |
msgid ""
|
5405 |
+
"Configure the triggers that should match for an email and / or SMS "
|
5406 |
+
"notification to be sent. You can add up to 20 triggers, use the AND and OR "
|
5407 |
+
"operands, and also group triggers together. Refer to the %s for more "
|
5408 |
+
"information."
|
5409 |
+
msgstr ""
|
5410 |
+
|
5411 |
+
#: extensions/email-notifications/classes/AddNotification.php:305
|
5412 |
+
#: extensions/email-notifications/classes/EditNotification.php:356
|
5413 |
+
msgid "Trigger groups documentation"
|
5414 |
+
msgstr ""
|
5415 |
+
|
5416 |
+
#: extensions/email-notifications/classes/AddNotification.php:310
|
5417 |
+
#: extensions/email-notifications/classes/EditNotification.php:361
|
5418 |
+
msgid "Triggers"
|
5419 |
+
msgstr ""
|
5420 |
+
|
5421 |
+
#: extensions/email-notifications/classes/AddNotification.php:311
|
5422 |
+
#: extensions/email-notifications/classes/EditNotification.php:362
|
5423 |
+
msgid "Add Trigger"
|
5424 |
+
msgstr ""
|
5425 |
+
|
5426 |
+
#: extensions/email-notifications/classes/AddNotification.php:325
|
5427 |
+
#: extensions/email-notifications/classes/EditNotification.php:405
|
5428 |
+
msgid "Use default email template"
|
5429 |
+
msgstr ""
|
5430 |
+
|
5431 |
+
#: extensions/email-notifications/classes/AddNotification.php:330
|
5432 |
+
#: extensions/email-notifications/classes/EditNotification.php:414
|
5433 |
+
msgid "Use event specific email template"
|
5434 |
+
msgstr ""
|
5435 |
+
|
5436 |
+
#: extensions/email-notifications/classes/AddNotification.php:355
|
5437 |
+
#: extensions/email-notifications/classes/EditNotification.php:447
|
5438 |
+
#: extensions/external-db/classes/Connections.php:95
|
5439 |
+
#: extensions/external-db/classes/Mirroring.php:123
|
5440 |
+
msgid "Name"
|
5441 |
+
msgstr ""
|
5442 |
+
|
5443 |
+
#: extensions/email-notifications/classes/AddNotification.php:356
|
5444 |
+
#: extensions/email-notifications/classes/EditNotification.php:448
|
5445 |
+
#: extensions/email-notifications/classes/Notifications.php:1959
|
5446 |
+
#: extensions/email-notifications/classes/Notifications.php:1970
|
5447 |
+
msgid "Title"
|
5448 |
+
msgstr ""
|
5449 |
+
|
5450 |
+
#: extensions/email-notifications/classes/AddNotification.php:364
|
5451 |
+
#: extensions/email-notifications/classes/EditNotification.php:456
|
5452 |
+
#: extensions/email-notifications/classes/Notifications.php:969
|
5453 |
+
#: extensions/email-notifications/classes/Notifications.php:992
|
5454 |
+
#: extensions/email-notifications/classes/Notifications.php:1009
|
5455 |
+
#: extensions/email-notifications/classes/Notifications.php:1026
|
5456 |
+
#: extensions/email-notifications/classes/Notifications.php:1043
|
5457 |
+
#: extensions/email-notifications/classes/Notifications.php:1067
|
5458 |
+
#: extensions/email-notifications/classes/Notifications.php:1091
|
5459 |
+
#: extensions/email-notifications/classes/Notifications.php:1106
|
5460 |
+
#: extensions/email-notifications/classes/Notifications.php:1121
|
5461 |
+
#: extensions/email-notifications/classes/Notifications.php:1143
|
5462 |
+
#: extensions/email-notifications/classes/Notifications.php:1156
|
5463 |
+
#: extensions/email-notifications/classes/Notifications.php:1169
|
5464 |
+
#: extensions/email-notifications/classes/Notifications.php:1182
|
5465 |
+
#: extensions/email-notifications/classes/Notifications.php:1195
|
5466 |
+
#: extensions/email-notifications/classes/Notifications.php:1208
|
5467 |
+
#: extensions/email-notifications/classes/Notifications.php:1232
|
5468 |
+
#: extensions/email-notifications/classes/Notifications.php:1247
|
5469 |
+
#: extensions/email-notifications/classes/Notifications.php:1262
|
5470 |
+
#: extensions/email-notifications/classes/Notifications.php:1277
|
5471 |
+
#: extensions/email-notifications/classes/Notifications.php:1292
|
5472 |
+
#: extensions/email-notifications/classes/Notifications.php:1314
|
5473 |
+
#: extensions/email-notifications/classes/Notifications.php:1379
|
5474 |
+
#: extensions/email-notifications/classes/Notifications.php:1394
|
5475 |
+
#: extensions/email-notifications/classes/Notifications.php:1409
|
5476 |
+
#: extensions/email-notifications/classes/Notifications.php:1433
|
5477 |
+
#: extensions/email-notifications/classes/Notifications.php:1448
|
5478 |
+
#: extensions/email-notifications/classes/Notifications.php:1463
|
5479 |
+
#: extensions/email-notifications/classes/Notifications.php:1478
|
5480 |
+
#: extensions/email-notifications/classes/Notifications.php:1540
|
5481 |
+
#: extensions/email-notifications/classes/Notifications.php:1555
|
5482 |
+
#: extensions/email-notifications/classes/Notifications.php:1570
|
5483 |
+
#: extensions/email-notifications/classes/Notifications.php:1634
|
5484 |
+
#: extensions/email-notifications/classes/Notifications.php:1651
|
5485 |
+
#: extensions/email-notifications/classes/Notifications.php:1668
|
5486 |
+
#: extensions/email-notifications/classes/Notifications.php:1685
|
5487 |
+
#: extensions/email-notifications/classes/Notifications.php:1702
|
5488 |
+
#: extensions/email-notifications/classes/Notifications.php:1719
|
5489 |
+
#: extensions/email-notifications/classes/Notifications.php:1736
|
5490 |
+
#: extensions/email-notifications/classes/Notifications.php:1802
|
5491 |
+
#: extensions/email-notifications/classes/Notifications.php:1819
|
5492 |
+
#: extensions/email-notifications/classes/Notifications.php:1836
|
5493 |
+
#: extensions/email-notifications/classes/Notifications.php:1853
|
5494 |
+
#: extensions/user-sessions/classes/View/Sessions.php:349
|
5495 |
+
msgid "Email"
|
5496 |
+
msgstr ""
|
5497 |
+
|
5498 |
+
#: extensions/email-notifications/classes/AddNotification.php:370
|
5499 |
+
#: extensions/email-notifications/classes/EditNotification.php:462
|
5500 |
+
#: extensions/email-notifications/classes/Notifications.php:995
|
5501 |
+
#: extensions/email-notifications/classes/Notifications.php:1012
|
5502 |
+
#: extensions/email-notifications/classes/Notifications.php:1029
|
5503 |
+
#: extensions/email-notifications/classes/Notifications.php:1046
|
5504 |
+
#: extensions/email-notifications/classes/Notifications.php:1070
|
5505 |
+
#: extensions/email-notifications/classes/Notifications.php:1094
|
5506 |
+
#: extensions/email-notifications/classes/Notifications.php:1109
|
5507 |
+
#: extensions/email-notifications/classes/Notifications.php:1124
|
5508 |
+
#: extensions/email-notifications/classes/Notifications.php:1146
|
5509 |
+
#: extensions/email-notifications/classes/Notifications.php:1159
|
5510 |
+
#: extensions/email-notifications/classes/Notifications.php:1172
|
5511 |
+
#: extensions/email-notifications/classes/Notifications.php:1185
|
5512 |
+
#: extensions/email-notifications/classes/Notifications.php:1198
|
5513 |
+
#: extensions/email-notifications/classes/Notifications.php:1211
|
5514 |
+
#: extensions/email-notifications/classes/Notifications.php:1235
|
5515 |
+
#: extensions/email-notifications/classes/Notifications.php:1250
|
5516 |
+
#: extensions/email-notifications/classes/Notifications.php:1265
|
5517 |
+
#: extensions/email-notifications/classes/Notifications.php:1280
|
5518 |
+
#: extensions/email-notifications/classes/Notifications.php:1295
|
5519 |
+
#: extensions/email-notifications/classes/Notifications.php:1317
|
5520 |
+
#: extensions/email-notifications/classes/Notifications.php:1382
|
5521 |
+
#: extensions/email-notifications/classes/Notifications.php:1397
|
5522 |
+
#: extensions/email-notifications/classes/Notifications.php:1412
|
5523 |
+
#: extensions/email-notifications/classes/Notifications.php:1436
|
5524 |
+
#: extensions/email-notifications/classes/Notifications.php:1451
|
5525 |
+
#: extensions/email-notifications/classes/Notifications.php:1466
|
5526 |
+
#: extensions/email-notifications/classes/Notifications.php:1481
|
5527 |
+
#: extensions/email-notifications/classes/Notifications.php:1543
|
5528 |
+
#: extensions/email-notifications/classes/Notifications.php:1558
|
5529 |
+
#: extensions/email-notifications/classes/Notifications.php:1573
|
5530 |
+
#: extensions/email-notifications/classes/Notifications.php:1637
|
5531 |
+
#: extensions/email-notifications/classes/Notifications.php:1654
|
5532 |
+
#: extensions/email-notifications/classes/Notifications.php:1671
|
5533 |
+
#: extensions/email-notifications/classes/Notifications.php:1688
|
5534 |
+
#: extensions/email-notifications/classes/Notifications.php:1705
|
5535 |
+
#: extensions/email-notifications/classes/Notifications.php:1722
|
5536 |
+
#: extensions/email-notifications/classes/Notifications.php:1739
|
5537 |
+
#: extensions/email-notifications/classes/Notifications.php:1805
|
5538 |
+
#: extensions/email-notifications/classes/Notifications.php:1822
|
5539 |
+
#: extensions/email-notifications/classes/Notifications.php:1839
|
5540 |
+
#: extensions/email-notifications/classes/Notifications.php:1856
|
5541 |
+
msgid "Mobile Number"
|
5542 |
+
msgstr ""
|
5543 |
+
|
5544 |
+
#: extensions/email-notifications/classes/AddNotification.php:374
|
5545 |
+
msgid ""
|
5546 |
+
"Specify the email addresses, WordPress usernames or phone numbers of those "
|
5547 |
+
"who should receive the notification once the trigger is matched. To specify "
|
5548 |
+
"multiple recipients separate them with a comma (,)."
|
5549 |
+
msgstr ""
|
5550 |
+
|
5551 |
+
#: extensions/email-notifications/classes/Common.php:439
|
5552 |
+
#: extensions/email-notifications/classes/Common.php:504
|
5553 |
+
msgid "The form is not valid. Please reload the page and try again."
|
5554 |
+
msgstr ""
|
5555 |
+
|
5556 |
+
#: extensions/email-notifications/classes/Common.php:450
|
5557 |
+
#: extensions/email-notifications/classes/Common.php:465
|
5558 |
+
msgid "The EVENT ID is not valid."
|
5559 |
+
msgstr ""
|
5560 |
+
|
5561 |
+
#: extensions/email-notifications/classes/Common.php:456
|
5562 |
+
msgid "Internal Error. Please reload the page and try again."
|
5563 |
+
msgstr ""
|
5564 |
+
|
5565 |
+
#: extensions/email-notifications/classes/Common.php:472
|
5566 |
+
msgid "The USERNAME is not valid. Maximum of 50 characters allowed."
|
5567 |
+
msgstr ""
|
5568 |
+
|
5569 |
+
#: extensions/email-notifications/classes/Common.php:478
|
5570 |
+
msgid "The USERNAME does not exist."
|
5571 |
+
msgstr ""
|
5572 |
+
|
5573 |
+
#: extensions/email-notifications/classes/Common.php:482
|
5574 |
+
#: extensions/email-notifications/classes/Common.php:561
|
5575 |
+
#: extensions/email-notifications/classes/Common.php:581
|
5576 |
+
#: extensions/email-notifications/classes/Common.php:604
|
5577 |
+
#: extensions/email-notifications/classes/Common.php:617
|
5578 |
+
#: extensions/email-notifications/classes/Common.php:631
|
5579 |
+
#: extensions/email-notifications/classes/Common.php:641
|
5580 |
+
#, php-format
|
5581 |
+
msgid "%s is not valid"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
+
#: extensions/email-notifications/classes/Common.php:491
|
5585 |
+
msgid "Selected USER ROLE is not valid."
|
5586 |
msgstr ""
|
5587 |
|
5588 |
+
#: extensions/email-notifications/classes/Common.php:498
|
5589 |
+
msgid "The SOURCE IP is not valid. Maximum of 15 characters allowed."
|
5590 |
+
msgstr ""
|
5591 |
+
|
5592 |
+
#: extensions/email-notifications/classes/Common.php:513
|
5593 |
+
msgid "The SOURCE IP is not valid."
|
5594 |
+
msgstr ""
|
5595 |
+
|
5596 |
+
#: extensions/email-notifications/classes/Common.php:522
|
5597 |
+
msgid "The SOURCE IP fragment is not valid."
|
5598 |
+
msgstr ""
|
5599 |
+
|
5600 |
+
#: extensions/email-notifications/classes/Common.php:539
|
5601 |
+
msgid "DATE is not valid."
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: extensions/email-notifications/classes/Common.php:548
|
5605 |
+
#: extensions/email-notifications/classes/Common.php:554
|
5606 |
+
msgid "TIME is not valid."
|
5607 |
+
msgstr ""
|
5608 |
+
|
5609 |
+
#: extensions/email-notifications/classes/Common.php:575
|
5610 |
+
#: extensions/email-notifications/classes/Common.php:598
|
5611 |
#, php-format
|
5612 |
+
msgid "%s was not found"
|
5613 |
+
msgstr ""
|
5614 |
+
|
5615 |
+
#: extensions/email-notifications/classes/Common.php:592
|
5616 |
+
msgid "The enviroment is not multisite."
|
5617 |
+
msgstr ""
|
5618 |
+
|
5619 |
+
#: extensions/email-notifications/classes/Common.php:613
|
5620 |
+
msgid "Selected POST TYPE is not valid."
|
5621 |
+
msgstr ""
|
5622 |
+
|
5623 |
+
#: extensions/email-notifications/classes/Common.php:626
|
5624 |
+
msgid "Selected POST STATUS is not valid."
|
5625 |
+
msgstr ""
|
5626 |
+
|
5627 |
+
#: extensions/email-notifications/classes/Common.php:637
|
5628 |
+
msgid "Selected OBJECT is not valid."
|
5629 |
+
msgstr ""
|
5630 |
+
|
5631 |
+
#: extensions/email-notifications/classes/Common.php:647
|
5632 |
+
msgid "Selected TYPE is not valid."
|
5633 |
+
msgstr ""
|
5634 |
+
|
5635 |
+
#: extensions/email-notifications/classes/Common.php:872
|
5636 |
+
#: extensions/email-notifications/classes/Common.php:900
|
5637 |
+
#: extensions/email-notifications/classes/Common.php:902
|
5638 |
+
msgid "Title is required."
|
5639 |
+
msgstr ""
|
5640 |
+
|
5641 |
+
#: extensions/email-notifications/classes/Common.php:909
|
5642 |
+
msgid "Title is not valid."
|
5643 |
+
msgstr ""
|
5644 |
+
|
5645 |
+
#: extensions/email-notifications/classes/Common.php:919
|
5646 |
+
msgid "Please add at least one condition."
|
5647 |
+
msgstr ""
|
5648 |
+
|
5649 |
+
#: extensions/email-notifications/classes/Common.php:967
|
5650 |
+
#: extensions/email-notifications/classes/Common.php:973
|
5651 |
+
#: extensions/email-notifications/classes/Common.php:978
|
5652 |
+
msgid "The form is not valid. Please refresh the page and try again."
|
5653 |
+
msgstr ""
|
5654 |
+
|
5655 |
+
#: extensions/email-notifications/classes/Common.php:987
|
5656 |
+
msgid "A trigger's condition must not be longer than 50 characters."
|
5657 |
+
msgstr ""
|
5658 |
+
|
5659 |
+
#: extensions/email-notifications/classes/Common.php:1017
|
5660 |
+
msgid "Email or Username is required."
|
5661 |
+
msgstr ""
|
5662 |
+
|
5663 |
+
#: extensions/email-notifications/classes/Common.php:1018
|
5664 |
+
msgid "Mobile number is required."
|
5665 |
+
msgstr ""
|
5666 |
+
|
5667 |
+
#: extensions/email-notifications/classes/Common.php:1023
|
5668 |
+
msgid "Email or Username is not valid."
|
5669 |
+
msgstr ""
|
5670 |
+
|
5671 |
+
#: extensions/email-notifications/classes/Common.php:1030
|
5672 |
+
msgid "Mobile number is not valid."
|
5673 |
+
msgstr ""
|
5674 |
+
|
5675 |
+
#: extensions/email-notifications/classes/Common.php:1082
|
5676 |
+
#: extensions/email-notifications/classes/Notifications.php:592
|
5677 |
+
msgid "Notification could not be saved."
|
5678 |
+
msgstr ""
|
5679 |
+
|
5680 |
+
#: extensions/email-notifications/classes/Common.php:1089
|
5681 |
+
#: extensions/email-notifications/classes/Notifications.php:651
|
5682 |
+
msgid "Notification successfully saved."
|
5683 |
+
msgstr ""
|
5684 |
+
|
5685 |
+
#: extensions/email-notifications/classes/Common.php:1167
|
5686 |
+
#: extensions/email-notifications/classes/Common.php:1229
|
5687 |
+
msgid "Notification {title} on website {site} triggered"
|
5688 |
+
msgstr ""
|
5689 |
+
|
5690 |
+
#: extensions/email-notifications/classes/Common.php:1168
|
5691 |
+
#: extensions/email-notifications/classes/Common.php:1230
|
5692 |
msgid ""
|
5693 |
+
"Notification <strong>{title}</strong> was triggered. Below are the "
|
5694 |
+
"notification details:"
|
5695 |
+
msgstr ""
|
5696 |
+
|
5697 |
+
#: extensions/email-notifications/classes/Common.php:1170
|
5698 |
+
msgid "Website"
|
5699 |
+
msgstr ""
|
5700 |
+
|
5701 |
+
#: extensions/email-notifications/classes/Common.php:1172
|
5702 |
+
#: extensions/email-notifications/classes/Common.php:1233
|
5703 |
+
#: extensions/search/classes/FilterManager.php:474
|
5704 |
+
#: extensions/user-sessions/classes/View/Sessions.php:174
|
5705 |
+
#: extensions/user-sessions/classes/View/Sessions.php:348
|
5706 |
+
msgid "Username"
|
5707 |
+
msgstr ""
|
5708 |
+
|
5709 |
+
#: extensions/email-notifications/classes/Common.php:1173
|
5710 |
+
msgid "User role"
|
5711 |
+
msgstr ""
|
5712 |
+
|
5713 |
+
#: extensions/email-notifications/classes/Common.php:1174
|
5714 |
+
msgid "IP address"
|
5715 |
+
msgstr ""
|
5716 |
+
|
5717 |
+
#: extensions/email-notifications/classes/Common.php:1177
|
5718 |
+
msgid "Event Message"
|
5719 |
+
msgstr ""
|
5720 |
+
|
5721 |
+
#: extensions/email-notifications/classes/Common.php:1178
|
5722 |
+
msgid "Event generated on"
|
5723 |
+
msgstr ""
|
5724 |
+
|
5725 |
+
#: extensions/email-notifications/classes/Common.php:1180
|
5726 |
+
msgid ""
|
5727 |
+
"These email notifications are sent with <a href=\"http://wpactivitylog.com"
|
5728 |
+
"\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin "
|
5729 |
+
"solution."
|
5730 |
msgstr ""
|
5731 |
|
5732 |
+
#: extensions/email-notifications/classes/Common.php:1203
|
5733 |
+
#: extensions/email-notifications/classes/Common.php:1262
|
5734 |
+
msgid "User/Role"
|
5735 |
+
msgstr ""
|
5736 |
+
|
5737 |
+
#: extensions/email-notifications/classes/Common.php:1234
|
5738 |
+
#: extensions/search/classes/FilterManager.php:486
|
5739 |
+
#: extensions/search/classes/Filters/userrolefilter.php:49
|
5740 |
+
#: extensions/search/classes/Filters/userrolefilter.php:87
|
5741 |
+
#: extensions/user-sessions/classes/View/Sessions.php:353
|
5742 |
+
msgid "User Role"
|
5743 |
+
msgstr ""
|
5744 |
+
|
5745 |
+
#: extensions/email-notifications/classes/Common.php:1236
|
5746 |
+
msgid "Generated On"
|
5747 |
+
msgstr ""
|
5748 |
+
|
5749 |
+
#: extensions/email-notifications/classes/Common.php:1238
|
5750 |
+
msgid ""
|
5751 |
+
"Monitoring of WordPress and Email Notifications provided by <a href=\"http://"
|
5752 |
+
"wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit "
|
5753 |
+
"trail plugin</a>."
|
5754 |
+
msgstr ""
|
5755 |
+
|
5756 |
+
#: extensions/email-notifications/classes/Common.php:1263
|
5757 |
+
msgid "Event"
|
5758 |
+
msgstr ""
|
5759 |
+
|
5760 |
+
#: extensions/email-notifications/classes/Common.php:1278
|
5761 |
+
msgid "Subject "
|
5762 |
+
msgstr ""
|
5763 |
+
|
5764 |
+
#: extensions/email-notifications/classes/Common.php:1287
|
5765 |
+
msgid "Body "
|
5766 |
+
msgstr ""
|
5767 |
+
|
5768 |
+
#: extensions/email-notifications/classes/Common.php:1290
|
5769 |
+
msgid "HTML is accepted. Available template tags:"
|
5770 |
+
msgstr ""
|
5771 |
+
|
5772 |
+
#: extensions/email-notifications/classes/DailyNotification.php:340
|
5773 |
+
#, php-format
|
5774 |
+
msgid "was %d login"
|
5775 |
+
msgid_plural "were %d logins"
|
5776 |
+
msgstr[0] ""
|
5777 |
+
msgstr[1] ""
|
5778 |
+
|
5779 |
+
#: extensions/email-notifications/classes/DailyNotification.php:346
|
5780 |
+
#, php-format
|
5781 |
+
msgid "%d unique user"
|
5782 |
+
msgid_plural "%d unique users"
|
5783 |
+
msgstr[0] ""
|
5784 |
+
msgstr[1] ""
|
5785 |
+
|
5786 |
+
#: extensions/email-notifications/classes/DailyNotification.php:353
|
5787 |
#, php-format
|
5788 |
msgid ""
|
5789 |
+
"There %1$s on your site today from %2$s. Below is a list of the users and "
|
5790 |
+
"the IP addresses they logged in from:"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
+
#: extensions/email-notifications/classes/DailyNotification.php:385
|
5794 |
+
msgid ""
|
5795 |
+
"There were failed logins due to a wrong password from the following IP "
|
5796 |
+
"addresses:"
|
5797 |
+
msgstr ""
|
5798 |
+
|
5799 |
+
#: extensions/email-notifications/classes/DailyNotification.php:407
|
5800 |
+
msgid ""
|
5801 |
+
"There were failed logins due to a wrong username from the following IP "
|
5802 |
+
"addresses:"
|
5803 |
+
msgstr ""
|
5804 |
+
|
5805 |
+
#: extensions/email-notifications/classes/EditNotification.php:58
|
5806 |
+
msgid "Edit Email Notification"
|
5807 |
+
msgstr ""
|
5808 |
+
|
5809 |
+
#: extensions/email-notifications/classes/EditNotification.php:72
|
5810 |
+
msgid "Edit Notification"
|
5811 |
+
msgstr ""
|
5812 |
+
|
5813 |
+
#: extensions/email-notifications/classes/EditNotification.php:239
|
5814 |
+
#: extensions/email-notifications/classes/Notifications.php:1908
|
5815 |
+
msgid "Add New"
|
5816 |
+
msgstr ""
|
5817 |
+
|
5818 |
+
#: extensions/email-notifications/classes/EditNotification.php:270
|
5819 |
+
msgid ""
|
5820 |
+
"You do not have sufficient permissions to access this page. - INVALID "
|
5821 |
+
"NOTIFICATION ID"
|
5822 |
+
msgstr ""
|
5823 |
+
|
5824 |
+
#: extensions/email-notifications/classes/EditNotification.php:466
|
5825 |
+
msgid ""
|
5826 |
+
"Specify the email address or WordPress usernames who should receive the "
|
5827 |
+
"notification once the trigger is matched. To specify multiple email "
|
5828 |
+
"addresses or usernames separate them with a comma (,)."
|
5829 |
+
msgstr ""
|
5830 |
+
|
5831 |
+
#: extensions/email-notifications/classes/NotificationBuilder.php:76
|
5832 |
+
#: extensions/email-notifications/classes/Notifications.php:1946
|
5833 |
+
#: extensions/email-notifications/classes/Notifications.php:2009
|
5834 |
+
#: extensions/email-notifications/classes/Notifications.php:2024
|
5835 |
+
#: extensions/external-db/classes/Connections.php:144
|
5836 |
+
#: extensions/external-db/classes/Mirroring.php:204
|
5837 |
+
#: extensions/search/search-init.php:330
|
5838 |
+
msgid "Delete"
|
5839 |
+
msgstr ""
|
5840 |
+
|
5841 |
+
#: extensions/email-notifications/classes/NotificationBuilder.php:77
|
5842 |
+
msgid "Save Notification"
|
5843 |
+
msgstr ""
|
5844 |
+
|
5845 |
+
#: extensions/email-notifications/classes/NotificationBuilder.php:78
|
5846 |
+
msgid "Add Notification"
|
5847 |
+
msgstr ""
|
5848 |
+
|
5849 |
+
#: extensions/email-notifications/classes/NotificationBuilder.php:79
|
5850 |
+
msgid "Email Address(es) or WordPress Users:"
|
5851 |
+
msgstr ""
|
5852 |
+
|
5853 |
+
#: extensions/email-notifications/classes/NotificationBuilder.php:80
|
5854 |
+
msgid "Phone number(s) for SMS notifications:"
|
5855 |
+
msgstr ""
|
5856 |
+
|
5857 |
+
#: extensions/email-notifications/classes/Notifications.php:158
|
5858 |
+
msgid "Built-in Notifications"
|
5859 |
+
msgstr ""
|
5860 |
+
|
5861 |
+
#: extensions/email-notifications/classes/Notifications.php:163
|
5862 |
+
msgid "WordPress System"
|
5863 |
+
msgstr ""
|
5864 |
+
|
5865 |
+
#: extensions/email-notifications/classes/Notifications.php:167
|
5866 |
+
msgid "Logins & Users Profiles"
|
5867 |
+
msgstr ""
|
5868 |
+
|
5869 |
+
#: extensions/email-notifications/classes/Notifications.php:171
|
5870 |
+
msgid "Content Changes"
|
5871 |
+
msgstr ""
|
5872 |
+
|
5873 |
+
#: extensions/email-notifications/classes/Notifications.php:175
|
5874 |
+
msgid "Multisite"
|
5875 |
+
msgstr ""
|
5876 |
+
|
5877 |
+
#: extensions/email-notifications/classes/Notifications.php:185
|
5878 |
+
#: extensions/email-notifications/classes/Notifications.php:851
|
5879 |
+
msgid "Custom Notifications"
|
5880 |
+
msgstr ""
|
5881 |
+
|
5882 |
+
#: extensions/email-notifications/classes/Notifications.php:191
|
5883 |
+
msgid "Notifications Templates"
|
5884 |
+
msgstr ""
|
5885 |
+
|
5886 |
+
#: extensions/email-notifications/classes/Notifications.php:197
|
5887 |
+
#: extensions/email-notifications/classes/Notifications.php:2085
|
5888 |
+
msgid "Default Email Template"
|
5889 |
+
msgstr ""
|
5890 |
+
|
5891 |
+
#: extensions/email-notifications/classes/Notifications.php:201
|
5892 |
+
#: extensions/email-notifications/classes/Notifications.php:2081
|
5893 |
+
msgid "Default SMS Template"
|
5894 |
+
msgstr ""
|
5895 |
+
|
5896 |
+
#: extensions/email-notifications/classes/Notifications.php:244
|
5897 |
+
#: extensions/email-notifications/classes/Notifications.php:258
|
5898 |
+
msgid "Notifications"
|
5899 |
+
msgstr ""
|
5900 |
+
|
5901 |
+
#: extensions/email-notifications/classes/Notifications.php:293
|
5902 |
+
#: extensions/email-notifications/classes/Notifications.php:869
|
5903 |
+
msgid "Test Notifications"
|
5904 |
+
msgstr ""
|
5905 |
+
|
5906 |
+
#: extensions/email-notifications/classes/Notifications.php:294
|
5907 |
+
msgid "Trigger Builder Test Notification"
|
5908 |
+
msgstr ""
|
5909 |
+
|
5910 |
+
#: extensions/email-notifications/classes/Notifications.php:296
|
5911 |
+
msgid "Please specify an email address or a phone number to test."
|
5912 |
+
msgstr ""
|
5913 |
+
|
5914 |
+
#: extensions/email-notifications/classes/Notifications.php:601
|
5915 |
+
msgid "Email Address and Mobile Number cannot be empty."
|
5916 |
+
msgstr ""
|
5917 |
+
|
5918 |
+
#: extensions/email-notifications/classes/Notifications.php:609
|
5919 |
+
msgid "Email Address or Username is not valid."
|
5920 |
+
msgstr ""
|
5921 |
+
|
5922 |
+
#: extensions/email-notifications/classes/Notifications.php:619
|
5923 |
+
msgid "Phone number is not valid."
|
5924 |
+
msgstr ""
|
5925 |
+
|
5926 |
+
#: extensions/email-notifications/classes/Notifications.php:748
|
5927 |
+
msgid ""
|
5928 |
+
"To configure email notifications please contact the administrator of this "
|
5929 |
+
"multisite network on "
|
5930 |
+
msgstr ""
|
5931 |
+
|
5932 |
+
#: extensions/email-notifications/classes/Notifications.php:757
|
5933 |
+
msgid "Invalid request."
|
5934 |
+
msgstr ""
|
5935 |
+
|
5936 |
+
#: extensions/email-notifications/classes/Notifications.php:763
|
5937 |
+
msgid "An error occurred while sending the daily summary email."
|
5938 |
+
msgstr ""
|
5939 |
+
|
5940 |
+
#: extensions/email-notifications/classes/Notifications.php:767
|
5941 |
+
msgid "Daily summary email sent."
|
5942 |
+
msgstr ""
|
5943 |
+
|
5944 |
+
#: extensions/email-notifications/classes/Notifications.php:841
|
5945 |
+
#, php-format
|
5946 |
+
msgid ""
|
5947 |
+
"Tick the check box and specify an email address or username to enable a "
|
5948 |
+
"notification. You can specify a phone number to send a SMS notification as "
|
5949 |
+
"well (%s). Multiple recipients or numbers should be separated with a comma "
|
5950 |
+
"(,). Click the Save Notifications button to save the changes."
|
5951 |
+
msgstr ""
|
5952 |
+
|
5953 |
+
#: extensions/email-notifications/classes/Notifications.php:842
|
5954 |
+
msgid "Configure Twilio account integration"
|
5955 |
+
msgstr ""
|
5956 |
+
|
5957 |
+
#: extensions/email-notifications/classes/Notifications.php:850
|
5958 |
+
#, php-format
|
5959 |
+
msgid "You can create your own notification criteria in the %s tab."
|
5960 |
+
msgstr ""
|
5961 |
+
|
5962 |
+
#: extensions/email-notifications/classes/Notifications.php:870
|
5963 |
+
msgid "Save Notifications"
|
5964 |
+
msgstr ""
|
5965 |
+
|
5966 |
+
#: extensions/email-notifications/classes/Notifications.php:879
|
5967 |
+
msgid ""
|
5968 |
+
"Specify an email address to where you would like to send a test email "
|
5969 |
+
"notification:"
|
5970 |
+
msgstr ""
|
5971 |
+
|
5972 |
+
#: extensions/email-notifications/classes/Notifications.php:884
|
5973 |
+
msgid ""
|
5974 |
+
"Specify a mobile phone number to where you would like to send a test SMS "
|
5975 |
+
"notification:"
|
5976 |
+
msgstr ""
|
5977 |
+
|
5978 |
+
#: extensions/email-notifications/classes/Notifications.php:890
|
5979 |
+
msgid "Send"
|
5980 |
+
msgstr ""
|
5981 |
+
|
5982 |
+
#: extensions/email-notifications/classes/Notifications.php:891
|
5983 |
+
#: extensions/external-db/classes/Connections.php:216
|
5984 |
+
#: extensions/external-db/classes/Mirroring.php:287
|
5985 |
+
msgid "Cancel"
|
5986 |
+
msgstr ""
|
5987 |
+
|
5988 |
+
#: extensions/email-notifications/classes/Notifications.php:955
|
5989 |
+
msgid "Daily Summary of Activity Log"
|
5990 |
+
msgstr ""
|
5991 |
+
|
5992 |
+
#: extensions/email-notifications/classes/Notifications.php:966
|
5993 |
+
msgid "Send me a summary of what happens every day."
|
5994 |
+
msgstr ""
|
5995 |
+
|
5996 |
+
#: extensions/email-notifications/classes/Notifications.php:970
|
5997 |
+
msgid "Send Summary Now"
|
5998 |
+
msgstr ""
|
5999 |
+
|
6000 |
+
#: extensions/email-notifications/classes/Notifications.php:976
|
6001 |
+
msgid "Suspicious Activity"
|
6002 |
+
msgstr ""
|
6003 |
+
|
6004 |
+
#: extensions/email-notifications/classes/Notifications.php:985
|
6005 |
+
#: extensions/email-notifications/classes/Notifications.php:1002
|
6006 |
+
msgid "There are more than"
|
6007 |
+
msgstr ""
|
6008 |
+
|
6009 |
+
#: extensions/email-notifications/classes/Notifications.php:987
|
6010 |
+
msgid "failed WordPress logins for a WordPress user (Event ID 1002)"
|
6011 |
+
msgstr ""
|
6012 |
+
|
6013 |
+
#: extensions/email-notifications/classes/Notifications.php:1004
|
6014 |
+
msgid "failed logins of non existing users (Event ID 1003)"
|
6015 |
+
msgstr ""
|
6016 |
+
|
6017 |
+
#: extensions/email-notifications/classes/Notifications.php:1019
|
6018 |
+
msgid "A user generates more than"
|
6019 |
+
msgstr ""
|
6020 |
+
|
6021 |
+
#: extensions/email-notifications/classes/Notifications.php:1021
|
6022 |
+
msgid "404 HTTP errors (Event ID 6007)"
|
6023 |
+
msgstr ""
|
6024 |
+
|
6025 |
+
#: extensions/email-notifications/classes/Notifications.php:1036
|
6026 |
+
msgid "More than"
|
6027 |
+
msgstr ""
|
6028 |
+
|
6029 |
+
#: extensions/email-notifications/classes/Notifications.php:1038
|
6030 |
+
msgid "404 HTTP errors are generated by the same IP address (Event ID 6023)"
|
6031 |
+
msgstr ""
|
6032 |
+
|
6033 |
+
#: extensions/email-notifications/classes/Notifications.php:1053
|
6034 |
+
msgid "WordPress Install Changes"
|
6035 |
+
msgstr ""
|
6036 |
+
|
6037 |
+
#: extensions/email-notifications/classes/Notifications.php:1062
|
6038 |
+
msgid "WordPress was updated (Event ID 6004)"
|
6039 |
+
msgstr ""
|
6040 |
+
|
6041 |
+
#: extensions/email-notifications/classes/Notifications.php:1077
|
6042 |
+
msgid "Website File Changes"
|
6043 |
+
msgstr ""
|
6044 |
+
|
6045 |
+
#: extensions/email-notifications/classes/Notifications.php:1086
|
6046 |
+
msgid "File was modified (Event ID 6028)"
|
6047 |
+
msgstr ""
|
6048 |
+
|
6049 |
+
#: extensions/email-notifications/classes/Notifications.php:1101
|
6050 |
+
msgid "File was added to the website (Event ID 6029)"
|
6051 |
+
msgstr ""
|
6052 |
+
|
6053 |
+
#: extensions/email-notifications/classes/Notifications.php:1116
|
6054 |
+
msgid "File was deleted from website (Event ID 6030)"
|
6055 |
+
msgstr ""
|
6056 |
+
|
6057 |
+
#: extensions/email-notifications/classes/Notifications.php:1131
|
6058 |
+
msgid "Plugin Changes Notifications"
|
6059 |
+
msgstr ""
|
6060 |
+
|
6061 |
+
#: extensions/email-notifications/classes/Notifications.php:1139
|
6062 |
+
msgid "New plugin is installed (Event ID 5000)"
|
6063 |
+
msgstr ""
|
6064 |
+
|
6065 |
+
#: extensions/email-notifications/classes/Notifications.php:1152
|
6066 |
+
msgid "Installed plugin is activated (Event ID 5001)"
|
6067 |
+
msgstr ""
|
6068 |
+
|
6069 |
+
#: extensions/email-notifications/classes/Notifications.php:1165
|
6070 |
+
msgid "Plugin file is modified (Event ID 2051)"
|
6071 |
+
msgstr ""
|
6072 |
+
|
6073 |
+
#: extensions/email-notifications/classes/Notifications.php:1178
|
6074 |
+
msgid "Installed plugin is deactivated (Event ID 5002)"
|
6075 |
+
msgstr ""
|
6076 |
+
|
6077 |
+
#: extensions/email-notifications/classes/Notifications.php:1191
|
6078 |
+
msgid "A plugin is uninstalled (Event ID 5003)"
|
6079 |
+
msgstr ""
|
6080 |
+
|
6081 |
+
#: extensions/email-notifications/classes/Notifications.php:1204
|
6082 |
+
msgid "Installed plugin is upgraded (Event ID 5004)"
|
6083 |
+
msgstr ""
|
6084 |
+
|
6085 |
+
#: extensions/email-notifications/classes/Notifications.php:1218
|
6086 |
+
msgid "Themes Changes Notifications"
|
6087 |
+
msgstr ""
|
6088 |
+
|
6089 |
+
#: extensions/email-notifications/classes/Notifications.php:1227
|
6090 |
+
msgid "New theme is installed (Event ID 5005)"
|
6091 |
+
msgstr ""
|
6092 |
+
|
6093 |
+
#: extensions/email-notifications/classes/Notifications.php:1242
|
6094 |
+
msgid "Installed theme is activated (Event ID 5006)"
|
6095 |
+
msgstr ""
|
6096 |
+
|
6097 |
+
#: extensions/email-notifications/classes/Notifications.php:1257
|
6098 |
+
msgid "Theme file is modified (Event ID 2046)"
|
6099 |
+
msgstr ""
|
6100 |
+
|
6101 |
+
#: extensions/email-notifications/classes/Notifications.php:1272
|
6102 |
+
msgid "A theme is uninstalled (Event ID 5007)"
|
6103 |
+
msgstr ""
|
6104 |
+
|
6105 |
+
#: extensions/email-notifications/classes/Notifications.php:1287
|
6106 |
+
msgid "Installed theme is updated (Event ID 5031)"
|
6107 |
+
msgstr ""
|
6108 |
+
|
6109 |
+
#: extensions/email-notifications/classes/Notifications.php:1302
|
6110 |
+
msgid "Critical Events"
|
6111 |
+
msgstr ""
|
6112 |
+
|
6113 |
+
#: extensions/email-notifications/classes/Notifications.php:1310
|
6114 |
+
msgid "Critical Event is Generated"
|
6115 |
+
msgstr ""
|
6116 |
+
|
6117 |
+
#: extensions/email-notifications/classes/Notifications.php:1374
|
6118 |
+
msgid "User logs in (Event ID 1000)"
|
6119 |
+
msgstr ""
|
6120 |
+
|
6121 |
+
#: extensions/email-notifications/classes/Notifications.php:1389
|
6122 |
+
msgid "First time user logs in"
|
6123 |
+
msgstr ""
|
6124 |
+
|
6125 |
+
#: extensions/email-notifications/classes/Notifications.php:1404
|
6126 |
+
msgid "User changed password (Event ID 4003)"
|
6127 |
+
msgstr ""
|
6128 |
+
|
6129 |
+
#: extensions/email-notifications/classes/Notifications.php:1419
|
6130 |
+
msgid "User Profile Changes"
|
6131 |
+
msgstr ""
|
6132 |
+
|
6133 |
+
#: extensions/email-notifications/classes/Notifications.php:1428
|
6134 |
+
msgid "User changed email address (Event IDs 4005, 4006)"
|
6135 |
+
msgstr ""
|
6136 |
+
|
6137 |
+
#: extensions/email-notifications/classes/Notifications.php:1443
|
6138 |
+
msgid "User's role has changed (Event ID 4002)"
|
6139 |
+
msgstr ""
|
6140 |
+
|
6141 |
+
#: extensions/email-notifications/classes/Notifications.php:1458
|
6142 |
+
msgid "User changed the password of another user (Event ID 4004)"
|
6143 |
+
msgstr ""
|
6144 |
+
|
6145 |
+
#: extensions/email-notifications/classes/Notifications.php:1473
|
6146 |
+
msgid "New user is created (Event IDs 4000, 4001, 4012)"
|
6147 |
+
msgstr ""
|
6148 |
+
|
6149 |
+
#: extensions/email-notifications/classes/Notifications.php:1535
|
6150 |
+
msgid "New content is published (Event ID 2001)"
|
6151 |
+
msgstr ""
|
6152 |
+
|
6153 |
+
#: extensions/email-notifications/classes/Notifications.php:1550
|
6154 |
+
msgid "Content in a post, page or custom post type is changed (Event ID 2065)"
|
6155 |
+
msgstr ""
|
6156 |
+
|
6157 |
+
#: extensions/email-notifications/classes/Notifications.php:1565
|
6158 |
+
msgid ""
|
6159 |
+
"Anything but content in a post is changed (such as date, category, status, "
|
6160 |
+
"parent page etc)"
|
6161 |
+
msgstr ""
|
6162 |
+
|
6163 |
+
#: extensions/email-notifications/classes/Notifications.php:1630
|
6164 |
+
msgid "User granted super admin (Event ID 4008)"
|
6165 |
+
msgstr ""
|
6166 |
+
|
6167 |
+
#: extensions/email-notifications/classes/Notifications.php:1646
|
6168 |
+
msgid "User revoked super admin (Event ID 4009)"
|
6169 |
+
msgstr ""
|
6170 |
+
|
6171 |
+
#: extensions/email-notifications/classes/Notifications.php:1663
|
6172 |
+
msgid "User added to site (Event ID 4010)"
|
6173 |
+
msgstr ""
|
6174 |
+
|
6175 |
+
#: extensions/email-notifications/classes/Notifications.php:1680
|
6176 |
+
msgid "User removed from site (Event ID 4011)"
|
6177 |
+
msgstr ""
|
6178 |
+
|
6179 |
+
#: extensions/email-notifications/classes/Notifications.php:1697
|
6180 |
+
msgid "Site changes"
|
6181 |
+
msgstr ""
|
6182 |
+
|
6183 |
+
#: extensions/email-notifications/classes/Notifications.php:1714
|
6184 |
+
msgid "Activated theme on network (Event ID 5008)"
|
6185 |
+
msgstr ""
|
6186 |
+
|
6187 |
+
#: extensions/email-notifications/classes/Notifications.php:1731
|
6188 |
+
msgid "Deactivated theme from network (Event ID 5009)"
|
6189 |
+
msgstr ""
|
6190 |
+
|
6191 |
+
#: extensions/email-notifications/classes/Notifications.php:1797
|
6192 |
+
msgid "Any product change"
|
6193 |
+
msgstr ""
|
6194 |
+
|
6195 |
+
#: extensions/email-notifications/classes/Notifications.php:1814
|
6196 |
+
msgid "Any store settings change"
|
6197 |
+
msgstr ""
|
6198 |
+
|
6199 |
+
#: extensions/email-notifications/classes/Notifications.php:1831
|
6200 |
+
msgid "Any coupon code changes"
|
6201 |
+
msgstr ""
|
6202 |
+
|
6203 |
+
#: extensions/email-notifications/classes/Notifications.php:1848
|
6204 |
+
msgid "Any orders changes"
|
6205 |
+
msgstr ""
|
6206 |
+
|
6207 |
+
#: extensions/email-notifications/classes/Notifications.php:1903
|
6208 |
+
#, php-format
|
6209 |
+
msgid ""
|
6210 |
+
"Use the trigger builder to build any type of criteria that triggers email "
|
6211 |
+
"and / or SMS notifications. Refer to the %s for more detailed information."
|
6212 |
+
msgstr ""
|
6213 |
+
|
6214 |
+
#: extensions/email-notifications/classes/Notifications.php:1904
|
6215 |
+
msgid "WordPress notifications documentation"
|
6216 |
+
msgstr ""
|
6217 |
+
|
6218 |
+
#: extensions/email-notifications/classes/Notifications.php:1921
|
6219 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:175
|
6220 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:179
|
6221 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:24
|
6222 |
+
msgid "All"
|
6223 |
+
msgstr ""
|
6224 |
+
|
6225 |
+
#: extensions/email-notifications/classes/Notifications.php:1930
|
6226 |
+
#: extensions/email-notifications/classes/Notifications.php:1932
|
6227 |
+
#: extensions/email-notifications/classes/Notifications.php:2053
|
6228 |
+
#: extensions/email-notifications/classes/Notifications.php:2055
|
6229 |
+
msgid "Search Notifications"
|
6230 |
+
msgstr ""
|
6231 |
+
|
6232 |
+
#: extensions/email-notifications/classes/Notifications.php:1943
|
6233 |
+
#: extensions/email-notifications/classes/Notifications.php:2021
|
6234 |
+
msgid "Bulk actions"
|
6235 |
+
msgstr ""
|
6236 |
+
|
6237 |
+
#: extensions/email-notifications/classes/Notifications.php:1944
|
6238 |
+
#: extensions/email-notifications/classes/Notifications.php:2005
|
6239 |
+
#: extensions/email-notifications/classes/Notifications.php:2022
|
6240 |
+
#: extensions/external-db/classes/Connections.php:432
|
6241 |
+
#: extensions/external-db/classes/Mirroring.php:185
|
6242 |
+
#: extensions/external-db/classes/Settings.php:1344
|
6243 |
+
msgid "Enable"
|
6244 |
+
msgstr ""
|
6245 |
+
|
6246 |
+
#: extensions/email-notifications/classes/Notifications.php:1945
|
6247 |
+
#: extensions/email-notifications/classes/Notifications.php:2003
|
6248 |
+
#: extensions/email-notifications/classes/Notifications.php:2023
|
6249 |
+
#: extensions/external-db/classes/Mirroring.php:188
|
6250 |
+
#: extensions/external-db/classes/Settings.php:1347
|
6251 |
+
msgid "Disable"
|
6252 |
+
msgstr ""
|
6253 |
+
|
6254 |
+
#: extensions/email-notifications/classes/Notifications.php:1948
|
6255 |
+
#: extensions/email-notifications/classes/Notifications.php:2026
|
6256 |
+
msgid "Apply"
|
6257 |
+
msgstr ""
|
6258 |
+
|
6259 |
+
#: extensions/email-notifications/classes/Notifications.php:1993
|
6260 |
+
msgid "Select"
|
6261 |
+
msgstr ""
|
6262 |
+
|
6263 |
+
#: extensions/email-notifications/classes/Notifications.php:1997
|
6264 |
+
#: extensions/email-notifications/classes/Notifications.php:1999
|
6265 |
+
msgid "Edit this notification"
|
6266 |
+
msgstr ""
|
6267 |
+
|
6268 |
+
#: extensions/email-notifications/classes/Notifications.php:1999
|
6269 |
+
msgid "Edit"
|
6270 |
+
msgstr ""
|
6271 |
+
|
6272 |
+
#: extensions/email-notifications/classes/Notifications.php:2003
|
6273 |
+
msgid "Disable this notification"
|
6274 |
+
msgstr ""
|
6275 |
+
|
6276 |
+
#: extensions/email-notifications/classes/Notifications.php:2005
|
6277 |
+
msgid "Enable this notification"
|
6278 |
+
msgstr ""
|
6279 |
+
|
6280 |
+
#: extensions/email-notifications/classes/Notifications.php:2009
|
6281 |
+
msgid "Delete this notification"
|
6282 |
+
msgstr ""
|
6283 |
+
|
6284 |
+
#: extensions/email-notifications/classes/Notifications.php:2012
|
6285 |
+
msgid "Send Test Email"
|
6286 |
+
msgstr ""
|
6287 |
+
|
6288 |
+
#: extensions/email-notifications/classes/Notifications.php:2013
|
6289 |
+
msgid "Send Test SMS"
|
6290 |
+
msgstr ""
|
6291 |
+
|
6292 |
+
#: extensions/email-notifications/classes/Notifications.php:2046
|
6293 |
+
msgid "No notifications found to match your search."
|
6294 |
+
msgstr ""
|
6295 |
+
|
6296 |
+
#: extensions/email-notifications/classes/Notifications.php:2060
|
6297 |
+
msgid ""
|
6298 |
+
"No notifications found. Click the <code>Add New</code> button above to "
|
6299 |
+
"create one."
|
6300 |
+
msgstr ""
|
6301 |
+
|
6302 |
+
#: extensions/email-notifications/classes/Notifications.php:2080
|
6303 |
+
msgid "You can modify the default notification SMS template from here."
|
6304 |
+
msgstr ""
|
6305 |
+
|
6306 |
+
#: extensions/email-notifications/classes/Notifications.php:2082
|
6307 |
+
msgid ""
|
6308 |
+
"This is the default template for SMS notifications. The maximum number of "
|
6309 |
+
"characters for a SMS is 160, so if you configure longer notifications you "
|
6310 |
+
"will be charged for multiple SMS notifications."
|
6311 |
+
msgstr ""
|
6312 |
+
|
6313 |
+
#: extensions/email-notifications/classes/Notifications.php:2084
|
6314 |
+
msgid "You can modify the default notification email template from here."
|
6315 |
+
msgstr ""
|
6316 |
+
|
6317 |
+
#: extensions/email-notifications/classes/Notifications.php:2086
|
6318 |
+
msgid ""
|
6319 |
+
"This is the default template. You can override this default template with "
|
6320 |
+
"notification specific template which you can modify when using the Trigger "
|
6321 |
+
"Builder."
|
6322 |
+
msgstr ""
|
6323 |
+
|
6324 |
+
#: extensions/email-notifications/classes/Notifications.php:2122
|
6325 |
+
msgid "Subject"
|
6326 |
+
msgstr ""
|
6327 |
+
|
6328 |
+
#: extensions/email-notifications/classes/Notifications.php:2127
|
6329 |
+
msgid "Body"
|
6330 |
+
msgstr ""
|
6331 |
+
|
6332 |
+
#: extensions/email-notifications/classes/Notifications.php:2152
|
6333 |
+
msgid "HTML is accepted."
|
6334 |
+
msgstr ""
|
6335 |
+
|
6336 |
+
#: extensions/email-notifications/classes/Notifications.php:2153
|
6337 |
+
msgid "Available template tags:"
|
6338 |
+
msgstr ""
|
6339 |
+
|
6340 |
+
#: extensions/email-notifications/classes/Notifications.php:2175
|
6341 |
+
msgid "Shorten URLs"
|
6342 |
+
msgstr ""
|
6343 |
+
|
6344 |
+
#: extensions/email-notifications/classes/Notifications.php:2180
|
6345 |
+
msgid "Shorten URLs with Bit.ly"
|
6346 |
+
msgstr ""
|
6347 |
+
|
6348 |
+
#: extensions/email-notifications/classes/Notifications.php:2183
|
6349 |
+
msgid "Bit.ly Access Token"
|
6350 |
+
msgstr ""
|
6351 |
+
|
6352 |
+
#: extensions/email-notifications/classes/Notifications.php:2188
|
6353 |
+
#, php-format
|
6354 |
+
msgid ""
|
6355 |
+
"The URL shortener works for URLs in the {message} variable and will not "
|
6356 |
+
"shorten the URL of the website in the variable {site}. Shorten all URLs in "
|
6357 |
+
"the message using the %s."
|
6358 |
+
msgstr ""
|
6359 |
+
|
6360 |
+
#: extensions/email-notifications/classes/Notifications.php:2188
|
6361 |
+
msgid "Bit.ly URL Shortener API"
|
6362 |
+
msgstr ""
|
6363 |
+
|
6364 |
+
#: extensions/email-notifications/classes/Notifications.php:2228
|
6365 |
+
msgid "Template could not be saved."
|
6366 |
+
msgstr ""
|
6367 |
+
|
6368 |
+
#: extensions/email-notifications/classes/Notifications.php:2230
|
6369 |
+
msgid "Template successfully saved."
|
6370 |
+
msgstr ""
|
6371 |
+
|
6372 |
+
#: extensions/email-notifications/classes/Notifications.php:2348
|
6373 |
+
#: extensions/email-notifications/classes/Notifications.php:2452
|
6374 |
+
msgid "You do not have sufficient permissions to perform this test."
|
6375 |
+
msgstr ""
|
6376 |
+
|
6377 |
+
#: extensions/email-notifications/classes/Notifications.php:2367
|
6378 |
+
msgid "Test email notification from the WP Activity Log plugin."
|
6379 |
+
msgstr ""
|
6380 |
+
|
6381 |
+
#: extensions/email-notifications/classes/Notifications.php:2368
|
6382 |
+
msgid "This is a test email notification sent with the WP Activity Log plugin."
|
6383 |
+
msgstr ""
|
6384 |
+
|
6385 |
+
#: extensions/email-notifications/classes/Notifications.php:2371
|
6386 |
+
msgid "Email address is invalid."
|
6387 |
+
msgstr ""
|
6388 |
+
|
6389 |
+
#: extensions/email-notifications/classes/Notifications.php:2378
|
6390 |
+
msgid "This is a test SMS notification sent with the WP Activity Log plugin."
|
6391 |
+
msgstr ""
|
6392 |
+
|
6393 |
+
#: extensions/email-notifications/classes/Notifications.php:2381
|
6394 |
+
msgid "Phone number is invalid."
|
6395 |
+
msgstr ""
|
6396 |
+
|
6397 |
+
#: extensions/email-notifications/classes/Notifications.php:2387
|
6398 |
+
#: extensions/email-notifications/classes/Notifications.php:2481
|
6399 |
+
msgid "Email sent successfully."
|
6400 |
+
msgstr ""
|
6401 |
+
|
6402 |
+
#: extensions/email-notifications/classes/Notifications.php:2390
|
6403 |
+
#: extensions/email-notifications/classes/Notifications.php:2502
|
6404 |
+
msgid "SMS sent successfully."
|
6405 |
+
msgstr ""
|
6406 |
+
|
6407 |
+
#: extensions/email-notifications/classes/Notifications.php:2393
|
6408 |
+
msgid "Email / SMS sent successfully."
|
6409 |
+
msgstr ""
|
6410 |
+
|
6411 |
+
#: extensions/email-notifications/classes/Notifications.php:2402
|
6412 |
+
#: extensions/email-notifications/classes/Notifications.php:2500
|
6413 |
+
#, php-format
|
6414 |
+
msgid ""
|
6415 |
+
"There was a problem sending the SMS. Below is the error we got back from the "
|
6416 |
+
"SMS provider. Please contact us on %s if you need assistance with this issue."
|
6417 |
+
msgstr ""
|
6418 |
+
|
6419 |
+
#: extensions/email-notifications/classes/Notifications.php:2405
|
6420 |
+
#, php-format
|
6421 |
+
msgid ""
|
6422 |
+
"There are some problems sending the test email / SMS. Please contact us on "
|
6423 |
+
"%s to assist you with this problem."
|
6424 |
+
msgstr ""
|
6425 |
+
|
6426 |
+
#: extensions/email-notifications/classes/Notifications.php:2419
|
6427 |
+
#: extensions/email-notifications/classes/Notifications.php:2512
|
6428 |
+
msgid "Nonce verification failed. Please refresh and try again."
|
6429 |
+
msgstr ""
|
6430 |
+
|
6431 |
+
#: extensions/email-notifications/classes/Notifications.php:2464
|
6432 |
+
msgid "Unknown notification."
|
6433 |
+
msgstr ""
|
6434 |
+
|
6435 |
+
#: extensions/email-notifications/classes/Notifications.php:2484
|
6436 |
+
#, php-format
|
6437 |
+
msgid ""
|
6438 |
+
"There are some problems sending the test email. Please contact us on %s to "
|
6439 |
+
"assist you with this problem."
|
6440 |
+
msgstr ""
|
6441 |
+
|
6442 |
+
#: extensions/email-notifications/classes/Notifications.php:2497
|
6443 |
+
msgid "Mobile number is not set for this notification."
|
6444 |
+
msgstr ""
|
6445 |
+
|
6446 |
+
#: extensions/email-notifications/classes/Notifications.php:2505
|
6447 |
+
#, php-format
|
6448 |
+
msgid ""
|
6449 |
+
"There are some problems sending the test SMS. Please contact us on %s to "
|
6450 |
+
"assist you with this problem."
|
6451 |
+
msgstr ""
|
6452 |
+
|
6453 |
+
#: extensions/email-notifications/classes/Notifications.php:2508
|
6454 |
+
msgid "Unknown notification type."
|
6455 |
+
msgstr ""
|
6456 |
+
|
6457 |
+
#: extensions/email-notifications/classes/Notifier.php:762
|
6458 |
+
#: extensions/reports/classes/Common.php:543
|
6459 |
+
msgid "View the Forum in editor"
|
6460 |
+
msgstr ""
|
6461 |
+
|
6462 |
+
#: extensions/email-notifications/classes/Notifier.php:765
|
6463 |
+
#: extensions/reports/classes/Common.php:546
|
6464 |
+
msgid "View the Topic in editor"
|
6465 |
+
msgstr ""
|
6466 |
+
|
6467 |
+
#: extensions/email-notifications/classes/Notifier.php:947
|
6468 |
+
msgid "Contact us on support@wpsecurityauditlog.com for assistance"
|
6469 |
+
msgstr ""
|
6470 |
+
|
6471 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:118
|
6472 |
+
msgid "SMS Provider"
|
6473 |
+
msgstr ""
|
6474 |
+
|
6475 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:146
|
6476 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:148
|
6477 |
+
#: extensions/external-db/classes/Connections.php:138
|
6478 |
+
msgid "Test"
|
6479 |
+
msgstr ""
|
6480 |
+
|
6481 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:169
|
6482 |
+
msgid ""
|
6483 |
+
"Configure your Twilio account details to be able to configure and send SMS "
|
6484 |
+
"notifications."
|
6485 |
+
msgstr ""
|
6486 |
+
|
6487 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:172
|
6488 |
+
#, php-format
|
6489 |
+
msgid ""
|
6490 |
+
"SMS notifications are available in the Professional and Business Plans. %s "
|
6491 |
+
"to configure and receive SMS notifications."
|
6492 |
+
msgstr ""
|
6493 |
+
|
6494 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:172
|
6495 |
+
msgid "Upgrade now"
|
6496 |
+
msgstr ""
|
6497 |
+
|
6498 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:178
|
6499 |
+
msgid "Account SID"
|
6500 |
+
msgstr ""
|
6501 |
+
|
6502 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:181
|
6503 |
+
msgid "Enter Account SID"
|
6504 |
+
msgstr ""
|
6505 |
+
|
6506 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:185
|
6507 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:200
|
6508 |
+
#, php-format
|
6509 |
+
msgid "To view API credentials visit %s"
|
6510 |
+
msgstr ""
|
6511 |
+
|
6512 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:193
|
6513 |
+
msgid "Auth token"
|
6514 |
+
msgstr ""
|
6515 |
+
|
6516 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:196
|
6517 |
+
msgid "Enter Auth Token"
|
6518 |
+
msgstr ""
|
6519 |
+
|
6520 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:208
|
6521 |
+
msgid "Twilio number / Alphanumeric ID"
|
6522 |
+
msgstr ""
|
6523 |
+
|
6524 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:211
|
6525 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:250
|
6526 |
+
msgid "+16175551212"
|
6527 |
+
msgstr ""
|
6528 |
+
|
6529 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:212
|
6530 |
+
msgid ""
|
6531 |
+
"Specify a Twilio phone number including the country code (e.g. +16175551212) "
|
6532 |
+
"or a valid Alphanumeric ID (e.g. WSAL)"
|
6533 |
+
msgstr ""
|
6534 |
+
|
6535 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:247
|
6536 |
+
msgid "Recipient Number"
|
6537 |
+
msgstr ""
|
6538 |
+
|
6539 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:251
|
6540 |
+
msgid "Country code + 10-digit Twilio phone number (i.e. +16175551212)"
|
6541 |
+
msgstr ""
|
6542 |
+
|
6543 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:257
|
6544 |
+
msgid "Message Body"
|
6545 |
+
msgstr ""
|
6546 |
+
|
6547 |
+
#: extensions/email-notifications/classes/SMSProviderSettings.php:261
|
6548 |
+
msgid "The text of the message you want to send, limited to 1600 characters."
|
6549 |
+
msgstr ""
|
6550 |
+
|
6551 |
+
#: extensions/external-db/classes/Connections.php:18
|
6552 |
+
#: extensions/external-db/classes/Mirroring.php:18
|
6553 |
+
#: extensions/external-db/classes/Settings.php:17
|
6554 |
+
msgid "You are not allowed to view this page."
|
6555 |
+
msgstr ""
|
6556 |
+
|
6557 |
+
#: extensions/external-db/classes/Connections.php:80
|
6558 |
+
#, php-format
|
6559 |
+
msgid ""
|
6560 |
+
"In this section you can %1$s and services connections. These connections can "
|
6561 |
+
"be used as external activity log storage, activity log archive or to mirror "
|
6562 |
+
"the activity log to it. In use connections cannot be deleted."
|
6563 |
+
msgstr ""
|
6564 |
+
|
6565 |
+
#: extensions/external-db/classes/Connections.php:84
|
6566 |
+
msgid "create and configure databases"
|
6567 |
+
msgstr ""
|
6568 |
+
|
6569 |
+
#: extensions/external-db/classes/Connections.php:89
|
6570 |
+
msgid "Create a Connection"
|
6571 |
+
msgstr ""
|
6572 |
+
|
6573 |
+
#: extensions/external-db/classes/Connections.php:91
|
6574 |
+
#: extensions/external-db/classes/Settings.php:104
|
6575 |
+
msgid "Connections"
|
6576 |
+
msgstr ""
|
6577 |
+
|
6578 |
+
#: extensions/external-db/classes/Connections.php:96
|
6579 |
+
#: extensions/external-db/classes/Mirroring.php:124
|
6580 |
+
msgid "Type"
|
6581 |
+
msgstr ""
|
6582 |
+
|
6583 |
+
#: extensions/external-db/classes/Connections.php:97
|
6584 |
+
msgid "Used for"
|
6585 |
+
msgstr ""
|
6586 |
+
|
6587 |
+
#: extensions/external-db/classes/Connections.php:106
|
6588 |
+
msgid "No connections so far."
|
6589 |
+
msgstr ""
|
6590 |
+
|
6591 |
+
#: extensions/external-db/classes/Connections.php:123
|
6592 |
+
#: extensions/external-db/classes/Mirroring.php:198
|
6593 |
+
msgid "Configure"
|
6594 |
+
msgstr ""
|
6595 |
+
|
6596 |
+
#: extensions/external-db/classes/Connections.php:136
|
6597 |
+
msgid "Send a test message"
|
6598 |
+
msgstr ""
|
6599 |
+
|
6600 |
+
#. Plugin Name of the plugin/theme
|
6601 |
+
#: extensions/external-db/classes/Connections.php:173
|
6602 |
+
#: wp-security-audit-log.php:982
|
6603 |
+
msgid "WP Activity Log"
|
6604 |
+
msgstr ""
|
6605 |
+
|
6606 |
+
#: extensions/external-db/classes/Connections.php:175
|
6607 |
+
#: extensions/external-db/classes/Mirroring.php:252
|
6608 |
+
msgid "Step 1"
|
6609 |
+
msgstr ""
|
6610 |
+
|
6611 |
+
#: extensions/external-db/classes/Connections.php:176
|
6612 |
+
#: extensions/external-db/classes/Mirroring.php:253
|
6613 |
+
msgid "Step 2"
|
6614 |
+
msgstr ""
|
6615 |
+
|
6616 |
+
#: extensions/external-db/classes/Connections.php:177
|
6617 |
+
#: extensions/external-db/classes/Mirroring.php:254
|
6618 |
+
msgid "Step 3"
|
6619 |
+
msgstr ""
|
6620 |
+
|
6621 |
+
#: extensions/external-db/classes/Connections.php:184
|
6622 |
+
msgid "Select the type of connection"
|
6623 |
+
msgstr ""
|
6624 |
+
|
6625 |
+
#: extensions/external-db/classes/Connections.php:185
|
6626 |
+
msgid "Select the type of connection you would like to setup."
|
6627 |
+
msgstr ""
|
6628 |
+
|
6629 |
+
#: extensions/external-db/classes/Connections.php:189
|
6630 |
+
msgid "Type of Connection"
|
6631 |
+
msgstr ""
|
6632 |
+
|
6633 |
+
#: extensions/external-db/classes/Connections.php:193
|
6634 |
+
msgid "MySQL Database"
|
6635 |
+
msgstr ""
|
6636 |
+
|
6637 |
+
#: extensions/external-db/classes/Connections.php:194
|
6638 |
+
msgid "Syslog Server"
|
6639 |
+
msgstr ""
|
6640 |
+
|
6641 |
+
#: extensions/external-db/classes/Connections.php:195
|
6642 |
+
#: extensions/external-db/classes/Mirroring.php:102
|
6643 |
+
msgid "Slack"
|
6644 |
+
msgstr ""
|
6645 |
+
|
6646 |
+
#: extensions/external-db/classes/Connections.php:196
|
6647 |
+
#: extensions/external-db/classes/Mirroring.php:107
|
6648 |
+
msgid "Papertrail"
|
6649 |
+
msgstr ""
|
6650 |
+
|
6651 |
+
#: extensions/external-db/classes/Connections.php:208
|
6652 |
+
msgid "Name the connection"
|
6653 |
+
msgstr ""
|
6654 |
+
|
6655 |
+
#: extensions/external-db/classes/Connections.php:209
|
6656 |
+
msgid ""
|
6657 |
+
"Please specify a friendly name for the connection. Connection names can be "
|
6658 |
+
"25 characters long and can only contain letters, numbers and underscores."
|
6659 |
+
msgstr ""
|
6660 |
+
|
6661 |
+
#: extensions/external-db/classes/Connections.php:213
|
6662 |
+
msgid "Save Connection"
|
6663 |
+
msgstr ""
|
6664 |
+
|
6665 |
+
#: extensions/external-db/classes/Connections.php:233
|
6666 |
+
#: extensions/external-db/classes/Connections.php:263
|
6667 |
+
msgid "Configure the connection"
|
6668 |
+
msgstr ""
|
6669 |
+
|
6670 |
+
#: extensions/external-db/classes/Connections.php:234
|
6671 |
+
#: extensions/external-db/classes/Connections.php:264
|
6672 |
+
msgid "Configure the connection details."
|
6673 |
+
msgstr ""
|
6674 |
+
|
6675 |
+
#: extensions/external-db/classes/Connections.php:249
|
6676 |
+
msgid "No connection name specified!"
|
6677 |
+
msgstr ""
|
6678 |
+
|
6679 |
+
#: extensions/external-db/classes/Connections.php:256
|
6680 |
+
msgid "Configure Connection → "
|
6681 |
+
msgstr ""
|
6682 |
+
|
6683 |
+
#: extensions/external-db/classes/Connections.php:296
|
6684 |
+
msgid "Connection Name"
|
6685 |
+
msgstr ""
|
6686 |
+
|
6687 |
+
#: extensions/external-db/classes/Connections.php:300
|
6688 |
+
msgid "* Invalid Connection Name"
|
6689 |
+
msgstr ""
|
6690 |
+
|
6691 |
+
#: extensions/external-db/classes/Connections.php:313
|
6692 |
+
msgid "Database Name"
|
6693 |
+
msgstr ""
|
6694 |
+
|
6695 |
+
#: extensions/external-db/classes/Connections.php:317
|
6696 |
+
msgid ""
|
6697 |
+
"Specify the name of the database where you will store the WordPress activity "
|
6698 |
+
"log."
|
6699 |
+
msgstr ""
|
6700 |
+
|
6701 |
+
#: extensions/external-db/classes/Connections.php:322
|
6702 |
+
msgid "Database User"
|
6703 |
+
msgstr ""
|
6704 |
+
|
6705 |
+
#: extensions/external-db/classes/Connections.php:326
|
6706 |
+
msgid "Specify the username to be used to connect to the database."
|
6707 |
+
msgstr ""
|
6708 |
+
|
6709 |
+
#: extensions/external-db/classes/Connections.php:331
|
6710 |
+
msgid "Database Password"
|
6711 |
+
msgstr ""
|
6712 |
+
|
6713 |
+
#: extensions/external-db/classes/Connections.php:335
|
6714 |
+
msgid ""
|
6715 |
+
"Specify the password each time you want to submit new changes. For security "
|
6716 |
+
"reasons, the plugin does not store the password in this form."
|
6717 |
+
msgstr ""
|
6718 |
+
|
6719 |
+
#: extensions/external-db/classes/Connections.php:340
|
6720 |
+
msgid "Database Hostname"
|
6721 |
+
msgstr ""
|
6722 |
+
|
6723 |
+
#: extensions/external-db/classes/Connections.php:344
|
6724 |
+
msgid "Specify the hostname or IP address of the database server."
|
6725 |
+
msgstr ""
|
6726 |
+
|
6727 |
+
#: extensions/external-db/classes/Connections.php:349
|
6728 |
+
msgid "Database Base Prefix"
|
6729 |
+
msgstr ""
|
6730 |
+
|
6731 |
+
#: extensions/external-db/classes/Connections.php:359
|
6732 |
+
msgid ""
|
6733 |
+
"Specify a prefix for the database tables of the activity log. Ideally this "
|
6734 |
+
"prefix should be different from the one you use for WordPress so it is not "
|
6735 |
+
"guessable."
|
6736 |
+
msgstr ""
|
6737 |
+
|
6738 |
+
#: extensions/external-db/classes/Connections.php:363
|
6739 |
+
msgid "Use website URL as table prefix"
|
6740 |
+
msgstr ""
|
6741 |
+
|
6742 |
+
#: extensions/external-db/classes/Connections.php:369
|
6743 |
+
msgid "SSL"
|
6744 |
+
msgstr ""
|
6745 |
+
|
6746 |
+
#: extensions/external-db/classes/Connections.php:374
|
6747 |
+
#: extensions/external-db/classes/Connections.php:385
|
6748 |
+
msgid "Enable to use SSL to connect with the MySQL server."
|
6749 |
+
msgstr ""
|
6750 |
+
|
6751 |
+
#: extensions/external-db/classes/Connections.php:380
|
6752 |
+
msgid "Client Certificate"
|
6753 |
+
msgstr ""
|
6754 |
+
|
6755 |
+
#: extensions/external-db/classes/Connections.php:389
|
6756 |
+
msgid "CA SSL Certificate (--ssl-ca)"
|
6757 |
+
msgstr ""
|
6758 |
+
|
6759 |
+
#: extensions/external-db/classes/Connections.php:392
|
6760 |
+
msgid "Server SSL Certificate (--ssl-cert)"
|
6761 |
+
msgstr ""
|
6762 |
+
|
6763 |
+
#: extensions/external-db/classes/Connections.php:395
|
6764 |
+
msgid "Client Certificate (--ssl-key)"
|
6765 |
+
msgstr ""
|
6766 |
+
|
6767 |
+
#: extensions/external-db/classes/Connections.php:409
|
6768 |
+
msgid "Destination"
|
6769 |
+
msgstr ""
|
6770 |
+
|
6771 |
+
#: extensions/external-db/classes/Connections.php:413
|
6772 |
+
msgid "* Invalid Papertrail Destination"
|
6773 |
+
msgstr ""
|
6774 |
+
|
6775 |
+
#: extensions/external-db/classes/Connections.php:418
|
6776 |
+
#, php-format
|
6777 |
+
msgid ""
|
6778 |
+
"Specify your destination. You can find your Papertrail Destination in the %s "
|
6779 |
+
"section of your Papertrail account page. It should have the following "
|
6780 |
+
"format: logs4.papertrailapp.com:54321"
|
6781 |
+
msgstr ""
|
6782 |
+
|
6783 |
+
#: extensions/external-db/classes/Connections.php:419
|
6784 |
+
msgid "Log Destinations"
|
6785 |
+
msgstr ""
|
6786 |
+
|
6787 |
+
#: extensions/external-db/classes/Connections.php:427
|
6788 |
+
msgid "Colorization"
|
6789 |
+
msgstr ""
|
6790 |
+
|
6791 |
+
#: extensions/external-db/classes/Connections.php:447
|
6792 |
+
msgid "Syslog Location"
|
6793 |
+
msgstr ""
|
6794 |
+
|
6795 |
+
#: extensions/external-db/classes/Connections.php:453
|
6796 |
+
msgid "Write to local syslog file"
|
6797 |
+
msgstr ""
|
6798 |
+
|
6799 |
+
#: extensions/external-db/classes/Connections.php:458
|
6800 |
+
msgid "Send messages to remote syslog server"
|
6801 |
+
msgstr ""
|
6802 |
+
|
6803 |
+
#: extensions/external-db/classes/Connections.php:462
|
6804 |
+
msgid "IP Address / Hostname"
|
6805 |
+
msgstr ""
|
6806 |
+
|
6807 |
+
#: extensions/external-db/classes/Connections.php:465
|
6808 |
+
msgid "* Invalid IP/Hostname"
|
6809 |
+
msgstr ""
|
6810 |
+
|
6811 |
+
#: extensions/external-db/classes/Connections.php:469
|
6812 |
+
msgid "Port"
|
6813 |
+
msgstr ""
|
6814 |
+
|
6815 |
+
#: extensions/external-db/classes/Connections.php:472
|
6816 |
+
msgid "* Invalid Port"
|
6817 |
+
msgstr ""
|
6818 |
+
|
6819 |
+
#: extensions/external-db/classes/Connections.php:487
|
6820 |
+
msgid "Bot Name"
|
6821 |
+
msgstr ""
|
6822 |
+
|
6823 |
+
#: extensions/external-db/classes/Connections.php:492
|
6824 |
+
msgid "* Invalid Bot Name"
|
6825 |
+
msgstr ""
|
6826 |
+
|
6827 |
+
#: extensions/external-db/classes/Connections.php:493
|
6828 |
+
msgid ""
|
6829 |
+
"The name to be used in the slack channel for all the WordPress activity log "
|
6830 |
+
"events sent from the plugin."
|
6831 |
+
msgstr ""
|
6832 |
+
|
6833 |
+
#: extensions/external-db/classes/Connections.php:498
|
6834 |
+
msgid "WebHook URL"
|
6835 |
+
msgstr ""
|
6836 |
+
|
6837 |
+
#: extensions/external-db/classes/Connections.php:503
|
6838 |
+
msgid "* Invalid WebHook URL"
|
6839 |
+
msgstr ""
|
6840 |
+
|
6841 |
+
#: extensions/external-db/classes/Connections.php:507
|
6842 |
+
#, php-format
|
6843 |
+
msgid ""
|
6844 |
+
"If you are not familiar with incoming WebHooks for Slack please refer to %s."
|
6845 |
+
msgstr ""
|
6846 |
+
|
6847 |
+
#: extensions/external-db/classes/Connections.php:507
|
6848 |
+
msgid "Slack help"
|
6849 |
+
msgstr ""
|
6850 |
+
|
6851 |
+
#: extensions/external-db/classes/Connections.php:554
|
6852 |
+
#: extensions/external-db/classes/Mirroring.php:586
|
6853 |
+
msgid "Connections Wizard"
|
6854 |
+
msgstr ""
|
6855 |
+
|
6856 |
+
#: extensions/external-db/classes/Connections.php:555
|
6857 |
+
#: extensions/external-db/classes/Mirroring.php:588
|
6858 |
+
msgid "Testing..."
|
6859 |
+
msgstr ""
|
6860 |
+
|
6861 |
+
#: extensions/external-db/classes/Connections.php:556
|
6862 |
+
#: extensions/external-db/classes/Mirroring.php:589
|
6863 |
+
#: extensions/search/search-init.php:331
|
6864 |
+
msgid "Deleting..."
|
6865 |
+
msgstr ""
|
6866 |
+
|
6867 |
+
#: extensions/external-db/classes/Connections.php:557
|
6868 |
+
#: extensions/external-db/classes/Mirroring.php:592
|
6869 |
+
msgid "Connection Failed!"
|
6870 |
+
msgstr ""
|
6871 |
+
|
6872 |
+
#: extensions/external-db/classes/Connections.php:558
|
6873 |
+
#: extensions/external-db/classes/Mirroring.php:593
|
6874 |
+
msgid "Connected"
|
6875 |
+
msgstr ""
|
6876 |
+
|
6877 |
+
#: extensions/external-db/classes/Connections.php:559
|
6878 |
+
#: extensions/external-db/classes/Mirroring.php:597
|
6879 |
+
msgid "Are you sure that you want to delete this connection?"
|
6880 |
+
msgstr ""
|
6881 |
+
|
6882 |
+
#: extensions/external-db/classes/Connections.php:564
|
6883 |
+
#: extensions/external-db/classes/Mirroring.php:600
|
6884 |
+
msgid "Test connection and continue"
|
6885 |
+
msgstr ""
|
6886 |
+
|
6887 |
+
#: extensions/external-db/classes/Connections.php:725
|
6888 |
+
msgid "Connection failed. Please check the configuration again."
|
6889 |
+
msgstr ""
|
6890 |
+
|
6891 |
+
#: extensions/external-db/classes/Connections.php:795
|
6892 |
+
#: extensions/external-db/classes/Connections.php:1004
|
6893 |
+
#: extensions/external-db/classes/Settings.php:1099
|
6894 |
+
#: extensions/external-db/classes/Settings.php:1131
|
6895 |
+
msgid "Successfully connected to database."
|
6896 |
+
msgstr ""
|
6897 |
+
|
6898 |
+
#: extensions/external-db/classes/Connections.php:827
|
6899 |
+
msgid "Successfully connected to Papertrail App."
|
6900 |
+
msgstr ""
|
6901 |
+
|
6902 |
+
#: extensions/external-db/classes/Connections.php:834
|
6903 |
+
msgid "socket_sendto was unable to send activity log events."
|
6904 |
+
msgstr ""
|
6905 |
+
|
6906 |
+
#: extensions/external-db/classes/Connections.php:874
|
6907 |
+
#: extensions/external-db/classes/Connections.php:896
|
6908 |
+
msgid "Successfully connected to Syslog."
|
6909 |
+
msgstr ""
|
6910 |
+
|
6911 |
+
#: extensions/external-db/classes/Connections.php:875
|
6912 |
+
msgid "Message sent"
|
6913 |
+
msgstr ""
|
6914 |
+
|
6915 |
+
#: extensions/external-db/classes/Connections.php:903
|
6916 |
+
msgid "Syslog connection testing failed."
|
6917 |
+
msgstr ""
|
6918 |
+
|
6919 |
+
#: extensions/external-db/classes/Connections.php:913
|
6920 |
+
msgid "WP Activity Log connection testing message."
|
6921 |
+
msgstr ""
|
6922 |
+
|
6923 |
+
#: extensions/external-db/classes/Connections.php:930
|
6924 |
+
msgid "Successfully connected to Slack."
|
6925 |
+
msgstr ""
|
6926 |
+
|
6927 |
+
#: extensions/external-db/classes/Connections.php:945
|
6928 |
+
msgid "Unknown connection type."
|
6929 |
+
msgstr ""
|
6930 |
+
|
6931 |
+
#: extensions/external-db/classes/Mirroring.php:97
|
6932 |
+
msgid "external database"
|
6933 |
+
msgstr ""
|
6934 |
+
|
6935 |
+
#: extensions/external-db/classes/Mirroring.php:112
|
6936 |
+
msgid "Syslog"
|
6937 |
+
msgstr ""
|
6938 |
+
|
6939 |
+
#: extensions/external-db/classes/Mirroring.php:116
|
6940 |
+
msgid ""
|
6941 |
+
"In this section you can configure the mirroring of the WordPress to external "
|
6942 |
+
"databases, services and servers. You can configure multiple mirroring rules."
|
6943 |
+
msgstr ""
|
6944 |
+
|
6945 |
+
#: extensions/external-db/classes/Mirroring.php:117
|
6946 |
+
msgid "Setup an Activity Log Mirror"
|
6947 |
+
msgstr ""
|
6948 |
+
|
6949 |
+
#: extensions/external-db/classes/Mirroring.php:119
|
6950 |
+
msgid "The WordPress activity log is currently being mirrored to:"
|
6951 |
+
msgstr ""
|
6952 |
+
|
6953 |
+
#: extensions/external-db/classes/Mirroring.php:125
|
6954 |
+
#: extensions/external-db/classes/Mirroring.php:397
|
6955 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1428
|
6956 |
+
msgid "Frequency"
|
6957 |
+
msgstr ""
|
6958 |
+
|
6959 |
+
#: extensions/external-db/classes/Mirroring.php:135
|
6960 |
+
#: extensions/external-db/classes/Mirroring.php:213
|
6961 |
+
msgid "No mirrors so far."
|
6962 |
+
msgstr ""
|
6963 |
+
|
6964 |
+
#: extensions/external-db/classes/Mirroring.php:164
|
6965 |
+
#: extensions/external-db/classes/Mirroring.php:401
|
6966 |
+
#: extensions/external-db/classes/Settings.php:927
|
6967 |
+
msgid "15 minutes"
|
6968 |
+
msgstr ""
|
6969 |
+
|
6970 |
+
#: extensions/external-db/classes/Mirroring.php:167
|
6971 |
+
#: extensions/external-db/classes/Mirroring.php:402
|
6972 |
+
#: extensions/external-db/classes/Settings.php:930
|
6973 |
+
msgid "1 hour"
|
6974 |
+
msgstr ""
|
6975 |
+
|
6976 |
+
#: extensions/external-db/classes/Mirroring.php:170
|
6977 |
+
#: extensions/external-db/classes/Mirroring.php:403
|
6978 |
+
#: extensions/external-db/classes/Settings.php:933
|
6979 |
+
msgid "6 hours"
|
6980 |
+
msgstr ""
|
6981 |
+
|
6982 |
+
#: extensions/external-db/classes/Mirroring.php:173
|
6983 |
+
#: extensions/external-db/classes/Mirroring.php:404
|
6984 |
+
#: extensions/external-db/classes/Settings.php:936
|
6985 |
+
msgid "12 hours"
|
6986 |
+
msgstr ""
|
6987 |
+
|
6988 |
+
#: extensions/external-db/classes/Mirroring.php:176
|
6989 |
+
#: extensions/external-db/classes/Mirroring.php:405
|
6990 |
+
#: extensions/external-db/classes/Settings.php:939
|
6991 |
+
msgid "24 hours"
|
6992 |
+
msgstr ""
|
6993 |
+
|
6994 |
+
#: extensions/external-db/classes/Mirroring.php:200
|
6995 |
+
msgid "Run Now"
|
6996 |
+
msgstr ""
|
6997 |
+
|
6998 |
+
#: extensions/external-db/classes/Mirroring.php:262
|
6999 |
+
msgid "Select the connection where to mirror to the activity log"
|
7000 |
+
msgstr ""
|
7001 |
+
|
7002 |
+
#: extensions/external-db/classes/Mirroring.php:263
|
7003 |
+
#: extensions/external-db/classes/Mirroring.php:323
|
7004 |
+
msgid ""
|
7005 |
+
"Please specify a friendly name for the mirroring connection. Connection "
|
7006 |
+
"names can be 25 characters long, and can only contain letters, numbers and "
|
7007 |
+
"underscores."
|
7008 |
+
msgstr ""
|
7009 |
+
|
7010 |
+
#: extensions/external-db/classes/Mirroring.php:265
|
7011 |
+
msgid ""
|
7012 |
+
"Select one of the connections you have configured to where you want to "
|
7013 |
+
"mirror the activity log."
|
7014 |
+
msgstr ""
|
7015 |
+
|
7016 |
+
#: extensions/external-db/classes/Mirroring.php:269
|
7017 |
+
msgid "Configure the frequency"
|
7018 |
+
msgstr ""
|
7019 |
+
|
7020 |
+
#: extensions/external-db/classes/Mirroring.php:270
|
7021 |
+
msgid "How often do you want to run the mirroring process?"
|
7022 |
+
msgstr ""
|
7023 |
+
|
7024 |
+
#: extensions/external-db/classes/Mirroring.php:273
|
7025 |
+
msgid "Start once configured?"
|
7026 |
+
msgstr ""
|
7027 |
+
|
7028 |
+
#: extensions/external-db/classes/Mirroring.php:276
|
7029 |
+
msgid ""
|
7030 |
+
"Tick this checkbox to enable the mirror and start sending data once set up."
|
7031 |
+
msgstr ""
|
7032 |
+
|
7033 |
+
#: extensions/external-db/classes/Mirroring.php:280
|
7034 |
+
msgid "Configure Filtering"
|
7035 |
+
msgstr ""
|
7036 |
+
|
7037 |
+
#: extensions/external-db/classes/Mirroring.php:281
|
7038 |
+
msgid ""
|
7039 |
+
"Configure any filtering you’d like to apply to this mirroring connection:"
|
7040 |
+
msgstr ""
|
7041 |
+
|
7042 |
+
#: extensions/external-db/classes/Mirroring.php:285
|
7043 |
+
msgid "Save Mirror"
|
7044 |
+
msgstr ""
|
7045 |
+
|
7046 |
+
#: extensions/external-db/classes/Mirroring.php:304
|
7047 |
+
msgid "No mirror name specified!"
|
7048 |
+
msgstr ""
|
7049 |
+
|
7050 |
+
#: extensions/external-db/classes/Mirroring.php:313
|
7051 |
+
msgid "Configure Mirror → "
|
7052 |
+
msgstr ""
|
7053 |
+
|
7054 |
+
#: extensions/external-db/classes/Mirroring.php:324
|
7055 |
+
msgid "Configure the mirror"
|
7056 |
+
msgstr ""
|
7057 |
+
|
7058 |
+
#: extensions/external-db/classes/Mirroring.php:325
|
7059 |
+
msgid "Configure the mirror details."
|
7060 |
+
msgstr ""
|
7061 |
+
|
7062 |
+
#: extensions/external-db/classes/Mirroring.php:348
|
7063 |
+
msgid "Mirror Name"
|
7064 |
+
msgstr ""
|
7065 |
+
|
7066 |
+
#: extensions/external-db/classes/Mirroring.php:352
|
7067 |
+
msgid "* Invalid Mirror Name"
|
7068 |
+
msgstr ""
|
7069 |
+
|
7070 |
+
#: extensions/external-db/classes/Mirroring.php:362
|
7071 |
+
#: extensions/external-db/classes/Settings.php:503
|
7072 |
+
#: extensions/external-db/classes/Settings.php:684
|
7073 |
+
msgid "Connection"
|
7074 |
+
msgstr ""
|
7075 |
+
|
7076 |
+
#: extensions/external-db/classes/Mirroring.php:373
|
7077 |
+
#: extensions/external-db/classes/Settings.php:1172
|
7078 |
+
msgid "Select a connection"
|
7079 |
+
msgstr ""
|
7080 |
+
|
7081 |
+
#: extensions/external-db/classes/Mirroring.php:431
|
7082 |
+
msgid "Mirror Events"
|
7083 |
+
msgstr ""
|
7084 |
+
|
7085 |
+
#: extensions/external-db/classes/Mirroring.php:447
|
7086 |
+
msgid "Send all events"
|
7087 |
+
msgstr ""
|
7088 |
+
|
7089 |
+
#: extensions/external-db/classes/Mirroring.php:452
|
7090 |
+
msgid "Only send events with these IDs:"
|
7091 |
+
msgstr ""
|
7092 |
+
|
7093 |
+
#: extensions/external-db/classes/Mirroring.php:485
|
7094 |
+
msgid "Send all events BUT those with these IDs:"
|
7095 |
+
msgstr ""
|
7096 |
+
|
7097 |
+
#: extensions/external-db/classes/Mirroring.php:518
|
7098 |
+
#, php-format
|
7099 |
+
msgid "Refer to the %s for more information."
|
7100 |
+
msgstr ""
|
7101 |
+
|
7102 |
+
#: extensions/external-db/classes/Mirroring.php:518
|
7103 |
+
msgid "list of events and events IDs"
|
7104 |
+
msgstr ""
|
7105 |
+
|
7106 |
+
#: extensions/external-db/classes/Mirroring.php:587
|
7107 |
+
msgid "Mirroring Wizard"
|
7108 |
+
msgstr ""
|
7109 |
+
|
7110 |
+
#: extensions/external-db/classes/Mirroring.php:590
|
7111 |
+
msgid "Enabling..."
|
7112 |
+
msgstr ""
|
7113 |
+
|
7114 |
+
#: extensions/external-db/classes/Mirroring.php:591
|
7115 |
+
msgid "Disabling..."
|
7116 |
+
msgstr ""
|
7117 |
+
|
7118 |
+
#: extensions/external-db/classes/Mirroring.php:594
|
7119 |
+
msgid "Running..."
|
7120 |
+
msgstr ""
|
7121 |
+
|
7122 |
+
#: extensions/external-db/classes/Mirroring.php:595
|
7123 |
+
msgid "Mirror Complete!"
|
7124 |
+
msgstr ""
|
7125 |
+
|
7126 |
+
#: extensions/external-db/classes/Mirroring.php:596
|
7127 |
+
msgid "Failed!"
|
7128 |
+
msgstr ""
|
7129 |
+
|
7130 |
+
#: extensions/external-db/classes/Mirroring.php:598
|
7131 |
+
msgid "Are you sure that you want to delete this mirror?"
|
7132 |
+
msgstr ""
|
7133 |
+
|
7134 |
+
#: extensions/external-db/classes/Mirroring.php:599
|
7135 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:991
|
7136 |
+
msgid "Select Event Code(s)"
|
7137 |
+
msgstr ""
|
7138 |
+
|
7139 |
+
#: extensions/external-db/classes/Settings.php:163
|
7140 |
+
msgid "External Databases & Services Configuration"
|
7141 |
+
msgstr ""
|
7142 |
+
|
7143 |
+
#: extensions/external-db/classes/Settings.php:177
|
7144 |
+
msgid "DB/Archive/Mirror"
|
7145 |
+
msgstr ""
|
7146 |
+
|
7147 |
+
#: extensions/external-db/classes/Settings.php:297
|
7148 |
+
msgid "Events successfully sent to database."
|
7149 |
+
msgstr ""
|
7150 |
+
|
7151 |
+
#: extensions/external-db/classes/Settings.php:304
|
7152 |
+
msgid "An error occurred while sending events to database."
|
7153 |
+
msgstr ""
|
7154 |
+
|
7155 |
+
#: extensions/external-db/classes/Settings.php:392
|
7156 |
+
msgid "Mirror connection test failed."
|
7157 |
+
msgstr ""
|
7158 |
+
|
7159 |
+
#: extensions/external-db/classes/Settings.php:443
|
7160 |
+
msgid "Please do not close this window while migrating events."
|
7161 |
+
msgstr ""
|
7162 |
+
|
7163 |
+
#: extensions/external-db/classes/Settings.php:487
|
7164 |
+
#: extensions/external-db/classes/Settings.php:668
|
7165 |
+
#, php-format
|
7166 |
+
msgid "Read more on %1$s."
|
7167 |
+
msgstr ""
|
7168 |
+
|
7169 |
+
#: extensions/external-db/classes/Settings.php:491
|
7170 |
+
msgid "external storage for activity logs"
|
7171 |
+
msgstr ""
|
7172 |
+
|
7173 |
+
#: extensions/external-db/classes/Settings.php:495
|
7174 |
+
msgid ""
|
7175 |
+
"In this section you can configure the plugin to store the WordPress activity "
|
7176 |
+
"log in an external storage rather than the WordPress database. This could be "
|
7177 |
+
"another database on a remote server."
|
7178 |
+
msgstr ""
|
7179 |
+
|
7180 |
+
#: extensions/external-db/classes/Settings.php:501
|
7181 |
+
msgid "Store WordPress Activity Log in this External Storage"
|
7182 |
+
msgstr ""
|
7183 |
+
|
7184 |
+
#: extensions/external-db/classes/Settings.php:510
|
7185 |
+
msgid "Use buffer"
|
7186 |
+
msgstr ""
|
7187 |
+
|
7188 |
+
#: extensions/external-db/classes/Settings.php:519
|
7189 |
+
msgid ""
|
7190 |
+
"Send the events through the buffer so if the connection to the external "
|
7191 |
+
"database is slow the performance of the website is not affected."
|
7192 |
+
msgstr ""
|
7193 |
+
|
7194 |
+
#: extensions/external-db/classes/Settings.php:522
|
7195 |
+
msgid ""
|
7196 |
+
"When the buffer is enabled events are sent to the database every 10 minutes, "
|
7197 |
+
"so the activity log is not updated in real time. Use the button below to "
|
7198 |
+
"clear the buffer and send the events now."
|
7199 |
+
msgstr ""
|
7200 |
+
|
7201 |
+
#: extensions/external-db/classes/Settings.php:525
|
7202 |
+
msgid "Send Events to Database"
|
7203 |
+
msgstr ""
|
7204 |
+
|
7205 |
+
#: extensions/external-db/classes/Settings.php:530
|
7206 |
+
msgid "Current Connection Details"
|
7207 |
+
msgstr ""
|
7208 |
+
|
7209 |
+
#: extensions/external-db/classes/Settings.php:534
|
7210 |
+
msgid "Currently Connected to database"
|
7211 |
+
msgstr ""
|
7212 |
+
|
7213 |
+
#: extensions/external-db/classes/Settings.php:542
|
7214 |
+
msgid "Save & Test Changes"
|
7215 |
+
msgstr ""
|
7216 |
+
|
7217 |
+
#: extensions/external-db/classes/Settings.php:544
|
7218 |
+
#: extensions/external-db/classes/Settings.php:794
|
7219 |
+
msgid "Test Connection"
|
7220 |
+
msgstr ""
|
7221 |
+
|
7222 |
+
#: extensions/external-db/classes/Settings.php:555
|
7223 |
+
msgid "Migrate Events to External Storage"
|
7224 |
+
msgstr ""
|
7225 |
+
|
7226 |
+
#: extensions/external-db/classes/Settings.php:557
|
7227 |
+
msgid ""
|
7228 |
+
"Migrate existing WordPress Security Events from the WordPress database to "
|
7229 |
+
"the new external database."
|
7230 |
+
msgstr ""
|
7231 |
+
|
7232 |
+
#: extensions/external-db/classes/Settings.php:568
|
7233 |
+
msgid "Migrate Events to WordPress Database"
|
7234 |
+
msgstr ""
|
7235 |
+
|
7236 |
+
#: extensions/external-db/classes/Settings.php:570
|
7237 |
+
msgid ""
|
7238 |
+
"Remove the external database and start using the WordPress database again. "
|
7239 |
+
"In the process the events will be automatically migrated to the WordPress "
|
7240 |
+
"database."
|
7241 |
+
msgstr ""
|
7242 |
+
|
7243 |
+
#: extensions/external-db/classes/Settings.php:672
|
7244 |
+
msgid "archiving activity log data"
|
7245 |
+
msgstr ""
|
7246 |
+
|
7247 |
+
#: extensions/external-db/classes/Settings.php:676
|
7248 |
+
msgid ""
|
7249 |
+
"In this section you can configure the archiving of old events to an archive "
|
7250 |
+
"database. Archives events can still be accessed and are included in search "
|
7251 |
+
"results and reports."
|
7252 |
+
msgstr ""
|
7253 |
+
|
7254 |
+
#: extensions/external-db/classes/Settings.php:682
|
7255 |
+
msgid "Archive the WordPress Activity Log to this Database"
|
7256 |
+
msgstr ""
|
7257 |
+
|
7258 |
+
#: extensions/external-db/classes/Settings.php:693
|
7259 |
+
msgid "Archive events that are older than"
|
7260 |
+
msgstr ""
|
7261 |
+
|
7262 |
+
#: extensions/external-db/classes/Settings.php:695
|
7263 |
+
msgid "Archiving Options"
|
7264 |
+
msgstr ""
|
7265 |
+
|
7266 |
+
#: extensions/external-db/classes/Settings.php:709
|
7267 |
+
msgid "Archive events older than"
|
7268 |
+
msgstr ""
|
7269 |
+
|
7270 |
+
#: extensions/external-db/classes/Settings.php:713
|
7271 |
+
msgid "months"
|
7272 |
+
msgstr ""
|
7273 |
+
|
7274 |
+
#: extensions/external-db/classes/Settings.php:716
|
7275 |
+
msgid "years"
|
7276 |
+
msgstr ""
|
7277 |
+
|
7278 |
+
#: extensions/external-db/classes/Settings.php:722
|
7279 |
+
msgid ""
|
7280 |
+
"The configured archiving options will override the Security Events Pruning "
|
7281 |
+
"settings configured in the plugin’s settings."
|
7282 |
+
msgstr ""
|
7283 |
+
|
7284 |
+
#: extensions/external-db/classes/Settings.php:728
|
7285 |
+
msgid "WordPress Activity Log Data Retention"
|
7286 |
+
msgstr ""
|
7287 |
+
|
7288 |
+
#: extensions/external-db/classes/Settings.php:729
|
7289 |
+
msgid ""
|
7290 |
+
"Once you configure archiving these data retention settings will be used "
|
7291 |
+
"instead of the ones configured in the plugin's general settings."
|
7292 |
+
msgstr ""
|
7293 |
+
|
7294 |
+
#: extensions/external-db/classes/Settings.php:732
|
7295 |
+
msgid "Activity Log Retention"
|
7296 |
+
msgstr ""
|
7297 |
+
|
7298 |
+
#: extensions/external-db/classes/Settings.php:738
|
7299 |
+
msgid "None"
|
7300 |
+
msgstr ""
|
7301 |
+
|
7302 |
+
#: extensions/external-db/classes/Settings.php:767
|
7303 |
+
msgid "Next Scheduled Cleanup is in "
|
7304 |
+
msgstr ""
|
7305 |
+
|
7306 |
+
#: extensions/external-db/classes/Settings.php:772
|
7307 |
+
#, php-format
|
7308 |
+
msgid "(or %s)"
|
7309 |
+
msgstr ""
|
7310 |
+
|
7311 |
+
#: extensions/external-db/classes/Settings.php:773
|
7312 |
+
msgid "Run Manually"
|
7313 |
+
msgstr ""
|
7314 |
+
|
7315 |
+
#: extensions/external-db/classes/Settings.php:795
|
7316 |
+
msgid "Execute Archiving Now"
|
7317 |
+
msgstr ""
|
7318 |
+
|
7319 |
+
#: extensions/external-db/classes/Settings.php:798
|
7320 |
+
msgid "Reset Archiving Settings"
|
7321 |
+
msgstr ""
|
7322 |
+
|
7323 |
+
#: extensions/external-db/classes/Settings.php:799
|
7324 |
+
msgid ""
|
7325 |
+
"Click the button below to disable archiving and reset the settings to no "
|
7326 |
+
"archiving. Note that the archived data will not be deleted."
|
7327 |
+
msgstr ""
|
7328 |
+
|
7329 |
+
#: extensions/external-db/classes/Settings.php:800
|
7330 |
+
msgid "Disable Archiving & Reset Settings"
|
7331 |
+
msgstr ""
|
7332 |
+
|
7333 |
+
#: extensions/external-db/classes/Settings.php:916
|
7334 |
+
msgid "Run the Archiving Process Every"
|
7335 |
+
msgstr ""
|
7336 |
+
|
7337 |
+
#: extensions/external-db/classes/Settings.php:945
|
7338 |
+
msgid "Stop Archiving"
|
7339 |
+
msgstr ""
|
7340 |
+
|
7341 |
+
#: extensions/external-db/classes/Settings.php:1046
|
7342 |
+
msgid "Attention!"
|
7343 |
+
msgstr ""
|
7344 |
+
|
7345 |
+
#: extensions/external-db/classes/Settings.php:1050
|
7346 |
+
#, php-format
|
7347 |
+
msgid ""
|
7348 |
+
"The activity log retention setting is configured to delete events older than "
|
7349 |
+
"%1$s. This period should be longer than the configured %2$s archiving period "
|
7350 |
+
"otherwise events will be deleted and not archived."
|
7351 |
+
msgstr ""
|
7352 |
+
|
7353 |
+
#: extensions/external-db/classes/Settings.php:1292
|
7354 |
+
msgid "Resetting..."
|
7355 |
+
msgstr ""
|
7356 |
+
|
7357 |
+
#: extensions/external-db/classes/Settings.php:1293
|
7358 |
+
msgid "Resetting Failed!"
|
7359 |
+
msgstr ""
|
7360 |
+
|
7361 |
+
#: extensions/external-db/classes/Settings.php:1295
|
7362 |
+
#, php-format
|
7363 |
+
msgid " So far %d events have been migrated."
|
7364 |
+
msgstr ""
|
7365 |
+
|
7366 |
+
#: extensions/external-db/classes/Settings.php:1296
|
7367 |
+
msgid "WordPress security events successfully migrated to WordPress database."
|
7368 |
+
msgstr ""
|
7369 |
+
|
7370 |
+
#: extensions/external-db/classes/Settings.php:1297
|
7371 |
+
msgid ""
|
7372 |
+
"WordPress security events successfully migrated to the external database."
|
7373 |
+
msgstr ""
|
7374 |
+
|
7375 |
+
#: extensions/external-db/classes/Settings.php:1298
|
7376 |
+
msgid "No events to migrate."
|
7377 |
+
msgstr ""
|
7378 |
+
|
7379 |
+
#: extensions/external-db/classes/Settings.php:1337
|
7380 |
+
msgid "Mirror not found."
|
7381 |
+
msgstr ""
|
7382 |
+
|
7383 |
+
#: extensions/reports/classes/Common.php:732
|
7384 |
+
#: extensions/reports/classes/Common.php:736
|
7385 |
+
#: extensions/reports/classes/Common.php:740
|
7386 |
+
#: extensions/reports/classes/Common.php:744
|
7387 |
+
#: extensions/reports/classes/Common.php:748
|
7388 |
+
#: extensions/reports/classes/Common.php:752
|
7389 |
+
#: extensions/reports/classes/Common.php:756
|
7390 |
+
#: extensions/reports/classes/Common.php:760
|
7391 |
+
#: extensions/reports/classes/Common.php:764
|
7392 |
+
#: extensions/reports/classes/Common.php:768
|
7393 |
+
#: extensions/reports/classes/Common.php:772
|
7394 |
+
#, php-format
|
7395 |
+
msgid "Internal error. <code>%s</code> key was not found."
|
7396 |
+
msgstr ""
|
7397 |
+
|
7398 |
+
#: extensions/reports/classes/Common.php:796
|
7399 |
+
#: extensions/reports/classes/Common.php:1613
|
7400 |
+
msgid "Please specify at least one Alert Group or specify an Alert Code."
|
7401 |
+
msgstr ""
|
7402 |
+
|
7403 |
+
#: extensions/reports/classes/Common.php:801
|
7404 |
+
msgid "Internal Error: Could not detect the type of the report to generate."
|
7405 |
+
msgstr ""
|
7406 |
+
|
7407 |
+
#: extensions/reports/classes/Common.php:911
|
7408 |
+
#: extensions/reports/classes/Common.php:945
|
7409 |
+
#: extensions/reports/classes/Common.php:990
|
7410 |
+
#: extensions/reports/classes/Common.php:1008
|
7411 |
+
#: extensions/reports/classes/Common.php:1811
|
7412 |
+
msgid ""
|
7413 |
+
"There are no alerts that match your filtering criteria. Please try a "
|
7414 |
+
"different set of rules."
|
7415 |
+
msgstr ""
|
7416 |
+
|
7417 |
+
#: extensions/reports/classes/Common.php:993
|
7418 |
+
#: extensions/reports/classes/Common.php:1011
|
7419 |
+
#: extensions/reports/classes/Common.php:1814
|
7420 |
+
#, php-format
|
7421 |
+
msgid "Error: The <strong>%s</strong> path is not accessible."
|
7422 |
+
msgstr ""
|
7423 |
+
|
7424 |
+
#: extensions/reports/classes/Common.php:1272
|
7425 |
+
#: extensions/reports/classes/Common.php:1711
|
7426 |
+
#, php-format
|
7427 |
+
msgid "%1$s - Website %2$s"
|
7428 |
+
msgstr ""
|
7429 |
+
|
7430 |
+
#: extensions/reports/classes/Common.php:1275
|
7431 |
+
#: extensions/reports/classes/Common.php:1714
|
7432 |
+
#, php-format
|
7433 |
+
msgid "Week number %1$s - Website %2$s"
|
7434 |
+
msgstr ""
|
7435 |
+
|
7436 |
+
#: extensions/reports/classes/Common.php:1278
|
7437 |
+
#: extensions/reports/classes/Common.php:1717
|
7438 |
+
#, php-format
|
7439 |
+
msgid "Month %1$s %2$s- Website %3$s"
|
7440 |
+
msgstr ""
|
7441 |
+
|
7442 |
+
#: extensions/reports/classes/Common.php:1281
|
7443 |
+
#: extensions/reports/classes/Common.php:1720
|
7444 |
+
#, php-format
|
7445 |
+
msgid "Quarter %1$s - Website %2$s"
|
7446 |
+
msgstr ""
|
7447 |
+
|
7448 |
+
#: extensions/reports/classes/Common.php:1293
|
7449 |
+
#: extensions/reports/classes/Common.php:1726
|
7450 |
+
#, php-format
|
7451 |
+
msgid " - %s Email Report"
|
7452 |
+
msgstr ""
|
7453 |
+
|
7454 |
+
#: extensions/reports/classes/Common.php:1585
|
7455 |
+
msgid "Internal Error. Could not retrieve the alerts from the main plugin."
|
7456 |
+
msgstr ""
|
7457 |
+
|
7458 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:108
|
7459 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:355
|
7460 |
+
msgid "WP Activity Log Reporter"
|
7461 |
+
msgstr ""
|
7462 |
+
|
7463 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:140
|
7464 |
+
msgid "Report from"
|
7465 |
+
msgstr ""
|
7466 |
+
|
7467 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:140
|
7468 |
+
msgid "website"
|
7469 |
+
msgstr ""
|
7470 |
+
|
7471 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:150
|
7472 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:364
|
7473 |
+
msgid "Report Details:"
|
7474 |
+
msgstr ""
|
7475 |
+
|
7476 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:151
|
7477 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:365
|
7478 |
+
msgid "Generated on:"
|
7479 |
+
msgstr ""
|
7480 |
+
|
7481 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:152
|
7482 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:366
|
7483 |
+
msgid "Generated by:"
|
7484 |
+
msgstr ""
|
7485 |
+
|
7486 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:158
|
7487 |
+
msgid "Site(s)"
|
7488 |
+
msgstr ""
|
7489 |
+
|
7490 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:159
|
7491 |
+
msgid "User(s)"
|
7492 |
+
msgstr ""
|
7493 |
+
|
7494 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:160
|
7495 |
+
msgid "Role(s)"
|
7496 |
+
msgstr ""
|
7497 |
+
|
7498 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:161
|
7499 |
+
msgid "IP address(es)"
|
7500 |
+
msgstr ""
|
7501 |
+
|
7502 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:162
|
7503 |
+
msgid "Alert Groups"
|
7504 |
+
msgstr ""
|
7505 |
+
|
7506 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:163
|
7507 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:370
|
7508 |
+
msgid "Alert Code(s)"
|
7509 |
+
msgstr ""
|
7510 |
+
|
7511 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:164
|
7512 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:371
|
7513 |
+
msgid "Start date"
|
7514 |
+
msgstr ""
|
7515 |
+
|
7516 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:165
|
7517 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:372
|
7518 |
+
msgid "End date"
|
7519 |
+
msgstr ""
|
7520 |
+
|
7521 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:166
|
7522 |
+
msgid "Post Types"
|
7523 |
+
msgstr ""
|
7524 |
+
|
7525 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:167
|
7526 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:773
|
7527 |
+
#: extensions/search/classes/FilterManager.php:494
|
7528 |
+
#: extensions/search/classes/Filters/poststatusfilter.php:47
|
7529 |
+
#: extensions/search/classes/Filters/poststatusfilter.php:82
|
7530 |
+
msgid "Post Status"
|
7531 |
+
msgstr ""
|
7532 |
+
|
7533 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:176
|
7534 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:341
|
7535 |
+
msgid "From the beginning"
|
7536 |
+
msgstr ""
|
7537 |
+
|
7538 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:221
|
7539 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:367
|
7540 |
+
msgid "Criteria"
|
7541 |
+
msgstr ""
|
7542 |
+
|
7543 |
+
#: extensions/reports/classes/HtmlReportGenerator.php:383
|
7544 |
+
msgid "Results"
|
7545 |
+
msgstr ""
|
7546 |
+
|
7547 |
+
#: extensions/reports/classes/Views/Main.php:72
|
7548 |
+
msgid "Reporting"
|
7549 |
+
msgstr ""
|
7550 |
+
|
7551 |
+
#: extensions/reports/classes/Views/Main.php:86
|
7552 |
+
msgid "Reports"
|
7553 |
+
msgstr ""
|
7554 |
+
|
7555 |
+
#: extensions/reports/classes/Views/Main.php:666
|
7556 |
+
msgid " Generating reports. Please do not close this window"
|
7557 |
+
msgstr ""
|
7558 |
+
|
7559 |
+
#: extensions/reports/classes/Views/Main.php:679
|
7560 |
+
msgid ""
|
7561 |
+
"To generate a report or configure automated scheduled report please contact "
|
7562 |
+
"the administrator of this multisite network on "
|
7563 |
+
msgstr ""
|
7564 |
+
|
7565 |
+
#: extensions/reports/classes/Views/Main.php:697
|
7566 |
+
#, php-format
|
7567 |
+
msgid ""
|
7568 |
+
"The %s directory which the Reports plugin uses to create reports in was "
|
7569 |
+
"either not found or is not accessible."
|
7570 |
+
msgstr ""
|
7571 |
+
|
7572 |
+
#: extensions/reports/classes/Views/Main.php:701
|
7573 |
+
#, php-format
|
7574 |
+
msgid ""
|
7575 |
+
"In order for the plugin to function, the directory %1$s must be created and "
|
7576 |
+
"the plugin should have access to write to this directory, so please "
|
7577 |
+
"configure the following permissions: 0755. If you have any questions or need "
|
7578 |
+
"further assistance please %2$s"
|
7579 |
+
msgstr ""
|
7580 |
+
|
7581 |
+
#: extensions/reports/classes/Views/Main.php:741
|
7582 |
+
#: extensions/user-sessions/classes/Views.php:429
|
7583 |
+
msgid "You do not have sufficient permissions."
|
7584 |
+
msgstr ""
|
7585 |
+
|
7586 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:194
|
7587 |
+
msgid ""
|
7588 |
+
"You do not have sufficient permissions to access this page - rep plugin."
|
7589 |
+
msgstr ""
|
7590 |
+
|
7591 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:198
|
7592 |
+
msgid "Invalid Request. Please refresh the page and try again."
|
7593 |
+
msgstr ""
|
7594 |
+
|
7595 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:211
|
7596 |
+
msgid "Error (TODO - error message): Please select SITES"
|
7597 |
+
msgstr ""
|
7598 |
+
|
7599 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:232
|
7600 |
+
msgid "Error (TODO - error message): Please select USERS"
|
7601 |
+
msgstr ""
|
7602 |
+
|
7603 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:274
|
7604 |
+
msgid "Error: Please select at least one role"
|
7605 |
+
msgstr ""
|
7606 |
+
|
7607 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:321
|
7608 |
+
msgid "Error: Please select at least one IP address"
|
7609 |
+
msgstr ""
|
7610 |
+
|
7611 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:339
|
7612 |
+
msgid "Error: Please select at least one object"
|
7613 |
+
msgstr ""
|
7614 |
+
|
7615 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:356
|
7616 |
+
msgid "Error: Please select at least one event object"
|
7617 |
+
msgstr ""
|
7618 |
+
|
7619 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:441
|
7620 |
+
msgid "Please select the report format."
|
7621 |
+
msgstr ""
|
7622 |
+
|
7623 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:463
|
7624 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:518
|
7625 |
+
msgid " Generating report. Please do not close this window"
|
7626 |
+
msgstr ""
|
7627 |
+
|
7628 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:495
|
7629 |
+
msgid "Periodic Report successfully saved."
|
7630 |
+
msgstr ""
|
7631 |
+
|
7632 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:540
|
7633 |
+
msgid "Periodic Report successfully Deleted."
|
7634 |
+
msgstr ""
|
7635 |
+
|
7636 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:571
|
7637 |
+
msgid "Generate & Configure Periodic Reports"
|
7638 |
+
msgstr ""
|
7639 |
+
|
7640 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:572
|
7641 |
+
msgid "Statistics Reports"
|
7642 |
+
msgstr ""
|
7643 |
+
|
7644 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:592
|
7645 |
+
msgid "Generate a report"
|
7646 |
+
msgstr ""
|
7647 |
+
|
7648 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:595
|
7649 |
+
msgid "Step 1: Select the type of report"
|
7650 |
+
msgstr ""
|
7651 |
+
|
7652 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:601
|
7653 |
+
msgid "By Site(s)"
|
7654 |
+
msgstr ""
|
7655 |
+
|
7656 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:609
|
7657 |
+
msgid "Specify sites"
|
7658 |
+
msgstr ""
|
7659 |
+
|
7660 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:617
|
7661 |
+
msgid "By User(s)"
|
7662 |
+
msgstr ""
|
7663 |
+
|
7664 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:621
|
7665 |
+
msgid "All Users"
|
7666 |
+
msgstr ""
|
7667 |
+
|
7668 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:625
|
7669 |
+
msgid "Specify users"
|
7670 |
+
msgstr ""
|
7671 |
+
|
7672 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:649
|
7673 |
+
msgid ""
|
7674 |
+
"Automated verification of usernames is disabled because you have more than "
|
7675 |
+
"100 users. The process might require a lot of resources to work with a lot "
|
7676 |
+
"of users. Tick the option below to enable it again."
|
7677 |
+
msgstr ""
|
7678 |
+
|
7679 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:654
|
7680 |
+
msgid "Enable Autocomplete"
|
7681 |
+
msgstr ""
|
7682 |
+
|
7683 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:663
|
7684 |
+
msgid "By Role(s)"
|
7685 |
+
msgstr ""
|
7686 |
+
|
7687 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:667
|
7688 |
+
msgid "All Roles"
|
7689 |
+
msgstr ""
|
7690 |
+
|
7691 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:671
|
7692 |
+
msgid "Specify roles"
|
7693 |
+
msgstr ""
|
7694 |
+
|
7695 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:679
|
7696 |
+
msgid "By IP Address(es)"
|
7697 |
+
msgstr ""
|
7698 |
+
|
7699 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:683
|
7700 |
+
msgid "All IP Addresses"
|
7701 |
+
msgstr ""
|
7702 |
+
|
7703 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:687
|
7704 |
+
msgid "Specify IP Addresses"
|
7705 |
+
msgstr ""
|
7706 |
+
|
7707 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:695
|
7708 |
+
msgid "By Object(s)"
|
7709 |
+
msgstr ""
|
7710 |
+
|
7711 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:699
|
7712 |
+
msgid "All Objects"
|
7713 |
+
msgstr ""
|
7714 |
+
|
7715 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:703
|
7716 |
+
msgid "Specify Objects"
|
7717 |
+
msgstr ""
|
7718 |
+
|
7719 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:711
|
7720 |
+
msgid "By Event Type(s)"
|
7721 |
+
msgstr ""
|
7722 |
+
|
7723 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:715
|
7724 |
+
msgid "All Event Types"
|
7725 |
+
msgstr ""
|
7726 |
+
|
7727 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:719
|
7728 |
+
msgid "Specify Event Types"
|
7729 |
+
msgstr ""
|
7730 |
+
|
7731 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:727
|
7732 |
+
msgid "By Event Code(s)"
|
7733 |
+
msgstr ""
|
7734 |
+
|
7735 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:745
|
7736 |
+
msgid "No alerts were found"
|
7737 |
+
msgstr ""
|
7738 |
+
|
7739 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:759
|
7740 |
+
msgid "Posts"
|
7741 |
+
msgstr ""
|
7742 |
+
|
7743 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:765
|
7744 |
+
#: extensions/search/classes/FilterManager.php:498
|
7745 |
+
#: extensions/search/classes/Filters/posttypefilter.php:46
|
7746 |
+
#: extensions/search/classes/Filters/posttypefilter.php:85
|
7747 |
+
msgid "Post Type"
|
7748 |
+
msgstr ""
|
7749 |
+
|
7750 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:787
|
7751 |
+
msgid "Specify Event Codes"
|
7752 |
+
msgstr ""
|
7753 |
+
|
7754 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:795
|
7755 |
+
msgid "By the Below Criteria"
|
7756 |
+
msgstr ""
|
7757 |
+
|
7758 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:800
|
7759 |
+
msgid "Number & List of unique IP addresses per user"
|
7760 |
+
msgstr ""
|
7761 |
+
|
7762 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:805
|
7763 |
+
msgid "Number of Logins per user"
|
7764 |
+
msgstr ""
|
7765 |
+
|
7766 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:839
|
7767 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1698
|
7768 |
+
msgid "Select site(s)"
|
7769 |
+
msgstr ""
|
7770 |
+
|
7771 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:861
|
7772 |
+
msgid "Select user(s)"
|
7773 |
+
msgstr ""
|
7774 |
+
|
7775 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:903
|
7776 |
+
msgid "Select role(s)"
|
7777 |
+
msgstr ""
|
7778 |
+
|
7779 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:925
|
7780 |
+
msgid "Select IP address(es)"
|
7781 |
+
msgstr ""
|
7782 |
+
|
7783 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:947
|
7784 |
+
msgid "Select Objects(s)"
|
7785 |
+
msgstr ""
|
7786 |
+
|
7787 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:969
|
7788 |
+
msgid "Select Type(s)"
|
7789 |
+
msgstr ""
|
7790 |
+
|
7791 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1021
|
7792 |
+
msgid "Select Post Type(s)"
|
7793 |
+
msgstr ""
|
7794 |
+
|
7795 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1051
|
7796 |
+
msgid "Select Post Status(es)"
|
7797 |
+
msgstr ""
|
7798 |
+
|
7799 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1355
|
7800 |
+
msgid "Step 2: Select the date range"
|
7801 |
+
msgstr ""
|
7802 |
+
|
7803 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1357
|
7804 |
+
msgid ""
|
7805 |
+
"Note: Do not specify any dates if you are creating a scheduled report or if "
|
7806 |
+
"you want to generate a report from when you started the audit trail."
|
7807 |
+
msgstr ""
|
7808 |
+
|
7809 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1362
|
7810 |
+
msgid "Start Date"
|
7811 |
+
msgstr ""
|
7812 |
+
|
7813 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1365
|
7814 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1507
|
7815 |
+
msgid "Select start date"
|
7816 |
+
msgstr ""
|
7817 |
+
|
7818 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1371
|
7819 |
+
msgid "End Date"
|
7820 |
+
msgstr ""
|
7821 |
+
|
7822 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1374
|
7823 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1516
|
7824 |
+
msgid "Select end date"
|
7825 |
+
msgstr ""
|
7826 |
+
|
7827 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1388
|
7828 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1600
|
7829 |
+
msgid "Step 3: Select Report Format"
|
7830 |
+
msgstr ""
|
7831 |
+
|
7832 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1395
|
7833 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1606
|
7834 |
+
msgid "HTML"
|
7835 |
+
msgstr ""
|
7836 |
+
|
7837 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1400
|
7838 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1610
|
7839 |
+
msgid "CSV"
|
7840 |
+
msgstr ""
|
7841 |
+
|
7842 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1407
|
7843 |
+
msgid "Step 4: Generate Report Now or Configure Periodic Reports"
|
7844 |
+
msgstr ""
|
7845 |
+
|
7846 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1410
|
7847 |
+
msgid "Generate Report Now"
|
7848 |
+
msgstr ""
|
7849 |
+
|
7850 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1413
|
7851 |
+
msgid ""
|
7852 |
+
" Use the buttons below to use the above criteria for a daily, weekly and "
|
7853 |
+
"monthly summary report which is sent automatically via email."
|
7854 |
+
msgstr ""
|
7855 |
+
|
7856 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1416
|
7857 |
+
msgid "Email address(es)"
|
7858 |
+
msgstr ""
|
7859 |
+
|
7860 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1422
|
7861 |
+
msgid "Report Name"
|
7862 |
+
msgstr ""
|
7863 |
+
|
7864 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1430
|
7865 |
+
msgid "Daily"
|
7866 |
+
msgstr ""
|
7867 |
+
|
7868 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1431
|
7869 |
+
msgid "Weekly"
|
7870 |
+
msgstr ""
|
7871 |
+
|
7872 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1432
|
7873 |
+
msgid "Monthly"
|
7874 |
+
msgstr ""
|
7875 |
+
|
7876 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1433
|
7877 |
+
msgid "Quarterly"
|
7878 |
+
msgstr ""
|
7879 |
+
|
7880 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1446
|
7881 |
+
msgid "Configured Periodic Reports"
|
7882 |
+
msgstr ""
|
7883 |
+
|
7884 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1449
|
7885 |
+
msgid ""
|
7886 |
+
"Below is the list of configured periodic reports. Click on Modify to load "
|
7887 |
+
"the criteria and configure it above. To save the new criteria as a new "
|
7888 |
+
"report change the report name and save it. Do not change the report name to "
|
7889 |
+
"overwrite the existing periodic report."
|
7890 |
+
msgstr ""
|
7891 |
+
|
7892 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1452
|
7893 |
+
msgid ""
|
7894 |
+
"Note: Use the Send Now button to generate a report with data from the last "
|
7895 |
+
"90 days if a quarterly report is configured, 30 days if monthly report is "
|
7896 |
+
"configured and 7 days if weekly report is configured."
|
7897 |
+
msgstr ""
|
7898 |
+
|
7899 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1500
|
7900 |
+
msgid "Step 1: Choose Date Range"
|
7901 |
+
msgstr ""
|
7902 |
+
|
7903 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1504
|
7904 |
+
#: extensions/search/classes/Filters/DateFilter.php:55
|
7905 |
+
msgid "From"
|
7906 |
+
msgstr ""
|
7907 |
+
|
7908 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1513
|
7909 |
+
msgid "To"
|
7910 |
+
msgstr ""
|
7911 |
+
|
7912 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1529
|
7913 |
+
msgid "Step 2: Choose Criteria"
|
7914 |
+
msgstr ""
|
7915 |
+
|
7916 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1532
|
7917 |
+
msgid "Report for"
|
7918 |
+
msgstr ""
|
7919 |
+
|
7920 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1537
|
7921 |
+
msgid "Number of logins for user"
|
7922 |
+
msgstr ""
|
7923 |
+
|
7924 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1542
|
7925 |
+
msgid "Number of logins for users with the role of"
|
7926 |
+
msgstr ""
|
7927 |
+
|
7928 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1547
|
7929 |
+
msgid "Number of views for user"
|
7930 |
+
msgstr ""
|
7931 |
+
|
7932 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1552
|
7933 |
+
msgid "Number of views for users with the role of"
|
7934 |
+
msgstr ""
|
7935 |
+
|
7936 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1557
|
7937 |
+
msgid "Number of published content for user"
|
7938 |
+
msgstr ""
|
7939 |
+
|
7940 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1562
|
7941 |
+
msgid "Number of published content for users with the role of"
|
7942 |
+
msgstr ""
|
7943 |
+
|
7944 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1567
|
7945 |
+
msgid "Different IP addresses for Usernames"
|
7946 |
+
msgstr ""
|
7947 |
+
|
7948 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1572
|
7949 |
+
msgid "List only IP addresses used during login"
|
7950 |
+
msgstr ""
|
7951 |
+
|
7952 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1574
|
7953 |
+
msgid ""
|
7954 |
+
"If the above option is enabled the report will only include the IP addresses "
|
7955 |
+
"from where the user logged in. If it is disabled it will list all the IP "
|
7956 |
+
"addresses from where the plugin recorded activity originating from the user."
|
7957 |
+
msgstr ""
|
7958 |
+
|
7959 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1633
|
7960 |
+
msgid "Please specify at least one site"
|
7961 |
+
msgstr ""
|
7962 |
+
|
7963 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1642
|
7964 |
+
msgid "Please specify at least one user"
|
7965 |
+
msgstr ""
|
7966 |
+
|
7967 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1651
|
7968 |
+
msgid "Please specify at least one role"
|
7969 |
+
msgstr ""
|
7970 |
+
|
7971 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1660
|
7972 |
+
msgid "Please specify at least one IP address"
|
7973 |
+
msgstr ""
|
7974 |
+
|
7975 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1669
|
7976 |
+
msgid "Please specify at least one object"
|
7977 |
+
msgstr ""
|
7978 |
+
|
7979 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1678
|
7980 |
+
msgid "Please specify at least one event type"
|
7981 |
+
msgstr ""
|
7982 |
+
|
7983 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1687
|
7984 |
+
msgid "Please specify at least one Alert group or specify an Alert code"
|
7985 |
+
msgstr ""
|
7986 |
+
|
7987 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1719
|
7988 |
+
msgid "Select user"
|
7989 |
+
msgstr ""
|
7990 |
+
|
7991 |
+
#: extensions/reports/inc/wsal-reporting-view.inc.php:1745
|
7992 |
+
msgid "Select role"
|
7993 |
+
msgstr ""
|
7994 |
+
|
7995 |
+
#: extensions/search/classes/FilterManager.php:210
|
7996 |
+
msgid ""
|
7997 |
+
"Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-"
|
7998 |
+
"activity-log-event-ids/\" target=\"_blank\">list of Event IDs</a> for "
|
7999 |
+
"reference."
|
8000 |
+
msgstr ""
|
8001 |
+
|
8002 |
+
#: extensions/search/classes/FilterManager.php:374
|
8003 |
+
msgid "Do not show this message again"
|
8004 |
+
msgstr ""
|
8005 |
+
|
8006 |
+
#: extensions/search/classes/FilterManager.php:375
|
8007 |
+
msgid "Dismiss this notice."
|
8008 |
+
msgstr ""
|
8009 |
+
|
8010 |
+
#: extensions/search/classes/FilterManager.php:383
|
8011 |
+
#: extensions/search/search-init.php:333
|
8012 |
+
msgid "Load Search & Filters"
|
8013 |
+
msgstr ""
|
8014 |
+
|
8015 |
+
#: extensions/search/classes/FilterManager.php:386
|
8016 |
+
#: extensions/search/search-init.php:335
|
8017 |
+
msgid "Remove"
|
8018 |
+
msgstr ""
|
8019 |
+
|
8020 |
+
#: extensions/search/classes/FilterManager.php:395
|
8021 |
+
msgid "Save Search & Filters"
|
8022 |
+
msgstr ""
|
8023 |
+
|
8024 |
+
#: extensions/search/classes/FilterManager.php:400
|
8025 |
+
msgid "* Invalid Name"
|
8026 |
+
msgstr ""
|
8027 |
+
|
8028 |
+
#: extensions/search/classes/FilterManager.php:402
|
8029 |
+
msgid ""
|
8030 |
+
"Name can only be 12 characters long and only letters, numbers and underscore "
|
8031 |
+
"are allowed."
|
8032 |
+
msgstr ""
|
8033 |
+
|
8034 |
+
#: extensions/search/classes/FilterManager.php:405
|
8035 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:314
|
8036 |
+
#: extensions/user-sessions/classes/View/Settings.php:96
|
8037 |
+
msgid "Save"
|
8038 |
+
msgstr ""
|
8039 |
+
|
8040 |
+
#: extensions/search/classes/FilterManager.php:411
|
8041 |
+
#: extensions/search/search-init.php:337
|
8042 |
+
msgid "Filter View"
|
8043 |
+
msgstr ""
|
8044 |
+
|
8045 |
+
#: extensions/search/classes/FilterManager.php:426
|
8046 |
+
#: extensions/search/classes/FilterManager.php:537
|
8047 |
+
msgid ""
|
8048 |
+
"Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-"
|
8049 |
+
"activity-log-event-ids/\" target=\"_blank\" rel=\"nofollow noopener\">list "
|
8050 |
+
"of Event IDs</a> for reference."
|
8051 |
+
msgstr ""
|
8052 |
+
|
8053 |
+
#: extensions/search/classes/FilterManager.php:438
|
8054 |
+
msgid ""
|
8055 |
+
"Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-"
|
8056 |
+
"activity-log-event-ids/\" target=\"_blank\" rel=\"nofollow noopener"
|
8057 |
+
"\">metadata in the activity log</a> for reference."
|
8058 |
+
msgstr ""
|
8059 |
+
|
8060 |
+
#: extensions/search/classes/FilterManager.php:450
|
8061 |
+
msgid ""
|
8062 |
+
"Refer to the <a href=\"https://wpactivitylog.com/support/kb/severity-levels-"
|
8063 |
+
"wordpress-activity-log/\" target=\"_blank\" rel=\"nofollow noopener"
|
8064 |
+
"\">severity levels in the activity log</a> for reference."
|
8065 |
+
msgstr ""
|
8066 |
+
|
8067 |
+
#: extensions/search/classes/FilterManager.php:463
|
8068 |
+
msgid ""
|
8069 |
+
"Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-"
|
8070 |
+
"audit-trail-alerts/\" target=\"_blank\" rel=\"nofollow noopener\">list of "
|
8071 |
+
"Event IDs</a> for reference."
|
8072 |
+
msgstr ""
|
8073 |
+
|
8074 |
+
#: extensions/search/classes/FilterManager.php:475
|
8075 |
+
msgid "Filter by username"
|
8076 |
+
msgstr ""
|
8077 |
+
|
8078 |
+
#: extensions/search/classes/FilterManager.php:478
|
8079 |
+
#: extensions/user-sessions/classes/View/Sessions.php:350
|
8080 |
+
msgid "First Name"
|
8081 |
+
msgstr ""
|
8082 |
+
|
8083 |
+
#: extensions/search/classes/FilterManager.php:479
|
8084 |
+
msgid "Filter by user first name"
|
8085 |
+
msgstr ""
|
8086 |
+
|
8087 |
+
#: extensions/search/classes/FilterManager.php:482
|
8088 |
+
#: extensions/user-sessions/classes/View/Sessions.php:351
|
8089 |
+
msgid "Last Name"
|
8090 |
+
msgstr ""
|
8091 |
+
|
8092 |
+
#: extensions/search/classes/FilterManager.php:483
|
8093 |
+
msgid "Filter by user last name"
|
8094 |
+
msgstr ""
|
8095 |
+
|
8096 |
+
#: extensions/search/classes/FilterManager.php:487
|
8097 |
+
msgid "Filter by user roles"
|
8098 |
+
msgstr ""
|
8099 |
+
|
8100 |
+
#: extensions/search/classes/FilterManager.php:490
|
8101 |
+
msgid "User Filters"
|
8102 |
+
msgstr ""
|
8103 |
+
|
8104 |
+
#: extensions/search/classes/FilterManager.php:495
|
8105 |
+
msgid "Filter by post status"
|
8106 |
+
msgstr ""
|
8107 |
+
|
8108 |
+
#: extensions/search/classes/FilterManager.php:499
|
8109 |
+
msgid "Filter by post type"
|
8110 |
+
msgstr ""
|
8111 |
+
|
8112 |
+
#: extensions/search/classes/FilterManager.php:502
|
8113 |
+
#: extensions/search/classes/Filters/PostIDFilter.php:29
|
8114 |
+
#: extensions/search/classes/Filters/PostIDFilter.php:57
|
8115 |
+
msgid "Post ID"
|
8116 |
+
msgstr ""
|
8117 |
+
|
8118 |
+
#: extensions/search/classes/FilterManager.php:503
|
8119 |
+
msgid "Filter by post ID"
|
8120 |
+
msgstr ""
|
8121 |
+
|
8122 |
+
#: extensions/search/classes/FilterManager.php:506
|
8123 |
+
#: extensions/search/classes/Filters/PostNameFilter.php:30
|
8124 |
+
#: extensions/search/classes/Filters/PostNameFilter.php:55
|
8125 |
+
msgid "Post Name"
|
8126 |
+
msgstr ""
|
8127 |
+
|
8128 |
+
#: extensions/search/classes/FilterManager.php:507
|
8129 |
+
msgid "Filter by post name"
|
8130 |
+
msgstr ""
|
8131 |
+
|
8132 |
+
#: extensions/search/classes/FilterManager.php:510
|
8133 |
+
msgid "Post Filters"
|
8134 |
+
msgstr ""
|
8135 |
+
|
8136 |
+
#: extensions/search/classes/FilterManager.php:519
|
8137 |
+
msgid "Select Site to view"
|
8138 |
+
msgstr ""
|
8139 |
+
|
8140 |
+
#: extensions/search/classes/FilterManager.php:544
|
8141 |
+
msgid "Select A Specific Site from the Network"
|
8142 |
+
msgstr ""
|
8143 |
+
|
8144 |
+
#: extensions/search/classes/FilterManager.php:567
|
8145 |
+
msgid "Enter an IP address to filter"
|
8146 |
+
msgstr ""
|
8147 |
+
|
8148 |
+
#: extensions/search/classes/Filters/AlertWidget.php:38
|
8149 |
+
msgid "Enter an Event ID to filter - example: 1000"
|
8150 |
+
msgstr ""
|
8151 |
+
|
8152 |
+
#: extensions/search/classes/Filters/AlertWidget.php:40
|
8153 |
+
#: extensions/search/classes/Filters/DateWidget.php:38
|
8154 |
+
#: extensions/search/classes/Filters/IpWidget.php:40
|
8155 |
+
#: extensions/search/classes/Filters/PostNameWidget.php:38
|
8156 |
+
#: extensions/search/classes/Filters/postidwidget.php:37
|
8157 |
+
#: extensions/search/classes/Filters/userfirstnamewidget.php:37
|
8158 |
+
#: extensions/search/classes/Filters/userlastnamewidget.php:37
|
8159 |
+
#: extensions/search/classes/Filters/usernamewidget.php:38
|
8160 |
+
msgid "Add this filter"
|
8161 |
+
msgstr ""
|
8162 |
+
|
8163 |
+
#: extensions/search/classes/Filters/CodeWidget.php:37
|
8164 |
+
msgid "Select a Severity to filter"
|
8165 |
+
msgstr ""
|
8166 |
+
|
8167 |
+
#: extensions/search/classes/Filters/DateFilter.php:56
|
8168 |
+
msgid "Earlier than"
|
8169 |
+
msgstr ""
|
8170 |
+
|
8171 |
+
#: extensions/search/classes/Filters/DateFilter.php:57
|
8172 |
+
msgid "On this day"
|
8173 |
+
msgstr ""
|
8174 |
+
|
8175 |
+
#: extensions/search/classes/Filters/EventTypeWidget.php:30
|
8176 |
+
msgid "Select an Event Type to filter"
|
8177 |
+
msgstr ""
|
8178 |
+
|
8179 |
+
#: extensions/search/classes/Filters/IpWidget.php:38
|
8180 |
+
msgid "192.168.128.255"
|
8181 |
+
msgstr ""
|
8182 |
+
|
8183 |
+
#: extensions/search/classes/Filters/ObjectWidget.php:33
|
8184 |
+
msgid "Select an Object to filter"
|
8185 |
+
msgstr ""
|
8186 |
+
|
8187 |
+
#: extensions/search/classes/Filters/PostNameWidget.php:36
|
8188 |
+
msgid "Enter post name to filter"
|
8189 |
+
msgstr ""
|
8190 |
+
|
8191 |
+
#: extensions/search/classes/Filters/PostStatusWidget.php:36
|
8192 |
+
msgid "Select a post status to filter"
|
8193 |
+
msgstr ""
|
8194 |
+
|
8195 |
+
#: extensions/search/classes/Filters/PostTypeWidget.php:36
|
8196 |
+
msgid "Select a post type to filter"
|
8197 |
+
msgstr ""
|
8198 |
+
|
8199 |
+
#: extensions/search/classes/Filters/SiteFilter.php:57
|
8200 |
+
msgid "Sites"
|
8201 |
+
msgstr ""
|
8202 |
+
|
8203 |
+
#: extensions/search/classes/Filters/SiteWidget.php:33
|
8204 |
+
msgid "Select a Site to filter"
|
8205 |
+
msgstr ""
|
8206 |
+
|
8207 |
+
#: extensions/search/classes/Filters/UserRoleWidget.php:36
|
8208 |
+
msgid "Select a user role to filter"
|
8209 |
+
msgstr ""
|
8210 |
+
|
8211 |
+
#: extensions/search/classes/Filters/postidwidget.php:35
|
8212 |
+
msgid "Enter post ID to filter"
|
8213 |
+
msgstr ""
|
8214 |
+
|
8215 |
+
#: extensions/search/classes/Filters/userfirstnamewidget.php:35
|
8216 |
+
#: extensions/search/classes/Filters/userlastnamewidget.php:35
|
8217 |
+
msgid "Enter users first name to filter"
|
8218 |
+
msgstr ""
|
8219 |
+
|
8220 |
+
#: extensions/search/classes/Filters/usernamewidget.php:36
|
8221 |
+
msgid "Enter a username to filter"
|
8222 |
+
msgstr ""
|
8223 |
+
|
8224 |
+
#: extensions/search/search-init.php:207 extensions/search/search-init.php:323
|
8225 |
+
#: extensions/user-sessions/classes/View/Sessions.php:367
|
8226 |
+
msgid "Search"
|
8227 |
+
msgstr ""
|
8228 |
+
|
8229 |
+
#: extensions/search/search-init.php:324
|
8230 |
+
msgid ""
|
8231 |
+
"- Use the free-text search to search for text in the event's message.<br>- "
|
8232 |
+
"To search for a particular Event ID, user, IP address, Post ID or Type or "
|
8233 |
+
"use date ranges, use the filters."
|
8234 |
+
msgstr ""
|
8235 |
+
|
8236 |
+
#: extensions/search/search-init.php:325
|
8237 |
+
msgid "Clear Search Results"
|
8238 |
+
msgstr ""
|
8239 |
+
|
8240 |
+
#: extensions/search/search-init.php:326
|
8241 |
+
msgid "Nothing found!"
|
8242 |
+
msgstr ""
|
8243 |
+
|
8244 |
+
#: extensions/search/search-init.php:327
|
8245 |
+
msgid "Load"
|
8246 |
+
msgstr ""
|
8247 |
+
|
8248 |
+
#: extensions/search/search-init.php:328
|
8249 |
+
msgid "Loading..."
|
8250 |
+
msgstr ""
|
8251 |
+
|
8252 |
+
#: extensions/search/search-init.php:329
|
8253 |
+
msgid "Load & Run"
|
8254 |
+
msgstr ""
|
8255 |
+
|
8256 |
+
#: extensions/search/search-init.php:334
|
8257 |
+
msgid "* Invalid IP"
|
8258 |
+
msgstr ""
|
8259 |
+
|
8260 |
+
#: extensions/search/search-init.php:336
|
8261 |
+
msgid "Close Filters"
|
8262 |
+
msgstr ""
|
8263 |
+
|
8264 |
+
#: extensions/search/search-init.php:340
|
8265 |
+
#, php-format
|
8266 |
+
msgid ""
|
8267 |
+
"Click the %1$sSearch%2$s button to apply the filters. Click the %1$sClear "
|
8268 |
+
"Search Results%2$s button to reset the search and filters."
|
8269 |
+
msgstr ""
|
8270 |
+
|
8271 |
+
#: extensions/search/search-init.php:386
|
8272 |
+
msgid "Widget could not be found."
|
8273 |
+
msgstr ""
|
8274 |
+
|
8275 |
+
#: extensions/search/search-init.php:453
|
8276 |
+
msgid "Saved searches found."
|
8277 |
+
msgstr ""
|
8278 |
+
|
8279 |
+
#: extensions/search/search-init.php:461 extensions/search/search-init.php:531
|
8280 |
+
msgid "No saved search found."
|
8281 |
+
msgstr ""
|
8282 |
+
|
8283 |
+
#: extensions/search/search-init.php:495
|
8284 |
+
msgid "Search name not specified."
|
8285 |
+
msgstr ""
|
8286 |
+
|
8287 |
+
#: extensions/search/search-init.php:514
|
8288 |
+
msgid "Saved search deleted."
|
8289 |
+
msgstr ""
|
8290 |
+
|
8291 |
+
#: extensions/search/search-init.php:522
|
8292 |
+
msgid "Saved search not found."
|
8293 |
+
msgstr ""
|
8294 |
+
|
8295 |
+
#: extensions/user-sessions/classes/Helpers.php:129
|
8296 |
+
msgid ""
|
8297 |
+
"ERROR: Your session was blocked with the WP Activity Log plugin because "
|
8298 |
+
"there is already another user logged in with the same username. Please "
|
8299 |
+
"contact the site administrator for more information."
|
8300 |
+
msgstr ""
|
8301 |
+
|
8302 |
+
#: extensions/user-sessions/classes/Sensors/UserSessionsTracking.php:283
|
8303 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:234
|
8304 |
+
msgid ""
|
8305 |
+
"ERROR: Your session was blocked with the <a href=\"https://en-gb.wordpress."
|
8306 |
+
"org/plugins/wp-security-audit-log\" target=\"_blank\">WP Activity Log "
|
8307 |
+
"plugin</a> because there is already another user logged in with the same "
|
8308 |
+
"username. Please contact the site administrator for more information."
|
8309 |
+
msgstr ""
|
8310 |
+
|
8311 |
+
#: extensions/user-sessions/classes/View/Options.php:30
|
8312 |
+
msgid "Users Sessions Management"
|
8313 |
+
msgstr ""
|
8314 |
+
|
8315 |
+
#: extensions/user-sessions/classes/View/Options.php:44
|
8316 |
+
msgid "User Session Options"
|
8317 |
+
msgstr ""
|
8318 |
+
|
8319 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:38
|
8320 |
+
msgid "Main Policies"
|
8321 |
+
msgstr ""
|
8322 |
+
|
8323 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:94
|
8324 |
+
#: extensions/user-sessions/classes/View/Settings.php:68
|
8325 |
+
msgid "Settings have been saved"
|
8326 |
+
msgstr ""
|
8327 |
+
|
8328 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:110
|
8329 |
+
msgid "Users sessions policies"
|
8330 |
+
msgstr ""
|
8331 |
+
|
8332 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:112
|
8333 |
+
msgid ""
|
8334 |
+
"Use the settings below to configure the policies to manage the users' "
|
8335 |
+
"sessions policies. These policies are automatically inherited by all "
|
8336 |
+
"profiles. However, you can disable the inheritance or configure different "
|
8337 |
+
"policies for specific roles in the role's tab."
|
8338 |
+
msgstr ""
|
8339 |
+
|
8340 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:117
|
8341 |
+
msgid "Enable session policies"
|
8342 |
+
msgstr ""
|
8343 |
+
|
8344 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:140
|
8345 |
+
msgid "Do not enforce policies on users with this role"
|
8346 |
+
msgstr ""
|
8347 |
+
|
8348 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:158
|
8349 |
+
msgid "Inherit the sessions policies"
|
8350 |
+
msgstr ""
|
8351 |
+
|
8352 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:178
|
8353 |
+
msgid ""
|
8354 |
+
"By default WordPress does not limit how many times the same user can connect "
|
8355 |
+
"simultaneously. So two different users can login at the same time using the "
|
8356 |
+
"same username. Use the settings below to limit and also block simultaneous "
|
8357 |
+
"connections for the same username."
|
8358 |
+
msgstr ""
|
8359 |
+
|
8360 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:180
|
8361 |
+
msgid ""
|
8362 |
+
"Do you want to allow two or more people to login simultaneously with the "
|
8363 |
+
"same username?"
|
8364 |
+
msgstr ""
|
8365 |
+
|
8366 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:182
|
8367 |
+
msgid ""
|
8368 |
+
"By allowing multiple sessions two or more people can login to WordPress "
|
8369 |
+
"using the same username. By blocking them, once a person is logged in with a "
|
8370 |
+
"username, if another person tries to login with the same username they will "
|
8371 |
+
"be blocked."
|
8372 |
+
msgstr ""
|
8373 |
+
|
8374 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:187
|
8375 |
+
msgid "Multiple Sessions"
|
8376 |
+
msgstr ""
|
8377 |
+
|
8378 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:196
|
8379 |
+
msgid "Allow one session only"
|
8380 |
+
msgstr ""
|
8381 |
+
|
8382 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:202
|
8383 |
+
msgid "Allow one session only and override current session"
|
8384 |
+
msgstr ""
|
8385 |
+
|
8386 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:212
|
8387 |
+
#, php-format
|
8388 |
+
msgid "Allow up to %s sessions and block the rest"
|
8389 |
+
msgstr ""
|
8390 |
+
|
8391 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:223
|
8392 |
+
msgid "Configure a Blocked Session Notification for Users"
|
8393 |
+
msgstr ""
|
8394 |
+
|
8395 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:225
|
8396 |
+
msgid ""
|
8397 |
+
"This error message is shown to users when they try to login with a username "
|
8398 |
+
"that already has a session and their session is blocked. You can change this "
|
8399 |
+
"message by editing the text in the below placeholder. Only <a href> HTML "
|
8400 |
+
"code is allowed."
|
8401 |
+
msgstr ""
|
8402 |
+
|
8403 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:230
|
8404 |
+
msgid "Blocked Sessions Error"
|
8405 |
+
msgstr ""
|
8406 |
+
|
8407 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:248
|
8408 |
+
msgid "Do you want to terminate idle sessions automatically?"
|
8409 |
+
msgstr ""
|
8410 |
+
|
8411 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:250
|
8412 |
+
msgid ""
|
8413 |
+
"If a session has been idle for more than the configured number of hours, it "
|
8414 |
+
"will be automatically destroyed by the plugin."
|
8415 |
+
msgstr ""
|
8416 |
+
|
8417 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:255
|
8418 |
+
msgid "Terminate Idle Sessions"
|
8419 |
+
msgstr ""
|
8420 |
+
|
8421 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:272
|
8422 |
+
msgid "1"
|
8423 |
+
msgstr ""
|
8424 |
+
|
8425 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:273
|
8426 |
+
msgid "4"
|
8427 |
+
msgstr ""
|
8428 |
+
|
8429 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:274
|
8430 |
+
msgid "8"
|
8431 |
+
msgstr ""
|
8432 |
+
|
8433 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:275
|
8434 |
+
msgid "12"
|
8435 |
+
msgstr ""
|
8436 |
+
|
8437 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:276
|
8438 |
+
msgid "24"
|
8439 |
+
msgstr ""
|
8440 |
+
|
8441 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:277
|
8442 |
+
msgid "32"
|
8443 |
+
msgstr ""
|
8444 |
+
|
8445 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:278
|
8446 |
+
msgid "48"
|
8447 |
+
msgstr ""
|
8448 |
+
|
8449 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:285
|
8450 |
+
msgid "terminate sessions if they have been idle for more than"
|
8451 |
+
msgstr ""
|
8452 |
+
|
8453 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:289
|
8454 |
+
msgid " seconds (Testing)"
|
8455 |
+
msgstr ""
|
8456 |
+
|
8457 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:296
|
8458 |
+
msgid " hour"
|
8459 |
+
msgstr ""
|
8460 |
+
|
8461 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:296
|
8462 |
+
#: extensions/user-sessions/classes/View/Options/Policies.php:303
|
8463 |
+
msgid " hours"
|
8464 |
+
msgstr ""
|
8465 |
+
|
8466 |
+
#: extensions/user-sessions/classes/View/Sessions.php:42
|
8467 |
+
#: extensions/user-sessions/classes/Views.php:124
|
8468 |
+
msgid "Logged In Users"
|
8469 |
+
msgstr ""
|
8470 |
+
|
8471 |
+
#: extensions/user-sessions/classes/View/Sessions.php:114
|
8472 |
+
#: extensions/user-sessions/classes/Views.php:191
|
8473 |
+
msgid "Retrieve user data"
|
8474 |
+
msgstr ""
|
8475 |
+
|
8476 |
+
#: extensions/user-sessions/classes/View/Sessions.php:146
|
8477 |
+
msgid "No search results were found."
|
8478 |
+
msgstr ""
|
8479 |
+
|
8480 |
+
#: extensions/user-sessions/classes/View/Sessions.php:154
|
8481 |
+
msgid "Showing results for "
|
8482 |
+
msgstr ""
|
8483 |
+
|
8484 |
+
#: extensions/user-sessions/classes/View/Sessions.php:180
|
8485 |
+
msgid "Expires"
|
8486 |
+
msgstr ""
|
8487 |
+
|
8488 |
+
#: extensions/user-sessions/classes/View/Sessions.php:181
|
8489 |
+
msgid "Source IP"
|
8490 |
+
msgstr ""
|
8491 |
+
|
8492 |
+
#: extensions/user-sessions/classes/View/Sessions.php:182
|
8493 |
+
msgid "Last Event"
|
8494 |
+
msgstr ""
|
8495 |
+
|
8496 |
+
#: extensions/user-sessions/classes/View/Sessions.php:183
|
8497 |
+
#: extensions/user-sessions/classes/View/Sessions.php:517
|
8498 |
+
msgid "Actions"
|
8499 |
+
msgstr ""
|
8500 |
+
|
8501 |
+
#: extensions/user-sessions/classes/View/Sessions.php:321
|
8502 |
+
#, php-format
|
8503 |
+
msgid "%s users"
|
8504 |
+
msgstr ""
|
8505 |
+
|
8506 |
+
#: extensions/user-sessions/classes/View/Sessions.php:326
|
8507 |
+
msgid "Go to the first page"
|
8508 |
+
msgstr ""
|
8509 |
+
|
8510 |
+
#: extensions/user-sessions/classes/View/Sessions.php:327
|
8511 |
+
msgid "Go to the previous page"
|
8512 |
+
msgstr ""
|
8513 |
+
|
8514 |
+
#: extensions/user-sessions/classes/View/Sessions.php:329
|
8515 |
+
msgid "of"
|
8516 |
+
msgstr ""
|
8517 |
+
|
8518 |
+
#: extensions/user-sessions/classes/View/Sessions.php:331
|
8519 |
+
msgid "Go to the next page"
|
8520 |
+
msgstr ""
|
8521 |
+
|
8522 |
+
#: extensions/user-sessions/classes/View/Sessions.php:332
|
8523 |
+
msgid "Go to the last page"
|
8524 |
+
msgstr ""
|
8525 |
+
|
8526 |
+
#: extensions/user-sessions/classes/View/Sessions.php:341
|
8527 |
+
msgid "Total number of sessions with Administrator Role: "
|
8528 |
+
msgstr ""
|
8529 |
+
|
8530 |
+
#: extensions/user-sessions/classes/View/Sessions.php:384
|
8531 |
+
msgid "Show:"
|
8532 |
+
msgstr ""
|
8533 |
+
|
8534 |
+
#: extensions/user-sessions/classes/View/Sessions.php:393
|
8535 |
+
msgid "Network-wide Logins"
|
8536 |
+
msgstr ""
|
8537 |
+
|
8538 |
+
#: extensions/user-sessions/classes/View/Sessions.php:430
|
8539 |
+
msgid "No logged in sessions meet your search criteria."
|
8540 |
+
msgstr ""
|
8541 |
+
|
8542 |
+
#: extensions/user-sessions/classes/View/Sessions.php:438
|
8543 |
+
msgid ""
|
8544 |
+
"WP Activity Log keeps its own user session data. This means that the "
|
8545 |
+
"sessions of already logged in users will only show up once they logout and "
|
8546 |
+
"log back in. The same applies to your session."
|
8547 |
+
msgstr ""
|
8548 |
+
|
8549 |
+
#: extensions/user-sessions/classes/View/Sessions.php:491
|
8550 |
+
msgid "Session ID: "
|
8551 |
+
msgstr ""
|
8552 |
+
|
8553 |
+
#: extensions/user-sessions/classes/View/Sessions.php:508
|
8554 |
+
msgid "Click the button above to retrieve the users' last event."
|
8555 |
+
msgstr ""
|
8556 |
+
|
8557 |
+
#: extensions/user-sessions/classes/View/Sessions.php:528
|
8558 |
+
msgid "Show me this user's events"
|
8559 |
+
msgstr ""
|
8560 |
+
|
8561 |
+
#: extensions/user-sessions/classes/View/Sessions.php:544
|
8562 |
+
msgid "Terminate Session"
|
8563 |
+
msgstr ""
|
8564 |
+
|
8565 |
+
#: extensions/user-sessions/classes/View/Sessions.php:721
|
8566 |
+
msgid "User sessions do not exist."
|
8567 |
+
msgstr ""
|
8568 |
+
|
8569 |
+
#: extensions/user-sessions/classes/View/Settings.php:82
|
8570 |
+
msgid "Cleanup expired session data"
|
8571 |
+
msgstr ""
|
8572 |
+
|
8573 |
+
#: extensions/user-sessions/classes/View/Settings.php:90
|
8574 |
+
msgid ""
|
8575 |
+
"The plugin will delete the data about expired users sessions from the "
|
8576 |
+
"WordPress database."
|
8577 |
+
msgstr ""
|
8578 |
+
|
8579 |
+
#: extensions/user-sessions/classes/Views.php:110
|
8580 |
+
msgid "Users Sessions & Management"
|
8581 |
+
msgstr ""
|
8582 |
+
|
8583 |
+
#: extensions/user-sessions/classes/Views.php:185
|
8584 |
+
msgid "Logging out..."
|
8585 |
+
msgstr ""
|
8586 |
+
|
8587 |
+
#: extensions/user-sessions/classes/Views.php:186
|
8588 |
+
msgid "Refreshing..."
|
8589 |
+
msgstr ""
|
8590 |
+
|
8591 |
+
#: extensions/user-sessions/classes/Views.php:187
|
8592 |
+
msgid "This could result in loss of unsaved work. Are you sure?"
|
8593 |
+
msgstr ""
|
8594 |
+
|
8595 |
+
#: extensions/user-sessions/classes/Views.php:189
|
8596 |
+
#, php-format
|
8597 |
+
msgid "out of %s users sessions terminated."
|
8598 |
+
msgstr ""
|
8599 |
+
|
8600 |
+
#: extensions/user-sessions/classes/Views.php:192
|
8601 |
+
msgid "Retrieving data"
|
8602 |
+
msgstr ""
|
8603 |
+
|
8604 |
+
#: extensions/user-sessions/classes/Views.php:193
|
8605 |
+
msgid "Data retrieved"
|
8606 |
+
msgstr ""
|
8607 |
+
|
8608 |
+
#: extensions/user-sessions/classes/Views.php:194
|
8609 |
+
msgid "Event ID: "
|
8610 |
+
msgstr ""
|
8611 |
+
|
8612 |
+
#: extensions/user-sessions/classes/Views.php:195
|
8613 |
+
msgid "Object: "
|
8614 |
+
msgstr ""
|
8615 |
+
|
8616 |
+
#: extensions/user-sessions/classes/Views.php:196
|
8617 |
+
msgid "Event Type: "
|
8618 |
+
msgstr ""
|
8619 |
+
|
8620 |
+
#: extensions/user-sessions/classes/Views.php:257
|
8621 |
+
msgid "Terminate all logged in sessions"
|
8622 |
+
msgstr ""
|
8623 |
+
|
8624 |
+
#: extensions/user-sessions/classes/Views.php:258
|
8625 |
+
msgid ""
|
8626 |
+
"This will terminate all users' sessions including yours, which could result "
|
8627 |
+
"in unsaved work. Do you like to proceed?"
|
8628 |
+
msgstr ""
|
8629 |
+
|
8630 |
+
#: extensions/user-sessions/classes/Views.php:269
|
8631 |
+
msgid "YES"
|
8632 |
+
msgstr ""
|
8633 |
+
|
8634 |
+
#: extensions/user-sessions/classes/Views.php:270
|
8635 |
+
msgid "NO"
|
8636 |
+
msgstr ""
|
8637 |
+
|
8638 |
+
#: extensions/user-sessions/classes/Views.php:282
|
8639 |
+
msgid "Terminate All Sessions"
|
8640 |
+
msgstr ""
|
8641 |
+
|
8642 |
+
#: extensions/user-sessions/classes/Views.php:402
|
8643 |
+
msgid "Users sessions termination is in progress. Please wait..."
|
8644 |
+
msgstr ""
|
8645 |
+
|
8646 |
+
#: extensions/user-sessions/classes/Views.php:455
|
8647 |
+
msgid "No sessions."
|
8648 |
+
msgstr ""
|
8649 |
+
|
8650 |
+
#: extensions/user-sessions/classes/Views.php:487
|
8651 |
+
msgid "Session destroyed."
|
8652 |
+
msgstr ""
|
8653 |
+
|
8654 |
+
#: extensions/user-sessions/classes/Views.php:495
|
8655 |
+
msgid "User session data is not set."
|
8656 |
+
msgstr ""
|
8657 |
+
|
8658 |
+
#: extensions/user-sessions/classes/Views.php:511
|
8659 |
+
#: extensions/user-sessions/classes/Views.php:602
|
8660 |
+
msgid "User do not have sufficient permissions."
|
8661 |
+
msgstr ""
|
8662 |
+
|
8663 |
+
#: extensions/user-sessions/classes/Views.php:550
|
8664 |
+
#: extensions/user-sessions/classes/Views.php:567
|
8665 |
+
msgid "Sessions destroyed!"
|
8666 |
+
msgstr ""
|
8667 |
+
|
8668 |
+
#: extensions/user-sessions/classes/Views.php:574
|
8669 |
+
msgid "Users offset is not set."
|
8670 |
+
msgstr ""
|
8671 |
+
|
8672 |
+
#: extensions/user-sessions/classes/Views.php:612
|
8673 |
+
msgid "Nonce check failed."
|
8674 |
+
msgstr ""
|
8675 |
+
|
8676 |
+
#: wp-security-audit-log.php:930 wp-security-audit-log.php:957
|
8677 |
+
#, php-format
|
8678 |
+
msgid "Hey %1$s"
|
8679 |
+
msgstr ""
|
8680 |
+
|
8681 |
+
#: wp-security-audit-log.php:931
|
8682 |
+
msgid ""
|
8683 |
+
"Never miss an important update! Opt-in to our security and feature updates "
|
8684 |
+
"notifications, and non-sensitive diagnostic tracking with freemius.com."
|
8685 |
+
msgstr ""
|
8686 |
+
|
8687 |
+
#: wp-security-audit-log.php:932 wp-security-audit-log.php:960
|
8688 |
+
msgid "Note: "
|
8689 |
+
msgstr ""
|
8690 |
+
|
8691 |
+
#: wp-security-audit-log.php:933 wp-security-audit-log.php:961
|
8692 |
+
msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
|
8693 |
+
msgstr ""
|
8694 |
+
|
8695 |
+
#: wp-security-audit-log.php:959
|
8696 |
+
#, php-format
|
8697 |
+
msgid ""
|
8698 |
+
"Please help us improve %2$s! If you opt-in, some non-sensitive data about "
|
8699 |
+
"your usage of %2$s will be sent to %5$s, a diagnostic tracking service we "
|
8700 |
+
"use. If you skip this, that's okay! %2$s will still work just fine."
|
8701 |
+
msgstr ""
|
8702 |
+
|
8703 |
+
#: wp-security-audit-log.php:981
|
8704 |
+
#, php-format
|
8705 |
+
msgid ""
|
8706 |
+
"Get a free 7-day trial of the premium edition of %s. No credit card "
|
8707 |
+
"required, no commitments!"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
+
#: wp-security-audit-log.php:986
|
8711 |
msgid "Start free trial"
|
8712 |
msgstr ""
|
8713 |
|
8714 |
+
#: wp-security-audit-log.php:1054
|
8715 |
#, php-format
|
8716 |
msgid ""
|
8717 |
"You need to activate the licence key to use WP Activity Log Premium. %2$s"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
+
#: wp-security-audit-log.php:1055
|
8721 |
msgid "Activate the licence key now"
|
8722 |
msgstr ""
|
8723 |
|
8724 |
+
#: wp-security-audit-log.php:1072
|
8725 |
#, php-format
|
8726 |
msgid ""
|
8727 |
"The license is limited to %s sub-sites. You need to upgrade your license to "
|
8728 |
"cover all the sub-sites on this network."
|
8729 |
msgstr ""
|
8730 |
|
8731 |
+
#: wp-security-audit-log.php:1182
|
8732 |
msgid ""
|
8733 |
"Error: You do not have sufficient permissions to disable this custom field."
|
8734 |
msgstr ""
|
8735 |
|
8736 |
+
#: wp-security-audit-log.php:1215
|
8737 |
#, php-format
|
8738 |
msgid ""
|
8739 |
"Custom Field %1$s is no longer being monitored.<br />Enable the monitoring "
|
8740 |
"of this custom field again from the"
|
8741 |
msgstr ""
|
8742 |
|
8743 |
+
#: wp-security-audit-log.php:1215
|
8744 |
msgid "Excluded Objects"
|
8745 |
msgstr ""
|
8746 |
|
8747 |
+
#: wp-security-audit-log.php:1215
|
8748 |
msgid " tab in the plugin settings"
|
8749 |
msgstr ""
|
8750 |
|
8751 |
+
#: wp-security-audit-log.php:1227
|
8752 |
msgid "Error: You do not have sufficient permissions to disable this alert."
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: wp-security-audit-log.php:1251
|
8756 |
#, php-format
|
8757 |
msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
+
#: wp-security-audit-log.php:1251
|
8761 |
msgid ""
|
8762 |
"You can enable this alert again from the Enable/Disable Alerts node in the "
|
8763 |
"plugin menu."
|
8764 |
msgstr ""
|
8765 |
|
8766 |
+
#: wp-security-audit-log.php:1360
|
8767 |
#, php-format
|
8768 |
msgid ""
|
8769 |
"You are using a version of PHP that is older than %s, which is no longer "
|
8770 |
"supported."
|
8771 |
msgstr ""
|
8772 |
|
8773 |
+
#: wp-security-audit-log.php:1362
|
8774 |
msgid ""
|
8775 |
"Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
|
8776 |
"\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
|
8777 |
"are using."
|
8778 |
msgstr ""
|
8779 |
|
8780 |
+
#: wp-security-audit-log.php:1364
|
8781 |
msgid ""
|
8782 |
"The WP Activity Log plugin is a multisite network tool, so it has to be "
|
8783 |
"activated at network level."
|
8784 |
msgstr ""
|
8785 |
|
8786 |
+
#: wp-security-audit-log.php:1366
|
8787 |
msgid "Redirect me to the network dashboard"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
+
#: wp-security-audit-log.php:1371
|
8791 |
#, php-format
|
8792 |
msgid "Please install the %s plugin on the MainWP dashboard."
|
8793 |
msgstr ""
|
8794 |
|
8795 |
+
#: wp-security-audit-log.php:1371
|
8796 |
msgid "Activity Log for MainWP"
|
8797 |
msgstr ""
|
8798 |
|
8799 |
+
#: wp-security-audit-log.php:1373
|
8800 |
#, php-format
|
8801 |
msgid ""
|
8802 |
"The WP Activity Log should be installed on the child sites only. Refer to "
|
8803 |
"the %s for more information."
|
8804 |
msgstr ""
|
8805 |
|
8806 |
+
#: wp-security-audit-log.php:1373
|
8807 |
msgid "getting started guide"
|
8808 |
msgstr ""
|
8809 |
|
8810 |
+
#: wp-security-audit-log.php:1470
|
8811 |
msgid ""
|
8812 |
"This plugin uses 3 tables in the WordPress database to store the activity "
|
8813 |
"log and settings. It seems that these tables were not created."
|
8814 |
msgstr ""
|
8815 |
|
8816 |
+
#: wp-security-audit-log.php:1472
|
8817 |
msgid ""
|
8818 |
"This could happen because the database user does not have the right "
|
8819 |
"privileges to create the tables in the database. We recommend you to update "
|
8820 |
"the privileges and try enabling the plugin again."
|
8821 |
msgstr ""
|
8822 |
|
8823 |
+
#: wp-security-audit-log.php:1474
|
8824 |
#, php-format
|
8825 |
msgid ""
|
8826 |
"If after doing so you still have issues, please send us an email on %s for "
|
8827 |
"assistance."
|
8828 |
msgstr ""
|
8829 |
|
8830 |
+
#: wp-security-audit-log.php:1474
|
8831 |
msgid "support@wpsecurityauditlog.com"
|
8832 |
msgstr ""
|
8833 |
|
8834 |
+
#: wp-security-audit-log.php:2291
|
8835 |
msgid ""
|
8836 |
"For security and auditing purposes, a record of all of your logged-in "
|
8837 |
"actions and changes within the WordPress dashboard will be recorded in an "
|
8840 |
"where you accessed this site from."
|
8841 |
msgstr ""
|
8842 |
|
8843 |
+
#: wp-security-audit-log.php:2310
|
8844 |
msgid "Every 6 hours"
|
8845 |
msgstr ""
|
8846 |
|
8847 |
+
#: wp-security-audit-log.php:2314
|
8848 |
msgid "Every 45 minutes"
|
8849 |
msgstr ""
|
8850 |
|
8851 |
+
#: wp-security-audit-log.php:2318
|
8852 |
msgid "Every 30 minutes"
|
8853 |
msgstr ""
|
8854 |
|
8855 |
+
#: wp-security-audit-log.php:2322
|
8856 |
msgid "Every 15 minutes"
|
8857 |
msgstr ""
|
8858 |
|
8859 |
+
#: wp-security-audit-log.php:2326
|
8860 |
msgid "Every 10 minutes"
|
8861 |
msgstr ""
|
8862 |
|
8863 |
+
#: wp-security-audit-log.php:2330
|
8864 |
msgid "Every 1 minute"
|
8865 |
msgstr ""
|
8866 |
|
8867 |
+
#: wp-security-audit-log.php:2344
|
|
|
8868 |
#, php-format
|
8869 |
msgid "Method %1$s is deprecated since version %2$s!"
|
8870 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl.html
|
|
6 |
Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, 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.5
|
9 |
-
Stable tag: 4.1.3.
|
10 |
Requires PHP: 5.5
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
@@ -205,12 +205,23 @@ Please refer to our [support pages](https://wpactivitylog.com/support/?utm_sourc
|
|
205 |
|
206 |
== Changelog ==
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
= 4.1.3 (2020-08-11) =
|
209 |
|
210 |
Release notes: [WP Activity Log 4.1.3: New extension for WooCommerce & other updates](https://wpactivitylog.com/wsal-4-1-3/)
|
211 |
|
212 |
* **IMPORTANT**
|
213 |
-
* Only update from 4.1.2 to 4.1.3. If you are using an older version, first update to 4.1.2 before updating to 4.1.3.
|
214 |
|
215 |
* **New features**
|
216 |
* The all new [WP Activity Log for WooCommerce](https://wordpress.org/plugins/wp-activity-log-for-woocommerce/) extension (needed to keep a log of changes on WooCommerce store, products, orders & much more).
|
@@ -224,8 +235,8 @@ Release notes: [WP Activity Log 4.1.3: New extension for WooCommerce & other upd
|
|
224 |
* ID 9102: Deleted a product tag in WooCommerce.
|
225 |
* ID 9103: Renamed a product tag in WooCommerce.
|
226 |
* ID 9104: Changed the slug of a product tag in WooCommerce.
|
227 |
-
|
228 |
-
Refer to the [complete list of activity log event IDs](https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/) for more detailed information.
|
229 |
|
230 |
* **Improvements**
|
231 |
* Improved the plugin's coverage of WooCommerce stores, products, orders etc by adding new events, and updating the current sensor.
|
@@ -236,7 +247,7 @@ Refer to the [complete list of activity log event IDs](https://wpactivitylog.com
|
|
236 |
* Plugin keeps the ID of the sites a user is logged in to on a multisite network.
|
237 |
* Removed the Import/Export plugin settings functionality (a much better utility will be designed and launched as a replacement).
|
238 |
* File changes detected by the Website File Changes Monitor plugin are now reported in the daily summary email.
|
239 |
-
* Log files working directory in uploads directory renamed to wp-activity-log.
|
240 |
* If no path is specified for the log files working directory, the default path is used.
|
241 |
* Improved activity log privileges - on multisite super admin can restrict site admins from seeing their own site's activity logs.
|
242 |
* WooCommerce front end sensor is automatically enabled if admin enables events to track purchases of non-logged in users.
|
@@ -270,5 +281,5 @@ Refer to the [complete list of activity log event IDs](https://wpactivitylog.com
|
|
270 |
* Event ID 2080 not reported when the last item was removed from the site menu.
|
271 |
* Plugin logo missing from license activation screen.
|
272 |
* [Website File Changes Monitor](https://www.wpwhitesecurity.com/wordpress-plugins/website-file-changes-monitor/) custom posts type changes were reported (these are ignored by default).
|
273 |
-
|
274 |
Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
|
6 |
Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, 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.5
|
9 |
+
Stable tag: 4.1.3.2
|
10 |
Requires PHP: 5.5
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
205 |
|
206 |
== Changelog ==
|
207 |
|
208 |
+
= 4.1.3.2 (2020-08-14) =
|
209 |
+
|
210 |
+
* **Improvement**
|
211 |
+
* Released extension [WP Activity Log for WooCommerce](https://wordpress.org/plugins/wp-activity-log-for-woocommerce/) update 1.1 (improved logging etc).
|
212 |
+
|
213 |
+
* **Bug fixes**
|
214 |
+
* The orders details in WooCommerce were not being added to the order ([Support ticket](https://wordpress.org/support/topic/update-4-1-31-broken-woocommerce-urgent/)).
|
215 |
+
* An empty space was added to the top of the WordPress admin menu.
|
216 |
+
* Third party plugins extensions notification not showing in the activity log viewer.
|
217 |
+
* Thurd party plugins extension help text was shown on the wrong pages.
|
218 |
+
|
219 |
= 4.1.3 (2020-08-11) =
|
220 |
|
221 |
Release notes: [WP Activity Log 4.1.3: New extension for WooCommerce & other updates](https://wpactivitylog.com/wsal-4-1-3/)
|
222 |
|
223 |
* **IMPORTANT**
|
224 |
+
* Only update from 4.1.2 to 4.1.3. If you are using an older version, first update to 4.1.2 before updating to 4.1.3.
|
225 |
|
226 |
* **New features**
|
227 |
* The all new [WP Activity Log for WooCommerce](https://wordpress.org/plugins/wp-activity-log-for-woocommerce/) extension (needed to keep a log of changes on WooCommerce store, products, orders & much more).
|
235 |
* ID 9102: Deleted a product tag in WooCommerce.
|
236 |
* ID 9103: Renamed a product tag in WooCommerce.
|
237 |
* ID 9104: Changed the slug of a product tag in WooCommerce.
|
238 |
+
|
239 |
+
Refer to the [complete list of activity log event IDs](https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/) for more detailed information.
|
240 |
|
241 |
* **Improvements**
|
242 |
* Improved the plugin's coverage of WooCommerce stores, products, orders etc by adding new events, and updating the current sensor.
|
247 |
* Plugin keeps the ID of the sites a user is logged in to on a multisite network.
|
248 |
* Removed the Import/Export plugin settings functionality (a much better utility will be designed and launched as a replacement).
|
249 |
* File changes detected by the Website File Changes Monitor plugin are now reported in the daily summary email.
|
250 |
+
* Log files working directory in uploads directory renamed to wp-activity-log.
|
251 |
* If no path is specified for the log files working directory, the default path is used.
|
252 |
* Improved activity log privileges - on multisite super admin can restrict site admins from seeing their own site's activity logs.
|
253 |
* WooCommerce front end sensor is automatically enabled if admin enables events to track purchases of non-logged in users.
|
281 |
* Event ID 2080 not reported when the last item was removed from the site menu.
|
282 |
* Plugin logo missing from license activation screen.
|
283 |
* [Website File Changes Monitor](https://www.wpwhitesecurity.com/wordpress-plugins/website-file-changes-monitor/) custom posts type changes were reported (these are ignored by default).
|
284 |
+
|
285 |
Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://wpactivitylog.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 Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
-
* Version: 4.1.3.
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: http://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
@@ -46,7 +46,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
46 |
*
|
47 |
* @var string
|
48 |
*/
|
49 |
-
public $version = '4.1.3.
|
50 |
|
51 |
/**
|
52 |
* Plugin constants.
|
@@ -581,7 +581,12 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
581 |
* @return boolean
|
582 |
*/
|
583 |
public static function is_woocommerce_active() {
|
584 |
-
|
|
|
|
|
|
|
|
|
|
|
585 |
}
|
586 |
|
587 |
/**
|
@@ -2430,17 +2435,19 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
2430 |
require_once ABSPATH . 'wp-admin/includes/file.php';
|
2431 |
}
|
2432 |
|
|
|
2433 |
$extension_folders = list_files( $base_path . 'extensions', 1 );
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
|
2443 |
-
|
|
|
2444 |
}
|
2445 |
}
|
2446 |
}
|
4 |
* Plugin URI: http://wpactivitylog.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 Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
+
* Version: 4.1.3.2
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: http://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
46 |
*
|
47 |
* @var string
|
48 |
*/
|
49 |
+
public $version = '4.1.3.2';
|
50 |
|
51 |
/**
|
52 |
* Plugin constants.
|
581 |
* @return boolean
|
582 |
*/
|
583 |
public static function is_woocommerce_active() {
|
584 |
+
// Check for WC extensional also, as the sensor should not be loaded without it.
|
585 |
+
if ( function_exists( 'wsal_woocommerce_extension_init_actions' ) && self::is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
|
586 |
+
return true;
|
587 |
+
} else {
|
588 |
+
return false;
|
589 |
+
}
|
590 |
}
|
591 |
|
592 |
/**
|
2435 |
require_once ABSPATH . 'wp-admin/includes/file.php';
|
2436 |
}
|
2437 |
|
2438 |
+
if ( file_exists( $base_path . 'extensions' ) ) {
|
2439 |
$extension_folders = list_files( $base_path . 'extensions', 1 );
|
2440 |
+
foreach ( $extension_folders as $extension_folder ) {
|
2441 |
+
if ( ! is_dir( $extension_folder ) ) {
|
2442 |
+
continue;
|
2443 |
+
}
|
2444 |
|
2445 |
+
$path_to_file = $extension_folder . $partial_path_to_file;
|
2446 |
+
if ( file_exists( $path_to_file ) ) {
|
2447 |
+
require_once $path_to_file;
|
2448 |
|
2449 |
+
return true;
|
2450 |
+
}
|
2451 |
}
|
2452 |
}
|
2453 |
}
|