Version Description
(2019-02-06) =
-
New Features
- New infinite scroll view in audit log viewer making the browsing of the activity logs much faster.
-
Plugin Improvements
- Improved the search filters - now they are much faster.
- Improved user session handling to better handle >1,000 sessions.
- Replaced PHP severity with event log severity in the list of Events.
-
Bug Fixes
- Scan Now button for the WordPress file integrity scanner is grayed out when auto scanning is disabled.
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 3.3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.3.1.1
- classes/AuditLogListView.php +193 -142
- classes/Sensors/Database.php +68 -48
- classes/Sensors/PluginsThemes.php +1 -1
- classes/Sensors/WooCommerce.php +25 -6
- classes/Sensors/YoastSEO.php +44 -40
- classes/Settings.php +40 -0
- classes/Views/AuditLog.php +108 -20
- classes/Views/Settings.php +44 -14
- classes/Views/ToggleAlerts.php +14 -1
- classes/WidgetManager.php +7 -15
- css/auditlog.css +61 -1
- defaults.php +1 -1
- js/auditlog.js +51 -0
- js/settings.js +5 -4
- languages/wp-security-audit-log.pot +1844 -3906
- readme.txt +11 -74
- sdk/freemius/assets/scss/admin/plugin-upgrade-notice.scss +0 -8
- sdk/wsal-freemius.php +1 -0
- wp-security-audit-log.php +3 -3
classes/AuditLogListView.php
CHANGED
@@ -27,7 +27,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
27 |
/**
|
28 |
* Instance of WpSecurityAuditLog.
|
29 |
*
|
30 |
-
* @var
|
31 |
*/
|
32 |
protected $_plugin;
|
33 |
|
@@ -51,6 +51,8 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
51 |
/**
|
52 |
* Selected Columns.
|
53 |
*
|
|
|
|
|
54 |
* @var array()
|
55 |
*/
|
56 |
private $selected_columns = '';
|
@@ -58,19 +60,31 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
58 |
/**
|
59 |
* Display Name Type.
|
60 |
*
|
|
|
|
|
61 |
* @var string
|
62 |
*/
|
63 |
private $name_type = '';
|
64 |
|
65 |
/**
|
66 |
-
*
|
67 |
*
|
68 |
-
* @
|
|
|
|
|
69 |
*/
|
70 |
-
|
71 |
-
$this->_plugin = $plugin;
|
72 |
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
/**
|
76 |
* Transform timezone values.
|
@@ -145,73 +159,86 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
145 |
*/
|
146 |
public function extra_tablenav( $which ) {
|
147 |
// If the position is not top then render.
|
148 |
-
if ( 'top' !== $which ) :
|
149 |
// Items-per-page widget.
|
150 |
$p = $this->_plugin->settings->GetViewPerPage();
|
151 |
$items = array( 5, 10, 15, 30, 50 );
|
152 |
-
if ( ! in_array( $p, $items ) ) {
|
153 |
$items[] = $p;
|
154 |
}
|
155 |
?>
|
156 |
<div class="wsal-ipp wsal-ipp-<?php echo esc_attr( $which ); ?>">
|
157 |
<?php esc_html_e( 'Show ', 'wp-security-audit-log' ); ?>
|
158 |
<select class="wsal-ipps" onfocus="WsalIppsFocus(value);" onchange="WsalIppsChange(value);">
|
159 |
-
<?php foreach ( $items as $item )
|
160 |
-
<option
|
161 |
-
value="<?php echo is_string( $item ) ? '' : esc_attr( $item ); ?>"
|
162 |
-
<?php echo ( $item == $p ) ? 'selected="selected"' : false; ?>>
|
163 |
<?php echo esc_html( $item ); ?>
|
164 |
</option>
|
165 |
-
<?php
|
166 |
</select>
|
167 |
<?php esc_html_e( ' Items', 'wp-security-audit-log' ); ?>
|
168 |
</div>
|
169 |
<?php
|
170 |
endif;
|
171 |
|
172 |
-
|
173 |
-
if ( $this->is_multisite() && $this->is_main_blog() ) {
|
174 |
-
$curr = $this->get_view_site_id();
|
175 |
?>
|
176 |
-
<div
|
177 |
-
<?php if ( $this->get_site_count() > 15 ) { ?>
|
178 |
-
<?php $curr = $curr ? get_blog_details( $curr ) : null; ?>
|
179 |
-
<?php $curr = $curr ? ( $curr->blogname . ' (' . $curr->domain . ')' ) : 'All Sites'; ?>
|
180 |
-
<input type="text" class="wsal-ssas" value="<?php echo esc_attr( $curr ); ?>"/>
|
181 |
-
<?php } else { ?>
|
182 |
-
<select class="wsal-ssas" onchange="WsalSsasChange(value);">
|
183 |
-
<option value="0"><?php esc_html_e( 'All Sites', 'wp-security-audit-log' ); ?></option>
|
184 |
-
<?php foreach ( $this->get_sites() as $info ) { ?>
|
185 |
-
<option value="<?php echo esc_attr( $info->blog_id ); ?>"
|
186 |
-
<?php echo ( $info->blog_id == $curr ) ? 'selected="selected"' : false; ?>>
|
187 |
-
<?php echo esc_html( $info->blogname ) . ' (' . esc_html( $info->domain ) . ')'; ?>
|
188 |
-
</option>
|
189 |
-
<?php } ?>
|
190 |
-
</select>
|
191 |
-
<?php } ?>
|
192 |
-
</div>
|
193 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
|
196 |
// Switch to live or archive DB.
|
197 |
if ( $this->_plugin->settings->IsArchivingEnabled() ) {
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
}
|
203 |
-
?>
|
204 |
-
<div class="wsal-ssa wsal-db">
|
205 |
-
<select class="wsal-db" onchange="WsalDBChange(value);">
|
206 |
-
<option value="live" <?php echo ( 'live' == $selected ) ? 'selected="selected"' : false; ?>>
|
207 |
-
<?php esc_html_e( 'Live Database', 'wp-security-audit-log' ); ?>
|
208 |
-
</option>
|
209 |
-
<option value="archive" <?php echo ( 'archive' == $selected ) ? 'selected="selected"' : false; ?>>
|
210 |
-
<?php esc_html_e( 'Archive Database', 'wp-security-audit-log' ); ?>
|
211 |
-
</option>
|
212 |
-
</select>
|
213 |
-
</div>
|
214 |
-
<?php
|
215 |
}
|
216 |
}
|
217 |
|
@@ -292,7 +319,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
292 |
// If selected columns are not empty, then unset default columns.
|
293 |
if ( ! empty( $this->selected_columns ) ) {
|
294 |
unset( $cols );
|
295 |
-
$this->selected_columns = (array) json_decode( $this->selected_columns );
|
296 |
foreach ( $this->selected_columns as $key => $value ) {
|
297 |
switch ( $key ) {
|
298 |
case 'alert_code':
|
@@ -579,7 +606,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
579 |
* Method: Meta data formater.
|
580 |
*
|
581 |
* @param string $name - Name of the data.
|
582 |
-
* @param
|
583 |
* @return string
|
584 |
* @deprecated 3.3
|
585 |
*/
|
@@ -667,7 +694,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
667 |
return '<a href="javascript:;" onclick="download_failed_login_log( this )" data-download-nonce="' . esc_attr( wp_create_nonce( 'wsal-download-failed-logins' ) ) . '" title="' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '">' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '</a>';
|
668 |
|
669 |
case strncmp( $value, 'http://', 7 ) === 0:
|
670 |
-
case strncmp( $value, 'https://',
|
671 |
return '<a href="' . esc_html( $value ) . '" title="' . esc_html( $value ) . '" target="_blank">' . esc_html( $value ) . '</a>';
|
672 |
|
673 |
case '%PostStatus%' === $name:
|
@@ -731,10 +758,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
731 |
* @return bool
|
732 |
*/
|
733 |
protected function is_specific_view() {
|
734 |
-
|
735 |
-
$get_array = filter_input_array( INPUT_GET );
|
736 |
-
|
737 |
-
return isset( $get_array['wsal-cbid'] ) && '0' != $get_array['wsal-cbid'];
|
738 |
}
|
739 |
|
740 |
/**
|
@@ -743,10 +767,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
743 |
* @return int
|
744 |
*/
|
745 |
protected function get_specific_view() {
|
746 |
-
|
747 |
-
$get_array = filter_input_array( INPUT_GET );
|
748 |
-
|
749 |
-
return isset( $get_array['wsal-cbid'] ) ? (int) $get_array['wsal-cbid'] : 0;
|
750 |
}
|
751 |
|
752 |
/**
|
@@ -772,85 +793,28 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
772 |
}
|
773 |
|
774 |
/**
|
775 |
-
*
|
776 |
*/
|
777 |
public function prepare_items() {
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
if ( $selected_db && 'archive' == $selected_db ) {
|
782 |
-
$this->_plugin->settings->SwitchToArchiveDB();
|
783 |
-
}
|
784 |
-
}
|
785 |
-
|
786 |
-
$per_page = $this->_plugin->settings->GetViewPerPage();
|
787 |
-
|
788 |
-
$columns = $this->get_columns();
|
789 |
-
$hidden = array();
|
790 |
-
$sortable = $this->get_sortable_columns();
|
791 |
-
|
792 |
$this->_column_headers = array( $columns, $hidden, $sortable );
|
793 |
|
794 |
-
|
795 |
-
|
796 |
-
$
|
797 |
-
|
798 |
-
|
799 |
-
if ( $
|
800 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
801 |
}
|
802 |
-
|
803 |
-
$query = apply_filters( 'wsal_auditlog_query', $query );
|
804 |
-
|
805 |
-
$total_items = $query->getAdapter()->Count( $query );
|
806 |
-
|
807 |
-
// Filter $_GET and $_POST arrays for security.
|
808 |
-
$get_array = filter_input_array( INPUT_GET );
|
809 |
-
|
810 |
-
if ( empty( $get_array['orderby'] ) ) {
|
811 |
-
$query->addOrderBy( 'created_on', true );
|
812 |
-
} else {
|
813 |
-
$order_by_field = $get_array['orderby'];
|
814 |
-
|
815 |
-
$is_descending = true;
|
816 |
-
if ( ! empty( $get_array['order'] ) && 'asc' == $get_array['order'] ) {
|
817 |
-
$is_descending = false;
|
818 |
-
}
|
819 |
-
|
820 |
-
// TO DO: Allow order by meta values.
|
821 |
-
if ( 'scip' == $order_by_field ) {
|
822 |
-
$query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
|
823 |
-
$query->addCondition( 'meta.name = %s', 'ClientIP' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
|
824 |
-
$query->addOrderBy( 'CASE WHEN meta.name = "ClientIP" THEN meta.value END', $is_descending );
|
825 |
-
} elseif ( 'user' == $order_by_field ) {
|
826 |
-
$query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
|
827 |
-
$query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
|
828 |
-
$query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
|
829 |
-
} else {
|
830 |
-
$tmp = new WSAL_Models_Occurrence();
|
831 |
-
// Making sure the field exists to order by.
|
832 |
-
if ( isset( $tmp->{$order_by_field} ) ) {
|
833 |
-
// TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
|
834 |
-
$query->addOrderBy( $get_array['orderby'], $is_descending );
|
835 |
-
|
836 |
-
} else {
|
837 |
-
$query->addOrderBy( 'created_on', true );
|
838 |
-
}
|
839 |
-
}
|
840 |
-
}
|
841 |
-
|
842 |
-
$query->setOffset( ( $this->get_pagenum() - 1 ) * $per_page );
|
843 |
-
$query->setLimit( $per_page );
|
844 |
-
|
845 |
-
$this->items = $query->getAdapter()->Execute( $query );
|
846 |
-
|
847 |
-
$this->set_pagination_args(
|
848 |
-
array(
|
849 |
-
'total_items' => $total_items,
|
850 |
-
'per_page' => $per_page,
|
851 |
-
'total_pages' => ceil( $total_items / $per_page ),
|
852 |
-
)
|
853 |
-
);
|
854 |
}
|
855 |
|
856 |
/**
|
@@ -859,7 +823,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
859 |
* @param object $item - Item.
|
860 |
*/
|
861 |
public function single_row( $item ) {
|
862 |
-
if ( 9999
|
863 |
echo '<tr style="background-color: #D5E46E">';
|
864 |
$this->single_row_columns( $item );
|
865 |
echo '</tr>';
|
@@ -882,15 +846,14 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
882 |
$current_url = set_url_scheme( esc_url_raw( wp_unslash( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
|
883 |
$current_url = remove_query_arg( 'paged', $current_url );
|
884 |
|
885 |
-
//
|
886 |
-
|
887 |
-
|
888 |
-
$current_orderby = sanitize_text_field( $get_array['orderby'] );
|
889 |
} else {
|
890 |
$current_orderby = '';
|
891 |
}
|
892 |
|
893 |
-
if ( isset( $
|
894 |
$current_order = 'desc';
|
895 |
} else {
|
896 |
$current_order = 'asc';
|
@@ -898,7 +861,7 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
898 |
|
899 |
if ( ! empty( $columns['cb'] ) ) {
|
900 |
static $cb_counter = 1;
|
901 |
-
$columns['cb']
|
902 |
. '<input id="cb-select-all-' . $cb_counter . '" type="checkbox" />';
|
903 |
$cb_counter++;
|
904 |
}
|
@@ -971,6 +934,94 @@ class WSAL_AuditLogListView extends WP_List_Table {
|
|
971 |
* @return int
|
972 |
*/
|
973 |
public function get_total_items() {
|
974 |
-
return $this->_pagination_args['total_items'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
}
|
976 |
}
|
27 |
/**
|
28 |
* Instance of WpSecurityAuditLog.
|
29 |
*
|
30 |
+
* @var WpSecurityAuditLog
|
31 |
*/
|
32 |
protected $_plugin;
|
33 |
|
51 |
/**
|
52 |
* Selected Columns.
|
53 |
*
|
54 |
+
* @since 3.3.1
|
55 |
+
*
|
56 |
* @var array()
|
57 |
*/
|
58 |
private $selected_columns = '';
|
60 |
/**
|
61 |
* Display Name Type.
|
62 |
*
|
63 |
+
* @since 3.3.1
|
64 |
+
*
|
65 |
* @var string
|
66 |
*/
|
67 |
private $name_type = '';
|
68 |
|
69 |
/**
|
70 |
+
* Events Query Arguments.
|
71 |
*
|
72 |
+
* @since 3.3.1.1
|
73 |
+
*
|
74 |
+
* @var stdClass
|
75 |
*/
|
76 |
+
private $query_args;
|
|
|
77 |
|
78 |
+
/**
|
79 |
+
* Method: Constructor.
|
80 |
+
*
|
81 |
+
* @param object $plugin - Instance of WpSecurityAuditLog.
|
82 |
+
* @param stdClass $query_args - Events query arguments.
|
83 |
+
*/
|
84 |
+
public function __construct( $plugin, $query_args ) {
|
85 |
+
$this->_plugin = $plugin;
|
86 |
+
$this->query_args = $query_args;
|
87 |
+
$timezone = $this->_plugin->settings->GetTimezone();
|
88 |
|
89 |
/**
|
90 |
* Transform timezone values.
|
159 |
*/
|
160 |
public function extra_tablenav( $which ) {
|
161 |
// If the position is not top then render.
|
162 |
+
if ( 'top' !== $which && ! $this->_plugin->settings->is_infinite_scroll() ) :
|
163 |
// Items-per-page widget.
|
164 |
$p = $this->_plugin->settings->GetViewPerPage();
|
165 |
$items = array( 5, 10, 15, 30, 50 );
|
166 |
+
if ( ! in_array( $p, $items, true ) ) {
|
167 |
$items[] = $p;
|
168 |
}
|
169 |
?>
|
170 |
<div class="wsal-ipp wsal-ipp-<?php echo esc_attr( $which ); ?>">
|
171 |
<?php esc_html_e( 'Show ', 'wp-security-audit-log' ); ?>
|
172 |
<select class="wsal-ipps" onfocus="WsalIppsFocus(value);" onchange="WsalIppsChange(value);">
|
173 |
+
<?php foreach ( $items as $item ) : ?>
|
174 |
+
<option value="<?php echo is_string( $item ) ? '' : esc_attr( $item ); ?>" <?php echo ( $item === $p ) ? 'selected="selected"' : false; ?>>
|
|
|
|
|
175 |
<?php echo esc_html( $item ); ?>
|
176 |
</option>
|
177 |
+
<?php endforeach; ?>
|
178 |
</select>
|
179 |
<?php esc_html_e( ' Items', 'wp-security-audit-log' ); ?>
|
180 |
</div>
|
181 |
<?php
|
182 |
endif;
|
183 |
|
184 |
+
if ( 'top' !== $which && $this->_plugin->settings->is_infinite_scroll() ) :
|
|
|
|
|
185 |
?>
|
186 |
+
<div id="wsal-event-loader"><div class="wsal-lds-ellipsis"><div></div><div></div><div></div><div></div></div></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
<?php
|
188 |
+
endif;
|
189 |
+
|
190 |
+
// Show site alerts widget.
|
191 |
+
if ( $this->is_multisite() && $this->is_main_blog() ) {
|
192 |
+
if (
|
193 |
+
( 'top' === $which && $this->_plugin->settings->is_infinite_scroll() )
|
194 |
+
|| ! $this->_plugin->settings->is_infinite_scroll()
|
195 |
+
) {
|
196 |
+
$curr = $this->get_view_site_id();
|
197 |
+
?>
|
198 |
+
<div class="wsal-ssa wsal-ssa-<?php echo esc_attr( $which ); ?>">
|
199 |
+
<?php if ( $this->get_site_count() > 15 ) : ?>
|
200 |
+
<?php $curr = $curr ? get_blog_details( $curr ) : null; ?>
|
201 |
+
<?php $curr = $curr ? ( $curr->blogname . ' (' . $curr->domain . ')' ) : 'All Sites'; ?>
|
202 |
+
<input type="text" class="wsal-ssas" value="<?php echo esc_attr( $curr ); ?>"/>
|
203 |
+
<?php else : ?>
|
204 |
+
<select class="wsal-ssas" onchange="WsalSsasChange(value);">
|
205 |
+
<option value="0"><?php esc_html_e( 'All Sites', 'wp-security-audit-log' ); ?></option>
|
206 |
+
<?php foreach ( $this->get_sites() as $info ) : ?>
|
207 |
+
<option value="<?php echo esc_attr( $info->blog_id ); ?>" <?php echo ( $info->blog_id == $curr ) ? 'selected="selected"' : false; ?>>
|
208 |
+
<?php echo esc_html( $info->blogname ) . ' (' . esc_html( $info->domain ) . ')'; ?>
|
209 |
+
</option>
|
210 |
+
<?php endforeach; ?>
|
211 |
+
</select>
|
212 |
+
<?php endif; ?>
|
213 |
+
</div>
|
214 |
+
<?php
|
215 |
+
}
|
216 |
}
|
217 |
|
218 |
// Switch to live or archive DB.
|
219 |
if ( $this->_plugin->settings->IsArchivingEnabled() ) {
|
220 |
+
if (
|
221 |
+
( 'top' === $which && $this->_plugin->settings->is_infinite_scroll() )
|
222 |
+
|| ! $this->_plugin->settings->is_infinite_scroll()
|
223 |
+
) {
|
224 |
+
$selected = 'live';
|
225 |
+
$selected_db = get_transient( 'wsal_wp_selected_db' );
|
226 |
+
if ( $selected_db && 'archive' === $selected_db ) {
|
227 |
+
$selected = 'archive';
|
228 |
+
}
|
229 |
+
?>
|
230 |
+
<div class="wsal-ssa wsal-db">
|
231 |
+
<select class="wsal-db" onchange="WsalDBChange(value);">
|
232 |
+
<option value="live" <?php echo ( 'live' == $selected ) ? 'selected="selected"' : false; ?>>
|
233 |
+
<?php esc_html_e( 'Live Database', 'wp-security-audit-log' ); ?>
|
234 |
+
</option>
|
235 |
+
<option value="archive" <?php echo ( 'archive' == $selected ) ? 'selected="selected"' : false; ?>>
|
236 |
+
<?php esc_html_e( 'Archive Database', 'wp-security-audit-log' ); ?>
|
237 |
+
</option>
|
238 |
+
</select>
|
239 |
+
</div>
|
240 |
+
<?php
|
241 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
}
|
243 |
}
|
244 |
|
319 |
// If selected columns are not empty, then unset default columns.
|
320 |
if ( ! empty( $this->selected_columns ) ) {
|
321 |
unset( $cols );
|
322 |
+
$this->selected_columns = is_string( $this->selected_columns ) ? (array) json_decode( $this->selected_columns ) : $this->selected_columns;
|
323 |
foreach ( $this->selected_columns as $key => $value ) {
|
324 |
switch ( $key ) {
|
325 |
case 'alert_code':
|
606 |
* Method: Meta data formater.
|
607 |
*
|
608 |
* @param string $name - Name of the data.
|
609 |
+
* @param mix $value - Value of the data.
|
610 |
* @return string
|
611 |
* @deprecated 3.3
|
612 |
*/
|
694 |
return '<a href="javascript:;" onclick="download_failed_login_log( this )" data-download-nonce="' . esc_attr( wp_create_nonce( 'wsal-download-failed-logins' ) ) . '" title="' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '">' . esc_html__( 'Download the log file.', 'wp-security-audit-log' ) . '</a>';
|
695 |
|
696 |
case strncmp( $value, 'http://', 7 ) === 0:
|
697 |
+
case strncmp( $value, 'https://', 7 ) === 0:
|
698 |
return '<a href="' . esc_html( $value ) . '" title="' . esc_html( $value ) . '" target="_blank">' . esc_html( $value ) . '</a>';
|
699 |
|
700 |
case '%PostStatus%' === $name:
|
758 |
* @return bool
|
759 |
*/
|
760 |
protected function is_specific_view() {
|
761 |
+
return isset( $this->query_args->site_id ) && '0' != $this->query_args->site_id;
|
|
|
|
|
|
|
762 |
}
|
763 |
|
764 |
/**
|
767 |
* @return int
|
768 |
*/
|
769 |
protected function get_specific_view() {
|
770 |
+
return isset( $this->query_args->site_id ) ? (int) $this->query_args->site_id : 0;
|
|
|
|
|
|
|
771 |
}
|
772 |
|
773 |
/**
|
793 |
}
|
794 |
|
795 |
/**
|
796 |
+
* Set Events for Audit Log Viewer.
|
797 |
*/
|
798 |
public function prepare_items() {
|
799 |
+
$columns = $this->get_columns();
|
800 |
+
$hidden = array();
|
801 |
+
$sortable = $this->get_sortable_columns();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
$this->_column_headers = array( $columns, $hidden, $sortable );
|
803 |
|
804 |
+
$query_events = $this->query_events();
|
805 |
+
$this->items = isset( $query_events['items'] ) ? $query_events['items'] : false;
|
806 |
+
$total_items = isset( $query_events['total_items'] ) ? $query_events['total_items'] : false;
|
807 |
+
$per_page = isset( $query_events['per_page'] ) ? $query_events['per_page'] : false;
|
808 |
+
|
809 |
+
if ( ! $this->_plugin->settings->is_infinite_scroll() ) {
|
810 |
+
$this->set_pagination_args(
|
811 |
+
array(
|
812 |
+
'total_items' => $total_items,
|
813 |
+
'per_page' => $per_page,
|
814 |
+
'total_pages' => ceil( $total_items / $per_page ),
|
815 |
+
)
|
816 |
+
);
|
817 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
818 |
}
|
819 |
|
820 |
/**
|
823 |
* @param object $item - Item.
|
824 |
*/
|
825 |
public function single_row( $item ) {
|
826 |
+
if ( 9999 === $item->alert_id ) {
|
827 |
echo '<tr style="background-color: #D5E46E">';
|
828 |
$this->single_row_columns( $item );
|
829 |
echo '</tr>';
|
846 |
$current_url = set_url_scheme( esc_url_raw( wp_unslash( $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ) ) );
|
847 |
$current_url = remove_query_arg( 'paged', $current_url );
|
848 |
|
849 |
+
// Set order by query arg.
|
850 |
+
if ( isset( $this->query_args->order_by ) ) {
|
851 |
+
$current_orderby = $this->query_args->order_by;
|
|
|
852 |
} else {
|
853 |
$current_orderby = '';
|
854 |
}
|
855 |
|
856 |
+
if ( isset( $this->query_args->order ) && 'desc' === $this->query_args->order ) {
|
857 |
$current_order = 'desc';
|
858 |
} else {
|
859 |
$current_order = 'asc';
|
861 |
|
862 |
if ( ! empty( $columns['cb'] ) ) {
|
863 |
static $cb_counter = 1;
|
864 |
+
$columns['cb'] = '<label class="screen-reader-text" for="cb-select-all-' . $cb_counter . '">' . __( 'Select All' ) . '</label>'
|
865 |
. '<input id="cb-select-all-' . $cb_counter . '" type="checkbox" />';
|
866 |
$cb_counter++;
|
867 |
}
|
934 |
* @return int
|
935 |
*/
|
936 |
public function get_total_items() {
|
937 |
+
return isset( $this->_pagination_args['total_items'] ) ? $this->_pagination_args['total_items'] : false;
|
938 |
+
}
|
939 |
+
|
940 |
+
/**
|
941 |
+
* Query Events from WSAL DB.
|
942 |
+
*
|
943 |
+
* @since 3.3.1.1
|
944 |
+
*
|
945 |
+
* @param integer $paged - Page number.
|
946 |
+
* @return array
|
947 |
+
*/
|
948 |
+
public function query_events( $paged = 0 ) {
|
949 |
+
if ( $this->_plugin->settings->IsArchivingEnabled() ) {
|
950 |
+
// Switch to Archive DB.
|
951 |
+
$selected_db = get_transient( 'wsal_wp_selected_db' );
|
952 |
+
if ( $selected_db && 'archive' === $selected_db ) {
|
953 |
+
$this->_plugin->settings->SwitchToArchiveDB();
|
954 |
+
}
|
955 |
+
}
|
956 |
+
|
957 |
+
// TO DO: Get rid of OccurrenceQuery and use the Occurence Model.
|
958 |
+
$query = new WSAL_Models_OccurrenceQuery();
|
959 |
+
|
960 |
+
$bid = (int) $this->query_args->site_id;
|
961 |
+
if ( $bid ) {
|
962 |
+
$query->addCondition( 'site_id = %s ', $bid );
|
963 |
+
}
|
964 |
+
|
965 |
+
/**
|
966 |
+
* Hook: `wsal_auditlog_query`
|
967 |
+
*
|
968 |
+
* This hook is used to filter events query object.
|
969 |
+
* It is used to support search by filters.
|
970 |
+
*
|
971 |
+
* @see WSAL_SearchExtension()->__construct()
|
972 |
+
* @param WSAL_Models_OccurrenceQuery $query - Audit log events query object.
|
973 |
+
*/
|
974 |
+
$query = apply_filters( 'wsal_auditlog_query', $query );
|
975 |
+
|
976 |
+
if ( ! $this->_plugin->settings->is_infinite_scroll() ) {
|
977 |
+
$total_items = $query->getAdapter()->Count( $query );
|
978 |
+
$per_page = $this->_plugin->settings->GetViewPerPage();
|
979 |
+
$offset = ( $this->get_pagenum() - 1 ) * $per_page;
|
980 |
+
} else {
|
981 |
+
$total_items = false;
|
982 |
+
$per_page = 25; // Manually set per page events for infinite scroll.
|
983 |
+
$offset = ( max( 1, $paged ) - 1 ) * $per_page;
|
984 |
+
}
|
985 |
+
|
986 |
+
// Set query order arguments.
|
987 |
+
$order_by = isset( $this->query_args->order_by ) ? $this->query_args->order_by : false;
|
988 |
+
$order = isset( $this->query_args->order ) ? $this->query_args->order : false;
|
989 |
+
|
990 |
+
if ( ! $order_by ) {
|
991 |
+
$query->addOrderBy( 'created_on', true );
|
992 |
+
} else {
|
993 |
+
$is_descending = true;
|
994 |
+
if ( $order && 'asc' === $order ) {
|
995 |
+
$is_descending = false;
|
996 |
+
}
|
997 |
+
|
998 |
+
// TO DO: Allow order by meta values.
|
999 |
+
if ( 'scip' === $order_by ) {
|
1000 |
+
$query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
|
1001 |
+
$query->addCondition( 'meta.name = %s', 'ClientIP' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
|
1002 |
+
$query->addOrderBy( 'CASE WHEN meta.name = "ClientIP" THEN meta.value END', $is_descending );
|
1003 |
+
} elseif ( 'user' === $order_by ) {
|
1004 |
+
$query->addMetaJoin(); // Since LEFT JOIN clause causes the result values to duplicate.
|
1005 |
+
$query->addCondition( 'meta.name = %s', 'CurrentUserID' ); // A where condition is added to make sure that we're only requesting the relevant meta data rows from metadata table.
|
1006 |
+
$query->addOrderBy( 'CASE WHEN meta.name = "CurrentUserID" THEN meta.value END', $is_descending );
|
1007 |
+
} else {
|
1008 |
+
$tmp = new WSAL_Models_Occurrence();
|
1009 |
+
// Making sure the field exists to order by.
|
1010 |
+
if ( isset( $tmp->{$order_by} ) ) {
|
1011 |
+
// TODO: We used to use a custom comparator ... is it safe to let MySQL do the ordering now?.
|
1012 |
+
$query->addOrderBy( $order_by, $is_descending );
|
1013 |
+
} else {
|
1014 |
+
$query->addOrderBy( 'created_on', true );
|
1015 |
+
}
|
1016 |
+
}
|
1017 |
+
}
|
1018 |
+
|
1019 |
+
$query->setOffset( $offset ); // Set query offset.
|
1020 |
+
$query->setLimit( $per_page ); // Set number of events per page.
|
1021 |
+
return array(
|
1022 |
+
'total_items' => $total_items,
|
1023 |
+
'per_page' => $per_page,
|
1024 |
+
'items' => $query->getAdapter()->Execute( $query ),
|
1025 |
+
);
|
1026 |
}
|
1027 |
}
|
classes/Sensors/Database.php
CHANGED
@@ -45,8 +45,9 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
|
45 |
* @param WP_Query $query - Query object.
|
46 |
*/
|
47 |
public function EventDropQuery( $query ) {
|
|
|
48 |
$table_names = array();
|
49 |
-
$str
|
50 |
|
51 |
if ( preg_match( '|DROP TABLE ([^ ]*)|', $query ) ) {
|
52 |
if ( ! empty( $str[4] ) ) {
|
@@ -55,15 +56,25 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
|
55 |
array_push( $table_names, $str[2] );
|
56 |
}
|
57 |
|
58 |
-
|
59 |
-
$server_array = filter_input_array( INPUT_SERVER );
|
60 |
-
|
61 |
-
$actype = ( isset( $server_array['SCRIPT_NAME'] ) ) ? basename( $server_array['SCRIPT_NAME'], '.php' ) : false;
|
62 |
$alert_options = $this->GetActionType( $actype );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
}
|
64 |
|
65 |
if ( ! empty( $table_names ) ) {
|
66 |
-
$event_code
|
67 |
$alert_options['TableNames'] = implode( ',', $table_names );
|
68 |
$this->plugin->alerts->Trigger( $event_code, $alert_options );
|
69 |
}
|
@@ -106,21 +117,17 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
|
106 |
}
|
107 |
|
108 |
if ( ! empty( $type_queries['create'] ) || ! empty( $type_queries['update'] ) || ! empty( $type_queries['delete'] ) ) {
|
109 |
-
|
110 |
-
$server_array = filter_input_array( INPUT_SERVER );
|
111 |
-
|
112 |
-
$actype = ( isset( $server_array['SCRIPT_NAME'] ) ) ? basename( $server_array['SCRIPT_NAME'], '.php' ) : false;
|
113 |
$alert_options = $this->GetActionType( $actype );
|
114 |
|
115 |
foreach ( $type_queries as $query_type => $table_names ) {
|
116 |
if ( ! empty( $table_names ) ) {
|
117 |
-
$event_code
|
118 |
$alert_options['TableNames'] = implode( ',', $table_names );
|
119 |
$this->plugin->alerts->Trigger( $event_code, $alert_options );
|
120 |
}
|
121 |
}
|
122 |
}
|
123 |
-
|
124 |
return $queries;
|
125 |
}
|
126 |
|
@@ -133,29 +140,29 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
|
133 |
protected function GetEventQueryType( $type_action, $type_query ) {
|
134 |
switch ( $type_action ) {
|
135 |
case 'plugins':
|
136 |
-
if ( 'create'
|
137 |
return 5010;
|
138 |
-
} elseif ( 'update'
|
139 |
return 5011;
|
140 |
-
} elseif ( 'delete'
|
141 |
return 5012;
|
142 |
}
|
143 |
// In case of plugins.
|
144 |
case 'themes':
|
145 |
-
if ( 'create'
|
146 |
return 5013;
|
147 |
-
} elseif ( 'update'
|
148 |
return 5014;
|
149 |
-
} elseif ( 'delete'
|
150 |
return 5015;
|
151 |
}
|
152 |
// In case of themes.
|
153 |
default:
|
154 |
-
if ( 'create'
|
155 |
return 5016;
|
156 |
-
} elseif ( 'update'
|
157 |
return 5017;
|
158 |
-
} elseif ( 'delete'
|
159 |
return 5018;
|
160 |
}
|
161 |
}
|
@@ -167,45 +174,58 @@ class WSAL_Sensors_Database extends WSAL_AbstractSensor {
|
|
167 |
* @param string $actype - Plugins, themes or unknown.
|
168 |
*/
|
169 |
protected function GetActionType( $actype ) {
|
170 |
-
//
|
171 |
-
$
|
172 |
-
|
173 |
-
$is_themes = 'themes' == $actype;
|
174 |
-
$is_plugins = 'plugins' == $actype;
|
175 |
|
176 |
// Action Plugin Component.
|
177 |
$alert_options = array();
|
178 |
if ( $is_plugins ) {
|
179 |
$plugin_file = '';
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
}
|
185 |
-
$plugin_name = basename( $plugin_file, '.php' );
|
186 |
-
$plugin_name = str_replace( array( '_', '-', ' ' ), ' ', $plugin_name );
|
187 |
-
$plugin_name = ucwords( $plugin_name );
|
188 |
-
$alert_options['Plugin'] = (object) array(
|
189 |
-
'Name' => $plugin_name,
|
190 |
-
);
|
191 |
-
// Action Theme Component.
|
192 |
} elseif ( $is_themes ) {
|
|
|
193 |
$theme_name = '';
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
$theme_name = $
|
|
|
|
|
198 |
}
|
199 |
-
|
200 |
-
|
201 |
-
$
|
202 |
-
|
203 |
-
);
|
204 |
-
// Action Unknown Component.
|
205 |
} else {
|
|
|
206 |
$alert_options['Component'] = 'Unknown';
|
207 |
}
|
208 |
-
|
209 |
return $alert_options;
|
210 |
}
|
211 |
}
|
45 |
* @param WP_Query $query - Query object.
|
46 |
*/
|
47 |
public function EventDropQuery( $query ) {
|
48 |
+
global $wpdb;
|
49 |
$table_names = array();
|
50 |
+
$str = explode( ' ', $query );
|
51 |
|
52 |
if ( preg_match( '|DROP TABLE ([^ ]*)|', $query ) ) {
|
53 |
if ( ! empty( $str[4] ) ) {
|
56 |
array_push( $table_names, $str[2] );
|
57 |
}
|
58 |
|
59 |
+
$actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
|
|
|
|
|
|
|
60 |
$alert_options = $this->GetActionType( $actype );
|
61 |
+
$type_query = 'delete';
|
62 |
+
} elseif ( preg_match( '|CREATE TABLE IF NOT EXISTS ([^ ]*)|', $query ) ) {
|
63 |
+
if ( $str[5] !== $wpdb->get_var( "SHOW TABLES LIKE '" . $str[5] . "'" ) ) {
|
64 |
+
/**
|
65 |
+
* Some plugins keep trying to create tables even
|
66 |
+
* when they already exist- would result in too
|
67 |
+
* many alerts.
|
68 |
+
*/
|
69 |
+
array_push( $table_names, $str[5] );
|
70 |
+
$actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
|
71 |
+
$alert_options = $this->GetActionType( $actype );
|
72 |
+
$type_query = 'create';
|
73 |
+
}
|
74 |
}
|
75 |
|
76 |
if ( ! empty( $table_names ) ) {
|
77 |
+
$event_code = $this->GetEventQueryType( $actype, $type_query );
|
78 |
$alert_options['TableNames'] = implode( ',', $table_names );
|
79 |
$this->plugin->alerts->Trigger( $event_code, $alert_options );
|
80 |
}
|
117 |
}
|
118 |
|
119 |
if ( ! empty( $type_queries['create'] ) || ! empty( $type_queries['update'] ) || ! empty( $type_queries['delete'] ) ) {
|
120 |
+
$actype = isset( $_SERVER['SCRIPT_NAME'] ) ? basename( sanitize_text_field( wp_unslash( $_SERVER['SCRIPT_NAME'] ) ), '.php' ) : false;
|
|
|
|
|
|
|
121 |
$alert_options = $this->GetActionType( $actype );
|
122 |
|
123 |
foreach ( $type_queries as $query_type => $table_names ) {
|
124 |
if ( ! empty( $table_names ) ) {
|
125 |
+
$event_code = $this->GetEventQueryType( $actype, $query_type );
|
126 |
$alert_options['TableNames'] = implode( ',', $table_names );
|
127 |
$this->plugin->alerts->Trigger( $event_code, $alert_options );
|
128 |
}
|
129 |
}
|
130 |
}
|
|
|
131 |
return $queries;
|
132 |
}
|
133 |
|
140 |
protected function GetEventQueryType( $type_action, $type_query ) {
|
141 |
switch ( $type_action ) {
|
142 |
case 'plugins':
|
143 |
+
if ( 'create' === $type_query ) {
|
144 |
return 5010;
|
145 |
+
} elseif ( 'update' === $type_query ) {
|
146 |
return 5011;
|
147 |
+
} elseif ( 'delete' === $type_query ) {
|
148 |
return 5012;
|
149 |
}
|
150 |
// In case of plugins.
|
151 |
case 'themes':
|
152 |
+
if ( 'create' === $type_query ) {
|
153 |
return 5013;
|
154 |
+
} elseif ( 'update' === $type_query ) {
|
155 |
return 5014;
|
156 |
+
} elseif ( 'delete' === $type_query ) {
|
157 |
return 5015;
|
158 |
}
|
159 |
// In case of themes.
|
160 |
default:
|
161 |
+
if ( 'create' === $type_query ) {
|
162 |
return 5016;
|
163 |
+
} elseif ( 'update' === $type_query ) {
|
164 |
return 5017;
|
165 |
+
} elseif ( 'delete' === $type_query ) {
|
166 |
return 5018;
|
167 |
}
|
168 |
}
|
174 |
* @param string $actype - Plugins, themes or unknown.
|
175 |
*/
|
176 |
protected function GetActionType( $actype ) {
|
177 |
+
// Check the component type (theme or plugin).
|
178 |
+
$is_themes = 'themes' === $actype;
|
179 |
+
$is_plugins = 'plugins' === $actype;
|
|
|
|
|
180 |
|
181 |
// Action Plugin Component.
|
182 |
$alert_options = array();
|
183 |
if ( $is_plugins ) {
|
184 |
$plugin_file = '';
|
185 |
+
// @codingStandardsIgnoreStart
|
186 |
+
if ( isset( $_GET['plugin'] ) ) {
|
187 |
+
$plugin_file = sanitize_text_field( wp_unslash( $_GET['plugin'] ) );
|
188 |
+
} elseif ( isset( $_GET['checked'] ) ) {
|
189 |
+
$plugin_file = sanitize_text_field( wp_unslash( $_GET['checked'][0] ) );
|
190 |
+
}
|
191 |
+
// @codingStandardsIgnoreEnd
|
192 |
+
|
193 |
+
// Get plugin data.
|
194 |
+
$plugins = get_plugins();
|
195 |
+
if ( isset( $plugins[ $plugin_file ] ) ) {
|
196 |
+
$plugin = $plugins[ $plugin_file ];
|
197 |
+
|
198 |
+
// Set alert options.
|
199 |
+
$alert_options['Plugin'] = (object) array(
|
200 |
+
'Name' => $plugin['Name'],
|
201 |
+
'PluginURI' => $plugin['PluginURI'],
|
202 |
+
'Version' => $plugin['Version'],
|
203 |
+
);
|
204 |
+
} else {
|
205 |
+
$plugin_name = basename( $plugin_file, '.php' );
|
206 |
+
$plugin_name = str_replace( array( '_', '-', ' ' ), ' ', $plugin_name );
|
207 |
+
$plugin_name = ucwords( $plugin_name );
|
208 |
+
$alert_options['Plugin'] = (object) array( 'Name' => $plugin_name );
|
209 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
} elseif ( $is_themes ) {
|
211 |
+
// Action Theme Component.
|
212 |
$theme_name = '';
|
213 |
+
|
214 |
+
// @codingStandardsIgnoreStart
|
215 |
+
if ( isset( $_GET['theme'] ) ) {
|
216 |
+
$theme_name = sanitize_text_field( wp_unslash( $_GET['theme'] ) );
|
217 |
+
} elseif ( isset( $_GET['checked'] ) ) {
|
218 |
+
$theme_name = sanitize_text_field( wp_unslash( $_GET['checked'][0] ) );
|
219 |
}
|
220 |
+
// @codingStandardsIgnoreEnd
|
221 |
+
|
222 |
+
$theme_name = str_replace( array( '_', '-', ' ' ), ' ', $theme_name );
|
223 |
+
$theme_name = ucwords( $theme_name );
|
224 |
+
$alert_options['Theme'] = (object) array( 'Name' => $theme_name );
|
|
|
225 |
} else {
|
226 |
+
// Action Unknown Component.
|
227 |
$alert_options['Component'] = 'Unknown';
|
228 |
}
|
|
|
229 |
return $alert_options;
|
230 |
}
|
231 |
}
|
classes/Sensors/PluginsThemes.php
CHANGED
@@ -557,7 +557,7 @@ class WSAL_Sensors_PluginsThemes extends WSAL_AbstractSensor {
|
|
557 |
|
558 |
// Check if Yoast SEO is active.
|
559 |
$is_yoast = is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' );
|
560 |
-
if ( $is_yoast
|
561 |
return;
|
562 |
}
|
563 |
|
557 |
|
558 |
// Check if Yoast SEO is active.
|
559 |
$is_yoast = is_plugin_active( 'wordpress-seo/wp-seo.php' ) || is_plugin_active( 'wordpress-seo-premium/wp-seo-premium.php' );
|
560 |
+
if ( $is_yoast ) {
|
561 |
return;
|
562 |
}
|
563 |
|
classes/Sensors/WooCommerce.php
CHANGED
@@ -2144,13 +2144,29 @@ class WSAL_Sensors_WooCommerce extends WSAL_AbstractSensor {
|
|
2144 |
$order_title = ( null !== $order_post && $order_post instanceof WP_Post ) ? $order_post->post_title : false;
|
2145 |
$order_post = get_post( $order_id );
|
2146 |
$edit_link = $this->GetEditorLink( $order_post );
|
2147 |
-
|
2148 |
-
$this->plugin->alerts->Trigger( 9036, array(
|
2149 |
'OrderID' => $order_id,
|
2150 |
'OrderTitle' => $this->get_order_title( $order ),
|
2151 |
'OrderStatus' => $status_to,
|
2152 |
$edit_link['name'] => $edit_link['value'],
|
2153 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2154 |
}
|
2155 |
|
2156 |
/**
|
@@ -2170,13 +2186,16 @@ class WSAL_Sensors_WooCommerce extends WSAL_AbstractSensor {
|
|
2170 |
// Get editor link.
|
2171 |
$edit_link = $this->GetEditorLink( $oldorder );
|
2172 |
|
2173 |
-
//
|
2174 |
-
$
|
2175 |
'OrderID' => $order_id,
|
2176 |
'OrderTitle' => $this->get_order_title( $order_id ),
|
2177 |
'OrderStatus' => $neworder->post_status,
|
2178 |
$edit_link['name'] => $edit_link['value'],
|
2179 |
-
)
|
|
|
|
|
|
|
2180 |
}
|
2181 |
|
2182 |
/**
|
2144 |
$order_title = ( null !== $order_post && $order_post instanceof WP_Post ) ? $order_post->post_title : false;
|
2145 |
$order_post = get_post( $order_id );
|
2146 |
$edit_link = $this->GetEditorLink( $order_post );
|
2147 |
+
$event_data = array(
|
|
|
2148 |
'OrderID' => $order_id,
|
2149 |
'OrderTitle' => $this->get_order_title( $order ),
|
2150 |
'OrderStatus' => $status_to,
|
2151 |
$edit_link['name'] => $edit_link['value'],
|
2152 |
+
);
|
2153 |
+
$this->plugin->alerts->TriggerIf( 9036, $event_data, array( $this, 'must_not_contain_refund' ) );
|
2154 |
+
}
|
2155 |
+
|
2156 |
+
/**
|
2157 |
+
* Checks if event 9041 has triggered or if it will
|
2158 |
+
* trigger.
|
2159 |
+
*
|
2160 |
+
* @since 3.3.1.1
|
2161 |
+
*
|
2162 |
+
* @param WSAL_AlertManager $manager - Alert manager instance.
|
2163 |
+
* @return boolean
|
2164 |
+
*/
|
2165 |
+
public function must_not_contain_refund( WSAL_AlertManager $manager ) {
|
2166 |
+
if ( $manager->WillOrHasTriggered( 9041 ) ) {
|
2167 |
+
return false;
|
2168 |
+
}
|
2169 |
+
return true;
|
2170 |
}
|
2171 |
|
2172 |
/**
|
2186 |
// Get editor link.
|
2187 |
$edit_link = $this->GetEditorLink( $oldorder );
|
2188 |
|
2189 |
+
// Set event data.
|
2190 |
+
$event_data = array(
|
2191 |
'OrderID' => $order_id,
|
2192 |
'OrderTitle' => $this->get_order_title( $order_id ),
|
2193 |
'OrderStatus' => $neworder->post_status,
|
2194 |
$edit_link['name'] => $edit_link['value'],
|
2195 |
+
);
|
2196 |
+
|
2197 |
+
// Log event.
|
2198 |
+
$this->plugin->alerts->TriggerIf( 9040, $event_data, array( $this, 'must_not_contain_refund' ) );
|
2199 |
}
|
2200 |
|
2201 |
/**
|
classes/Sensors/YoastSEO.php
CHANGED
@@ -93,7 +93,7 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
93 |
&& ! ( isset( $post_array['action'] ) && 'autosave' === $post_array['action'] )
|
94 |
) {
|
95 |
$this->post_id = intval( $post_array['post_ID'] );
|
96 |
-
$this->post
|
97 |
$this->set_post_seo_data();
|
98 |
}
|
99 |
}
|
@@ -104,14 +104,14 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
104 |
private function set_post_seo_data() {
|
105 |
// Set post SEO meta data.
|
106 |
$this->post_seo_data = array(
|
107 |
-
'_yoast_wpseo_title'
|
108 |
-
'_yoast_wpseo_metadesc'
|
109 |
-
'_yoast_wpseo_focuskw'
|
110 |
-
'_yst_is_cornerstone'
|
111 |
-
'_yoast_wpseo_meta-robots-noindex'
|
112 |
'_yoast_wpseo_meta-robots-nofollow' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-nofollow', true ),
|
113 |
-
'_yoast_wpseo_meta-robots-adv'
|
114 |
-
'_yoast_wpseo_canonical'
|
115 |
);
|
116 |
}
|
117 |
|
@@ -154,9 +154,9 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
154 |
* @return array $editor_link - Name and value link.
|
155 |
*/
|
156 |
private function get_editor_link( $post_id ) {
|
157 |
-
$value
|
158 |
$editor_link = array(
|
159 |
-
'name'
|
160 |
'value' => $value,
|
161 |
);
|
162 |
return $editor_link;
|
@@ -168,19 +168,19 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
168 |
protected function check_seo_data_change() {
|
169 |
// Set filter input args.
|
170 |
$filter_input_args = array(
|
171 |
-
'post_ID'
|
172 |
-
'_wpnonce'
|
173 |
-
'action'
|
174 |
-
'yoast_wpseo_title'
|
175 |
-
'yoast_wpseo_metadesc'
|
176 |
-
'yoast_wpseo_focuskw'
|
177 |
-
'_yst_is_cornerstone'
|
178 |
-
'yoast_wpseo_meta-robots-noindex'
|
179 |
'yoast_wpseo_meta-robots-nofollow' => FILTER_VALIDATE_INT,
|
180 |
-
'yoast_wpseo_meta-robots-adv'
|
181 |
'flags' => FILTER_REQUIRE_ARRAY,
|
182 |
),
|
183 |
-
'yoast_wpseo_canonical'
|
184 |
);
|
185 |
|
186 |
// Filter POST global array.
|
@@ -216,21 +216,25 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
216 |
return;
|
217 |
}
|
218 |
|
|
|
|
|
|
|
|
|
219 |
// If title is changed then log alert.
|
220 |
if ( $old_title !== $title ) {
|
221 |
$editor_link = $this->get_editor_link( $this->post_id );
|
222 |
$this->plugin->alerts->Trigger(
|
223 |
8801, array(
|
224 |
-
'PostID'
|
225 |
-
'PostType'
|
226 |
-
'PostTitle'
|
227 |
-
'PostStatus'
|
228 |
-
'PostDate'
|
229 |
-
'PostUrl'
|
230 |
-
'OldSEOTitle'
|
231 |
-
'NewSEOTitle'
|
232 |
$editor_link['name'] => $editor_link['value'],
|
233 |
-
'ReportText'
|
234 |
)
|
235 |
);
|
236 |
}
|
@@ -243,7 +247,8 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
243 |
*/
|
244 |
protected function check_desc_change( $desc ) {
|
245 |
// Get old desc value.
|
246 |
-
$old_desc = $this->get_post_seo_data( 'metadesc' );
|
|
|
247 |
|
248 |
// If old and new values are empty then don't log the alert.
|
249 |
if ( empty( $old_desc ) && empty( $desc ) ) {
|
@@ -255,16 +260,16 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
255 |
$editor_link = $this->get_editor_link( $this->post_id );
|
256 |
$this->plugin->alerts->Trigger(
|
257 |
8802, array(
|
258 |
-
'PostID'
|
259 |
-
'PostType'
|
260 |
-
'PostTitle'
|
261 |
-
'PostStatus'
|
262 |
-
'PostDate'
|
263 |
-
'PostUrl'
|
264 |
-
'old_desc'
|
265 |
-
'new_desc'
|
266 |
$editor_link['name'] => $editor_link['value'],
|
267 |
-
'ReportText'
|
268 |
)
|
269 |
);
|
270 |
}
|
@@ -794,4 +799,3 @@ class WSAL_Sensors_YoastSEO extends WSAL_AbstractSensor {
|
|
794 |
}
|
795 |
}
|
796 |
}
|
797 |
-
|
93 |
&& ! ( isset( $post_array['action'] ) && 'autosave' === $post_array['action'] )
|
94 |
) {
|
95 |
$this->post_id = intval( $post_array['post_ID'] );
|
96 |
+
$this->post = get_post( $this->post_id );
|
97 |
$this->set_post_seo_data();
|
98 |
}
|
99 |
}
|
104 |
private function set_post_seo_data() {
|
105 |
// Set post SEO meta data.
|
106 |
$this->post_seo_data = array(
|
107 |
+
'_yoast_wpseo_title' => get_post_meta( $this->post_id, '_yoast_wpseo_title', true ),
|
108 |
+
'_yoast_wpseo_metadesc' => get_post_meta( $this->post_id, '_yoast_wpseo_metadesc', true ),
|
109 |
+
'_yoast_wpseo_focuskw' => get_post_meta( $this->post_id, '_yoast_wpseo_focuskw', true ),
|
110 |
+
'_yst_is_cornerstone' => get_post_meta( $this->post_id, '_yst_is_cornerstone', true ),
|
111 |
+
'_yoast_wpseo_meta-robots-noindex' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-noindex', true ),
|
112 |
'_yoast_wpseo_meta-robots-nofollow' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-nofollow', true ),
|
113 |
+
'_yoast_wpseo_meta-robots-adv' => get_post_meta( $this->post_id, '_yoast_wpseo_meta-robots-adv', true ),
|
114 |
+
'_yoast_wpseo_canonical' => get_post_meta( $this->post_id, '_yoast_wpseo_canonical', true ),
|
115 |
);
|
116 |
}
|
117 |
|
154 |
* @return array $editor_link - Name and value link.
|
155 |
*/
|
156 |
private function get_editor_link( $post_id ) {
|
157 |
+
$value = get_edit_post_link( $post_id );
|
158 |
$editor_link = array(
|
159 |
+
'name' => 'EditorLinkPost',
|
160 |
'value' => $value,
|
161 |
);
|
162 |
return $editor_link;
|
168 |
protected function check_seo_data_change() {
|
169 |
// Set filter input args.
|
170 |
$filter_input_args = array(
|
171 |
+
'post_ID' => FILTER_VALIDATE_INT,
|
172 |
+
'_wpnonce' => FILTER_SANITIZE_STRING,
|
173 |
+
'action' => FILTER_SANITIZE_STRING,
|
174 |
+
'yoast_wpseo_title' => FILTER_SANITIZE_STRING,
|
175 |
+
'yoast_wpseo_metadesc' => FILTER_SANITIZE_STRING,
|
176 |
+
'yoast_wpseo_focuskw' => FILTER_SANITIZE_STRING,
|
177 |
+
'_yst_is_cornerstone' => FILTER_VALIDATE_INT,
|
178 |
+
'yoast_wpseo_meta-robots-noindex' => FILTER_VALIDATE_INT,
|
179 |
'yoast_wpseo_meta-robots-nofollow' => FILTER_VALIDATE_INT,
|
180 |
+
'yoast_wpseo_meta-robots-adv' => array(
|
181 |
'flags' => FILTER_REQUIRE_ARRAY,
|
182 |
),
|
183 |
+
'yoast_wpseo_canonical' => FILTER_VALIDATE_URL,
|
184 |
);
|
185 |
|
186 |
// Filter POST global array.
|
216 |
return;
|
217 |
}
|
218 |
|
219 |
+
// Remove whitespaces at the ends of the titles.
|
220 |
+
$old_title = trim( $old_title );
|
221 |
+
$title = trim( $title );
|
222 |
+
|
223 |
// If title is changed then log alert.
|
224 |
if ( $old_title !== $title ) {
|
225 |
$editor_link = $this->get_editor_link( $this->post_id );
|
226 |
$this->plugin->alerts->Trigger(
|
227 |
8801, array(
|
228 |
+
'PostID' => $this->post->ID,
|
229 |
+
'PostType' => $this->post->post_type,
|
230 |
+
'PostTitle' => $this->post->post_title,
|
231 |
+
'PostStatus' => $this->post->post_status,
|
232 |
+
'PostDate' => $this->post->post_date,
|
233 |
+
'PostUrl' => get_permalink( $this->post->ID ),
|
234 |
+
'OldSEOTitle' => $old_title,
|
235 |
+
'NewSEOTitle' => $title,
|
236 |
$editor_link['name'] => $editor_link['value'],
|
237 |
+
'ReportText' => $old_title . '|' . $title,
|
238 |
)
|
239 |
);
|
240 |
}
|
247 |
*/
|
248 |
protected function check_desc_change( $desc ) {
|
249 |
// Get old desc value.
|
250 |
+
$old_desc = esc_html( $this->get_post_seo_data( 'metadesc' ) );
|
251 |
+
$desc = esc_html( $desc );
|
252 |
|
253 |
// If old and new values are empty then don't log the alert.
|
254 |
if ( empty( $old_desc ) && empty( $desc ) ) {
|
260 |
$editor_link = $this->get_editor_link( $this->post_id );
|
261 |
$this->plugin->alerts->Trigger(
|
262 |
8802, array(
|
263 |
+
'PostID' => $this->post->ID,
|
264 |
+
'PostType' => $this->post->post_type,
|
265 |
+
'PostTitle' => $this->post->post_title,
|
266 |
+
'PostStatus' => $this->post->post_status,
|
267 |
+
'PostDate' => $this->post->post_date,
|
268 |
+
'PostUrl' => get_permalink( $this->post->ID ),
|
269 |
+
'old_desc' => $old_desc,
|
270 |
+
'new_desc' => $desc,
|
271 |
$editor_link['name'] => $editor_link['value'],
|
272 |
+
'ReportText' => $old_desc . '|' . $desc,
|
273 |
)
|
274 |
);
|
275 |
}
|
799 |
}
|
800 |
}
|
801 |
}
|
|
classes/Settings.php
CHANGED
@@ -1917,4 +1917,44 @@ class WSAL_Settings {
|
|
1917 |
return '*' . esc_html( $value ) . '*';
|
1918 |
}
|
1919 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1920 |
}
|
1917 |
return '*' . esc_html( $value ) . '*';
|
1918 |
}
|
1919 |
}
|
1920 |
+
|
1921 |
+
/**
|
1922 |
+
* Checks Infinite Scroll.
|
1923 |
+
*
|
1924 |
+
* Returns true if infinite scroll is enabled.
|
1925 |
+
*
|
1926 |
+
* @since 3.3.1.1
|
1927 |
+
*
|
1928 |
+
* @return boolean
|
1929 |
+
*/
|
1930 |
+
public function is_infinite_scroll() {
|
1931 |
+
return 'infinite-scroll' === $this->get_events_type_nav() ? true : false;
|
1932 |
+
}
|
1933 |
+
|
1934 |
+
/**
|
1935 |
+
* Checks Events Navigation Type.
|
1936 |
+
*
|
1937 |
+
* Returns type of navigation for events log viewer.
|
1938 |
+
*
|
1939 |
+
* @since 3.3.1.1
|
1940 |
+
*
|
1941 |
+
* @return string
|
1942 |
+
*/
|
1943 |
+
public function get_events_type_nav() {
|
1944 |
+
return $this->_plugin->GetGlobalOption( 'events-nav-type', 'infinite-scroll' );
|
1945 |
+
}
|
1946 |
+
|
1947 |
+
/**
|
1948 |
+
* Sets Events Navigation Type.
|
1949 |
+
*
|
1950 |
+
* Sets type of navigation for events log viewer.
|
1951 |
+
*
|
1952 |
+
* @since 3.3.1.1
|
1953 |
+
*
|
1954 |
+
* @param string $nav_type - Navigation type.
|
1955 |
+
* @return string
|
1956 |
+
*/
|
1957 |
+
public function set_events_type_nav( $nav_type ) {
|
1958 |
+
$this->_plugin->SetGlobalOption( 'events-nav-type', $nav_type );
|
1959 |
+
}
|
1960 |
}
|
classes/Views/AuditLog.php
CHANGED
@@ -45,6 +45,15 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
45 |
*/
|
46 |
private $adverts;
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
/**
|
49 |
* Method: Constructor
|
50 |
*
|
@@ -69,6 +78,10 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
69 |
add_filter( 'wsal_pointers_toplevel_page_wsal-auditlog', array( $this, 'register_privacy_pointer' ), 10, 1 );
|
70 |
add_action( 'admin_init', array( $this, 'handle_form_submission' ) );
|
71 |
|
|
|
|
|
|
|
|
|
72 |
// Check plugin version for to dismiss the notice only until upgrade.
|
73 |
$this->_version = WSAL_VERSION;
|
74 |
|
@@ -270,8 +283,27 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
270 |
* Method: Get View.
|
271 |
*/
|
272 |
protected function GetListView() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
if ( is_null( $this->_listview ) ) {
|
274 |
-
$this->_listview = new WSAL_AuditLogListView( $this->_plugin );
|
275 |
}
|
276 |
return $this->_listview;
|
277 |
}
|
@@ -345,23 +377,34 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
345 |
check_admin_referer( 'bulk-logs' );
|
346 |
}
|
347 |
|
348 |
-
// @codingStandardsIgnoreStart
|
349 |
-
$wsal_page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : false; // Admin WSAL Page.
|
350 |
-
$site_id = isset( $_GET['wsal-cbid'] ) ? (int) sanitize_text_field( $_GET['wsal-cbid'] ) : false; // Site id.
|
351 |
-
$search_term = ( isset( $_REQUEST['s'] ) && ! empty( $_REQUEST['s'] ) ) ? trim( sanitize_text_field( $_REQUEST['s'] ) ) : false;
|
352 |
-
$search_filters = ( isset( $_REQUEST['Filters'] ) && is_array( $_REQUEST['Filters'] ) ) ? array_map( 'sanitize_text_field', $_REQUEST['Filters'] ) : false;
|
353 |
-
// @codingStandardsIgnoreEnd
|
354 |
-
|
355 |
$this->GetListView()->prepare_items();
|
356 |
-
|
357 |
?>
|
358 |
<form id="audit-log-viewer" method="get">
|
359 |
<div id="audit-log-viewer-content">
|
360 |
-
<input type="hidden" name="page" value="<?php echo esc_attr( $
|
361 |
-
<input type="hidden" id="wsal-cbid" name="wsal-cbid" value="<?php echo esc_attr( empty( $site_id ) ? '0' : $site_id ); ?>" />
|
362 |
-
<?php
|
363 |
-
|
364 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
</div>
|
366 |
</form>
|
367 |
|
@@ -403,7 +446,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
403 |
|
404 |
<?php
|
405 |
if ( class_exists( 'WSAL_SearchExtension' ) &&
|
406 |
-
( ! empty( $search_filters ) || ( ! empty( $search_term ) && trim( $search_term ) ) ) ) :
|
407 |
?>
|
408 |
<script type="text/javascript">
|
409 |
jQuery(document).ready( function() {
|
@@ -441,7 +484,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
441 |
'searchnone' => __( 'No Results', 'wp-security-audit-log' ),
|
442 |
),
|
443 |
'autorefresh' => array(
|
444 |
-
'enabled' => $this->_plugin->settings->IsRefreshAlertsEnabled(),
|
445 |
'token' => $this->GetListView()->get_total_items(),
|
446 |
),
|
447 |
)
|
@@ -519,7 +562,7 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
519 |
$is_archive = false;
|
520 |
if ( $this->_plugin->settings->IsArchivingEnabled() ) {
|
521 |
$selected_db = get_transient( 'wsal_wp_selected_db' );
|
522 |
-
if ( $selected_db && 'archive'
|
523 |
$is_archive = true;
|
524 |
}
|
525 |
}
|
@@ -820,7 +863,8 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
820 |
'darktooltip', // Identifier.
|
821 |
$this->_plugin->GetBaseUrl() . '/js/jquery.darktooltip.js', // Script location.
|
822 |
array( 'jquery' ), // Depends on jQuery.
|
823 |
-
'0.4.0' // Script version.
|
|
|
824 |
);
|
825 |
|
826 |
// Remodal script.
|
@@ -832,15 +876,29 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
832 |
true
|
833 |
);
|
834 |
|
|
|
835 |
wp_enqueue_script( 'suggest' );
|
836 |
|
837 |
// Audit log script.
|
838 |
-
|
839 |
'auditlog',
|
840 |
$this->_plugin->GetBaseUrl() . '/js/auditlog.js',
|
841 |
array(),
|
842 |
-
filemtime( $this->_plugin->GetBaseDir() . '/js/auditlog.js' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
);
|
|
|
|
|
844 |
}
|
845 |
|
846 |
/**
|
@@ -1062,4 +1120,34 @@ class WSAL_Views_AuditLog extends WSAL_AbstractView {
|
|
1062 |
$this->_plugin->SetGlobalOption( 'dismissed-privacy-notice', $dismissed );
|
1063 |
wp_die( 1 );
|
1064 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
}
|
45 |
*/
|
46 |
private $adverts;
|
47 |
|
48 |
+
/**
|
49 |
+
* Audit Log View Arguments.
|
50 |
+
*
|
51 |
+
* @since 3.3.1.1
|
52 |
+
*
|
53 |
+
* @var stdClass
|
54 |
+
*/
|
55 |
+
private $page_args;
|
56 |
+
|
57 |
/**
|
58 |
* Method: Constructor
|
59 |
*
|
78 |
add_filter( 'wsal_pointers_toplevel_page_wsal-auditlog', array( $this, 'register_privacy_pointer' ), 10, 1 );
|
79 |
add_action( 'admin_init', array( $this, 'handle_form_submission' ) );
|
80 |
|
81 |
+
if ( $this->_plugin->settings->is_infinite_scroll() ) {
|
82 |
+
add_action( 'wp_ajax_wsal_infinite_scroll_events', array( $this, 'infinite_scroll_events' ) );
|
83 |
+
}
|
84 |
+
|
85 |
// Check plugin version for to dismiss the notice only until upgrade.
|
86 |
$this->_version = WSAL_VERSION;
|
87 |
|
283 |
* Method: Get View.
|
284 |
*/
|
285 |
protected function GetListView() {
|
286 |
+
// Set page arguments.
|
287 |
+
if ( ! $this->page_args ) {
|
288 |
+
$this->page_args = new stdClass();
|
289 |
+
|
290 |
+
// @codingStandardsIgnoreStart
|
291 |
+
$this->page_args->page = isset( $_REQUEST['page'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['page'] ) ) : false;
|
292 |
+
$this->page_args->site_id = isset( $_REQUEST['wsal-cbid'] ) ? (int) sanitize_text_field( wp_unslash( $_REQUEST['wsal-cbid'] ) ) : false;
|
293 |
+
|
294 |
+
// Order arguments.
|
295 |
+
$this->page_args->order_by = isset( $_REQUEST['orderby'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['orderby'] ) ) : false;
|
296 |
+
$this->page_args->order = isset( $_REQUEST['order'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['order'] ) ) : false;
|
297 |
+
|
298 |
+
// Search arguments.
|
299 |
+
$this->page_args->search_term = ( isset( $_REQUEST['s'] ) && ! empty( $_REQUEST['s'] ) ) ? trim( sanitize_text_field( wp_unslash( $_REQUEST['s'] ) ) ) : false;
|
300 |
+
$this->page_args->search_filters = ( isset( $_REQUEST['filters'] ) && is_array( $_REQUEST['filters'] ) ) ? array_map( 'sanitize_text_field', wp_unslash( $_REQUEST['filters'] ) ) : false;
|
301 |
+
// @codingStandardsIgnoreEnd
|
302 |
+
}
|
303 |
+
|
304 |
+
// Set events listing view class.
|
305 |
if ( is_null( $this->_listview ) ) {
|
306 |
+
$this->_listview = new WSAL_AuditLogListView( $this->_plugin, $this->page_args );
|
307 |
}
|
308 |
return $this->_listview;
|
309 |
}
|
377 |
check_admin_referer( 'bulk-logs' );
|
378 |
}
|
379 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
$this->GetListView()->prepare_items();
|
|
|
381 |
?>
|
382 |
<form id="audit-log-viewer" method="get">
|
383 |
<div id="audit-log-viewer-content">
|
384 |
+
<input type="hidden" name="page" value="<?php echo esc_attr( $this->page_args->page ); ?>" />
|
385 |
+
<input type="hidden" id="wsal-cbid" name="wsal-cbid" value="<?php echo esc_attr( empty( $this->page_args->site_id ) ? '0' : $this->page_args->site_id ); ?>" />
|
386 |
+
<?php
|
387 |
+
/**
|
388 |
+
* Hook: `wsal_auditlog_before_view`
|
389 |
+
*
|
390 |
+
* This action hook is triggered before displaying the audit log view.
|
391 |
+
*
|
392 |
+
* @param WSAL_AuditLogListView $this->_listview - Audit log list view object.
|
393 |
+
*/
|
394 |
+
do_action( 'wsal_auditlog_before_view', $this->GetListView() );
|
395 |
+
|
396 |
+
// Display the audit log list.
|
397 |
+
$this->GetListView()->display();
|
398 |
+
|
399 |
+
/**
|
400 |
+
* Hook: `wsal_auditlog_after_view`
|
401 |
+
*
|
402 |
+
* This action hook is triggered after displaying the audit log view.
|
403 |
+
*
|
404 |
+
* @param WSAL_AuditLogListView $this->_listview - Audit log list view object.
|
405 |
+
*/
|
406 |
+
do_action( 'wsal_auditlog_after_view', $this->GetListView() );
|
407 |
+
?>
|
408 |
</div>
|
409 |
</form>
|
410 |
|
446 |
|
447 |
<?php
|
448 |
if ( class_exists( 'WSAL_SearchExtension' ) &&
|
449 |
+
( ! empty( $this->page_args->search_filters ) || ( ! empty( $this->page_args->search_term ) && trim( $this->page_args->search_term ) ) ) ) :
|
450 |
?>
|
451 |
<script type="text/javascript">
|
452 |
jQuery(document).ready( function() {
|
484 |
'searchnone' => __( 'No Results', 'wp-security-audit-log' ),
|
485 |
),
|
486 |
'autorefresh' => array(
|
487 |
+
'enabled' => ! $this->_plugin->settings->is_infinite_scroll() ? $this->_plugin->settings->IsRefreshAlertsEnabled() : false,
|
488 |
'token' => $this->GetListView()->get_total_items(),
|
489 |
),
|
490 |
)
|
562 |
$is_archive = false;
|
563 |
if ( $this->_plugin->settings->IsArchivingEnabled() ) {
|
564 |
$selected_db = get_transient( 'wsal_wp_selected_db' );
|
565 |
+
if ( $selected_db && 'archive' === $selected_db ) {
|
566 |
$is_archive = true;
|
567 |
}
|
568 |
}
|
863 |
'darktooltip', // Identifier.
|
864 |
$this->_plugin->GetBaseUrl() . '/js/jquery.darktooltip.js', // Script location.
|
865 |
array( 'jquery' ), // Depends on jQuery.
|
866 |
+
'0.4.0', // Script version.
|
867 |
+
true
|
868 |
);
|
869 |
|
870 |
// Remodal script.
|
876 |
true
|
877 |
);
|
878 |
|
879 |
+
// WP Suggest Script.
|
880 |
wp_enqueue_script( 'suggest' );
|
881 |
|
882 |
// Audit log script.
|
883 |
+
wp_register_script(
|
884 |
'auditlog',
|
885 |
$this->_plugin->GetBaseUrl() . '/js/auditlog.js',
|
886 |
array(),
|
887 |
+
filemtime( $this->_plugin->GetBaseDir() . '/js/auditlog.js' ),
|
888 |
+
true
|
889 |
+
);
|
890 |
+
$audit_log_data = array(
|
891 |
+
'page' => isset( $this->page_args->page ) ? $this->page_args->page : false,
|
892 |
+
'siteId' => isset( $this->page_args->site_id ) ? $this->page_args->site_id : false,
|
893 |
+
'orderBy' => isset( $this->page_args->order_by ) ? $this->page_args->order_by : false,
|
894 |
+
'order' => isset( $this->page_args->order ) ? $this->page_args->order : false,
|
895 |
+
'searchTerm' => isset( $this->page_args->search_term ) ? $this->page_args->search_term : false,
|
896 |
+
'searchFilters' => isset( $this->page_args->search_filters ) ? $this->page_args->search_filters : false,
|
897 |
+
'viewerNonce' => wp_create_nonce( 'wsal_auditlog_viewer_nonce' ),
|
898 |
+
'infiniteScroll' => $this->_plugin->settings->is_infinite_scroll(),
|
899 |
);
|
900 |
+
wp_localize_script( 'auditlog', 'wsalAuditLogArgs', $audit_log_data );
|
901 |
+
wp_enqueue_script( 'auditlog' );
|
902 |
}
|
903 |
|
904 |
/**
|
1120 |
$this->_plugin->SetGlobalOption( 'dismissed-privacy-notice', $dismissed );
|
1121 |
wp_die( 1 );
|
1122 |
}
|
1123 |
+
|
1124 |
+
/**
|
1125 |
+
* Infinite Scroll Events AJAX Hanlder.
|
1126 |
+
*
|
1127 |
+
* @since 3.3.1.1
|
1128 |
+
*/
|
1129 |
+
public function infinite_scroll_events() {
|
1130 |
+
// Check user permissions.
|
1131 |
+
if ( ! $this->_plugin->settings->CurrentUserCan( 'view' ) ) {
|
1132 |
+
die( esc_html__( 'Access Denied', 'wp-security-audit-log' ) );
|
1133 |
+
}
|
1134 |
+
|
1135 |
+
// Verify nonce.
|
1136 |
+
if ( isset( $_POST['wsal_viewer_security'] ) && wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['wsal_viewer_security'] ) ), 'wsal_auditlog_viewer_nonce' ) ) {
|
1137 |
+
// Get $_POST arguments.
|
1138 |
+
$paged = isset( $_POST['page_number'] ) ? sanitize_text_field( wp_unslash( $_POST['page_number'] ) ) : 0;
|
1139 |
+
$per_page = 25;
|
1140 |
+
|
1141 |
+
// Query events.
|
1142 |
+
$events_query = $this->GetListView()->query_events( $paged );
|
1143 |
+
if ( isset( $events_query['items'] ) ) {
|
1144 |
+
foreach ( $events_query['items'] as $event ) {
|
1145 |
+
$this->GetListView()->single_row( $event );
|
1146 |
+
}
|
1147 |
+
}
|
1148 |
+
exit();
|
1149 |
+
} else {
|
1150 |
+
die( esc_html__( 'Nonce verification failed.', 'wp-security-audit-log' ) );
|
1151 |
+
}
|
1152 |
+
}
|
1153 |
}
|
classes/Views/Settings.php
CHANGED
@@ -442,6 +442,40 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
|
|
442 |
?>
|
443 |
<p class="description"><?php echo wp_kses( __( 'Need help with setting up the plugin to meet your requirements? <a href="https://www.wpsecurityauditlog.com/contact/" target="_blank">Schedule a 20 minutes consultation and setup call</a> with our experts for just $50.', 'wp-security-audit-log' ), $this->_plugin->allowed_html_tags ); ?></p>
|
444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
<h3><?php esc_html_e( 'Display latest events widget in Dashboard & Admin bar', 'wp-security-audit-log' ); ?></h3>
|
446 |
<p class="description">
|
447 |
<?php
|
@@ -801,6 +835,7 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
|
|
801 |
// Get $_POST global array.
|
802 |
$post_array = filter_input_array( INPUT_POST );
|
803 |
|
|
|
804 |
$this->_plugin->settings->set_use_email( sanitize_text_field( $post_array['use-email'] ) );
|
805 |
$this->_plugin->settings->SetFromEmail( sanitize_email( $post_array['FromEmail'] ) );
|
806 |
$this->_plugin->settings->SetDisplayName( sanitize_text_field( $post_array['DisplayName'] ) );
|
@@ -1553,21 +1588,16 @@ class WSAL_Views_Settings extends WSAL_AbstractView {
|
|
1553 |
<td>
|
1554 |
<input type="hidden" id="wsal-scan-now-nonce" name="wsal_scan_now_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-scan-now' ) ); ?>" />
|
1555 |
<input type="hidden" id="wsal-stop-scan-nonce" name="wsal_stop_scan_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-stop-scan' ) ); ?>" />
|
1556 |
-
<?php if ( ! $this->scan_settings['scan_in_progress'] ) : ?>
|
1557 |
-
<
|
1558 |
-
|
1559 |
-
|
1560 |
-
<
|
1561 |
-
|
1562 |
-
</a>
|
1563 |
-
<?php else : ?>
|
1564 |
-
<a href="javascript:;" class="button button-primary" id="wsal-scan-now" disabled>
|
1565 |
-
<?php esc_attr_e( 'Scan in Progress', 'wp-security-audit-log' ); ?>
|
1566 |
-
</a>
|
1567 |
-
<a href="javascript:;" class="button button-ui-primary" id="wsal-stop-scan">
|
1568 |
-
<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>
|
1569 |
-
</a>
|
1570 |
<!-- Scan in progress -->
|
|
|
|
|
|
|
1571 |
<?php endif; ?>
|
1572 |
</td>
|
1573 |
</tr>
|
442 |
?>
|
443 |
<p class="description"><?php echo wp_kses( __( 'Need help with setting up the plugin to meet your requirements? <a href="https://www.wpsecurityauditlog.com/contact/" target="_blank">Schedule a 20 minutes consultation and setup call</a> with our experts for just $50.', 'wp-security-audit-log' ), $this->_plugin->allowed_html_tags ); ?></p>
|
444 |
|
445 |
+
<h3><?php esc_html_e( 'Use infinite scroll or pagination for the event viewer?', 'wp-security-audit-log' ); ?></h3>
|
446 |
+
<p class="description">
|
447 |
+
<?php
|
448 |
+
echo sprintf(
|
449 |
+
/* translators: Learn more link. */
|
450 |
+
esc_html__( 'When using infinite scroll the event viewer and search results %s load up much faster and require less resources.', 'wp-security-audit-log' ),
|
451 |
+
'<a href="https://www.wpsecurityauditlog.com/premium-features/search-filters-wordpress-activity-log/" target="_blank">' . esc_html__( '(Premium feature)', 'wp-security-audit-log' ) . '</a>'
|
452 |
+
);
|
453 |
+
?>
|
454 |
+
</p>
|
455 |
+
<table class="form-table wsal-tab">
|
456 |
+
<tbody>
|
457 |
+
<tr>
|
458 |
+
<th><label for="infinite-scroll"><?php esc_html_e( 'Select event viewer view type:', 'wp-security-audit-log' ); ?></label></th>
|
459 |
+
<td>
|
460 |
+
<fieldset>
|
461 |
+
<label for="infinite-scroll">
|
462 |
+
<input type="radio" name="events-type-nav" value="infinite-scroll" id="infinite-scroll" <?php checked( $this->_plugin->settings->get_events_type_nav(), 'infinite-scroll' ); ?> />
|
463 |
+
<?php esc_html_e( 'Infinite Scroll (Recommended)', 'wp-security-audit-log' ); ?>
|
464 |
+
</label>
|
465 |
+
<br/>
|
466 |
+
<label for="pagination">
|
467 |
+
<input type="radio" name="events-type-nav" value="pagination" id="pagination" <?php checked( $this->_plugin->settings->get_events_type_nav(), 'pagination' ); ?> />
|
468 |
+
<?php esc_html_e( 'Pagination', 'wp-security-audit-log' ); ?>
|
469 |
+
</label>
|
470 |
+
<br />
|
471 |
+
</fieldset>
|
472 |
+
</td>
|
473 |
+
</tr>
|
474 |
+
<!-- / Reverse Proxy / Firewall Options -->
|
475 |
+
</tbody>
|
476 |
+
</table>
|
477 |
+
<!-- Reverse Proxy -->
|
478 |
+
|
479 |
<h3><?php esc_html_e( 'Display latest events widget in Dashboard & Admin bar', 'wp-security-audit-log' ); ?></h3>
|
480 |
<p class="description">
|
481 |
<?php
|
835 |
// Get $_POST global array.
|
836 |
$post_array = filter_input_array( INPUT_POST );
|
837 |
|
838 |
+
$this->_plugin->settings->set_events_type_nav( sanitize_text_field( $post_array['events-type-nav'] ) );
|
839 |
$this->_plugin->settings->set_use_email( sanitize_text_field( $post_array['use-email'] ) );
|
840 |
$this->_plugin->settings->SetFromEmail( sanitize_email( $post_array['FromEmail'] ) );
|
841 |
$this->_plugin->settings->SetDisplayName( sanitize_text_field( $post_array['DisplayName'] ) );
|
1588 |
<td>
|
1589 |
<input type="hidden" id="wsal-scan-now-nonce" name="wsal_scan_now_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-scan-now' ) ); ?>" />
|
1590 |
<input type="hidden" id="wsal-stop-scan-nonce" name="wsal_stop_scan_nonce" value="<?php echo esc_attr( wp_create_nonce( 'wsal-stop-scan' ) ); ?>" />
|
1591 |
+
<?php if ( 'enable' === $this->scan_settings['scan_file_changes'] && ! $this->scan_settings['scan_in_progress'] ) : ?>
|
1592 |
+
<input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan Now', 'wp-security-audit-log' ); ?>">
|
1593 |
+
<input type="button" class="button button-secondary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>" disabled>
|
1594 |
+
<?php elseif ( 'enable' === $this->scan_settings['scan_file_changes'] && $this->scan_settings['scan_in_progress'] ) : ?>
|
1595 |
+
<input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan in Progress', 'wp-security-audit-log' ); ?>" disabled>
|
1596 |
+
<input type="button" class="button button-ui-primary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1597 |
<!-- Scan in progress -->
|
1598 |
+
<?php else : ?>
|
1599 |
+
<input type="button" class="button button-primary" id="wsal-scan-now" value="<?php esc_attr_e( 'Scan Now', 'wp-security-audit-log' ); ?>" disabled>
|
1600 |
+
<input type="button" class="button button-secondary" id="wsal-stop-scan" value="<?php esc_attr_e( 'Stop Scan', 'wp-security-audit-log' ); ?>" disabled>
|
1601 |
<?php endif; ?>
|
1602 |
</td>
|
1603 |
</tr>
|
classes/Views/ToggleAlerts.php
CHANGED
@@ -485,7 +485,20 @@ class WSAL_Views_ToggleAlerts extends WSAL_AbstractView {
|
|
485 |
/>
|
486 |
</th>
|
487 |
<td><?php echo esc_html( str_pad( $alert->type, 4, '0', STR_PAD_LEFT ) ); ?></td>
|
488 |
-
<td
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
489 |
<td><?php echo esc_html( $alert->desc ); ?></td>
|
490 |
</tr>
|
491 |
<?php
|
485 |
/>
|
486 |
</th>
|
487 |
<td><?php echo esc_html( str_pad( $alert->type, 4, '0', STR_PAD_LEFT ) ); ?></td>
|
488 |
+
<td>
|
489 |
+
<?php
|
490 |
+
$severity_obj = $this->_plugin->constants->GetConstantBy( 'value', $alert->code );
|
491 |
+
if ( 'E_CRITICAL' === $severity_obj->name ) {
|
492 |
+
esc_html_e( 'Critical', 'wp-security-audit-log' );
|
493 |
+
} elseif ( 'E_WARNING' === $severity_obj->name ) {
|
494 |
+
esc_html_e( 'Warning', 'wp-security-audit-log' );
|
495 |
+
} elseif ( 'E_NOTICE' === $severity_obj->name ) {
|
496 |
+
esc_html_e( 'Notification', 'wp-security-audit-log' );
|
497 |
+
} else {
|
498 |
+
esc_html_e( 'Notification', 'wp-security-audit-log' );
|
499 |
+
}
|
500 |
+
?>
|
501 |
+
</td>
|
502 |
<td><?php echo esc_html( $alert->desc ); ?></td>
|
503 |
</tr>
|
504 |
<?php
|
classes/WidgetManager.php
CHANGED
@@ -73,13 +73,9 @@ class WSAL_WidgetManager {
|
|
73 |
$results = $query->getAdapter()->Execute( $query );
|
74 |
|
75 |
?><div>
|
76 |
-
<?php
|
77 |
-
|
78 |
-
|
79 |
-
<p><?php esc_html_e( 'No alerts found.', 'wp-security-audit-log' ); ?></p>
|
80 |
-
<?php
|
81 |
-
} else {
|
82 |
-
?>
|
83 |
<table class="wp-list-table widefat" cellspacing="0" cellpadding="0"
|
84 |
style="display: block; overflow-x: auto;">
|
85 |
<thead>
|
@@ -89,8 +85,8 @@ class WSAL_WidgetManager {
|
|
89 |
<tbody>
|
90 |
<?php
|
91 |
$url = 'admin.php?page=' . $this->_plugin->views->views[0]->GetSafeViewName();
|
92 |
-
$fmt = array(
|
93 |
-
foreach ( $results as $entry )
|
94 |
?>
|
95 |
<tr>
|
96 |
<td>
|
@@ -105,14 +101,10 @@ class WSAL_WidgetManager {
|
|
105 |
</a>
|
106 |
</td>
|
107 |
</tr>
|
108 |
-
|
109 |
-
}
|
110 |
-
?>
|
111 |
</tbody>
|
112 |
</table>
|
113 |
-
|
114 |
-
}
|
115 |
-
?>
|
116 |
</div>
|
117 |
<?php
|
118 |
}
|
73 |
$results = $query->getAdapter()->Execute( $query );
|
74 |
|
75 |
?><div>
|
76 |
+
<?php if ( ! count( $results ) ) : ?>
|
77 |
+
<p><?php esc_html_e( 'No alerts found.', 'wp-security-audit-log' ); ?></p>
|
78 |
+
<?php else : ?>
|
|
|
|
|
|
|
|
|
79 |
<table class="wp-list-table widefat" cellspacing="0" cellpadding="0"
|
80 |
style="display: block; overflow-x: auto;">
|
81 |
<thead>
|
85 |
<tbody>
|
86 |
<?php
|
87 |
$url = 'admin.php?page=' . $this->_plugin->views->views[0]->GetSafeViewName();
|
88 |
+
$fmt = array( $this->_plugin->settings, 'meta_formatter' );
|
89 |
+
foreach ( $results as $entry ) :
|
90 |
?>
|
91 |
<tr>
|
92 |
<td>
|
101 |
</a>
|
102 |
</td>
|
103 |
</tr>
|
104 |
+
<?php endforeach; ?>
|
|
|
|
|
105 |
</tbody>
|
106 |
</table>
|
107 |
+
<?php endif; ?>
|
|
|
|
|
108 |
</div>
|
109 |
<?php
|
110 |
}
|
css/auditlog.css
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
.wsal-ssa input,
|
26 |
.wsal-ssa select {
|
27 |
margin-bottom: 6px;
|
28 |
-
width: 120px;
|
29 |
margin-left: 16px;
|
30 |
}
|
31 |
|
@@ -337,3 +337,63 @@ div.wsal_notice__wrapper p {
|
|
337 |
display: flex;
|
338 |
align-items: center;
|
339 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
.wsal-ssa input,
|
26 |
.wsal-ssa select {
|
27 |
margin-bottom: 6px;
|
28 |
+
/* width: 120px; */
|
29 |
margin-left: 16px;
|
30 |
}
|
31 |
|
337 |
display: flex;
|
338 |
align-items: center;
|
339 |
}
|
340 |
+
|
341 |
+
#wsal-event-loader {
|
342 |
+
text-align: center;
|
343 |
+
}
|
344 |
+
|
345 |
+
.wsal-lds-ellipsis {
|
346 |
+
display: inline-block;
|
347 |
+
position: relative;
|
348 |
+
width: 64px;
|
349 |
+
height: 64px;
|
350 |
+
}
|
351 |
+
.wsal-lds-ellipsis div {
|
352 |
+
position: absolute;
|
353 |
+
top: 27px;
|
354 |
+
width: 11px;
|
355 |
+
height: 11px;
|
356 |
+
border-radius: 50%;
|
357 |
+
background: #009344;
|
358 |
+
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
359 |
+
}
|
360 |
+
.wsal-lds-ellipsis div:nth-child(1) {
|
361 |
+
left: 6px;
|
362 |
+
animation: wsal-lds-ellipsis1 0.6s infinite;
|
363 |
+
}
|
364 |
+
.wsal-lds-ellipsis div:nth-child(2) {
|
365 |
+
left: 6px;
|
366 |
+
animation: wsal-lds-ellipsis2 0.6s infinite;
|
367 |
+
}
|
368 |
+
.wsal-lds-ellipsis div:nth-child(3) {
|
369 |
+
left: 26px;
|
370 |
+
animation: wsal-lds-ellipsis2 0.6s infinite;
|
371 |
+
}
|
372 |
+
.wsal-lds-ellipsis div:nth-child(4) {
|
373 |
+
left: 45px;
|
374 |
+
animation: wsal-lds-ellipsis3 0.6s infinite;
|
375 |
+
}
|
376 |
+
@keyframes wsal-lds-ellipsis1 {
|
377 |
+
0% {
|
378 |
+
transform: scale(0);
|
379 |
+
}
|
380 |
+
100% {
|
381 |
+
transform: scale(1);
|
382 |
+
}
|
383 |
+
}
|
384 |
+
@keyframes wsal-lds-ellipsis3 {
|
385 |
+
0% {
|
386 |
+
transform: scale(1);
|
387 |
+
}
|
388 |
+
100% {
|
389 |
+
transform: scale(0);
|
390 |
+
}
|
391 |
+
}
|
392 |
+
@keyframes wsal-lds-ellipsis2 {
|
393 |
+
0% {
|
394 |
+
transform: translate(0, 0);
|
395 |
+
}
|
396 |
+
100% {
|
397 |
+
transform: translate(19px, 0);
|
398 |
+
}
|
399 |
+
}
|
defaults.php
CHANGED
@@ -537,7 +537,7 @@ function wsaldefaults_wsal_init() {
|
|
537 |
array( 9072, E_NOTICE, __( 'User opened a product in the editor', 'wp-security-audit-log' ), __( 'Opened the %ProductStatus% product page %ProductTitle% in editor. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
538 |
array( 9073, E_NOTICE, __( 'User viewed a product', 'wp-security-audit-log' ), __( 'Viewed the %ProductStatus% product page %ProductTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
539 |
array( 9077, E_NOTICE, __( 'User renamed a product', 'wp-security-audit-log' ), __( 'Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
540 |
-
array( 9007, E_NOTICE, __( 'User changed the Product Data of a product', 'wp-security-audit-log' ), __( 'Changed the Product Type of the product %OldType% to %NewType%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
541 |
array( 9016, E_WARNING, __( 'User changed type of a price', 'wp-security-audit-log' ), __( 'Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from %OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
542 |
array( 9017, E_WARNING, __( 'User changed the SKU of a product', 'wp-security-audit-log' ), __( 'Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% to %NewSku%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
543 |
array( 9018, E_CRITICAL, __( 'User changed the stock status of a product', 'wp-security-audit-log' ), __( 'Changed the stock status of the %ProductStatus% product %ProductTitle% from %OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
537 |
array( 9072, E_NOTICE, __( 'User opened a product in the editor', 'wp-security-audit-log' ), __( 'Opened the %ProductStatus% product page %ProductTitle% in editor. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
538 |
array( 9073, E_NOTICE, __( 'User viewed a product', 'wp-security-audit-log' ), __( 'Viewed the %ProductStatus% product page %ProductTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
539 |
array( 9077, E_NOTICE, __( 'User renamed a product', 'wp-security-audit-log' ), __( 'Renamed the %ProductStatus% product from %OldTitle% to %NewTitle%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
540 |
+
array( 9007, E_NOTICE, __( 'User changed the Product Data of a product', 'wp-security-audit-log' ), __( 'Changed the Product Type of the %ProductStatus% product %ProductTitle% from %OldType% to %NewType%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
541 |
array( 9016, E_WARNING, __( 'User changed type of a price', 'wp-security-audit-log' ), __( 'Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from %OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
542 |
array( 9017, E_WARNING, __( 'User changed the SKU of a product', 'wp-security-audit-log' ), __( 'Changed the SKU of the %ProductStatus% product %ProductTitle% from %OldSku% to %NewSku%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
543 |
array( 9018, E_CRITICAL, __( 'User changed the stock status of a product', 'wp-security-audit-log' ), __( 'Changed the stock status of the %ProductStatus% product %ProductTitle% from %OldStatus% to %NewStatus%. View the product: %EditorLinkProduct%.', 'wp-security-audit-log' ) ),
|
js/auditlog.js
CHANGED
@@ -417,6 +417,42 @@ function wsal_dismiss_advert(element) {
|
|
417 |
} );
|
418 |
}
|
419 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
jQuery( document ).ready( function() {
|
421 |
|
422 |
/**
|
@@ -441,4 +477,19 @@ jQuery( document ).ready( function() {
|
|
441 |
}
|
442 |
});
|
443 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
});
|
417 |
} );
|
418 |
}
|
419 |
|
420 |
+
/**
|
421 |
+
* Load Events for Infinite Scroll.
|
422 |
+
*
|
423 |
+
* @since 3.3.1.1
|
424 |
+
*
|
425 |
+
* @param {integer} pageNumber - Log viewer page number.
|
426 |
+
*/
|
427 |
+
function wsalLoadEvents( pageNumber ) {
|
428 |
+
jQuery( '#wsal-event-loader' ).show( 'fast' );
|
429 |
+
jQuery.ajax( {
|
430 |
+
type:'POST',
|
431 |
+
url: ajaxurl,
|
432 |
+
data: {
|
433 |
+
action: 'wsal_infinite_scroll_events',
|
434 |
+
wsal_viewer_security: wsalAuditLogArgs.viewerNonce,
|
435 |
+
page_number: pageNumber,
|
436 |
+
page : wsalAuditLogArgs.page,
|
437 |
+
'wsal-cbid' : wsalAuditLogArgs.siteId,
|
438 |
+
orderby : wsalAuditLogArgs.orderBy,
|
439 |
+
order : wsalAuditLogArgs.order,
|
440 |
+
s : wsalAuditLogArgs.searchTerm,
|
441 |
+
filters : wsalAuditLogArgs.searchFilters,
|
442 |
+
},
|
443 |
+
success: function( html ) {
|
444 |
+
jQuery( '#wsal-event-loader' ).hide( '1000' );
|
445 |
+
jQuery( '#audit-log-viewer #the-list' ).append( html ); // This will be the div where our content will be loaded.
|
446 |
+
},
|
447 |
+
error: function( xhr, textStatus, error ) {
|
448 |
+
console.log( xhr.statusText );
|
449 |
+
console.log( textStatus );
|
450 |
+
console.log( error );
|
451 |
+
}
|
452 |
+
});
|
453 |
+
return false;
|
454 |
+
}
|
455 |
+
|
456 |
jQuery( document ).ready( function() {
|
457 |
|
458 |
/**
|
477 |
}
|
478 |
});
|
479 |
});
|
480 |
+
|
481 |
+
/**
|
482 |
+
* Load events for Infinite Scroll.
|
483 |
+
*
|
484 |
+
* @since 3.3.1.1
|
485 |
+
*/
|
486 |
+
if ( wsalAuditLogArgs.infiniteScroll ) {
|
487 |
+
var count = 2;
|
488 |
+
jQuery( window ).scroll( function() {
|
489 |
+
if ( jQuery( window ).scrollTop() === jQuery( document ).height() - jQuery( window ).height() ) {
|
490 |
+
wsalLoadEvents( count );
|
491 |
+
count++;
|
492 |
+
}
|
493 |
+
});
|
494 |
+
}
|
495 |
});
|
js/settings.js
CHANGED
@@ -133,7 +133,8 @@ jQuery( document ).ready( function() {
|
|
133 |
jQuery( '#wsal_remove_exception_dir' ),
|
134 |
jQuery( '#wsal_files input[type=checkbox]' ),
|
135 |
jQuery( '#wsal_files_types input[type=checkbox]' ),
|
136 |
-
jQuery( '#wsal_dirs input[type=checkbox]' )
|
|
|
137 |
];
|
138 |
|
139 |
// Update settings of file changes on page load.
|
@@ -370,7 +371,7 @@ jQuery( document ).ready( function() {
|
|
370 |
// Change button text.
|
371 |
var scan_btn = jQuery( this );
|
372 |
scan_btn.attr( 'disabled', 'disabled' );
|
373 |
-
scan_btn.
|
374 |
|
375 |
// Stop scan button.
|
376 |
var stop_scan_btn = jQuery( '#wsal-stop-scan' );
|
@@ -394,11 +395,11 @@ jQuery( document ).ready( function() {
|
|
394 |
if ( data.success ) {
|
395 |
|
396 |
// Change button text.
|
397 |
-
scan_btn.
|
398 |
scan_btn.removeAttr( 'disabled' );
|
399 |
stop_scan_btn.attr( 'disabled', 'disabled' );
|
400 |
} else {
|
401 |
-
scan_btn.
|
402 |
console.log( data.message );
|
403 |
}
|
404 |
},
|
133 |
jQuery( '#wsal_remove_exception_dir' ),
|
134 |
jQuery( '#wsal_files input[type=checkbox]' ),
|
135 |
jQuery( '#wsal_files_types input[type=checkbox]' ),
|
136 |
+
jQuery( '#wsal_dirs input[type=checkbox]' ),
|
137 |
+
jQuery( '#wsal-scan-now' )
|
138 |
];
|
139 |
|
140 |
// Update settings of file changes on page load.
|
371 |
// Change button text.
|
372 |
var scan_btn = jQuery( this );
|
373 |
scan_btn.attr( 'disabled', 'disabled' );
|
374 |
+
scan_btn.val( wsal_data.scanInProgress );
|
375 |
|
376 |
// Stop scan button.
|
377 |
var stop_scan_btn = jQuery( '#wsal-stop-scan' );
|
395 |
if ( data.success ) {
|
396 |
|
397 |
// Change button text.
|
398 |
+
scan_btn.val( wsal_data.scanNow );
|
399 |
scan_btn.removeAttr( 'disabled' );
|
400 |
stop_scan_btn.attr( 'disabled', 'disabled' );
|
401 |
} else {
|
402 |
+
scan_btn.val( wsal_data.scanFailed );
|
403 |
console.log( data.message );
|
404 |
}
|
405 |
},
|
languages/wp-security-audit-log.pot
CHANGED
@@ -3,14 +3,14 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: WP Security Audit Log\n"
|
6 |
-
"POT-Creation-Date:
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Generator: Poedit 2.
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: wp-security-audit-log.php\n"
|
@@ -21,481 +21,226 @@ msgstr ""
|
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
-
|
25 |
-
#: classes/AlertManager.php:321
|
26 |
-
#, php-format
|
27 |
-
msgid "Event with code %d has not be registered."
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: classes/AlertManager.php:376
|
31 |
-
#, php-format
|
32 |
-
msgid "Event %s already registered with WP Security Audit Log."
|
33 |
-
msgstr ""
|
34 |
-
|
35 |
-
#: classes/AlertManager.php:411
|
36 |
-
msgid ""
|
37 |
-
"You have custom events that are using the same ID or IDs which are already "
|
38 |
-
"registered in the plugin, so they have been disabled."
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: classes/AlertManager.php:414
|
42 |
-
#, php-format
|
43 |
-
msgid "%4$s to help you solve this issue."
|
44 |
-
msgstr ""
|
45 |
-
|
46 |
-
#: classes/AlertManager.php:416
|
47 |
-
msgid "ERROR:"
|
48 |
-
msgstr ""
|
49 |
-
|
50 |
-
#: classes/AlertManager.php:418
|
51 |
-
msgid "Contact us"
|
52 |
-
msgstr ""
|
53 |
-
|
54 |
-
#: classes/AuditLogListView.php:106
|
55 |
msgid "No events so far."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: classes/AuditLogListView.php:
|
59 |
msgid "Show "
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: classes/AuditLogListView.php:
|
63 |
msgid " Items"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: classes/AuditLogListView.php:
|
67 |
-
#: classes/Views/AuditLog.php:
|
68 |
msgid "All Sites"
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: classes/AuditLogListView.php:
|
72 |
msgid "Live Database"
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: classes/AuditLogListView.php:
|
76 |
msgid "Archive Database"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: classes/AuditLogListView.php:
|
80 |
-
#: classes/WidgetManager.php:86
|
81 |
msgid "User"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: classes/AuditLogListView.php:
|
85 |
msgid "Username"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: classes/AuditLogListView.php:
|
89 |
-
|
90 |
-
msgid "Event ID"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: classes/AuditLogListView.php:
|
94 |
-
#: classes/Views/Settings.php:1041 classes/Views/ToggleAlerts.php:318
|
95 |
msgid "Severity"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: classes/AuditLogListView.php:
|
99 |
msgid "Date"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: classes/AuditLogListView.php:
|
103 |
msgid "Source IP"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: classes/AuditLogListView.php:
|
107 |
msgid "Site"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: classes/AuditLogListView.php:
|
111 |
msgid "Message"
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: classes/AuditLogListView.php:
|
115 |
msgid "Click to toggle."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: classes/AuditLogListView.php:
|
119 |
-
msgid "Disable this type of
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: classes/AuditLogListView.php:
|
123 |
msgid "Unknown error code."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: classes/AuditLogListView.php:
|
127 |
-
msgid "
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: classes/AuditLogListView.php:401
|
131 |
-
msgid "Warning"
|
132 |
-
msgstr ""
|
133 |
-
|
134 |
-
#: classes/AuditLogListView.php:403
|
135 |
-
msgid "Notification"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: classes/AuditLogListView.php:
|
139 |
msgid "Unknown"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: classes/AuditLogListView.php:
|
143 |
-
msgid "Show me all activity by this User"
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: classes/AuditLogListView.php:458 classes/Views/Licensing.php:113
|
147 |
#: classes/Views/Licensing.php:153
|
148 |
msgid "Plugin"
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: classes/AuditLogListView.php:
|
152 |
msgid "Plugins"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: classes/AuditLogListView.php:
|
156 |
msgid "Website Visitor"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: classes/AuditLogListView.php:
|
160 |
-
#: classes/Views/ToggleAlerts.php:454 defaults.php:389
|
161 |
msgid "System"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: classes/AuditLogListView.php:
|
165 |
msgid "Show me all activity originating from this IP Address"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: classes/AuditLogListView.php:
|
169 |
msgid "View all details of this change"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: classes/AuditLogListView.php:
|
173 |
-
#: classes/Settings.php:1649
|
174 |
msgid "Alert Data Inspector"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: classes/AuditLogListView.php:
|
178 |
-
msgid "Download the log file"
|
179 |
-
msgstr ""
|
180 |
-
|
181 |
-
#: classes/AuditLogListView.php:667 classes/Settings.php:1613
|
182 |
msgid "Download the log file."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: classes/AuditLogListView.php:
|
186 |
-
#: classes/Settings.php:1873
|
187 |
msgid "published"
|
188 |
msgstr ""
|
189 |
|
190 |
-
|
191 |
-
#: classes/AuditLogListView.php:703 classes/Settings.php:1660
|
192 |
-
#: classes/Settings.php:1899
|
193 |
-
#, php-format
|
194 |
-
msgid "Contact us on %s for assistance"
|
195 |
-
msgstr ""
|
196 |
-
|
197 |
-
#: classes/AuditLogListView.php:901
|
198 |
-
msgid "Select All"
|
199 |
-
msgstr ""
|
200 |
-
|
201 |
-
#: classes/Connector/wp-db-custom.php:202
|
202 |
-
msgid "Error establishing a database connection"
|
203 |
-
msgstr ""
|
204 |
-
|
205 |
-
#. translators: 1: wp-config.php. 2: database host
|
206 |
-
#: classes/Connector/wp-db-custom.php:206
|
207 |
-
#, php-format
|
208 |
-
msgid ""
|
209 |
-
"This either means that the username and password information in your %1$s "
|
210 |
-
"file is incorrect or we can’t contact the database server at %2$s. "
|
211 |
-
"This could mean your host’s database server is down."
|
212 |
-
msgstr ""
|
213 |
-
|
214 |
-
#: classes/Connector/wp-db-custom.php:212
|
215 |
-
msgid "Are you sure you have the correct username and password?"
|
216 |
-
msgstr ""
|
217 |
-
|
218 |
-
#: classes/Connector/wp-db-custom.php:213
|
219 |
-
msgid "Are you sure that you have typed the correct hostname?"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: classes/Connector/wp-db-custom.php:214
|
223 |
-
msgid "Are you sure that the database server is running?"
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#. translators: %s: support forums URL
|
227 |
-
#: classes/Connector/wp-db-custom.php:219
|
228 |
-
#, php-format
|
229 |
-
msgid ""
|
230 |
-
"If you’re unsure what these terms mean you should probably contact "
|
231 |
-
"your host. If you still need help you can always visit the <a href=\"%s"
|
232 |
-
"\">WordPress Support Forums</a>."
|
233 |
-
msgstr ""
|
234 |
-
|
235 |
-
#: classes/Connector/wp-db-custom.php:220
|
236 |
-
msgid "https://wordpress.org/support/"
|
237 |
-
msgstr ""
|
238 |
-
|
239 |
-
#: classes/Loggers/Database.php:243 classes/Views/EmailNotifications.php:153
|
240 |
#: classes/Views/EmailNotifications.php:185 classes/Views/ExternalDB.php:152
|
241 |
-
#: classes/Views/ExternalDB.php:184 classes/Views/Help.php:
|
242 |
-
#: classes/Views/Help.php:
|
243 |
#: classes/Views/LogInUsers.php:186 classes/Views/Reports.php:153
|
244 |
#: classes/Views/Reports.php:185 classes/Views/Search.php:153
|
245 |
#: classes/Views/Search.php:178
|
246 |
msgid "Upgrade to Premium"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: classes/Loggers/Database.php:
|
|
|
250 |
#: classes/Views/EmailNotifications.php:186 classes/Views/ExternalDB.php:153
|
251 |
-
#: classes/Views/ExternalDB.php:185 classes/Views/Help.php:
|
252 |
#: classes/Views/LogInUsers.php:155 classes/Views/LogInUsers.php:187
|
253 |
#: classes/Views/Reports.php:154 classes/Views/Reports.php:186
|
254 |
#: classes/Views/Search.php:154 classes/Views/Search.php:179
|
255 |
msgid "More Information"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: classes/Sensors/Content.php:
|
259 |
-
#: classes/Sensors/WooCommerce.php:
|
260 |
msgid "Password Protected"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: classes/Sensors/Content.php:
|
264 |
msgid "Public"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: classes/Sensors/Content.php:
|
268 |
msgid "Private"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: classes/Sensors/
|
272 |
-
#, php-format
|
273 |
-
msgid ""
|
274 |
-
"A comment was posted in response to the post %1$s. The comment was posted by "
|
275 |
-
"%2$s"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: classes/Sensors/Public.php:629 classes/Sensors/WooCommerce.php:1748
|
279 |
msgid "In stock"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: classes/Sensors/
|
283 |
msgid "Out of stock"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: classes/
|
287 |
-
msgid "On backorder"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: classes/Sensors/WooCommerce.php:2555
|
291 |
-
msgid "Visible"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: classes/Sensors/WooCommerce.php:2555
|
295 |
-
msgid "Non-Visible"
|
296 |
-
msgstr ""
|
297 |
-
|
298 |
-
#: classes/Settings.php:464
|
299 |
msgid "This function is deprecated"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: classes/Settings.php:1561
|
303 |
-
msgid "View Order"
|
304 |
-
msgstr ""
|
305 |
-
|
306 |
-
#: classes/Settings.php:1672 classes/Settings.php:1911
|
307 |
-
msgid "plugin settings"
|
308 |
-
msgstr ""
|
309 |
-
|
310 |
-
#: classes/Settings.php:1675 classes/Settings.php:1914
|
311 |
-
msgid "contact our support"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
-
#: classes/Utilities/Emailer.php:53
|
315 |
-
#, php-format
|
316 |
-
msgid "WP Security Audit Log plugin disabled on %s"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: classes/Utilities/Emailer.php:56
|
320 |
-
msgid "Hello admin,"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: classes/Utilities/Emailer.php:61
|
324 |
-
#, php-format
|
325 |
-
msgid ""
|
326 |
-
"This is a notification to let you know that the user %1$s has deactivated "
|
327 |
-
"the plugin WP Security Audit Log on the website %2$s on %3$s."
|
328 |
-
msgstr ""
|
329 |
-
|
330 |
#: classes/Views/AuditLog.php:78
|
331 |
msgid ""
|
332 |
-
"Get instantly alerted of important changes via email, do text based searches "
|
333 |
-
"and filter results, generate reports, see who is logged in and more!"
|
334 |
-
msgstr ""
|
335 |
-
|
336 |
-
#: classes/Views/AuditLog.php:79
|
337 |
-
msgid "Upgrade to premium to unlock these powerful activity log features."
|
338 |
-
msgstr ""
|
339 |
-
|
340 |
-
#: classes/Views/AuditLog.php:82
|
341 |
-
msgid ""
|
342 |
-
"Instant email notifications, search & filters, reports, users sessions "
|
343 |
-
"management, integration tools and more!"
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: classes/Views/AuditLog.php:83
|
347 |
-
msgid ""
|
348 |
-
"Upgrade to unlock these powerful features and gain more from your activity "
|
349 |
-
"logs."
|
350 |
-
msgstr ""
|
351 |
-
|
352 |
-
#: classes/Views/AuditLog.php:86
|
353 |
-
msgid ""
|
354 |
"See who is logged in to your WordPress, create user productivity reports, "
|
355 |
"get alerted via email of important changes and more!"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: classes/Views/AuditLog.php:
|
359 |
msgid ""
|
360 |
"Unlock these powerful features and much more with the premium edition of WP "
|
361 |
"Security Audit Log."
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: classes/Views/AuditLog.php:
|
365 |
-
msgid "
|
366 |
-
msgstr ""
|
367 |
-
|
368 |
-
#: classes/Views/AuditLog.php:152
|
369 |
-
msgid "Tell me more"
|
370 |
-
msgstr ""
|
371 |
-
|
372 |
-
#: classes/Views/AuditLog.php:153
|
373 |
-
msgid "Dismiss the banner"
|
374 |
-
msgstr ""
|
375 |
-
|
376 |
-
#: classes/Views/AuditLog.php:153
|
377 |
-
msgid "Close"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: classes/Views/AuditLog.php:
|
381 |
msgid ""
|
382 |
"There are connectivity issues with the database where the WordPress activity "
|
383 |
"log is stored. The logs will be temporary buffered in the WordPress database "
|
384 |
"until the connection is fully restored."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: classes/Views/AuditLog.php:
|
388 |
-
msgid ""
|
389 |
-
"Help us improve WP Security Audit Log! Opt-in to sending us diagnostic non-"
|
390 |
-
"sensitive data about your plugin usage (<strong>no activity log data is "
|
391 |
-
"sent</strong>) and subscribe to our newsletter."
|
392 |
-
msgstr ""
|
393 |
-
|
394 |
-
#: classes/Views/AuditLog.php:199
|
395 |
-
msgid "Opt-In"
|
396 |
-
msgstr ""
|
397 |
-
|
398 |
-
#: classes/Views/AuditLog.php:201
|
399 |
-
msgid "Learn More"
|
400 |
-
msgstr ""
|
401 |
-
|
402 |
-
#: classes/Views/AuditLog.php:203 classes/Views/AuditLog.php:381
|
403 |
-
#: classes/Views/Settings.php:469 classes/Views/Settings.php:496
|
404 |
-
#: classes/Views/Settings.php:587 classes/Views/Settings.php:625
|
405 |
-
#: classes/Views/Settings.php:1107 classes/Views/Settings.php:1175
|
406 |
-
#: classes/Views/Settings.php:1835 classes/Views/Settings.php:1898
|
407 |
-
#: classes/Views/Settings.php:1926 classes/Views/Settings.php:1941
|
408 |
-
#: classes/Views/Settings.php:1951 classes/Views/SetupWizard.php:520
|
409 |
-
msgid "No"
|
410 |
-
msgstr ""
|
411 |
-
|
412 |
-
#: classes/Views/AuditLog.php:243 classes/Views/AuditLog.php:259
|
413 |
msgid "Audit Log Viewer"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: classes/Views/AuditLog.php:
|
417 |
-
#: classes/Views/Settings.php:
|
418 |
msgid "You do not have sufficient permissions to access this page."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/Views/AuditLog.php:
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: classes/Views/AuditLog.php:380 classes/Views/Settings.php:464
|
429 |
-
#: classes/Views/Settings.php:491 classes/Views/Settings.php:557
|
430 |
-
#: classes/Views/Settings.php:615 classes/Views/Settings.php:1102
|
431 |
-
#: classes/Views/Settings.php:1168 classes/Views/Settings.php:1830
|
432 |
-
#: classes/Views/Settings.php:1891 classes/Views/Settings.php:1919
|
433 |
-
#: classes/Views/Settings.php:1940 classes/Views/Settings.php:1950
|
434 |
-
#: classes/Views/SetupWizard.php:525
|
435 |
-
msgid "Yes"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: classes/Views/AuditLog.php:
|
439 |
msgid "Please enter the number of alerts you would like to see on one page:"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: classes/Views/AuditLog.php:
|
443 |
msgid "No Results"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: classes/Views/AuditLog.php:
|
447 |
msgid "No users found."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: classes/Views/AuditLog.php:
|
451 |
-
#: classes/Views/AuditLog.php:731 classes/Views/AuditLog.php:1021
|
452 |
-
#: classes/Views/Licensing.php:90 classes/Views/Settings.php:241
|
453 |
-
#: classes/Views/Settings.php:330 classes/Views/Settings.php:2097
|
454 |
-
#: classes/Views/Settings.php:2125 classes/Views/Settings.php:2155
|
455 |
-
#: classes/Views/Settings.php:2194 classes/Views/Settings.php:2196
|
456 |
-
#: classes/Views/Settings.php:2198 classes/Views/Settings.php:2305
|
457 |
-
#: classes/Views/Settings.php:2307 classes/Views/Settings.php:2309
|
458 |
-
#: classes/Views/Settings.php:2399 classes/Views/Settings.php:2479
|
459 |
-
#: classes/Views/SetupWizard.php:81
|
460 |
-
msgid "Nonce verification failed."
|
461 |
-
msgstr ""
|
462 |
-
|
463 |
-
#: classes/Views/AuditLog.php:647
|
464 |
msgid "Log file does not exist."
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: classes/Views/AuditLog.php:
|
468 |
msgid "Request to get log file failed."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: classes/Views/AuditLog.php:
|
472 |
-
msgid "
|
473 |
-
msgstr ""
|
474 |
-
|
475 |
-
#: classes/Views/AuditLog.php:778
|
476 |
-
msgid "Freemius opt choice not found."
|
477 |
-
msgstr ""
|
478 |
-
|
479 |
-
#: classes/Views/AuditLog.php:935
|
480 |
-
msgid "WordPress Activity Log"
|
481 |
-
msgstr ""
|
482 |
-
|
483 |
-
#: classes/Views/AuditLog.php:936
|
484 |
-
msgid ""
|
485 |
-
"When a user makes a change on your website the plugin will keep a record of "
|
486 |
-
"that event here. Right now there is nothing because this is a new install."
|
487 |
-
msgstr ""
|
488 |
-
|
489 |
-
#: classes/Views/AuditLog.php:937
|
490 |
-
msgid "Thank you for using WP Security Audit Log"
|
491 |
-
msgstr ""
|
492 |
-
|
493 |
-
#: classes/Views/AuditLog.php:958
|
494 |
-
msgid "Error: You do not have sufficient permissions to exclude this URL."
|
495 |
-
msgstr ""
|
496 |
-
|
497 |
-
#: classes/Views/AuditLog.php:1004
|
498 |
-
msgid "You do not have sufficient permissions to dismiss this notice."
|
499 |
msgstr ""
|
500 |
|
501 |
#: classes/Views/EmailNotifications.php:28
|
@@ -592,7 +337,7 @@ msgstr ""
|
|
592 |
|
593 |
#: classes/Views/ExternalDB.php:121
|
594 |
msgid ""
|
595 |
-
"Configure archiving rules to archive old
|
596 |
msgstr ""
|
597 |
|
598 |
#: classes/Views/ExternalDB.php:167 classes/Views/ExternalDB.php:168
|
@@ -608,19 +353,14 @@ msgid ""
|
|
608 |
msgstr ""
|
609 |
|
610 |
#: classes/Views/Help.php:30 classes/Views/Help.php:44
|
611 |
-
#: classes/Views/Help.php:86
|
612 |
msgid "Help"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: classes/Views/Help.php:
|
616 |
-
msgid "System Info"
|
617 |
-
msgstr ""
|
618 |
-
|
619 |
-
#: classes/Views/Help.php:97
|
620 |
msgid "Getting Started"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: classes/Views/Help.php:
|
624 |
msgid ""
|
625 |
"Getting started with WP Security Audit Log is really easy; once the plugin "
|
626 |
"is installed it will automatically keep a log of everything that is "
|
@@ -628,126 +368,126 @@ msgid ""
|
|
628 |
"video below for a quick overview of the plugin."
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: classes/Views/Help.php:
|
632 |
msgid "Plugin Support"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: classes/Views/Help.php:
|
636 |
msgid ""
|
637 |
"Have you encountered or noticed any issues while using WP Security Audit Log "
|
638 |
"plugin?"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: classes/Views/Help.php:
|
642 |
msgid ""
|
643 |
"Or you want to report something to us? Click any of the options below to "
|
644 |
"post on the plugin's forum or contact our support directly."
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: classes/Views/Help.php:
|
648 |
msgid "Free Support Forum"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: classes/Views/Help.php:
|
652 |
msgid "Free Support Email"
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: classes/Views/Help.php:
|
656 |
msgid "Plugin Documentation"
|
657 |
msgstr ""
|
658 |
|
659 |
-
#: classes/Views/Help.php:
|
660 |
msgid ""
|
661 |
"For more technical information about the WP Security Audit Log plugin please "
|
662 |
"visit the plugin’s knowledge base."
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: classes/Views/Help.php:
|
666 |
msgid ""
|
667 |
-
"Refer to the list of WordPress security
|
668 |
"and IDs that the plugin uses to keep a log of all the changes in the "
|
669 |
"WordPress audit log."
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: classes/Views/Help.php:
|
673 |
msgid "Plugin Website"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: classes/Views/Help.php:
|
677 |
msgid "Knowledge Base"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: classes/Views/Help.php:
|
681 |
-
msgid "List of WordPress Security
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: classes/Views/Help.php:
|
685 |
msgid "Rate WP Security Audit Log"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: classes/Views/Help.php:
|
689 |
msgid ""
|
690 |
"We work really hard to deliver a plugin that enables you to keep a record of "
|
691 |
"all the changes that are happening on your WordPress."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: classes/Views/Help.php:
|
695 |
msgid ""
|
696 |
"It takes thousands of man-hours every year and endless amount of dedication "
|
697 |
"to research, develop and maintain the free edition of WP Security Audit Log."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: classes/Views/Help.php:
|
701 |
msgid ""
|
702 |
"Therefore if you like what you see, and find WP Security Audit Log useful we "
|
703 |
"ask you nothing more than to please rate our plugin."
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: classes/Views/Help.php:
|
707 |
msgid "We appreciate every star!"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: classes/Views/Help.php:
|
711 |
msgid "Rate Plugin"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: classes/Views/Help.php:
|
715 |
msgid "See who is logged in"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: classes/Views/Help.php:
|
719 |
msgid "And remotely terminate sessions"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: classes/Views/Help.php:
|
723 |
msgid "Generate reports"
|
724 |
msgstr ""
|
725 |
|
726 |
-
#: classes/Views/Help.php:
|
727 |
msgid "Or configure automated email reports"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: classes/Views/Help.php:
|
731 |
msgid "Configure email notifications"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: classes/Views/Help.php:
|
735 |
msgid "Get instantly notified of important changes"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: classes/Views/Help.php:
|
739 |
msgid "Add Search"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: classes/Views/Help.php:
|
743 |
msgid "Easily track down suspicious behaviour"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: classes/Views/Help.php:
|
747 |
msgid "Integrate & Centralise"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: classes/Views/Help.php:
|
751 |
msgid "Export the logs to your centralised logging system"
|
752 |
msgstr ""
|
753 |
|
@@ -755,13 +495,13 @@ msgstr ""
|
|
755 |
msgid "Licensing"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: classes/Views/Licensing.php:96 classes/Views/Settings.php:
|
759 |
-
#: classes/Views/ToggleAlerts.php:
|
760 |
msgid "Settings have been saved."
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: classes/Views/Licensing.php:101 classes/Views/Settings.php:
|
764 |
-
#: classes/Views/ToggleAlerts.php:
|
765 |
msgid "Error: "
|
766 |
msgstr ""
|
767 |
|
@@ -920,115 +660,117 @@ msgid ""
|
|
920 |
"to fine tune the search results."
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: classes/Views/Settings.php:
|
924 |
-
msgid "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: classes/Views/Settings.php:
|
928 |
-
msgid "
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: classes/Views/Settings.php:
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: classes/Views/Settings.php:
|
936 |
msgid "Exclude Objects"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: classes/Views/Settings.php:
|
940 |
-
msgid "
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: classes/Views/Settings.php:
|
944 |
-
|
945 |
-
msgid "Settings"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: classes/Views/Settings.php:
|
949 |
-
msgid "
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: classes/Views/Settings.php:
|
953 |
-
|
954 |
-
msgid "
|
|
|
|
|
|
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: classes/Views/Settings.php:
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: classes/Views/Settings.php:
|
962 |
-
msgid "
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: classes/Views/Settings.php:
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: classes/Views/Settings.php:
|
970 |
-
msgid ""
|
971 |
-
"Need help with setting up the plugin to meet your requirements? <a href="
|
972 |
-
"\"https://www.wpsecurityauditlog.com/contact/\" target=\"_blank\">Schedule a "
|
973 |
-
"20 minutes consultation and setup call</a> with our experts for just $50."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: classes/Views/Settings.php:
|
977 |
-
|
|
|
978 |
msgstr ""
|
979 |
|
980 |
-
|
981 |
-
|
982 |
-
#, php-format
|
983 |
-
msgid ""
|
984 |
-
"The events widget displays the latest %d security events in the dashboard "
|
985 |
-
"and the admin bar notification displays the latest event."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: classes/Views/Settings.php:
|
989 |
-
msgid "
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: classes/Views/Settings.php:
|
993 |
-
msgid "
|
|
|
|
|
|
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: classes/Views/Settings.php:
|
997 |
-
msgid "
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: classes/Views/Settings.php:
|
1001 |
-
msgid "
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: classes/Views/Settings.php:
|
1005 |
-
msgid "
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: classes/Views/Settings.php:
|
1009 |
-
msgid "
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: classes/Views/Settings.php:
|
1013 |
-
msgid "
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: classes/Views/Settings.php:
|
1017 |
-
msgid "
|
|
|
|
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: classes/Views/Settings.php:
|
1021 |
msgid ""
|
1022 |
-
"
|
1023 |
-
"
|
1024 |
-
"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: classes/Views/Settings.php:
|
1028 |
msgid "Login Page Notification"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: classes/Views/Settings.php:
|
1032 |
msgid ""
|
1033 |
"For security and auditing purposes, a record of all of your logged-in "
|
1034 |
"actions and changes within the WordPress dashboard will be recorded in an "
|
@@ -1037,5031 +779,3297 @@ msgid ""
|
|
1037 |
"IP address where you accessed this site from."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: classes/Views/Settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1041 |
msgid "<strong>Note: </strong>"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: classes/Views/Settings.php:
|
1045 |
msgid ""
|
1046 |
"The only HTML code allowed in the login page notification is for links ( < a "
|
1047 |
-
"href
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: classes/Views/Settings.php:
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
|
|
|
|
1057 |
msgid ""
|
1058 |
-
"
|
1059 |
-
"
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: classes/Views/Settings.php:
|
1063 |
-
msgid "
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: classes/Views/Settings.php:
|
1067 |
-
msgid "
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: classes/Views/Settings.php:
|
1071 |
msgid ""
|
1072 |
-
"
|
1073 |
-
"
|
1074 |
-
"
|
|
|
|
|
|
|
1075 |
msgstr ""
|
1076 |
|
1077 |
-
#: classes/Views/Settings.php:
|
1078 |
-
msgid "
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: classes/Views/Settings.php:
|
1082 |
msgid ""
|
1083 |
-
"
|
1084 |
-
"
|
1085 |
-
"privileges from this section."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
-
#: classes/Views/Settings.php:
|
1089 |
-
msgid "
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: classes/Views/Settings.php:
|
1093 |
-
msgid "
|
|
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: classes/Views/Settings.php:
|
1097 |
-
msgid "
|
|
|
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: classes/Views/Settings.php:
|
1101 |
-
msgid "
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: classes/Views/Settings.php:
|
1105 |
-
msgid "
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: classes/Views/Settings.php:
|
1109 |
-
msgid ""
|
1110 |
-
"Specify the username or the users which can change the plugin settings. You "
|
1111 |
-
"can also specify roles."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: classes/Views/Settings.php:
|
1115 |
-
msgid "
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: classes/Views/Settings.php:
|
1119 |
-
msgid ""
|
1120 |
-
"By default only users with administrator and super administrator (multisite) "
|
1121 |
-
"role can view the WordPress activity log. Though you can allow other users "
|
1122 |
-
"with no admin role to view the events."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#: classes/Views/Settings.php:
|
1126 |
-
msgid "
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: classes/Views/Settings.php:
|
1130 |
-
msgid ""
|
1131 |
-
"Specify the username or the users which do not have an admin role but can "
|
1132 |
-
"also see the WordPress activity role. You can also specify roles."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: classes/Views/Settings.php:
|
1136 |
-
msgid "
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: classes/Views/Settings.php:
|
1140 |
-
msgid ""
|
1141 |
-
"By default when the plugin sends an email notification it uses the email "
|
1142 |
-
"address specified in this website’s general settings. Though you can change "
|
1143 |
-
"the email address and display name from this section."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: classes/Views/Settings.php:
|
1147 |
-
msgid "
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: classes/Views/Settings.php:
|
1151 |
-
|
|
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: classes/Views/Settings.php:
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: classes/Views/Settings.php:
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: classes/Views/Settings.php:
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: classes/Views/Settings.php:
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: classes/Views/Settings.php:
|
1171 |
-
msgid ""
|
1172 |
-
"By default all installed plugins are listed in the plugins page. If you do "
|
1173 |
-
"not want other administrators to see that you installed this plugin set this "
|
1174 |
-
"option to Yes so the WP Security Audit Log is not listed as an installed "
|
1175 |
-
"plugin on this website."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: classes/Views/Settings.php:
|
1179 |
-
msgid "
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: classes/Views/Settings.php:
|
1183 |
-
msgid "
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: classes/Views/Settings.php:
|
1187 |
-
msgid "
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: classes/Views/Settings.php:
|
1191 |
-
msgid ""
|
1192 |
-
"For how long do you want to keep the activity log events (Retention "
|
1193 |
-
"settings) ?"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: classes/Views/Settings.php:
|
1197 |
-
msgid ""
|
1198 |
-
"The plugin uses an efficient way to store the activity log data in the "
|
1199 |
-
"WordPress database, though the more data you keep the more disk space will "
|
1200 |
-
"be required. "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: classes/Views/Settings.php:
|
1204 |
-
msgid ""
|
1205 |
-
"<a href=\"https://www.wpsecurityauditlog.com/pricing/\" target=\"_blank"
|
1206 |
-
"\">Upgrade to Premium</a> to store the activity log data in an external "
|
1207 |
-
"database."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
|
1211 |
-
#: classes/Views/Settings.php:875
|
1212 |
-
#, php-format
|
1213 |
msgid ""
|
1214 |
-
"
|
1215 |
-
"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: classes/Views/Settings.php:
|
1219 |
-
msgid "Audit Log
|
1220 |
msgstr ""
|
1221 |
|
1222 |
-
#: classes/Views/Settings.php:
|
1223 |
-
msgid "
|
1224 |
msgstr ""
|
1225 |
|
1226 |
-
#: classes/Views/Settings.php:
|
1227 |
-
msgid "
|
|
|
|
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: classes/Views/Settings.php:
|
1231 |
-
msgid "
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: classes/Views/Settings.php:
|
1235 |
-
msgid "
|
|
|
|
|
|
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: classes/Views/Settings.php:
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: classes/Views/Settings.php:
|
1243 |
-
msgid "
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: classes/Views/Settings.php:
|
1247 |
-
msgid "
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: classes/Views/Settings.php:
|
1251 |
-
msgid "
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: classes/Views/Settings.php:
|
1255 |
msgid ""
|
1256 |
-
"
|
1257 |
-
"
|
1258 |
-
"you might notice a big difference."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: classes/Views/Settings.php:
|
1262 |
-
msgid "
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: classes/Views/Settings.php:
|
1266 |
-
msgid "
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: classes/Views/Settings.php:
|
1270 |
-
msgid "
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: classes/Views/Settings.php:
|
1274 |
msgid ""
|
1275 |
-
"
|
|
|
|
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: classes/Views/Settings.php:
|
1279 |
msgid ""
|
1280 |
-
"
|
1281 |
-
"
|
1282 |
-
"
|
1283 |
-
"back to the WordPress username."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: classes/Views/Settings.php:
|
1287 |
-
msgid "
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: classes/Views/Settings.php:
|
1291 |
-
msgid "
|
1292 |
msgstr ""
|
1293 |
|
1294 |
-
#: classes/Views/Settings.php:
|
1295 |
-
msgid "
|
|
|
|
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: classes/Views/Settings.php:
|
1299 |
-
msgid "
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: classes/Views/Settings.php:
|
1303 |
-
msgid "
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: classes/Views/Settings.php:
|
1307 |
msgid ""
|
1308 |
-
"
|
1309 |
-
"
|
1310 |
-
"all the data will be displayed."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: classes/Views/Settings.php:
|
1314 |
-
msgid "
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: classes/Views/
|
1318 |
-
msgid "
|
|
|
|
|
|
|
|
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: classes/Views/
|
1322 |
-
msgid "
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: classes/Views/
|
1326 |
-
msgid "
|
1327 |
msgstr ""
|
1328 |
|
1329 |
-
#: classes/Views/
|
1330 |
msgid ""
|
1331 |
-
"
|
1332 |
-
"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: classes/Views/
|
1336 |
-
msgid "
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: classes/Views/
|
1340 |
-
msgid "
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: classes/Views/
|
1344 |
-
msgid "
|
|
|
|
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: classes/Views/
|
1348 |
-
msgid "
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: classes/Views/
|
1352 |
msgid ""
|
1353 |
-
"
|
1354 |
-
"
|
1355 |
-
"
|
1356 |
-
"might be a lot and are irrelevant to the user."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: classes/Views/
|
1360 |
-
msgid "
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: classes/Views/
|
1364 |
msgid ""
|
1365 |
-
"
|
1366 |
-
"
|
1367 |
-
"
|
|
|
|
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: classes/Views/
|
1371 |
msgid ""
|
1372 |
-
"
|
1373 |
-
"
|
1374 |
-
"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: classes/Views/
|
1378 |
-
msgid "
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: classes/
|
1382 |
-
msgid "
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: classes/
|
1386 |
-
msgid ""
|
1387 |
-
"Which file changes events do you want to keep a log of in the activity log?"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#:
|
1391 |
-
msgid ""
|
1392 |
-
"By default the plugin will keep a log whenever a file has been added, "
|
1393 |
-
"modified or deleted. It will also log an event in the activity log when a "
|
1394 |
-
"file is too big to scan or there are too many files to scan. Click on the "
|
1395 |
-
"link to specify which of these events the plugin should keep a log of."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
-
#:
|
1399 |
-
msgid "
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#:
|
1403 |
-
msgid "
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#:
|
1407 |
-
msgid "
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#:
|
1411 |
-
msgid ""
|
1412 |
-
"By default the plugin will run file integrity scans once a week. If you can, "
|
1413 |
-
"ideally you should run file integrity scans on a daily basis. The file "
|
1414 |
-
"integrity scanner is very efficient and requires very little resources. "
|
1415 |
-
"Though if you have a fairly large website we recommend you to scan it when "
|
1416 |
-
"it is the least busy. The scan process should only take a few seconds to "
|
1417 |
-
"complete."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#:
|
1421 |
-
msgid "
|
1422 |
msgstr ""
|
1423 |
|
1424 |
-
#:
|
1425 |
-
msgid "
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#:
|
1429 |
-
msgid "
|
1430 |
msgstr ""
|
1431 |
|
1432 |
-
#:
|
1433 |
-
msgid "
|
1434 |
-
msgstr ""
|
1435 |
-
|
1436 |
-
#: classes/Views/Settings.php:1247
|
1437 |
-
msgid "Scan Time"
|
1438 |
-
msgstr ""
|
1439 |
-
|
1440 |
-
#: classes/Views/Settings.php:1253
|
1441 |
-
msgid "00:00"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#:
|
1445 |
-
msgid "
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#:
|
1449 |
-
msgid "
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#:
|
1453 |
-
msgid "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#:
|
1457 |
-
msgid "
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#:
|
1461 |
-
msgid "
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#:
|
1465 |
-
msgid "
|
1466 |
msgstr ""
|
1467 |
|
1468 |
-
#:
|
1469 |
-
msgid "
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#:
|
1473 |
-
msgid "
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#:
|
1477 |
-
msgid "
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#:
|
1481 |
-
msgid "
|
1482 |
msgstr ""
|
1483 |
|
1484 |
-
#:
|
1485 |
-
msgid "
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#:
|
1489 |
-
msgid "
|
|
|
|
|
1490 |
msgstr ""
|
1491 |
|
1492 |
-
#:
|
1493 |
-
msgid "
|
1494 |
msgstr ""
|
1495 |
|
1496 |
-
#:
|
1497 |
-
msgid "
|
|
|
|
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#:
|
1501 |
-
msgid "
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#:
|
1505 |
-
msgid "
|
|
|
|
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#:
|
1509 |
-
msgid "
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#:
|
1513 |
-
msgid "
|
|
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#:
|
1517 |
-
msgid "
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#:
|
1521 |
-
msgid "
|
|
|
|
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#:
|
1525 |
-
msgid "
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#:
|
1529 |
-
msgid "
|
|
|
|
|
1530 |
msgstr ""
|
1531 |
|
1532 |
-
#:
|
1533 |
-
msgid "
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#:
|
1537 |
-
msgid "
|
|
|
|
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
#:
|
1541 |
-
msgid "
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#:
|
1545 |
-
msgid "
|
|
|
|
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#:
|
1549 |
-
msgid "
|
1550 |
msgstr ""
|
1551 |
|
1552 |
-
#:
|
1553 |
-
msgid "
|
|
|
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#:
|
1557 |
-
msgid "
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#:
|
1561 |
-
msgid "
|
|
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
-
#:
|
1565 |
-
msgid "
|
1566 |
msgstr ""
|
1567 |
|
1568 |
-
#:
|
1569 |
-
msgid "
|
|
|
|
|
1570 |
msgstr ""
|
1571 |
|
1572 |
-
#:
|
1573 |
-
msgid "
|
1574 |
msgstr ""
|
1575 |
|
1576 |
-
#:
|
1577 |
-
msgid "
|
|
|
|
|
1578 |
msgstr ""
|
1579 |
|
1580 |
-
#:
|
1581 |
-
msgid "
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#:
|
1585 |
-
msgid "
|
|
|
|
|
1586 |
msgstr ""
|
1587 |
|
1588 |
-
#:
|
1589 |
-
msgid "
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#:
|
1593 |
-
msgid "
|
|
|
|
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#:
|
1597 |
-
msgid "
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#:
|
1601 |
-
msgid "
|
|
|
|
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#:
|
1605 |
-
msgid "
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#:
|
1609 |
-
msgid "
|
|
|
|
|
1610 |
msgstr ""
|
1611 |
|
1612 |
-
#:
|
1613 |
-
msgid "
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#:
|
1617 |
-
msgid "
|
|
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#:
|
1621 |
-
msgid "
|
1622 |
msgstr ""
|
1623 |
|
1624 |
-
#:
|
1625 |
-
msgid "
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#:
|
1629 |
-
msgid "
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#:
|
1633 |
-
msgid "
|
|
|
|
|
1634 |
msgstr ""
|
1635 |
|
1636 |
-
#:
|
1637 |
-
msgid "
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#:
|
1641 |
-
msgid "
|
|
|
|
|
|
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#:
|
1645 |
-
msgid "
|
1646 |
msgstr ""
|
1647 |
|
1648 |
-
#:
|
1649 |
-
msgid "
|
|
|
|
|
|
|
1650 |
msgstr ""
|
1651 |
|
1652 |
-
#:
|
1653 |
-
msgid "
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#:
|
1657 |
-
msgid "
|
|
|
|
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#:
|
1661 |
-
msgid "
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#:
|
1665 |
-
msgid "
|
|
|
|
|
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#:
|
1669 |
-
msgid "
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#:
|
1673 |
-
msgid "
|
|
|
|
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#:
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#:
|
1681 |
-
msgid "
|
|
|
|
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#:
|
1685 |
-
msgid "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#:
|
1689 |
-
msgid "
|
|
|
|
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#:
|
1693 |
-
msgid "
|
1694 |
msgstr ""
|
1695 |
|
1696 |
-
#:
|
1697 |
msgid ""
|
1698 |
-
"
|
1699 |
-
"
|
1700 |
-
"you do not want the plugin to scan any of these directories you can uncheck "
|
1701 |
-
"them from the below list."
|
1702 |
-
msgstr ""
|
1703 |
-
|
1704 |
-
#: classes/Views/Settings.php:1387
|
1705 |
-
msgid "Directories to scan"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#:
|
1709 |
-
msgid "
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#:
|
1713 |
-
msgid "
|
|
|
|
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#:
|
1717 |
-
msgid "
|
1718 |
msgstr ""
|
1719 |
|
1720 |
-
#:
|
1721 |
msgid ""
|
1722 |
-
"
|
|
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#:
|
1726 |
-
msgid "
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#:
|
1730 |
-
msgid "
|
|
|
|
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#:
|
1734 |
-
msgid "
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#:
|
1738 |
msgid ""
|
1739 |
-
"
|
|
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#:
|
1743 |
-
msgid "
|
1744 |
msgstr ""
|
1745 |
|
1746 |
-
#:
|
1747 |
msgid ""
|
1748 |
-
"
|
1749 |
-
"
|
1750 |
-
"getting a lot of 6032 Events, it is recommended to increase the file size "
|
1751 |
-
"limit from the below option."
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#:
|
1755 |
-
msgid "
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#:
|
1759 |
-
msgid "
|
|
|
|
|
1760 |
msgstr ""
|
1761 |
|
1762 |
-
#:
|
1763 |
-
msgid ""
|
1764 |
-
"Do you want to exclude specific files or files with a particular extension "
|
1765 |
-
"from the scan?"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#:
|
1769 |
msgid ""
|
1770 |
-
"
|
1771 |
-
"
|
1772 |
-
"recommended to scan all source code files and only exclude files that cannot "
|
1773 |
-
"be tampered, such as text files, media files etc, most of which are already "
|
1774 |
-
"excluded by default."
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#:
|
1778 |
-
msgid "
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#:
|
1782 |
-
|
1783 |
-
msgid "REMOVE"
|
1784 |
msgstr ""
|
1785 |
|
1786 |
-
#:
|
1787 |
-
|
1788 |
-
#: classes/Views/SetupWizard.php:542 classes/Views/SetupWizard.php:627
|
1789 |
-
#: classes/Views/SetupWizard.php:646 classes/Views/SetupWizard.php:665
|
1790 |
-
msgid "ADD"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#:
|
1794 |
-
msgid ""
|
1795 |
-
"Specify the name of the directory and the path to it in relation to the "
|
1796 |
-
"website's root. For example, if you want to want to exclude all files in the "
|
1797 |
-
"sub directory dir1/dir2 specify the following:"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#:
|
1801 |
-
msgid "
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#:
|
1805 |
-
msgid ""
|
1806 |
-
"Specify the name and extension of the file(s) you want to exclude. Wildcard "
|
1807 |
-
"not supported. There is no need to specify the path of the file."
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#:
|
1811 |
-
msgid "
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#:
|
1815 |
msgid ""
|
1816 |
-
"
|
1817 |
-
"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#:
|
1821 |
-
msgid "
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#:
|
1825 |
msgid ""
|
1826 |
-
"
|
1827 |
-
"
|
1828 |
-
"Note that the instant scan can be more resource intensive than scheduled "
|
1829 |
-
"scans."
|
1830 |
-
msgstr ""
|
1831 |
-
|
1832 |
-
#: classes/Views/Settings.php:1551
|
1833 |
-
msgid "Launch Instant Scan"
|
1834 |
-
msgstr ""
|
1835 |
-
|
1836 |
-
#: classes/Views/Settings.php:1558 classes/Views/Settings.php:2061
|
1837 |
-
msgid "Scan Now"
|
1838 |
msgstr ""
|
1839 |
|
1840 |
-
#:
|
1841 |
-
msgid "
|
1842 |
msgstr ""
|
1843 |
|
1844 |
-
#:
|
1845 |
-
msgid "
|
1846 |
msgstr ""
|
1847 |
|
1848 |
-
#:
|
1849 |
msgid ""
|
1850 |
-
"
|
1851 |
-
"
|
1852 |
-
"When an object is excluded from the activity log, any event in which that "
|
1853 |
-
"object is referred will not be logged in the activity log."
|
1854 |
-
msgstr ""
|
1855 |
-
|
1856 |
-
#: classes/Views/Settings.php:1653
|
1857 |
-
msgid "Exclude Users:"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
-
#:
|
1861 |
-
msgid "
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
-
msgid "
|
|
|
|
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#:
|
1869 |
-
msgid "
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#:
|
1873 |
msgid ""
|
1874 |
-
"
|
1875 |
-
"
|
1876 |
-
"types, including the default WordPress ones."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#:
|
1880 |
-
msgid "
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#:
|
1884 |
msgid ""
|
1885 |
-
"
|
1886 |
-
"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#:
|
1890 |
-
msgid "
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#:
|
1894 |
msgid ""
|
1895 |
-
"
|
1896 |
-
"
|
1897 |
-
"below:"
|
1898 |
msgstr ""
|
1899 |
|
1900 |
-
#:
|
1901 |
-
msgid "
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#:
|
1905 |
-
msgid "
|
|
|
|
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#:
|
1909 |
-
msgid "
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#:
|
1913 |
msgid ""
|
1914 |
-
"
|
1915 |
-
"
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
-
msgid ""
|
1920 |
-
"Troubleshooting setting: Keep a debug log of all the requests this website "
|
1921 |
-
"receives"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
msgid ""
|
1926 |
-
"
|
1927 |
-
"
|
1928 |
-
"request logging on a live website may degrade the performance of the website."
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#:
|
1932 |
-
msgid "
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#:
|
1936 |
msgid ""
|
1937 |
-
"
|
1938 |
-
"
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#:
|
1942 |
-
msgid "
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#:
|
1946 |
-
msgid ""
|
1947 |
-
"Click the RESET button to reset ALL plugin settings to default. Note that "
|
1948 |
-
"the activity log data will be retained and only the plugin settings will be "
|
1949 |
-
"reset. To purge the data of the activity log use the setting below."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#:
|
1953 |
-
msgid "
|
1954 |
msgstr ""
|
1955 |
|
1956 |
-
#:
|
1957 |
-
msgid "
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#:
|
1961 |
-
msgid "
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#:
|
1965 |
-
msgid ""
|
1966 |
-
"Click the Purge button below to delete all the data from the WordPress "
|
1967 |
-
"activity log and start afresh."
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#:
|
1971 |
-
msgid "
|
|
|
|
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#:
|
1975 |
-
msgid "
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#:
|
1979 |
-
msgid "
|
|
|
|
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#:
|
1983 |
-
msgid ""
|
1984 |
-
"This option is enabled automatically when the plugin detects the MainWP "
|
1985 |
-
"Child plugin on the site. When this setting is enabled plugin access is "
|
1986 |
-
"restricted to the administrator who installs the plugin, the plugin is not "
|
1987 |
-
"shown in the list of installed plugins and no admin notifications are shown. "
|
1988 |
-
"Disable this option to change the plugin to the default setup."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#:
|
1992 |
-
msgid "
|
|
|
|
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#:
|
1996 |
-
msgid "
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#:
|
2000 |
msgid ""
|
2001 |
-
"
|
2002 |
-
"
|
2003 |
-
"database so if it is installed again, you can still access the data. If the "
|
2004 |
-
"data is deleted it is not possible to recover it so you won't be able to "
|
2005 |
-
"access it again even when you reinstall the plugin."
|
2006 |
msgstr ""
|
2007 |
|
2008 |
-
#:
|
2009 |
-
msgid "
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#:
|
2013 |
-
msgid "
|
2014 |
msgstr ""
|
2015 |
|
2016 |
-
#:
|
2017 |
-
msgid "
|
2018 |
msgstr ""
|
2019 |
|
2020 |
-
#:
|
2021 |
-
msgid "
|
|
|
|
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#:
|
2025 |
-
msgid "
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#:
|
2029 |
-
msgid "
|
|
|
|
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#:
|
2033 |
-
msgid "
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#:
|
2037 |
-
msgid "
|
|
|
|
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#:
|
2041 |
-
msgid "
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#:
|
2045 |
-
msgid "
|
|
|
|
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#:
|
2049 |
-
msgid "
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#:
|
2053 |
-
msgid "
|
|
|
|
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#:
|
2057 |
-
msgid "
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#:
|
2061 |
-
msgid "
|
|
|
|
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#:
|
2065 |
-
msgid "
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#:
|
2069 |
-
msgid "
|
|
|
|
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#:
|
2073 |
-
msgid "
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#:
|
2077 |
-
msgid "
|
|
|
|
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#:
|
2081 |
-
msgid "
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#:
|
2085 |
-
msgid "
|
|
|
|
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#:
|
2089 |
-
msgid "
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#:
|
2093 |
-
msgid "
|
|
|
|
|
|
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#:
|
2097 |
-
msgid "
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#:
|
2101 |
-
msgid "
|
|
|
|
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#:
|
2105 |
-
msgid "
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#:
|
2109 |
-
msgid "
|
|
|
|
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#:
|
2113 |
-
msgid "
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#:
|
2117 |
-
msgid "
|
|
|
|
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#:
|
2121 |
-
msgid "
|
2122 |
msgstr ""
|
2123 |
|
2124 |
-
#:
|
2125 |
-
msgid "
|
|
|
|
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#:
|
2129 |
-
|
2130 |
-
msgid "Finish"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
-
#:
|
2134 |
-
msgid "
|
|
|
|
|
2135 |
msgstr ""
|
2136 |
|
2137 |
-
#:
|
2138 |
-
msgid "
|
2139 |
msgstr ""
|
2140 |
|
2141 |
-
#:
|
2142 |
-
msgid "
|
|
|
|
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#:
|
2146 |
-
msgid "
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#:
|
2150 |
-
msgid "
|
|
|
|
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#:
|
2154 |
-
msgid "
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#:
|
2158 |
msgid ""
|
2159 |
-
"
|
2160 |
-
"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#:
|
2164 |
-
msgid ""
|
2165 |
-
"Anything that can be configured in this wizard can be changed at a later "
|
2166 |
-
"stage from the plugin settings. If you are an experienced user of this "
|
2167 |
-
"plugin you can exit this wizard and configure all the settings manually."
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#:
|
2171 |
-
msgid "
|
|
|
|
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#:
|
2175 |
-
msgid "
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#:
|
2179 |
-
msgid "
|
|
|
|
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#:
|
2183 |
-
msgid ""
|
2184 |
-
"Basic (I want a high level overview and I am not interested in the detail)"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#:
|
2188 |
-
msgid "
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#:
|
2192 |
msgid ""
|
2193 |
-
"
|
2194 |
-
"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#:
|
2198 |
-
|
2199 |
-
#: classes/Views/SetupWizard.php:567 classes/Views/SetupWizard.php:568
|
2200 |
-
#: classes/Views/SetupWizard.php:687 classes/Views/SetupWizard.php:688
|
2201 |
-
msgid "Next"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#:
|
2205 |
-
msgid "
|
|
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#:
|
2209 |
-
msgid "
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#:
|
2213 |
-
msgid "
|
|
|
|
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#:
|
2217 |
-
msgid "
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#:
|
2221 |
msgid ""
|
2222 |
-
"
|
2223 |
-
"time from the plugin settings later on."
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#:
|
2227 |
-
msgid ""
|
2228 |
-
"The plugin stores the data in the WordPress database in a very efficient "
|
2229 |
-
"way, though the more data you keep the more hard disk space it will consume. "
|
2230 |
-
"If you need need to retain a lot of data we would recommend you to <a href="
|
2231 |
-
"\"https://www.wpsecurityauditlog.com/premium-features/\" target=\"_blank"
|
2232 |
-
"\">upgrade to Premium</a> and use the Database tools to store the WordPress "
|
2233 |
-
"activity log in an external database."
|
2234 |
msgstr ""
|
2235 |
|
2236 |
-
#:
|
2237 |
-
msgid ""
|
2238 |
-
"By default only the users with administrator role can access the WordPress "
|
2239 |
-
"activity log. Would you like to allow any other user or users with a role to "
|
2240 |
-
"access the WordPress activity log?"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#:
|
2244 |
-
msgid "
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#:
|
2248 |
-
msgid "
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#:
|
2252 |
-
msgid ""
|
2253 |
-
"Note: you can change the WordPress activity log privileges settings at any "
|
2254 |
-
"time from the plugin settings."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#:
|
2258 |
-
msgid ""
|
2259 |
-
"The WordPress activity log contains sensitive data such as who logged in, "
|
2260 |
-
"from where, when, and what they did."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#:
|
2264 |
-
msgid ""
|
2265 |
-
"The plugin will keep a log of everything that happens on your WordPress "
|
2266 |
-
"website. If you would like to exclude a particular user, users with a role "
|
2267 |
-
"or an IP address from the log specify them below. If not just click the Next "
|
2268 |
-
"button."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#:
|
2272 |
-
msgid "
|
|
|
|
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#:
|
2276 |
-
msgid "
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#:
|
2280 |
msgid ""
|
2281 |
-
"
|
2282 |
-
"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#:
|
2286 |
-
msgid ""
|
2287 |
-
"Your plugin is all set and it is ready to start keeping a record of "
|
2288 |
-
"everything that is happening on your WordPress in a WordPress activity log."
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#:
|
2292 |
-
msgid "
|
|
|
|
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#:
|
2296 |
-
msgid "
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#:
|
2300 |
-
msgid "
|
|
|
|
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#:
|
2304 |
-
msgid "
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#:
|
2308 |
msgid ""
|
2309 |
-
"
|
2310 |
-
"
|
2311 |
-
"feedback, <a href=\"https://www.wpsecurityauditlog.com/contact/\" target="
|
2312 |
-
"\"_blank\">please get in touch!</a>"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#:
|
2316 |
-
msgid "
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#:
|
2320 |
-
msgid "
|
|
|
|
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#:
|
2324 |
-
msgid "
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#:
|
2328 |
-
msgid "
|
|
|
|
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#:
|
2332 |
-
msgid "
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#:
|
2336 |
msgid ""
|
2337 |
-
"
|
2338 |
-
"
|
2339 |
-
"the below tabs. Refer to <a href=\"https://www.wpsecurityauditlog.com/"
|
2340 |
-
"support-documentation/list-wordpress-audit-trail-alerts/\" target=\"_blank"
|
2341 |
-
"\">the complete list of WordPress activity log event IDs</a> for reference "
|
2342 |
-
"on all the events the plugin can keep a log of."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#:
|
2346 |
-
msgid "
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#:
|
2350 |
-
msgid "
|
|
|
|
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#:
|
2354 |
-
|
2355 |
-
msgid "Custom Post Types"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#:
|
2359 |
-
|
2360 |
-
|
|
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#:
|
2364 |
-
|
2365 |
-
msgid "BBPress Forum"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#:
|
2369 |
-
|
2370 |
-
|
|
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#:
|
2374 |
-
|
2375 |
-
#: defaults.php:522
|
2376 |
-
msgid "WooCommerce Products"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#:
|
2380 |
-
|
2381 |
-
|
|
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#:
|
2385 |
-
|
2386 |
-
msgid "MultiSite"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#:
|
2390 |
-
msgid "
|
2391 |
-
|
2392 |
-
|
2393 |
-
#: classes/Views/ToggleAlerts.php:319 classes/WidgetManager.php:87
|
2394 |
-
msgid "Description"
|
2395 |
-
msgstr ""
|
2396 |
-
|
2397 |
-
#: classes/Views/ToggleAlerts.php:322 classes/Views/ToggleAlerts.php:484
|
2398 |
-
#: classes/Views/ToggleAlerts.php:599
|
2399 |
-
msgid "File Changes"
|
2400 |
-
msgstr ""
|
2401 |
-
|
2402 |
-
#: classes/Views/ToggleAlerts.php:323 defaults.php:196
|
2403 |
-
msgid "Content"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#:
|
2407 |
-
msgid ""
|
2408 |
-
"<strong>Note:</strong> Post refers to any type of content, i.e. blog post, "
|
2409 |
-
"page or a post with a custom post type."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
#:
|
2413 |
msgid ""
|
2414 |
-
"
|
2415 |
-
"been disabled."
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#:
|
2419 |
-
msgid "
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#:
|
2423 |
-
msgid ""
|
2424 |
-
"The plugin WooCommerce is not installed on your website so these events have "
|
2425 |
-
"been disabled."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#:
|
2429 |
-
msgid "
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#:
|
2433 |
msgid ""
|
2434 |
-
"
|
2435 |
-
"been disabled."
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#:
|
2439 |
-
msgid "
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#:
|
2443 |
-
msgid ""
|
2444 |
-
"Your website is a single site so the multisite events have been disabled."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#:
|
2448 |
-
msgid "User
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#:
|
2452 |
-
msgid "
|
|
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#:
|
2456 |
-
msgid "
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#:
|
2460 |
-
msgid "
|
|
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#:
|
2464 |
-
msgid "
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#:
|
2468 |
-
msgid "
|
|
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#:
|
2472 |
-
msgid "
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#:
|
2476 |
-
msgid "
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#:
|
2480 |
-
msgid "
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#:
|
2484 |
-
msgid "
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#:
|
2488 |
-
msgid "
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#:
|
2492 |
-
msgid "
|
|
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#:
|
2496 |
-
msgid "
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#:
|
2500 |
-
msgid "
|
|
|
|
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#:
|
2504 |
-
msgid "
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#:
|
2508 |
-
msgid "
|
|
|
|
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#:
|
2512 |
-
msgid "
|
2513 |
msgstr ""
|
2514 |
|
2515 |
-
#:
|
2516 |
-
msgid "
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#:
|
2520 |
-
msgid "
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#:
|
2524 |
-
msgid "
|
|
|
|
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#:
|
2528 |
-
msgid "
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#:
|
2532 |
-
msgid "
|
|
|
|
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#:
|
2536 |
-
msgid "
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#:
|
2540 |
msgid ""
|
2541 |
-
"
|
2542 |
-
"uploads/wp-security-audit-log/404s/ directory)"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
-
#:
|
2546 |
-
msgid "
|
2547 |
msgstr ""
|
2548 |
|
2549 |
-
#:
|
2550 |
msgid ""
|
2551 |
-
"
|
2552 |
-
"
|
2553 |
-
"setting to the desired amount to keep a log of more or less requests."
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#:
|
2557 |
-
msgid "
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#:
|
2561 |
msgid ""
|
2562 |
-
"
|
2563 |
-
"
|
2564 |
-
"setting to the desired amount to keep a log of more or less requests. Note "
|
2565 |
-
"that by increasing this value to a high number, should your website be "
|
2566 |
-
"scanned the plugin will consume more resources to log all the requests."
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#:
|
2570 |
-
msgid ""
|
2571 |
-
"Number of login attempts to log. Enter 0 to log all failed login attempts. "
|
2572 |
-
"(By default the plugin only logs up to 10 failed login because the process "
|
2573 |
-
"can be very resource intensive in case of a brute force attack)"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
-
#:
|
2577 |
-
msgid ""
|
2578 |
-
"Log all stock changes. Disable this setting to only keep a log of stock "
|
2579 |
-
"changes done manually via the WooCommerce dashboard. Therefore automated "
|
2580 |
-
"stock changes typically done via customers placing orders or via other "
|
2581 |
-
"plugins will not be logged."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#:
|
2585 |
-
msgid "
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#:
|
2589 |
-
msgid ""
|
2590 |
-
"The plugin also keeps a log of some events that website visitors (non-logged "
|
2591 |
-
"in users) do because it is typically required by site admins. You can "
|
2592 |
-
"disable these events from here:"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#:
|
2596 |
-
msgid "
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#:
|
2600 |
-
msgid "
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#:
|
2604 |
msgid ""
|
2605 |
-
"
|
2606 |
-
"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#:
|
2610 |
-
msgid "
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#:
|
2614 |
-
msgid "
|
|
|
|
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
|
2618 |
-
|
2619 |
-
#, php-format
|
2620 |
-
msgid "The %s log level has been successfully loaded and applied."
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#:
|
2624 |
-
msgid "
|
2625 |
msgstr ""
|
2626 |
|
2627 |
-
#:
|
2628 |
-
msgid "
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#:
|
2632 |
msgid ""
|
2633 |
-
"
|
2634 |
-
"
|
2635 |
-
msgstr ""
|
2636 |
-
|
2637 |
-
#: classes/Views/ToggleAlerts.php:692
|
2638 |
-
msgid "SWITCH ON"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#:
|
2642 |
-
msgid "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
-
#:
|
2646 |
-
msgid "
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#:
|
2650 |
-
msgid "
|
2651 |
msgstr ""
|
2652 |
|
2653 |
-
#: defaults.php:
|
2654 |
-
msgid "
|
2655 |
msgstr ""
|
2656 |
|
2657 |
-
#: defaults.php:
|
2658 |
-
msgid "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
-
#: defaults.php:
|
2662 |
-
msgid "
|
2663 |
msgstr ""
|
2664 |
|
2665 |
-
#: defaults.php:
|
2666 |
-
msgid "
|
2667 |
msgstr ""
|
2668 |
|
2669 |
-
#: defaults.php:
|
2670 |
-
msgid "
|
2671 |
msgstr ""
|
2672 |
|
2673 |
-
#: defaults.php:
|
2674 |
-
msgid "
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: defaults.php:
|
2678 |
-
msgid "
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#: defaults.php:
|
2682 |
-
msgid "
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#: defaults.php:
|
2686 |
-
msgid "
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: defaults.php:
|
2690 |
-
msgid "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#: defaults.php:
|
2694 |
-
msgid "
|
|
|
|
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: defaults.php:
|
2698 |
-
msgid "
|
2699 |
msgstr ""
|
2700 |
|
2701 |
-
#: defaults.php:
|
2702 |
-
msgid "
|
|
|
|
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: defaults.php:
|
2706 |
-
msgid "
|
2707 |
msgstr ""
|
2708 |
|
2709 |
-
#: defaults.php:
|
2710 |
-
msgid "
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: defaults.php:
|
2714 |
-
msgid "
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: defaults.php:
|
2718 |
-
msgid "
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: defaults.php:
|
2722 |
-
msgid "
|
2723 |
msgstr ""
|
2724 |
|
2725 |
-
#: defaults.php:
|
2726 |
-
msgid "User
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: defaults.php:
|
2730 |
-
msgid "
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: defaults.php:
|
2734 |
-
msgid "User
|
2735 |
msgstr ""
|
2736 |
|
2737 |
-
#: defaults.php:
|
2738 |
-
msgid "
|
|
|
|
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: defaults.php:
|
2742 |
-
msgid "
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: defaults.php:
|
2746 |
-
msgid "%
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#: defaults.php:
|
2750 |
-
msgid "
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: defaults.php:
|
2754 |
msgid ""
|
2755 |
-
"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: defaults.php:
|
2759 |
-
msgid "
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: defaults.php:
|
2763 |
msgid ""
|
2764 |
-
"
|
2765 |
-
"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: defaults.php:
|
2769 |
-
msgid "User
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: defaults.php:
|
2773 |
msgid ""
|
2774 |
-
"
|
2775 |
-
"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: defaults.php:
|
2779 |
-
msgid "
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: defaults.php:
|
2783 |
-
msgid "
|
|
|
|
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: defaults.php:
|
2787 |
-
msgid "
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: defaults.php:
|
2791 |
-
msgid "
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: defaults.php:
|
2795 |
-
msgid "
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: defaults.php:
|
2799 |
-
msgid "
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: defaults.php:
|
2803 |
-
msgid "
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: defaults.php:
|
2807 |
-
msgid "
|
|
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: defaults.php:
|
2811 |
-
msgid "
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: defaults.php:
|
2815 |
-
msgid ""
|
2816 |
-
"Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
|
2817 |
-
"%LinkFile%%URL%"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
-
#: defaults.php:
|
2821 |
-
msgid "
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: defaults.php:
|
2825 |
-
msgid ""
|
2826 |
-
"Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
|
2827 |
-
"% %Msg%. %LinkFile%%URL%"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: defaults.php:
|
2831 |
-
msgid "
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: defaults.php:
|
2835 |
msgid ""
|
2836 |
-
"
|
2837 |
-
">
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: defaults.php:
|
2841 |
-
msgid "User
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: defaults.php:
|
2845 |
-
msgid ""
|
2846 |
-
"%UserChanger% created a new user %NewUserData->Username% with the role of "
|
2847 |
-
"%NewUserData->Roles%."
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: defaults.php:
|
2851 |
-
msgid "
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: defaults.php:
|
2855 |
-
msgid ""
|
2856 |
-
"Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
|
2857 |
-
"%multisite_text%."
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: defaults.php:
|
2861 |
-
msgid "
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: defaults.php:
|
2865 |
-
msgid "
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: defaults.php:
|
2869 |
-
msgid "
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: defaults.php:
|
2873 |
msgid ""
|
2874 |
-
"
|
2875 |
-
"of %TargetUserData->Roles%."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: defaults.php:
|
2879 |
-
msgid "
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: defaults.php:
|
2883 |
-
msgid "
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: defaults.php:
|
2887 |
-
msgid "
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: defaults.php:
|
2891 |
-
msgid ""
|
2892 |
-
"Changed the email address of the user %TargetUsername% from %OldEmail% to "
|
2893 |
-
"%NewEmail%."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: defaults.php:
|
2897 |
-
|
|
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: defaults.php:
|
2901 |
-
msgid ""
|
2902 |
-
"Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
|
2903 |
-
">Roles%."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: defaults.php:
|
2907 |
-
msgid "
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: defaults.php:
|
2911 |
-
msgid "
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: defaults.php:
|
2915 |
-
msgid "
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: defaults.php:
|
2919 |
-
msgid ""
|
2920 |
-
"Changed the value of the custom field %custom_field_name%%ReportText% for "
|
2921 |
-
"the user %TargetUsername%.%ChangeText%"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: defaults.php:
|
2925 |
-
msgid "
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: defaults.php:
|
2929 |
-
msgid ""
|
2930 |
-
"Created the value of the custom field %custom_field_name% with %new_value% "
|
2931 |
-
"for the user %TargetUsername%."
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: defaults.php:
|
2935 |
-
msgid "
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: defaults.php:
|
2939 |
-
msgid ""
|
2940 |
-
"Changed the first name of the user %TargetUsername% from %old_firstname% to "
|
2941 |
-
"%new_firstname%"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: defaults.php:
|
2945 |
-
msgid "User
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: defaults.php:
|
2949 |
-
msgid ""
|
2950 |
-
"Changed the last name of the user %TargetUsername% from %old_lastname% to "
|
2951 |
-
"%new_lastname%"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: defaults.php:
|
2955 |
-
msgid "
|
|
|
|
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: defaults.php:
|
2959 |
-
msgid ""
|
2960 |
-
"Changed the nickname of the user %TargetUsername% from %old_nickname% to "
|
2961 |
-
"%new_nickname%"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
-
#: defaults.php:
|
2965 |
-
msgid "
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#: defaults.php:
|
2969 |
-
msgid ""
|
2970 |
-
"Changed the Display name publicly of user %TargetUsername% from "
|
2971 |
-
"%old_displayname% to %new_displayname%"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: defaults.php:
|
2975 |
-
msgid "
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: defaults.php:
|
2979 |
-
msgid "User
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: defaults.php:
|
2983 |
msgid ""
|
2984 |
-
"
|
2985 |
-
"%
|
2986 |
msgstr ""
|
2987 |
|
2988 |
-
#: defaults.php:
|
2989 |
-
msgid "User
|
2990 |
msgstr ""
|
2991 |
|
2992 |
-
#: defaults.php:
|
2993 |
msgid ""
|
2994 |
-
"
|
2995 |
-
"%."
|
2996 |
-
msgstr ""
|
2997 |
-
|
2998 |
-
#: defaults.php:199
|
2999 |
-
msgid "User modified a post"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: defaults.php:
|
3003 |
-
msgid ""
|
3004 |
-
"Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
3005 |
-
"%EditorLinkPost%."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: defaults.php:
|
3009 |
-
msgid "
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: defaults.php:
|
3013 |
-
msgid ""
|
3014 |
-
"Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
|
3015 |
msgstr ""
|
3016 |
|
3017 |
-
#: defaults.php:
|
3018 |
-
msgid "
|
3019 |
msgstr ""
|
3020 |
|
3021 |
-
#: defaults.php:
|
3022 |
-
msgid ""
|
3023 |
-
"Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
|
3024 |
-
"%PostUrl%."
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: defaults.php:
|
3028 |
-
msgid "
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: defaults.php:
|
3032 |
-
msgid ""
|
3033 |
-
"The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
|
3034 |
-
"URL is: %PostUrl%. %EditorLinkPost%."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: defaults.php:
|
3038 |
-
msgid "User
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: defaults.php:
|
3042 |
-
msgid ""
|
3043 |
-
"Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
|
3044 |
-
"%.%ChangeText% %EditorLinkPost%."
|
3045 |
msgstr ""
|
3046 |
|
3047 |
-
#: defaults.php:
|
3048 |
-
msgid "User
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: defaults.php:
|
3052 |
-
msgid ""
|
3053 |
-
"Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
|
3054 |
-
"%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: defaults.php:
|
3058 |
-
msgid "User
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: defaults.php:
|
3062 |
msgid ""
|
3063 |
-
"
|
3064 |
-
"%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: defaults.php:
|
3068 |
-
msgid "User
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: defaults.php:
|
3072 |
-
msgid ""
|
3073 |
-
"Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
|
3074 |
-
"from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: defaults.php:
|
3078 |
-
msgid "User changed
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: defaults.php:
|
3082 |
-
msgid ""
|
3083 |
-
"Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
|
3084 |
-
"%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: defaults.php:
|
3088 |
-
msgid "User
|
3089 |
-
msgstr ""
|
3090 |
-
|
3091 |
-
#: defaults.php:208
|
3092 |
-
msgid ""
|
3093 |
-
"Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
|
3094 |
-
"%OldParentName% to %NewParentName%. %EditorLinkPost%."
|
3095 |
-
msgstr ""
|
3096 |
-
|
3097 |
-
#: defaults.php:209
|
3098 |
-
msgid "User changed the template of a page"
|
3099 |
-
msgstr ""
|
3100 |
-
|
3101 |
-
#: defaults.php:209
|
3102 |
-
msgid ""
|
3103 |
-
"Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
|
3104 |
-
"%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
|
3105 |
-
msgstr ""
|
3106 |
-
|
3107 |
-
#: defaults.php:210
|
3108 |
-
msgid "User set a post as sticky"
|
3109 |
-
msgstr ""
|
3110 |
-
|
3111 |
-
#: defaults.php:210
|
3112 |
-
msgid ""
|
3113 |
-
"Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
|
3114 |
-
msgstr ""
|
3115 |
-
|
3116 |
-
#: defaults.php:211
|
3117 |
-
msgid "User removed post from sticky"
|
3118 |
-
msgstr ""
|
3119 |
-
|
3120 |
-
#: defaults.php:211
|
3121 |
-
msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
|
3122 |
-
msgstr ""
|
3123 |
-
|
3124 |
-
#: defaults.php:212
|
3125 |
-
msgid "User modified the content of a post"
|
3126 |
-
msgstr ""
|
3127 |
-
|
3128 |
-
#: defaults.php:212
|
3129 |
-
msgid ""
|
3130 |
-
"Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
|
3131 |
-
"URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
|
3132 |
-
msgstr ""
|
3133 |
-
|
3134 |
-
#: defaults.php:213
|
3135 |
-
msgid "User submitted a post for review"
|
3136 |
-
msgstr ""
|
3137 |
-
|
3138 |
-
#: defaults.php:213
|
3139 |
-
msgid ""
|
3140 |
-
"Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
|
3141 |
-
"%EditorLinkPost%."
|
3142 |
-
msgstr ""
|
3143 |
-
|
3144 |
-
#: defaults.php:214
|
3145 |
-
msgid "User scheduled a post"
|
3146 |
-
msgstr ""
|
3147 |
-
|
3148 |
-
#: defaults.php:214
|
3149 |
-
msgid ""
|
3150 |
-
"Scheduled the %PostType% titled %PostTitle% to be published on "
|
3151 |
-
"%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
|
3152 |
-
msgstr ""
|
3153 |
-
|
3154 |
-
#: defaults.php:215
|
3155 |
-
msgid "User changed title of a post"
|
3156 |
-
msgstr ""
|
3157 |
-
|
3158 |
-
#: defaults.php:215
|
3159 |
-
msgid ""
|
3160 |
-
"Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
|
3161 |
-
"%. URL is: %PostUrl%. %EditorLinkPost%."
|
3162 |
-
msgstr ""
|
3163 |
-
|
3164 |
-
#: defaults.php:216
|
3165 |
-
msgid "User opened a post in the editor"
|
3166 |
-
msgstr ""
|
3167 |
-
|
3168 |
-
#: defaults.php:216
|
3169 |
-
msgid ""
|
3170 |
-
"Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
|
3171 |
-
"%PostUrl%. %EditorLinkPost%."
|
3172 |
-
msgstr ""
|
3173 |
-
|
3174 |
-
#: defaults.php:217
|
3175 |
-
msgid "User viewed a post"
|
3176 |
-
msgstr ""
|
3177 |
-
|
3178 |
-
#: defaults.php:217
|
3179 |
-
msgid ""
|
3180 |
-
"Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
3181 |
-
"%EditorLinkPost%."
|
3182 |
-
msgstr ""
|
3183 |
-
|
3184 |
-
#: defaults.php:218
|
3185 |
-
msgid "A plugin modified a post"
|
3186 |
-
msgstr ""
|
3187 |
-
|
3188 |
-
#: defaults.php:218
|
3189 |
-
msgid ""
|
3190 |
-
"Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
|
3191 |
-
"%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
|
3192 |
-
msgstr ""
|
3193 |
-
|
3194 |
-
#: defaults.php:219
|
3195 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks in a post"
|
3196 |
-
msgstr ""
|
3197 |
-
|
3198 |
-
#: defaults.php:219
|
3199 |
-
msgid ""
|
3200 |
-
"Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
|
3201 |
-
"%PostUrl%. %EditorLinkPost%."
|
3202 |
-
msgstr ""
|
3203 |
-
|
3204 |
-
#: defaults.php:220
|
3205 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks in a post"
|
3206 |
-
msgstr ""
|
3207 |
-
|
3208 |
-
#: defaults.php:220
|
3209 |
-
msgid ""
|
3210 |
-
"Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
|
3211 |
-
"%PostUrl%. %EditorLinkPost%."
|
3212 |
-
msgstr ""
|
3213 |
-
|
3214 |
-
#: defaults.php:221
|
3215 |
-
msgid "User added post tag"
|
3216 |
-
msgstr ""
|
3217 |
-
|
3218 |
-
#: defaults.php:221
|
3219 |
-
msgid ""
|
3220 |
-
"Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
|
3221 |
-
"%PostUrl%. %EditorLinkPost%."
|
3222 |
-
msgstr ""
|
3223 |
-
|
3224 |
-
#: defaults.php:222
|
3225 |
-
msgid "User removed post tag"
|
3226 |
-
msgstr ""
|
3227 |
-
|
3228 |
-
#: defaults.php:222
|
3229 |
-
msgid ""
|
3230 |
-
"Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
|
3231 |
-
"%PostUrl%. %EditorLinkPost%."
|
3232 |
-
msgstr ""
|
3233 |
-
|
3234 |
-
#: defaults.php:223
|
3235 |
-
msgid "User created new tag"
|
3236 |
-
msgstr ""
|
3237 |
-
|
3238 |
-
#: defaults.php:223
|
3239 |
-
msgid "Added a new tag called %TagName%. View the tag: %TagLink%."
|
3240 |
-
msgstr ""
|
3241 |
-
|
3242 |
-
#: defaults.php:224
|
3243 |
-
msgid "User deleted tag"
|
3244 |
-
msgstr ""
|
3245 |
-
|
3246 |
-
#: defaults.php:224
|
3247 |
-
msgid "Deleted the tag %TagName%."
|
3248 |
-
msgstr ""
|
3249 |
-
|
3250 |
-
#: defaults.php:225
|
3251 |
-
msgid "User renamed tag"
|
3252 |
-
msgstr ""
|
3253 |
-
|
3254 |
-
#: defaults.php:225
|
3255 |
-
msgid "Renamed a tag from %old_name% to %new_name%. View the tag: %TagLink%."
|
3256 |
-
msgstr ""
|
3257 |
-
|
3258 |
-
#: defaults.php:226
|
3259 |
-
msgid "User changed tag slug"
|
3260 |
-
msgstr ""
|
3261 |
-
|
3262 |
-
#: defaults.php:226
|
3263 |
-
msgid ""
|
3264 |
-
"Changed the slug of tag %tag% from %old_slug% to %new_slug%. View the tag: "
|
3265 |
-
"%TagLink%."
|
3266 |
-
msgstr ""
|
3267 |
-
|
3268 |
-
#: defaults.php:227
|
3269 |
-
msgid "User changed tag description"
|
3270 |
-
msgstr ""
|
3271 |
-
|
3272 |
-
#: defaults.php:227
|
3273 |
-
msgid ""
|
3274 |
-
"Changed the description of the tag %tag%%ReportText%.%ChangeText% View the "
|
3275 |
-
"tag: %TagLink%."
|
3276 |
-
msgstr ""
|
3277 |
-
|
3278 |
-
#: defaults.php:228
|
3279 |
-
msgid "User changed post category"
|
3280 |
-
msgstr ""
|
3281 |
-
|
3282 |
-
#: defaults.php:228
|
3283 |
-
msgid ""
|
3284 |
-
"Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
|
3285 |
-
"%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
|
3286 |
-
msgstr ""
|
3287 |
-
|
3288 |
-
#: defaults.php:229
|
3289 |
-
msgid "User created new category"
|
3290 |
-
msgstr ""
|
3291 |
-
|
3292 |
-
#: defaults.php:229
|
3293 |
-
msgid ""
|
3294 |
-
"Created a new category called %CategoryName%. Category slug is %Slug%. "
|
3295 |
-
"%CategoryLink%."
|
3296 |
-
msgstr ""
|
3297 |
-
|
3298 |
-
#: defaults.php:230
|
3299 |
-
msgid "User deleted category"
|
3300 |
-
msgstr ""
|
3301 |
-
|
3302 |
-
#: defaults.php:230
|
3303 |
-
msgid ""
|
3304 |
-
"Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
|
3305 |
-
"%."
|
3306 |
-
msgstr ""
|
3307 |
-
|
3308 |
-
#: defaults.php:231
|
3309 |
-
msgid "Changed the parent of a category"
|
3310 |
-
msgstr ""
|
3311 |
-
|
3312 |
-
#: defaults.php:231
|
3313 |
-
msgid ""
|
3314 |
-
"Changed the parent of the category %CategoryName% from %OldParent% to "
|
3315 |
-
"%NewParent%. %CategoryLink%."
|
3316 |
-
msgstr ""
|
3317 |
-
|
3318 |
-
#: defaults.php:232
|
3319 |
-
msgid "User changed category name"
|
3320 |
-
msgstr ""
|
3321 |
-
|
3322 |
-
#: defaults.php:232
|
3323 |
-
msgid "Changed the name of the category %old_name% to %new_name%."
|
3324 |
-
msgstr ""
|
3325 |
-
|
3326 |
-
#: defaults.php:233
|
3327 |
-
msgid "User changed category slug"
|
3328 |
-
msgstr ""
|
3329 |
-
|
3330 |
-
#: defaults.php:233
|
3331 |
-
msgid ""
|
3332 |
-
"Changed the slug of the category %CategoryName% from %old_slug% to %new_slug"
|
3333 |
-
"%."
|
3334 |
-
msgstr ""
|
3335 |
-
|
3336 |
-
#: defaults.php:234
|
3337 |
-
msgid "User created a custom field for a post"
|
3338 |
-
msgstr ""
|
3339 |
-
|
3340 |
-
#: defaults.php:234
|
3341 |
-
msgid ""
|
3342 |
-
"Created a new custom field called %MetaKey% with value %MetaValue% in the "
|
3343 |
-
"%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
3344 |
-
"%EditorLinkPost%.<br>%MetaLink%."
|
3345 |
-
msgstr ""
|
3346 |
-
|
3347 |
-
#: defaults.php:235
|
3348 |
-
msgid "User updated a custom field value for a post"
|
3349 |
-
msgstr ""
|
3350 |
-
|
3351 |
-
#: defaults.php:235
|
3352 |
-
msgid ""
|
3353 |
-
"Modified the value of the custom field %MetaKey%%ReportText% in the "
|
3354 |
-
"%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
|
3355 |
-
"%EditorLinkPost%.<br>%MetaLink%."
|
3356 |
-
msgstr ""
|
3357 |
-
|
3358 |
-
#: defaults.php:236
|
3359 |
-
msgid "User deleted a custom field from a post"
|
3360 |
-
msgstr ""
|
3361 |
-
|
3362 |
-
#: defaults.php:236
|
3363 |
-
msgid ""
|
3364 |
-
"Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
|
3365 |
-
"%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
|
3366 |
-
msgstr ""
|
3367 |
-
|
3368 |
-
#: defaults.php:237
|
3369 |
-
msgid "User updated a custom field name for a post"
|
3370 |
-
msgstr ""
|
3371 |
-
|
3372 |
-
#: defaults.php:237
|
3373 |
-
msgid ""
|
3374 |
-
"Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
|
3375 |
-
"%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
3376 |
-
"%EditorLinkPost%.<br>%MetaLink%."
|
3377 |
-
msgstr ""
|
3378 |
-
|
3379 |
-
#: defaults.php:243
|
3380 |
-
msgid "Comments"
|
3381 |
-
msgstr ""
|
3382 |
-
|
3383 |
-
#: defaults.php:244
|
3384 |
-
msgid "User approved a comment"
|
3385 |
-
msgstr ""
|
3386 |
-
|
3387 |
-
#: defaults.php:244
|
3388 |
-
msgid ""
|
3389 |
-
"Approved the comment posted in response to the post %PostTitle% by %Author% "
|
3390 |
-
"on %CommentLink%."
|
3391 |
-
msgstr ""
|
3392 |
-
|
3393 |
-
#: defaults.php:245
|
3394 |
-
msgid "User unapproved a comment"
|
3395 |
-
msgstr ""
|
3396 |
-
|
3397 |
-
#: defaults.php:245
|
3398 |
-
msgid ""
|
3399 |
-
"Unapproved the comment posted in response to the post %PostTitle% by %Author"
|
3400 |
-
"% on %CommentLink%."
|
3401 |
-
msgstr ""
|
3402 |
-
|
3403 |
-
#: defaults.php:246
|
3404 |
-
msgid "User replied to a comment"
|
3405 |
-
msgstr ""
|
3406 |
-
|
3407 |
-
#: defaults.php:246
|
3408 |
-
msgid ""
|
3409 |
-
"Replied to the comment posted in response to the post %PostTitle% by %Author"
|
3410 |
-
"% on %CommentLink%."
|
3411 |
-
msgstr ""
|
3412 |
-
|
3413 |
-
#: defaults.php:247
|
3414 |
-
msgid "User edited a comment"
|
3415 |
-
msgstr ""
|
3416 |
-
|
3417 |
-
#: defaults.php:247
|
3418 |
-
msgid ""
|
3419 |
-
"Edited a comment posted in response to the post %PostTitle% by %Author% on "
|
3420 |
-
"%CommentLink%."
|
3421 |
-
msgstr ""
|
3422 |
-
|
3423 |
-
#: defaults.php:248
|
3424 |
-
msgid "User marked a comment as Spam"
|
3425 |
-
msgstr ""
|
3426 |
-
|
3427 |
-
#: defaults.php:248
|
3428 |
-
msgid ""
|
3429 |
-
"Marked the comment posted in response to the post %PostTitle% by %Author% on "
|
3430 |
-
"%CommentLink% as Spam."
|
3431 |
-
msgstr ""
|
3432 |
-
|
3433 |
-
#: defaults.php:249
|
3434 |
-
msgid "User marked a comment as Not Spam"
|
3435 |
-
msgstr ""
|
3436 |
-
|
3437 |
-
#: defaults.php:249
|
3438 |
-
msgid ""
|
3439 |
-
"Marked the comment posted in response to the post %PostTitle% by %Author% on "
|
3440 |
-
"%CommentLink% as Not Spam."
|
3441 |
-
msgstr ""
|
3442 |
-
|
3443 |
-
#: defaults.php:250
|
3444 |
-
msgid "User moved a comment to trash"
|
3445 |
-
msgstr ""
|
3446 |
-
|
3447 |
-
#: defaults.php:250
|
3448 |
-
msgid ""
|
3449 |
-
"Moved the comment posted in response to the post %PostTitle% by %Author% on "
|
3450 |
-
"%Date% to trash."
|
3451 |
-
msgstr ""
|
3452 |
-
|
3453 |
-
#: defaults.php:251
|
3454 |
-
msgid "User restored a comment from the trash"
|
3455 |
-
msgstr ""
|
3456 |
-
|
3457 |
-
#: defaults.php:251
|
3458 |
-
msgid ""
|
3459 |
-
"Restored the comment posted in response to the post %PostTitle% by %Author% "
|
3460 |
-
"on %CommentLink% from the trash."
|
3461 |
-
msgstr ""
|
3462 |
-
|
3463 |
-
#: defaults.php:252
|
3464 |
-
msgid "User permanently deleted a comment"
|
3465 |
-
msgstr ""
|
3466 |
-
|
3467 |
-
#: defaults.php:252
|
3468 |
-
msgid ""
|
3469 |
-
"Permanently deleted the comment posted in response to the post %PostTitle% "
|
3470 |
-
"by %Author% on %Date%."
|
3471 |
-
msgstr ""
|
3472 |
-
|
3473 |
-
#: defaults.php:253
|
3474 |
-
msgid "User posted a comment"
|
3475 |
-
msgstr ""
|
3476 |
-
|
3477 |
-
#: defaults.php:253 defaults.php:254
|
3478 |
-
msgid "%CommentMsg% on %CommentLink%."
|
3479 |
-
msgstr ""
|
3480 |
-
|
3481 |
-
#: defaults.php:254
|
3482 |
-
msgid "Visitor posted a comment"
|
3483 |
-
msgstr ""
|
3484 |
-
|
3485 |
-
#: defaults.php:266
|
3486 |
-
msgid "User modified a draft blog post"
|
3487 |
-
msgstr ""
|
3488 |
-
|
3489 |
-
#: defaults.php:266
|
3490 |
-
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
3491 |
-
msgstr ""
|
3492 |
-
|
3493 |
-
#: defaults.php:267
|
3494 |
-
msgid "User created a new post with custom post type and saved it as draft"
|
3495 |
-
msgstr ""
|
3496 |
-
|
3497 |
-
#: defaults.php:267
|
3498 |
-
msgid ""
|
3499 |
-
"Created a new custom post called %PostTitle% of type %PostType%. "
|
3500 |
-
"%EditorLinkPost%."
|
3501 |
-
msgstr ""
|
3502 |
-
|
3503 |
-
#: defaults.php:268
|
3504 |
-
msgid "User published a post with custom post type"
|
3505 |
-
msgstr ""
|
3506 |
-
|
3507 |
-
#: defaults.php:268
|
3508 |
-
msgid ""
|
3509 |
-
"Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
|
3510 |
-
"%. %EditorLinkPost%."
|
3511 |
-
msgstr ""
|
3512 |
-
|
3513 |
-
#: defaults.php:269
|
3514 |
-
msgid "User modified a post with custom post type"
|
3515 |
-
msgstr ""
|
3516 |
-
|
3517 |
-
#: defaults.php:269
|
3518 |
-
msgid ""
|
3519 |
-
"Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
|
3520 |
-
"%. %EditorLinkPost%."
|
3521 |
-
msgstr ""
|
3522 |
-
|
3523 |
-
#: defaults.php:270
|
3524 |
-
msgid "User modified a draft post with custom post type"
|
3525 |
-
msgstr ""
|
3526 |
-
|
3527 |
-
#: defaults.php:270
|
3528 |
-
msgid ""
|
3529 |
-
"Modified the draft custom post %PostTitle% of type is %PostType%. "
|
3530 |
-
"%EditorLinkPost%."
|
3531 |
-
msgstr ""
|
3532 |
-
|
3533 |
-
#: defaults.php:271
|
3534 |
-
msgid "User permanently deleted post with custom post type"
|
3535 |
-
msgstr ""
|
3536 |
-
|
3537 |
-
#: defaults.php:271
|
3538 |
-
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
3539 |
-
msgstr ""
|
3540 |
-
|
3541 |
-
#: defaults.php:272
|
3542 |
-
msgid "User moved post with custom post type to trash"
|
3543 |
-
msgstr ""
|
3544 |
-
|
3545 |
-
#: defaults.php:272
|
3546 |
-
msgid ""
|
3547 |
-
"Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
|
3548 |
-
"%PostUrl%."
|
3549 |
-
msgstr ""
|
3550 |
-
|
3551 |
-
#: defaults.php:273
|
3552 |
-
msgid "User restored post with custom post type from trash"
|
3553 |
-
msgstr ""
|
3554 |
-
|
3555 |
-
#: defaults.php:273
|
3556 |
-
msgid ""
|
3557 |
-
"The custom post %PostTitle% of type %PostType% has been restored from trash. "
|
3558 |
-
"%EditorLinkPost%."
|
3559 |
-
msgstr ""
|
3560 |
-
|
3561 |
-
#: defaults.php:274
|
3562 |
-
msgid "User changed the category of a post with custom post type"
|
3563 |
-
msgstr ""
|
3564 |
-
|
3565 |
-
#: defaults.php:274
|
3566 |
-
msgid ""
|
3567 |
-
"Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
|
3568 |
-
"from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
3569 |
-
msgstr ""
|
3570 |
-
|
3571 |
-
#: defaults.php:275
|
3572 |
-
msgid "User changed the URL of a post with custom post type"
|
3573 |
-
msgstr ""
|
3574 |
-
|
3575 |
-
#: defaults.php:275
|
3576 |
-
msgid ""
|
3577 |
-
"Changed the URL of the custom post %PostTitle% of type %PostType% from "
|
3578 |
-
"%OldUrl% to %NewUrl%. %EditorLinkPost%."
|
3579 |
-
msgstr ""
|
3580 |
-
|
3581 |
-
#: defaults.php:276
|
3582 |
-
msgid "User changed the author or post with custom post type"
|
3583 |
-
msgstr ""
|
3584 |
-
|
3585 |
-
#: defaults.php:276
|
3586 |
-
msgid ""
|
3587 |
-
"Changed the author of custom post %PostTitle% of type %PostType% from "
|
3588 |
-
"%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
3589 |
-
msgstr ""
|
3590 |
-
|
3591 |
-
#: defaults.php:277
|
3592 |
-
msgid "User changed the status of post with custom post type"
|
3593 |
-
msgstr ""
|
3594 |
-
|
3595 |
-
#: defaults.php:277
|
3596 |
-
msgid ""
|
3597 |
-
"Changed the status of custom post %PostTitle% of type %PostType% from "
|
3598 |
-
"%OldStatus% to %NewStatus%. %EditorLinkPost%."
|
3599 |
-
msgstr ""
|
3600 |
-
|
3601 |
-
#: defaults.php:278
|
3602 |
-
msgid "User changed the visibility of a post with custom post type"
|
3603 |
-
msgstr ""
|
3604 |
-
|
3605 |
-
#: defaults.php:278
|
3606 |
-
msgid ""
|
3607 |
-
"Changed the visibility of the custom post %PostTitle% of type %PostType% "
|
3608 |
-
"from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
3609 |
-
msgstr ""
|
3610 |
-
|
3611 |
-
#: defaults.php:279
|
3612 |
-
msgid "User changed the date of post with custom post type"
|
3613 |
-
msgstr ""
|
3614 |
-
|
3615 |
-
#: defaults.php:279
|
3616 |
-
msgid ""
|
3617 |
-
"Changed the date of the custom post %PostTitle% of type %PostType% from "
|
3618 |
-
"%OldDate% to %NewDate%. %EditorLinkPost%."
|
3619 |
-
msgstr ""
|
3620 |
-
|
3621 |
-
#: defaults.php:280
|
3622 |
-
msgid "User created a custom field for a custom post type"
|
3623 |
-
msgstr ""
|
3624 |
-
|
3625 |
-
#: defaults.php:280
|
3626 |
-
msgid ""
|
3627 |
-
"Created a new custom field %MetaKey% with value %MetaValue% in custom post "
|
3628 |
-
"%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
3629 |
-
msgstr ""
|
3630 |
-
|
3631 |
-
#: defaults.php:281
|
3632 |
-
msgid "User updated a custom field for a custom post type"
|
3633 |
-
msgstr ""
|
3634 |
-
|
3635 |
-
#: defaults.php:281
|
3636 |
-
msgid ""
|
3637 |
-
"Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
|
3638 |
-
"%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
|
3639 |
-
"%.<br>%MetaLink%."
|
3640 |
-
msgstr ""
|
3641 |
-
|
3642 |
-
#: defaults.php:282
|
3643 |
-
msgid "User deleted a custom field from a custom post type"
|
3644 |
-
msgstr ""
|
3645 |
-
|
3646 |
-
#: defaults.php:282
|
3647 |
-
msgid ""
|
3648 |
-
"Deleted the custom field %MetaKey% with id %MetaID% from custom post "
|
3649 |
-
"%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
3650 |
-
msgstr ""
|
3651 |
-
|
3652 |
-
#: defaults.php:283
|
3653 |
-
msgid "User updated a custom field name for a custom post type"
|
3654 |
-
msgstr ""
|
3655 |
-
|
3656 |
-
#: defaults.php:283
|
3657 |
-
msgid ""
|
3658 |
-
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
|
3659 |
-
"post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
3660 |
-
msgstr ""
|
3661 |
-
|
3662 |
-
#: defaults.php:284
|
3663 |
-
msgid "User modified content for a published custom post type"
|
3664 |
-
msgstr ""
|
3665 |
-
|
3666 |
-
#: defaults.php:284
|
3667 |
-
msgid ""
|
3668 |
-
"Modified the content of the published custom post type %PostTitle%. Post URL "
|
3669 |
-
"is %PostUrl%.%EditorLinkPost%."
|
3670 |
-
msgstr ""
|
3671 |
-
|
3672 |
-
#: defaults.php:285
|
3673 |
-
msgid "User modified content for a draft post"
|
3674 |
-
msgstr ""
|
3675 |
-
|
3676 |
-
#: defaults.php:285
|
3677 |
-
msgid ""
|
3678 |
-
"Modified the content of the draft post %PostTitle%.%RevisionLink% "
|
3679 |
-
"%EditorLinkPost%."
|
3680 |
-
msgstr ""
|
3681 |
-
|
3682 |
-
#: defaults.php:286
|
3683 |
-
msgid "User modified content for a draft custom post type"
|
3684 |
-
msgstr ""
|
3685 |
-
|
3686 |
-
#: defaults.php:286
|
3687 |
-
msgid ""
|
3688 |
-
"Modified the content of the draft custom post type %PostTitle%."
|
3689 |
-
"%EditorLinkPost%."
|
3690 |
-
msgstr ""
|
3691 |
-
|
3692 |
-
#: defaults.php:287
|
3693 |
-
msgid "User modified content of a post"
|
3694 |
-
msgstr ""
|
3695 |
-
|
3696 |
-
#: defaults.php:287
|
3697 |
-
msgid ""
|
3698 |
-
"Modified the content of post %PostTitle% which is submitted for review."
|
3699 |
-
"%RevisionLink% %EditorLinkPost%."
|
3700 |
-
msgstr ""
|
3701 |
-
|
3702 |
-
#: defaults.php:288
|
3703 |
-
msgid "User scheduled a custom post type"
|
3704 |
-
msgstr ""
|
3705 |
-
|
3706 |
-
#: defaults.php:288
|
3707 |
-
msgid ""
|
3708 |
-
"Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
|
3709 |
-
"%EditorLinkPost%."
|
3710 |
-
msgstr ""
|
3711 |
-
|
3712 |
-
#: defaults.php:289
|
3713 |
-
msgid "User changed title of a custom post type"
|
3714 |
-
msgstr ""
|
3715 |
-
|
3716 |
-
#: defaults.php:289
|
3717 |
-
msgid ""
|
3718 |
-
"Changed the title of the custom post %OldTitle% to %NewTitle%. "
|
3719 |
-
"%EditorLinkPost%."
|
3720 |
-
msgstr ""
|
3721 |
-
|
3722 |
-
#: defaults.php:290
|
3723 |
-
msgid "User opened a custom post type in the editor"
|
3724 |
-
msgstr ""
|
3725 |
-
|
3726 |
-
#: defaults.php:290
|
3727 |
-
msgid ""
|
3728 |
-
"Opened the custom post %PostTitle% of type %PostType% in the editor. View "
|
3729 |
-
"the post: %EditorLinkPost%."
|
3730 |
-
msgstr ""
|
3731 |
-
|
3732 |
-
#: defaults.php:291
|
3733 |
-
msgid "User viewed a custom post type"
|
3734 |
-
msgstr ""
|
3735 |
-
|
3736 |
-
#: defaults.php:291
|
3737 |
-
msgid ""
|
3738 |
-
"Viewed the custom post %PostTitle% of type %PostType%. View the post: "
|
3739 |
-
"%PostUrl%."
|
3740 |
-
msgstr ""
|
3741 |
-
|
3742 |
-
#: defaults.php:292
|
3743 |
-
msgid "A plugin created a custom post"
|
3744 |
-
msgstr ""
|
3745 |
-
|
3746 |
-
#: defaults.php:292
|
3747 |
-
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
3748 |
-
msgstr ""
|
3749 |
-
|
3750 |
-
#: defaults.php:293
|
3751 |
-
msgid "A plugin deleted a custom post"
|
3752 |
-
msgstr ""
|
3753 |
-
|
3754 |
-
#: defaults.php:293
|
3755 |
-
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
3756 |
-
msgstr ""
|
3757 |
-
|
3758 |
-
#: defaults.php:294
|
3759 |
-
msgid "A plugin modified a custom post"
|
3760 |
-
msgstr ""
|
3761 |
-
|
3762 |
-
#: defaults.php:294
|
3763 |
-
msgid ""
|
3764 |
-
"Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
3765 |
-
msgstr ""
|
3766 |
-
|
3767 |
-
#: defaults.php:306
|
3768 |
-
msgid "User created a new WordPress page and saved it as draft"
|
3769 |
-
msgstr ""
|
3770 |
-
|
3771 |
-
#: defaults.php:306
|
3772 |
-
msgid ""
|
3773 |
-
"Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
|
3774 |
-
"%."
|
3775 |
-
msgstr ""
|
3776 |
-
|
3777 |
-
#: defaults.php:307
|
3778 |
-
msgid "User published a WordPress page"
|
3779 |
-
msgstr ""
|
3780 |
-
|
3781 |
-
#: defaults.php:307
|
3782 |
-
msgid ""
|
3783 |
-
"Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
3784 |
-
msgstr ""
|
3785 |
-
|
3786 |
-
#: defaults.php:308
|
3787 |
-
msgid "User modified a published WordPress page"
|
3788 |
-
msgstr ""
|
3789 |
-
|
3790 |
-
#: defaults.php:308
|
3791 |
-
msgid ""
|
3792 |
-
"Modified the published page %PostTitle%. Page URL is %PostUrl%. "
|
3793 |
-
"%EditorLinkPage%."
|
3794 |
-
msgstr ""
|
3795 |
-
|
3796 |
-
#: defaults.php:309
|
3797 |
-
msgid "User modified a draft WordPress page"
|
3798 |
-
msgstr ""
|
3799 |
-
|
3800 |
-
#: defaults.php:309
|
3801 |
-
msgid ""
|
3802 |
-
"Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
3803 |
-
msgstr ""
|
3804 |
-
|
3805 |
-
#: defaults.php:310
|
3806 |
-
msgid "User permanently deleted a page from the trash"
|
3807 |
-
msgstr ""
|
3808 |
-
|
3809 |
-
#: defaults.php:310
|
3810 |
-
msgid "Permanently deleted the page %PostTitle%."
|
3811 |
-
msgstr ""
|
3812 |
-
|
3813 |
-
#: defaults.php:311
|
3814 |
-
msgid "User moved WordPress page to the trash"
|
3815 |
-
msgstr ""
|
3816 |
-
|
3817 |
-
#: defaults.php:311
|
3818 |
-
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
3819 |
-
msgstr ""
|
3820 |
-
|
3821 |
-
#: defaults.php:312
|
3822 |
-
msgid "User restored a WordPress page from trash"
|
3823 |
-
msgstr ""
|
3824 |
-
|
3825 |
-
#: defaults.php:312
|
3826 |
-
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
3827 |
-
msgstr ""
|
3828 |
-
|
3829 |
-
#: defaults.php:313
|
3830 |
-
msgid "User changed page URL"
|
3831 |
-
msgstr ""
|
3832 |
-
|
3833 |
-
#: defaults.php:313
|
3834 |
-
msgid ""
|
3835 |
-
"Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
|
3836 |
-
"%EditorLinkPage%."
|
3837 |
-
msgstr ""
|
3838 |
-
|
3839 |
-
#: defaults.php:314
|
3840 |
-
msgid "User changed page author"
|
3841 |
-
msgstr ""
|
3842 |
-
|
3843 |
-
#: defaults.php:314
|
3844 |
-
msgid ""
|
3845 |
-
"Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
|
3846 |
-
"%EditorLinkPage%."
|
3847 |
-
msgstr ""
|
3848 |
-
|
3849 |
-
#: defaults.php:315
|
3850 |
-
msgid "User changed page status"
|
3851 |
-
msgstr ""
|
3852 |
-
|
3853 |
-
#: defaults.php:315
|
3854 |
-
msgid ""
|
3855 |
-
"Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
|
3856 |
-
"%EditorLinkPage%."
|
3857 |
-
msgstr ""
|
3858 |
-
|
3859 |
-
#: defaults.php:316
|
3860 |
-
msgid "User changed the visibility of a page post"
|
3861 |
-
msgstr ""
|
3862 |
-
|
3863 |
-
#: defaults.php:316
|
3864 |
-
msgid ""
|
3865 |
-
"Changed the visibility of the page %PostTitle% from %OldVisibility% to "
|
3866 |
-
"%NewVisibility%. %EditorLinkPage%."
|
3867 |
-
msgstr ""
|
3868 |
-
|
3869 |
-
#: defaults.php:317
|
3870 |
-
msgid "User changed the date of a page post"
|
3871 |
-
msgstr ""
|
3872 |
-
|
3873 |
-
#: defaults.php:317
|
3874 |
-
msgid ""
|
3875 |
-
"Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
|
3876 |
-
"%EditorLinkPage%."
|
3877 |
-
msgstr ""
|
3878 |
-
|
3879 |
-
#: defaults.php:318
|
3880 |
-
msgid "User created a custom field for a page"
|
3881 |
-
msgstr ""
|
3882 |
-
|
3883 |
-
#: defaults.php:318
|
3884 |
-
msgid ""
|
3885 |
-
"Created a new custom field called %MetaKey% with value %MetaValue% in the "
|
3886 |
-
"page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3887 |
-
msgstr ""
|
3888 |
-
|
3889 |
-
#: defaults.php:319
|
3890 |
-
msgid "User updated a custom field value for a page"
|
3891 |
-
msgstr ""
|
3892 |
-
|
3893 |
-
#: defaults.php:319
|
3894 |
-
msgid ""
|
3895 |
-
"Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
|
3896 |
-
"%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3897 |
-
msgstr ""
|
3898 |
-
|
3899 |
-
#: defaults.php:320
|
3900 |
-
msgid "User deleted a custom field from a page"
|
3901 |
-
msgstr ""
|
3902 |
-
|
3903 |
-
#: defaults.php:320
|
3904 |
-
msgid ""
|
3905 |
-
"Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
|
3906 |
-
"%EditorLinkPage%.<br>%MetaLink%."
|
3907 |
-
msgstr ""
|
3908 |
-
|
3909 |
-
#: defaults.php:321
|
3910 |
-
msgid "User updated a custom field name for a page"
|
3911 |
-
msgstr ""
|
3912 |
-
|
3913 |
-
#: defaults.php:321
|
3914 |
-
msgid ""
|
3915 |
-
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
|
3916 |
-
"%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
3917 |
-
msgstr ""
|
3918 |
-
|
3919 |
-
#: defaults.php:322
|
3920 |
-
msgid "User modified content for a published page"
|
3921 |
-
msgstr ""
|
3922 |
-
|
3923 |
-
#: defaults.php:322
|
3924 |
-
msgid ""
|
3925 |
-
"Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
|
3926 |
-
"%. %RevisionLink% %EditorLinkPage%."
|
3927 |
-
msgstr ""
|
3928 |
-
|
3929 |
-
#: defaults.php:323
|
3930 |
-
msgid "User modified content for a draft page"
|
3931 |
-
msgstr ""
|
3932 |
-
|
3933 |
-
#: defaults.php:323
|
3934 |
-
msgid ""
|
3935 |
-
"Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
|
3936 |
-
"%."
|
3937 |
-
msgstr ""
|
3938 |
-
|
3939 |
-
#: defaults.php:324
|
3940 |
-
msgid "User scheduled a page"
|
3941 |
-
msgstr ""
|
3942 |
-
|
3943 |
-
#: defaults.php:324
|
3944 |
-
msgid ""
|
3945 |
-
"Scheduled the page %PostTitle% to be published %PublishingDate%. "
|
3946 |
-
"%EditorLinkPage%."
|
3947 |
-
msgstr ""
|
3948 |
-
|
3949 |
-
#: defaults.php:325
|
3950 |
-
msgid "User changed title of a page"
|
3951 |
-
msgstr ""
|
3952 |
-
|
3953 |
-
#: defaults.php:325
|
3954 |
-
msgid ""
|
3955 |
-
"Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
3956 |
-
msgstr ""
|
3957 |
-
|
3958 |
-
#: defaults.php:326
|
3959 |
-
msgid "User opened a page in the editor"
|
3960 |
-
msgstr ""
|
3961 |
-
|
3962 |
-
#: defaults.php:326
|
3963 |
-
msgid ""
|
3964 |
-
"Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
3965 |
-
msgstr ""
|
3966 |
-
|
3967 |
-
#: defaults.php:327
|
3968 |
-
msgid "User viewed a page"
|
3969 |
-
msgstr ""
|
3970 |
-
|
3971 |
-
#: defaults.php:327
|
3972 |
-
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
3973 |
-
msgstr ""
|
3974 |
-
|
3975 |
-
#: defaults.php:328
|
3976 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
3977 |
-
msgstr ""
|
3978 |
-
|
3979 |
-
#: defaults.php:328
|
3980 |
-
msgid ""
|
3981 |
-
"Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
3982 |
-
msgstr ""
|
3983 |
-
|
3984 |
-
#: defaults.php:329
|
3985 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
3986 |
-
msgstr ""
|
3987 |
-
|
3988 |
-
#: defaults.php:329
|
3989 |
-
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
3990 |
-
msgstr ""
|
3991 |
-
|
3992 |
-
#: defaults.php:330
|
3993 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
3994 |
-
msgstr ""
|
3995 |
-
|
3996 |
-
#: defaults.php:330
|
3997 |
-
msgid ""
|
3998 |
-
"Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
3999 |
-
msgstr ""
|
4000 |
-
|
4001 |
-
#: defaults.php:331
|
4002 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
4003 |
-
msgstr ""
|
4004 |
-
|
4005 |
-
#: defaults.php:331
|
4006 |
-
msgid ""
|
4007 |
-
"Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
4008 |
-
msgstr ""
|
4009 |
-
|
4010 |
-
#: defaults.php:332
|
4011 |
-
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
4012 |
-
msgstr ""
|
4013 |
-
|
4014 |
-
#: defaults.php:332
|
4015 |
-
msgid ""
|
4016 |
-
"Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
4017 |
-
msgstr ""
|
4018 |
-
|
4019 |
-
#: defaults.php:333
|
4020 |
-
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
4021 |
-
msgstr ""
|
4022 |
-
|
4023 |
-
#: defaults.php:333
|
4024 |
-
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
4025 |
-
msgstr ""
|
4026 |
-
|
4027 |
-
#: defaults.php:334
|
4028 |
-
msgid "A plugin created a page"
|
4029 |
-
msgstr ""
|
4030 |
-
|
4031 |
-
#: defaults.php:334
|
4032 |
-
msgid "A plugin automatically created the following page: %PostTitle%."
|
4033 |
-
msgstr ""
|
4034 |
-
|
4035 |
-
#: defaults.php:335
|
4036 |
-
msgid "A plugin deleted a page"
|
4037 |
-
msgstr ""
|
4038 |
-
|
4039 |
-
#: defaults.php:335
|
4040 |
-
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
4041 |
-
msgstr ""
|
4042 |
-
|
4043 |
-
#: defaults.php:336
|
4044 |
-
msgid "A plugin modified a page"
|
4045 |
-
msgstr ""
|
4046 |
-
|
4047 |
-
#: defaults.php:336
|
4048 |
-
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
4049 |
-
msgstr ""
|
4050 |
-
|
4051 |
-
#: defaults.php:343
|
4052 |
-
msgid "WordPress Install"
|
4053 |
-
msgstr ""
|
4054 |
-
|
4055 |
-
#: defaults.php:347
|
4056 |
-
msgid "Database"
|
4057 |
-
msgstr ""
|
4058 |
-
|
4059 |
-
#: defaults.php:348
|
4060 |
-
msgid "Unknown component created tables"
|
4061 |
-
msgstr ""
|
4062 |
-
|
4063 |
-
#: defaults.php:348
|
4064 |
-
msgid ""
|
4065 |
-
"An unknown component created these tables in the database: %TableNames%."
|
4066 |
-
msgstr ""
|
4067 |
-
|
4068 |
-
#: defaults.php:349
|
4069 |
-
msgid "Unknown component modified tables structure"
|
4070 |
-
msgstr ""
|
4071 |
-
|
4072 |
-
#: defaults.php:349
|
4073 |
-
msgid ""
|
4074 |
-
"An unknown component modified the structure of these database tables: "
|
4075 |
-
"%TableNames%."
|
4076 |
-
msgstr ""
|
4077 |
-
|
4078 |
-
#: defaults.php:350
|
4079 |
-
msgid "Unknown component deleted tables"
|
4080 |
-
msgstr ""
|
4081 |
-
|
4082 |
-
#: defaults.php:350
|
4083 |
-
msgid ""
|
4084 |
-
"An unknown component deleted the following tables from the database: "
|
4085 |
-
"%TableNames%."
|
4086 |
-
msgstr ""
|
4087 |
-
|
4088 |
-
#: defaults.php:357
|
4089 |
-
msgid "User installed a plugin"
|
4090 |
-
msgstr ""
|
4091 |
-
|
4092 |
-
#: defaults.php:357
|
4093 |
-
msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
|
4094 |
-
msgstr ""
|
4095 |
-
|
4096 |
-
#: defaults.php:358
|
4097 |
-
msgid "User activated a WordPress plugin"
|
4098 |
-
msgstr ""
|
4099 |
-
|
4100 |
-
#: defaults.php:358
|
4101 |
-
msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
|
4102 |
-
msgstr ""
|
4103 |
-
|
4104 |
-
#: defaults.php:359
|
4105 |
-
msgid "User deactivated a WordPress plugin"
|
4106 |
-
msgstr ""
|
4107 |
-
|
4108 |
-
#: defaults.php:359
|
4109 |
-
msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
|
4110 |
-
msgstr ""
|
4111 |
-
|
4112 |
-
#: defaults.php:360
|
4113 |
-
msgid "User uninstalled a plugin"
|
4114 |
-
msgstr ""
|
4115 |
-
|
4116 |
-
#: defaults.php:360
|
4117 |
-
msgid ""
|
4118 |
-
"Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
|
4119 |
-
"%."
|
4120 |
-
msgstr ""
|
4121 |
-
|
4122 |
-
#: defaults.php:361
|
4123 |
-
msgid "User upgraded a plugin"
|
4124 |
-
msgstr ""
|
4125 |
-
|
4126 |
-
#: defaults.php:361
|
4127 |
-
msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
|
4128 |
-
msgstr ""
|
4129 |
-
|
4130 |
-
#: defaults.php:362
|
4131 |
-
msgid "Plugin created tables"
|
4132 |
-
msgstr ""
|
4133 |
-
|
4134 |
-
#: defaults.php:362
|
4135 |
-
msgid ""
|
4136 |
-
"Plugin %Plugin->Name% created these tables in the database: %TableNames%."
|
4137 |
-
msgstr ""
|
4138 |
-
|
4139 |
-
#: defaults.php:363
|
4140 |
-
msgid "Plugin modified tables structure"
|
4141 |
-
msgstr ""
|
4142 |
-
|
4143 |
-
#: defaults.php:363
|
4144 |
-
msgid ""
|
4145 |
-
"Plugin %Plugin->Name% modified the structure of these database tables: "
|
4146 |
-
"%TableNames%."
|
4147 |
-
msgstr ""
|
4148 |
-
|
4149 |
-
#: defaults.php:364
|
4150 |
-
msgid "Plugin deleted tables"
|
4151 |
-
msgstr ""
|
4152 |
-
|
4153 |
-
#: defaults.php:364
|
4154 |
-
msgid ""
|
4155 |
-
"Plugin %Plugin->Name% deleted the following tables from the database: "
|
4156 |
-
"%TableNames%."
|
4157 |
-
msgstr ""
|
4158 |
-
|
4159 |
-
#: defaults.php:365
|
4160 |
-
msgid "A plugin created a post"
|
4161 |
-
msgstr ""
|
4162 |
-
|
4163 |
-
#: defaults.php:365
|
4164 |
-
msgid ""
|
4165 |
-
"A plugin automatically created the following %PostType% called %PostTitle%. "
|
4166 |
-
"View the post: %EditorLinkPost%."
|
4167 |
-
msgstr ""
|
4168 |
-
|
4169 |
-
#: defaults.php:366
|
4170 |
-
msgid "A plugin deleted a post"
|
4171 |
-
msgstr ""
|
4172 |
-
|
4173 |
-
#: defaults.php:366
|
4174 |
-
msgid ""
|
4175 |
-
"A plugin automatically deleted the following %PostType% called %PostTitle%."
|
4176 |
-
msgstr ""
|
4177 |
-
|
4178 |
-
#: defaults.php:367
|
4179 |
-
msgid "User changed a file using the plugin editor"
|
4180 |
-
msgstr ""
|
4181 |
-
|
4182 |
-
#: defaults.php:367
|
4183 |
-
msgid "Modified %File% with the Plugin Editor."
|
4184 |
-
msgstr ""
|
4185 |
-
|
4186 |
-
#: defaults.php:373
|
4187 |
-
msgid "Themes"
|
4188 |
-
msgstr ""
|
4189 |
-
|
4190 |
-
#: defaults.php:374
|
4191 |
-
msgid "User installed a theme"
|
4192 |
-
msgstr ""
|
4193 |
-
|
4194 |
-
#: defaults.php:374
|
4195 |
-
msgid ""
|
4196 |
-
"Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
|
4197 |
-
msgstr ""
|
4198 |
-
|
4199 |
-
#: defaults.php:375
|
4200 |
-
msgid "User activated a theme"
|
4201 |
-
msgstr ""
|
4202 |
-
|
4203 |
-
#: defaults.php:375
|
4204 |
-
msgid ""
|
4205 |
-
"Activated the theme \"%Theme->Name%\", installed in %Theme-"
|
4206 |
-
">get_template_directory%."
|
4207 |
-
msgstr ""
|
4208 |
-
|
4209 |
-
#: defaults.php:376
|
4210 |
-
msgid "User uninstalled a theme"
|
4211 |
-
msgstr ""
|
4212 |
-
|
4213 |
-
#: defaults.php:376
|
4214 |
-
msgid ""
|
4215 |
-
"Deleted the theme \"%Theme->Name%\" installed in %Theme-"
|
4216 |
-
">get_template_directory%."
|
4217 |
-
msgstr ""
|
4218 |
-
|
4219 |
-
#: defaults.php:377
|
4220 |
-
msgid "Activated theme on network"
|
4221 |
-
msgstr ""
|
4222 |
-
|
4223 |
-
#: defaults.php:377
|
4224 |
-
msgid ""
|
4225 |
-
"Network activated the theme %Theme->Name% installed in %Theme-"
|
4226 |
-
">get_template_directory%."
|
4227 |
-
msgstr ""
|
4228 |
-
|
4229 |
-
#: defaults.php:378
|
4230 |
-
msgid "Deactivated theme from network"
|
4231 |
-
msgstr ""
|
4232 |
-
|
4233 |
-
#: defaults.php:378
|
4234 |
-
msgid ""
|
4235 |
-
"Network deactivated the theme %Theme->Name% installed in %Theme-"
|
4236 |
-
">get_template_directory%."
|
4237 |
-
msgstr ""
|
4238 |
-
|
4239 |
-
#: defaults.php:379
|
4240 |
-
msgid "Theme created tables"
|
4241 |
-
msgstr ""
|
4242 |
-
|
4243 |
-
#: defaults.php:379
|
4244 |
-
msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
|
4245 |
-
msgstr ""
|
4246 |
-
|
4247 |
-
#: defaults.php:380
|
4248 |
-
msgid "Theme modified tables structure"
|
4249 |
-
msgstr ""
|
4250 |
-
|
4251 |
-
#: defaults.php:380
|
4252 |
-
msgid ""
|
4253 |
-
"Theme %Theme->Name% modified the structure of these database tables: "
|
4254 |
-
"%TableNames%."
|
4255 |
-
msgstr ""
|
4256 |
-
|
4257 |
-
#: defaults.php:381
|
4258 |
-
msgid "Theme deleted tables"
|
4259 |
-
msgstr ""
|
4260 |
-
|
4261 |
-
#: defaults.php:381
|
4262 |
-
msgid ""
|
4263 |
-
"Theme %Theme->Name% deleted the following tables from the database: "
|
4264 |
-
"%TableNames%."
|
4265 |
-
msgstr ""
|
4266 |
-
|
4267 |
-
#: defaults.php:382
|
4268 |
-
msgid "User updated a theme"
|
4269 |
-
msgstr ""
|
4270 |
-
|
4271 |
-
#: defaults.php:382
|
4272 |
-
msgid ""
|
4273 |
-
"Updated the theme \"%Theme->Name%\" installed in %Theme-"
|
4274 |
-
">get_template_directory%."
|
4275 |
-
msgstr ""
|
4276 |
-
|
4277 |
-
#: defaults.php:383
|
4278 |
-
msgid "User changed a file using the theme editor"
|
4279 |
-
msgstr ""
|
4280 |
-
|
4281 |
-
#: defaults.php:383
|
4282 |
-
msgid "Modified %File% with the Theme Editor."
|
4283 |
-
msgstr ""
|
4284 |
-
|
4285 |
-
#: defaults.php:390
|
4286 |
-
msgid "Unknown Error"
|
4287 |
-
msgstr ""
|
4288 |
-
|
4289 |
-
#: defaults.php:390
|
4290 |
-
msgid "An unexpected error has occurred ."
|
4291 |
-
msgstr ""
|
4292 |
-
|
4293 |
-
#: defaults.php:391
|
4294 |
-
msgid "PHP error"
|
4295 |
-
msgstr ""
|
4296 |
-
|
4297 |
-
#: defaults.php:391 defaults.php:392 defaults.php:393 defaults.php:394
|
4298 |
-
#: defaults.php:395
|
4299 |
-
msgid "%Message%."
|
4300 |
-
msgstr ""
|
4301 |
-
|
4302 |
-
#: defaults.php:392
|
4303 |
-
msgid "PHP warning"
|
4304 |
-
msgstr ""
|
4305 |
-
|
4306 |
-
#: defaults.php:393
|
4307 |
-
msgid "PHP notice"
|
4308 |
-
msgstr ""
|
4309 |
-
|
4310 |
-
#: defaults.php:394
|
4311 |
-
msgid "PHP exception"
|
4312 |
-
msgstr ""
|
4313 |
-
|
4314 |
-
#: defaults.php:395
|
4315 |
-
msgid "PHP shutdown error"
|
4316 |
-
msgstr ""
|
4317 |
-
|
4318 |
-
#: defaults.php:396
|
4319 |
-
msgid "Events automatically pruned by system"
|
4320 |
-
msgstr ""
|
4321 |
-
|
4322 |
-
#: defaults.php:396
|
4323 |
-
msgid "System automatically deleted %EventCount% event(s)."
|
4324 |
-
msgstr ""
|
4325 |
-
|
4326 |
-
#: defaults.php:397
|
4327 |
-
msgid "WordPress was updated"
|
4328 |
-
msgstr ""
|
4329 |
-
|
4330 |
-
#: defaults.php:397
|
4331 |
-
msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
|
4332 |
-
msgstr ""
|
4333 |
-
|
4334 |
-
#: defaults.php:398
|
4335 |
-
msgid "Reset plugin's settings to default"
|
4336 |
-
msgstr ""
|
4337 |
-
|
4338 |
-
#: defaults.php:398
|
4339 |
-
msgid "Reset plugin's settings to default."
|
4340 |
-
msgstr ""
|
4341 |
-
|
4342 |
-
#: defaults.php:399
|
4343 |
-
msgid "Purged the activity log"
|
4344 |
-
msgstr ""
|
4345 |
-
|
4346 |
-
#: defaults.php:399
|
4347 |
-
msgid "Purged the activity log."
|
4348 |
-
msgstr ""
|
4349 |
-
|
4350 |
-
#: defaults.php:400
|
4351 |
-
msgid "File content has been modified"
|
4352 |
-
msgstr ""
|
4353 |
-
|
4354 |
-
#: defaults.php:400
|
4355 |
-
msgid "The content of the file %FileLocation% has been modified."
|
4356 |
-
msgstr ""
|
4357 |
-
|
4358 |
-
#: defaults.php:401
|
4359 |
-
msgid "File added to the site"
|
4360 |
-
msgstr ""
|
4361 |
-
|
4362 |
-
#: defaults.php:401
|
4363 |
-
msgid "The file %FileLocation% has been added to your website."
|
4364 |
-
msgstr ""
|
4365 |
-
|
4366 |
-
#: defaults.php:402
|
4367 |
-
msgid "File deleted from the site"
|
4368 |
-
msgstr ""
|
4369 |
-
|
4370 |
-
#: defaults.php:402
|
4371 |
-
msgid "The file %FileLocation% has been deleted from your website."
|
4372 |
-
msgstr ""
|
4373 |
-
|
4374 |
-
#: defaults.php:403
|
4375 |
-
msgid "File not scanned because it is bigger than the maximum file size limit"
|
4376 |
-
msgstr ""
|
4377 |
-
|
4378 |
-
#: defaults.php:403
|
4379 |
-
msgid ""
|
4380 |
-
"The file %FileLocation% was not scanned because it is bigger than the "
|
4381 |
-
"maximum file size limit. If you want to include these files in the scan "
|
4382 |
-
"increase the file size limit from the %FileSettings%."
|
4383 |
-
msgstr ""
|
4384 |
-
|
4385 |
-
#: defaults.php:404
|
4386 |
-
msgid "File integrity scan stopped due to the limit of 1 million files"
|
4387 |
-
msgstr ""
|
4388 |
-
|
4389 |
-
#: defaults.php:404
|
4390 |
-
msgid ""
|
4391 |
-
"The file changes scanning engine has reached the limit of 1 million files "
|
4392 |
-
"and stopped the scan. Please %ContactSupport% for more information."
|
4393 |
-
msgstr ""
|
4394 |
-
|
4395 |
-
#: defaults.php:405
|
4396 |
-
msgid "File integrity scan started/stopped"
|
4397 |
-
msgstr ""
|
4398 |
-
|
4399 |
-
#: defaults.php:405
|
4400 |
-
msgid "The file integrity scanner has %ScanStatus%."
|
4401 |
-
msgstr ""
|
4402 |
-
|
4403 |
-
#: defaults.php:406
|
4404 |
-
msgid "Advertising Add-ons"
|
4405 |
-
msgstr ""
|
4406 |
-
|
4407 |
-
#: defaults.php:406
|
4408 |
-
msgid "%PromoName% %PromoMessage%"
|
4409 |
-
msgstr ""
|
4410 |
-
|
4411 |
-
#: defaults.php:412
|
4412 |
-
msgid "Menus"
|
4413 |
-
msgstr ""
|
4414 |
-
|
4415 |
-
#: defaults.php:413
|
4416 |
-
msgid "User created new menu"
|
4417 |
-
msgstr ""
|
4418 |
-
|
4419 |
-
#: defaults.php:413
|
4420 |
-
msgid "Created a new menu called %MenuName%."
|
4421 |
-
msgstr ""
|
4422 |
-
|
4423 |
-
#: defaults.php:414
|
4424 |
-
msgid "User added content to a menu"
|
4425 |
-
msgstr ""
|
4426 |
-
|
4427 |
-
#: defaults.php:414
|
4428 |
-
msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
|
4429 |
-
msgstr ""
|
4430 |
-
|
4431 |
-
#: defaults.php:415
|
4432 |
-
msgid "User removed content from a menu"
|
4433 |
-
msgstr ""
|
4434 |
-
|
4435 |
-
#: defaults.php:415
|
4436 |
-
msgid ""
|
4437 |
-
"Removed the %ContentType% called %ContentName% from the menu %MenuName%."
|
4438 |
-
msgstr ""
|
4439 |
-
|
4440 |
-
#: defaults.php:416
|
4441 |
-
msgid "User deleted menu"
|
4442 |
-
msgstr ""
|
4443 |
-
|
4444 |
-
#: defaults.php:416
|
4445 |
-
msgid "Deleted the menu %MenuName%."
|
4446 |
-
msgstr ""
|
4447 |
-
|
4448 |
-
#: defaults.php:417
|
4449 |
-
msgid "User changed menu setting"
|
4450 |
-
msgstr ""
|
4451 |
-
|
4452 |
-
#: defaults.php:417
|
4453 |
-
msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
|
4454 |
-
msgstr ""
|
4455 |
-
|
4456 |
-
#: defaults.php:418
|
4457 |
-
msgid "User modified content in a menu"
|
4458 |
-
msgstr ""
|
4459 |
-
|
4460 |
-
#: defaults.php:418
|
4461 |
-
msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
|
4462 |
-
msgstr ""
|
4463 |
-
|
4464 |
-
#: defaults.php:419
|
4465 |
-
msgid "User changed name of a menu"
|
4466 |
-
msgstr ""
|
4467 |
-
|
4468 |
-
#: defaults.php:419
|
4469 |
-
msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
|
4470 |
-
msgstr ""
|
4471 |
-
|
4472 |
-
#: defaults.php:420
|
4473 |
-
msgid "User changed order of the objects in a menu"
|
4474 |
-
msgstr ""
|
4475 |
-
|
4476 |
-
#: defaults.php:420
|
4477 |
-
msgid "Changed the order of the %ItemName% in menu %MenuName%."
|
4478 |
-
msgstr ""
|
4479 |
-
|
4480 |
-
#: defaults.php:421
|
4481 |
-
msgid "User moved objects as a sub-item"
|
4482 |
-
msgstr ""
|
4483 |
-
|
4484 |
-
#: defaults.php:421
|
4485 |
-
msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
|
4486 |
-
msgstr ""
|
4487 |
-
|
4488 |
-
#: defaults.php:427
|
4489 |
-
msgid "Widgets"
|
4490 |
-
msgstr ""
|
4491 |
-
|
4492 |
-
#: defaults.php:428
|
4493 |
-
msgid "User added a new widget"
|
4494 |
-
msgstr ""
|
4495 |
-
|
4496 |
-
#: defaults.php:428
|
4497 |
-
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
4498 |
-
msgstr ""
|
4499 |
-
|
4500 |
-
#: defaults.php:429
|
4501 |
-
msgid "User modified a widget"
|
4502 |
-
msgstr ""
|
4503 |
-
|
4504 |
-
#: defaults.php:429
|
4505 |
-
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
4506 |
-
msgstr ""
|
4507 |
-
|
4508 |
-
#: defaults.php:430
|
4509 |
-
msgid "User deleted widget"
|
4510 |
-
msgstr ""
|
4511 |
-
|
4512 |
-
#: defaults.php:430
|
4513 |
-
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
4514 |
-
msgstr ""
|
4515 |
-
|
4516 |
-
#: defaults.php:431
|
4517 |
-
msgid "User moved widget"
|
4518 |
-
msgstr ""
|
4519 |
-
|
4520 |
-
#: defaults.php:431
|
4521 |
-
msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
|
4522 |
-
msgstr ""
|
4523 |
-
|
4524 |
-
#: defaults.php:432
|
4525 |
-
msgid "User changed widget position"
|
4526 |
-
msgstr ""
|
4527 |
-
|
4528 |
-
#: defaults.php:432
|
4529 |
-
msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
|
4530 |
-
msgstr ""
|
4531 |
-
|
4532 |
-
#: defaults.php:438
|
4533 |
-
msgid "WordPress Settings"
|
4534 |
-
msgstr ""
|
4535 |
-
|
4536 |
-
#: defaults.php:439
|
4537 |
-
msgid "Option Anyone Can Register in WordPress settings changed"
|
4538 |
-
msgstr ""
|
4539 |
-
|
4540 |
-
#: defaults.php:439
|
4541 |
-
msgid "%NewValue% the option \"Anyone can register\"."
|
4542 |
-
msgstr ""
|
4543 |
-
|
4544 |
-
#: defaults.php:440
|
4545 |
-
msgid "New User Default Role changed"
|
4546 |
-
msgstr ""
|
4547 |
-
|
4548 |
-
#: defaults.php:440
|
4549 |
-
msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
|
4550 |
-
msgstr ""
|
4551 |
-
|
4552 |
-
#: defaults.php:441
|
4553 |
-
msgid "WordPress Administrator Notification email changed"
|
4554 |
-
msgstr ""
|
4555 |
-
|
4556 |
-
#: defaults.php:441
|
4557 |
-
msgid ""
|
4558 |
-
"Changed the WordPress administrator notifications email address from "
|
4559 |
-
"%OldEmail% to %NewEmail%."
|
4560 |
-
msgstr ""
|
4561 |
-
|
4562 |
-
#: defaults.php:442
|
4563 |
-
msgid "User changes the WordPress Permalinks"
|
4564 |
-
msgstr ""
|
4565 |
-
|
4566 |
-
#: defaults.php:442
|
4567 |
-
msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
|
4568 |
-
msgstr ""
|
4569 |
-
|
4570 |
-
#: defaults.php:443
|
4571 |
-
msgid ""
|
4572 |
-
"Enabled/Disabled the option Discourage search engines from indexing this site"
|
4573 |
-
msgstr ""
|
4574 |
-
|
4575 |
-
#: defaults.php:443
|
4576 |
-
msgid "%Status% the option Discourage search engines from indexing this site."
|
4577 |
-
msgstr ""
|
4578 |
-
|
4579 |
-
#: defaults.php:444
|
4580 |
-
msgid "Enabled/Disabled comments on all the website"
|
4581 |
-
msgstr ""
|
4582 |
-
|
4583 |
-
#: defaults.php:444
|
4584 |
-
msgid "%Status% comments on all the website."
|
4585 |
-
msgstr ""
|
4586 |
-
|
4587 |
-
#: defaults.php:445
|
4588 |
-
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
4589 |
-
msgstr ""
|
4590 |
-
|
4591 |
-
#: defaults.php:445
|
4592 |
-
msgid "%Status% the option Comment author must fill out name and email."
|
4593 |
-
msgstr ""
|
4594 |
-
|
4595 |
-
#: defaults.php:446
|
4596 |
-
msgid ""
|
4597 |
-
"Enabled/Disabled the option Users must be logged in and registered to comment"
|
4598 |
-
msgstr ""
|
4599 |
-
|
4600 |
-
#: defaults.php:446
|
4601 |
-
msgid "%Status% the option Users must be logged in and registered to comment."
|
4602 |
-
msgstr ""
|
4603 |
-
|
4604 |
-
#: defaults.php:447
|
4605 |
-
msgid "Enabled/Disabled the option to automatically close comments"
|
4606 |
-
msgstr ""
|
4607 |
-
|
4608 |
-
#: defaults.php:447
|
4609 |
-
msgid "%Status% the option to automatically close comments after %Value% days."
|
4610 |
-
msgstr ""
|
4611 |
-
|
4612 |
-
#: defaults.php:448
|
4613 |
-
msgid "Changed the value of the option Automatically close comments"
|
4614 |
-
msgstr ""
|
4615 |
-
|
4616 |
-
#: defaults.php:448
|
4617 |
-
msgid ""
|
4618 |
-
"Changed the value of the option Automatically close comments from %OldValue% "
|
4619 |
-
"to %NewValue% days."
|
4620 |
-
msgstr ""
|
4621 |
-
|
4622 |
-
#: defaults.php:449
|
4623 |
-
msgid "Enabled/Disabled the option for comments to be manually approved"
|
4624 |
-
msgstr ""
|
4625 |
-
|
4626 |
-
#: defaults.php:449
|
4627 |
-
msgid "%Status% the option for comments to be manually approved."
|
4628 |
-
msgstr ""
|
4629 |
-
|
4630 |
-
#: defaults.php:450
|
4631 |
-
msgid ""
|
4632 |
-
"Enabled/Disabled the option for an author to have previously approved "
|
4633 |
-
"comments for the comments to appear"
|
4634 |
-
msgstr ""
|
4635 |
-
|
4636 |
-
#: defaults.php:450
|
4637 |
-
msgid ""
|
4638 |
-
"%Status% the option for an author to have previously approved comments for "
|
4639 |
-
"the comments to appear."
|
4640 |
-
msgstr ""
|
4641 |
-
|
4642 |
-
#: defaults.php:451
|
4643 |
-
msgid ""
|
4644 |
-
"Changed the number of links that a comment must have to be held in the queue"
|
4645 |
-
msgstr ""
|
4646 |
-
|
4647 |
-
#: defaults.php:451
|
4648 |
-
msgid ""
|
4649 |
-
"Changed the number of links from %OldValue% to %NewValue% that a comment "
|
4650 |
-
"must have to be held in the queue."
|
4651 |
-
msgstr ""
|
4652 |
-
|
4653 |
-
#: defaults.php:452
|
4654 |
-
msgid "Modified the list of keywords for comments moderation"
|
4655 |
-
msgstr ""
|
4656 |
-
|
4657 |
-
#: defaults.php:452
|
4658 |
-
msgid "Modified the list of keywords for comments moderation."
|
4659 |
-
msgstr ""
|
4660 |
-
|
4661 |
-
#: defaults.php:453
|
4662 |
-
msgid "Modified the list of keywords for comments blacklisting"
|
4663 |
-
msgstr ""
|
4664 |
-
|
4665 |
-
#: defaults.php:453
|
4666 |
-
msgid "Modified the list of keywords for comments blacklisting."
|
4667 |
-
msgstr ""
|
4668 |
-
|
4669 |
-
#: defaults.php:454
|
4670 |
-
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
4671 |
-
msgstr ""
|
4672 |
-
|
4673 |
-
#: defaults.php:454
|
4674 |
-
msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
|
4675 |
-
msgstr ""
|
4676 |
-
|
4677 |
-
#: defaults.php:455
|
4678 |
-
msgid "Option Site Address (URL) in WordPress settings changed"
|
4679 |
-
msgstr ""
|
4680 |
-
|
4681 |
-
#: defaults.php:455
|
4682 |
-
msgid "Changed the site address (URL) from %old_url% to %new_url%."
|
4683 |
-
msgstr ""
|
4684 |
-
|
4685 |
-
#: defaults.php:456
|
4686 |
-
msgid "Created a New cron job"
|
4687 |
-
msgstr ""
|
4688 |
-
|
4689 |
-
#: defaults.php:456
|
4690 |
-
msgid ""
|
4691 |
-
"A new cron job called %name% was created and is scheduled to run %schedule%."
|
4692 |
-
msgstr ""
|
4693 |
-
|
4694 |
-
#: defaults.php:457
|
4695 |
-
msgid "Changed status of the cron job"
|
4696 |
-
msgstr ""
|
4697 |
-
|
4698 |
-
#: defaults.php:457
|
4699 |
-
msgid "The cron job %name% was %status%."
|
4700 |
-
msgstr ""
|
4701 |
-
|
4702 |
-
#: defaults.php:458
|
4703 |
-
msgid "Deleted the cron job"
|
4704 |
-
msgstr ""
|
4705 |
-
|
4706 |
-
#: defaults.php:458
|
4707 |
-
msgid "The cron job %name% was deleted."
|
4708 |
-
msgstr ""
|
4709 |
-
|
4710 |
-
#: defaults.php:459
|
4711 |
-
msgid "Started the cron job"
|
4712 |
-
msgstr ""
|
4713 |
-
|
4714 |
-
#: defaults.php:459
|
4715 |
-
msgid "The cron job %name% has just started."
|
4716 |
-
msgstr ""
|
4717 |
-
|
4718 |
-
#: defaults.php:466
|
4719 |
-
msgid "Multisite Network"
|
4720 |
-
msgstr ""
|
4721 |
-
|
4722 |
-
#: defaults.php:471
|
4723 |
-
msgid "User granted Super Admin privileges"
|
4724 |
-
msgstr ""
|
4725 |
-
|
4726 |
-
#: defaults.php:471
|
4727 |
-
msgid "Granted Super Admin privileges to %TargetUsername%."
|
4728 |
-
msgstr ""
|
4729 |
-
|
4730 |
-
#: defaults.php:472
|
4731 |
-
msgid "User revoked from Super Admin privileges"
|
4732 |
-
msgstr ""
|
4733 |
-
|
4734 |
-
#: defaults.php:472
|
4735 |
-
msgid "Revoked Super Admin privileges from %TargetUsername%."
|
4736 |
-
msgstr ""
|
4737 |
-
|
4738 |
-
#: defaults.php:473
|
4739 |
-
msgid "Existing user added to a site"
|
4740 |
-
msgstr ""
|
4741 |
-
|
4742 |
-
#: defaults.php:473
|
4743 |
-
msgid ""
|
4744 |
-
"Added the existing user %TargetUsername% with %TargetUserRole% role to site "
|
4745 |
-
"%SiteName%."
|
4746 |
-
msgstr ""
|
4747 |
-
|
4748 |
-
#: defaults.php:474
|
4749 |
-
msgid "User removed from site"
|
4750 |
-
msgstr ""
|
4751 |
-
|
4752 |
-
#: defaults.php:474
|
4753 |
-
msgid ""
|
4754 |
-
"Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
|
4755 |
-
"site."
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: defaults.php:
|
4759 |
-
msgid "
|
4760 |
msgstr ""
|
4761 |
|
4762 |
-
#: defaults.php:
|
4763 |
-
msgid "
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: defaults.php:
|
4767 |
-
msgid "
|
4768 |
msgstr ""
|
4769 |
|
4770 |
-
#: defaults.php:
|
4771 |
-
msgid ""
|
4772 |
-
"Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
|
4773 |
-
"% by %UserChanger%."
|
4774 |
msgstr ""
|
4775 |
|
4776 |
-
#: defaults.php:
|
4777 |
-
msgid "
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: defaults.php:
|
4781 |
-
msgid "
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: defaults.php:
|
4785 |
-
msgid "
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: defaults.php:
|
4789 |
-
msgid "
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: defaults.php:
|
4793 |
-
msgid "
|
4794 |
msgstr ""
|
4795 |
|
4796 |
-
#: defaults.php:
|
4797 |
-
msgid "
|
4798 |
msgstr ""
|
4799 |
-
|
4800 |
-
#: defaults.php:
|
4801 |
-
msgid "
|
4802 |
msgstr ""
|
4803 |
|
4804 |
-
#: defaults.php:
|
4805 |
-
msgid "
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: defaults.php:
|
4809 |
-
msgid "
|
4810 |
msgstr ""
|
4811 |
|
4812 |
-
#: defaults.php:
|
4813 |
-
msgid "
|
4814 |
msgstr ""
|
4815 |
|
4816 |
-
#: defaults.php:
|
4817 |
-
msgid "
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: defaults.php:
|
4821 |
-
msgid "
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: defaults.php:
|
4825 |
-
msgid "User
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: defaults.php:
|
4829 |
-
msgid ""
|
4830 |
-
"Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: defaults.php:
|
4834 |
-
msgid "
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: defaults.php:
|
4838 |
msgid ""
|
4839 |
-
"
|
4840 |
-
"%EditorLinkForum%."
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#: defaults.php:
|
4844 |
-
msgid "
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#: defaults.php:
|
4848 |
-
msgid ""
|
4849 |
-
"Changed the visibility of the forum %ForumName% from %OldVisibility% to "
|
4850 |
-
"%NewVisibility%. %EditorLinkForum%."
|
4851 |
msgstr ""
|
4852 |
|
4853 |
-
#: defaults.php:
|
4854 |
-
msgid "
|
4855 |
msgstr ""
|
4856 |
|
4857 |
-
#: defaults.php:
|
4858 |
-
msgid ""
|
4859 |
-
"Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
|
4860 |
-
"%EditorLinkForum%."
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: defaults.php:
|
4864 |
-
msgid "
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#: defaults.php:
|
4868 |
msgid ""
|
4869 |
-
"
|
4870 |
-
"%EditorLinkForum%."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: defaults.php:
|
4874 |
-
msgid "
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: defaults.php:
|
4878 |
-
msgid "
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: defaults.php:
|
4882 |
-
msgid "
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: defaults.php:
|
4886 |
-
msgid "
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: defaults.php:
|
4890 |
-
msgid "
|
|
|
|
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: defaults.php:
|
4894 |
-
msgid "
|
4895 |
msgstr ""
|
4896 |
|
4897 |
-
#: defaults.php:
|
4898 |
-
msgid "
|
4899 |
msgstr ""
|
4900 |
|
4901 |
-
#: defaults.php:
|
4902 |
msgid ""
|
4903 |
-
"
|
4904 |
-
"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#: defaults.php:
|
4908 |
-
msgid "
|
|
|
|
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#: defaults.php:
|
4912 |
msgid ""
|
4913 |
-
"Changed the
|
4914 |
-
"%EditorLinkForum%."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: defaults.php:
|
4918 |
-
msgid "
|
|
|
|
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: defaults.php:
|
4922 |
-
msgid "
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: defaults.php:
|
4926 |
-
msgid "
|
4927 |
msgstr ""
|
4928 |
|
4929 |
-
#: defaults.php:
|
4930 |
-
msgid "
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: defaults.php:
|
4934 |
-
msgid "
|
4935 |
msgstr ""
|
4936 |
|
4937 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
4938 |
msgid ""
|
4939 |
-
"
|
4940 |
-
"minutes in the forums."
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: defaults.php:
|
4944 |
-
msgid "
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#: defaults.php:
|
4948 |
-
msgid ""
|
4949 |
-
"Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
|
4950 |
-
"forums."
|
4951 |
msgstr ""
|
4952 |
|
4953 |
-
#: defaults.php:
|
4954 |
-
msgid "
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: defaults.php:
|
4958 |
-
msgid "
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: defaults.php:
|
4962 |
-
msgid "
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: defaults.php:
|
4966 |
-
msgid ""
|
4967 |
-
"Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
|
4968 |
-
"%EditorLinkTopic%."
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#: defaults.php:
|
4972 |
-
msgid "
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#: defaults.php:
|
4976 |
-
msgid ""
|
4977 |
-
"Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
|
4978 |
-
"%EditorLinkTopic%."
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: defaults.php:
|
4982 |
-
msgid "User
|
4983 |
msgstr ""
|
4984 |
|
4985 |
-
#: defaults.php:
|
4986 |
-
msgid "
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: defaults.php:
|
4990 |
-
msgid "User
|
4991 |
msgstr ""
|
4992 |
|
4993 |
-
#: defaults.php:
|
4994 |
-
msgid ""
|
4995 |
-
"Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
|
4996 |
-
"%EditorLinkTopic%."
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#: defaults.php:
|
5000 |
-
msgid "
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#: defaults.php:
|
5004 |
-
msgid "
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: defaults.php:
|
5008 |
-
msgid "
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#: defaults.php:
|
5012 |
-
msgid "
|
|
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: defaults.php:
|
5016 |
-
msgid "
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#: defaults.php:
|
5020 |
-
msgid "
|
|
|
|
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#: defaults.php:
|
5024 |
-
msgid "User
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#: defaults.php:
|
5028 |
msgid ""
|
5029 |
-
"
|
5030 |
-
"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: defaults.php:
|
5034 |
-
msgid "User
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: defaults.php:
|
5038 |
-
msgid ""
|
5039 |
-
"Created a new product called %ProductTitle% and saved it as draft. View the "
|
5040 |
-
"product: %EditorLinkProduct%."
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#: defaults.php:
|
5044 |
-
msgid "User
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#: defaults.php:
|
5048 |
-
msgid ""
|
5049 |
-
"Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
|
5050 |
-
"the product: %EditorLinkProduct%."
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: defaults.php:
|
5054 |
-
msgid "User
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#: defaults.php:
|
5058 |
-
msgid ""
|
5059 |
-
"Changed the category of the %ProductStatus% product %ProductTitle% from "
|
5060 |
-
"%OldCategories% to %NewCategories%. View the product: %EditorLinkProduct%."
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#: defaults.php:
|
5064 |
-
msgid "
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#: defaults.php:
|
5068 |
msgid ""
|
5069 |
-
"
|
5070 |
-
"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
-
#: defaults.php:
|
5074 |
-
msgid "User
|
5075 |
msgstr ""
|
5076 |
|
5077 |
-
#: defaults.php:
|
5078 |
msgid ""
|
5079 |
-
"
|
5080 |
-
"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#: defaults.php:
|
5084 |
-
msgid "
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#: defaults.php:
|
5088 |
msgid ""
|
5089 |
-
"Changed the
|
5090 |
-
"%
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: defaults.php:
|
5094 |
-
msgid "User changed
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: defaults.php:
|
5098 |
-
msgid ""
|
5099 |
-
"Changed the date of the %ProductStatus% product %ProductTitle% from %OldDate"
|
5100 |
-
"% to %NewDate%. View the product: %EditorLinkProduct%."
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#: defaults.php:
|
5104 |
-
msgid "User changed
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#: defaults.php:
|
5108 |
msgid ""
|
5109 |
-
"Changed the
|
5110 |
-
"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: defaults.php:
|
5114 |
-
msgid "User
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: defaults.php:
|
5118 |
-
msgid ""
|
5119 |
-
"Modified the %ProductStatus% product %ProductTitle%. Product URL is "
|
5120 |
-
"%ProductUrl%. View the product: %EditorLinkProduct%."
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#: defaults.php:
|
5124 |
-
msgid "User
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#: defaults.php:
|
5128 |
msgid ""
|
5129 |
-
"
|
5130 |
-
"%
|
5131 |
msgstr ""
|
5132 |
|
5133 |
-
#: defaults.php:
|
5134 |
-
msgid "User
|
5135 |
msgstr ""
|
5136 |
|
5137 |
-
#: defaults.php:
|
5138 |
msgid ""
|
5139 |
-
"
|
5140 |
-
"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#: defaults.php:
|
5144 |
-
msgid "User
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#: defaults.php:
|
5148 |
-
msgid "
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: defaults.php:
|
5152 |
-
msgid "User
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: defaults.php:
|
5156 |
msgid ""
|
5157 |
-
"
|
5158 |
-
"%
|
5159 |
msgstr ""
|
5160 |
|
5161 |
-
#: defaults.php:
|
5162 |
-
msgid "User
|
5163 |
msgstr ""
|
5164 |
|
5165 |
-
#: defaults.php:
|
5166 |
msgid ""
|
5167 |
-
"
|
5168 |
-
"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: defaults.php:
|
5172 |
-
msgid "User
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: defaults.php:
|
5176 |
msgid ""
|
5177 |
-
"
|
5178 |
-
"
|
5179 |
msgstr ""
|
5180 |
|
5181 |
-
#: defaults.php:
|
5182 |
-
msgid "User
|
5183 |
msgstr ""
|
5184 |
|
5185 |
-
#: defaults.php:
|
5186 |
msgid ""
|
5187 |
-
"
|
5188 |
-
"%
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: defaults.php:
|
5192 |
-
msgid "User
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#: defaults.php:
|
5196 |
msgid ""
|
5197 |
-
"
|
5198 |
-
"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
-
#: defaults.php:
|
5202 |
-
msgid "User changed the
|
5203 |
msgstr ""
|
5204 |
|
5205 |
-
#: defaults.php:
|
5206 |
msgid ""
|
5207 |
-
"Changed the
|
5208 |
-
"
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#: defaults.php:
|
5212 |
-
msgid "
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: defaults.php:
|
5216 |
-
msgid ""
|
5217 |
-
"Changed the %PriceType% of the %ProductStatus% product %ProductTitle% from "
|
5218 |
-
"%OldPrice% to %NewPrice%. View the product: %EditorLinkProduct%."
|
5219 |
msgstr ""
|
5220 |
|
5221 |
-
#: defaults.php:
|
5222 |
-
msgid "User
|
5223 |
msgstr ""
|
5224 |
|
5225 |
-
#: defaults.php:
|
5226 |
msgid ""
|
5227 |
-
"
|
5228 |
-
"to %NewSku%. View the product: %EditorLinkProduct%."
|
5229 |
msgstr ""
|
5230 |
|
5231 |
-
#: defaults.php:
|
5232 |
-
msgid "User changed
|
5233 |
msgstr ""
|
5234 |
|
5235 |
-
#: defaults.php:
|
5236 |
msgid ""
|
5237 |
-
"Changed the
|
5238 |
-
"%
|
5239 |
msgstr ""
|
5240 |
|
5241 |
-
#: defaults.php:
|
5242 |
-
msgid "User changed
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: defaults.php:
|
5246 |
msgid ""
|
5247 |
-
"Changed the
|
5248 |
-
"
|
5249 |
msgstr ""
|
5250 |
|
5251 |
-
#: defaults.php:
|
5252 |
-
msgid "User
|
5253 |
msgstr ""
|
5254 |
|
5255 |
-
#: defaults.php:
|
5256 |
msgid ""
|
5257 |
-
"Changed the
|
5258 |
-
"%
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: defaults.php:
|
5262 |
-
msgid "User changed
|
5263 |
msgstr ""
|
5264 |
|
5265 |
-
#: defaults.php:
|
5266 |
msgid ""
|
5267 |
-
"Changed the
|
5268 |
-
"%
|
5269 |
msgstr ""
|
5270 |
|
5271 |
-
#: defaults.php:
|
5272 |
-
msgid "User
|
5273 |
msgstr ""
|
5274 |
|
5275 |
-
#: defaults.php:
|
5276 |
-
msgid ""
|
5277 |
-
"Changed the %DimensionType% dimensions of the %ProductStatus% product "
|
5278 |
-
"%ProductTitle% from %OldDimension% to %NewDimension%. View the product: "
|
5279 |
-
"%EditorLinkProduct%."
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: defaults.php:
|
5283 |
-
msgid "User
|
5284 |
msgstr ""
|
5285 |
|
5286 |
-
#: defaults.php:
|
5287 |
-
msgid ""
|
5288 |
-
"Added the Downloadable File %FileName% with File URL %FileUrl% to the "
|
5289 |
-
"%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
|
5290 |
-
"%."
|
5291 |
msgstr ""
|
5292 |
|
5293 |
-
#: defaults.php:
|
5294 |
-
msgid "User
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: defaults.php:
|
5298 |
-
msgid ""
|
5299 |
-
"Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
|
5300 |
-
"%ProductStatus% product %ProductTitle%. View the product: %EditorLinkProduct"
|
5301 |
-
"%."
|
5302 |
msgstr ""
|
5303 |
|
5304 |
-
#: defaults.php:
|
5305 |
-
msgid "User changed the
|
5306 |
msgstr ""
|
5307 |
|
5308 |
-
#: defaults.php:
|
5309 |
msgid ""
|
5310 |
-
"Changed the
|
5311 |
-
"%
|
5312 |
-
"%."
|
5313 |
msgstr ""
|
5314 |
|
5315 |
-
#: defaults.php:
|
5316 |
-
msgid "User changed
|
5317 |
msgstr ""
|
5318 |
|
5319 |
-
#: defaults.php:
|
5320 |
-
msgid ""
|
5321 |
-
"Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
|
5322 |
-
"% in %ProductStatus% product %ProductTitle%. View the product: "
|
5323 |
-
"%EditorLinkProduct%."
|
5324 |
msgstr ""
|
5325 |
|
5326 |
-
#: defaults.php:
|
5327 |
-
msgid "User changed
|
5328 |
msgstr ""
|
5329 |
|
5330 |
-
#: defaults.php:
|
5331 |
-
msgid ""
|
5332 |
-
"Changed the catalog visibility of the %ProductStatus% product %ProductTitle% "
|
5333 |
-
"from %OldVisibility% to %NewVisibility%. View the product: %EditorLinkProduct"
|
5334 |
-
"%."
|
5335 |
msgstr ""
|
5336 |
|
5337 |
-
#: defaults.php:
|
5338 |
-
msgid "User changed
|
5339 |
msgstr ""
|
5340 |
|
5341 |
-
#: defaults.php:
|
5342 |
msgid ""
|
5343 |
-
"
|
5344 |
-
"%
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: defaults.php:
|
5348 |
-
msgid "User changed
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#: defaults.php:
|
5352 |
msgid ""
|
5353 |
-
"Changed the
|
5354 |
-
"
|
5355 |
-
"%EditorLinkProduct%."
|
5356 |
msgstr ""
|
5357 |
|
5358 |
-
#: defaults.php:
|
5359 |
-
msgid "User
|
5360 |
msgstr ""
|
5361 |
|
5362 |
-
#: defaults.php:
|
5363 |
msgid ""
|
5364 |
-
"
|
5365 |
-
"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: defaults.php:
|
5369 |
-
msgid "User
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: defaults.php:
|
5373 |
-
msgid ""
|
5374 |
-
"%Status% the product %CrossSellTitle% to Cross-sells in the %ProductStatus% "
|
5375 |
-
"product %ProductTitle%. View the product: %EditorLinkProduct%."
|
5376 |
msgstr ""
|
5377 |
|
5378 |
-
#: defaults.php:
|
5379 |
-
msgid "
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: defaults.php:
|
5383 |
msgid ""
|
5384 |
-
"
|
5385 |
-
"
|
5386 |
-
"%EditorLinkProduct%."
|
5387 |
msgstr ""
|
5388 |
|
5389 |
-
#: defaults.php:
|
5390 |
-
msgid "
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: defaults.php:
|
5394 |
msgid ""
|
5395 |
-
"
|
5396 |
-
"%
|
5397 |
-
"%EditorLinkProduct%."
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: defaults.php:
|
5401 |
-
msgid "
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: defaults.php:
|
5405 |
-
msgid ""
|
5406 |
-
"Changed the attribute's name from %OldValue% to %NewValue% in the "
|
5407 |
-
"%ProductStatus% product %ProductTitle%. URL is: %ProductUrl%. View the "
|
5408 |
-
"product: %EditorLinkProduct%."
|
5409 |
msgstr ""
|
5410 |
|
5411 |
-
#: defaults.php:
|
5412 |
-
msgid "
|
5413 |
msgstr ""
|
5414 |
|
5415 |
-
#: defaults.php:
|
5416 |
msgid ""
|
5417 |
-
"
|
5418 |
-
"%
|
5419 |
-
"product: %EditorLinkProduct%."
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: defaults.php:
|
5423 |
-
msgid "
|
5424 |
msgstr ""
|
5425 |
|
5426 |
-
#: defaults.php:
|
5427 |
-
msgid ""
|
5428 |
-
"Set the attribute %AttributeName% as %AttributeVisiblilty% on product page "
|
5429 |
-
"in %ProductStatus% product %ProductTitle%. View the product: "
|
5430 |
-
"%EditorLinkProduct%."
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: defaults.php:
|
5434 |
-
msgid "User
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: defaults.php:
|
5438 |
-
msgid "
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: defaults.php:
|
5442 |
-
msgid "User
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: defaults.php:
|
5446 |
-
msgid "
|
5447 |
msgstr ""
|
5448 |
|
5449 |
-
#: defaults.php:
|
5450 |
-
msgid "User changed
|
5451 |
msgstr ""
|
5452 |
|
5453 |
-
#: defaults.php:
|
5454 |
msgid ""
|
5455 |
-
"Changed the
|
5456 |
-
|
5457 |
-
|
5458 |
-
#: defaults.php:571
|
5459 |
-
msgid "User Enabled/Disabled taxes"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: defaults.php:
|
5463 |
-
msgid "
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: defaults.php:
|
5467 |
-
msgid "User
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: defaults.php:
|
5471 |
msgid ""
|
5472 |
-
"
|
|
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: defaults.php:
|
5476 |
-
msgid "User
|
5477 |
msgstr ""
|
5478 |
|
5479 |
-
#: defaults.php:
|
5480 |
-
msgid "
|
|
|
|
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: defaults.php:
|
5484 |
-
msgid "User
|
5485 |
msgstr ""
|
5486 |
|
5487 |
-
#: defaults.php:
|
5488 |
-
msgid "
|
|
|
|
|
5489 |
msgstr ""
|
5490 |
|
5491 |
-
#: defaults.php:
|
5492 |
-
msgid "User
|
5493 |
msgstr ""
|
5494 |
|
5495 |
-
#: defaults.php:
|
5496 |
-
msgid "
|
|
|
|
|
5497 |
msgstr ""
|
5498 |
|
5499 |
-
#: defaults.php:
|
5500 |
-
msgid "User
|
5501 |
msgstr ""
|
5502 |
|
5503 |
-
#: defaults.php:
|
5504 |
-
msgid "
|
|
|
|
|
5505 |
msgstr ""
|
5506 |
|
5507 |
-
#: defaults.php:
|
5508 |
-
msgid "User
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: defaults.php:
|
5512 |
-
msgid "
|
|
|
|
|
5513 |
msgstr ""
|
5514 |
|
5515 |
-
#: defaults.php:
|
5516 |
-
msgid "User
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: defaults.php:
|
5520 |
-
msgid "
|
|
|
|
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: defaults.php:
|
5524 |
-
msgid "User
|
5525 |
msgstr ""
|
5526 |
|
5527 |
-
#: defaults.php:
|
5528 |
msgid ""
|
5529 |
-
"
|
5530 |
-
"
|
5531 |
msgstr ""
|
5532 |
|
5533 |
-
#: defaults.php:
|
5534 |
-
msgid "User
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: defaults.php:
|
5538 |
msgid ""
|
5539 |
-
"
|
5540 |
-
"
|
5541 |
msgstr ""
|
5542 |
|
5543 |
-
#: defaults.php:
|
5544 |
-
msgid "User changed the
|
5545 |
msgstr ""
|
5546 |
|
5547 |
-
#: defaults.php:
|
5548 |
msgid ""
|
5549 |
-
"Changed the
|
5550 |
-
"%
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: defaults.php:
|
5554 |
-
msgid "User
|
5555 |
msgstr ""
|
5556 |
|
5557 |
-
#: defaults.php:
|
5558 |
msgid ""
|
5559 |
-
"
|
5560 |
-
"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: defaults.php:
|
5564 |
-
msgid "User
|
5565 |
msgstr ""
|
5566 |
|
5567 |
-
#: defaults.php:
|
5568 |
msgid ""
|
5569 |
-
"
|
5570 |
-
"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
-
#: defaults.php:
|
5574 |
-
msgid "User
|
5575 |
msgstr ""
|
5576 |
|
5577 |
-
#: defaults.php:
|
5578 |
msgid ""
|
5579 |
-
"
|
5580 |
-
"%OldName% to %NewName%."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: defaults.php:
|
5584 |
-
msgid "User
|
5585 |
msgstr ""
|
5586 |
|
5587 |
-
#: defaults.php:
|
5588 |
-
msgid ""
|
5589 |
-
"Created a new Attribute called %AttributeName% with slug %AttributeSlug% in "
|
5590 |
-
"WooCommerce."
|
5591 |
msgstr ""
|
5592 |
|
5593 |
-
#: defaults.php:
|
5594 |
-
msgid "User
|
5595 |
msgstr ""
|
5596 |
|
5597 |
-
#: defaults.php:
|
5598 |
msgid ""
|
5599 |
-
"
|
5600 |
-
"
|
5601 |
msgstr ""
|
5602 |
|
5603 |
-
#: defaults.php:
|
5604 |
-
msgid "User changed
|
5605 |
msgstr ""
|
5606 |
|
5607 |
-
#: defaults.php:
|
5608 |
msgid ""
|
5609 |
-
"Changed the
|
5610 |
-
"%
|
5611 |
msgstr ""
|
5612 |
|
5613 |
-
#: defaults.php:
|
5614 |
-
msgid "User changed
|
5615 |
msgstr ""
|
5616 |
|
5617 |
-
#: defaults.php:
|
5618 |
msgid ""
|
5619 |
-
"Changed the
|
5620 |
-
"%
|
5621 |
msgstr ""
|
5622 |
|
5623 |
-
#: defaults.php:
|
5624 |
-
msgid "User changed the
|
5625 |
msgstr ""
|
5626 |
|
5627 |
-
#: defaults.php:
|
5628 |
msgid ""
|
5629 |
-
"Changed the
|
5630 |
-
"
|
5631 |
msgstr ""
|
5632 |
|
5633 |
-
#: defaults.php:
|
5634 |
-
msgid "User
|
5635 |
msgstr ""
|
5636 |
|
5637 |
-
#: defaults.php:
|
5638 |
msgid ""
|
5639 |
-
"
|
5640 |
-
"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: defaults.php:
|
5644 |
-
msgid "User
|
5645 |
msgstr ""
|
5646 |
|
5647 |
-
#: defaults.php:
|
5648 |
-
msgid "
|
|
|
|
|
5649 |
msgstr ""
|
5650 |
|
5651 |
-
#: defaults.php:
|
5652 |
-
msgid "User
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: defaults.php:
|
5656 |
msgid ""
|
5657 |
-
"
|
5658 |
-
"%
|
5659 |
msgstr ""
|
5660 |
|
5661 |
-
#: defaults.php:
|
5662 |
-
msgid "User changed the
|
5663 |
msgstr ""
|
5664 |
|
5665 |
-
#: defaults.php:
|
5666 |
msgid ""
|
5667 |
-
"Changed the
|
5668 |
-
"%
|
5669 |
msgstr ""
|
5670 |
|
5671 |
-
#: defaults.php:
|
5672 |
-
msgid "User changed the
|
5673 |
msgstr ""
|
5674 |
|
5675 |
-
#: defaults.php:
|
5676 |
msgid ""
|
5677 |
-
"Changed the
|
5678 |
-
"%
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: defaults.php:
|
5682 |
-
msgid "User
|
5683 |
msgstr ""
|
5684 |
|
5685 |
-
#: defaults.php:
|
5686 |
msgid ""
|
5687 |
-
"
|
5688 |
-
"
|
5689 |
msgstr ""
|
5690 |
|
5691 |
-
#: defaults.php:
|
5692 |
-
msgid "User
|
5693 |
msgstr ""
|
5694 |
|
5695 |
-
#: defaults.php:
|
5696 |
msgid ""
|
5697 |
-
"
|
5698 |
-
"%
|
5699 |
msgstr ""
|
5700 |
|
5701 |
-
#: defaults.php:
|
5702 |
-
msgid "User changed the
|
5703 |
msgstr ""
|
5704 |
|
5705 |
-
#: defaults.php:
|
5706 |
msgid ""
|
5707 |
-
"Changed the
|
5708 |
-
"%."
|
5709 |
msgstr ""
|
5710 |
|
5711 |
-
#: defaults.php:
|
5712 |
-
msgid "User changed the
|
5713 |
msgstr ""
|
5714 |
|
5715 |
-
#: defaults.php:
|
5716 |
msgid ""
|
5717 |
-
"Changed the
|
5718 |
-
"
|
5719 |
msgstr ""
|
5720 |
|
5721 |
-
#: defaults.php:
|
5722 |
-
msgid "User
|
5723 |
msgstr ""
|
5724 |
|
5725 |
-
#: defaults.php:
|
5726 |
-
msgid "
|
5727 |
msgstr ""
|
5728 |
|
5729 |
-
#: defaults.php:
|
5730 |
-
msgid "
|
5731 |
msgstr ""
|
5732 |
|
5733 |
-
#: defaults.php:
|
5734 |
-
msgid ""
|
5735 |
-
"A WooCommerce order %OrderTitle% has just been placed. %EditorLinkOrder%."
|
5736 |
msgstr ""
|
5737 |
|
5738 |
-
#: defaults.php:
|
5739 |
-
msgid "
|
5740 |
msgstr ""
|
5741 |
|
5742 |
-
#: defaults.php:
|
5743 |
msgid ""
|
5744 |
-
"
|
5745 |
-
"%."
|
5746 |
msgstr ""
|
5747 |
|
5748 |
-
#: defaults.php:
|
5749 |
-
msgid "User
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: defaults.php:
|
5753 |
-
msgid "
|
5754 |
msgstr ""
|
5755 |
|
5756 |
-
#: defaults.php:
|
5757 |
-
msgid "User
|
5758 |
msgstr ""
|
5759 |
|
5760 |
-
#: defaults.php:
|
5761 |
msgid ""
|
5762 |
-
"
|
5763 |
msgstr ""
|
5764 |
|
5765 |
-
#: defaults.php:
|
5766 |
-
msgid "User
|
|
|
|
|
|
|
|
|
5767 |
msgstr ""
|
5768 |
|
5769 |
-
#: defaults.php:
|
5770 |
-
msgid "
|
5771 |
msgstr ""
|
5772 |
|
5773 |
-
#: defaults.php:
|
5774 |
-
msgid "
|
5775 |
msgstr ""
|
5776 |
|
5777 |
-
#: defaults.php:
|
5778 |
-
msgid "
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: defaults.php:
|
5782 |
-
msgid "
|
5783 |
msgstr ""
|
5784 |
|
5785 |
-
#: defaults.php:
|
5786 |
-
msgid "
|
5787 |
msgstr ""
|
5788 |
|
5789 |
-
#: defaults.php:
|
5790 |
msgid "User changed title of a SEO post"
|
5791 |
msgstr ""
|
5792 |
|
5793 |
-
#: defaults.php:
|
5794 |
msgid ""
|
5795 |
"Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
|
5796 |
"% %EditorLinkPost%."
|
5797 |
msgstr ""
|
5798 |
|
5799 |
-
#: defaults.php:
|
5800 |
msgid "User changed the meta description of a SEO post"
|
5801 |
msgstr ""
|
5802 |
|
5803 |
-
#: defaults.php:
|
5804 |
msgid ""
|
5805 |
"Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
|
5806 |
"%%ReportText%.%ChangeText% %EditorLinkPost%."
|
5807 |
msgstr ""
|
5808 |
|
5809 |
-
#: defaults.php:
|
5810 |
msgid ""
|
5811 |
"User changed setting to allow search engines to show post in search results "
|
5812 |
"of a SEO post"
|
5813 |
msgstr ""
|
5814 |
|
5815 |
-
#: defaults.php:
|
5816 |
msgid ""
|
5817 |
"Changed the setting to allow search engines to show post in search results "
|
5818 |
"from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
|
5819 |
"%PostTitle%. %EditorLinkPost%."
|
5820 |
msgstr ""
|
5821 |
|
5822 |
-
#: defaults.php:
|
5823 |
msgid ""
|
5824 |
"User Enabled/Disabled the option for search engine to follow links of a SEO "
|
5825 |
"post"
|
5826 |
msgstr ""
|
5827 |
|
5828 |
-
#: defaults.php:
|
5829 |
msgid ""
|
5830 |
"%NewStatus% the option for search engine to follow links in the %PostType% "
|
5831 |
"titled %PostTitle%. %EditorLinkPost%."
|
5832 |
msgstr ""
|
5833 |
|
5834 |
-
#: defaults.php:
|
5835 |
msgid "User set the meta robots advanced setting of a SEO post"
|
5836 |
msgstr ""
|
5837 |
|
5838 |
-
#: defaults.php:
|
5839 |
msgid ""
|
5840 |
"Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
|
5841 |
"%PostType% titled %PostTitle%. %EditorLinkPost%."
|
5842 |
msgstr ""
|
5843 |
|
5844 |
-
#: defaults.php:
|
5845 |
msgid "User changed the canonical URL of a SEO post"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: defaults.php:
|
5849 |
msgid ""
|
5850 |
"Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
|
5851 |
"%ReportText%.%ChangeText% %EditorLinkPost%."
|
5852 |
msgstr ""
|
5853 |
|
5854 |
-
#: defaults.php:
|
5855 |
msgid "User changed the focus keyword of a SEO post"
|
5856 |
msgstr ""
|
5857 |
|
5858 |
-
#: defaults.php:
|
5859 |
msgid ""
|
5860 |
"Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
|
5861 |
"from %old_keywords% to %new_keywords%. %EditorLinkPost%."
|
5862 |
msgstr ""
|
5863 |
|
5864 |
-
#: defaults.php:
|
5865 |
msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
|
5866 |
msgstr ""
|
5867 |
|
5868 |
-
#: defaults.php:
|
5869 |
msgid ""
|
5870 |
"%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
|
5871 |
"%PostTitle%. %EditorLinkPost%."
|
5872 |
msgstr ""
|
5873 |
|
5874 |
-
#: defaults.php:
|
5875 |
msgid "User changed the Title Separator setting"
|
5876 |
msgstr ""
|
5877 |
|
5878 |
-
#: defaults.php:
|
5879 |
msgid ""
|
5880 |
"Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
|
5881 |
"settings."
|
5882 |
msgstr ""
|
5883 |
|
5884 |
-
#: defaults.php:
|
5885 |
msgid "User changed the Homepage Title setting"
|
5886 |
msgstr ""
|
5887 |
|
5888 |
-
#: defaults.php:
|
5889 |
msgid ""
|
5890 |
"Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
|
5891 |
"%ChangeText%"
|
5892 |
msgstr ""
|
5893 |
|
5894 |
-
#: defaults.php:
|
5895 |
msgid "User changed the Homepage Meta description setting"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
-
#: defaults.php:
|
5899 |
msgid ""
|
5900 |
"Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
|
5901 |
"settings.%ChangeText%"
|
5902 |
msgstr ""
|
5903 |
|
5904 |
-
#: defaults.php:
|
5905 |
msgid "User changed the Company or Person setting"
|
5906 |
msgstr ""
|
5907 |
|
5908 |
-
#: defaults.php:
|
5909 |
msgid ""
|
5910 |
"Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
|
5911 |
"plugin settings."
|
5912 |
msgstr ""
|
5913 |
|
5914 |
-
#: defaults.php:
|
5915 |
msgid ""
|
5916 |
"User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
|
5917 |
"Yoast SEO plugin settings"
|
5918 |
msgstr ""
|
5919 |
|
5920 |
-
#: defaults.php:
|
5921 |
msgid ""
|
5922 |
"%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
|
5923 |
"plugin settings."
|
5924 |
msgstr ""
|
5925 |
|
5926 |
-
#: defaults.php:
|
5927 |
msgid ""
|
5928 |
"User changed the Posts/Pages title template in the Yoast SEO plugin settings"
|
5929 |
msgstr ""
|
5930 |
|
5931 |
-
#: defaults.php:
|
5932 |
msgid ""
|
5933 |
"Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
|
5934 |
"SEO plugin settings."
|
5935 |
msgstr ""
|
5936 |
|
5937 |
-
#: defaults.php:
|
5938 |
msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
|
5939 |
msgstr ""
|
5940 |
|
5941 |
-
#: defaults.php:
|
5942 |
msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
|
5943 |
msgstr ""
|
5944 |
|
5945 |
-
#: defaults.php:
|
5946 |
msgid ""
|
5947 |
"User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
|
5948 |
msgstr ""
|
5949 |
|
5950 |
-
#: defaults.php:
|
5951 |
msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
|
5952 |
msgstr ""
|
5953 |
|
5954 |
-
#: defaults.php:
|
5955 |
msgid ""
|
5956 |
"User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
|
5957 |
msgstr ""
|
5958 |
|
5959 |
-
#: defaults.php:
|
5960 |
msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
|
5961 |
msgstr ""
|
5962 |
|
5963 |
-
#: defaults.php:
|
5964 |
msgid ""
|
5965 |
"User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
|
5966 |
msgstr ""
|
5967 |
|
5968 |
-
#: defaults.php:
|
5969 |
msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
|
5970 |
msgstr ""
|
5971 |
|
5972 |
-
#: defaults.php:
|
5973 |
msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
|
5974 |
msgstr ""
|
5975 |
|
5976 |
-
#: defaults.php:
|
5977 |
msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
|
5978 |
msgstr ""
|
5979 |
|
5980 |
-
#: defaults.php:
|
5981 |
msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
|
5982 |
msgstr ""
|
5983 |
|
5984 |
-
#: defaults.php:
|
5985 |
msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
|
5986 |
msgstr ""
|
5987 |
|
5988 |
-
#: defaults.php:
|
5989 |
msgid ""
|
5990 |
"User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
|
5991 |
msgstr ""
|
5992 |
|
5993 |
-
#: defaults.php:
|
5994 |
msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
|
5995 |
msgstr ""
|
5996 |
|
5997 |
-
#: defaults.php:
|
5998 |
msgid ""
|
5999 |
"User changed the Posts/Pages meta description template in the Yoast SEO "
|
6000 |
"plugin settings"
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: defaults.php:
|
6004 |
msgid ""
|
6005 |
"Changed the %SEOPostType% meta description template from %old% to %new% in "
|
6006 |
"the Yoast SEO plugin settings."
|
6007 |
msgstr ""
|
6008 |
|
6009 |
-
#: defaults.php:
|
6010 |
msgid ""
|
6011 |
"User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
|
6012 |
"plugin settings"
|
6013 |
msgstr ""
|
6014 |
|
6015 |
-
#: defaults.php:
|
6016 |
msgid ""
|
6017 |
"%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
|
6018 |
"SEO plugin settings."
|
6019 |
msgstr ""
|
6020 |
|
6021 |
-
#: defaults.php:
|
6022 |
msgid ""
|
6023 |
"User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
|
6024 |
"plugin settings"
|
6025 |
msgstr ""
|
6026 |
|
6027 |
-
#: defaults.php:
|
6028 |
msgid ""
|
6029 |
"%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
|
6030 |
"plugin settings."
|
6031 |
msgstr ""
|
6032 |
|
6033 |
-
#: defaults.php:
|
6034 |
msgid ""
|
6035 |
"User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
|
6036 |
"plugin settings"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
-
#: defaults.php:
|
6040 |
msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
|
6041 |
msgstr ""
|
6042 |
|
6043 |
-
|
6044 |
-
#: wp-security-audit-log.php:457 wp-security-audit-log.php:484
|
6045 |
#, php-format
|
6046 |
msgid "Hey %1$s"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
-
#: wp-security-audit-log.php:
|
6050 |
msgid ""
|
6051 |
"Never miss an important update! Opt-in to our security and feature updates "
|
6052 |
"notifications, and non-sensitive diagnostic tracking with freemius.com."
|
6053 |
msgstr ""
|
6054 |
|
6055 |
-
#: wp-security-audit-log.php:
|
6056 |
msgid "Note: "
|
6057 |
msgstr ""
|
6058 |
|
6059 |
-
#: wp-security-audit-log.php:
|
6060 |
msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
|
6061 |
msgstr ""
|
6062 |
|
6063 |
-
|
6064 |
-
#: wp-security-audit-log.php:486
|
6065 |
#, php-format
|
6066 |
msgid ""
|
6067 |
"Please help us improve %2$s! If you opt-in, some non-sensitive data about "
|
@@ -6069,101 +4077,35 @@ msgid ""
|
|
6069 |
"use. If you skip this, that's okay! %2$s will still work just fine."
|
6070 |
msgstr ""
|
6071 |
|
6072 |
-
|
6073 |
-
#: wp-security-audit-log.php:508
|
6074 |
-
#, php-format
|
6075 |
-
msgid ""
|
6076 |
-
"Get a free 7-day trial of the premium edition of %s. No credit card "
|
6077 |
-
"required, no commitments!"
|
6078 |
-
msgstr ""
|
6079 |
-
|
6080 |
-
#. Plugin Name of the plugin/theme
|
6081 |
-
#: wp-security-audit-log.php:509
|
6082 |
-
msgid "WP Security Audit Log"
|
6083 |
-
msgstr ""
|
6084 |
-
|
6085 |
-
#: wp-security-audit-log.php:513
|
6086 |
-
msgid "Start free trial"
|
6087 |
-
msgstr ""
|
6088 |
-
|
6089 |
-
#: wp-security-audit-log.php:658
|
6090 |
msgid ""
|
6091 |
"Error: You do not have sufficient permissions to disable this custom field."
|
6092 |
msgstr ""
|
6093 |
|
6094 |
-
#: wp-security-audit-log.php:
|
6095 |
msgid "Error: You do not have sufficient permissions to disable this alert."
|
6096 |
msgstr ""
|
6097 |
|
6098 |
-
#: wp-security-audit-log.php:
|
6099 |
#, php-format
|
6100 |
msgid ""
|
6101 |
"You are using a version of PHP that is older than %s, which is no longer "
|
6102 |
"supported."
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: wp-security-audit-log.php:
|
6106 |
msgid ""
|
6107 |
"Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
|
6108 |
"\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
|
6109 |
"are using."
|
6110 |
msgstr ""
|
6111 |
|
6112 |
-
|
6113 |
-
msgid ""
|
6114 |
-
"This plugin uses 3 tables in the WordPress database to store the activity "
|
6115 |
-
"log and settings. It seems that these tables were not created."
|
6116 |
-
msgstr ""
|
6117 |
-
|
6118 |
-
#: wp-security-audit-log.php:911
|
6119 |
-
msgid ""
|
6120 |
-
"This could happen because the database user does not have the right "
|
6121 |
-
"privileges to create the tables in the database. We recommend you to update "
|
6122 |
-
"the privileges and try enabling the plugin again."
|
6123 |
-
msgstr ""
|
6124 |
-
|
6125 |
-
#: wp-security-audit-log.php:913
|
6126 |
-
#, php-format
|
6127 |
-
msgid ""
|
6128 |
-
"If after doing so you still have issues, please send us an email on %s for "
|
6129 |
-
"assistance."
|
6130 |
-
msgstr ""
|
6131 |
-
|
6132 |
-
#: wp-security-audit-log.php:913
|
6133 |
-
msgid "support@wpsecurityauditlog.com"
|
6134 |
-
msgstr ""
|
6135 |
-
|
6136 |
-
#: wp-security-audit-log.php:1564
|
6137 |
-
msgid "Every 6 hours"
|
6138 |
-
msgstr ""
|
6139 |
-
|
6140 |
-
#: wp-security-audit-log.php:1568
|
6141 |
-
msgid "Every 45 minutes"
|
6142 |
-
msgstr ""
|
6143 |
-
|
6144 |
-
#: wp-security-audit-log.php:1572
|
6145 |
-
msgid "Every 30 minutes"
|
6146 |
-
msgstr ""
|
6147 |
-
|
6148 |
-
#: wp-security-audit-log.php:1576
|
6149 |
-
msgid "Every 15 minutes"
|
6150 |
-
msgstr ""
|
6151 |
-
|
6152 |
-
#: wp-security-audit-log.php:1580
|
6153 |
-
msgid "Every 10 minutes"
|
6154 |
-
msgstr ""
|
6155 |
-
|
6156 |
-
#: wp-security-audit-log.php:1584
|
6157 |
-
msgid "Every 1 minute"
|
6158 |
-
msgstr ""
|
6159 |
-
|
6160 |
-
#. translators: 1. Deprecated method name 2. Version since deprecated
|
6161 |
-
#: wp-security-audit-log.php:1598
|
6162 |
-
#, php-format
|
6163 |
-
msgid "Method %1$s is deprecated since version %2$s!"
|
6164 |
msgstr ""
|
6165 |
|
6166 |
#. Plugin URI of the plugin/theme
|
|
|
6167 |
msgid "http://www.wpsecurityauditlog.com/"
|
6168 |
msgstr ""
|
6169 |
|
@@ -6180,7 +4122,3 @@ msgstr ""
|
|
6180 |
#. Author of the plugin/theme
|
6181 |
msgid "WP White Security"
|
6182 |
msgstr ""
|
6183 |
-
|
6184 |
-
#. Author URI of the plugin/theme
|
6185 |
-
msgid "http://www.wpwhitesecurity.com/"
|
6186 |
-
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: WP Security Audit Log\n"
|
6 |
+
"POT-Creation-Date: 2018-05-02 11:30+0100\n"
|
7 |
+
"PO-Revision-Date: 2018-05-02 11:30+0100\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Generator: Poedit 2.0.7\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
|
16 |
"X-Poedit-WPHeader: wp-security-audit-log.php\n"
|
21 |
"X-Poedit-SearchPath-0: .\n"
|
22 |
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
|
24 |
+
#: classes/AuditLogListView.php:80
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
msgid "No events so far."
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: classes/AuditLogListView.php:98
|
29 |
msgid "Show "
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: classes/AuditLogListView.php:108
|
33 |
msgid " Items"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: classes/AuditLogListView.php:123 classes/Views/AuditLog.php:221
|
37 |
+
#: classes/Views/AuditLog.php:244
|
38 |
msgid "All Sites"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: classes/AuditLogListView.php:147
|
42 |
msgid "Live Database"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: classes/AuditLogListView.php:150
|
46 |
msgid "Archive Database"
|
47 |
msgstr ""
|
48 |
|
49 |
+
#: classes/AuditLogListView.php:203 classes/WidgetManager.php:67
|
|
|
50 |
msgid "User"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: classes/AuditLogListView.php:205 classes/Views/Settings.php:650
|
54 |
msgid "Username"
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: classes/AuditLogListView.php:208 classes/AuditLogListView.php:225
|
58 |
+
msgid "Alert ID"
|
|
|
59 |
msgstr ""
|
60 |
|
61 |
+
#: classes/AuditLogListView.php:209 classes/AuditLogListView.php:228
|
|
|
62 |
msgid "Severity"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: classes/AuditLogListView.php:210 classes/AuditLogListView.php:231
|
66 |
msgid "Date"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: classes/AuditLogListView.php:212 classes/AuditLogListView.php:237
|
70 |
msgid "Source IP"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: classes/AuditLogListView.php:215 classes/AuditLogListView.php:240
|
74 |
msgid "Site"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: classes/AuditLogListView.php:217 classes/AuditLogListView.php:243
|
78 |
msgid "Message"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: classes/AuditLogListView.php:295
|
82 |
msgid "Click to toggle."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: classes/AuditLogListView.php:314
|
86 |
+
msgid "Disable this type of alerts."
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: classes/AuditLogListView.php:322
|
90 |
msgid "Unknown error code."
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: classes/AuditLogListView.php:357
|
94 |
+
msgid "Show me all activity by this User"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: classes/AuditLogListView.php:372
|
98 |
msgid "Unknown"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: classes/AuditLogListView.php:376 classes/Views/Licensing.php:113
|
|
|
|
|
|
|
|
|
102 |
#: classes/Views/Licensing.php:153
|
103 |
msgid "Plugin"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: classes/AuditLogListView.php:380
|
107 |
msgid "Plugins"
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: classes/AuditLogListView.php:384
|
111 |
msgid "Website Visitor"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: classes/AuditLogListView.php:388
|
|
|
115 |
msgid "System"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: classes/AuditLogListView.php:408 classes/AuditLogListView.php:421
|
119 |
msgid "Show me all activity originating from this IP Address"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: classes/AuditLogListView.php:450
|
123 |
msgid "View all details of this change"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: classes/AuditLogListView.php:451 classes/AuditLogListView.php:597
|
|
|
127 |
msgid "Alert Data Inspector"
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: classes/AuditLogListView.php:552 classes/AuditLogListView.php:569
|
|
|
|
|
|
|
|
|
131 |
msgid "Download the log file."
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: classes/AuditLogListView.php:577
|
|
|
135 |
msgid "published"
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: classes/Loggers/Database.php:182 classes/Views/EmailNotifications.php:153
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
#: classes/Views/EmailNotifications.php:185 classes/Views/ExternalDB.php:152
|
140 |
+
#: classes/Views/ExternalDB.php:184 classes/Views/Help.php:144
|
141 |
+
#: classes/Views/Help.php:195 classes/Views/LogInUsers.php:154
|
142 |
#: classes/Views/LogInUsers.php:186 classes/Views/Reports.php:153
|
143 |
#: classes/Views/Reports.php:185 classes/Views/Search.php:153
|
144 |
#: classes/Views/Search.php:178
|
145 |
msgid "Upgrade to Premium"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: classes/Loggers/Database.php:183 classes/Views/AuditLog.php:105
|
149 |
+
#: classes/Views/EmailNotifications.php:154
|
150 |
#: classes/Views/EmailNotifications.php:186 classes/Views/ExternalDB.php:153
|
151 |
+
#: classes/Views/ExternalDB.php:185 classes/Views/Help.php:196
|
152 |
#: classes/Views/LogInUsers.php:155 classes/Views/LogInUsers.php:187
|
153 |
#: classes/Views/Reports.php:154 classes/Views/Reports.php:186
|
154 |
#: classes/Views/Search.php:154 classes/Views/Search.php:179
|
155 |
msgid "More Information"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: classes/Sensors/Content.php:941 classes/Sensors/Content.php:949
|
159 |
+
#: classes/Sensors/WooCommerce.php:608 classes/Sensors/WooCommerce.php:614
|
160 |
msgid "Password Protected"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: classes/Sensors/Content.php:943 classes/Sensors/Content.php:951
|
164 |
msgid "Public"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: classes/Sensors/Content.php:945 classes/Sensors/Content.php:953
|
168 |
msgid "Private"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: classes/Sensors/WooCommerce.php:1270
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
172 |
msgid "In stock"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: classes/Sensors/WooCommerce.php:1272
|
176 |
msgid "Out of stock"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: classes/Settings.php:363
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "This function is deprecated"
|
181 |
msgstr ""
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
#: classes/Views/AuditLog.php:78
|
184 |
msgid ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
"See who is logged in to your WordPress, create user productivity reports, "
|
186 |
"get alerted via email of important changes and more!"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: classes/Views/AuditLog.php:79
|
190 |
msgid ""
|
191 |
"Unlock these powerful features and much more with the premium edition of WP "
|
192 |
"Security Audit Log."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: classes/Views/AuditLog.php:104
|
196 |
+
msgid "Buy Now"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: classes/Views/AuditLog.php:123
|
200 |
msgid ""
|
201 |
"There are connectivity issues with the database where the WordPress activity "
|
202 |
"log is stored. The logs will be temporary buffered in the WordPress database "
|
203 |
"until the connection is fully restored."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: classes/Views/AuditLog.php:140 classes/Views/AuditLog.php:156
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
msgid "Audit Log Viewer"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: classes/Views/AuditLog.php:183 classes/Views/Licensing.php:82
|
211 |
+
#: classes/Views/Settings.php:211 classes/Views/ToggleAlerts.php:68
|
212 |
msgid "You do not have sufficient permissions to access this page."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: classes/Views/AuditLog.php:191 classes/Views/AuditLog.php:422
|
216 |
+
#: classes/Views/Licensing.php:90 classes/Views/Settings.php:207
|
217 |
+
#: classes/Views/Settings.php:968 classes/Views/Settings.php:996
|
218 |
+
#: classes/Views/Settings.php:1026
|
219 |
+
msgid "Nonce verification failed."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: classes/Views/AuditLog.php:220 classes/Views/AuditLog.php:243
|
223 |
msgid "Please enter the number of alerts you would like to see on one page:"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: classes/Views/AuditLog.php:222 classes/Views/AuditLog.php:245
|
227 |
msgid "No Results"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: classes/Views/AuditLog.php:419
|
231 |
msgid "No users found."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: classes/Views/AuditLog.php:441
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
235 |
msgid "Log file does not exist."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/Views/AuditLog.php:482
|
239 |
msgid "Request to get log file failed."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: classes/Views/AuditLog.php:489
|
243 |
+
msgid "Nonce verification failed!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
#: classes/Views/EmailNotifications.php:28
|
337 |
|
338 |
#: classes/Views/ExternalDB.php:121
|
339 |
msgid ""
|
340 |
+
"Configure archiving rules to archive old alerts in an archiving database,"
|
341 |
msgstr ""
|
342 |
|
343 |
#: classes/Views/ExternalDB.php:167 classes/Views/ExternalDB.php:168
|
353 |
msgstr ""
|
354 |
|
355 |
#: classes/Views/Help.php:30 classes/Views/Help.php:44
|
|
|
356 |
msgid "Help"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: classes/Views/Help.php:75
|
|
|
|
|
|
|
|
|
360 |
msgid "Getting Started"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: classes/Views/Help.php:77
|
364 |
msgid ""
|
365 |
"Getting started with WP Security Audit Log is really easy; once the plugin "
|
366 |
"is installed it will automatically keep a log of everything that is "
|
368 |
"video below for a quick overview of the plugin."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: classes/Views/Help.php:86
|
372 |
msgid "Plugin Support"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: classes/Views/Help.php:88
|
376 |
msgid ""
|
377 |
"Have you encountered or noticed any issues while using WP Security Audit Log "
|
378 |
"plugin?"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/Views/Help.php:89
|
382 |
msgid ""
|
383 |
"Or you want to report something to us? Click any of the options below to "
|
384 |
"post on the plugin's forum or contact our support directly."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: classes/Views/Help.php:91
|
388 |
msgid "Free Support Forum"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: classes/Views/Help.php:93
|
392 |
msgid "Free Support Email"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: classes/Views/Help.php:99
|
396 |
msgid "Plugin Documentation"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: classes/Views/Help.php:101
|
400 |
msgid ""
|
401 |
"For more technical information about the WP Security Audit Log plugin please "
|
402 |
"visit the plugin’s knowledge base."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: classes/Views/Help.php:102
|
406 |
msgid ""
|
407 |
+
"Refer to the list of WordPress security alerts for a complete list of Alerts "
|
408 |
"and IDs that the plugin uses to keep a log of all the changes in the "
|
409 |
"WordPress audit log."
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: classes/Views/Help.php:104
|
413 |
msgid "Plugin Website"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: classes/Views/Help.php:106
|
417 |
msgid "Knowledge Base"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: classes/Views/Help.php:108
|
421 |
+
msgid "List of WordPress Security Alerts"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: classes/Views/Help.php:114
|
425 |
msgid "Rate WP Security Audit Log"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: classes/Views/Help.php:116
|
429 |
msgid ""
|
430 |
"We work really hard to deliver a plugin that enables you to keep a record of "
|
431 |
"all the changes that are happening on your WordPress."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: classes/Views/Help.php:117
|
435 |
msgid ""
|
436 |
"It takes thousands of man-hours every year and endless amount of dedication "
|
437 |
"to research, develop and maintain the free edition of WP Security Audit Log."
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: classes/Views/Help.php:118
|
441 |
msgid ""
|
442 |
"Therefore if you like what you see, and find WP Security Audit Log useful we "
|
443 |
"ask you nothing more than to please rate our plugin."
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: classes/Views/Help.php:119
|
447 |
msgid "We appreciate every star!"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: classes/Views/Help.php:129
|
451 |
msgid "Rate Plugin"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: classes/Views/Help.php:148
|
455 |
msgid "See who is logged in"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: classes/Views/Help.php:149
|
459 |
msgid "And remotely terminate sessions"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: classes/Views/Help.php:152
|
463 |
msgid "Generate reports"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: classes/Views/Help.php:153
|
467 |
msgid "Or configure automated email reports"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: classes/Views/Help.php:156
|
471 |
msgid "Configure email notifications"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: classes/Views/Help.php:157
|
475 |
msgid "Get instantly notified of important changes"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: classes/Views/Help.php:160
|
479 |
msgid "Add Search"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: classes/Views/Help.php:161
|
483 |
msgid "Easily track down suspicious behaviour"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: classes/Views/Help.php:164
|
487 |
msgid "Integrate & Centralise"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: classes/Views/Help.php:165
|
491 |
msgid "Export the logs to your centralised logging system"
|
492 |
msgstr ""
|
493 |
|
495 |
msgid "Licensing"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: classes/Views/Licensing.php:96 classes/Views/Settings.php:218
|
499 |
+
#: classes/Views/ToggleAlerts.php:92
|
500 |
msgid "Settings have been saved."
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: classes/Views/Licensing.php:101 classes/Views/Settings.php:223
|
504 |
+
#: classes/Views/ToggleAlerts.php:98
|
505 |
msgid "Error: "
|
506 |
msgstr ""
|
507 |
|
660 |
"to fine tune the search results."
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: classes/Views/Settings.php:57 classes/Views/Settings.php:71
|
664 |
+
msgid "Settings"
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: classes/Views/Settings.php:229
|
668 |
+
msgid "General"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: classes/Views/Settings.php:230
|
672 |
+
msgid "Audit Log"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: classes/Views/Settings.php:231
|
676 |
msgid "Exclude Objects"
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: classes/Views/Settings.php:247
|
680 |
+
msgid "From Email & Name"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: classes/Views/Settings.php:250
|
684 |
+
msgid "Email Address"
|
|
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: classes/Views/Settings.php:253
|
688 |
+
msgid "Display Name"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: classes/Views/Settings.php:259
|
692 |
+
#, php-format
|
693 |
+
msgid ""
|
694 |
+
"These email address and display name will be used as From details in the "
|
695 |
+
"emails sent by the %s . Please ensure the mail server can relay emails with "
|
696 |
+
"the domain of the specified email address."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: classes/Views/Settings.php:260
|
700 |
+
msgid "(premium add-ons)"
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: classes/Views/Settings.php:268
|
704 |
+
msgid "Alerts Dashboard Widget"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: classes/Views/Settings.php:274
|
708 |
+
msgid "On"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: classes/Views/Settings.php:279
|
712 |
+
msgid "Off"
|
|
|
|
|
|
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: classes/Views/Settings.php:285
|
716 |
+
#, php-format
|
717 |
+
msgid "Display a dashboard widget with the latest %d security alerts."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: classes/Views/Settings.php:295
|
721 |
+
msgid "Reverse Proxy / Firewall Options"
|
|
|
|
|
|
|
|
|
722 |
msgstr ""
|
723 |
|
724 |
+
#: classes/Views/Settings.php:300
|
725 |
+
msgid "WordPress running behind firewall or proxy"
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: classes/Views/Settings.php:303
|
729 |
+
msgid ""
|
730 |
+
"Enable this option if your WordPress is running behind a firewall or reverse "
|
731 |
+
"proxy. When this option is enabled the plugin will retrieve the user's IP "
|
732 |
+
"address from the proxy header."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: classes/Views/Settings.php:307
|
736 |
+
msgid "Filter Internal IP Addresses"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: classes/Views/Settings.php:310
|
740 |
+
msgid ""
|
741 |
+
"Enable this option to filter internal IP addresses from the proxy headers."
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: classes/Views/Settings.php:316
|
745 |
+
msgid "Can Manage Plugin"
|
746 |
msgstr ""
|
747 |
|
748 |
+
#: classes/Views/Settings.php:323
|
749 |
+
msgid "Users and Roles in this list can manage the plugin settings"
|
750 |
msgstr ""
|
751 |
|
752 |
+
#: classes/Views/Settings.php:341
|
753 |
+
msgid "Restrict Plugin Access"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: classes/Views/Settings.php:351
|
757 |
+
msgid ""
|
758 |
+
"If this option is disabled all the administrators on this WordPress have "
|
759 |
+
"access to manage this plugin."
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: classes/Views/Settings.php:352
|
763 |
msgid ""
|
764 |
+
"By enabling this option only <strong>You</strong> and the users specified in "
|
765 |
+
"the <strong>Can Manage Plugin</strong> and <strong>Can View Alerts</strong> "
|
766 |
+
"can configure this plugin or view the alerts in the WordPress audit trail."
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: classes/Views/Settings.php:359
|
770 |
msgid "Login Page Notification"
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: classes/Views/Settings.php:383 wp-security-audit-log.php:1122
|
774 |
msgid ""
|
775 |
"For security and auditing purposes, a record of all of your logged-in "
|
776 |
"actions and changes within the WordPress dashboard will be recorded in an "
|
779 |
"IP address where you accessed this site from."
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: classes/Views/Settings.php:401
|
783 |
+
msgid ""
|
784 |
+
"Many compliance regulations (such as the GDRP) require website "
|
785 |
+
"administrators to tell the users of this website that a log is kept of all "
|
786 |
+
"the changes they do when logged in."
|
787 |
+
msgstr ""
|
788 |
+
|
789 |
+
#: classes/Views/Settings.php:403
|
790 |
msgid "<strong>Note: </strong>"
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: classes/Views/Settings.php:403
|
794 |
msgid ""
|
795 |
"The only HTML code allowed in the login page notification is for links ( < a "
|
796 |
+
"href >...< /a > )."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: classes/Views/Settings.php:410
|
800 |
+
msgid "Developer Options"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: classes/Views/Settings.php:416
|
804 |
+
msgid "Show Developer Options"
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: classes/Views/Settings.php:420
|
808 |
msgid ""
|
809 |
+
"Only enable these options on testing, staging and development websites. "
|
810 |
+
"Enabling any of the settings below on LIVE websites may cause unintended "
|
811 |
+
"side-effects including degraded performance."
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: classes/Views/Settings.php:434
|
815 |
+
msgid "Request Log"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: classes/Views/Settings.php:435
|
819 |
+
msgid "Enables logging request to file."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: classes/Views/Settings.php:459
|
823 |
msgid ""
|
824 |
+
"The request log file is saved in the /wp-content/uploads/wp-security-audit-"
|
825 |
+
"log/ directory."
|
826 |
+
msgstr ""
|
827 |
+
|
828 |
+
#: classes/Views/Settings.php:467
|
829 |
+
msgid "Hide Plugin in Plugins Page"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: classes/Views/Settings.php:472
|
833 |
+
msgid "Hide"
|
834 |
msgstr ""
|
835 |
|
836 |
+
#: classes/Views/Settings.php:476
|
837 |
msgid ""
|
838 |
+
"To manually revert this setting set the value of option wsal-hide-plugin to "
|
839 |
+
"0 in the wp_wsal_options table."
|
|
|
840 |
msgstr ""
|
841 |
|
842 |
+
#: classes/Views/Settings.php:483
|
843 |
+
msgid "Remove Data on Uninstall"
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: classes/Views/Settings.php:490
|
847 |
+
msgid ""
|
848 |
+
"Check this box if you would like remove all data when the plugin is deleted."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: classes/Views/Settings.php:509
|
852 |
+
msgid ""
|
853 |
+
"The options below are disabled because you enabled archiving of alerts to "
|
854 |
+
"the archiving table from"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: classes/Views/Settings.php:514
|
858 |
+
msgid "Audit Log Retention"
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: classes/Views/Settings.php:517
|
862 |
+
msgid "(eg: 1 month)"
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: classes/Views/Settings.php:523
|
866 |
+
msgid "None"
|
|
|
|
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: classes/Views/Settings.php:527
|
870 |
+
msgid "(Leave empty or enter 0 to disable automatic pruning.)"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: classes/Views/Settings.php:533
|
874 |
+
msgid "Delete alerts older than"
|
|
|
|
|
|
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: classes/Views/Settings.php:542
|
878 |
+
msgid "months"
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: classes/Views/Settings.php:546
|
882 |
+
msgid "(eg: 80)"
|
|
|
|
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: classes/Views/Settings.php:552
|
886 |
+
msgid "Keep up to"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: classes/Views/Settings.php:557
|
890 |
+
msgid "alerts"
|
|
|
|
|
|
|
891 |
msgstr ""
|
892 |
|
893 |
+
#: classes/Views/Settings.php:563
|
894 |
+
msgid "Next Scheduled Cleanup is in "
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: classes/Views/Settings.php:567
|
898 |
+
#, php-format
|
899 |
+
msgid "(or %s)"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: classes/Views/Settings.php:568
|
903 |
+
msgid "Run Manually"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: classes/Views/Settings.php:576
|
907 |
+
msgid "Can View Alerts"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: classes/Views/Settings.php:583
|
911 |
+
msgid "Users and Roles in this list can view the security alerts"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: classes/Views/Settings.php:599
|
915 |
+
msgid "Refresh Audit Log Viewer"
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: classes/Views/Settings.php:606
|
919 |
+
msgid "Automatic"
|
|
|
|
|
|
|
|
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: classes/Views/Settings.php:608
|
923 |
+
msgid "Refresh Audit Log Viewer as soon as there are new alerts."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: classes/Views/Settings.php:613
|
927 |
+
msgid "Manual"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: classes/Views/Settings.php:615
|
931 |
+
msgid "Refresh Audit Log Viewer only when the page is reloaded."
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: classes/Views/Settings.php:622
|
935 |
+
msgid "Alerts Timestamp"
|
|
|
|
|
936 |
msgstr ""
|
937 |
|
938 |
+
#: classes/Views/Settings.php:629
|
939 |
+
msgid "UTC"
|
|
|
|
|
|
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: classes/Views/Settings.php:635
|
943 |
+
msgid "WordPress' timezone"
|
|
|
|
|
|
|
944 |
msgstr ""
|
945 |
|
946 |
+
#: classes/Views/Settings.php:638
|
|
|
|
|
947 |
msgid ""
|
948 |
+
"Select which timestamp the alerts should have in the Audit Log viewer. Note "
|
949 |
+
"that the WordPress' timezone might be different from that of the server."
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: classes/Views/Settings.php:644
|
953 |
+
msgid "User Information in Audit Log"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: classes/Views/Settings.php:655
|
957 |
+
msgid "First Name & Last Name"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: classes/Views/Settings.php:658
|
961 |
+
msgid ""
|
962 |
+
"Select the type of user information that should be displayed in the audit "
|
963 |
+
"log."
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: classes/Views/Settings.php:664
|
967 |
+
msgid "Audit Log Columns Selection"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: classes/Views/Settings.php:680
|
971 |
+
msgid ""
|
972 |
+
"When you disable any of the above such details won’t be shown in the Audit "
|
973 |
+
"Log viewer though the plugin will still record such information in the "
|
974 |
+
"database."
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: classes/Views/Settings.php:686
|
978 |
+
msgid "Disable Alerts for WordPress Background Activity"
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: classes/Views/Settings.php:692
|
982 |
+
msgid "Hide activity"
|
983 |
msgstr ""
|
984 |
|
985 |
+
#: classes/Views/Settings.php:696
|
986 |
+
msgid ""
|
987 |
+
"For example do not raise an alert when WordPress deletes the auto drafts."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: classes/Views/Settings.php:707
|
991 |
+
msgid "Users & Roles"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: classes/Views/Settings.php:710
|
995 |
msgid ""
|
996 |
+
"Any of the users and roles listed in the below options will be excluded from "
|
997 |
+
"monitoring. This means that any change they do will not be logged."
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
+
#: classes/Views/Settings.php:714
|
1001 |
+
msgid "Excluded Users"
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: classes/Views/Settings.php:734
|
1005 |
+
msgid "Excluded Roles"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
+
#: classes/Views/Settings.php:753
|
1009 |
+
msgid "Custom Fields"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: classes/Views/Settings.php:757
|
1013 |
msgid ""
|
1014 |
+
"All of the custom fields listed below will be excluded from monitoring. This "
|
1015 |
+
"means that if they are changed or updated the plugin will not log such "
|
1016 |
+
"activity."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: classes/Views/Settings.php:758
|
1020 |
msgid ""
|
1021 |
+
"You can use the * wildcard to exclude more than one Custom Field. For "
|
1022 |
+
"example, to exclude all the Custom Fields that start with wp123 specify "
|
1023 |
+
"wp123*."
|
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: classes/Views/Settings.php:763
|
1027 |
+
msgid "Excluded Custom Fields"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: classes/Views/Settings.php:782
|
1031 |
+
msgid "IP Addresses"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: classes/Views/Settings.php:785
|
1035 |
+
msgid ""
|
1036 |
+
"Any of the IP addresses listed below will be excluded from monitoring. This "
|
1037 |
+
"means that all activity from such IP address will not be recorded."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: classes/Views/Settings.php:789
|
1041 |
+
msgid "Excluded IP Addresses"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: classes/Views/Settings.php:808 defaults.php:206
|
1045 |
+
msgid "Custom Post Types"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: classes/Views/Settings.php:811
|
1049 |
msgid ""
|
1050 |
+
"The below list of Custom Post Types are excluded from monitoring. This means "
|
1051 |
+
"that all activity related to these Custom Post Types will not be recorded."
|
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: classes/Views/Settings.php:814
|
1055 |
+
msgid "Exclude Custom Post Type from monitoring"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: classes/Views/ToggleAlerts.php:27 classes/Views/ToggleAlerts.php:41
|
1059 |
+
msgid "Enable/Disable Alerts"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: classes/Views/ToggleAlerts.php:175
|
1063 |
+
msgid "Code"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: classes/Views/ToggleAlerts.php:176
|
1067 |
+
msgid "Type"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: classes/Views/ToggleAlerts.php:177 classes/WidgetManager.php:68
|
1071 |
+
msgid "Description"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: classes/Views/ToggleAlerts.php:186
|
1075 |
msgid ""
|
1076 |
+
"<strong>Note:</strong> Post refers to any type of content, i.e. blog post, "
|
1077 |
+
"page or a post with a custom post type."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: classes/Views/ToggleAlerts.php:201
|
1081 |
+
msgid "Not Implemented"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: classes/Views/ToggleAlerts.php:204
|
1085 |
+
msgid "Not Available"
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: classes/Views/ToggleAlerts.php:230 classes/Views/ToggleAlerts.php:263
|
1089 |
+
msgid ""
|
1090 |
+
"Capture 404 requests to file (the log file are created in the /wp-content/"
|
1091 |
+
"uploads/wp-security-audit-log/404s/ directory)"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: classes/Views/ToggleAlerts.php:238 classes/Views/ToggleAlerts.php:271
|
1095 |
+
msgid "Purge log files older than one month"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: classes/Views/ToggleAlerts.php:243
|
1099 |
msgid ""
|
1100 |
+
"Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
|
1101 |
+
"to non-existing pages from the same IP address. Increase the value in this "
|
1102 |
+
"setting to the desired amount to keep a log of more or less requests."
|
|
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: classes/Views/ToggleAlerts.php:248 classes/Views/ToggleAlerts.php:281
|
1106 |
+
msgid "Record the referrer that generated the 404 error."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: classes/Views/ToggleAlerts.php:276
|
1110 |
msgid ""
|
1111 |
+
"Number of 404 Requests to Log. By default the plugin keeps up to 99 requests "
|
1112 |
+
"to non-existing pages from the same IP address. Increase the value in this "
|
1113 |
+
"setting to the desired amount to keep a log of more or less requests. Note "
|
1114 |
+
"that by increasing this value to a high number, should your website be "
|
1115 |
+
"scanned the plugin will consume more resources to log all the requests."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: classes/Views/ToggleAlerts.php:293 classes/Views/ToggleAlerts.php:306
|
1119 |
msgid ""
|
1120 |
+
"Number of login attempts to log. Enter 0 to log all failed login attempts. "
|
1121 |
+
"(By default the plugin only logs up to 10 failed login because the process "
|
1122 |
+
"can be very resource intensive in case of a brute force attack)"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: classes/Views/ToggleAlerts.php:321
|
1126 |
+
msgid "Save Changes"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: classes/WidgetManager.php:36
|
1130 |
+
msgid "Latest Alerts"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: classes/WidgetManager.php:60
|
1134 |
+
msgid "No alerts found."
|
|
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: defaults.php:60
|
1138 |
+
msgid "Fatal run-time error."
|
|
|
|
|
|
|
|
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: defaults.php:64
|
1142 |
+
msgid "Run-time warning (non-fatal error)."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: defaults.php:68
|
1146 |
+
msgid "Compile-time parse error."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: defaults.php:72
|
1150 |
+
msgid "Run-time notice."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: defaults.php:76
|
1154 |
+
msgid "Fatal error that occurred during startup."
|
|
|
|
|
|
|
|
|
|
|
|
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: defaults.php:80
|
1158 |
+
msgid "Warnings that occurred during startup."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: defaults.php:84
|
1162 |
+
msgid "Fatal compile-time error."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: defaults.php:88
|
1166 |
+
msgid "Compile-time warning."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: defaults.php:92
|
1170 |
+
msgid "User-generated error message."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: defaults.php:96
|
1174 |
+
msgid "User-generated warning message."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: defaults.php:100
|
1178 |
+
msgid "User-generated notice message."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: defaults.php:104
|
1182 |
+
msgid "Non-standard/optimal code warning."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: defaults.php:108
|
1186 |
+
msgid "Catchable fatal error."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: defaults.php:112
|
1190 |
+
msgid "Run-time deprecation notices."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: defaults.php:116
|
1194 |
+
msgid "Run-time user deprecation notices."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: defaults.php:121
|
1198 |
+
msgid "Critical, high-impact messages."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: defaults.php:125
|
1202 |
+
msgid "Debug informational messages."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: defaults.php:135
|
1206 |
+
msgid "Content & Comments"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: defaults.php:139
|
1210 |
+
msgid "Content"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: defaults.php:140
|
1214 |
+
msgid "User created a new post and saved it as draft"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: defaults.php:140
|
1218 |
+
msgid ""
|
1219 |
+
"Created a new %PostType% titled %PostTitle% and saved it as draft. "
|
1220 |
+
"%EditorLinkPost%."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: defaults.php:141
|
1224 |
+
msgid "User published a post"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: defaults.php:141
|
1228 |
+
msgid ""
|
1229 |
+
"Published a %PostType% titled %PostTitle%. URL is %PostUrl%. %EditorLinkPost"
|
1230 |
+
"%."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: defaults.php:142
|
1234 |
+
msgid "User modified a post"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: defaults.php:142
|
1238 |
+
msgid ""
|
1239 |
+
"Modified the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
1240 |
+
"%EditorLinkPost%."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: defaults.php:143
|
1244 |
+
msgid "User permanently deleted a post from the trash"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: defaults.php:143
|
1248 |
+
msgid ""
|
1249 |
+
"Permanently deleted the %PostType% titled %PostTitle%. URL was %PostUrl%."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: defaults.php:144
|
1253 |
+
msgid "User moved a post to the trash"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: defaults.php:144
|
1257 |
+
msgid ""
|
1258 |
+
"Moved the %PostStatus% %PostType% titled %PostTitle% to trash. URL is "
|
1259 |
+
"%PostUrl%."
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: defaults.php:145
|
1263 |
+
msgid "User restored a post from trash"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
+
#: defaults.php:145
|
1267 |
+
msgid ""
|
1268 |
+
"The %PostStatus% %PostType% titled %PostTitle% has been restored from trash. "
|
1269 |
+
"URL is: %PostUrl%. %EditorLinkPost%."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: defaults.php:146
|
1273 |
+
msgid "User changed post category"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: defaults.php:146
|
1277 |
+
msgid ""
|
1278 |
+
"Changed the category of the %PostStatus% %PostType% titled %PostTitle% from "
|
1279 |
+
"%OldCategories% to %NewCategories%. URL is: %PostUrl%. %EditorLinkPost%."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: defaults.php:147
|
1283 |
+
msgid "User changed post URL"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: defaults.php:147
|
1287 |
+
msgid ""
|
1288 |
+
"Changed the URL of the %PostStatus% %PostType% titled %PostTitle%%ReportText"
|
1289 |
+
"%.%ChangeText% %EditorLinkPost%."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: defaults.php:148
|
1293 |
+
msgid "User changed post author"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: defaults.php:148
|
1297 |
+
msgid ""
|
1298 |
+
"Changed the author of the %PostStatus% %PostType% titled %PostTitle% from "
|
1299 |
+
"%OldAuthor% to %NewAuthor%. URL is: %PostUrl%. %EditorLinkPost%."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: defaults.php:149
|
1303 |
+
msgid "User changed post status"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: defaults.php:149
|
1307 |
+
msgid ""
|
1308 |
+
"Changed the status of the %PostType% titled %PostTitle% from %OldStatus% to "
|
1309 |
+
"%NewStatus%. URL is: %PostUrl%. %EditorLinkPost%."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: defaults.php:150
|
1313 |
+
msgid "User created new category"
|
1314 |
msgstr ""
|
1315 |
|
1316 |
+
#: defaults.php:150
|
1317 |
+
msgid ""
|
1318 |
+
"Created a new category called %CategoryName%. Category slug is %Slug%. "
|
1319 |
+
"%CategoryLink%."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: defaults.php:151
|
1323 |
+
msgid "User deleted category"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: defaults.php:151
|
1327 |
+
msgid ""
|
1328 |
+
"Deleted the %CategoryName% category. Category slug was %Slug%. %CategoryLink"
|
1329 |
+
"%."
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: defaults.php:152
|
1333 |
+
msgid "User changed the visibility of a post"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: defaults.php:152
|
1337 |
+
msgid ""
|
1338 |
+
"Changed the visibility of the %PostStatus% %PostType% titled %PostTitle% "
|
1339 |
+
"from %OldVisibility% to %NewVisibility%. URL is: %PostUrl%. %EditorLinkPost%."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: defaults.php:153
|
1343 |
+
msgid "User changed the date of a post"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: defaults.php:153
|
1347 |
+
msgid ""
|
1348 |
+
"Changed the date of the %PostStatus% %PostType% titled %PostTitle% from "
|
1349 |
+
"%OldDate% to %NewDate%. URL is: %PostUrl%. %EditorLinkPost%."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: defaults.php:154
|
1353 |
+
msgid "User changed the parent of a page"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: defaults.php:154
|
1357 |
+
msgid ""
|
1358 |
+
"Changed the parent of the %PostStatus% %PostType% titled %PostTitle% from "
|
1359 |
+
"%OldParentName% to %NewParentName%. %EditorLinkPost%."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: defaults.php:155
|
1363 |
+
msgid "User changed the template of a page"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: defaults.php:155
|
1367 |
+
msgid ""
|
1368 |
+
"Changed the template of the %PostStatus% %PostType% titled %PostTitle% from "
|
1369 |
+
"%OldTemplate% to %NewTemplate%. %EditorLinkPost%."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: defaults.php:156
|
1373 |
+
msgid "User set a post as sticky"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: defaults.php:156
|
1377 |
+
msgid ""
|
1378 |
+
"Set the post %PostTitle% as Sticky. Post URL is %PostUrl%. %EditorLinkPost%."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: defaults.php:157
|
1382 |
+
msgid "User removed post from sticky"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: defaults.php:157
|
1386 |
+
msgid "Removed the post %PostTitle% from Sticky. %EditorLinkPost%."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: defaults.php:158
|
1390 |
+
msgid "Changed the parent of a category."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: defaults.php:158
|
1394 |
+
msgid ""
|
1395 |
+
"Changed the parent of the category %CategoryName% from %OldParent% to "
|
1396 |
+
"%NewParent%. %CategoryLink%."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: defaults.php:159
|
1400 |
+
msgid "User created a custom field for a post"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: defaults.php:159
|
1404 |
+
msgid ""
|
1405 |
+
"Created a new custom field called %MetaKey% with value %MetaValue% in the "
|
1406 |
+
"%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
1407 |
+
"%EditorLinkPost%.<br>%MetaLink%."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: defaults.php:160
|
1411 |
+
msgid "User updated a custom field value for a post"
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: defaults.php:160
|
1415 |
+
msgid ""
|
1416 |
+
"Modified the value of the custom field %MetaKey%%ReportText% in the "
|
1417 |
+
"%PostStatus% %PostType% titled %PostTitle%.%ChangeText% URL is: %PostUrl%. "
|
1418 |
+
"%EditorLinkPost%.<br>%MetaLink%."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: defaults.php:161
|
1422 |
+
msgid "User deleted a custom field from a post"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: defaults.php:161
|
1426 |
+
msgid ""
|
1427 |
+
"Deleted the custom field %MetaKey% with value %MetaValue% from %PostStatus% "
|
1428 |
+
"%PostType% titled %PostTitle%. URL is: %PostUrl%. %EditorLinkPost%."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: defaults.php:162
|
1432 |
+
msgid "User updated a custom field name for a post"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: defaults.php:162
|
1436 |
+
msgid ""
|
1437 |
+
"Changed the custom field's name from %MetaKeyOld% to %MetaKeyNew% in the "
|
1438 |
+
"%PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
1439 |
+
"%EditorLinkPost%.<br>%MetaLink%."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: defaults.php:163
|
1443 |
+
msgid "User modified the content of a post."
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: defaults.php:163
|
1447 |
+
msgid ""
|
1448 |
+
"Modified the content of the %PostStatus% %PostType% titled %PostTitle%. Post "
|
1449 |
+
"URL is %PostUrl%. %RevisionLink% %EditorLinkPost%."
|
1450 |
msgstr ""
|
1451 |
|
1452 |
+
#: defaults.php:164
|
1453 |
+
msgid "User submitted a post for review"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: defaults.php:164
|
1457 |
+
msgid ""
|
1458 |
+
"Submitted the %PostType% titled %PostTitle% for review. URL is: %PostUrl%. "
|
1459 |
+
"%EditorLinkPost%."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: defaults.php:165
|
1463 |
+
msgid "User scheduled a post"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
+
#: defaults.php:165
|
1467 |
+
msgid ""
|
1468 |
+
"Scheduled the %PostType% titled %PostTitle% to be published on "
|
1469 |
+
"%PublishingDate%. URL is: %PostUrl%. %EditorLinkPost%."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: defaults.php:166
|
1473 |
+
msgid "User changed title of a post"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: defaults.php:166
|
1477 |
msgid ""
|
1478 |
+
"Changed the title of the %PostStatus% %PostType% from %OldTitle% to %NewTitle"
|
1479 |
+
"%. URL is: %PostUrl%. %EditorLinkPost%."
|
|
|
|
|
|
|
|
|
|
|
|
|
1480 |
msgstr ""
|
1481 |
|
1482 |
+
#: defaults.php:167
|
1483 |
+
msgid "User opened a post in the editor"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: defaults.php:167
|
1487 |
+
msgid ""
|
1488 |
+
"Opened the %PostStatus% %PostType% titled %PostTitle% in the editor. URL is: "
|
1489 |
+
"%PostUrl%. %EditorLinkPost%."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: defaults.php:168
|
1493 |
+
msgid "User viewed a post"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: defaults.php:168
|
1497 |
msgid ""
|
1498 |
+
"Viewed the %PostStatus% %PostType% titled %PostTitle%. URL is: %PostUrl%. "
|
1499 |
+
"%EditorLinkPost%."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: defaults.php:169
|
1503 |
+
msgid "A plugin modified a post"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: defaults.php:169
|
1507 |
+
msgid ""
|
1508 |
+
"Plugin modified the %PostStatus% %PostType% titled %PostTitle% of type "
|
1509 |
+
"%PostType%. URL is: %PostUrl%. %EditorLinkPost%."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: defaults.php:170
|
1513 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks in a post."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: defaults.php:170
|
1517 |
msgid ""
|
1518 |
+
"Disabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
|
1519 |
+
"%PostUrl%. %EditorLinkPost%."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: defaults.php:171
|
1523 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks in a post."
|
1524 |
msgstr ""
|
1525 |
|
1526 |
+
#: defaults.php:171
|
1527 |
msgid ""
|
1528 |
+
"Enabled %Type% on the %PostStatus% %PostType% titled %PostTitle%. URL is: "
|
1529 |
+
"%PostUrl%. %EditorLinkPost%."
|
|
|
|
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: defaults.php:172
|
1533 |
+
msgid "User added post tag"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: defaults.php:172
|
1537 |
+
msgid ""
|
1538 |
+
"Added the tag %tag% to the %PostStatus% post titled %PostTitle%. URL is: "
|
1539 |
+
"%PostUrl%. %EditorLinkPost%."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: defaults.php:173
|
1543 |
+
msgid "User removed post tag"
|
|
|
|
|
1544 |
msgstr ""
|
1545 |
|
1546 |
+
#: defaults.php:173
|
1547 |
msgid ""
|
1548 |
+
"Removed the tag %tag% from the %PostStatus% post titled %PostTitle%. URL is: "
|
1549 |
+
"%PostUrl%. %EditorLinkPost%."
|
|
|
|
|
|
|
1550 |
msgstr ""
|
1551 |
|
1552 |
+
#: defaults.php:174
|
1553 |
+
msgid "User created new tag"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: defaults.php:174
|
1557 |
+
msgid "Added a new tag called %TagName%. View the tag: %TagLink%."
|
|
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: defaults.php:175
|
1561 |
+
msgid "User deleted tag"
|
|
|
|
|
|
|
1562 |
msgstr ""
|
1563 |
|
1564 |
+
#: defaults.php:175
|
1565 |
+
msgid "Deleted the tag %TagName%."
|
|
|
|
|
|
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: defaults.php:176
|
1569 |
+
msgid "User renamed tag"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: defaults.php:176
|
1573 |
+
msgid "Renamed a tag from %old_name% to %new_name%. View the tag: %TagLink%."
|
|
|
|
|
1574 |
msgstr ""
|
1575 |
|
1576 |
+
#: defaults.php:177
|
1577 |
+
msgid "User changed tag slug"
|
1578 |
msgstr ""
|
1579 |
|
1580 |
+
#: defaults.php:177
|
1581 |
msgid ""
|
1582 |
+
"Changed the slug of tag %tag% from %old_slug% to %new_slug%. View the tag: "
|
1583 |
+
"%TagLink%."
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: defaults.php:178
|
1587 |
+
msgid "User changed tag description"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: defaults.php:178
|
1591 |
msgid ""
|
1592 |
+
"Changed the description of the tag %tag%%ReportText%.%ChangeText% View the "
|
1593 |
+
"tag: %TagLink%."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: defaults.php:184
|
1597 |
+
msgid "Comments"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: defaults.php:185
|
1601 |
+
msgid "User approved a comment"
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: defaults.php:185
|
1605 |
msgid ""
|
1606 |
+
"Approved the comment posted in response to the post %PostTitle% by %Author% "
|
1607 |
+
"on %CommentLink%."
|
|
|
|
|
|
|
|
|
|
|
|
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: defaults.php:186
|
1611 |
+
msgid "User unapproved a comment"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: defaults.php:186
|
1615 |
+
msgid ""
|
1616 |
+
"Unapproved the comment posted in response to the post %PostTitle% by %Author"
|
1617 |
+
"% on %CommentLink%."
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: defaults.php:187
|
1621 |
+
msgid "User replied to a comment"
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: defaults.php:187
|
1625 |
msgid ""
|
1626 |
+
"Replied to the comment posted in response to the post %PostTitle% by %Author"
|
1627 |
+
"% on %CommentLink%."
|
|
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: defaults.php:188
|
1631 |
+
msgid "User edited a comment"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: defaults.php:188
|
1635 |
msgid ""
|
1636 |
+
"Edited a comment posted in response to the post %PostTitle% by %Author% on "
|
1637 |
+
"%CommentLink%."
|
1638 |
msgstr ""
|
1639 |
|
1640 |
+
#: defaults.php:189
|
1641 |
+
msgid "User marked a comment as Spam"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
+
#: defaults.php:189
|
1645 |
msgid ""
|
1646 |
+
"Marked the comment posted in response to the post %PostTitle% by %Author% on "
|
1647 |
+
"%CommentLink% as Spam."
|
|
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: defaults.php:190
|
1651 |
+
msgid "User marked a comment as Not Spam"
|
1652 |
msgstr ""
|
1653 |
|
1654 |
+
#: defaults.php:190
|
1655 |
+
msgid ""
|
1656 |
+
"Marked the comment posted in response to the post %PostTitle% by %Author% on "
|
1657 |
+
"%CommentLink% as Not Spam."
|
1658 |
msgstr ""
|
1659 |
|
1660 |
+
#: defaults.php:191
|
1661 |
+
msgid "User moved a comment to trash"
|
1662 |
msgstr ""
|
1663 |
|
1664 |
+
#: defaults.php:191
|
1665 |
msgid ""
|
1666 |
+
"Moved the comment posted in response to the post %PostTitle% by %Author% on "
|
1667 |
+
"%Date% to trash."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: defaults.php:192
|
1671 |
+
msgid "User restored a comment from the trash"
|
|
|
|
|
1672 |
msgstr ""
|
1673 |
|
1674 |
+
#: defaults.php:192
|
1675 |
msgid ""
|
1676 |
+
"Restored the comment posted in response to the post %PostTitle% by %Author% "
|
1677 |
+
"on %CommentLink% from the trash."
|
|
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: defaults.php:193
|
1681 |
+
msgid "User permanently deleted a comment"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: defaults.php:193
|
1685 |
msgid ""
|
1686 |
+
"Permanently deleted the comment posted in response to the post %PostTitle% "
|
1687 |
+
"by %Author% on %Date%."
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: defaults.php:194
|
1691 |
+
msgid "User posted a comment"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
+
#: defaults.php:194 defaults.php:195
|
1695 |
+
msgid "%CommentMsg% on %CommentLink%."
|
|
|
|
|
|
|
1696 |
msgstr ""
|
1697 |
|
1698 |
+
#: defaults.php:195
|
1699 |
+
msgid "Visitor posted a comment"
|
1700 |
msgstr ""
|
1701 |
|
1702 |
+
#: defaults.php:207
|
1703 |
+
msgid "User modified a draft blog post"
|
1704 |
msgstr ""
|
1705 |
|
1706 |
+
#: defaults.php:207
|
1707 |
+
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
1708 |
msgstr ""
|
1709 |
|
1710 |
+
#: defaults.php:208
|
1711 |
+
msgid "User created a new post with custom post type and saved it as draft"
|
|
|
|
|
1712 |
msgstr ""
|
1713 |
|
1714 |
+
#: defaults.php:208
|
1715 |
+
msgid ""
|
1716 |
+
"Created a new custom post called %PostTitle% of type %PostType%. "
|
1717 |
+
"%EditorLinkPost%."
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: defaults.php:209
|
1721 |
+
msgid "User published a post with custom post type"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: defaults.php:209
|
1725 |
+
msgid ""
|
1726 |
+
"Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
|
1727 |
+
"%. %EditorLinkPost%."
|
1728 |
msgstr ""
|
1729 |
|
1730 |
+
#: defaults.php:210
|
1731 |
+
msgid "User modified a post with custom post type"
|
|
|
|
|
|
|
|
|
|
|
1732 |
msgstr ""
|
1733 |
|
1734 |
+
#: defaults.php:210
|
1735 |
+
msgid ""
|
1736 |
+
"Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl"
|
1737 |
+
"%. %EditorLinkPost%."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: defaults.php:211
|
1741 |
+
msgid "User modified a draft post with custom post type"
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: defaults.php:211
|
1745 |
msgid ""
|
1746 |
+
"Modified the draft custom post %PostTitle% of type is %PostType%. "
|
1747 |
+
"%EditorLinkPost%."
|
|
|
|
|
|
|
1748 |
msgstr ""
|
1749 |
|
1750 |
+
#: defaults.php:212
|
1751 |
+
msgid "User permanently deleted post with custom post type"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
+
#: defaults.php:212
|
1755 |
+
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
1756 |
msgstr ""
|
1757 |
|
1758 |
+
#: defaults.php:213
|
1759 |
+
msgid "User moved post with custom post type to trash"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
+
#: defaults.php:213
|
1763 |
+
msgid ""
|
1764 |
+
"Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was "
|
1765 |
+
"%PostUrl%."
|
1766 |
msgstr ""
|
1767 |
|
1768 |
+
#: defaults.php:214
|
1769 |
+
msgid "User restored post with custom post type from trash"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: defaults.php:214
|
1773 |
+
msgid ""
|
1774 |
+
"The custom post %PostTitle% of type %PostType% has been restored from trash. "
|
1775 |
+
"%EditorLinkPost%."
|
1776 |
msgstr ""
|
1777 |
|
1778 |
+
#: defaults.php:215
|
1779 |
+
msgid "User changed the category of a post with custom post type"
|
1780 |
msgstr ""
|
1781 |
|
1782 |
+
#: defaults.php:215
|
1783 |
+
msgid ""
|
1784 |
+
"Changed the category(ies) of the custom post %PostTitle% of type %PostType% "
|
1785 |
+
"from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: defaults.php:216
|
1789 |
+
msgid "User changed the URL of a post with custom post type"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: defaults.php:216
|
1793 |
+
msgid ""
|
1794 |
+
"Changed the URL of the custom post %PostTitle% of type %PostType% from "
|
1795 |
+
"%OldUrl% to %NewUrl%. %EditorLinkPost%."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
+
#: defaults.php:217
|
1799 |
+
msgid "User changed the author or post with custom post type"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: defaults.php:217
|
1803 |
+
msgid ""
|
1804 |
+
"Changed the author of custom post %PostTitle% of type %PostType% from "
|
1805 |
+
"%OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: defaults.php:218
|
1809 |
+
msgid "User changed the status of post with custom post type"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: defaults.php:218
|
1813 |
+
msgid ""
|
1814 |
+
"Changed the status of custom post %PostTitle% of type %PostType% from "
|
1815 |
+
"%OldStatus% to %NewStatus%. %EditorLinkPost%."
|
1816 |
msgstr ""
|
1817 |
|
1818 |
+
#: defaults.php:219
|
1819 |
+
msgid "User changed the visibility of a post with custom post type"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
+
#: defaults.php:219
|
1823 |
+
msgid ""
|
1824 |
+
"Changed the visibility of the custom post %PostTitle% of type %PostType% "
|
1825 |
+
"from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
1826 |
msgstr ""
|
1827 |
|
1828 |
+
#: defaults.php:220
|
1829 |
+
msgid "User changed the date of post with custom post type"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: defaults.php:220
|
1833 |
+
msgid ""
|
1834 |
+
"Changed the date of the custom post %PostTitle% of type %PostType% from "
|
1835 |
+
"%OldDate% to %NewDate%. %EditorLinkPost%."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
+
#: defaults.php:221
|
1839 |
+
msgid "User created a custom field for a custom post type"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
+
#: defaults.php:221
|
1843 |
+
msgid ""
|
1844 |
+
"Created a new custom field %MetaKey% with value %MetaValue% in custom post "
|
1845 |
+
"%PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
1846 |
msgstr ""
|
1847 |
|
1848 |
+
#: defaults.php:222
|
1849 |
+
msgid "User updated a custom field for a custom post type"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: defaults.php:222
|
1853 |
+
msgid ""
|
1854 |
+
"Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
|
1855 |
+
"%MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost"
|
1856 |
+
"%.<br>%MetaLink%."
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: defaults.php:223
|
1860 |
+
msgid "User deleted a custom field from a custom post type"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: defaults.php:223
|
1864 |
+
msgid ""
|
1865 |
+
"Deleted the custom field %MetaKey% with id %MetaID% from custom post "
|
1866 |
+
"%PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1867 |
msgstr ""
|
1868 |
|
1869 |
+
#: defaults.php:224
|
1870 |
+
msgid "User updated a custom field name for a custom post type"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: defaults.php:224
|
1874 |
+
msgid ""
|
1875 |
+
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom "
|
1876 |
+
"post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: defaults.php:225
|
1880 |
+
msgid "User modified content for a published custom post type"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: defaults.php:225
|
1884 |
+
msgid ""
|
1885 |
+
"Modified the content of the published custom post type %PostTitle%. Post URL "
|
1886 |
+
"is %PostUrl%.%EditorLinkPost%."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: defaults.php:226
|
1890 |
+
msgid "User modified content for a draft post"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: defaults.php:226
|
1894 |
+
msgid ""
|
1895 |
+
"Modified the content of the draft post %PostTitle%.%RevisionLink% "
|
1896 |
+
"%EditorLinkPost%."
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: defaults.php:227
|
1900 |
+
msgid "User modified content for a draft custom post type"
|
|
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: defaults.php:227
|
1904 |
+
msgid ""
|
1905 |
+
"Modified the content of the draft custom post type %PostTitle%."
|
1906 |
+
"%EditorLinkPost%."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
+
#: defaults.php:228
|
1910 |
+
msgid "User modified content of a post"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: defaults.php:228
|
1914 |
+
msgid ""
|
1915 |
+
"Modified the content of post %PostTitle% which is submitted for review."
|
1916 |
+
"%RevisionLink% %EditorLinkPost%."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: defaults.php:229
|
1920 |
+
msgid "User scheduled a custom post type"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: defaults.php:229
|
1924 |
+
msgid ""
|
1925 |
+
"Scheduled the custom post type %PostTitle% to be published %PublishingDate%. "
|
1926 |
+
"%EditorLinkPost%."
|
1927 |
msgstr ""
|
1928 |
|
1929 |
+
#: defaults.php:230
|
1930 |
+
msgid "User changed title of a custom post type"
|
1931 |
msgstr ""
|
1932 |
|
1933 |
+
#: defaults.php:230
|
1934 |
msgid ""
|
1935 |
+
"Changed the title of the custom post %OldTitle% to %NewTitle%. "
|
1936 |
+
"%EditorLinkPost%."
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: defaults.php:231
|
1940 |
+
msgid "User opened a custom post type in the editor"
|
|
|
|
|
|
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: defaults.php:231
|
1944 |
+
msgid ""
|
1945 |
+
"Opened the custom post %PostTitle% of type %PostType% in the editor. View "
|
1946 |
+
"the post: %EditorLinkPost%."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
+
#: defaults.php:232
|
1950 |
+
msgid "User viewed a custom post type"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: defaults.php:232
|
1954 |
+
msgid ""
|
1955 |
+
"Viewed the custom post %PostTitle% of type %PostType%. View the post: "
|
1956 |
+
"%PostUrl%."
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: defaults.php:243
|
1960 |
+
msgid "Pages"
|
|
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: defaults.php:244
|
1964 |
+
msgid "User created a new WordPress page and saved it as draft"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: defaults.php:244
|
1968 |
msgid ""
|
1969 |
+
"Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage"
|
1970 |
+
"%."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: defaults.php:245
|
1974 |
+
msgid "User published a WordPress page"
|
|
|
|
|
|
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: defaults.php:245
|
1978 |
+
msgid ""
|
1979 |
+
"Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1980 |
msgstr ""
|
1981 |
|
1982 |
+
#: defaults.php:246
|
1983 |
+
msgid "User modified a published WordPress page"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: defaults.php:246
|
1987 |
+
msgid ""
|
1988 |
+
"Modified the published page %PostTitle%. Page URL is %PostUrl%. "
|
1989 |
+
"%EditorLinkPage%."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: defaults.php:247
|
1993 |
+
msgid "User modified a draft WordPress page"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: defaults.php:247
|
1997 |
msgid ""
|
1998 |
+
"Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
|
|
1999 |
msgstr ""
|
2000 |
|
2001 |
+
#: defaults.php:248
|
2002 |
+
msgid "User permanently deleted a page from the trash"
|
|
|
|
|
|
|
|
|
|
|
|
|
2003 |
msgstr ""
|
2004 |
|
2005 |
+
#: defaults.php:248
|
2006 |
+
msgid "Permanently deleted the page %PostTitle%."
|
|
|
|
|
|
|
2007 |
msgstr ""
|
2008 |
|
2009 |
+
#: defaults.php:249
|
2010 |
+
msgid "User moved WordPress page to the trash"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
+
#: defaults.php:249
|
2014 |
+
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
2015 |
msgstr ""
|
2016 |
|
2017 |
+
#: defaults.php:250
|
2018 |
+
msgid "User restored a WordPress page from trash"
|
|
|
|
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: defaults.php:250
|
2022 |
+
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
|
|
|
|
2023 |
msgstr ""
|
2024 |
|
2025 |
+
#: defaults.php:251
|
2026 |
+
msgid "User changed page URL"
|
|
|
|
|
|
|
|
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: defaults.php:251
|
2030 |
+
msgid ""
|
2031 |
+
"Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. "
|
2032 |
+
"%EditorLinkPage%."
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: defaults.php:252
|
2036 |
+
msgid "User changed page author"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: defaults.php:252
|
2040 |
msgid ""
|
2041 |
+
"Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. "
|
2042 |
+
"%EditorLinkPage%."
|
2043 |
msgstr ""
|
2044 |
|
2045 |
+
#: defaults.php:253
|
2046 |
+
msgid "User changed page status"
|
|
|
|
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: defaults.php:253
|
2050 |
+
msgid ""
|
2051 |
+
"Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. "
|
2052 |
+
"%EditorLinkPage%."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: defaults.php:254
|
2056 |
+
msgid "User changed the visibility of a page post"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: defaults.php:254
|
2060 |
+
msgid ""
|
2061 |
+
"Changed the visibility of the page %PostTitle% from %OldVisibility% to "
|
2062 |
+
"%NewVisibility%. %EditorLinkPage%."
|
2063 |
msgstr ""
|
2064 |
|
2065 |
+
#: defaults.php:255
|
2066 |
+
msgid "User changed the date of a page post"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
+
#: defaults.php:255
|
2070 |
msgid ""
|
2071 |
+
"Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. "
|
2072 |
+
"%EditorLinkPage%."
|
|
|
|
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: defaults.php:256
|
2076 |
+
msgid "User created a custom field for a page"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: defaults.php:256
|
2080 |
+
msgid ""
|
2081 |
+
"Created a new custom field called %MetaKey% with value %MetaValue% in the "
|
2082 |
+
"page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: defaults.php:257
|
2086 |
+
msgid "User updated a custom field value for a page"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: defaults.php:257
|
2090 |
+
msgid ""
|
2091 |
+
"Modified the value of the custom field %MetaKey% from %MetaValueOld% to "
|
2092 |
+
"%MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: defaults.php:258
|
2096 |
+
msgid "User deleted a custom field from a page"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: defaults.php:258
|
2100 |
msgid ""
|
2101 |
+
"Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% "
|
2102 |
+
"%EditorLinkPage%.<br>%MetaLink%."
|
|
|
|
|
|
|
|
|
2103 |
msgstr ""
|
2104 |
|
2105 |
+
#: defaults.php:259
|
2106 |
+
msgid "User updated a custom field name for a page"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: defaults.php:259
|
2110 |
+
msgid ""
|
2111 |
+
"Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page "
|
2112 |
+
"%PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: defaults.php:260
|
2116 |
+
msgid "User modified content for a published page"
|
|
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: defaults.php:260
|
2120 |
+
msgid ""
|
2121 |
+
"Modified the content of the published page %PostTitle%. Page URL is %PostUrl"
|
2122 |
+
"%. %RevisionLink% %EditorLinkPage%."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: defaults.php:261
|
2126 |
+
msgid "User modified content for a draft page"
|
|
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: defaults.php:261
|
2130 |
+
msgid ""
|
2131 |
+
"Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage"
|
2132 |
+
"%."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: defaults.php:262
|
2136 |
+
msgid "User scheduled a page"
|
|
|
|
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: defaults.php:262
|
2140 |
+
msgid ""
|
2141 |
+
"Scheduled the page %PostTitle% to be published %PublishingDate%. "
|
2142 |
+
"%EditorLinkPage%."
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: defaults.php:263
|
2146 |
+
msgid "User changed title of a page"
|
|
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: defaults.php:263
|
2150 |
+
msgid ""
|
2151 |
+
"Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2152 |
msgstr ""
|
2153 |
|
2154 |
+
#: defaults.php:264
|
2155 |
+
msgid "User opened a page in the editor"
|
|
|
|
|
2156 |
msgstr ""
|
2157 |
|
2158 |
+
#: defaults.php:264
|
2159 |
msgid ""
|
2160 |
+
"Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
|
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: defaults.php:265
|
2164 |
+
msgid "User viewed a page"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: defaults.php:265
|
2168 |
+
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
|
|
|
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: defaults.php:266
|
2172 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: defaults.php:266
|
2176 |
msgid ""
|
2177 |
+
"Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
|
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: defaults.php:267
|
2181 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: defaults.php:267
|
2185 |
+
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: defaults.php:268
|
2189 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: defaults.php:268
|
2193 |
+
msgid ""
|
2194 |
+
"Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: defaults.php:269
|
2198 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: defaults.php:269
|
2202 |
+
msgid ""
|
2203 |
+
"Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: defaults.php:270
|
2207 |
+
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: defaults.php:270
|
2211 |
+
msgid ""
|
2212 |
+
"Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: defaults.php:271
|
2216 |
+
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: defaults.php:271
|
2220 |
+
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: defaults.php:278
|
2224 |
+
msgid "WordPress & Multisite Management"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: defaults.php:282
|
2228 |
+
msgid "Database"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: defaults.php:283
|
2232 |
+
msgid "Plugin created tables"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: defaults.php:283
|
2236 |
+
msgid ""
|
2237 |
+
"Plugin %Plugin->Name% created these tables in the database: %TableNames%."
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: defaults.php:284
|
2241 |
+
msgid "Plugin modified tables structure"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: defaults.php:284
|
2245 |
+
msgid ""
|
2246 |
+
"Plugin %Plugin->Name% modified the structure of these database tables: "
|
2247 |
+
"%TableNames%."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: defaults.php:285
|
2251 |
+
msgid "Plugin deleted tables"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: defaults.php:285
|
2255 |
+
msgid ""
|
2256 |
+
"Plugin %Plugin->Name% deleted the following tables from the database: "
|
2257 |
+
"%TableNames%."
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: defaults.php:286
|
2261 |
+
msgid "Theme created tables"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: defaults.php:286
|
2265 |
+
msgid "Theme %Theme->Name% created these tables in the database: %TableNames%."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: defaults.php:287
|
2269 |
+
msgid "Theme modified tables structure"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: defaults.php:287
|
2273 |
+
msgid ""
|
2274 |
+
"Theme %Theme->Name% modified the structure of these database tables: "
|
2275 |
+
"%TableNames%."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: defaults.php:288
|
2279 |
+
msgid "Theme deleted tables"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: defaults.php:288
|
2283 |
+
msgid ""
|
2284 |
+
"Theme %Theme->Name% deleted the following tables from the database: "
|
2285 |
+
"%TableNames%."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: defaults.php:289
|
2289 |
+
msgid "Unknown component created tables"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: defaults.php:289
|
2293 |
msgid ""
|
2294 |
+
"An unknown component created these tables in the database: %TableNames%."
|
|
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: defaults.php:290
|
2298 |
+
msgid "Unknown component modified tables structure"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: defaults.php:290
|
2302 |
msgid ""
|
2303 |
+
"An unknown component modified the structure of these database tables: "
|
2304 |
+
"%TableNames%."
|
|
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: defaults.php:291
|
2308 |
+
msgid "Unknown component deleted tables"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: defaults.php:291
|
2312 |
msgid ""
|
2313 |
+
"An unknown component deleted the following tables from the database: "
|
2314 |
+
"%TableNames%."
|
|
|
|
|
|
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: defaults.php:297
|
2318 |
+
msgid "MultiSite"
|
|
|
|
|
|
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: defaults.php:298
|
2322 |
+
msgid "User granted Super Admin privileges"
|
|
|
|
|
|
|
|
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: defaults.php:298
|
2326 |
+
msgid "Granted Super Admin privileges to %TargetUsername%."
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: defaults.php:299
|
2330 |
+
msgid "User revoked from Super Admin privileges"
|
|
|
|
|
|
|
2331 |
msgstr ""
|
2332 |
|
2333 |
+
#: defaults.php:299
|
2334 |
+
msgid "Revoked Super Admin privileges from %TargetUsername%."
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: defaults.php:300
|
2338 |
+
msgid "Existing user added to a site"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
+
#: defaults.php:300
|
2342 |
msgid ""
|
2343 |
+
"Added the existing user %TargetUsername% with %TargetUserRole% role to site "
|
2344 |
+
"%SiteName%."
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: defaults.php:301
|
2348 |
+
msgid "User removed from site"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: defaults.php:301
|
2352 |
+
msgid ""
|
2353 |
+
"Removed the user %TargetUsername% with role %TargetUserRole% from %SiteName% "
|
2354 |
+
"site."
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: defaults.php:302
|
2358 |
+
msgid "New network user created"
|
|
|
|
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: defaults.php:302
|
2362 |
+
msgid "Created a new network user %NewUserData->Username%."
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: defaults.php:303
|
2366 |
+
msgid "The forum role of a user was changed by another WordPress user"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: defaults.php:303
|
2370 |
msgid ""
|
2371 |
+
"Change the forum role of the user %TargetUsername% from %OldRole% to %NewRole"
|
2372 |
+
"% by %UserChanger%."
|
|
|
|
|
|
|
|
|
2373 |
msgstr ""
|
2374 |
|
2375 |
+
#: defaults.php:304
|
2376 |
+
msgid "New site added on the network"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
+
#: defaults.php:304
|
2380 |
+
msgid "Added the site %SiteName% to the network."
|
2381 |
msgstr ""
|
2382 |
|
2383 |
+
#: defaults.php:305
|
2384 |
+
msgid "Existing site archived"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
+
#: defaults.php:305
|
2388 |
+
msgid "Archived the site %SiteName%."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: defaults.php:306
|
2392 |
+
msgid "Archived site has been unarchived"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: defaults.php:306
|
2396 |
+
msgid "Unarchived the site %SiteName%."
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: defaults.php:307
|
2400 |
+
msgid "Deactivated site has been activated"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: defaults.php:307
|
2404 |
+
msgid "Activated the site %SiteName%."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
+
#: defaults.php:308
|
2408 |
+
msgid "Site has been deactivated"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: defaults.php:308
|
2412 |
+
msgid "Deactivated the site %SiteName%."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
+
#: defaults.php:309
|
2416 |
+
msgid "Existing site deleted from network"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: defaults.php:309
|
2420 |
+
msgid "Deleted the site %SiteName%."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
+
#: defaults.php:310
|
2424 |
+
msgid "Activated theme on network"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: defaults.php:310
|
2428 |
+
msgid ""
|
2429 |
+
"Network activated the theme %Theme->Name% installed in %Theme-"
|
2430 |
+
">get_template_directory%."
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: defaults.php:311
|
2434 |
+
msgid "Deactivated theme from network"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: defaults.php:311
|
2438 |
+
msgid ""
|
2439 |
+
"Network deactivated the theme %Theme->Name% installed in %Theme-"
|
2440 |
+
">get_template_directory%."
|
2441 |
msgstr ""
|
2442 |
|
2443 |
+
#: defaults.php:317
|
2444 |
+
msgid "Plugins & Themes"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: defaults.php:318
|
2448 |
+
msgid "User installed a plugin"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: defaults.php:318
|
2452 |
+
msgid "Installed the plugin %Plugin->Name% in %Plugin->plugin_dir_path%."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: defaults.php:319
|
2456 |
+
msgid "User activated a WordPress plugin"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: defaults.php:319
|
2460 |
+
msgid "Activated the plugin %PluginData->Name% installed in %PluginFile%."
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: defaults.php:320
|
2464 |
+
msgid "User deactivated a WordPress plugin"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: defaults.php:320
|
2468 |
+
msgid "Deactivated the plugin %PluginData->Name% installed in %PluginFile%."
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: defaults.php:321
|
2472 |
+
msgid "User uninstalled a plugin"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: defaults.php:321
|
2476 |
+
msgid ""
|
2477 |
+
"Uninstalled the plugin %PluginData->Name% which was installed in %PluginFile"
|
2478 |
+
"%."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
+
#: defaults.php:322
|
2482 |
+
msgid "User upgraded a plugin"
|
2483 |
msgstr ""
|
2484 |
|
2485 |
+
#: defaults.php:322
|
2486 |
+
msgid "Upgraded the plugin %PluginData->Name% installed in %PluginFile%."
|
2487 |
msgstr ""
|
2488 |
|
2489 |
+
#: defaults.php:323
|
2490 |
+
msgid "User installed a theme"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
+
#: defaults.php:323
|
2494 |
msgid ""
|
2495 |
+
"Installed the theme \"%Theme->Name%\" in %Theme->get_template_directory%."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: defaults.php:324
|
2499 |
+
msgid "User activated a theme"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: defaults.php:324
|
2503 |
msgid ""
|
2504 |
+
"Activated the theme \"%Theme->Name%\", installed in %Theme-"
|
2505 |
+
">get_template_directory%."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: defaults.php:325
|
2509 |
+
msgid "User uninstalled a theme"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: defaults.php:325
|
2513 |
msgid ""
|
2514 |
+
"Deleted the theme \"%Theme->Name%\" installed in %Theme-"
|
2515 |
+
">get_template_directory%."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: defaults.php:326
|
2519 |
+
msgid "A plugin created a post"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: defaults.php:326
|
2523 |
+
msgid ""
|
2524 |
+
"A plugin automatically created the following %PostType% called %PostTitle%. "
|
2525 |
+
"View the post: %EditorLinkPost%."
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: defaults.php:327
|
2529 |
+
msgid "A plugin created a page"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: defaults.php:327
|
2533 |
+
msgid "A plugin automatically created the following page: %PostTitle%."
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: defaults.php:328
|
2537 |
+
msgid "A plugin created a custom post"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: defaults.php:328
|
2541 |
+
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: defaults.php:329
|
2545 |
+
msgid "A plugin deleted a post"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: defaults.php:329
|
2549 |
+
msgid ""
|
2550 |
+
"A plugin automatically deleted the following %PostType% called %PostTitle%."
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: defaults.php:330
|
2554 |
+
msgid "A plugin deleted a page"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: defaults.php:330
|
2558 |
+
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
|
|
|
|
2559 |
msgstr ""
|
2560 |
|
2561 |
+
#: defaults.php:331
|
2562 |
+
msgid "A plugin deleted a custom post"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
+
#: defaults.php:331
|
2566 |
+
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
|
|
|
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: defaults.php:332
|
2570 |
+
msgid "User updated a theme"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: defaults.php:332
|
2574 |
msgid ""
|
2575 |
+
"Updated the theme \"%Theme->Name%\" installed in %Theme-"
|
2576 |
+
">get_template_directory%."
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: defaults.php:333
|
2580 |
+
msgid "User changed a file using the theme editor"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: defaults.php:333
|
2584 |
+
msgid "Modified %File% with the Theme Editor."
|
|
|
|
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: defaults.php:334
|
2588 |
+
msgid "User changed a file using the plugin editor"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: defaults.php:334
|
2592 |
+
msgid "Modified %File% with the Plugin Editor."
|
|
|
|
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: defaults.php:335
|
2596 |
+
msgid "A plugin modified a page"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: defaults.php:335
|
2600 |
+
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: defaults.php:336
|
2604 |
+
msgid "A plugin modified a custom post"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: defaults.php:336
|
2608 |
msgid ""
|
2609 |
+
"Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
|
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: defaults.php:342
|
2613 |
+
msgid "System Activity"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: defaults.php:343
|
2617 |
+
msgid "Unknown Error"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: defaults.php:343
|
2621 |
+
msgid "An unexpected error has occurred ."
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: defaults.php:344
|
2625 |
+
msgid "PHP error"
|
|
|
|
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: defaults.php:344 defaults.php:345 defaults.php:346 defaults.php:347
|
2629 |
+
#: defaults.php:348
|
2630 |
+
msgid "%Message%."
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: defaults.php:345
|
2634 |
+
msgid "PHP warning"
|
|
|
|
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: defaults.php:346
|
2638 |
+
msgid "PHP notice"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: defaults.php:347
|
2642 |
+
msgid "PHP exception"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: defaults.php:348
|
2646 |
+
msgid "PHP shutdown error"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: defaults.php:349
|
2650 |
+
msgid "Events automatically pruned by system"
|
|
|
|
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: defaults.php:349
|
2654 |
+
msgid "System automatically deleted %EventCount% alert(s)."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: defaults.php:350
|
2658 |
+
msgid "Option Anyone Can Register in WordPress settings changed"
|
|
|
|
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: defaults.php:350
|
2662 |
+
msgid "%NewValue% the option \"Anyone can register\"."
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: defaults.php:351
|
2666 |
+
msgid "New User Default Role changed"
|
|
|
|
|
2667 |
msgstr ""
|
2668 |
|
2669 |
+
#: defaults.php:351
|
2670 |
+
msgid "Changed the New User Default Role from %OldRole% to %NewRole%."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: defaults.php:352
|
2674 |
+
msgid "WordPress Administrator Notification email changed"
|
|
|
|
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: defaults.php:352
|
2678 |
+
msgid ""
|
2679 |
+
"Changed the WordPress administrator notifications email address from "
|
2680 |
+
"%OldEmail% to %NewEmail%."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: defaults.php:353
|
2684 |
+
msgid "WordPress was updated"
|
|
|
|
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: defaults.php:353
|
2688 |
+
msgid "Updated WordPress from version %OldVersion% to %NewVersion%."
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: defaults.php:354
|
2692 |
+
msgid "User changes the WordPress Permalinks"
|
|
|
|
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: defaults.php:354
|
2696 |
+
msgid "Changed the WordPress permalinks from %OldPattern% to %NewPattern%."
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: defaults.php:355
|
2700 |
+
msgid "User requests non-existing pages (404 Error Pages)"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: defaults.php:355
|
2704 |
msgid ""
|
2705 |
+
"Has requested a non existing page (404 Error Pages) %Attempts% %Msg%. "
|
2706 |
+
"%LinkFile%"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: defaults.php:356
|
2710 |
+
msgid "Website Visitor User requests non-existing pages (404 Error Pages)"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: defaults.php:356
|
2714 |
msgid ""
|
2715 |
+
"Website Visitor Has requested a non existing page (404 Error Pages) %Attempts"
|
2716 |
+
"% %Msg%. %LinkFile%"
|
|
|
|
|
|
|
|
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: defaults.php:357
|
2720 |
+
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
|
|
|
|
2721 |
msgstr ""
|
2722 |
|
2723 |
+
#: defaults.php:357
|
2724 |
+
msgid "Changed the WordPress address (URL) from %old_url% to %new_url%."
|
2725 |
msgstr ""
|
2726 |
|
2727 |
+
#: defaults.php:358
|
2728 |
+
msgid "Option Site Address (URL) in WordPress settings changed"
|
|
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: defaults.php:358
|
2732 |
+
msgid "Changed the site address (URL) from %old_url% to %new_url%."
|
2733 |
msgstr ""
|
2734 |
|
2735 |
+
#: defaults.php:359
|
2736 |
+
msgid "Advertising Add-ons."
|
|
|
|
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: defaults.php:359
|
2740 |
+
msgid "%PromoName% %PromoMessage%"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: defaults.php:365
|
2744 |
+
msgid "Menus"
|
|
|
|
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: defaults.php:366
|
2748 |
+
msgid "User created new menu"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: defaults.php:366
|
2752 |
+
msgid "Created a new menu called %MenuName%."
|
|
|
|
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: defaults.php:367
|
2756 |
+
msgid "User added content to a menu"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: defaults.php:367
|
2760 |
+
msgid "Added the %ContentType% called %ContentName% to menu %MenuName%."
|
|
|
|
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: defaults.php:368
|
2764 |
+
msgid "User removed content from a menu"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: defaults.php:368
|
2768 |
msgid ""
|
2769 |
+
"Removed the %ContentType% called %ContentName% from the menu %MenuName%."
|
|
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: defaults.php:369
|
2773 |
+
msgid "User deleted menu"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: defaults.php:369
|
2777 |
+
msgid "Deleted the menu %MenuName%."
|
|
|
|
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: defaults.php:370
|
2781 |
+
msgid "User changed menu setting"
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: defaults.php:370
|
2785 |
+
msgid "%Status% the menu setting %MenuSetting% in %MenuName%."
|
|
|
|
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: defaults.php:371
|
2789 |
+
msgid "User modified content in a menu"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: defaults.php:371
|
2793 |
+
msgid "Modified the %ContentType% called %ContentName% in menu %MenuName%."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: defaults.php:372
|
2797 |
+
msgid "User changed name of a menu"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: defaults.php:372
|
2801 |
+
msgid "Changed the name of menu %OldMenuName% to %NewMenuName%."
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: defaults.php:373
|
2805 |
+
msgid "User changed order of the objects in a menu"
|
|
|
|
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: defaults.php:373
|
2809 |
+
msgid "Changed the order of the %ItemName% in menu %MenuName%."
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: defaults.php:374
|
2813 |
+
msgid "User moved objects as a sub-item"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: defaults.php:374
|
2817 |
+
msgid "Moved %ItemName% as a sub-item of %ParentName% in menu %MenuName%."
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: defaults.php:380
|
2821 |
+
msgid "Widgets"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: defaults.php:381
|
2825 |
+
msgid "User added a new widget"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: defaults.php:381
|
2829 |
+
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
2830 |
msgstr ""
|
2831 |
+
|
2832 |
+
#: defaults.php:382
|
2833 |
+
msgid "User modified a widget"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: defaults.php:382
|
2837 |
+
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: defaults.php:383
|
2841 |
+
msgid "User deleted widget"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: defaults.php:383
|
2845 |
+
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: defaults.php:384
|
2849 |
+
msgid "User moved widget"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: defaults.php:384
|
2853 |
+
msgid "Moved the %WidgetName% widget from %OldSidebar% to %NewSidebar%."
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: defaults.php:385
|
2857 |
+
msgid "User changed widget position"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: defaults.php:385
|
2861 |
+
msgid "Changed the position of the widget %WidgetName% in sidebar %Sidebar%."
|
|
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: defaults.php:391
|
2865 |
+
msgid "Site Settings"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: defaults.php:392
|
2869 |
msgid ""
|
2870 |
+
"Enabled/Disabled the option Discourage search engines from indexing this site"
|
|
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: defaults.php:392
|
2874 |
+
msgid "%Status% the option Discourage search engines from indexing this site."
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: defaults.php:393
|
2878 |
+
msgid "Enabled/Disabled comments on all the website"
|
|
|
|
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: defaults.php:393
|
2882 |
+
msgid "%Status% comments on all the website."
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: defaults.php:394
|
2886 |
+
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
|
|
|
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: defaults.php:394
|
2890 |
+
msgid "%Status% the option Comment author must fill out name and email."
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: defaults.php:395
|
2894 |
msgid ""
|
2895 |
+
"Enabled/Disabled the option Users must be logged in and registered to comment"
|
|
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: defaults.php:395
|
2899 |
+
msgid "%Status% the option Users must be logged in and registered to comment."
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: defaults.php:396
|
2903 |
+
msgid "Enabled/Disabled the option to automatically close comments"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: defaults.php:396
|
2907 |
+
msgid "%Status% the option to automatically close comments after %Value% days."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: defaults.php:397
|
2911 |
+
msgid "Changed the value of the option Automatically close comments"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: defaults.php:397
|
2915 |
+
msgid ""
|
2916 |
+
"Changed the value of the option Automatically close comments from %OldValue% "
|
2917 |
+
"to %NewValue% days."
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: defaults.php:398
|
2921 |
+
msgid "Enabled/Disabled the option for comments to be manually approved"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: defaults.php:398
|
2925 |
+
msgid "%Status% the option for comments to be manually approved."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: defaults.php:399
|
2929 |
msgid ""
|
2930 |
+
"Enabled/Disabled the option for an author to have previously approved "
|
2931 |
+
"comments for the comments to appear"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: defaults.php:399
|
2935 |
+
msgid ""
|
2936 |
+
"%Status% the option for an author to have previously approved comments for "
|
2937 |
+
"the comments to appear."
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: defaults.php:400
|
2941 |
msgid ""
|
2942 |
+
"Changed the number of links that a comment must have to be held in the queue"
|
|
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: defaults.php:400
|
2946 |
+
msgid ""
|
2947 |
+
"Changed the number of links from %OldValue% to %NewValue% that a comment "
|
2948 |
+
"must have to be held in the queue."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: defaults.php:401
|
2952 |
+
msgid "Modified the list of keywords for comments moderation"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: defaults.php:401
|
2956 |
+
msgid "Modified the list of keywords for comments moderation."
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: defaults.php:402
|
2960 |
+
msgid "Modified the list of keywords for comments blacklisting"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: defaults.php:402
|
2964 |
+
msgid "Modified the list of keywords for comments blacklisting."
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: defaults.php:403
|
2968 |
+
msgid "Created a New cron job"
|
2969 |
+
msgstr ""
|
2970 |
+
|
2971 |
+
#: defaults.php:403
|
2972 |
msgid ""
|
2973 |
+
"A new cron job called %name% was created and is scheduled to run %schedule%."
|
|
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: defaults.php:404
|
2977 |
+
msgid "Changed status of the cron job"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: defaults.php:404
|
2981 |
+
msgid "The cron job %name% was %status%."
|
|
|
|
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: defaults.php:405
|
2985 |
+
msgid "Deleted the cron job"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: defaults.php:405
|
2989 |
+
msgid "The cron job %name% was deleted."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: defaults.php:406
|
2993 |
+
msgid "Started the cron job"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: defaults.php:406
|
2997 |
+
msgid "The cron job %name% has just started."
|
|
|
|
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: defaults.php:413
|
3001 |
+
msgid "Users Profiles & Activity"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: defaults.php:417
|
3005 |
+
msgid "Other User Activity"
|
|
|
|
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: defaults.php:418
|
3009 |
+
msgid "User logged in"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: defaults.php:418
|
3013 |
+
msgid "Successfully logged in."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: defaults.php:419
|
3017 |
+
msgid "User logged out"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: defaults.php:419
|
3021 |
+
msgid "Successfully logged out."
|
|
|
|
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: defaults.php:420
|
3025 |
+
msgid "Login failed"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: defaults.php:420
|
3029 |
+
msgid "%Attempts% failed login(s) detected."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: defaults.php:421
|
3033 |
+
msgid "Login failed / non existing user"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: defaults.php:421
|
3037 |
+
msgid ""
|
3038 |
+
"%Attempts% failed login(s) detected using non existing user. %LogFileText%"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: defaults.php:422
|
3042 |
+
msgid "Login blocked"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: defaults.php:422
|
3046 |
+
msgid ""
|
3047 |
+
"Blocked from logging in because the same WordPress user is logged in from "
|
3048 |
+
"%ClientIP%."
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: defaults.php:423
|
3052 |
+
msgid "User logged in with existing session(s)"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
+
#: defaults.php:423
|
3056 |
msgid ""
|
3057 |
+
"Successfully logged in. Another session from %IPAddress% for this user "
|
3058 |
+
"already exist."
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: defaults.php:424
|
3062 |
+
msgid "User logged out all other sessions with the same username"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
+
#: defaults.php:424
|
3066 |
+
msgid "Logged out all other sessions with the same username."
|
|
|
|
|
3067 |
msgstr ""
|
3068 |
|
3069 |
+
#: defaults.php:425
|
3070 |
+
msgid "User session destroyed and logged out."
|
3071 |
msgstr ""
|
3072 |
|
3073 |
+
#: defaults.php:425
|
3074 |
+
msgid "Logged out session %TargetSessionID% which belonged to %TargetUserName%"
|
|
|
|
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: defaults.php:426
|
3078 |
+
msgid "User uploaded file from Uploads directory"
|
3079 |
+
msgstr ""
|
3080 |
+
|
3081 |
+
#: defaults.php:426
|
3082 |
+
msgid "Uploaded the file %FileName% in %FilePath%."
|
3083 |
+
msgstr ""
|
3084 |
+
|
3085 |
+
#: defaults.php:427
|
3086 |
+
msgid "User deleted file from Uploads directory"
|
3087 |
+
msgstr ""
|
3088 |
+
|
3089 |
+
#: defaults.php:427
|
3090 |
+
msgid "Deleted the file %FileName% from %FilePath%."
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: defaults.php:433
|
3094 |
+
msgid "User Profiles"
|
|
|
|
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: defaults.php:434
|
3098 |
+
msgid "New user was created on WordPress"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: defaults.php:434
|
3102 |
msgid ""
|
3103 |
+
"A new user %NewUserData->Username% was created with role of %NewUserData-"
|
3104 |
+
">Roles%."
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: defaults.php:435
|
3108 |
+
msgid "User created another WordPress user"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: defaults.php:435
|
3112 |
msgid ""
|
3113 |
+
"%UserChanger% created a new user %NewUserData->Username% with the role of "
|
3114 |
+
"%NewUserData->Roles%."
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: defaults.php:436
|
3118 |
+
msgid "The role of a user was changed by another WordPress user"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: defaults.php:436
|
3122 |
msgid ""
|
3123 |
+
"Changed the role of the user %TargetUsername% from %OldRole% to %NewRole%"
|
3124 |
+
"%multisite_text%."
|
3125 |
msgstr ""
|
3126 |
|
3127 |
+
#: defaults.php:437
|
3128 |
+
msgid "User has changed his or her password"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: defaults.php:437
|
3132 |
+
msgid "Changed the password."
|
|
|
|
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: defaults.php:438
|
3136 |
+
msgid "User changed another user's password"
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: defaults.php:438
|
3140 |
msgid ""
|
3141 |
+
"Changed the password for the user %TargetUserData->Username% with the role "
|
3142 |
+
"of %TargetUserData->Roles%."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: defaults.php:439
|
3146 |
+
msgid "User changed his or her email address"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: defaults.php:439
|
3150 |
+
msgid "Changed the email address from %OldEmail% to %NewEmail%."
|
|
|
|
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: defaults.php:440
|
3154 |
+
msgid "User changed another user's email address"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: defaults.php:440
|
3158 |
msgid ""
|
3159 |
+
"Changed the email address of the user %TargetUsername% from %OldEmail% to "
|
3160 |
+
"%NewEmail%."
|
3161 |
msgstr ""
|
3162 |
|
3163 |
+
#: defaults.php:441
|
3164 |
+
msgid "User was deleted by another user"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: defaults.php:441
|
3168 |
msgid ""
|
3169 |
+
"Deleted the user %TargetUserData->Username% with the role of %TargetUserData-"
|
3170 |
+
">Roles%."
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: defaults.php:442
|
3174 |
+
msgid "User opened the profile page of another user"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: defaults.php:442
|
3178 |
+
msgid "%UserChanger% opened the profile page of the user %TargetUsername%."
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: defaults.php:443
|
3182 |
+
msgid "User updated a custom field value for a user"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: defaults.php:443
|
3186 |
msgid ""
|
3187 |
+
"Changed the value of the custom field %custom_field_name%%ReportText% for "
|
3188 |
+
"the user %TargetUsername%.%ChangeText%"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: defaults.php:444
|
3192 |
+
msgid "User created a custom field value for a user"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: defaults.php:444
|
3196 |
msgid ""
|
3197 |
+
"Created the value of the custom field %custom_field_name% with %new_value% "
|
3198 |
+
"for the user %TargetUsername%."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: defaults.php:445
|
3202 |
+
msgid "User changed first name for a user"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: defaults.php:445
|
3206 |
msgid ""
|
3207 |
+
"Changed the first name of the user %TargetUsername% from %old_firstname% to "
|
3208 |
+
"%new_firstname%"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
+
#: defaults.php:446
|
3212 |
+
msgid "User changed last name for a user"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: defaults.php:446
|
3216 |
msgid ""
|
3217 |
+
"Changed the last name of the user %TargetUsername% from %old_lastname% to "
|
3218 |
+
"%new_lastname%"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: defaults.php:447
|
3222 |
+
msgid "User changed nickname for a user"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: defaults.php:447
|
3226 |
msgid ""
|
3227 |
+
"Changed the nickname of the user %TargetUsername% from %old_nickname% to "
|
3228 |
+
"%new_nickname%"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: defaults.php:448
|
3232 |
+
msgid "User changed the display name for a user"
|
3233 |
msgstr ""
|
3234 |
|
3235 |
+
#: defaults.php:448
|
3236 |
msgid ""
|
3237 |
+
"Changed the Display name publicly of user %TargetUsername% from "
|
3238 |
+
"%old_displayname% to %new_displayname%"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: defaults.php:455
|
3242 |
+
msgid "Third Party Support"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: defaults.php:459
|
3246 |
+
msgid "BBPress Forum"
|
|
|
|
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: defaults.php:460
|
3250 |
+
msgid "User created new forum"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: defaults.php:460
|
3254 |
msgid ""
|
3255 |
+
"Created new forum %ForumName%. Forum URL is %ForumURL%. %EditorLinkForum%."
|
|
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: defaults.php:461
|
3259 |
+
msgid "User changed status of a forum"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: defaults.php:461
|
3263 |
msgid ""
|
3264 |
+
"Changed the status of the forum %ForumName% from %OldStatus% to %NewStatus%. "
|
3265 |
+
"%EditorLinkForum%."
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: defaults.php:462
|
3269 |
+
msgid "User changed visibility of a forum"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: defaults.php:462
|
3273 |
msgid ""
|
3274 |
+
"Changed the visibility of the forum %ForumName% from %OldVisibility% to "
|
3275 |
+
"%NewVisibility%. %EditorLinkForum%."
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: defaults.php:463
|
3279 |
+
msgid "User changed the URL of a forum"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: defaults.php:463
|
3283 |
msgid ""
|
3284 |
+
"Changed the URL of the forum %ForumName% from %OldUrl% to %NewUrl%. "
|
3285 |
+
"%EditorLinkForum%."
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: defaults.php:464
|
3289 |
+
msgid "User changed order of a forum"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
+
#: defaults.php:464
|
3293 |
msgid ""
|
3294 |
+
"Changed the order of the forum %ForumName% from %OldOrder% to %NewOrder%. "
|
3295 |
+
"%EditorLinkForum%."
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: defaults.php:465
|
3299 |
+
msgid "User moved forum to trash"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: defaults.php:465
|
3303 |
+
msgid "Moved the forum %ForumName% to trash."
|
|
|
|
|
|
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: defaults.php:466
|
3307 |
+
msgid "User permanently deleted forum"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: defaults.php:466
|
3311 |
+
msgid "Permanently deleted the forum %ForumName%."
|
|
|
|
|
|
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: defaults.php:467
|
3315 |
+
msgid "User restored forum from trash"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: defaults.php:467
|
3319 |
+
msgid "Restored the forum %ForumName% from trash. %EditorLinkForum%."
|
|
|
|
|
|
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: defaults.php:468
|
3323 |
+
msgid "User changed the parent of a forum"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: defaults.php:468
|
3327 |
msgid ""
|
3328 |
+
"Changed the parent of the forum %ForumName% from %OldParent% to %NewParent%. "
|
3329 |
+
"%EditorLinkForum%."
|
|
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: defaults.php:469
|
3333 |
+
msgid "User changed forum's role"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: defaults.php:469
|
3337 |
+
msgid "Changed the forum's auto role from %OldRole% to %NewRole%."
|
|
|
|
|
|
|
3338 |
msgstr ""
|
3339 |
|
3340 |
+
#: defaults.php:470
|
3341 |
+
msgid "User changed option of a forum"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
+
#: defaults.php:470
|
3345 |
+
msgid "%Status% the option for anonymous posting on forum."
|
|
|
|
|
|
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: defaults.php:471
|
3349 |
+
msgid "User changed type of a forum"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: defaults.php:471
|
3353 |
msgid ""
|
3354 |
+
"Changed the type of the forum %ForumName% from %OldType% to %NewType%. "
|
3355 |
+
"%EditorLinkForum%."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: defaults.php:472
|
3359 |
+
msgid "User changed time to disallow post editing"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: defaults.php:472
|
3363 |
msgid ""
|
3364 |
+
"Changed the time to disallow post editing from %OldTime% to %NewTime% "
|
3365 |
+
"minutes in the forums."
|
|
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: defaults.php:473
|
3369 |
+
msgid "User changed the forum setting posting throttle time"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: defaults.php:473
|
3373 |
msgid ""
|
3374 |
+
"Changed the posting throttle time from %OldTime% to %NewTime% seconds in the "
|
3375 |
+
"forums."
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: defaults.php:474
|
3379 |
+
msgid "User created new topic"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: defaults.php:474
|
3383 |
+
msgid "Created a new topic %TopicName%. %EditorLinkTopic%."
|
|
|
|
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: defaults.php:475
|
3387 |
+
msgid "User changed status of a topic"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: defaults.php:475
|
3391 |
msgid ""
|
3392 |
+
"Changed the status of the topic %TopicName% from %OldStatus% to %NewStatus%. "
|
3393 |
+
"%EditorLinkTopic%."
|
|
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: defaults.php:476
|
3397 |
+
msgid "User changed type of a topic"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
+
#: defaults.php:476
|
3401 |
msgid ""
|
3402 |
+
"Changed the type of the topic %TopicName% from %OldType% to %NewType%. "
|
3403 |
+
"%EditorLinkTopic%."
|
|
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: defaults.php:477
|
3407 |
+
msgid "User changed URL of a topic"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
+
#: defaults.php:477
|
3411 |
+
msgid "Changed the URL of the topic %TopicName% from %OldUrl% to %NewUrl%."
|
|
|
|
|
|
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: defaults.php:478
|
3415 |
+
msgid "User changed the forum of a topic"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: defaults.php:478
|
3419 |
msgid ""
|
3420 |
+
"Changed the forum of the topic %TopicName% from %OldForum% to %NewForum%. "
|
3421 |
+
"%EditorLinkTopic%."
|
|
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: defaults.php:479
|
3425 |
+
msgid "User moved topic to trash"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: defaults.php:479
|
3429 |
+
msgid "Moved the topic %TopicName% to trash."
|
|
|
|
|
|
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: defaults.php:480
|
3433 |
+
msgid "User permanently deleted topic"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: defaults.php:480
|
3437 |
+
msgid "Permanently deleted the topic %TopicName%."
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: defaults.php:481
|
3441 |
+
msgid "User restored topic from trash"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: defaults.php:481
|
3445 |
+
msgid "Restored the topic %TopicName% from trash. %EditorLinkTopic%."
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: defaults.php:482
|
3449 |
+
msgid "User changed visibility of a topic"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: defaults.php:482
|
3453 |
msgid ""
|
3454 |
+
"Changed the visibility of the topic %TopicName% from %OldVisibility% to "
|
3455 |
+
"%NewVisibility%. %EditorLinkTopic%."
|
|
|
|
|
|
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: defaults.php:488
|
3459 |
+
msgid "WooCommerce"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: defaults.php:489
|
3463 |
+
msgid "User created a new product"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: defaults.php:489
|
3467 |
msgid ""
|
3468 |
+
"Created a new product called %ProductTitle% and saved it as draft. View the "
|
3469 |
+
"product: %EditorLinkProduct%."
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: defaults.php:490
|
3473 |
+
msgid "User published a product"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: defaults.php:490
|
3477 |
+
msgid ""
|
3478 |
+
"Published a product called %ProductTitle%. Product URL is %ProductUrl%. View "
|
3479 |
+
"the product: %EditorLinkProduct%."
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: defaults.php:491
|
3483 |
+
msgid "User created a new product category"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: defaults.php:491
|
3487 |
+
msgid ""
|
3488 |
+
"Created a new product category called %CategoryName% in WooCommerce. Product "
|
3489 |
+
"category slug is %Slug%."
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: defaults.php:492
|
3493 |
+
msgid "User changed the category of a product"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: defaults.php:492
|
3497 |
+
msgid ""
|
3498 |
+
"Changed the category of the product %ProductTitle% from %OldCategories% to "
|
3499 |
+
"%NewCategories%. View the product: %EditorLinkProduct%."
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: defaults.php:493
|
3503 |
+
msgid "User modified the short description of a product"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: defaults.php:493
|
3507 |
+
msgid ""
|
3508 |
+
"Modified the short description of the product %ProductTitle%.%ChangeText% "
|
3509 |
+
"View the product: %EditorLinkProduct%."
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: defaults.php:494
|
3513 |
+
msgid "User modified the text of a product"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: defaults.php:494
|
3517 |
+
msgid ""
|
3518 |
+
"Modified the text of the product %ProductTitle%. View the product: "
|
3519 |
+
"%EditorLinkProduct%."
|
3520 |
msgstr ""
|
3521 |
|
3522 |
+
#: defaults.php:495
|
3523 |
+
msgid "User changed the URL of a product"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
+
#: defaults.php:495
|
3527 |
+
msgid ""
|
3528 |
+
"Changed the URL of the product %ProductTitle%%ReportText%.%ChangeText% View "
|
3529 |
+
"the product: %EditorLinkProduct%."
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: defaults.php:496
|
3533 |
+
msgid "User changed the Product Data of a product"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: defaults.php:496
|
3537 |
msgid ""
|
3538 |
+
"Changed the Product Data of the product %ProductTitle%. View the product: "
|
3539 |
+
"%EditorLinkProduct%."
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: defaults.php:497
|
3543 |
+
msgid "User changed the date of a product"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: defaults.php:497
|
3547 |
msgid ""
|
3548 |
+
"Changed the date of the product %ProductTitle% from %OldDate% to %NewDate%. "
|
3549 |
+
"View the product: %EditorLinkProduct%."
|
3550 |
msgstr ""
|
3551 |
|
3552 |
+
#: defaults.php:498
|
3553 |
+
msgid "User changed the visibility of a product"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
+
#: defaults.php:498
|
3557 |
msgid ""
|
3558 |
+
"Changed the visibility of the product %ProductTitle% from %OldVisibility% to "
|
3559 |
+
"%NewVisibility%. View the product: %EditorLinkProduct%."
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: defaults.php:499
|
3563 |
+
msgid "User modified the published product"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
+
#: defaults.php:499
|
3567 |
msgid ""
|
3568 |
+
"Modified the published product %ProductTitle%. Product URL is %ProductUrl%. "
|
3569 |
+
"View the product: %EditorLinkProduct%."
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: defaults.php:500
|
3573 |
+
msgid "User modified the draft product"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: defaults.php:500
|
3577 |
msgid ""
|
3578 |
+
"Modified the draft product %ProductTitle%. View the product: "
|
3579 |
+
"%EditorLinkProduct%."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: defaults.php:501
|
3583 |
+
msgid "User moved a product to trash"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: defaults.php:501
|
3587 |
msgid ""
|
3588 |
+
"Moved the product %ProductTitle% to trash. Product URL was %ProductUrl%."
|
|
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: defaults.php:502
|
3592 |
+
msgid "User permanently deleted a product"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: defaults.php:502
|
3596 |
+
msgid "Permanently deleted the product %ProductTitle%."
|
|
|
|
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: defaults.php:503
|
3600 |
+
msgid "User restored a product from the trash"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: defaults.php:503
|
3604 |
msgid ""
|
3605 |
+
"Product %ProductTitle% has been restored from trash. View product: "
|
3606 |
+
"%EditorLinkProduct%."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: defaults.php:504
|
3610 |
+
msgid "User changed status of a product"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: defaults.php:504
|
3614 |
msgid ""
|
3615 |
+
"Changed the status of the product %ProductTitle% from %OldStatus% to "
|
3616 |
+
"%NewStatus%. View the product: %EditorLinkProduct%."
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: defaults.php:505
|
3620 |
+
msgid "User changed type of a price"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: defaults.php:505
|
3624 |
msgid ""
|
3625 |
+
"Changed the %PriceType% of the product %ProductTitle% from %OldPrice% to "
|
3626 |
+
"%NewPrice%. View the product: %EditorLinkProduct%."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: defaults.php:506
|
3630 |
+
msgid "User changed the SKU of a product"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: defaults.php:506
|
3634 |
msgid ""
|
3635 |
+
"Changed the SKU of the product %ProductTitle% from %OldSku% to %NewSku%. "
|
3636 |
+
"View the product: %EditorLinkProduct%."
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: defaults.php:507
|
3640 |
+
msgid "User changed the stock status of a product"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: defaults.php:507
|
3644 |
msgid ""
|
3645 |
+
"Changed the stock status of the product %ProductTitle% from %OldStatus% to "
|
3646 |
+
"%NewStatus%. View the product: %EditorLinkProduct%."
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: defaults.php:508
|
3650 |
+
msgid "User changed the stock quantity"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: defaults.php:508
|
3654 |
+
msgid ""
|
3655 |
+
"Changed the stock quantity of the product %ProductTitle% from %OldValue% to "
|
3656 |
+
"%NewValue%. View the product: %EditorLinkProduct%"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: defaults.php:509
|
3660 |
+
msgid "User set a product type"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: defaults.php:509
|
3664 |
msgid ""
|
3665 |
+
"Set the product %ProductTitle% as %Type%. View the product: "
|
3666 |
+
"%EditorLinkProduct%."
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: defaults.php:510
|
3670 |
+
msgid "User changed the weight of a product"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: defaults.php:510
|
3674 |
msgid ""
|
3675 |
+
"Changed the weight of the product %ProductTitle% from %OldWeight% to "
|
3676 |
+
"%NewWeight%. View the product: %EditorLinkProduct%."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: defaults.php:511
|
3680 |
+
msgid "User changed the dimensions of a product"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: defaults.php:511
|
3684 |
msgid ""
|
3685 |
+
"Changed the %DimensionType% dimensions of the product %ProductTitle% from "
|
3686 |
+
"%OldDimension% to %NewDimension%. View the product: %EditorLinkProduct%."
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: defaults.php:512
|
3690 |
+
msgid "User added the Downloadable File to a product"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: defaults.php:512
|
3694 |
msgid ""
|
3695 |
+
"Added the Downloadable File %FileName% with File URL %FileUrl% to the "
|
3696 |
+
"product %ProductTitle%. View the product: %EditorLinkProduct%."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: defaults.php:513
|
3700 |
+
msgid "User Removed the Downloadable File from a product"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
+
#: defaults.php:513
|
3704 |
msgid ""
|
3705 |
+
"Removed the Downloadable File %FileName% with File URL %FileUrl% from the "
|
3706 |
+
"product %ProductTitle%. View the product: %EditorLinkProduct%."
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: defaults.php:514
|
3710 |
+
msgid "User changed the name of a Downloadable File in a product"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: defaults.php:514
|
3714 |
msgid ""
|
3715 |
+
"Changed the name of a Downloadable File from %OldName% to %NewName% in "
|
3716 |
+
"product %ProductTitle%. View the product: %EditorLinkProduct%."
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: defaults.php:515
|
3720 |
+
msgid "User changed the URL of the Downloadable File in a product"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: defaults.php:515
|
3724 |
msgid ""
|
3725 |
+
"Changed the URL of the Downloadable File %FileName% from %OldUrl% to %NewUrl"
|
3726 |
+
"% in product %ProductTitle%. View the product: %EditorLinkProduct%."
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: defaults.php:516
|
3730 |
+
msgid "User changed the Weight Unit"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
+
#: defaults.php:516
|
3734 |
+
msgid "Changed the Weight Unit from %OldUnit% to %NewUnit% in WooCommerce."
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: defaults.php:517
|
3738 |
+
msgid "User changed the Dimensions Unit"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: defaults.php:517
|
3742 |
+
msgid "Changed the Dimensions Unit from %OldUnit% to %NewUnit% in WooCommerce."
|
|
|
3743 |
msgstr ""
|
3744 |
|
3745 |
+
#: defaults.php:518
|
3746 |
+
msgid "User changed the Base Location"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
+
#: defaults.php:518
|
3750 |
msgid ""
|
3751 |
+
"Changed the Base Location from %OldLocation% to %NewLocation% in WooCommerce."
|
|
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: defaults.php:519
|
3755 |
+
msgid "User Enabled/Disabled taxes"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: defaults.php:519
|
3759 |
+
msgid "%Status% taxes in the WooCommerce store."
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: defaults.php:520
|
3763 |
+
msgid "User changed the currency"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: defaults.php:520
|
3767 |
msgid ""
|
3768 |
+
"Changed the currency from %OldCurrency% to %NewCurrency% in WooCommerce."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: defaults.php:521
|
3772 |
+
msgid "User Enabled/Disabled the use of coupons during checkout"
|
3773 |
+
msgstr ""
|
3774 |
+
|
3775 |
+
#: defaults.php:521
|
3776 |
+
msgid "%Status% the use of coupons during checkout in WooCommerce."
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: defaults.php:522
|
3780 |
+
msgid "User Enabled/Disabled guest checkout"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: defaults.php:522
|
3784 |
+
msgid "%Status% guest checkout in WooCommerce."
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: defaults.php:523
|
3788 |
+
msgid "User Enabled/Disabled cash on delivery"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: defaults.php:523
|
3792 |
+
msgid "%Status% the option Enable cash on delivery in WooCommerce."
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: defaults.php:525
|
3796 |
+
msgid "Yoast SEO"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
+
#: defaults.php:526
|
3800 |
msgid "User changed title of a SEO post"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: defaults.php:526
|
3804 |
msgid ""
|
3805 |
"Changed the SEO title of the %PostStatus% %PostType%%ReportText%.%ChangeText"
|
3806 |
"% %EditorLinkPost%."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: defaults.php:527
|
3810 |
msgid "User changed the meta description of a SEO post"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: defaults.php:527
|
3814 |
msgid ""
|
3815 |
"Changed the Meta description of the %PostStatus% %PostType% titled %PostTitle"
|
3816 |
"%%ReportText%.%ChangeText% %EditorLinkPost%."
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: defaults.php:528
|
3820 |
msgid ""
|
3821 |
"User changed setting to allow search engines to show post in search results "
|
3822 |
"of a SEO post"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: defaults.php:528
|
3826 |
msgid ""
|
3827 |
"Changed the setting to allow search engines to show post in search results "
|
3828 |
"from %OldStatus% to %NewStatus% in the %PostStatus% %PostType% titled "
|
3829 |
"%PostTitle%. %EditorLinkPost%."
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: defaults.php:529
|
3833 |
msgid ""
|
3834 |
"User Enabled/Disabled the option for search engine to follow links of a SEO "
|
3835 |
"post"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: defaults.php:529
|
3839 |
msgid ""
|
3840 |
"%NewStatus% the option for search engine to follow links in the %PostType% "
|
3841 |
"titled %PostTitle%. %EditorLinkPost%."
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: defaults.php:530
|
3845 |
msgid "User set the meta robots advanced setting of a SEO post"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: defaults.php:530
|
3849 |
msgid ""
|
3850 |
"Set the Meta Robots Advanced setting to %NewStatus% in the %PostStatus% "
|
3851 |
"%PostType% titled %PostTitle%. %EditorLinkPost%."
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: defaults.php:531
|
3855 |
msgid "User changed the canonical URL of a SEO post"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: defaults.php:531
|
3859 |
msgid ""
|
3860 |
"Changed the Canonical URL of the %PostStatus% %PostType% titled %PostTitle%"
|
3861 |
"%ReportText%.%ChangeText% %EditorLinkPost%."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: defaults.php:532
|
3865 |
msgid "User changed the focus keyword of a SEO post"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: defaults.php:532
|
3869 |
msgid ""
|
3870 |
"Changed the focus keyword of the %PostStatus% %PostType% titled %PostTitle% "
|
3871 |
"from %old_keywords% to %new_keywords%. %EditorLinkPost%."
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: defaults.php:533
|
3875 |
msgid "User Enabled/Disabled the option Cornerston Content of a SEO post"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: defaults.php:533
|
3879 |
msgid ""
|
3880 |
"%Status% the option Cornerston Content on the %PostStatus% %PostType% titled "
|
3881 |
"%PostTitle%. %EditorLinkPost%."
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: defaults.php:534
|
3885 |
msgid "User changed the Title Separator setting"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: defaults.php:534
|
3889 |
msgid ""
|
3890 |
"Changed the Title Separator from %old% to %new% in the Yoast SEO plugin "
|
3891 |
"settings."
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: defaults.php:535
|
3895 |
msgid "User changed the Homepage Title setting"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: defaults.php:535
|
3899 |
msgid ""
|
3900 |
"Changed the Homepage Title%ReportText% in the Yoast SEO plugin settings."
|
3901 |
"%ChangeText%"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: defaults.php:536
|
3905 |
msgid "User changed the Homepage Meta description setting"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: defaults.php:536
|
3909 |
msgid ""
|
3910 |
"Changed the Homepage Meta description%ReportText% in the Yoast SEO plugin "
|
3911 |
"settings.%ChangeText%"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: defaults.php:537
|
3915 |
msgid "User changed the Company or Person setting"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: defaults.php:537
|
3919 |
msgid ""
|
3920 |
"Changed the Company or Person setting from %old% to %new% in the YOAST SEO "
|
3921 |
"plugin settings."
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: defaults.php:538
|
3925 |
msgid ""
|
3926 |
"User Enabled/Disabled the option Show Posts/Pages in Search Results in the "
|
3927 |
"Yoast SEO plugin settings"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: defaults.php:538
|
3931 |
msgid ""
|
3932 |
"%Status% the option Show %SEOPostType% in Search Results in the Yoast SEO "
|
3933 |
"plugin settings."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: defaults.php:539
|
3937 |
msgid ""
|
3938 |
"User changed the Posts/Pages title template in the Yoast SEO plugin settings"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: defaults.php:539
|
3942 |
msgid ""
|
3943 |
"Changed the %SEOPostType% title template from %old% to %new% in the Yoast "
|
3944 |
"SEO plugin settings."
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: defaults.php:540
|
3948 |
msgid "User Enabled/Disabled SEO analysis in the Yoast SEO plugin settings"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: defaults.php:540
|
3952 |
msgid "%Status% SEO analysis in the Yoast SEO plugin settings."
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: defaults.php:541
|
3956 |
msgid ""
|
3957 |
"User Enabled/Disabled readability analysis in the Yoast SEO plugin settings"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: defaults.php:541
|
3961 |
msgid "%Status% Readability analysis in the Yoast SEO plugin settings."
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: defaults.php:542
|
3965 |
msgid ""
|
3966 |
"User Enabled/Disabled cornerstone content in the Yoast SEO plugin settings"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: defaults.php:542
|
3970 |
msgid "%Status% Cornerstone content in the Yoast SEO plugin settings."
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: defaults.php:543
|
3974 |
msgid ""
|
3975 |
"User Enabled/Disabled the text link counter in the Yoast SEO plugin settings"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: defaults.php:543
|
3979 |
msgid "%Status% the Text link counter in the Yoast SEO plugin settings."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: defaults.php:544
|
3983 |
msgid "User Enabled/Disabled XML sitemaps in the Yoast SEO plugin settings"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: defaults.php:544
|
3987 |
msgid "%Status% XML Sitemaps in the Yoast SEO plugin settings."
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: defaults.php:545
|
3991 |
msgid "User Enabled/Disabled ryte integration in the Yoast SEO plugin settings"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: defaults.php:545
|
3995 |
msgid "%Status% Ryte Integration in the Yoast SEO plugin settings."
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: defaults.php:546
|
3999 |
msgid ""
|
4000 |
"User Enabled/Disabled the admin bar menu in the Yoast SEO plugin settings"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: defaults.php:546
|
4004 |
msgid "%Status% the Admin bar menu in the Yoast SEO plugin settings."
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: defaults.php:547
|
4008 |
msgid ""
|
4009 |
"User changed the Posts/Pages meta description template in the Yoast SEO "
|
4010 |
"plugin settings"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: defaults.php:547
|
4014 |
msgid ""
|
4015 |
"Changed the %SEOPostType% meta description template from %old% to %new% in "
|
4016 |
"the Yoast SEO plugin settings."
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: defaults.php:548
|
4020 |
msgid ""
|
4021 |
"User set the option Date in Snippet Preview for Posts/Pages in the Yoast SEO "
|
4022 |
"plugin settings"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: defaults.php:548
|
4026 |
msgid ""
|
4027 |
"%Status% the option Date in Snippet Preview for %SEOPostType% in the Yoast "
|
4028 |
"SEO plugin settings."
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: defaults.php:549
|
4032 |
msgid ""
|
4033 |
"User set the option Yoast SEO Meta Box for Posts/Pages in the Yoast SEO "
|
4034 |
"plugin settings"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: defaults.php:549
|
4038 |
msgid ""
|
4039 |
"%Status% the option Yoast SEO Meta Box for %SEOPostType% in the Yoast SEO "
|
4040 |
"plugin settings."
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: defaults.php:550
|
4044 |
msgid ""
|
4045 |
"User Enabled/Disabled the advanced settings for authors in the Yoast SEO "
|
4046 |
"plugin settings"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: defaults.php:550
|
4050 |
msgid "%Status% the advanced settings for authors in the Yoast SEO settings."
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: wp-security-audit-log.php:304 wp-security-audit-log.php:330
|
|
|
4054 |
#, php-format
|
4055 |
msgid "Hey %1$s"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: wp-security-audit-log.php:305
|
4059 |
msgid ""
|
4060 |
"Never miss an important update! Opt-in to our security and feature updates "
|
4061 |
"notifications, and non-sensitive diagnostic tracking with freemius.com."
|
4062 |
msgstr ""
|
4063 |
|
4064 |
+
#: wp-security-audit-log.php:306 wp-security-audit-log.php:332
|
4065 |
msgid "Note: "
|
4066 |
msgstr ""
|
4067 |
|
4068 |
+
#: wp-security-audit-log.php:307 wp-security-audit-log.php:333
|
4069 |
msgid "NO AUDIT LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: wp-security-audit-log.php:331
|
|
|
4073 |
#, php-format
|
4074 |
msgid ""
|
4075 |
"Please help us improve %2$s! If you opt-in, some non-sensitive data about "
|
4077 |
"use. If you skip this, that's okay! %2$s will still work just fine."
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: wp-security-audit-log.php:382
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4081 |
msgid ""
|
4082 |
"Error: You do not have sufficient permissions to disable this custom field."
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: wp-security-audit-log.php:418
|
4086 |
msgid "Error: You do not have sufficient permissions to disable this alert."
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: wp-security-audit-log.php:530
|
4090 |
#, php-format
|
4091 |
msgid ""
|
4092 |
"You are using a version of PHP that is older than %s, which is no longer "
|
4093 |
"supported."
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: wp-security-audit-log.php:531
|
4097 |
msgid ""
|
4098 |
"Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com"
|
4099 |
"\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you "
|
4100 |
"are using."
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#. Plugin Name of the plugin/theme
|
4104 |
+
msgid "WP Security Audit Log"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4105 |
msgstr ""
|
4106 |
|
4107 |
#. Plugin URI of the plugin/theme
|
4108 |
+
#. Author URI of the plugin/theme
|
4109 |
msgid "http://www.wpsecurityauditlog.com/"
|
4110 |
msgstr ""
|
4111 |
|
4122 |
#. Author of the plugin/theme
|
4123 |
msgid "WP White Security"
|
4124 |
msgstr ""
|
|
|
|
|
|
|
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License URI: http://www.gnu.org/licenses/gpl.html
|
|
6 |
Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
|
7 |
Requires at least: 3.6
|
8 |
Tested up to: 5.0.3
|
9 |
-
Stable tag: 3.3.1
|
10 |
Requires PHP: 5.4.43
|
11 |
|
12 |
An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
|
@@ -195,80 +195,17 @@ Please refer to our [Support & Documentation pages](https://www.wpsecurityauditl
|
|
195 |
|
196 |
== Changelog ==
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
* **New Events for WooCommerce Orders**
|
203 |
-
* ID 9035: New order placed in WooCommerce.
|
204 |
-
* ID 9036: Changed the status of a WooCommerce order.
|
205 |
-
* ID 9037: Moved a WooCommerce order to trash.
|
206 |
-
* ID 9038: Restored a WooCommerce order from the trash.
|
207 |
-
* ID 9039: Permanently deleted an order.
|
208 |
-
* ID 9040: Changed the orders details.
|
209 |
-
* ID 9041: Refunded a WooCommerce order
|
210 |
-
|
211 |
-
* **New Events for WooCommerce Product Admin & Attributes Changes**
|
212 |
-
* ID 9042: Changed the catalog visibility of a product.
|
213 |
-
* ID 9043: Changed the Featured product setting of a product.
|
214 |
-
* ID 9044: Changed the allow backorders setting of a product.
|
215 |
-
* ID 9045: Changed the the Upsells of a product.
|
216 |
-
* ID 9046: Changed the Cross-sells of a product.
|
217 |
-
* ID 9047: Added a new attribute of a product.
|
218 |
-
* ID 9048: Modified the value of a product attribute.
|
219 |
-
* ID 9049: Renamed a product attribute.
|
220 |
-
* ID 9050: Deleted a product attribute.
|
221 |
-
* ID 9051: Changed the visibility of a product attribute.
|
222 |
-
|
223 |
-
* **New Events for WooCommerce Categories**
|
224 |
-
* ID 9052: Deleted a product category.
|
225 |
-
* ID 9053: Changed the slug of a product category.
|
226 |
-
* ID 9054: Changed the parent of a product category.
|
227 |
-
* ID 9055: Changed display type of a product category.
|
228 |
-
* ID 9056: Changed the name of a product category.
|
229 |
-
|
230 |
-
* **New Events for WooCommerce Payment Gateways**
|
231 |
-
* ID 9074: Enabled a payment gateway.
|
232 |
-
* ID 9075: Disabled a payment gateway.
|
233 |
-
* ID 9076: Modified a payment gateway.
|
234 |
-
|
235 |
-
* **New Events for WooCommerce Coupons:**
|
236 |
-
* ID 9063: Published a new coupon.
|
237 |
-
* ID 9064: Changed the discount type of a coupon.
|
238 |
-
* ID 9065: Changed the coupon amount.
|
239 |
-
* ID 9066: Changed the coupon expire date.
|
240 |
-
* ID 9067: Changed the Usage Restriction settings of a coupon.
|
241 |
-
* ID 9068: Changed the Usage Limits settings of a coupon.
|
242 |
-
* ID 9069: Changed the description of a coupon.
|
243 |
-
* ID 9070: Changed the status of a coupon.
|
244 |
-
* ID 9071: Renamed the WooCommerce coupon.
|
245 |
-
|
246 |
-
* **New Events for WooCommerce Attributes:**
|
247 |
-
* ID 9057: User created a new attribute.
|
248 |
-
* ID 9058: User deleted an attribute.
|
249 |
-
* ID 9059: User changed the slug of an attribute.
|
250 |
-
* ID 9060: User changed the name of an attribute.
|
251 |
-
* ID 9061: User changed the default sort order of an attribute.
|
252 |
-
* ID 9062: User enabled/disabled the option Enable Archives of an attribute.
|
253 |
-
|
254 |
* **New Features**
|
255 |
-
*
|
256 |
-
* New setting to control refreshing of the live notifications in the admin bar.
|
257 |
-
* Three new [hooks in the activity log plugin](https://www.wpsecurityauditlog.com/support-documentation/list-hooks/) that allow for event data manipulation.
|
258 |
|
259 |
* **Plugin Improvements**
|
260 |
-
*
|
261 |
-
*
|
262 |
-
*
|
263 |
-
|
264 |
-
* Event 9011 (modified draft WooCommerce product) made obsolete with event 9010.
|
265 |
-
* Event 9020 changed to report the different product types (simple, grouped, external, variable, downloadable, virtual)
|
266 |
-
* Updated Freemius SDK
|
267 |
-
* Better handling of incorrect database privileges when installing plugin.
|
268 |
-
* Excluded the default WordPress cache directory from the default [WordPress File Integrity Scans](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/)
|
269 |
-
|
270 |
* **Bug Fixes**
|
271 |
-
*
|
272 |
-
* Plugin logged event 5019 by mistake when the front end editor of WP Bakery was used.
|
273 |
-
* When files bigger than the file size limit were scanned for the first time the plugin wrongly reported them as modified.
|
274 |
-
* In some cases where WordPress was not upgraded to 5.0 the plugin was not recognizing content changes.
|
6 |
Tags: wordpress security plugin, wordpress security audit log, audit log, activity logs, event log wordpress, wordpress user tracking, wordpress activity log, wordpress audit, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, dashboard, notification, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
|
7 |
Requires at least: 3.6
|
8 |
Tested up to: 5.0.3
|
9 |
+
Stable tag: 3.3.1.1
|
10 |
Requires PHP: 5.4.43
|
11 |
|
12 |
An easy to use & comprehensive WordPress activity log plugin to log all changes on WordPress sites & multisite networks.
|
195 |
|
196 |
== Changelog ==
|
197 |
|
198 |
+
Release notes: [Infinite scroll for activity logs & performance enhancement](https://www.wpsecurityauditlog.com/releases/infinite-scroll-performance-improvements-update-3-3-1-1)
|
199 |
+
|
200 |
+
= 3.3.1.1 (2019-02-06) =
|
201 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
* **New Features**
|
203 |
+
* New [infinite scroll view in audit log viewer](https://www.wpsecurityauditlog.com/support-documentation/change-audit-log-viewer-pagination-infinite-scroll/) making the browsing of the activity logs much faster.
|
|
|
|
|
204 |
|
205 |
* **Plugin Improvements**
|
206 |
+
* Improved the search filters - now they are much faster.
|
207 |
+
* Improved user session handling to better handle >1,000 sessions.
|
208 |
+
* Replaced PHP severity with event log severity in the list of Events.
|
209 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
210 |
* **Bug Fixes**
|
211 |
+
* Scan Now button for the [WordPress file integrity scanner](https://www.wpsecurityauditlog.com/support-documentation/wordpress-files-changes-warning-activity-logs/) is grayed out when auto scanning is disabled.
|
|
|
|
|
|
sdk/freemius/assets/scss/admin/plugin-upgrade-notice.scss
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
.plugins p.upgrade-notice
|
2 |
-
{
|
3 |
-
border: 0;
|
4 |
-
background-color: #d54e21;
|
5 |
-
padding: 10px;
|
6 |
-
color: #f9f9f9;
|
7 |
-
margin-top: 10px;
|
8 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sdk/wsal-freemius.php
CHANGED
@@ -51,6 +51,7 @@ if ( file_exists( dirname( __FILE__ ) . '/freemius/start.php' ) ) {
|
|
51 |
'slug' => 'wp-security-audit-log',
|
52 |
'type' => 'plugin',
|
53 |
'public_key' => 'pk_d602740d3088272d75906045af9fa',
|
|
|
54 |
'is_premium' => $is_premium,
|
55 |
'has_addons' => false,
|
56 |
'has_paid_plans' => true,
|
51 |
'slug' => 'wp-security-audit-log',
|
52 |
'type' => 'plugin',
|
53 |
'public_key' => 'pk_d602740d3088272d75906045af9fa',
|
54 |
+
'premium_suffix' => '(Premium)',
|
55 |
'is_premium' => $is_premium,
|
56 |
'has_addons' => false,
|
57 |
'has_paid_plans' => true,
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://www.wpsecurityauditlog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
-
* Version: 3.3.1
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: http://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
@@ -15,7 +15,7 @@
|
|
15 |
|
16 |
/*
|
17 |
WP Security Audit Log
|
18 |
-
Copyright(c)
|
19 |
|
20 |
This program is free software; you can redistribute it and/or modify
|
21 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -54,7 +54,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
-
public $version = '3.3.1';
|
58 |
|
59 |
// Plugin constants.
|
60 |
const PLG_CLS_PRFX = 'WSAL_';
|
4 |
* Plugin URI: http://www.wpsecurityauditlog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Security Audit Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Audit Log Viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
+
* Version: 3.3.1.1
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: http://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
15 |
|
16 |
/*
|
17 |
WP Security Audit Log
|
18 |
+
Copyright(c) 2019 Robert Abela (email : robert@wpwhitesecurity.com)
|
19 |
|
20 |
This program is free software; you can redistribute it and/or modify
|
21 |
it under the terms of the GNU General Public License, version 2, as
|
54 |
*
|
55 |
* @var string
|
56 |
*/
|
57 |
+
public $version = '3.3.1.1';
|
58 |
|
59 |
// Plugin constants.
|
60 |
const PLG_CLS_PRFX = 'WSAL_';
|