WP Security Audit Log - Version 4.3.6

Version Description

(2022-02-15) = Release notes: the improvements in this update are required to prepare for WP Activity Log 4.4. Therefore it is important to install this update before you update to version 4.4.

  • Improvements
    • Removed opcache purging.
    • Improved error handling during plugin upgrade.

Refer to the complete plugin changelog for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.

Download this release

Release Info

Developer WPWhiteSecurity
Plugin Icon 128x128 WP Security Audit Log
Version 4.3.6
Comparing to
See all releases

Code changes from version 4.3.4 to 4.3.6

classes/AbstractView.php CHANGED
@@ -104,7 +104,7 @@ abstract class WSAL_AbstractView {
104
  $user_id = get_current_user_id();
105
  $meta_key = 'wsal-notice-' . $name;
106
  $old_value = get_user_meta( $user_id, $meta_key, true );
107
- if ( in_array( $name, self::$AllowedNoticeNames ) || false === $old_value ) {
108
  update_user_meta( $user_id, $meta_key, '1' );
109
  }
110
  }
104
  $user_id = get_current_user_id();
105
  $meta_key = 'wsal-notice-' . $name;
106
  $old_value = get_user_meta( $user_id, $meta_key, true );
107
+ if ( in_array( $name, self::$AllowedNoticeNames ) || false === $old_value || empty( $old_value ) ) {
108
  update_user_meta( $user_id, $meta_key, '1' );
109
  }
110
  }
classes/Utilities/OpCacheUtils.php DELETED
@@ -1,109 +0,0 @@
1
- <?php
2
- /**
3
- * Utility class for opcache clearing.
4
- *
5
- * @package wsal
6
- * @subpacage utilities
7
- * @since 4.3.4
8
- */
9
-
10
- // Exit if accessed directly.
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- exit;
13
- }
14
-
15
- /**
16
- * Utility class for opcache clearing.
17
- *
18
- * @package wsal
19
- * @subpacage utilities
20
- * @since 4.3.4
21
- */
22
- class WSAL_Utilities_OpCacheUtils {
23
-
24
- /**
25
- * Clears PHP code caches before a plugin installation or update. This is to avoid various plugin files to be out of
26
- * sync.
27
- *
28
- * @param bool|WP_Error $response Response.
29
- * @param array $hook_extra Extra arguments passed to hooked filters.
30
- *
31
- * @since 4.3.4
32
- */
33
- public static function clear_caches( $response, array $hook_extra ) {
34
- if ( ( array_key_exists( 'type', $hook_extra ) && 'plugin' === $hook_extra['type'] )
35
- || array_key_exists( 'plugin', $hook_extra ) ) {
36
- if ( self::is_iis() ) {
37
- self::clear_iis_wincache();
38
- } else {
39
- return self::clear_php_opcache();
40
- }
41
- }
42
-
43
- return $response;
44
- }
45
-
46
- /**
47
- * Checks if the web server is running IIS software.
48
- *
49
- * @return bool
50
- */
51
- public static function is_iis() {
52
- $software = strtolower( $_SERVER["SERVER_SOFTWARE"] );
53
- if ( false !== strpos( $software, "microsoft-iis" ) ) {
54
- return true;
55
- } else {
56
- return false;
57
- }
58
- }
59
-
60
- /**
61
- * Clears the IIS cache.
62
- *
63
- * @return bool|void
64
- */
65
- public static function clear_iis_wincache() {
66
- if ( ! function_exists( 'wincache_ucache_get' ) ) {
67
- return;
68
- }
69
- if ( ! wincache_ucache_clear() ) {
70
- return false;
71
- } else {
72
- return true;
73
- }
74
- }
75
-
76
- /**
77
- * Clears the PHP opcache.
78
- *
79
- * @return bool|void
80
- */
81
- public static function clear_php_opcache() {
82
- if ( ! extension_loaded( 'Zend OPcache' ) ) {
83
- return;
84
- }
85
- $opcache_status = opcache_get_status();
86
- if ( false === $opcache_status["opcache_enabled"] ) {
87
- // extension loaded but OPcache not enabled
88
- return;
89
- }
90
- if ( ! opcache_reset() ) {
91
- return false;
92
- } else {
93
- /**
94
- * opcache_reset() is performed, now try to clear the
95
- * file cache.
96
- * Please note: http://stackoverflow.com/a/23587079/1297898
97
- * "Opcache does not evict invalid items from memory - they
98
- * stay there until the pool is full at which point the
99
- * memory is completely cleared"
100
- */
101
- foreach ( $opcache_status['scripts'] as $key => $data ) {
102
- $dirs[ dirname( $key ) ][ basename( $key ) ] = $data;
103
- opcache_invalidate( $data['full_path'], true );
104
- }
105
-
106
- return true;
107
- }
108
- }
109
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/ViewManager.php CHANGED
@@ -131,6 +131,7 @@ class WSAL_ViewManager {
131
  }
132
  }
133
 
 
134
  /**
135
  * Display notice if user is using older version of WFCM
136
  */
131
  }
132
  }
133
 
134
+
135
  /**
136
  * Display notice if user is using older version of WFCM
137
  */
languages/wp-security-audit-log.pot CHANGED
@@ -1,8379 +1,5113 @@
1
- # Copyright (C) 2022 wp-security-audit-log
2
  # This file is distributed under the same license as the wp-security-audit-log package.
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: wp-security-audit-log\n"
 
 
 
 
 
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
9
- "Language-Team: WP White Security <info@wpwhitesecurity.com>\n"
10
- "Last-Translator: WP White Security <info@wpwhitesecurity.com>\n"
11
- "Report-Msgid-Bugs-To: https://www.wpwhitesecurity.com\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
 
 
14
  "X-Poedit-SearchPath-0: .\n"
15
  "X-Poedit-SearchPathExcluded-0: *.js\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
18
 
19
- #: defaults.php:177
20
- msgid "Critical severity events."
21
  msgstr ""
22
 
23
- #: defaults.php:179
24
- msgid "High severity events."
25
  msgstr ""
26
 
27
- #: defaults.php:181
28
- msgid "Medium severity events."
29
  msgstr ""
30
 
31
- #: defaults.php:183
32
- msgid "Low severity events."
33
  msgstr ""
34
 
35
- #: defaults.php:185
36
- msgid "Informational events."
 
37
  msgstr ""
38
 
39
- #: defaults.php:190
40
- msgid "Users Logins & Sessions Events"
 
41
  msgstr ""
42
 
43
- #: defaults.php:191, extensions/email-notifications/classes/Notifications.php:1339
44
- msgid "User Activity"
45
  msgstr ""
46
 
47
- #: defaults.php:195
48
- msgid "User logged in"
 
49
  msgstr ""
50
 
51
- #: defaults.php:196
52
- msgid "User logged in."
53
  msgstr ""
54
 
55
- #: defaults.php:205
56
- msgid "User logged out"
57
  msgstr ""
58
 
59
- #: defaults.php:206
60
- msgid "User logged out."
 
 
61
  msgstr ""
62
 
63
- #: defaults.php:215
64
- msgid "Login failed"
 
 
65
  msgstr ""
66
 
67
- #: defaults.php:216, defaults.php:226
68
- msgid "%Attempts% failed login(s)."
 
69
  msgstr ""
70
 
71
- #: defaults.php:225
72
- msgid "Login failed / non existing user"
73
  msgstr ""
74
 
75
- #: defaults.php:235
76
- msgid "Login blocked"
77
  msgstr ""
78
 
79
- #: defaults.php:236
80
- msgid "Login blocked because other session(s) already exist for this user."
81
  msgstr ""
82
 
83
- #: defaults.php:238, extensions/email-notifications/classes/Common.php:1115
84
- msgid "IP address"
85
  msgstr ""
86
 
87
- #: defaults.php:247
88
- msgid "User logged in with existing session(s)"
89
  msgstr ""
90
 
91
- #: defaults.php:248
92
- msgid "User logged in however there are other session(s) already for this user."
93
  msgstr ""
94
 
95
- #: defaults.php:250, extensions/reports/classes/HtmlReportGenerator.php:130
96
- msgid "IP address(es)"
97
  msgstr ""
98
 
99
- #: defaults.php:259
100
- msgid "User logged out all other sessions with the same username"
101
  msgstr ""
102
 
103
- #: defaults.php:260
104
- msgid "Logged out all other sessions with the same user."
105
  msgstr ""
106
 
107
- #: defaults.php:269
108
- msgid "User session destroyed and logged out"
109
  msgstr ""
110
 
111
- #: defaults.php:270
112
- msgid "Terminated the session of the user %TargetUserName%."
113
  msgstr ""
114
 
115
- #: defaults.php:272, defaults.php:285, defaults.php:297, defaults.php:1718, defaults.php:1746, defaults.php:1760, defaults.php:1774, defaults.php:1789, defaults.php:1804, defaults.php:1818, defaults.php:1832, defaults.php:1848, defaults.php:1863, defaults.php:1877, defaults.php:1891, defaults.php:1906, defaults.php:1922, defaults.php:1936, defaults.php:1951, defaults.php:1965, defaults.php:1979, defaults.php:1996, defaults.php:2010, defaults.php:2024, defaults.php:2397, extensions/reports/classes/CsvReportGenerator.php:82, extensions/reports/classes/CsvReportGenerator.php:66, extensions/reports/classes/HtmlReportGenerator.php:246, extensions/reports/classes/HtmlReportGenerator.php:222
116
- msgid "Role"
117
  msgstr ""
118
 
119
- #: defaults.php:273, defaults.php:298
120
- msgid "Session ID"
121
  msgstr ""
122
 
123
- #: defaults.php:282
124
- msgid "Switched to another user"
125
  msgstr ""
126
 
127
- #: defaults.php:283
128
- msgid "Switched the session to being logged in as %TargetUserName%."
129
  msgstr ""
130
 
131
- #: defaults.php:294
132
- msgid "The plugin terminated an idle session for a user"
133
  msgstr ""
134
 
135
- #: defaults.php:295
136
- msgid "The plugin terminated an idle session for the user %username%."
137
  msgstr ""
138
 
139
- #: defaults.php:307
140
- msgid "User uploaded file to the Uploads directory"
141
  msgstr ""
142
 
143
- #: defaults.php:308
144
- msgid "Uploaded a file called %FileName%."
145
  msgstr ""
146
 
147
- #: defaults.php:310, defaults.php:322
148
- msgid "Directory"
149
  msgstr ""
150
 
151
- #: defaults.php:319
152
- msgid "User deleted file from Uploads directory"
153
  msgstr ""
154
 
155
- #: defaults.php:320
156
- msgid "Deleted the file %FileName%."
157
  msgstr ""
158
 
159
- #: defaults.php:331
160
- msgid "User requested a password reset"
161
  msgstr ""
162
 
163
- #: defaults.php:332
164
- msgid "User requested a password reset. This does not mean that the password was changed."
165
  msgstr ""
166
 
167
- #: defaults.php:341
168
- msgid "Content & Comments"
169
  msgstr ""
170
 
171
- #: defaults.php:342
172
- msgid "Content"
173
  msgstr ""
174
 
175
- #: defaults.php:346
176
- msgid "User created a new post and saved it as draft"
177
  msgstr ""
178
 
179
- #: defaults.php:347
180
- msgid "Created the post %PostTitle%."
181
  msgstr ""
182
 
183
- #: defaults.php:349, defaults.php:363, defaults.php:377, defaults.php:391, defaults.php:405, defaults.php:419, defaults.php:433, defaults.php:449, defaults.php:464, defaults.php:478, defaults.php:493, defaults.php:508, defaults.php:523, defaults.php:538, defaults.php:552, defaults.php:566, defaults.php:580, defaults.php:594, defaults.php:608, defaults.php:622, defaults.php:636, defaults.php:650, defaults.php:664, defaults.php:678, defaults.php:694, defaults.php:808, defaults.php:887, defaults.php:902, defaults.php:918, defaults.php:933, defaults.php:950, defaults.php:965, defaults.php:986, defaults.php:1001, defaults.php:1016, defaults.php:1031, defaults.php:1046, defaults.php:1061, defaults.php:1076, defaults.php:1091, defaults.php:1106, defaults.php:1121, defaults.php:1140, defaults.php:2135, defaults.php:2150, extensions/search/classes/FilterManager.php:503, extensions/search/classes/Filters/PostIDFilter.php:29, extensions/search/classes/Filters/PostIDFilter.php:57
184
- msgid "Post ID"
185
  msgstr ""
186
 
187
- #: defaults.php:350, defaults.php:364, defaults.php:378, defaults.php:392, defaults.php:406, defaults.php:420, defaults.php:434, defaults.php:450, defaults.php:465, defaults.php:479, defaults.php:494, defaults.php:509, defaults.php:524, defaults.php:539, defaults.php:553, defaults.php:567, defaults.php:581, defaults.php:595, defaults.php:609, defaults.php:623, defaults.php:637, defaults.php:651, defaults.php:665, defaults.php:679, defaults.php:695, defaults.php:809, defaults.php:888, defaults.php:903, defaults.php:919, defaults.php:934, defaults.php:951, defaults.php:966, defaults.php:987, defaults.php:1002, defaults.php:1017, defaults.php:1032, defaults.php:1047, defaults.php:1062, defaults.php:1077, defaults.php:1092, defaults.php:1107, defaults.php:1122, defaults.php:1141, defaults.php:2136, defaults.php:2151
188
- msgid "Post type"
189
  msgstr ""
190
 
191
- #: defaults.php:351, defaults.php:365, defaults.php:379, defaults.php:393, defaults.php:407, defaults.php:421, defaults.php:435, defaults.php:451, defaults.php:480, defaults.php:495, defaults.php:510, defaults.php:525, defaults.php:540, defaults.php:554, defaults.php:568, defaults.php:582, defaults.php:596, defaults.php:610, defaults.php:624, defaults.php:638, defaults.php:652, defaults.php:666, defaults.php:680, defaults.php:696, defaults.php:810, defaults.php:889, defaults.php:904, defaults.php:920, defaults.php:935, defaults.php:952, defaults.php:967, defaults.php:988, defaults.php:1003, defaults.php:1018, defaults.php:1033, defaults.php:1048, defaults.php:1063, defaults.php:1078, defaults.php:1093, defaults.php:1108, defaults.php:1123, defaults.php:1142, defaults.php:2137, defaults.php:2152
192
- msgid "Post status"
193
  msgstr ""
194
 
195
- #: defaults.php:360
196
- msgid "User published a post"
197
  msgstr ""
198
 
199
- #: defaults.php:361
200
- msgid "Published the post %PostTitle%."
201
  msgstr ""
202
 
203
- #: defaults.php:374
204
- msgid "User modified a post"
205
  msgstr ""
206
 
207
- #: defaults.php:375
208
- msgid "Modified the post %PostTitle%."
209
  msgstr ""
210
 
211
- #: defaults.php:388
212
- msgid "User permanently deleted a post from the trash"
213
  msgstr ""
214
 
215
- #: defaults.php:389
216
- msgid "Permanently deleted the post %PostTitle%."
217
  msgstr ""
218
 
219
- #: defaults.php:402
220
- msgid "User moved a post to the trash"
221
  msgstr ""
222
 
223
- #: defaults.php:403
224
- msgid "Moved the post %PostTitle% to trash."
225
  msgstr ""
226
 
227
- #: defaults.php:416
228
- msgid "User restored a post from trash"
229
  msgstr ""
230
 
231
- #: defaults.php:417
232
- msgid "Restored the post %PostTitle% from trash."
233
  msgstr ""
234
 
235
- #: defaults.php:430
236
- msgid "User changed post URL"
237
  msgstr ""
238
 
239
- #: defaults.php:431
240
- msgid "Changed the URL of the post %PostTitle%."
241
  msgstr ""
242
 
243
- #: defaults.php:436, defaults.php:2943, defaults.php:2955
244
- msgid "Previous URL"
245
  msgstr ""
246
 
247
- #: defaults.php:437
248
- msgid "New URL"
249
  msgstr ""
250
 
251
- #: defaults.php:446
252
- msgid "User changed post author"
253
  msgstr ""
254
 
255
- #: defaults.php:447
256
- msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
257
  msgstr ""
258
 
259
- #: defaults.php:452
260
- msgid "Previous author"
261
  msgstr ""
262
 
263
- #: defaults.php:461
264
- msgid "User changed post status"
265
  msgstr ""
266
 
267
- #: defaults.php:462
268
- msgid "Changed the status of the post %PostTitle% to %NewStatus%."
269
  msgstr ""
270
 
271
- #: defaults.php:466
272
- msgid "Previous status"
 
273
  msgstr ""
274
 
275
- #: defaults.php:475
276
- msgid "User changed the visibility of a post"
 
277
  msgstr ""
278
 
279
- #: defaults.php:476
280
- msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
281
  msgstr ""
282
 
283
- #: defaults.php:481
284
- msgid "Previous visibility status"
285
  msgstr ""
286
 
287
- #: defaults.php:490
288
- msgid "User changed the date of a post"
289
  msgstr ""
290
 
291
- #: defaults.php:491
292
- msgid "Changed the date of the post %PostTitle% to %NewDate%."
293
  msgstr ""
294
 
295
- #: defaults.php:496
296
- msgid "Previous date"
297
  msgstr ""
298
 
299
- #: defaults.php:505
300
- msgid "User changed the parent of a page"
301
  msgstr ""
302
 
303
- #: defaults.php:506
304
- msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
305
  msgstr ""
306
 
307
- #: defaults.php:511, defaults.php:848
308
- msgid "Previous parent"
309
  msgstr ""
310
 
311
- #: defaults.php:520
312
- msgid "User changed the template of a page"
313
  msgstr ""
314
 
315
- #: defaults.php:521
316
- msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
 
317
  msgstr ""
318
 
319
- #: defaults.php:526
320
- msgid "Previous template"
 
 
321
  msgstr ""
322
 
323
- #: defaults.php:535
324
- msgid "User set a post as sticky"
 
 
325
  msgstr ""
326
 
327
- #: defaults.php:536
328
- msgid "Set the post %PostTitle% as sticky."
329
  msgstr ""
330
 
331
- #: defaults.php:549
332
- msgid "User removed post from sticky"
 
333
  msgstr ""
334
 
335
- #: defaults.php:550
336
- msgid "Removed the post %PostTitle% from sticky."
 
337
  msgstr ""
338
 
339
- #: defaults.php:563
340
- msgid "User modified the content of a post"
341
  msgstr ""
342
 
343
- #: defaults.php:564
344
- msgid "Modified the content of the post %PostTitle%."
345
  msgstr ""
346
 
347
- #: defaults.php:577
348
- msgid "User submitted a post for review"
349
  msgstr ""
350
 
351
- #: defaults.php:578
352
- msgid "Submitted the post %PostTitle% for review."
 
353
  msgstr ""
354
 
355
- #: defaults.php:591
356
- msgid "User scheduled a post"
 
357
  msgstr ""
358
 
359
- #: defaults.php:592
360
- msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
361
  msgstr ""
362
 
363
- #: defaults.php:605
364
- msgid "User changed title of a post"
 
365
  msgstr ""
366
 
367
- #: defaults.php:606
368
- msgid "Changed the title of the post %OldTitle% to %NewTitle%."
369
  msgstr ""
370
 
371
- #: defaults.php:619
372
- msgid "User opened a post in the editor"
373
  msgstr ""
374
 
375
- #: defaults.php:620
376
- msgid "Opened the post %PostTitle% in the editor."
377
  msgstr ""
378
 
379
- #: defaults.php:633
380
- msgid "User viewed a post"
381
  msgstr ""
382
 
383
- #: defaults.php:634
384
- msgid "Viewed the post %PostTitle%."
385
  msgstr ""
386
 
387
- #: defaults.php:647
388
- msgid "User enabled/disabled comments in a post"
389
  msgstr ""
390
 
391
- #: defaults.php:648
392
- msgid "Comments in the post %PostTitle%."
393
  msgstr ""
394
 
395
- #: defaults.php:661
396
- msgid "User enabled/disabled trackbacks and pingbacks in a post"
397
  msgstr ""
398
 
399
- #: defaults.php:662
400
- msgid "Pingbacks and Trackbacks in the post %PostTitle%."
401
  msgstr ""
402
 
403
- #: defaults.php:675
404
- msgid "User updated the excerpt in a post"
405
  msgstr ""
406
 
407
- #: defaults.php:676
408
- msgid "The excerpt of the post %PostTitle%."
409
  msgstr ""
410
 
411
- #: defaults.php:681
412
- msgid "Previous excerpt entry"
 
413
  msgstr ""
414
 
415
- #: defaults.php:682
416
- msgid "New excerpt entry"
 
417
  msgstr ""
418
 
419
- #: defaults.php:691
420
- msgid "User updated the featured image in a post"
421
  msgstr ""
422
 
423
- #: defaults.php:692
424
- msgid "The featured image of the post %PostTitle%."
425
  msgstr ""
426
 
427
- #: defaults.php:697
428
- msgid "Previous image"
429
  msgstr ""
430
 
431
- #: defaults.php:698
432
- msgid "New image"
 
433
  msgstr ""
434
 
435
- #: defaults.php:706
436
- msgid "Tags"
 
437
  msgstr ""
438
 
439
- #: defaults.php:710
440
- msgid "User added post tag"
441
  msgstr ""
442
 
443
- #: defaults.php:711
444
- msgid "Added tag(s) to the post %PostTitle%."
 
445
  msgstr ""
446
 
447
- #: defaults.php:713, defaults.php:728, classes/AuditLogGridView.php:271, classes/AuditLogGridView.php:295, classes/AuditLogListView.php:269, classes/AuditLogListView.php:297
448
- msgid "ID"
449
  msgstr ""
450
 
451
- #: defaults.php:714, defaults.php:729, extensions/external-db/classes/Connections.php:97, extensions/external-db/classes/Mirroring.php:92, extensions/reports/classes/CsvReportGenerator.php:78, extensions/reports/classes/HtmlReportGenerator.php:242
452
- msgid "Type"
453
  msgstr ""
454
 
455
- #: defaults.php:715, defaults.php:730
456
- msgid "Status"
457
  msgstr ""
458
 
459
- #: defaults.php:716
460
- msgid "Added tag(s)"
461
  msgstr ""
462
 
463
- #: defaults.php:725
464
- msgid "User removed post tag"
465
  msgstr ""
466
 
467
- #: defaults.php:726
468
- msgid "Removed tag(s) from the post %PostTitle%."
 
469
  msgstr ""
470
 
471
- #: defaults.php:731
472
- msgid "Removed tag(s)"
473
  msgstr ""
474
 
475
- #: defaults.php:740
476
- msgid "User created new tag"
477
  msgstr ""
478
 
479
- #: defaults.php:741
480
- msgid "Created the tag %TagName%."
481
  msgstr ""
482
 
483
- #: defaults.php:743, defaults.php:755, defaults.php:767, defaults.php:791, defaults.php:823, defaults.php:835, defaults.php:847, defaults.php:860
484
- msgid "Slug"
485
  msgstr ""
486
 
487
- #: defaults.php:752
488
- msgid "User deleted tag"
489
  msgstr ""
490
 
491
- #: defaults.php:753
492
- msgid "Deleted the tag %TagName%."
493
  msgstr ""
494
 
495
- #: defaults.php:764
496
- msgid "Renamed the tag %old_name% to %new_name%."
497
  msgstr ""
498
 
499
- #: defaults.php:776
500
- msgid "User changed tag slug"
501
  msgstr ""
502
 
503
- #: defaults.php:777
504
- msgid "Changed the slug of the tag %tag% to %new_slug%."
505
  msgstr ""
506
 
507
- #: defaults.php:779, defaults.php:872
508
- msgid "Previous slug"
509
  msgstr ""
510
 
511
- #: defaults.php:788
512
- msgid "User changed tag description"
513
  msgstr ""
514
 
515
- #: defaults.php:789
516
- msgid "Changed the description of the tag %tag%."
517
  msgstr ""
518
 
519
- #: defaults.php:792
520
- msgid "Previous description"
521
  msgstr ""
522
 
523
- #: defaults.php:793
524
- msgid "New description"
525
  msgstr ""
526
 
527
- #: defaults.php:801
528
- msgid "Categories"
529
  msgstr ""
530
 
531
- #: defaults.php:805
532
- msgid "User changed post category"
533
  msgstr ""
534
 
535
- #: defaults.php:806
536
- msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
537
  msgstr ""
538
 
539
- #: defaults.php:811
540
- msgid "Previous category(ies)"
541
  msgstr ""
542
 
543
- #: defaults.php:820
544
- msgid "User created new category"
545
  msgstr ""
546
 
547
- #: defaults.php:821
548
- msgid "Created the category %CategoryName%."
549
  msgstr ""
550
 
551
- #: defaults.php:832
552
- msgid "User deleted category"
553
  msgstr ""
554
 
555
- #: defaults.php:833
556
- msgid "Deleted the category %CategoryName%."
557
  msgstr ""
558
 
559
- #: defaults.php:844
560
- msgid "Changed the parent of a category"
561
  msgstr ""
562
 
563
- #: defaults.php:845
564
- msgid "Changed the parent of the category %CategoryName% to %NewParent%."
565
  msgstr ""
566
 
567
- #: defaults.php:857
568
- msgid "User changed category name"
569
  msgstr ""
570
 
571
- #: defaults.php:858
572
- msgid "Renamed the category %old_name% to %new_name%."
573
  msgstr ""
574
 
575
- #: defaults.php:869
576
- msgid "User changed category slug"
577
  msgstr ""
578
 
579
- #: defaults.php:870
580
- msgid "Changed the slug of the category %CategoryName% to %new_slug%."
 
581
  msgstr ""
582
 
583
- #: defaults.php:880
584
- msgid "Custom Fields"
585
  msgstr ""
586
 
587
- #: defaults.php:884
588
- msgid "User created a custom field for a post"
 
589
  msgstr ""
590
 
591
- #: defaults.php:885
592
- msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
593
  msgstr ""
594
 
595
- #: defaults.php:890, defaults.php:1851
596
- msgid "Custom field value"
 
597
  msgstr ""
598
 
599
- #: defaults.php:899
600
- msgid "User updated a custom field value for a post"
 
601
  msgstr ""
602
 
603
- #: defaults.php:900
604
- msgid "Modified the value of the custom field %MetaKey% in the post %PostTitle%."
 
 
605
  msgstr ""
606
 
607
- #: defaults.php:905
608
- msgid "Previous custom field value"
 
609
  msgstr ""
610
 
611
- #: defaults.php:906
612
- msgid "New custom field value"
613
  msgstr ""
614
 
615
- #: defaults.php:915
616
- msgid "User deleted a custom field from a post"
617
- msgstr ""
618
-
619
- #: defaults.php:916
620
- msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
621
- msgstr ""
622
-
623
- #: defaults.php:929
624
- msgid "User updated a custom field name for a post"
625
- msgstr ""
626
-
627
- #: defaults.php:930
628
- msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
629
- msgstr ""
630
-
631
- #: defaults.php:932, classes/AlertManager.php:1073
632
- msgid "Post"
633
- msgstr ""
634
-
635
- #: defaults.php:943
636
- msgid "Custom Fields (ACF)"
637
- msgstr ""
638
-
639
- #: defaults.php:947
640
- msgid "User added relationship to a custom field value for a post"
641
- msgstr ""
642
-
643
- #: defaults.php:948
644
- msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
645
- msgstr ""
646
-
647
- #: defaults.php:953
648
- msgid "New relationships"
649
- msgstr ""
650
-
651
- #: defaults.php:962
652
- msgid "User removed relationship from a custom field value for a post"
653
- msgstr ""
654
-
655
- #: defaults.php:963
656
- msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
657
- msgstr ""
658
-
659
- #: defaults.php:968
660
- msgid "Removed relationships"
661
- msgstr ""
662
-
663
- #: defaults.php:979
664
- msgid "Comments"
665
- msgstr ""
666
-
667
- #: defaults.php:983
668
- msgid "User approved a comment"
669
- msgstr ""
670
-
671
- #: defaults.php:984
672
- msgid "Approved the comment posted by %Author% on the post %PostTitle%."
673
- msgstr ""
674
-
675
- #: defaults.php:989, defaults.php:1004, defaults.php:1019, defaults.php:1034, defaults.php:1049, defaults.php:1064, defaults.php:1079, defaults.php:1094, defaults.php:1109, defaults.php:1124, defaults.php:1143
676
- msgid "Comment ID"
677
- msgstr ""
678
-
679
- #: defaults.php:998
680
- msgid "User unapproved a comment"
681
- msgstr ""
682
-
683
- #: defaults.php:999
684
- msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
685
- msgstr ""
686
-
687
- #: defaults.php:1013
688
- msgid "User replied to a comment"
689
- msgstr ""
690
-
691
- #: defaults.php:1014
692
- msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
693
- msgstr ""
694
-
695
- #: defaults.php:1028
696
- msgid "User edited a comment"
697
- msgstr ""
698
-
699
- #: defaults.php:1029
700
- msgid "Edited the comment posted by %Author% on the post %PostTitle%."
701
- msgstr ""
702
-
703
- #: defaults.php:1043
704
- msgid "User marked a comment as Spam"
705
- msgstr ""
706
-
707
- #: defaults.php:1044
708
- msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
709
- msgstr ""
710
-
711
- #: defaults.php:1058
712
- msgid "User marked a comment as Not Spam"
713
- msgstr ""
714
-
715
- #: defaults.php:1059
716
- msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
717
- msgstr ""
718
-
719
- #: defaults.php:1073
720
- msgid "User moved a comment to trash"
721
- msgstr ""
722
-
723
- #: defaults.php:1074
724
- msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
725
- msgstr ""
726
-
727
- #: defaults.php:1088
728
- msgid "User restored a comment from the trash"
729
- msgstr ""
730
-
731
- #: defaults.php:1089
732
- msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
733
- msgstr ""
734
-
735
- #: defaults.php:1103
736
- msgid "User permanently deleted a comment"
737
- msgstr ""
738
-
739
- #: defaults.php:1104
740
- msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
741
- msgstr ""
742
-
743
- #: defaults.php:1118
744
- msgid "User posted a comment"
745
- msgstr ""
746
-
747
- #: defaults.php:1119, defaults.php:1138
748
- msgid "Posted a comment on the post %PostTitle%."
749
- msgstr ""
750
-
751
- #: defaults.php:1137
752
- msgid "Visitor posted a comment"
753
- msgstr ""
754
-
755
- #: defaults.php:1154
756
- msgid "Widgets"
757
- msgstr ""
758
-
759
- #: defaults.php:1158
760
- msgid "User added a new widget"
761
- msgstr ""
762
-
763
- #: defaults.php:1159
764
- msgid "Added a new %WidgetName% widget in %Sidebar%."
765
- msgstr ""
766
-
767
- #: defaults.php:1168
768
- msgid "User modified a widget"
769
- msgstr ""
770
-
771
- #: defaults.php:1169
772
- msgid "Modified the %WidgetName% widget in %Sidebar%."
773
- msgstr ""
774
-
775
- #: defaults.php:1178
776
- msgid "User deleted widget"
777
- msgstr ""
778
-
779
- #: defaults.php:1179
780
- msgid "Deleted the %WidgetName% widget from %Sidebar%."
781
- msgstr ""
782
-
783
- #: defaults.php:1188
784
- msgid "User moved widget"
785
- msgstr ""
786
-
787
- #: defaults.php:1189
788
- msgid "Moved the %WidgetName% widget."
789
- msgstr ""
790
-
791
- #: defaults.php:1191, extensions/reports/inc/wsal-reporting-view.inc.php:1640
792
- msgid "From"
793
- msgstr ""
794
-
795
- #: defaults.php:1192, extensions/reports/inc/wsal-reporting-view.inc.php:1649
796
- msgid "To"
797
- msgstr ""
798
-
799
- #: defaults.php:1201
800
- msgid "User changed widget position"
801
- msgstr ""
802
-
803
- #: defaults.php:1202
804
- msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
805
- msgstr ""
806
-
807
- #: defaults.php:1213
808
- msgid "Menus"
809
- msgstr ""
810
-
811
- #: defaults.php:1217
812
- msgid "User created new menu"
813
- msgstr ""
814
-
815
- #: defaults.php:1218
816
- msgid "New menu called %MenuName%."
817
- msgstr ""
818
-
819
- #: defaults.php:1227
820
- msgid "User added content to a menu"
821
- msgstr ""
822
-
823
- #: defaults.php:1228
824
- msgid "Added the item %ContentName% to the menu %MenuName%."
825
- msgstr ""
826
-
827
- #: defaults.php:1230, defaults.php:1242, defaults.php:1274
828
- msgid "Item type"
829
- msgstr ""
830
-
831
- #: defaults.php:1239
832
- msgid "User removed content from a menu"
833
- msgstr ""
834
-
835
- #: defaults.php:1240
836
- msgid "Removed the item %ContentName% from the menu %MenuName%."
837
- msgstr ""
838
-
839
- #: defaults.php:1251
840
- msgid "User deleted menu"
841
- msgstr ""
842
-
843
- #: defaults.php:1252
844
- msgid "Deleted the menu %MenuName%."
845
- msgstr ""
846
-
847
- #: defaults.php:1261
848
- msgid "User changed menu setting"
849
- msgstr ""
850
-
851
- #: defaults.php:1262
852
- msgid "The setting %MenuSetting% in the menu %MenuName%."
853
- msgstr ""
854
-
855
- #: defaults.php:1271
856
- msgid "User modified content in a menu"
857
- msgstr ""
858
-
859
- #: defaults.php:1272
860
- msgid "Modified the item %ContentName% in the menu %MenuName%."
861
- msgstr ""
862
-
863
- #: defaults.php:1283
864
- msgid "User changed name of a menu"
865
- msgstr ""
866
-
867
- #: defaults.php:1284
868
- msgid "Renamed the menu %OldMenuName% to %MenuName%."
869
- msgstr ""
870
-
871
- #: defaults.php:1293
872
- msgid "User changed order of the objects in a menu"
873
- msgstr ""
874
-
875
- #: defaults.php:1294
876
- msgid "Changed the order of the items in the menu %MenuName%."
877
- msgstr ""
878
-
879
- #: defaults.php:1303
880
- msgid "User moved objects as a sub-item"
881
- msgstr ""
882
-
883
- #: defaults.php:1304
884
- msgid "Moved items as sub-items in the menu %MenuName%."
885
- msgstr ""
886
-
887
- #: defaults.php:1306
888
- msgid "Moved item"
889
- msgstr ""
890
-
891
- #: defaults.php:1307
892
- msgid "as a sub-item of"
893
- msgstr ""
894
-
895
- #: defaults.php:1323, extensions/reports/classes/HtmlReportGenerator.php:541
896
- msgid "Custom Post Types"
897
- msgstr ""
898
-
899
- #: defaults.php:1327
900
- msgid "User modified a draft blog post"
901
- msgstr ""
902
-
903
- #: defaults.php:1328
904
- msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
905
- msgstr ""
906
-
907
- #: defaults.php:1333
908
- msgid "User created a new post with custom post type and saved it as draft"
909
- msgstr ""
910
-
911
- #: defaults.php:1334
912
- msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
913
- msgstr ""
914
-
915
- #: defaults.php:1339
916
- msgid "User published a post with custom post type"
917
- msgstr ""
918
-
919
- #: defaults.php:1340
920
- msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
921
- msgstr ""
922
-
923
- #: defaults.php:1345
924
- msgid "User modified a post with custom post type"
925
- msgstr ""
926
-
927
- #: defaults.php:1346
928
- msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
929
- msgstr ""
930
-
931
- #: defaults.php:1351
932
- msgid "User modified a draft post with custom post type"
933
- msgstr ""
934
-
935
- #: defaults.php:1352
936
- msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
937
- msgstr ""
938
-
939
- #: defaults.php:1357
940
- msgid "User permanently deleted post with custom post type"
941
- msgstr ""
942
-
943
- #: defaults.php:1358
944
- msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
945
- msgstr ""
946
-
947
- #: defaults.php:1363
948
- msgid "User moved post with custom post type to trash"
949
- msgstr ""
950
-
951
- #: defaults.php:1364
952
- msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
953
- msgstr ""
954
-
955
- #: defaults.php:1369
956
- msgid "User restored post with custom post type from trash"
957
- msgstr ""
958
-
959
- #: defaults.php:1370
960
- msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
961
- msgstr ""
962
-
963
- #: defaults.php:1375
964
- msgid "User changed the category of a post with custom post type"
965
- msgstr ""
966
-
967
- #: defaults.php:1376
968
- msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
969
- msgstr ""
970
-
971
- #: defaults.php:1381
972
- msgid "User changed the URL of a post with custom post type"
973
- msgstr ""
974
-
975
- #: defaults.php:1382
976
- msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
977
- msgstr ""
978
-
979
- #: defaults.php:1387
980
- msgid "User changed the author or post with custom post type"
981
- msgstr ""
982
-
983
- #: defaults.php:1388
984
- msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
985
- msgstr ""
986
-
987
- #: defaults.php:1393
988
- msgid "User changed the status of post with custom post type"
989
- msgstr ""
990
-
991
- #: defaults.php:1394
992
- msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
993
- msgstr ""
994
-
995
- #: defaults.php:1399
996
- msgid "User changed the visibility of a post with custom post type"
997
- msgstr ""
998
-
999
- #: defaults.php:1400
1000
- msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
1001
- msgstr ""
1002
-
1003
- #: defaults.php:1405
1004
- msgid "User changed the date of post with custom post type"
1005
- msgstr ""
1006
-
1007
- #: defaults.php:1406
1008
- msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
1009
- msgstr ""
1010
-
1011
- #: defaults.php:1411
1012
- msgid "User created a custom field for a custom post type"
1013
- msgstr ""
1014
-
1015
- #: defaults.php:1412
1016
- msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
1017
- msgstr ""
1018
-
1019
- #: defaults.php:1417
1020
- msgid "User updated a custom field for a custom post type"
1021
- msgstr ""
1022
-
1023
- #: defaults.php:1418
1024
- msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1025
- msgstr ""
1026
-
1027
- #: defaults.php:1423
1028
- msgid "User deleted a custom field from a custom post type"
1029
- msgstr ""
1030
-
1031
- #: defaults.php:1424
1032
- msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1033
- msgstr ""
1034
-
1035
- #: defaults.php:1429
1036
- msgid "User updated a custom field name for a custom post type"
1037
- msgstr ""
1038
-
1039
- #: defaults.php:1430
1040
- msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
1041
- msgstr ""
1042
-
1043
- #: defaults.php:1435
1044
- msgid "User modified content for a published custom post type"
1045
- msgstr ""
1046
-
1047
- #: defaults.php:1436
1048
- msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
1049
- msgstr ""
1050
-
1051
- #: defaults.php:1441
1052
- msgid "User modified content for a draft post"
1053
- msgstr ""
1054
-
1055
- #: defaults.php:1442
1056
- msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
1057
- msgstr ""
1058
-
1059
- #: defaults.php:1447
1060
- msgid "User modified content for a draft custom post type"
1061
- msgstr ""
1062
-
1063
- #: defaults.php:1448
1064
- msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
1065
- msgstr ""
1066
-
1067
- #: defaults.php:1453
1068
- msgid "User modified content of a post"
1069
- msgstr ""
1070
-
1071
- #: defaults.php:1454
1072
- msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
1073
- msgstr ""
1074
-
1075
- #: defaults.php:1459
1076
- msgid "User scheduled a custom post type"
1077
- msgstr ""
1078
-
1079
- #: defaults.php:1460
1080
- msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
1081
- msgstr ""
1082
-
1083
- #: defaults.php:1465
1084
- msgid "User changed title of a custom post type"
1085
- msgstr ""
1086
-
1087
- #: defaults.php:1466
1088
- msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
1089
- msgstr ""
1090
-
1091
- #: defaults.php:1471
1092
- msgid "User opened a custom post type in the editor"
1093
- msgstr ""
1094
-
1095
- #: defaults.php:1472
1096
- msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
1097
- msgstr ""
1098
-
1099
- #: defaults.php:1477
1100
- msgid "User viewed a custom post type"
1101
- msgstr ""
1102
-
1103
- #: defaults.php:1478
1104
- msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
1105
- msgstr ""
1106
-
1107
- #: defaults.php:1483
1108
- msgid "A plugin created a custom post"
1109
- msgstr ""
1110
-
1111
- #: defaults.php:1484
1112
- msgid "A plugin automatically created the following custom post: %PostTitle%."
1113
- msgstr ""
1114
-
1115
- #: defaults.php:1489
1116
- msgid "A plugin deleted a custom post"
1117
- msgstr ""
1118
-
1119
- #: defaults.php:1490
1120
- msgid "A plugin automatically deleted the following custom post: %PostTitle%."
1121
- msgstr ""
1122
-
1123
- #: defaults.php:1495
1124
- msgid "A plugin modified a custom post"
1125
- msgstr ""
1126
-
1127
- #: defaults.php:1496
1128
- msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
1129
- msgstr ""
1130
-
1131
- #: defaults.php:1508, extensions/reports/classes/HtmlReportGenerator.php:536
1132
- msgid "Pages"
1133
- msgstr ""
1134
-
1135
- #: defaults.php:1512
1136
- msgid "User created a new WordPress page and saved it as draft"
1137
- msgstr ""
1138
-
1139
- #: defaults.php:1513
1140
- msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
1141
- msgstr ""
1142
-
1143
- #: defaults.php:1518
1144
- msgid "User published a WordPress page"
1145
- msgstr ""
1146
-
1147
- #: defaults.php:1519
1148
- msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1149
- msgstr ""
1150
-
1151
- #: defaults.php:1524
1152
- msgid "User modified a published WordPress page"
1153
- msgstr ""
1154
-
1155
- #: defaults.php:1525
1156
- msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
1157
- msgstr ""
1158
-
1159
- #: defaults.php:1530
1160
- msgid "User modified a draft WordPress page"
1161
- msgstr ""
1162
-
1163
- #: defaults.php:1531
1164
- msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
1165
- msgstr ""
1166
-
1167
- #: defaults.php:1536
1168
- msgid "User permanently deleted a page from the trash"
1169
- msgstr ""
1170
-
1171
- #: defaults.php:1537
1172
- msgid "Permanently deleted the page %PostTitle%."
1173
- msgstr ""
1174
-
1175
- #: defaults.php:1542
1176
- msgid "User moved WordPress page to the trash"
1177
- msgstr ""
1178
-
1179
- #: defaults.php:1543
1180
- msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
1181
- msgstr ""
1182
-
1183
- #: defaults.php:1548
1184
- msgid "User restored a WordPress page from trash"
1185
- msgstr ""
1186
-
1187
- #: defaults.php:1549
1188
- msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
1189
- msgstr ""
1190
-
1191
- #: defaults.php:1554
1192
- msgid "User changed page URL"
1193
- msgstr ""
1194
-
1195
- #: defaults.php:1555
1196
- msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
1197
- msgstr ""
1198
-
1199
- #: defaults.php:1560
1200
- msgid "User changed page author"
1201
- msgstr ""
1202
-
1203
- #: defaults.php:1561
1204
- msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
1205
- msgstr ""
1206
-
1207
- #: defaults.php:1566
1208
- msgid "User changed page status"
1209
- msgstr ""
1210
-
1211
- #: defaults.php:1567
1212
- msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
1213
- msgstr ""
1214
-
1215
- #: defaults.php:1572
1216
- msgid "User changed the visibility of a page post"
1217
- msgstr ""
1218
-
1219
- #: defaults.php:1573
1220
- msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
1221
- msgstr ""
1222
-
1223
- #: defaults.php:1578
1224
- msgid "User changed the date of a page post"
1225
- msgstr ""
1226
-
1227
- #: defaults.php:1579
1228
- msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
1229
- msgstr ""
1230
-
1231
- #: defaults.php:1584
1232
- msgid "User created a custom field for a page"
1233
- msgstr ""
1234
-
1235
- #: defaults.php:1585
1236
- msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1237
- msgstr ""
1238
-
1239
- #: defaults.php:1590
1240
- msgid "User updated a custom field value for a page"
1241
- msgstr ""
1242
-
1243
- #: defaults.php:1591
1244
- msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1245
- msgstr ""
1246
-
1247
- #: defaults.php:1596
1248
- msgid "User deleted a custom field from a page"
1249
- msgstr ""
1250
-
1251
- #: defaults.php:1597
1252
- msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
1253
- msgstr ""
1254
-
1255
- #: defaults.php:1602
1256
- msgid "User updated a custom field name for a page"
1257
- msgstr ""
1258
-
1259
- #: defaults.php:1603
1260
- msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
1261
- msgstr ""
1262
-
1263
- #: defaults.php:1608
1264
- msgid "User modified content for a published page"
1265
- msgstr ""
1266
-
1267
- #: defaults.php:1609
1268
- msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
1269
- msgstr ""
1270
-
1271
- #: defaults.php:1614
1272
- msgid "User modified content for a draft page"
1273
- msgstr ""
1274
-
1275
- #: defaults.php:1615
1276
- msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
1277
- msgstr ""
1278
-
1279
- #: defaults.php:1620
1280
- msgid "User scheduled a page"
1281
- msgstr ""
1282
-
1283
- #: defaults.php:1621
1284
- msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
1285
- msgstr ""
1286
-
1287
- #: defaults.php:1626
1288
- msgid "User changed title of a page"
1289
- msgstr ""
1290
-
1291
- #: defaults.php:1627
1292
- msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
1293
- msgstr ""
1294
-
1295
- #: defaults.php:1632
1296
- msgid "User opened a page in the editor"
1297
- msgstr ""
1298
-
1299
- #: defaults.php:1633
1300
- msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
1301
- msgstr ""
1302
-
1303
- #: defaults.php:1638
1304
- msgid "User viewed a page"
1305
- msgstr ""
1306
-
1307
- #: defaults.php:1639
1308
- msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
1309
- msgstr ""
1310
-
1311
- #: defaults.php:1644
1312
- msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
1313
- msgstr ""
1314
-
1315
- #: defaults.php:1645
1316
- msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1317
- msgstr ""
1318
-
1319
- #: defaults.php:1650
1320
- msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
1321
- msgstr ""
1322
-
1323
- #: defaults.php:1651
1324
- msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
1325
- msgstr ""
1326
-
1327
- #: defaults.php:1656
1328
- msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
1329
- msgstr ""
1330
-
1331
- #: defaults.php:1657
1332
- msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1333
- msgstr ""
1334
-
1335
- #: defaults.php:1662
1336
- msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
1337
- msgstr ""
1338
-
1339
- #: defaults.php:1663
1340
- msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
1341
- msgstr ""
1342
-
1343
- #: defaults.php:1668
1344
- msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
1345
- msgstr ""
1346
-
1347
- #: defaults.php:1669
1348
- msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1349
- msgstr ""
1350
-
1351
- #: defaults.php:1674
1352
- msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
1353
- msgstr ""
1354
-
1355
- #: defaults.php:1675
1356
- msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
1357
- msgstr ""
1358
-
1359
- #: defaults.php:1680
1360
- msgid "A plugin created a page"
1361
- msgstr ""
1362
-
1363
- #: defaults.php:1681
1364
- msgid "A plugin automatically created the following page: %PostTitle%."
1365
- msgstr ""
1366
-
1367
- #: defaults.php:1686
1368
- msgid "A plugin deleted a page"
1369
- msgstr ""
1370
-
1371
- #: defaults.php:1687
1372
- msgid "A plugin automatically deleted the following page: %PostTitle%."
1373
- msgstr ""
1374
-
1375
- #: defaults.php:1692
1376
- msgid "A plugin modified a page"
1377
- msgstr ""
1378
-
1379
- #: defaults.php:1693
1380
- msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
1381
- msgstr ""
1382
-
1383
- #: defaults.php:1698
1384
- msgid "User Accounts"
1385
- msgstr ""
1386
-
1387
- #: defaults.php:1699
1388
- msgid "User Profiles"
1389
- msgstr ""
1390
-
1391
- #: defaults.php:1703
1392
- msgid "New user was created on WordPress"
1393
- msgstr ""
1394
-
1395
- #: defaults.php:1704
1396
- msgid "A new user %NewUserData->Username% is created via registration."
1397
- msgstr ""
1398
-
1399
- #: defaults.php:1706, classes/AlertManager.php:1069, classes/AuditLogListView.php:272, classes/AuditLogListView.php:306, classes/WidgetManager.php:76, classes/Views/Settings.php:1086, extensions/reports/classes/CsvReportGenerator.php:81, extensions/reports/classes/CsvReportGenerator.php:65, extensions/reports/classes/HtmlReportGenerator.php:245, extensions/reports/classes/HtmlReportGenerator.php:221, extensions/search/classes/Filters/UserNameFilter.php:46, extensions/user-sessions/classes/View/Sessions.php:154
1400
- msgid "User"
1401
- msgstr ""
1402
-
1403
- #: defaults.php:1715
1404
- msgid "User created another WordPress user"
1405
- msgstr ""
1406
-
1407
- #: defaults.php:1716
1408
- msgid "Created the new user: %NewUserData->Username%."
1409
- msgstr ""
1410
-
1411
- #: defaults.php:1719, defaults.php:1733, defaults.php:1747, defaults.php:1761, defaults.php:1775, defaults.php:1790, defaults.php:1805, defaults.php:1819, defaults.php:1833, defaults.php:1849, defaults.php:1878, defaults.php:1892, defaults.php:1907, defaults.php:1923, defaults.php:1937, defaults.php:1952, defaults.php:1966, defaults.php:1980, defaults.php:1997, defaults.php:2011, defaults.php:2025, defaults.php:2039, defaults.php:2052, defaults.php:2398
1412
- msgid "First name"
1413
- msgstr ""
1414
-
1415
- #: defaults.php:1720, defaults.php:1734, defaults.php:1748, defaults.php:1762, defaults.php:1776, defaults.php:1791, defaults.php:1806, defaults.php:1820, defaults.php:1834, defaults.php:1850, defaults.php:1865, defaults.php:1893, defaults.php:1908, defaults.php:1924, defaults.php:1938, defaults.php:1953, defaults.php:1967, defaults.php:1981, defaults.php:1998, defaults.php:2012, defaults.php:2026, defaults.php:2040, defaults.php:2053, defaults.php:2399
1416
- msgid "Last name"
1417
- msgstr ""
1418
-
1419
- #: defaults.php:1729
1420
- msgid "The role of a user was changed by another WordPress user"
1421
- msgstr ""
1422
-
1423
- #: defaults.php:1730
1424
- msgid "Changed the role of user %TargetUsername% to %NewRole%."
1425
- msgstr ""
1426
-
1427
- #: defaults.php:1732, defaults.php:2789
1428
- msgid "Previous role"
1429
- msgstr ""
1430
-
1431
- #: defaults.php:1743
1432
- msgid "User has changed his or her password"
1433
- msgstr ""
1434
-
1435
- #: defaults.php:1744
1436
- msgid "Changed the password."
1437
- msgstr ""
1438
-
1439
- #: defaults.php:1757
1440
- msgid "User changed another user's password"
1441
- msgstr ""
1442
-
1443
- #: defaults.php:1758
1444
- msgid "Changed the password of the user %TargetUserData->Username%."
1445
- msgstr ""
1446
-
1447
- #: defaults.php:1771
1448
- msgid "User changed his or her email address"
1449
- msgstr ""
1450
-
1451
- #: defaults.php:1772
1452
- msgid "Changed the email address to %NewEmail%."
1453
- msgstr ""
1454
-
1455
- #: defaults.php:1777, defaults.php:1792
1456
- msgid "Previous email address"
1457
- msgstr ""
1458
-
1459
- #: defaults.php:1786
1460
- msgid "User changed another user's email address"
1461
- msgstr ""
1462
-
1463
- #: defaults.php:1787
1464
- msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
1465
- msgstr ""
1466
-
1467
- #: defaults.php:1801
1468
- msgid "User was deleted by another user"
1469
- msgstr ""
1470
-
1471
- #: defaults.php:1802
1472
- msgid "Deleted the user %TargetUserData->Username%."
1473
- msgstr ""
1474
-
1475
- #: defaults.php:1815
1476
- msgid "User opened the profile page of another user"
1477
- msgstr ""
1478
-
1479
- #: defaults.php:1816
1480
- msgid "Opened the profile page of user %TargetUsername%."
1481
- msgstr ""
1482
-
1483
- #: defaults.php:1829
1484
- msgid "User updated a custom field value for a user"
1485
- msgstr ""
1486
-
1487
- #: defaults.php:1830
1488
- msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
1489
- msgstr ""
1490
-
1491
- #: defaults.php:1835, defaults.php:2879, defaults.php:2911, defaults.php:3322
1492
- msgid "Previous value"
1493
- msgstr ""
1494
-
1495
- #: defaults.php:1836, defaults.php:3323
1496
- msgid "New value"
1497
- msgstr ""
1498
-
1499
- #: defaults.php:1845
1500
- msgid "User created a custom field value for a user"
1501
- msgstr ""
1502
-
1503
- #: defaults.php:1846
1504
- msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
1505
- msgstr ""
1506
-
1507
- #: defaults.php:1860
1508
- msgid "User changed first name for a user"
1509
- msgstr ""
1510
-
1511
- #: defaults.php:1861
1512
- msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
1513
- msgstr ""
1514
-
1515
- #: defaults.php:1864
1516
- msgid "Previous name"
1517
- msgstr ""
1518
-
1519
- #: defaults.php:1874
1520
- msgid "User changed last name for a user"
1521
- msgstr ""
1522
-
1523
- #: defaults.php:1875
1524
- msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
1525
- msgstr ""
1526
-
1527
- #: defaults.php:1879
1528
- msgid "Previous last name"
1529
- msgstr ""
1530
-
1531
- #: defaults.php:1888
1532
- msgid "User changed nickname for a user"
1533
- msgstr ""
1534
-
1535
- #: defaults.php:1889
1536
- msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
1537
- msgstr ""
1538
-
1539
- #: defaults.php:1894
1540
- msgid "Previous nickname"
1541
- msgstr ""
1542
-
1543
- #: defaults.php:1903
1544
- msgid "User changed the display name for a user"
1545
- msgstr ""
1546
-
1547
- #: defaults.php:1904
1548
- msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
1549
- msgstr ""
1550
-
1551
- #: defaults.php:1909
1552
- msgid "Previous display name"
1553
- msgstr ""
1554
-
1555
- #: defaults.php:1919, defaults.php:1933
1556
- msgid "User created an application password"
1557
- msgstr ""
1558
-
1559
- #: defaults.php:1920
1560
- msgid "The application password %friendly_name%."
1561
- msgstr ""
1562
-
1563
- #: defaults.php:1934
1564
- msgid "The application password %friendly_name% for the user %login%."
1565
- msgstr ""
1566
-
1567
- #: defaults.php:1948
1568
- msgid "User revoked all application passwords"
1569
- msgstr ""
1570
-
1571
- #: defaults.php:1949
1572
- msgid "All application passwords."
1573
- msgstr ""
1574
-
1575
- #: defaults.php:1962
1576
- msgid "User revoked all application passwords for a user"
1577
- msgstr ""
1578
-
1579
- #: defaults.php:1963
1580
- msgid "All application passwords from the user %login%."
1581
- msgstr ""
1582
-
1583
- #: defaults.php:1976
1584
- msgid "Admin sent a password reset request to a user"
1585
- msgstr ""
1586
-
1587
- #: defaults.php:1977
1588
- msgid "Sent a password reset request to the user %login%."
1589
- msgstr ""
1590
-
1591
- #: defaults.php:1989
1592
- msgid "Multisite User Profiles"
1593
- msgstr ""
1594
-
1595
- #: defaults.php:1993
1596
- msgid "User granted Super Admin privileges"
1597
- msgstr ""
1598
-
1599
- #: defaults.php:1994
1600
- msgid "Granted Super Admin privileges to the user %TargetUsername%."
1601
- msgstr ""
1602
-
1603
- #: defaults.php:2007
1604
- msgid "User revoked from Super Admin privileges"
1605
- msgstr ""
1606
-
1607
- #: defaults.php:2008
1608
- msgid "Revoked Super Admin privileges from %TargetUsername%."
1609
- msgstr ""
1610
-
1611
- #: defaults.php:2021
1612
- msgid "Existing user added to a site"
1613
- msgstr ""
1614
-
1615
- #: defaults.php:2022
1616
- msgid "Added user %TargetUsername% to the site %SiteName%."
1617
- msgstr ""
1618
-
1619
- #: defaults.php:2035
1620
- msgid "User removed from site"
1621
- msgstr ""
1622
-
1623
- #: defaults.php:2036
1624
- msgid "Removed user %TargetUsername% from the site %SiteName%"
1625
- msgstr ""
1626
-
1627
- #: defaults.php:2038
1628
- msgid "Site role"
1629
- msgstr ""
1630
-
1631
- #: defaults.php:2049
1632
- msgid "New network user created"
1633
- msgstr ""
1634
-
1635
- #: defaults.php:2050
1636
- msgid "Created the new network user %NewUserData->Username%."
1637
- msgstr ""
1638
-
1639
- #: defaults.php:2062
1640
- msgid "Plugins & Themes"
1641
- msgstr ""
1642
-
1643
- #: defaults.php:2063, classes/AuditLogGridView.php:430, classes/AuditLogListView.php:438
1644
- msgid "Plugins"
1645
- msgstr ""
1646
-
1647
- #: defaults.php:2067
1648
- msgid "User installed a plugin"
1649
- msgstr ""
1650
-
1651
- #: defaults.php:2068
1652
- msgid "Installed the plugin %Plugin->Name%."
1653
- msgstr ""
1654
-
1655
- #: defaults.php:2070, defaults.php:2083, defaults.php:2096, defaults.php:2109, defaults.php:2205, defaults.php:2218, defaults.php:2231, defaults.php:2270, defaults.php:2283
1656
- msgid "Version"
1657
- msgstr ""
1658
-
1659
- #: defaults.php:2071, defaults.php:2084, defaults.php:2097, defaults.php:2110, defaults.php:2123, defaults.php:2166, defaults.php:2179, defaults.php:2206, defaults.php:2219, defaults.php:2232, defaults.php:2245, defaults.php:2271, defaults.php:2284
1660
- msgid "Install location"
1661
- msgstr ""
1662
-
1663
- #: defaults.php:2080
1664
- msgid "User activated a WordPress plugin"
1665
- msgstr ""
1666
-
1667
- #: defaults.php:2081
1668
- msgid "Activated the plugin %PluginData->Name%."
1669
- msgstr ""
1670
-
1671
- #: defaults.php:2093
1672
- msgid "User deactivated a WordPress plugin"
1673
- msgstr ""
1674
-
1675
- #: defaults.php:2094
1676
- msgid "Deactivated the plugin %PluginData->Name%."
1677
- msgstr ""
1678
-
1679
- #: defaults.php:2106
1680
- msgid "User uninstalled a plugin"
1681
- msgstr ""
1682
-
1683
- #: defaults.php:2107
1684
- msgid "Uninstalled the plugin %PluginData->Name%."
1685
- msgstr ""
1686
-
1687
- #: defaults.php:2119
1688
- msgid "User upgraded a plugin"
1689
- msgstr ""
1690
-
1691
- #: defaults.php:2120
1692
- msgid "Updated the plugin %PluginData->Name%."
1693
- msgstr ""
1694
-
1695
- #: defaults.php:2122
1696
- msgid "Updated version"
1697
- msgstr ""
1698
-
1699
- #: defaults.php:2132
1700
- msgid "A plugin created a post"
1701
- msgstr ""
1702
-
1703
- #: defaults.php:2133
1704
- msgid "The plugin created the post %PostTitle%."
1705
- msgstr ""
1706
-
1707
- #: defaults.php:2138, defaults.php:2153, classes/AlertManager.php:1071, classes/AuditLogGridView.php:427, classes/AuditLogListView.php:436
1708
- msgid "Plugin"
1709
- msgstr ""
1710
-
1711
- #: defaults.php:2147
1712
- msgid "A plugin deleted a post"
1713
- msgstr ""
1714
-
1715
- #: defaults.php:2148
1716
- msgid "A plugin deleted the post %PostTitle%."
1717
- msgstr ""
1718
-
1719
- #: defaults.php:2163
1720
- msgid "Changed the Automatic updates setting for a plugin."
1721
- msgstr ""
1722
-
1723
- #: defaults.php:2164
1724
- msgid "Changed the Automatic updates setting for the plugin %name%."
1725
- msgstr ""
1726
-
1727
- #: defaults.php:2176
1728
- msgid "Changed the Automatic updates setting for a theme."
1729
- msgstr ""
1730
-
1731
- #: defaults.php:2177
1732
- msgid "Changed the Automatic updates setting for the theme %name%."
1733
- msgstr ""
1734
-
1735
- #: defaults.php:2189
1736
- msgid "User changed a file using the plugin editor"
1737
- msgstr ""
1738
-
1739
- #: defaults.php:2190
1740
- msgid "Modified the file %File% with the plugin editor."
1741
- msgstr ""
1742
-
1743
- #: defaults.php:2198
1744
- msgid "Themes"
1745
- msgstr ""
1746
-
1747
- #: defaults.php:2202
1748
- msgid "User installed a theme"
1749
- msgstr ""
1750
-
1751
- #: defaults.php:2203
1752
- msgid "Installed the theme %Theme->Name%."
1753
- msgstr ""
1754
-
1755
- #: defaults.php:2215
1756
- msgid "User activated a theme"
1757
- msgstr ""
1758
-
1759
- #: defaults.php:2216
1760
- msgid "Activated the theme %Theme->Name%."
1761
- msgstr ""
1762
-
1763
- #: defaults.php:2228
1764
- msgid "User uninstalled a theme"
1765
- msgstr ""
1766
-
1767
- #: defaults.php:2229
1768
- msgid "Deleted the theme %Theme->Name%."
1769
- msgstr ""
1770
-
1771
- #: defaults.php:2241
1772
- msgid "User updated a theme"
1773
- msgstr ""
1774
-
1775
- #: defaults.php:2242
1776
- msgid "Updated the theme %Theme->Name%."
1777
- msgstr ""
1778
-
1779
- #: defaults.php:2244, defaults.php:2338
1780
- msgid "New version"
1781
- msgstr ""
1782
-
1783
- #: defaults.php:2254
1784
- msgid "User changed a file using the theme editor"
1785
- msgstr ""
1786
-
1787
- #: defaults.php:2255
1788
- msgid "Modified the file %Theme%/%File% with the theme editor."
1789
- msgstr ""
1790
-
1791
- #: defaults.php:2263
1792
- msgid "Themes on Multisite"
1793
- msgstr ""
1794
-
1795
- #: defaults.php:2267
1796
- msgid "Activated theme on network"
1797
- msgstr ""
1798
-
1799
- #: defaults.php:2268
1800
- msgid "Network activated the theme %Theme->Name%."
1801
- msgstr ""
1802
-
1803
- #: defaults.php:2280
1804
- msgid "Deactivated theme from network"
1805
- msgstr ""
1806
-
1807
- #: defaults.php:2281
1808
- msgid "Network deactivated the theme %Theme->Name%."
1809
- msgstr ""
1810
-
1811
- #: defaults.php:2293
1812
- msgid "WordPress & System"
1813
- msgstr ""
1814
-
1815
- #: defaults.php:2294, classes/AlertManager.php:1070, classes/AlertManager.php:1760, classes/AuditLogGridView.php:436, classes/AuditLogListView.php:442, extensions/email-notifications/classes/DailyNotification.php:243, extensions/email-notifications/classes/Notifier.php:657, extensions/reports/classes/Common.php:1178
1816
- msgid "System"
1817
- msgstr ""
1818
-
1819
- #: defaults.php:2298
1820
- msgid "Unknown Error"
1821
- msgstr ""
1822
-
1823
- #: defaults.php:2299
1824
- msgid "An unexpected error has occurred."
1825
- msgstr ""
1826
-
1827
- #: defaults.php:2304
1828
- msgid "PHP error"
1829
- msgstr ""
1830
-
1831
- #: defaults.php:2305, defaults.php:2311, defaults.php:2317, defaults.php:2323, defaults.php:2329
1832
- msgid "%Message%."
1833
- msgstr ""
1834
-
1835
- #: defaults.php:2310
1836
- msgid "PHP warning"
1837
- msgstr ""
1838
-
1839
- #: defaults.php:2316
1840
- msgid "PHP notice"
1841
- msgstr ""
1842
-
1843
- #: defaults.php:2322
1844
- msgid "PHP exception"
1845
- msgstr ""
1846
-
1847
- #: defaults.php:2328
1848
- msgid "PHP shutdown error"
1849
- msgstr ""
1850
-
1851
- #: defaults.php:2334
1852
- msgid "WordPress was updated"
1853
- msgstr ""
1854
-
1855
- #: defaults.php:2335
1856
- msgid "Updated WordPress."
1857
- msgstr ""
1858
-
1859
- #: defaults.php:2337
1860
- msgid "Previous version"
1861
- msgstr ""
1862
-
1863
- #: defaults.php:2354
1864
- msgid "Advertising Extensions"
1865
- msgstr ""
1866
-
1867
- #: defaults.php:2355
1868
- msgid "%PromoName% %PromoMessage%"
1869
- msgstr ""
1870
-
1871
- #: defaults.php:2359
1872
- msgid "Activity log plugin"
1873
- msgstr ""
1874
-
1875
- #: defaults.php:2363
1876
- msgid "Events automatically pruned by system"
1877
- msgstr ""
1878
-
1879
- #: defaults.php:2364
1880
- msgid "System automatically deleted %EventCount% events from the activity log."
1881
- msgstr ""
1882
-
1883
- #: defaults.php:2373
1884
- msgid "Reset the plugin's settings to default"
1885
- msgstr ""
1886
-
1887
- #: defaults.php:2374
1888
- msgid "Reset the activity log plugin's settings to default."
1889
- msgstr ""
1890
-
1891
- #: defaults.php:2383
1892
- msgid "Purged the activity log"
1893
- msgstr ""
1894
-
1895
- #: defaults.php:2384
1896
- msgid "Purged the activity log."
1897
- msgstr ""
1898
-
1899
- #: defaults.php:2394
1900
- msgid "Deleted all the data about a user from the activity log."
1901
- msgstr ""
1902
-
1903
- #: defaults.php:2395
1904
- msgid "Deleted all the data about the user <strong>%user%</strong> from the activity log."
1905
- msgstr ""
1906
-
1907
- #: defaults.php:2408
1908
- msgid "Deleted all the data of a specific type from the activity log."
1909
- msgstr ""
1910
-
1911
- #: defaults.php:2409
1912
- msgid "Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log."
1913
- msgstr ""
1914
-
1915
- #: defaults.php:2419
1916
- msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
1917
- msgstr ""
1918
-
1919
- #: defaults.php:2420
1920
- msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
1921
- msgstr ""
1922
-
1923
- #: defaults.php:2430
1924
- msgid "Changed the status of the Login Page Notification"
1925
- msgstr ""
1926
-
1927
- #: defaults.php:2431
1928
- msgid "Changed the status of the <strong>Login Page Notification.</strong>"
1929
- msgstr ""
1930
-
1931
- #: defaults.php:2440
1932
- msgid "Changed the text of the Login Page Notification"
1933
- msgstr ""
1934
-
1935
- #: defaults.php:2441
1936
- msgid "Changed the text of the <strong>Login Page Notification.</strong>"
1937
- msgstr ""
1938
-
1939
- #: defaults.php:2450
1940
- msgid "Changed the status of the Reverse proxy / firewall option"
1941
- msgstr ""
1942
-
1943
- #: defaults.php:2451
1944
- msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
1945
- msgstr ""
1946
-
1947
- #: defaults.php:2460
1948
- msgid "Changed the Restrict plugin access setting"
1949
- msgstr ""
1950
-
1951
- #: defaults.php:2461
1952
- msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
1953
- msgstr ""
1954
-
1955
- #: defaults.php:2463, defaults.php:2497, defaults.php:2967, defaults.php:3054, defaults.php:3347
1956
- msgid "Previous setting"
1957
- msgstr ""
1958
-
1959
- #: defaults.php:2472
1960
- msgid "The user %user% to / from the list of users who can view the activity log"
1961
- msgstr ""
1962
-
1963
- #: defaults.php:2473
1964
- msgid "The user %user% to / from the list of users who can view the activity log."
1965
- msgstr ""
1966
-
1967
- #: defaults.php:2475
1968
- msgid "Previous list of users who had access to view the activity log"
1969
- msgstr ""
1970
-
1971
- #: defaults.php:2484
1972
- msgid "Changed the status of the Hide plugin in plugins page setting"
1973
- msgstr ""
1974
-
1975
- #: defaults.php:2485
1976
- msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
1977
- msgstr ""
1978
-
1979
- #: defaults.php:2494
1980
- msgid "Changed the Activity log retention setting"
1981
- msgstr ""
1982
-
1983
- #: defaults.php:2495
1984
- msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
1985
- msgstr ""
1986
-
1987
- #: defaults.php:2506
1988
- msgid "A user was added to / from the list of excluded users from the activity log"
1989
- msgstr ""
1990
-
1991
- #: defaults.php:2507
1992
- msgid "The user %user% to / from the list of excluded users from the activity log."
1993
- msgstr ""
1994
-
1995
- #: defaults.php:2509, defaults.php:2521
1996
- msgid "Previous list of users"
1997
- msgstr ""
1998
-
1999
- #: defaults.php:2518
2000
- msgid "A user role was added to / from the list of excluded roles from the activity log"
2001
- msgstr ""
2002
-
2003
- #: defaults.php:2519
2004
- msgid "The user role %role% to / from the list of excluded roles from the activity log."
2005
- msgstr ""
2006
-
2007
- #: defaults.php:2530
2008
- msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
2009
- msgstr ""
2010
-
2011
- #: defaults.php:2531
2012
- msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
2013
- msgstr ""
2014
-
2015
- #: defaults.php:2533
2016
- msgid "Previous list of IPs"
2017
- msgstr ""
2018
-
2019
- #: defaults.php:2542
2020
- msgid "A post type was added to / from the list of excluded post types from the activity log"
2021
- msgstr ""
2022
-
2023
- #: defaults.php:2543
2024
- msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
2025
- msgstr ""
2026
-
2027
- #: defaults.php:2545
2028
- msgid "Previous list of Post types"
2029
- msgstr ""
2030
-
2031
- #: defaults.php:2554
2032
- msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
2033
- msgstr ""
2034
-
2035
- #: defaults.php:2555
2036
- msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
2037
- msgstr ""
2038
-
2039
- #: defaults.php:2557
2040
- msgid "Previous list of Custom fields"
2041
- msgstr ""
2042
-
2043
- #: defaults.php:2566
2044
- msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
2045
- msgstr ""
2046
-
2047
- #: defaults.php:2567
2048
- msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
2049
- msgstr ""
2050
-
2051
- #: defaults.php:2569
2052
- msgid "Previous list of user profile Custom fields"
2053
- msgstr ""
2054
-
2055
- #: defaults.php:2577
2056
- msgid "Notifications & Integrations"
2057
- msgstr ""
2058
-
2059
- #: defaults.php:2581
2060
- msgid "Changed the status of the Daily Summary of Activity Log"
2061
- msgstr ""
2062
-
2063
- #: defaults.php:2582
2064
- msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
2065
- msgstr ""
2066
-
2067
- #: defaults.php:2591
2068
- msgid "Modified the reciepients of the Daily Summary of Activity Log."
2069
- msgstr ""
2070
-
2071
- #: defaults.php:2592
2072
- msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
2073
- msgstr ""
2074
-
2075
- #: defaults.php:2594
2076
- msgid "New recipient"
2077
- msgstr ""
2078
-
2079
- #: defaults.php:2595
2080
- msgid "Previous recipient"
2081
- msgstr ""
2082
-
2083
- #: defaults.php:2604
2084
- msgid "Changed the status of a built in notification"
2085
- msgstr ""
2086
-
2087
- #: defaults.php:2605
2088
- msgid "Changed the status of the built in notification %notification_name%."
2089
- msgstr ""
2090
-
2091
- #: defaults.php:2614
2092
- msgid "Modified the recipient(s) of the built a notification"
2093
- msgstr ""
2094
-
2095
- #: defaults.php:2615
2096
- msgid "Modified the recipient(s) of the built in notification %notification_name%."
2097
- msgstr ""
2098
-
2099
- #: defaults.php:2617
2100
- msgid "New recipient(s)"
2101
- msgstr ""
2102
-
2103
- #: defaults.php:2618
2104
- msgid "Previous recipient(s)"
2105
- msgstr ""
2106
-
2107
- #: defaults.php:2627
2108
- msgid "Added a new custom notification"
2109
- msgstr ""
2110
-
2111
- #: defaults.php:2628
2112
- msgid "Added a new custom notification %notification_name%."
2113
- msgstr ""
2114
-
2115
- #: defaults.php:2630, defaults.php:2642
2116
- msgid "Recipient(s)"
2117
- msgstr ""
2118
-
2119
- #: defaults.php:2639
2120
- msgid "Modified a custom notification"
2121
- msgstr ""
2122
-
2123
- #: defaults.php:2640
2124
- msgid "Modified the custom notification %notification_name%."
2125
- msgstr ""
2126
-
2127
- #: defaults.php:2651
2128
- msgid "Changed the status of a custom notification"
2129
- msgstr ""
2130
-
2131
- #: defaults.php:2652
2132
- msgid "Changed the status of the custom notification %notification_name%."
2133
- msgstr ""
2134
-
2135
- #: defaults.php:2661
2136
- msgid "Deleted a custom notification"
2137
- msgstr ""
2138
-
2139
- #: defaults.php:2662
2140
- msgid "Deleted the custom notification %notification_name%."
2141
- msgstr ""
2142
-
2143
- #: defaults.php:2671
2144
- msgid "Modified a default notification template"
2145
- msgstr ""
2146
-
2147
- #: defaults.php:2672
2148
- msgid "Modified the default %template_name% notification template."
2149
- msgstr ""
2150
-
2151
- #: defaults.php:2683
2152
- msgid "Added a new integrations connection"
2153
- msgstr ""
2154
-
2155
- #: defaults.php:2684
2156
- msgid "Added / removed the integrations connection %name%"
2157
- msgstr ""
2158
-
2159
- #: defaults.php:2686, defaults.php:2698
2160
- msgid "Connection type"
2161
- msgstr ""
2162
-
2163
- #: defaults.php:2695
2164
- msgid "Modified an integrations connection"
2165
- msgstr ""
2166
-
2167
- #: defaults.php:2696
2168
- msgid "Modified the integrations connection %name%."
2169
- msgstr ""
2170
-
2171
- #: defaults.php:2707
2172
- msgid "Deleted a integrations connection"
2173
- msgstr ""
2174
-
2175
- #: defaults.php:2708
2176
- msgid "Deleted the integrations connection %name%."
2177
- msgstr ""
2178
-
2179
- #: defaults.php:2717
2180
- msgid "Added a new activity log mirror"
2181
- msgstr ""
2182
-
2183
- #: defaults.php:2718
2184
- msgid "Added a new activity log mirror %name%."
2185
- msgstr ""
2186
-
2187
- #: defaults.php:2720, defaults.php:2732, defaults.php:2744
2188
- msgid "Connection used by this mirror"
2189
- msgstr ""
2190
-
2191
- #: defaults.php:2729
2192
- msgid "Modified an activity log mirror"
2193
- msgstr ""
2194
-
2195
- #: defaults.php:2730
2196
- msgid "Modified the activity log mirror %name%."
2197
- msgstr ""
2198
-
2199
- #: defaults.php:2741
2200
- msgid "Changed the status of an activity log mirror"
2201
- msgstr ""
2202
-
2203
- #: defaults.php:2742
2204
- msgid "Changed the status of the activity log mirror %name%."
2205
- msgstr ""
2206
-
2207
- #: defaults.php:2753
2208
- msgid "Deleted an activity log mirror"
2209
- msgstr ""
2210
-
2211
- #: defaults.php:2754
2212
- msgid "Deleted the activity log mirror %name%."
2213
- msgstr ""
2214
-
2215
- #: defaults.php:2763
2216
- msgid "Changed the status of Logging of events to the database"
2217
- msgstr ""
2218
-
2219
- #: defaults.php:2764
2220
- msgid "Changed the status of <strong>Logging of events to the database</strong>."
2221
- msgstr ""
2222
-
2223
- #: defaults.php:2772
2224
- msgid "WordPress Site Settings"
2225
- msgstr ""
2226
-
2227
- #: defaults.php:2776
2228
- msgid "Option Anyone Can Register in WordPress settings changed"
2229
- msgstr ""
2230
-
2231
- #: defaults.php:2777
2232
- msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
2233
- msgstr ""
2234
-
2235
- #: defaults.php:2786
2236
- msgid "New User Default Role changed"
2237
- msgstr ""
2238
-
2239
- #: defaults.php:2787
2240
- msgid "Changed the <strong>New user default role</strong> WordPress setting."
2241
- msgstr ""
2242
-
2243
- #: defaults.php:2790
2244
- msgid "New role"
2245
- msgstr ""
2246
-
2247
- #: defaults.php:2799
2248
- msgid "WordPress Administrator Notification email changed"
2249
- msgstr ""
2250
-
2251
- #: defaults.php:2800
2252
- msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
2253
- msgstr ""
2254
-
2255
- #: defaults.php:2802
2256
- msgid "Previous address"
2257
- msgstr ""
2258
-
2259
- #: defaults.php:2803
2260
- msgid "New address"
2261
- msgstr ""
2262
-
2263
- #: defaults.php:2812
2264
- msgid "User changes the WordPress Permalinks"
2265
- msgstr ""
2266
-
2267
- #: defaults.php:2813
2268
- msgid "Changed the <strong>WordPress permalinks</strong>."
2269
- msgstr ""
2270
-
2271
- #: defaults.php:2815
2272
- msgid "Previous permalinks"
2273
- msgstr ""
2274
-
2275
- #: defaults.php:2816
2276
- msgid "New permalinks"
2277
- msgstr ""
2278
-
2279
- #: defaults.php:2825
2280
- msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
2281
- msgstr ""
2282
-
2283
- #: defaults.php:2826
2284
- msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
2285
- msgstr ""
2286
-
2287
- #: defaults.php:2835
2288
- msgid "Enabled/Disabled comments on all the website"
2289
- msgstr ""
2290
-
2291
- #: defaults.php:2836
2292
- msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
2293
- msgstr ""
2294
-
2295
- #: defaults.php:2846
2296
- msgid "Enabled/Disabled the option Comment author must fill out name and email"
2297
- msgstr ""
2298
-
2299
- #: defaults.php:2847
2300
- msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
2301
- msgstr ""
2302
-
2303
- #: defaults.php:2856
2304
- msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
2305
- msgstr ""
2306
-
2307
- #: defaults.php:2857
2308
- msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
2309
- msgstr ""
2310
-
2311
- #: defaults.php:2866
2312
- msgid "Enabled/Disabled the option to automatically close comments"
2313
- msgstr ""
2314
-
2315
- #: defaults.php:2867
2316
- msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
2317
- msgstr ""
2318
-
2319
- #: defaults.php:2876
2320
- msgid "Changed the value of the option Automatically close comments"
2321
- msgstr ""
2322
-
2323
- #: defaults.php:2877
2324
- msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
2325
- msgstr ""
2326
-
2327
- #: defaults.php:2888
2328
- msgid "Enabled/Disabled the option for comments to be manually approved"
2329
- msgstr ""
2330
-
2331
- #: defaults.php:2889
2332
- msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
2333
- msgstr ""
2334
-
2335
- #: defaults.php:2898
2336
- msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
2337
- msgstr ""
2338
-
2339
- #: defaults.php:2899
2340
- msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
2341
- msgstr ""
2342
-
2343
- #: defaults.php:2908
2344
- msgid "Changed the number of links that a comment must have to be held in the queue"
2345
- msgstr ""
2346
-
2347
- #: defaults.php:2909
2348
- msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
2349
- msgstr ""
2350
-
2351
- #: defaults.php:2920
2352
- msgid "Modified the list of keywords for comments moderation"
2353
- msgstr ""
2354
-
2355
- #: defaults.php:2921
2356
- msgid "Modified the list of keywords for comments medoration in WordPress."
2357
- msgstr ""
2358
-
2359
- #: defaults.php:2930
2360
- msgid "Modified the list of keywords for comments blacklisting"
2361
- msgstr ""
2362
-
2363
- #: defaults.php:2931
2364
- msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
2365
- msgstr ""
2366
-
2367
- #: defaults.php:2940
2368
- msgid "Option WordPress Address (URL) in WordPress settings changed"
2369
- msgstr ""
2370
-
2371
- #: defaults.php:2941
2372
- msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
2373
- msgstr ""
2374
-
2375
- #: defaults.php:2952
2376
- msgid "Option Site Address (URL) in WordPress settings changed"
2377
- msgstr ""
2378
-
2379
- #: defaults.php:2953
2380
- msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
2381
- msgstr ""
2382
-
2383
- #: defaults.php:2964
2384
- msgid "Option Your homepage displays in WordPress settings changed"
2385
- msgstr ""
2386
-
2387
- #: defaults.php:2965
2388
- msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
2389
- msgstr ""
2390
-
2391
- #: defaults.php:2976
2392
- msgid "Option homepage in WordPress settings changed"
2393
- msgstr ""
2394
-
2395
- #: defaults.php:2977
2396
- msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
2397
- msgstr ""
2398
-
2399
- #: defaults.php:2979, defaults.php:2991
2400
- msgid "Previous page"
2401
- msgstr ""
2402
-
2403
- #: defaults.php:2988
2404
- msgid "Option posts page in WordPress settings changed"
2405
- msgstr ""
2406
-
2407
- #: defaults.php:2989
2408
- msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
2409
- msgstr ""
2410
-
2411
- #: defaults.php:3001
2412
- msgid "Option Timezone in WordPress settings changed"
2413
- msgstr ""
2414
-
2415
- #: defaults.php:3002
2416
- msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
2417
- msgstr ""
2418
-
2419
- #: defaults.php:3004
2420
- msgid "Previous timezone"
2421
- msgstr ""
2422
-
2423
- #: defaults.php:3013
2424
- msgid "Option Date format in WordPress settings changed"
2425
- msgstr ""
2426
-
2427
- #: defaults.php:3014
2428
- msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
2429
- msgstr ""
2430
-
2431
- #: defaults.php:3016, defaults.php:3028
2432
- msgid "Previous format"
2433
- msgstr ""
2434
-
2435
- #: defaults.php:3025
2436
- msgid "Option Time format in WordPress settings changed"
2437
- msgstr ""
2438
-
2439
- #: defaults.php:3026
2440
- msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
2441
- msgstr ""
2442
-
2443
- #: defaults.php:3038
2444
- msgid "Option Automatic updates setting changed"
2445
- msgstr ""
2446
-
2447
- #: defaults.php:3039
2448
- msgid "Changed the <strong>Automatic updates</strong> setting."
2449
- msgstr ""
2450
-
2451
- #: defaults.php:3041
2452
- msgid "New setting status"
2453
- msgstr ""
2454
-
2455
- #: defaults.php:3051
2456
- msgid "Option Site Language setting changed"
2457
- msgstr ""
2458
-
2459
- #: defaults.php:3052
2460
- msgid "Changed the <strong>Site Language</strong> to %new_value%."
2461
- msgstr ""
2462
-
2463
- #: defaults.php:3062
2464
- msgid "Database Events"
2465
- msgstr ""
2466
-
2467
- #: defaults.php:3066
2468
- msgid "Plugin created table"
2469
- msgstr ""
2470
-
2471
- #: defaults.php:3067
2472
- msgid "The plugin %Plugin->Name% created this table in the database."
2473
- msgstr ""
2474
-
2475
- #: defaults.php:3069, defaults.php:3081, defaults.php:3093, defaults.php:3105, defaults.php:3117
2476
- msgid "Table"
2477
- msgstr ""
2478
-
2479
- #: defaults.php:3078
2480
- msgid "Plugin modified table structure"
2481
- msgstr ""
2482
-
2483
- #: defaults.php:3079
2484
- msgid "The plugin %Plugin->Name% modified the structure of a database table."
2485
- msgstr ""
2486
-
2487
- #: defaults.php:3090
2488
- msgid "Plugin deleted table"
2489
- msgstr ""
2490
-
2491
- #: defaults.php:3091
2492
- msgid "The plugin %Plugin->Name% deleted this table from the database."
2493
- msgstr ""
2494
-
2495
- #: defaults.php:3102
2496
- msgid "Theme created tables"
2497
- msgstr ""
2498
-
2499
- #: defaults.php:3103
2500
- msgid "The theme %Theme->Name% created this tables in the database."
2501
- msgstr ""
2502
-
2503
- #: defaults.php:3114
2504
- msgid "Theme modified tables structure"
2505
- msgstr ""
2506
-
2507
- #: defaults.php:3115
2508
- msgid "The theme %Theme->Name% modified the structure of this database table"
2509
- msgstr ""
2510
-
2511
- #: defaults.php:3126
2512
- msgid "Theme deleted tables"
2513
- msgstr ""
2514
-
2515
- #: defaults.php:3127
2516
- msgid "The theme %Theme->Name% deleted this table from the database."
2517
- msgstr ""
2518
-
2519
- #: defaults.php:3129, defaults.php:3141, defaults.php:3153, defaults.php:3165, defaults.php:3177, defaults.php:3189, defaults.php:3201
2520
- msgid "Tables"
2521
- msgstr ""
2522
-
2523
- #: defaults.php:3138
2524
- msgid "Unknown component created tables"
2525
- msgstr ""
2526
-
2527
- #: defaults.php:3139
2528
- msgid "An unknown component created these tables in the database."
2529
- msgstr ""
2530
-
2531
- #: defaults.php:3150
2532
- msgid "Unknown component modified tables structure"
2533
- msgstr ""
2534
-
2535
- #: defaults.php:3151
2536
- msgid "An unknown component modified the structure of these database tables."
2537
- msgstr ""
2538
-
2539
- #: defaults.php:3162
2540
- msgid "Unknown component deleted tables"
2541
- msgstr ""
2542
-
2543
- #: defaults.php:3163
2544
- msgid "An unknown component deleted these tables from the database."
2545
- msgstr ""
2546
-
2547
- #: defaults.php:3174
2548
- msgid "WordPress created tables"
2549
- msgstr ""
2550
-
2551
- #: defaults.php:3175
2552
- msgid "WordPress has created these tables in the database."
2553
- msgstr ""
2554
-
2555
- #: defaults.php:3186
2556
- msgid "WordPress modified tables structure"
2557
- msgstr ""
2558
-
2559
- #: defaults.php:3187
2560
- msgid "WordPress modified the structure of these database tables."
2561
- msgstr ""
2562
-
2563
- #: defaults.php:3198
2564
- msgid "WordPress deleted tables"
2565
- msgstr ""
2566
-
2567
- #: defaults.php:3199
2568
- msgid "WordPress deleted these tables from the database."
2569
- msgstr ""
2570
-
2571
- #: defaults.php:3210
2572
- msgid "Multisite Network Sites"
2573
- msgstr ""
2574
-
2575
- #: defaults.php:3211
2576
- msgid "MultiSite"
2577
- msgstr ""
2578
-
2579
- #: defaults.php:3215
2580
- msgid "New site added on the network"
2581
- msgstr ""
2582
-
2583
- #: defaults.php:3216
2584
- msgid "Added the new site %SiteName% to the network."
2585
- msgstr ""
2586
-
2587
- #: defaults.php:3218, defaults.php:3230, defaults.php:3242, defaults.php:3254, defaults.php:3266, defaults.php:3278
2588
- msgid "URL"
2589
- msgstr ""
2590
-
2591
- #: defaults.php:3227
2592
- msgid "Existing site archived"
2593
- msgstr ""
2594
-
2595
- #: defaults.php:3228
2596
- msgid "Archived the site %SiteName% on the network."
2597
- msgstr ""
2598
-
2599
- #: defaults.php:3239
2600
- msgid "Archived site has been unarchived"
2601
- msgstr ""
2602
-
2603
- #: defaults.php:3240
2604
- msgid "Unarchived the site %SiteName%."
2605
- msgstr ""
2606
-
2607
- #: defaults.php:3251
2608
- msgid "Deactivated site has been activated"
2609
- msgstr ""
2610
-
2611
- #: defaults.php:3252
2612
- msgid "Activated the site %SiteName% on the network."
2613
- msgstr ""
2614
-
2615
- #: defaults.php:3263
2616
- msgid "Site has been deactivated"
2617
- msgstr ""
2618
-
2619
- #: defaults.php:3264
2620
- msgid "Deactiveated the site %SiteName% on the network."
2621
- msgstr ""
2622
-
2623
- #: defaults.php:3275
2624
- msgid "Existing site deleted from network"
2625
- msgstr ""
2626
-
2627
- #: defaults.php:3276
2628
- msgid "The site: %SiteName%."
2629
- msgstr ""
2630
-
2631
- #: defaults.php:3287
2632
- msgid "Allow site administrators to add new users to their sites settings changed"
2633
- msgstr ""
2634
-
2635
- #: defaults.php:3288
2636
- msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
2637
- msgstr ""
2638
-
2639
- #: defaults.php:3297
2640
- msgid "Site upload space settings changed"
2641
- msgstr ""
2642
-
2643
- #: defaults.php:3298
2644
- msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
2645
- msgstr ""
2646
-
2647
- #: defaults.php:3307
2648
- msgid "Site upload space file size settings changed"
2649
- msgstr ""
2650
-
2651
- #: defaults.php:3308
2652
- msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
2653
- msgstr ""
2654
-
2655
- #: defaults.php:3310
2656
- msgid "Previous size (MB)"
2657
- msgstr ""
2658
-
2659
- #: defaults.php:3319
2660
- msgid "Site Upload file types settings changed"
2661
- msgstr ""
2662
-
2663
- #: defaults.php:3320
2664
- msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
2665
- msgstr ""
2666
-
2667
- #: defaults.php:3332
2668
- msgid "Site Max upload file size settings changed"
2669
- msgstr ""
2670
-
2671
- #: defaults.php:3333
2672
- msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
2673
- msgstr ""
2674
-
2675
- #: defaults.php:3335
2676
- msgid "Previous size (KB)"
2677
- msgstr ""
2678
-
2679
- #: defaults.php:3344
2680
- msgid "Allow new registrations settings changed"
2681
- msgstr ""
2682
-
2683
- #: defaults.php:3345
2684
- msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
2685
- msgstr ""
2686
-
2687
- #: defaults.php:3361
2688
- msgid "File Changes"
2689
- msgstr ""
2690
-
2691
- #: defaults.php:3362
2692
- msgid "Monitor File Changes"
2693
- msgstr ""
2694
-
2695
- #: defaults.php:3366
2696
- msgid "Dummy"
2697
- msgstr ""
2698
-
2699
- #. translators: User's first name
2700
- #. translators: User's first name
2701
- #: wp-security-audit-log.php:943, wp-security-audit-log.php:971
2702
- msgid "Hey %s"
2703
- msgstr ""
2704
-
2705
- #: wp-security-audit-log.php:947
2706
- msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
2707
- msgstr ""
2708
-
2709
- #: wp-security-audit-log.php:948, wp-security-audit-log.php:983
2710
- msgid "Note: "
2711
- msgstr ""
2712
-
2713
- #: wp-security-audit-log.php:949, wp-security-audit-log.php:984
2714
- msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
2715
- msgstr ""
2716
-
2717
- #. translators: 1: Plugin name. 2: Plugin name. 2: Freemius link. 4: Plugin name.
2718
- #: wp-security-audit-log.php:977
2719
- msgid "Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
2720
- msgstr ""
2721
-
2722
- #: wp-security-audit-log.php:1029
2723
- msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
2724
- msgstr ""
2725
-
2726
- #: wp-security-audit-log.php:1030
2727
- msgid "Activate the licence key now"
2728
- msgstr ""
2729
-
2730
- #. translators: Number of sites
2731
- #: wp-security-audit-log.php:1052
2732
- msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
2733
- msgstr ""
2734
-
2735
- #: wp-security-audit-log.php:1048
2736
- msgid "%s You need to renew your license to continue using premium features."
2737
- msgstr ""
2738
-
2739
- #: wp-security-audit-log.php:1150
2740
- msgid "Error: You do not have sufficient permissions to disable this custom field."
2741
- msgstr ""
2742
-
2743
- #. translators: name of meta field (in bold)
2744
- #: wp-security-audit-log.php:1198
2745
- msgid "Custom field %s is no longer being monitored."
2746
- msgstr ""
2747
-
2748
- #. translators: setting tab name "Excluded Objects"
2749
- #: wp-security-audit-log.php:1203
2750
- msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
2751
- msgstr ""
2752
-
2753
- #: wp-security-audit-log.php:1204
2754
- msgid "Excluded Objects"
2755
- msgstr ""
2756
-
2757
- #: wp-security-audit-log.php:1217
2758
- msgid "Error: You do not have sufficient permissions to disable this alert."
2759
- msgstr ""
2760
-
2761
- #: wp-security-audit-log.php:1241
2762
- msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
2763
- msgstr ""
2764
-
2765
- #: wp-security-audit-log.php:1241
2766
- msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
2767
- msgstr ""
2768
-
2769
- #: wp-security-audit-log.php:1266, classes/Views/SetupWizard.php:270
2770
- msgid "Installing, please wait"
2771
- msgstr ""
2772
-
2773
- #: wp-security-audit-log.php:1267, classes/Views/SetupWizard.php:271
2774
- msgid "Already installed"
2775
- msgstr ""
2776
-
2777
- #: wp-security-audit-log.php:1268, classes/Utilities/PluginInstallAndActivate.php:108, classes/Views/SetupWizard.php:272, classes/Views/SetupWizard.php:841
2778
- msgid "Extension installed"
2779
- msgstr ""
2780
-
2781
- #: wp-security-audit-log.php:1269, classes/Views/SetupWizard.php:273
2782
- msgid "Extension activated"
2783
- msgstr ""
2784
-
2785
- #: wp-security-audit-log.php:1270, classes/Views/SetupWizard.php:274
2786
- msgid "Install failed"
2787
- msgstr ""
2788
-
2789
- #. translators: %s: PHP Version
2790
- #: wp-security-audit-log.php:1322
2791
- msgid "You are using a version of PHP that is older than %s, which is no longer supported."
2792
- msgstr ""
2793
-
2794
- #: wp-security-audit-log.php:1324
2795
- msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
2796
- msgstr ""
2797
-
2798
- #. translators: %s: Activity Log for MainWP plugin hyperlink
2799
- #: wp-security-audit-log.php:1329
2800
- msgid "Please install the %s plugin on the MainWP dashboard."
2801
- msgstr ""
2802
-
2803
- #: wp-security-audit-log.php:1329
2804
- msgid "Activity Log for MainWP"
2805
- msgstr ""
2806
-
2807
- #. translators: %s: Getting started guide hyperlink
2808
- #: wp-security-audit-log.php:1331
2809
- msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
2810
- msgstr ""
2811
-
2812
- #: wp-security-audit-log.php:1331
2813
- msgid "getting started guide"
2814
- msgstr ""
2815
-
2816
- #: wp-security-audit-log.php:1813
2817
- msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
2818
- msgstr ""
2819
-
2820
- #: wp-security-audit-log.php:1832
2821
- msgid "Every 6 hours"
2822
- msgstr ""
2823
-
2824
- #: wp-security-audit-log.php:1836
2825
- msgid "Every 45 minutes"
2826
- msgstr ""
2827
-
2828
- #: wp-security-audit-log.php:1840
2829
- msgid "Every 30 minutes"
2830
- msgstr ""
2831
-
2832
- #: wp-security-audit-log.php:1844
2833
- msgid "Every 15 minutes"
2834
- msgstr ""
2835
-
2836
- #: wp-security-audit-log.php:1848
2837
- msgid "Every 10 minutes"
2838
- msgstr ""
2839
-
2840
- #: wp-security-audit-log.php:1852
2841
- msgid "Every 1 minute"
2842
- msgstr ""
2843
-
2844
- #. translators: 1. Deprecated method name 2. Version since deprecated
2845
- #: wp-security-audit-log.php:1866
2846
- msgid "Method %1$s is deprecated since version %2$s!"
2847
- msgstr ""
2848
-
2849
- #: classes/AlertFormatter.php:67
2850
- msgid "Exclude custom field from the monitoring"
2851
- msgstr ""
2852
-
2853
- #: classes/AlertFormatter.php:92
2854
- msgid "unknown"
2855
- msgstr ""
2856
-
2857
- #: classes/AlertFormatter.php:139, classes/AlertFormatter.php:139
2858
- msgid "Download the log file."
2859
- msgstr ""
2860
-
2861
- #: classes/AlertFormatter.php:147
2862
- msgid "published"
2863
- msgstr ""
2864
-
2865
- #. translators: Event ID
2866
- #: classes/AlertManager.php:359
2867
- msgid "Event with code %d has not be registered."
2868
- msgstr ""
2869
-
2870
- #. translators: Event ID
2871
- #: classes/AlertManager.php:443
2872
- msgid "Event %s already registered with WP Activity Log."
2873
- msgstr ""
2874
-
2875
- #: classes/AlertManager.php:488
2876
- msgid "You have custom events that are using the same ID or IDs which are already registered in the plugin, so they have been disabled."
2877
- msgstr ""
2878
-
2879
- #. translators: 1.CSS classes, 2. Notice, 3. Contact us link
2880
- #: classes/AlertManager.php:491
2881
- msgid "%4$s to help you solve this issue."
2882
- msgstr ""
2883
-
2884
- #: classes/AlertManager.php:493
2885
- msgid "ERROR:"
2886
- msgstr ""
2887
-
2888
- #: classes/AlertManager.php:495
2889
- msgid "Contact us"
2890
- msgstr ""
2891
-
2892
- #: classes/AlertManager.php:1072
2893
- msgid "Database"
2894
- msgstr ""
2895
-
2896
- #: classes/AlertManager.php:1074, classes/AlertManager.php:1078
2897
- msgid "File"
2898
- msgstr ""
2899
-
2900
- #: classes/AlertManager.php:1075
2901
- msgid "Tag"
2902
- msgstr ""
2903
-
2904
- #: classes/AlertManager.php:1076
2905
- msgid "Comment"
2906
- msgstr ""
2907
-
2908
- #: classes/AlertManager.php:1077
2909
- msgid "Setting"
2910
- msgstr ""
2911
-
2912
- #: classes/AlertManager.php:1079
2913
- msgid "System Setting"
2914
- msgstr ""
2915
-
2916
- #: classes/AlertManager.php:1080
2917
- msgid "MainWP Network"
2918
- msgstr ""
2919
-
2920
- #: classes/AlertManager.php:1081
2921
- msgid "MainWP"
2922
- msgstr ""
2923
-
2924
- #: classes/AlertManager.php:1082
2925
- msgid "Category"
2926
- msgstr ""
2927
-
2928
- #: classes/AlertManager.php:1083
2929
- msgid "Custom Field"
2930
- msgstr ""
2931
-
2932
- #: classes/AlertManager.php:1084
2933
- msgid "Widget"
2934
- msgstr ""
2935
-
2936
- #: classes/AlertManager.php:1085
2937
- msgid "Menu"
2938
- msgstr ""
2939
-
2940
- #: classes/AlertManager.php:1086
2941
- msgid "Theme"
2942
- msgstr ""
2943
-
2944
- #: classes/AlertManager.php:1087
2945
- msgid "Activity log"
2946
- msgstr ""
2947
-
2948
- #: classes/AlertManager.php:1088
2949
- msgid "WP Activity Log"
2950
- msgstr ""
2951
-
2952
- #: classes/AlertManager.php:1089
2953
- msgid "Multisite Network"
2954
- msgstr ""
2955
-
2956
- #: classes/AlertManager.php:1090, extensions/email-notifications/classes/Common.php:1145, extensions/search/classes/Filters/IpFilter.php:88, extensions/user-sessions/classes/View/Sessions.php:325
2957
- msgid "IP Address"
2958
- msgstr ""
2959
-
2960
- #: classes/AlertManager.php:1106
2961
- msgid "unknown object"
2962
- msgstr ""
2963
-
2964
- #: classes/AlertManager.php:1143
2965
- msgid "Login"
2966
- msgstr ""
2967
-
2968
- #: classes/AlertManager.php:1144
2969
- msgid "Logout"
2970
- msgstr ""
2971
-
2972
- #: classes/AlertManager.php:1145
2973
- msgid "Installed"
2974
- msgstr ""
2975
-
2976
- #: classes/AlertManager.php:1146
2977
- msgid "Activated"
2978
- msgstr ""
2979
-
2980
- #: classes/AlertManager.php:1147
2981
- msgid "Deactivated"
2982
- msgstr ""
2983
-
2984
- #: classes/AlertManager.php:1148
2985
- msgid "Uninstalled"
2986
- msgstr ""
2987
-
2988
- #: classes/AlertManager.php:1149
2989
- msgid "Updated"
2990
- msgstr ""
2991
-
2992
- #: classes/AlertManager.php:1150, extensions/user-sessions/classes/View/Sessions.php:161
2993
- msgid "Created"
2994
- msgstr ""
2995
-
2996
- #: classes/AlertManager.php:1151
2997
- msgid "Modified"
2998
- msgstr ""
2999
-
3000
- #: classes/AlertManager.php:1152, extensions/search/search-init.php:300
3001
- msgid "Deleted"
3002
- msgstr ""
3003
-
3004
- #: classes/AlertManager.php:1153, extensions/reports/classes/CsvReportGenerator.php:273, extensions/reports/classes/HtmlReportGenerator.php:449
3005
- msgid "Published"
3006
- msgstr ""
3007
-
3008
- #: classes/AlertManager.php:1154
3009
- msgid "Approved"
3010
- msgstr ""
3011
-
3012
- #: classes/AlertManager.php:1155
3013
- msgid "Unapproved"
3014
- msgstr ""
3015
-
3016
- #: classes/AlertManager.php:1156, extensions/external-db/classes/Mirroring.php:162
3017
- msgid "Enabled"
3018
- msgstr ""
3019
-
3020
- #: classes/AlertManager.php:1157, extensions/email-notifications/classes/Notifications.php:1894, extensions/external-db/classes/Mirroring.php:164
3021
- msgid "Disabled"
3022
- msgstr ""
3023
-
3024
- #: classes/AlertManager.php:1158
3025
- msgid "Added"
3026
- msgstr ""
3027
-
3028
- #: classes/AlertManager.php:1159
3029
- msgid "Failed Login"
3030
- msgstr ""
3031
-
3032
- #: classes/AlertManager.php:1160
3033
- msgid "Blocked"
3034
- msgstr ""
3035
-
3036
- #: classes/AlertManager.php:1161
3037
- msgid "Uploaded"
3038
- msgstr ""
3039
-
3040
- #: classes/AlertManager.php:1162
3041
- msgid "Restored"
3042
- msgstr ""
3043
-
3044
- #: classes/AlertManager.php:1163
3045
- msgid "Opened"
3046
- msgstr ""
3047
-
3048
- #: classes/AlertManager.php:1164
3049
- msgid "Viewed"
3050
- msgstr ""
3051
-
3052
- #: classes/AlertManager.php:1165
3053
- msgid "Started"
3054
- msgstr ""
3055
-
3056
- #: classes/AlertManager.php:1166, extensions/external-db/classes/Settings.php:565
3057
- msgid "Stopped"
3058
- msgstr ""
3059
-
3060
- #: classes/AlertManager.php:1167
3061
- msgid "Removed"
3062
- msgstr ""
3063
-
3064
- #: classes/AlertManager.php:1168
3065
- msgid "Unblocked"
3066
- msgstr ""
3067
-
3068
- #: classes/AlertManager.php:1169
3069
- msgid "Renamed"
3070
- msgstr ""
3071
-
3072
- #: classes/AlertManager.php:1170
3073
- msgid "Duplicated"
3074
- msgstr ""
3075
-
3076
- #: classes/AlertManager.php:1171
3077
- msgid "Submitted"
3078
- msgstr ""
3079
-
3080
- #: classes/AlertManager.php:1172
3081
- msgid "Revoked"
3082
- msgstr ""
3083
-
3084
- #: classes/AlertManager.php:1189
3085
- msgid "unknown type"
3086
- msgstr ""
3087
-
3088
- #: classes/AlertManager.php:1722, classes/ConstantManager.php:147
3089
- msgid "Unknown error code."
3090
- msgstr ""
3091
-
3092
- #: classes/AlertManager.php:1741, classes/AlertManager.php:1729, extensions/reports/classes/Common.php:1161, extensions/reports/classes/Common.php:1151
3093
- msgid "Unknown Site"
3094
- msgstr ""
3095
-
3096
- #: classes/AuditLogGridView.php:112, classes/AuditLogListView.php:103
3097
- msgid "No events so far."
3098
- msgstr ""
3099
-
3100
- #: classes/AuditLogGridView.php:149, classes/AuditLogListView.php:147
3101
- msgid "List View"
3102
- msgstr ""
3103
-
3104
- #: classes/AuditLogGridView.php:150, classes/AuditLogListView.php:148
3105
- msgid "Grid View"
3106
- msgstr ""
3107
-
3108
- #: classes/AuditLogGridView.php:175, classes/AuditLogListView.php:173
3109
- msgid "Show "
3110
- msgstr ""
3111
-
3112
- #: classes/AuditLogGridView.php:183, classes/AuditLogListView.php:181
3113
- msgid " Items"
3114
- msgstr ""
3115
-
3116
- #: classes/AuditLogGridView.php:190, classes/AuditLogListView.php:188
3117
- msgid "— End of Activity Log —"
3118
- msgstr ""
3119
-
3120
- #: classes/AuditLogGridView.php:211, classes/AuditLogListView.php:209, classes/Views/AuditLog.php:589, extensions/reports/inc/wsal-reporting-view.inc.php:711
3121
- msgid "All Sites"
3122
- msgstr ""
3123
-
3124
- #: classes/AuditLogGridView.php:272, classes/AuditLogGridView.php:298, classes/AuditLogListView.php:270, classes/AuditLogListView.php:300, classes/Views/Settings.php:1082, classes/Views/ToggleAlerts.php:299, extensions/search/classes/Filters/CodeFilter.php:43, extensions/search/classes/Filters/CodeFilter.php:69
3125
- msgid "Severity"
3126
- msgstr ""
3127
-
3128
- #: classes/AuditLogGridView.php:273, extensions/search/classes/Filters/CodeFilter.php:76
3129
- msgid "Info"
3130
- msgstr ""
3131
-
3132
- #: classes/AuditLogGridView.php:278, classes/AuditLogListView.php:280, classes/AuditLogListView.php:312, extensions/email-notifications/classes/Common.php:1143, extensions/email-notifications/classes/Common.php:1204, extensions/search/classes/Filters/SiteFilter.php:29
3133
- msgid "Site"
3134
- msgstr ""
3135
-
3136
- #: classes/AuditLogGridView.php:281, classes/AuditLogGridView.php:304, classes/AuditLogListView.php:283, classes/AuditLogListView.php:321, extensions/email-notifications/classes/Common.php:1148, extensions/email-notifications/classes/Common.php:1178, extensions/reports/classes/CsvReportGenerator.php:86, extensions/reports/classes/HtmlReportGenerator.php:250
3137
- msgid "Message"
3138
- msgstr ""
3139
-
3140
- #: classes/AuditLogGridView.php:301
3141
- msgid "Grid"
3142
- msgstr ""
3143
-
3144
- #: classes/AuditLogGridView.php:369, classes/AuditLogListView.php:398
3145
- msgid "Disable this type of events."
3146
- msgstr ""
3147
-
3148
- #: classes/AuditLogGridView.php:391
3149
- msgid "Message:"
3150
- msgstr ""
3151
-
3152
- #: classes/AuditLogGridView.php:401, classes/AuditLogGridView.php:405, classes/AuditLogListView.php:413, classes/Utilities/UserUtils.php:149
3153
- msgid "Unknown"
3154
- msgstr ""
3155
-
3156
- #: classes/AuditLogGridView.php:433, classes/AuditLogListView.php:440
3157
- msgid "Unregistered user"
3158
- msgstr ""
3159
-
3160
- #: classes/AuditLogGridView.php:470, classes/AuditLogGridView.php:483, classes/AuditLogListView.php:473, classes/AuditLogListView.php:486
3161
- msgid "Show me all activity originating from this IP Address"
3162
- msgstr ""
3163
-
3164
- #: classes/AuditLogGridView.php:540, classes/AuditLogListView.php:518
3165
- msgid "View all details of this change"
3166
- msgstr ""
3167
-
3168
- #: classes/AuditLogGridView.php:541, classes/AuditLogListView.php:519
3169
- msgid "Alert Data Inspector"
3170
- msgstr ""
3171
-
3172
- #: classes/AuditLogListView.php:271, classes/AuditLogListView.php:303, extensions/reports/classes/CsvReportGenerator.php:79, extensions/reports/classes/CsvReportGenerator.php:254, extensions/reports/classes/CsvReportGenerator.php:263, extensions/reports/classes/CsvReportGenerator.php:272, extensions/reports/classes/HtmlReportGenerator.php:243, extensions/reports/classes/HtmlReportGenerator.php:393, extensions/reports/classes/HtmlReportGenerator.php:411, extensions/reports/classes/HtmlReportGenerator.php:448, extensions/search/classes/Filters/DateFilter.php:28
3173
- msgid "Date"
3174
- msgstr ""
3175
-
3176
- #: classes/AuditLogListView.php:273, classes/AuditLogListView.php:309, extensions/search/classes/Filters/IpFilter.php:46
3177
- msgid "IP"
3178
- msgstr ""
3179
-
3180
- #: classes/AuditLogListView.php:274, classes/AuditLogListView.php:315, classes/WidgetManager.php:77, extensions/email-notifications/classes/Common.php:1116, extensions/search/classes/Filters/ObjectFilter.php:29, extensions/search/classes/Filters/ObjectFilter.php:53
3181
- msgid "Object"
3182
- msgstr ""
3183
-
3184
- #: classes/AuditLogListView.php:275, classes/AuditLogListView.php:318, classes/WidgetManager.php:78, extensions/email-notifications/classes/Common.php:1060, extensions/email-notifications/classes/Common.php:1117, extensions/reports/classes/CsvReportGenerator.php:85, extensions/reports/classes/HtmlReportGenerator.php:249, extensions/search/classes/Filters/EventTypeFilter.php:29, extensions/search/classes/Filters/EventTypeFilter.php:53
3185
- msgid "Event Type"
3186
- msgstr ""
3187
-
3188
- #: classes/AuditLogListView.php:382, classes/Models/Occurrence.php:90
3189
- msgid "Alert message not found."
3190
- msgstr ""
3191
-
3192
- #: classes/AuditLogListView.php:383, classes/Models/Occurrence.php:91
3193
- msgid "Alert description not found."
3194
- msgstr ""
3195
-
3196
- #: classes/ConstantManager.php:173, classes/Views/ToggleAlerts.php:444
3197
- msgid "Informational"
3198
- msgstr ""
3199
-
3200
- #: classes/ConstantManager.php:171, classes/Views/ToggleAlerts.php:442, extensions/search/classes/Filters/CodeFilter.php:75
3201
- msgid "Low"
3202
- msgstr ""
3203
-
3204
- #: classes/ConstantManager.php:169, classes/Views/ToggleAlerts.php:440, extensions/search/classes/Filters/CodeFilter.php:74
3205
- msgid "Medium"
3206
- msgstr ""
3207
-
3208
- #: classes/ConstantManager.php:167, classes/Views/ToggleAlerts.php:438, extensions/search/classes/Filters/CodeFilter.php:73
3209
- msgid "High"
3210
- msgstr ""
3211
-
3212
- #: classes/ConstantManager.php:165, classes/ConstantManager.php:159, classes/Views/ToggleAlerts.php:436, classes/Views/ToggleAlerts.php:430, extensions/search/classes/Filters/CodeFilter.php:72
3213
- msgid "Critical"
3214
- msgstr ""
3215
-
3216
- #: classes/ConstantManager.php:163, classes/Views/ToggleAlerts.php:446, classes/Views/ToggleAlerts.php:434
3217
- msgid "Notification"
3218
- msgstr ""
3219
-
3220
- #: classes/ConstantManager.php:161, classes/Views/ToggleAlerts.php:432
3221
- msgid "Warning"
3222
- msgstr ""
3223
-
3224
- #: classes/Settings.php:374
3225
- msgid "This function is deprecated"
3226
- msgstr ""
3227
-
3228
- #: classes/Settings.php:1914
3229
- msgid "Root directory of WordPress (excluding sub directories)"
3230
- msgstr ""
3231
-
3232
- #: classes/Settings.php:1915
3233
- msgid "WP Admin directory (/wp-admin/)"
3234
- msgstr ""
3235
-
3236
- #: classes/Settings.php:1916
3237
- msgid "WP Includes directory (/wp-includes/)"
3238
- msgstr ""
3239
-
3240
- #: classes/Settings.php:1917
3241
- msgid "/wp-content/ directory (excluding plugins, themes & uploads directories)"
3242
- msgstr ""
3243
-
3244
- #: classes/Settings.php:1918
3245
- msgid "Themes directory (/wp-content/themes/)"
3246
- msgstr ""
3247
-
3248
- #: classes/Settings.php:1919
3249
- msgid "Plugins directory (/wp-content/plugins/)"
3250
- msgstr ""
3251
-
3252
- #: classes/Settings.php:1920
3253
- msgid "Uploads directory (/wp-content/uploads/)"
3254
- msgstr ""
3255
-
3256
- #: classes/Settings.php:1925
3257
- msgid "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
3258
- msgstr ""
3259
-
3260
- #: classes/Settings.php:2079
3261
- msgid "None provided"
3262
- msgstr ""
3263
-
3264
- #: classes/ViewManager.php:141
3265
- msgid "WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade that plugin."
3266
- msgstr ""
3267
-
3268
- #: classes/ViewManager.php:283
3269
- msgid "Free Premium Trial"
3270
- msgstr ""
3271
-
3272
- #: classes/WidgetManager.php:55
3273
- msgid "Latest Events"
3274
- msgstr ""
3275
-
3276
- #: classes/WidgetManager.php:79, classes/Views/ToggleAlerts.php:300
3277
- msgid "Description"
3278
- msgstr ""
3279
-
3280
- #: classes/WidgetManager.php:71, extensions/logs-management/logs-management.php:273
3281
- msgid "No events found."
3282
- msgstr ""
3283
-
3284
- #. translators: 1 - mysqli error code, 2 - mysqli error message
3285
- #: classes/Connector/MySQLDB.php:68
3286
- msgid "Code %1$d: %2$s"
3287
- msgstr ""
3288
-
3289
- #: classes/Models/Occurrence.php:206
3290
- msgid "WFCM"
3291
- msgstr ""
3292
-
3293
- #. translators: 1: html that opens a link, 2: html that closes a link.
3294
- #: classes/Models/Occurrence.php:231
3295
- msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
3296
- msgstr ""
3297
-
3298
- #: classes/Sensors/Content.php:735
3299
- msgid "Default template"
3300
- msgstr ""
3301
-
3302
- #: classes/Sensors/Content.php:736, extensions/external-db/classes/ExternalStorageTab.php:235
3303
- msgid "Default"
3304
- msgstr ""
3305
-
3306
- #: classes/Sensors/Content.php:778
3307
- msgid "No previous image"
3308
- msgstr ""
3309
-
3310
- #: classes/Sensors/Content.php:779
3311
- msgid "No image"
3312
- msgstr ""
3313
-
3314
- #: classes/Sensors/Content.php:1137, classes/Sensors/Content.php:1145
3315
- msgid "Public"
3316
- msgstr ""
3317
-
3318
- #: classes/Sensors/Content.php:1135, classes/Sensors/Content.php:1143
3319
- msgid "Private"
3320
- msgstr ""
3321
-
3322
- #: classes/Sensors/Content.php:1133, classes/Sensors/Content.php:1141
3323
- msgid "Password Protected"
3324
- msgstr ""
3325
-
3326
- #: classes/Sensors/Content.php:1308
3327
- msgid "no tags"
3328
- msgstr ""
3329
-
3330
- #: classes/Sensors/Multisite.php:80
3331
- msgid "disabled"
3332
- msgstr ""
3333
-
3334
- #: classes/Sensors/Multisite.php:81
3335
- msgid "user accounts only"
3336
- msgstr ""
3337
-
3338
- #: classes/Sensors/Multisite.php:82
3339
- msgid "users can register new sites"
3340
- msgstr ""
3341
-
3342
- #: classes/Sensors/Multisite.php:83
3343
- msgid "sites & users can be registered"
3344
- msgstr ""
3345
-
3346
- #: classes/Sensors/System.php:200, classes/Sensors/System.php:201
3347
- msgid "latest posts"
3348
- msgstr ""
3349
-
3350
- #: classes/Sensors/System.php:200, classes/Sensors/System.php:201
3351
- msgid "static page"
3352
- msgstr ""
3353
-
3354
- #: classes/Sensors/System.php:380
3355
- msgid "automatically update to all new versions of WordPress"
3356
- msgstr ""
3357
-
3358
- #: classes/Sensors/System.php:380
3359
- msgid "automatically update maintenance and security releases only"
3360
- msgstr ""
3361
-
3362
- #: classes/ThirdPartyExtensions/GravityFormsExtension.php:16
3363
- msgid "Keep a record of when someone adds, modifies or deletes forms, entries and more in the Gravity Forms plugin."
3364
- msgstr ""
3365
-
3366
- #. translators: %s: Home URL
3367
- #: classes/Utilities/Emailer.php:54
3368
- msgid "WP Activity Log plugin disabled on %s"
3369
- msgstr ""
3370
-
3371
- #: classes/Utilities/Emailer.php:57
3372
- msgid "Hello admin,"
3373
- msgstr ""
3374
-
3375
- #. translators: 1. User display name, 2. Home URL, 3. Date and time
3376
- #: classes/Utilities/Emailer.php:62
3377
- msgid "This is a notification to let you know that the user %1$s has deactivated the plugin WP Activity Log on the website %2$s on %3$s."
3378
- msgstr ""
3379
-
3380
- #: classes/Utilities/PluginInstallAndActivate.php:82
3381
- msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
3382
- msgstr ""
3383
-
3384
- #: classes/Utilities/PluginInstallAndActivate.php:101, classes/Views/SetupWizard.php:834
3385
- msgid "Extension for "
3386
- msgstr ""
3387
-
3388
- #: classes/Utilities/PluginInstallAndActivate.php:110, classes/Views/SetupWizard.php:843
3389
- msgid "Install Extension"
3390
- msgstr ""
3391
-
3392
- #: classes/Utilities/PluginInstallAndActivate.php:106, classes/Views/SetupWizard.php:839
3393
- msgid "Extension installed, activate now?"
3394
- msgstr ""
3395
-
3396
- #: classes/Utilities/PluginInstallerAction.php:80
3397
- msgid "Tried to install a zip or slug that was not in the allowed list"
3398
- msgstr ""
3399
-
3400
- #: classes/Utilities/UserUtils.php:91
3401
- msgid "Username: "
3402
- msgstr ""
3403
-
3404
- #: classes/Utilities/UserUtils.php:92
3405
- msgid "First name: "
3406
- msgstr ""
3407
-
3408
- #: classes/Utilities/UserUtils.php:93
3409
- msgid "Last Name: "
3410
- msgstr ""
3411
-
3412
- #: classes/Utilities/UserUtils.php:94
3413
- msgid "Email: "
3414
- msgstr ""
3415
-
3416
- #: classes/Utilities/UserUtils.php:95
3417
- msgid "Nickname: "
3418
- msgstr ""
3419
-
3420
- #: classes/Views/AuditLog.php:98
3421
- msgid "Get email notifications about website changes, view logged-in users, do granular log searches, create detailed reports, and more."
3422
- msgstr ""
3423
-
3424
- #: classes/Views/AuditLog.php:99
3425
- msgid "Upgrade to premium today and get more out of your activity logs!"
3426
- msgstr ""
3427
-
3428
- #: classes/Views/AuditLog.php:102
3429
- msgid "Instant SMS & email alerts, search & filters, reports, users sessions management and much more!"
3430
- msgstr ""
3431
-
3432
- #: classes/Views/AuditLog.php:103
3433
- msgid "Upgrade to premium to get more out of your activity logs!"
3434
- msgstr ""
3435
-
3436
- #: classes/Views/AuditLog.php:106
3437
- msgid "See who logged in on your site in real-time, generate reports, get SMS & email alerts of critical changes and more!"
3438
- msgstr ""
3439
-
3440
- #: classes/Views/AuditLog.php:107
3441
- msgid "Unlock these and other powerful features with WP Activity Log Premium."
3442
- msgstr ""
3443
-
3444
- #: classes/Views/AuditLog.php:158
3445
- msgid "Learn more"
3446
- msgstr ""
3447
-
3448
- #: classes/Views/AuditLog.php:187
3449
- msgid "UPGRADE NOW"
3450
- msgstr ""
3451
-
3452
- #: classes/Views/AuditLog.php:189
3453
- msgid "Start Free Trial"
3454
- msgstr ""
3455
-
3456
- #: classes/Views/AuditLog.php:190
3457
- msgid "Dismiss the banner"
3458
- msgstr ""
3459
-
3460
- #: classes/Views/AuditLog.php:190
3461
- msgid "Close"
3462
- msgstr ""
3463
-
3464
- #: classes/Views/AuditLog.php:213
3465
- msgid "Help WP Activity Log improve."
3466
- msgstr ""
3467
-
3468
- #: classes/Views/AuditLog.php:214
3469
- msgid "You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data."
3470
- msgstr ""
3471
-
3472
- #: classes/Views/AuditLog.php:214
3473
- msgid "Read more about what data we collect and how."
3474
- msgstr ""
3475
-
3476
- #: classes/Views/AuditLog.php:216
3477
- msgid "Sure, opt-in"
3478
- msgstr ""
3479
-
3480
- #: classes/Views/AuditLog.php:217
3481
- msgid "No, thank you"
3482
- msgstr ""
3483
-
3484
- #: classes/Views/AuditLog.php:272
3485
- msgid "We noticed you have"
3486
- msgstr ""
3487
-
3488
- #: classes/Views/AuditLog.php:274
3489
- msgid "installed."
3490
- msgstr ""
3491
-
3492
- #: classes/Views/AuditLog.php:276
3493
- msgid "Install extension"
3494
- msgstr ""
3495
-
3496
- #: classes/Views/AuditLog.php:321
3497
- msgid "Activity Log Viewer"
3498
- msgstr ""
3499
-
3500
- #: classes/Views/AuditLog.php:348
3501
- msgid "Log Viewer"
3502
- msgstr ""
3503
-
3504
- #: classes/Views/AuditLog.php:505, classes/Views/Settings.php:324, classes/Views/ToggleAlerts.php:109, extensions/email-notifications/classes/AddNotification.php:224, extensions/email-notifications/classes/AddNotification.php:257, extensions/email-notifications/classes/EditNotification.php:226, extensions/email-notifications/classes/EditNotification.php:234, extensions/email-notifications/classes/EditNotification.php:230, extensions/email-notifications/classes/EditNotification.php:239, extensions/email-notifications/classes/EditNotification.php:267, extensions/external-db/classes/Settings.php:234
3505
- msgid "You do not have sufficient permissions to access this page."
3506
- msgstr ""
3507
-
3508
- #: classes/Views/AuditLog.php:554
3509
- msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
3510
- msgstr ""
3511
-
3512
- #: classes/Views/AuditLog.php:556, classes/Views/Settings.php:532, classes/Views/Settings.php:559, classes/Views/Settings.php:625, classes/Views/Settings.php:683, classes/Views/Settings.php:1118, classes/Views/Settings.php:1402, classes/Views/Settings.php:1443, classes/Views/Settings.php:1474, classes/Views/SetupWizard.php:562
3513
- msgid "Yes"
3514
- msgstr ""
3515
-
3516
- #: classes/Views/AuditLog.php:557, classes/Views/Settings.php:537, classes/Views/Settings.php:564, classes/Views/Settings.php:655, classes/Views/Settings.php:693, classes/Views/Settings.php:1123, classes/Views/Settings.php:1409, classes/Views/Settings.php:1450, classes/Views/Settings.php:1475, classes/Views/SetupWizard.php:567
3517
- msgid "No"
3518
- msgstr ""
3519
-
3520
- #: classes/Views/AuditLog.php:588
3521
- msgid "Please enter the number of alerts you would like to see on one page:"
3522
- msgstr ""
3523
-
3524
- #: classes/Views/AuditLog.php:590
3525
- msgid "No Results"
3526
- msgstr ""
3527
-
3528
- #: classes/Views/AuditLog.php:727, classes/Views/AuditLog.php:770, classes/Views/AuditLog.php:1048, classes/Views/AuditLog.php:1110, classes/Views/AuditLog.php:1163, classes/Views/Settings.php:239, classes/Views/Settings.php:1759, classes/Views/SetupWizard.php:96, extensions/search/search-init.php:398, extensions/search/search-init.php:446, extensions/email-notifications/classes/Notifications.php:559, extensions/external-db/classes/Connections.php:862, extensions/external-db/classes/Connections.php:887, extensions/external-db/classes/Connections.php:1018, extensions/external-db/classes/Mirroring.php:763, extensions/external-db/classes/Mirroring.php:818, extensions/external-db/classes/Settings.php:657, extensions/external-db/classes/Settings.php:833, extensions/external-db/classes/Settings.php:853, extensions/user-sessions/classes/Views.php:525, extensions/reports/classes/Views/Main.php:739
3529
- msgid "Nonce verification failed."
3530
- msgstr ""
3531
-
3532
- #: classes/Views/AuditLog.php:745
3533
- msgid "No users found."
3534
- msgstr ""
3535
-
3536
- #: classes/Views/AuditLog.php:817
3537
- msgid "Freemius opt choice not found."
3538
- msgstr ""
3539
-
3540
- #: classes/Views/AuditLog.php:810
3541
- msgid "Freemius opt choice selected."
3542
- msgstr ""
3543
-
3544
- #. translators: 1 - an opening link tag, 2 - the closing tag.
3545
- #: classes/Views/AuditLog.php:913
3546
- msgid "<br>An error occurred when trying to install and activate the plugin. Please try install it again from the %1$sevent settings%2$s page."
3547
- msgstr ""
3548
-
3549
- #: classes/Views/AuditLog.php:1012
3550
- msgid "WordPress Activity Log"
3551
- msgstr ""
3552
-
3553
- #: classes/Views/AuditLog.php:1013
3554
- msgid "When a user makes a change on your website the plugin will keep a record of that event here. Right now there is nothing because this is a new install."
3555
- msgstr ""
3556
-
3557
- #: classes/Views/AuditLog.php:1014
3558
- msgid "Thank you for using WP Activity Log"
3559
- msgstr ""
3560
-
3561
- #: classes/Views/AuditLog.php:1037, classes/Views/AuditLog.php:1147
3562
- msgid "You do not have sufficient permissions to dismiss this notice."
3563
- msgstr ""
3564
-
3565
- #: classes/Views/AuditLog.php:1105
3566
- msgid "Access Denied"
3567
- msgstr ""
3568
-
3569
- #: classes/Views/AuditLog.php:1200
3570
- msgid "Install the activity log extension for %1$s for more detailed logging of changes done in %2$s."
3571
- msgstr ""
3572
-
3573
- #: classes/Views/EmailNotifications.php:28
3574
- msgid "Notifications Extension"
3575
- msgstr ""
3576
-
3577
- #: classes/Views/EmailNotifications.php:35
3578
- msgid "Notifications &#8682;"
3579
- msgstr ""
3580
-
3581
- #: classes/Views/EmailNotifications.php:49
3582
- msgid "Email & SMS Notifications"
3583
- msgstr ""
3584
-
3585
- #: classes/Views/EmailNotifications.php:50
3586
- msgid "Get instantly alerted of important changes on your site via email notifications & SMS messages. Upgrade to premium and:"
3587
- msgstr ""
3588
-
3589
- #: classes/Views/EmailNotifications.php:53
3590
- msgid "Configure any type of email notification"
3591
- msgstr ""
3592
-
3593
- #: classes/Views/EmailNotifications.php:54
3594
- msgid "Configure SMS messages for instant critical alerts"
3595
- msgstr ""
3596
-
3597
- #: classes/Views/EmailNotifications.php:55
3598
- msgid "Receive notifications for when users login, change their password or change content"
3599
- msgstr ""
3600
-
3601
- #: classes/Views/EmailNotifications.php:56
3602
- msgid "Get alerted of site changes like plugin installs, theme changes etc"
3603
- msgstr ""
3604
-
3605
- #: classes/Views/EmailNotifications.php:57
3606
- msgid "Enable built-in security email notifications of suspicious user activity"
3607
- msgstr ""
3608
-
3609
- #: classes/Views/EmailNotifications.php:58
3610
- msgid "Personalize all email and SMS templates"
3611
- msgstr ""
3612
-
3613
- #: classes/Views/EmailNotifications.php:59
3614
- msgid "Use the trigger builder to configure any type of notification criteria!"
3615
- msgstr ""
3616
-
3617
- #: classes/Views/EmailNotifications.php:61
3618
- msgid "Getting started is really easy. You can use one of the plugin’s built-in notifications or create your own using the easy to use trigger builder."
3619
- msgstr ""
3620
-
3621
- #: classes/Views/EmailNotifications.php:64
3622
- msgid "Email and SMS notifications instantly alert you of important changes on your WordPress site."
3623
- msgstr ""
3624
-
3625
- #: classes/Views/EmailNotifications.php:68
3626
- msgid "Easily enable any of the built-in security and user management notifications."
3627
- msgstr ""
3628
-
3629
- #: classes/Views/EmailNotifications.php:72
3630
- msgid "Use the trigger builder to configure any type of email and SMS notification to get instantly alerted of site changes that are important to you and your business."
3631
- msgstr ""
3632
-
3633
- #: classes/Views/EmailNotifications.php:76
3634
- msgid "All email and SMS templates are configurable, allowing you to personalize them."
3635
- msgstr ""
3636
-
3637
- #: classes/Views/ExternalDB.php:28
3638
- msgid "External DB Extension"
3639
- msgstr ""
3640
-
3641
- #: classes/Views/ExternalDB.php:35
3642
- msgid "Integrations &#8682;"
3643
- msgstr ""
3644
-
3645
- #: classes/Views/ExternalDB.php:49
3646
- msgid "Activity log database & integration tools"
3647
- msgstr ""
3648
-
3649
- #: classes/Views/ExternalDB.php:50
3650
- msgid "There are several benefits to segregating the logs from the main site database, and to be able to mirror the logs to third party and centralized business solutions. Upgrade to premium and:"
3651
- msgstr ""
3652
-
3653
- #: classes/Views/ExternalDB.php:53
3654
- msgid "Store the audit logs of your sites on an external database"
3655
- msgstr ""
3656
-
3657
- #: classes/Views/ExternalDB.php:54
3658
- msgid "Configuring archiving and store older log data in a segregated database"
3659
- msgstr ""
3660
-
3661
- #: classes/Views/ExternalDB.php:55
3662
- msgid "Mirror the logs to syslog, Slack, Papertrail and central business communication services"
3663
- msgstr ""
3664
-
3665
- #: classes/Views/ExternalDB.php:56
3666
- msgid "Configure filters to filter what is mirrored and archived in the databases and services"
3667
- msgstr ""
3668
-
3669
- #: classes/Views/ExternalDB.php:61
3670
- msgid "Easily configure integration and database connections thanks to a user friendly wizard."
3671
- msgstr ""
3672
-
3673
- #: classes/Views/ExternalDB.php:65
3674
- msgid "Configure activity log filters for third party services connections."
3675
- msgstr ""
3676
-
3677
- #: classes/Views/ExternalDB.php:69
3678
- msgid "Configure an unlimited number of connections to different databases and third party services."
3679
- msgstr ""
3680
-
3681
- #: classes/Views/Help.php:62, classes/Views/Help.php:113, extensions/settings-import-export/settings-import-export.php:70
3682
- msgid "Help"
3683
- msgstr ""
3684
-
3685
- #: classes/Views/Help.php:71, classes/Views/Help.php:242, extensions/settings-import-export/settings-import-export.php:59, extensions/settings-import-export/settings-import-export.php:80
3686
- msgid "Contact Us"
3687
- msgstr ""
3688
-
3689
- #: classes/Views/Help.php:77, classes/Views/Help.php:264
3690
- msgid "System Info"
3691
- msgstr ""
3692
-
3693
- #: classes/Views/Help.php:127
3694
- msgid "Help & Contact Us"
3695
- msgstr ""
3696
-
3697
- #: classes/Views/Help.php:187
3698
- msgid "Getting Started"
3699
- msgstr ""
3700
-
3701
- #: classes/Views/Help.php:188
3702
- msgid "Getting started with WP Activity Log is really easy; once the plugin is installed it will automatically keep a log of everything that is happening on your website and you do not need to do anything. Watch the video below for a quick overview of the plugin."
3703
- msgstr ""
3704
-
3705
- #: classes/Views/Help.php:192
3706
- msgid "Plugin Support"
3707
- msgstr ""
3708
-
3709
- #: classes/Views/Help.php:194
3710
- msgid "Have you encountered or noticed any issues while using WP Activity Log plugin?"
3711
- msgstr ""
3712
-
3713
- #: classes/Views/Help.php:195
3714
- msgid "Or you want to report something to us? Click any of the options below to post on the plugin's forum or contact our support directly."
3715
- msgstr ""
3716
-
3717
- #: classes/Views/Help.php:197
3718
- msgid "Free Support Forum"
3719
- msgstr ""
3720
-
3721
- #: classes/Views/Help.php:199
3722
- msgid "Free Support Email"
3723
- msgstr ""
3724
-
3725
- #: classes/Views/Help.php:203
3726
- msgid "Plugin Documentation"
3727
- msgstr ""
3728
-
3729
- #: classes/Views/Help.php:205
3730
- msgid "For more technical information about the WP Activity Log plugin please visit the plugin’s knowledge base."
3731
- msgstr ""
3732
-
3733
- #: classes/Views/Help.php:206
3734
- msgid "Refer to the list of WordPress security events for a complete list of Events and IDs that the plugin uses to keep a log of all the changes in the WordPress activity log."
3735
- msgstr ""
3736
-
3737
- #: classes/Views/Help.php:208
3738
- msgid "Plugin Website"
3739
- msgstr ""
3740
-
3741
- #: classes/Views/Help.php:210
3742
- msgid "Knowledge Base"
3743
- msgstr ""
3744
-
3745
- #: classes/Views/Help.php:212
3746
- msgid "List of activity logs event IDs"
3747
- msgstr ""
3748
-
3749
- #: classes/Views/Help.php:216
3750
- msgid "Rate WP Activity Log"
3751
- msgstr ""
3752
-
3753
- #: classes/Views/Help.php:218
3754
- msgid "We work really hard to deliver a plugin that enables you to keep a record of all the changes that are happening on your WordPress."
3755
- msgstr ""
3756
-
3757
- #: classes/Views/Help.php:219
3758
- msgid "It takes thousands of man-hours every year and endless amount of dedication to research, develop and maintain the free edition of WP Activity Log."
3759
- msgstr ""
3760
-
3761
- #: classes/Views/Help.php:220
3762
- msgid "Therefore if you like what you see, and find WP Activity Log useful we ask you nothing more than to please rate our plugin."
3763
- msgstr ""
3764
-
3765
- #: classes/Views/Help.php:221
3766
- msgid "We appreciate every star!"
3767
- msgstr ""
3768
-
3769
- #: classes/Views/Help.php:231
3770
- msgid "Rate Plugin"
3771
- msgstr ""
3772
-
3773
- #: classes/Views/Help.php:282
3774
- msgid "Enforce strong password policies on WordPress"
3775
- msgstr ""
3776
-
3777
- #: classes/Views/Help.php:288
3778
- msgid "Automatically identify unauthorized file changes on WordPress"
3779
- msgstr ""
3780
-
3781
- #: classes/Views/Help.php:294
3782
- msgid "Add an extra layer of security to your login pages with 2FA & require your users to use it."
3783
- msgstr ""
3784
-
3785
- #: classes/Views/Help.php:300
3786
- msgid "See the child sites activity logs from the central MainWP dashboard"
3787
- msgstr ""
3788
-
3789
- #: classes/Views/Help.php:306
3790
- msgid "Our other WordPress plugins"
3791
- msgstr ""
3792
-
3793
- #: classes/Views/Help.php:317
3794
- msgid "LEARN MORE"
3795
- msgstr ""
3796
-
3797
- #: classes/Views/LogInUsers.php:28
3798
- msgid "User Sessions Management Extension"
3799
- msgstr ""
3800
-
3801
- #: classes/Views/LogInUsers.php:35
3802
- msgid "Logged In Users &#8682;"
3803
- msgstr ""
3804
-
3805
- #: classes/Views/LogInUsers.php:49
3806
- msgid "Real-Time Users Sessions Management"
3807
- msgstr ""
3808
-
3809
- #: classes/Views/LogInUsers.php:50
3810
- msgid "Better manage your users’ logins and sessions. Upgrade to premium and:"
3811
- msgstr ""
3812
-
3813
- #: classes/Views/LogInUsers.php:54
3814
- msgid "See who is logged in to your site"
3815
- msgstr ""
3816
-
3817
- #: classes/Views/LogInUsers.php:55
3818
- msgid "When they logged in and from where"
3819
- msgstr ""
3820
-
3821
- #: classes/Views/LogInUsers.php:56
3822
- msgid "The last change they have done in real-time"
3823
- msgstr ""
3824
-
3825
- #: classes/Views/LogInUsers.php:57
3826
- msgid "Terminate any users’ session with a click of a button"
3827
- msgstr ""
3828
-
3829
- #: classes/Views/LogInUsers.php:58
3830
- msgid "Limit or block multiple sessions for the same user"
3831
- msgstr ""
3832
-
3833
- #: classes/Views/LogInUsers.php:59
3834
- msgid "Get alerted of multiple same user sessions"
3835
- msgstr ""
3836
-
3837
- #: classes/Views/LogInUsers.php:63
3838
- msgid "See who is logged in to your WordPress site and multisite network in real-time."
3839
- msgstr ""
3840
-
3841
- #: classes/Views/LogInUsers.php:67
3842
- msgid "Limit, manage and block multiple same user sessions easily."
3843
- msgstr ""
3844
-
3845
- #: classes/Views/Reports.php:28
3846
- msgid "Reports Extension"
3847
- msgstr ""
3848
-
3849
- #: classes/Views/Reports.php:35
3850
- msgid "Reports &#8682;"
3851
- msgstr ""
3852
-
3853
- #: classes/Views/Reports.php:49
3854
- msgid "Individual, Scheduled & Automated Reports"
3855
- msgstr ""
3856
-
3857
- #: classes/Views/Reports.php:50
3858
- msgid "Many are not fans of reports, however reports are vital in business. With them you can make informed decisions that allow you to improve user productivity and the business. Upgrade to Premium so you can:"
3859
- msgstr ""
3860
-
3861
- #: classes/Views/Reports.php:53
3862
- msgid "Generate any type of user and site (in multisite) activity report"
3863
- msgstr ""
3864
-
3865
- #: classes/Views/Reports.php:54
3866
- msgid "Automate and schedule daily, weekly, monthly and quarterly reports"
3867
- msgstr ""
3868
-
3869
- #: classes/Views/Reports.php:55
3870
- msgid "Received reports automatically via email"
3871
- msgstr ""
3872
-
3873
- #: classes/Views/Reports.php:56
3874
- msgid "Create statistics reports about users’ views, logins, activity from IP addresses & more"
3875
- msgstr ""
3876
-
3877
- #: classes/Views/Reports.php:58
3878
- msgid "Reports are vital to the success of your business and management of your site."
3879
- msgstr ""
3880
-
3881
- #: classes/Views/Reports.php:61
3882
- msgid "Generate a HTML or CSV report."
3883
- msgstr ""
3884
-
3885
- #: classes/Views/Reports.php:65
3886
- msgid "Easily configure a criteria for your reports."
3887
- msgstr ""
3888
-
3889
- #: classes/Views/Reports.php:69
3890
- msgid "Schedule reports that are sent to you by email automatically."
3891
- msgstr ""
3892
-
3893
- #: classes/Views/Search.php:28
3894
- msgid "Search Extension"
3895
- msgstr ""
3896
-
3897
- #: classes/Views/Search.php:35
3898
- msgid "Search &#8682;"
3899
- msgstr ""
3900
-
3901
- #: classes/Views/Search.php:49
3902
- msgid "Search & Filters for the Activity Log"
3903
- msgstr ""
3904
-
3905
- #: classes/Views/Search.php:50
3906
- msgid "You can find all the information you want in the activity log, if you know what you are looking for and have the right tools. Upgrade to premium so you can:"
3907
- msgstr ""
3908
-
3909
- #: classes/Views/Search.php:53
3910
- msgid "Do text searches and use filters to fine tune the search results"
3911
- msgstr ""
3912
-
3913
- #: classes/Views/Search.php:54
3914
- msgid "Easily find when and who did a specific change on your site"
3915
- msgstr ""
3916
-
3917
- #: classes/Views/Search.php:55
3918
- msgid "Easily identify and track back suspicious user behaviour"
3919
- msgstr ""
3920
-
3921
- #: classes/Views/Search.php:56
3922
- msgid "Search for the cause of a problem and ease troubleshooting"
3923
- msgstr ""
3924
-
3925
- #: classes/Views/Search.php:57
3926
- msgid "Save search terms and filters for future use and improved productivity"
3927
- msgstr ""
3928
-
3929
- #: classes/Views/Search.php:62
3930
- msgid "Use the text search to find a specific change."
3931
- msgstr ""
3932
-
3933
- #: classes/Views/Search.php:66
3934
- msgid "Configure any filter you need to fine tune the search results and find what you are looking for with much less effort."
3935
- msgstr ""
3936
-
3937
- #: classes/Views/Search.php:70
3938
- msgid "Save search terms and filters to run the searches again in the future with just a single click."
3939
- msgstr ""
3940
-
3941
- #: classes/Views/Settings.php:89
3942
- msgid "General"
3943
- msgstr ""
3944
-
3945
- #: classes/Views/Settings.php:96
3946
- msgid "Activity log viewer"
3947
- msgstr ""
3948
-
3949
- #: classes/Views/Settings.php:103
3950
- msgid "File changes"
3951
- msgstr ""
3952
-
3953
- #: classes/Views/Settings.php:109
3954
- msgid "Exclude objects"
3955
- msgstr ""
3956
-
3957
- #: classes/Views/Settings.php:116
3958
- msgid "Advanced settings"
3959
- msgstr ""
3960
-
3961
- #: classes/Views/Settings.php:165, classes/Views/Settings.php:179, extensions/email-notifications/classes/SMSProviderSettings.php:143
3962
- msgid "Settings"
3963
- msgstr ""
3964
-
3965
- #: classes/Views/Settings.php:206
3966
- msgid "Current user is not allowed to save settings."
3967
- msgstr ""
3968
-
3969
- #: classes/Views/Settings.php:212
3970
- msgid "Unknown settings tab."
3971
- msgstr ""
3972
-
3973
- #: classes/Views/Settings.php:224, classes/Views/Settings.php:1769, classes/Views/Settings.php:1792, classes/Views/SetupWizard.php:83, extensions/email-notifications/classes/Notifications.php:158, extensions/external-db/classes/Connections.php:847, extensions/external-db/classes/Connections.php:878, extensions/external-db/classes/Connections.php:901, extensions/external-db/classes/Connections.php:1014, extensions/external-db/classes/Mirroring.php:716, extensions/external-db/classes/Mirroring.php:782, extensions/external-db/classes/Settings.php:644, extensions/external-db/classes/Settings.php:817, extensions/external-db/classes/Settings.php:848
3974
- msgid "Access Denied."
3975
  msgstr ""
3976
 
3977
- #: classes/Views/Settings.php:249, classes/Views/SetupWizard.php:106
3978
- msgid "Invalid input."
3979
  msgstr ""
3980
 
3981
- #: classes/Views/Settings.php:340, classes/Views/ToggleAlerts.php:126, extensions/external-db/classes/Settings.php:247
3982
- msgid "Settings have been saved."
3983
  msgstr ""
3984
 
3985
- #: classes/Views/Settings.php:336
3986
- msgid "Message sent successfully."
3987
  msgstr ""
3988
 
3989
- #: classes/Views/Settings.php:346, classes/Views/ToggleAlerts.php:132, extensions/external-db/classes/Settings.php:252, extensions/user-sessions/classes/View/Sessions.php:146
3990
- msgid "Error: "
3991
  msgstr ""
3992
 
3993
- #: classes/Views/Settings.php:364
3994
- msgid "No data is old enough to be purged."
3995
  msgstr ""
3996
 
3997
- #: classes/Views/Settings.php:358
3998
- msgid "Old data successfully purged."
3999
  msgstr ""
4000
 
4001
- #: classes/Views/Settings.php:395
4002
- msgid "Send Message"
4003
  msgstr ""
4004
 
4005
- #: classes/Views/Settings.php:405
4006
- msgid "Do you want to remove all data when the plugin is deleted?"
4007
  msgstr ""
4008
 
4009
- #: classes/Views/Settings.php:453
4010
- msgid "Use infinite scroll or pagination for the event viewer?"
4011
  msgstr ""
4012
 
4013
- #. translators: Learn more link.
4014
- #: classes/Views/Settings.php:458
4015
- msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
4016
  msgstr ""
4017
 
4018
- #: classes/Views/Settings.php:459
4019
- msgid "(Premium feature)"
4020
  msgstr ""
4021
 
4022
- #: classes/Views/Settings.php:466
4023
- msgid "Select event viewer view type:"
4024
  msgstr ""
4025
 
4026
- #: classes/Views/Settings.php:471
4027
- msgid "Infinite Scroll (Recommended)"
4028
  msgstr ""
4029
 
4030
- #: classes/Views/Settings.php:476
4031
- msgid "Pagination"
4032
  msgstr ""
4033
 
4034
- #: classes/Views/Settings.php:487
4035
- msgid "Do you want the activity log viewer to auto refresh?"
4036
  msgstr ""
4037
 
4038
- #: classes/Views/Settings.php:488
4039
- msgid "The activity log viewer auto refreshes every 30 seconds when opened so you can see the latest events as they happen almost in real time."
4040
  msgstr ""
4041
 
4042
- #: classes/Views/Settings.php:492
4043
- msgid "Refresh activity log viewer"
4044
  msgstr ""
4045
 
4046
- #: classes/Views/Settings.php:498
4047
- msgid "Auto refresh"
4048
  msgstr ""
4049
 
4050
- #: classes/Views/Settings.php:503
4051
- msgid "Do not auto refresh"
4052
  msgstr ""
4053
 
4054
- #: classes/Views/Settings.php:513
4055
- msgid "Display latest events widget in Dashboard & Admin bar"
4056
  msgstr ""
4057
 
4058
- #. translators: Max number of dashboard widget alerts.
4059
- #: classes/Views/Settings.php:518
4060
- msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
4061
  msgstr ""
4062
 
4063
- #: classes/Views/Settings.php:526
4064
- msgid "Dashboard Widget"
4065
  msgstr ""
4066
 
4067
- #: classes/Views/Settings.php:547
4068
- msgid "Admin Bar Notification"
4069
  msgstr ""
4070
 
4071
- #: classes/Views/Settings.php:550
4072
- msgid "Admin Bar Notification (Premium)"
4073
  msgstr ""
4074
 
4075
- #: classes/Views/Settings.php:574
4076
- msgid "Admin Bar Notification Updates"
4077
  msgstr ""
4078
 
4079
- #: classes/Views/Settings.php:577
4080
- msgid "Admin Bar Notification Updates (Premium)"
4081
  msgstr ""
4082
 
4083
- #: classes/Views/Settings.php:586
4084
- msgid "Update in near real time"
4085
  msgstr ""
4086
 
4087
- #: classes/Views/Settings.php:591
4088
- msgid "Update only on page refreshes"
 
4089
  msgstr ""
4090
 
4091
- #: classes/Views/Settings.php:601
4092
- msgid "Add user notification on the WordPress login page"
4093
  msgstr ""
4094
 
4095
- #: classes/Views/Settings.php:602
4096
- msgid "Many compliance regulations (such as the GDPR) require website administrators to tell the users of their website that all the changes they do when logged in are being logged."
 
 
 
 
 
4097
  msgstr ""
4098
 
4099
- #: classes/Views/Settings.php:606
4100
- msgid "Login Page Notification"
 
 
 
 
 
4101
  msgstr ""
4102
 
4103
- #: classes/Views/Settings.php:631
4104
- msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
4105
  msgstr ""
4106
 
4107
- #: classes/Views/Settings.php:649
4108
- msgid "<strong>Note: </strong>"
4109
  msgstr ""
4110
 
4111
- #: classes/Views/Settings.php:649
4112
- msgid "The only HTML code allowed in the login page notification is for links ( < a href >< /a > )."
 
 
 
4113
  msgstr ""
4114
 
4115
- #: classes/Views/Settings.php:665
4116
- msgid "Is your website running behind a firewall or reverse proxy?"
4117
  msgstr ""
4118
 
4119
- #. translators: Learn more link.
4120
- #: classes/Views/Settings.php:670
4121
- msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
4122
  msgstr ""
4123
 
4124
- #: classes/Views/Settings.php:671, classes/Views/Settings.php:717, classes/Views/Settings.php:772
4125
- msgid "learn more"
4126
  msgstr ""
4127
 
4128
- #: classes/Views/Settings.php:678
4129
- msgid "Reverse Proxy / Firewall Options"
 
4130
  msgstr ""
4131
 
4132
- #: classes/Views/Settings.php:688
4133
- msgid "Filter internal IP addresses from the proxy headers. Enable this option only if you are are still seeing the internal IP addresses of the firewall or proxy."
4134
  msgstr ""
4135
 
4136
- #: classes/Views/Settings.php:704
4137
- msgid "Who can change the plugin settings?"
4138
  msgstr ""
4139
 
4140
- #. translators: Learn more link.
4141
- #: classes/Views/Settings.php:716
4142
- msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
4143
  msgstr ""
4144
 
4145
- #: classes/Views/Settings.php:727
4146
- msgid "Restrict plugin access"
4147
  msgstr ""
4148
 
4149
- #: classes/Views/Settings.php:732, classes/Views/Settings.php:787
4150
- msgid "Only me"
4151
  msgstr ""
4152
 
4153
- #: classes/Views/Settings.php:741
4154
- msgid "All administrators"
 
4155
  msgstr ""
4156
 
4157
- #: classes/Views/Settings.php:739
4158
- msgid "All superadmins"
4159
  msgstr ""
4160
 
4161
- #: classes/Views/Settings.php:754
4162
- msgid "Allow other users to view the activity log"
4163
  msgstr ""
4164
 
4165
- #: classes/Views/Settings.php:768
4166
- msgid "By default only users with administrator role can view the WordPress activity log. To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4167
  msgstr ""
4168
 
4169
- #: classes/Views/Settings.php:766
4170
- msgid "By default only super administrators and the child sites' administrators can view the WordPress activity log. Though you can change this by using the setting below."
4171
  msgstr ""
4172
 
4173
- #: classes/Views/Settings.php:781, classes/Views/Settings.php:811
4174
- msgid "Can view events"
4175
  msgstr ""
4176
 
4177
- #: classes/Views/Settings.php:788
4178
- msgid "Super administators only"
4179
  msgstr ""
4180
 
4181
- #: classes/Views/Settings.php:789
4182
- msgid "Super administators and site administrators"
4183
  msgstr ""
4184
 
4185
- #: classes/Views/Settings.php:805
4186
- msgid "To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
4187
  msgstr ""
4188
 
4189
- #: classes/Views/Settings.php:811
4190
- msgid "Can also view events"
4191
  msgstr ""
4192
 
4193
- #: classes/Views/Settings.php:817, classes/Views/Settings.php:1210, classes/Views/Settings.php:1231, classes/Views/Settings.php:1252, classes/Views/Settings.php:1274, classes/Views/Settings.php:1321
4194
- msgid "Add"
4195
  msgstr ""
4196
 
4197
- #: classes/Views/Settings.php:820
4198
- msgid "Specify the username or the users which do not have an admin role but can also see the WordPress activity role. You can also specify roles."
4199
  msgstr ""
4200
 
4201
- #: classes/Views/Settings.php:834, classes/Views/Settings.php:1217, classes/Views/Settings.php:1238, classes/Views/Settings.php:1259, classes/Views/Settings.php:1281, classes/Views/Settings.php:1329, classes/Views/Settings.php:1583, extensions/search/search-init.php:303, extensions/search/classes/FilterManager.php:387
4202
- msgid "Remove"
4203
  msgstr ""
4204
 
4205
- #: classes/Views/Settings.php:846
4206
- msgid "Which email address should the plugin use as a from address?"
4207
  msgstr ""
4208
 
4209
- #: classes/Views/Settings.php:847
4210
- msgid "By default when the plugin sends an email notification it uses the email address specified in this website’s general settings. Though you can change the email address and display name from this section."
4211
  msgstr ""
4212
 
4213
- #: classes/Views/Settings.php:851
4214
- msgid "From Email & Name"
4215
  msgstr ""
4216
 
4217
- #: classes/Views/Settings.php:857
4218
- msgid "Use the email address from the WordPress general settings"
4219
  msgstr ""
4220
 
4221
- #: classes/Views/Settings.php:862
4222
- msgid "Use another email address"
4223
  msgstr ""
4224
 
4225
- #: classes/Views/Settings.php:866
4226
- msgid "Email Address"
4227
  msgstr ""
4228
 
4229
- #: classes/Views/Settings.php:871
4230
- msgid "Display Name"
4231
  msgstr ""
4232
 
4233
- #: classes/Views/Settings.php:882
4234
- msgid "Do you want to hide the plugin from the list of installed plugins?"
4235
  msgstr ""
4236
 
4237
- #: classes/Views/Settings.php:883
4238
- msgid "By default all installed plugins are listed in the plugins page. Set this option to Yes remove WP Activity Log from the list of installed plugins for users who are unable to access the WP Activity Log settings."
4239
  msgstr ""
4240
 
4241
- #: classes/Views/Settings.php:887
4242
- msgid "Hide Plugin in Plugins Page"
4243
  msgstr ""
4244
 
4245
- #: classes/Views/Settings.php:892
4246
- msgid "Yes, hide the plugin and any WP Activity Log plugin extensions from the list of installed plugins"
4247
  msgstr ""
4248
 
4249
- #: classes/Views/Settings.php:897
4250
- msgid "No, do not hide the plugin"
4251
  msgstr ""
4252
 
4253
- #: classes/Views/Settings.php:963
4254
- msgid "For how long do you want to keep the activity log events (Retention settings) ?"
4255
  msgstr ""
4256
 
4257
- #: classes/Views/Settings.php:966
4258
- msgid "The plugin uses an efficient way to store the activity log data in the WordPress database, though the more data you keep the more disk space will be required. "
4259
  msgstr ""
4260
 
4261
- #: classes/Views/Settings.php:967
4262
- msgid "<a href=\"https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">Upgrade to Premium</a> to store the activity log data in an external database."
4263
  msgstr ""
4264
 
4265
- #: classes/Views/Settings.php:980
4266
- msgid "What timestamp you would like to see in the WordPress activity log?"
4267
  msgstr ""
4268
 
4269
- #: classes/Views/Settings.php:981
4270
- msgid "Note that the WordPress' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference."
4271
  msgstr ""
4272
 
4273
- #: classes/Views/Settings.php:985
4274
- msgid "Events Timestamp"
4275
  msgstr ""
4276
 
4277
- #: classes/Views/Settings.php:1005
4278
- msgid "UTC"
4279
  msgstr ""
4280
 
4281
- #: classes/Views/Settings.php:1011
4282
- msgid "Timezone configured on this WordPress website"
4283
  msgstr ""
4284
 
4285
- #: classes/Views/Settings.php:1018
4286
- msgid "Show Milliseconds"
4287
  msgstr ""
4288
 
4289
- #: classes/Views/Settings.php:1025
4290
- msgid "Show Milliseconds in list view"
4291
  msgstr ""
4292
 
4293
- #: classes/Views/Settings.php:1035
4294
- msgid "What user information should be displayed in the WordPress activity log?"
4295
  msgstr ""
4296
 
4297
- #: classes/Views/Settings.php:1036
4298
- msgid "Usernames might not be the same as a user's first and last name so it can be difficult to recognize whose user was that did a change. When there is no first & last name or public display name configured the plugin will revert back to the WordPress username."
4299
  msgstr ""
4300
 
4301
- #: classes/Views/Settings.php:1040
4302
- msgid "User information in Activity log"
4303
  msgstr ""
4304
 
4305
- #: classes/Views/Settings.php:1046
4306
- msgid "WordPress username"
4307
  msgstr ""
4308
 
4309
- #: classes/Views/Settings.php:1051
4310
- msgid "First name & last name"
4311
  msgstr ""
4312
 
4313
- #: classes/Views/Settings.php:1056
4314
- msgid "Configured public display name"
4315
  msgstr ""
4316
 
4317
- #: classes/Views/Settings.php:1066
4318
- msgid "Select the columns to be displayed in the WordPress activity log"
4319
  msgstr ""
4320
 
4321
- #: classes/Views/Settings.php:1067
4322
- msgid "When you deselect a column it won’t be shown in the activity log viewer in both views. The data will still be recorded by the plugin."
4323
  msgstr ""
4324
 
4325
- #: classes/Views/Settings.php:1071
4326
- msgid "Activity log columns selection"
4327
  msgstr ""
4328
 
4329
- #: classes/Views/Settings.php:1090
4330
- msgid "Info (used in Grid view mode only)"
4331
  msgstr ""
4332
 
4333
- #: classes/Views/Settings.php:1088
4334
- msgid "Source IP Address"
4335
  msgstr ""
4336
 
4337
- #: classes/Views/Settings.php:1084
4338
- msgid "Date & Time"
4339
  msgstr ""
4340
 
4341
- #: classes/Views/Settings.php:1080, extensions/email-notifications/classes/Common.php:1110, extensions/email-notifications/classes/Common.php:1146, extensions/email-notifications/classes/Common.php:1175, extensions/search/classes/Filters/AlertFilter.php:26, extensions/search/classes/Filters/AlertFilter.php:51
4342
- msgid "Event ID"
4343
  msgstr ""
4344
 
4345
- #: classes/Views/Settings.php:1106
4346
- msgid "Do you want to keep a log of WordPress background activity?"
4347
  msgstr ""
4348
 
4349
- #: classes/Views/Settings.php:1108
4350
- msgid "WordPress does a lot of things in the background that you do not necessarily need to know about, such as; deletion of post revisions, deletion of auto saved drafts etc. By default the plugin does not report them since there might be a lot and are irrelevant to the user."
4351
  msgstr ""
4352
 
4353
- #: classes/Views/Settings.php:1113
4354
- msgid "Enable Events for WordPress Background Activity"
4355
  msgstr ""
4356
 
4357
- #: classes/Views/Settings.php:1188
4358
- msgid "Configure how often file changes scan run and other settings from the"
4359
  msgstr ""
4360
 
4361
- #: classes/Views/Settings.php:1188
4362
- msgid "Website File Changes plugin settings"
4363
  msgstr ""
4364
 
4365
- #: classes/Views/Settings.php:1172, classes/Views/ToggleAlerts.php:522
4366
- msgid "Website File Changes Monitor"
4367
  msgstr ""
4368
 
4369
- #: classes/Views/Settings.php:1173, classes/Views/ToggleAlerts.php:523
4370
- msgid "To keep a log of file changes please install Website File Changes Monitor, a plugin which is also developed by us."
4371
  msgstr ""
4372
 
4373
- #: classes/Views/Settings.php:1174, classes/Views/ToggleAlerts.php:524
4374
- msgid "Install plugin now"
4375
  msgstr ""
4376
 
4377
- #: classes/Views/Settings.php:1174, classes/Views/ToggleAlerts.php:524
4378
- msgid "Learn More"
4379
  msgstr ""
4380
 
4381
- #: classes/Views/Settings.php:1202
4382
- msgid "By default the plugin keeps a log of all user changes done on your WordPress website. Use the setting below to exclude any objects from the activity log. When an object is excluded from the activity log, any event in which that object is referred will not be logged in the activity log."
4383
  msgstr ""
4384
 
4385
- #: classes/Views/Settings.php:1206
4386
- msgid "Exclude Users:"
4387
  msgstr ""
4388
 
4389
- #: classes/Views/Settings.php:1227
4390
- msgid "Exclude Roles:"
4391
  msgstr ""
4392
 
4393
- #: classes/Views/Settings.php:1248
4394
- msgid "Exclude IP Address(es):"
4395
  msgstr ""
4396
 
4397
- #: classes/Views/Settings.php:1264
4398
- msgid "You can exclude an individual IP address or a range of IP addresses. To exclude a range use the following format: [first IP]-[last octet of the last IP]. Example: 172.16.180.6-127."
4399
  msgstr ""
4400
 
4401
- #: classes/Views/Settings.php:1270
4402
- msgid "Exclude Post Type:"
4403
  msgstr ""
4404
 
4405
- #: classes/Views/Settings.php:1286
4406
- msgid "WordPress has the post and page post types by default though your website might use more post types (custom post types). You can exclude all post types, including the default WordPress ones."
4407
  msgstr ""
4408
 
4409
- #: classes/Views/Settings.php:1293
4410
- msgid "Exclude custom post fields:"
4411
  msgstr ""
4412
 
4413
- #: classes/Views/Settings.php:1301
4414
- msgid "Exclude custom user fields:"
4415
  msgstr ""
4416
 
4417
- #: classes/Views/Settings.php:1334
4418
- msgid "You can use the * wildcard to exclude multiple matching custom fields. For example to exclude all custom fields starting with wp123 enter wp123*"
4419
  msgstr ""
4420
 
4421
- #: classes/Views/Settings.php:1361
4422
- msgid "These settings are for advanced users."
4423
  msgstr ""
4424
 
4425
- #: classes/Views/Settings.php:1362
4426
- msgid "If you have any questions <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">contact us</a>."
4427
  msgstr ""
4428
 
4429
- #: classes/Views/Settings.php:1365
4430
- msgid "Reset plugin settings to default"
4431
  msgstr ""
4432
 
4433
- #: classes/Views/Settings.php:1366
4434
- msgid "Use this button to <em>factory reset</em> the plugin. This means that all the configured settings will be reset to default and all email notifications, scheduled reports, external database / third party services connections, archiving and mirroring rule will be deleted. NOTE: the activity log data will not be purged. Use the setting below to purge the activity log."
4435
  msgstr ""
4436
 
4437
- #: classes/Views/Settings.php:1370
4438
- msgid "Reset Settings"
4439
  msgstr ""
4440
 
4441
- #: classes/Views/Settings.php:1372
4442
- msgid "RESET"
4443
  msgstr ""
4444
 
4445
- #: classes/Views/Settings.php:1378
4446
- msgid "Purge the WordPress activity log"
4447
  msgstr ""
4448
 
4449
- #: classes/Views/Settings.php:1379
4450
- msgid "Click the Purge button below to delete all the data from the WordPress activity log and start afresh."
4451
  msgstr ""
4452
 
4453
- #: classes/Views/Settings.php:1383
4454
- msgid "Purge Activity Log"
4455
  msgstr ""
4456
 
4457
- #: classes/Views/Settings.php:1385
4458
- msgid "PURGE"
4459
  msgstr ""
4460
 
4461
- #: classes/Views/Settings.php:1392
4462
- msgid "MainWP Child Site Stealth Mode"
4463
  msgstr ""
4464
 
4465
- #: classes/Views/Settings.php:1393
4466
- msgid "This option is enabled automatically when the plugin detects the MainWP Child plugin on the site. When this setting is enabled plugin access is restricted to the administrator who installs the plugin, the plugin is not shown in the list of installed plugins and no admin notifications are shown. Disable this option to change the plugin to the default setup."
4467
  msgstr ""
4468
 
4469
- #: classes/Views/Settings.php:1397
4470
- msgid "Enable MainWP Child Site Stealth Mode"
4471
  msgstr ""
4472
 
4473
- #: classes/Views/Settings.php:1417
4474
- msgid "Admin blocking plugins support"
4475
  msgstr ""
4476
 
4477
- #: classes/Views/Settings.php:1422
4478
- msgid "Enable early plugin loading on sites that use admin blocking plugins"
4479
  msgstr ""
4480
 
4481
- #: classes/Views/Settings.php:1431
4482
- msgid "Do you want to delete the plugin data from the database upon uninstall?"
4483
  msgstr ""
4484
 
4485
- #: classes/Views/Settings.php:1432
4486
- msgid "The plugin saves the activity log data and settings in the WordPress database. By default upon uninstalling the plugin the data is kept in the database so if it is installed again, you can still access the data. If the data is deleted it is not possible to recover it so you won't be able to access it again even when you reinstall the plugin."
4487
  msgstr ""
4488
 
4489
- #: classes/Views/Settings.php:1436
4490
- msgid "Remove Data on Uninstall"
4491
  msgstr ""
4492
 
4493
- #: classes/Views/Settings.php:1461
4494
- msgid "Are you sure you want to reset all the plugin settings to default? This action cannot be undone."
4495
  msgstr ""
4496
 
4497
- #: classes/Views/Settings.php:1471
4498
- msgid "Are you sure you want to purge all the activity log data?"
4499
  msgstr ""
4500
 
4501
- #: classes/Views/Settings.php:1495
4502
- msgid "MainWP Child plugin is not active on this website."
4503
  msgstr ""
4504
 
4505
- #: classes/Views/Settings.php:1576
4506
- msgid "The specified value is not a valid URL!"
4507
  msgstr ""
4508
 
4509
- #: classes/Views/Settings.php:1577
4510
- msgid "The specified value is not a valid post type!"
4511
  msgstr ""
4512
 
4513
- #: classes/Views/Settings.php:1578
4514
- msgid "The specified value is not a valid IP address!"
4515
  msgstr ""
4516
 
4517
- #: classes/Views/Settings.php:1579
4518
- msgid "The specified value is not a user nor a role!"
4519
  msgstr ""
4520
 
4521
- #: classes/Views/Settings.php:1580
4522
- msgid "Filename cannot be added because it contains invalid characters."
4523
  msgstr ""
4524
 
4525
- #: classes/Views/Settings.php:1581
4526
- msgid "File extension cannot be added because it contains invalid characters."
4527
  msgstr ""
4528
 
4529
- #: classes/Views/Settings.php:1582
4530
- msgid "Directory cannot be added because it contains invalid characters."
4531
  msgstr ""
4532
 
4533
- #: classes/Views/Settings.php:1584
4534
- msgid "Please save any changes before switching tabs."
4535
  msgstr ""
4536
 
4537
- #: classes/Views/Settings.php:1775, classes/Views/Settings.php:1798, extensions/logs-management/logs-management.php:200, extensions/settings-import-export/settings-import-export.php:186, extensions/settings-import-export/settings-import-export.php:207
4538
- msgid "Nonce Verification Failed."
4539
  msgstr ""
4540
 
4541
- #: classes/Views/Settings.php:1783
4542
- msgid "Plugin settings have been reset."
4543
  msgstr ""
4544
 
4545
- #: classes/Views/Settings.php:1809
4546
- msgid "Reset query failed."
4547
  msgstr ""
4548
 
4549
- #: classes/Views/Settings.php:1807
4550
- msgid "Tables has been reset."
4551
  msgstr ""
4552
 
4553
- #: classes/Views/Settings.php:1822
4554
- msgid "Activity log retention"
4555
  msgstr ""
4556
 
4557
- #: classes/Views/Settings.php:1828
4558
- msgid "Keep all data"
 
4559
  msgstr ""
4560
 
4561
- #: classes/Views/Settings.php:1844, extensions/external-db/classes/Settings.php:325
4562
- msgid "Days"
4563
  msgstr ""
4564
 
4565
- #: classes/Views/Settings.php:1845, extensions/external-db/classes/Settings.php:326
4566
- msgid "Months"
4567
  msgstr ""
4568
 
4569
- #: classes/Views/Settings.php:1846, extensions/external-db/classes/Settings.php:327
4570
- msgid "Years"
4571
  msgstr ""
4572
 
4573
- #: classes/Views/Settings.php:1861
4574
- msgid "Delete events older than"
4575
  msgstr ""
4576
 
4577
- #: classes/Views/Settings.php:1879
4578
- msgid "The next scheduled purging of activity log data that is older than "
4579
  msgstr ""
4580
 
4581
- #: classes/Views/Settings.php:1886
4582
- msgid "You can run the purging process now by clicking the button below."
4583
  msgstr ""
4584
 
4585
- #: classes/Views/Settings.php:1890
4586
- msgid "Purge Old Data"
4587
  msgstr ""
4588
 
4589
- #: classes/Views/SetupWizard.php:178
4590
- msgid "Welcome"
4591
  msgstr ""
4592
 
4593
- #: classes/Views/SetupWizard.php:182
4594
- msgid "Log Details"
4595
  msgstr ""
4596
 
4597
- #: classes/Views/SetupWizard.php:187
4598
- msgid "Log In"
 
4599
  msgstr ""
4600
 
4601
- #: classes/Views/SetupWizard.php:192
4602
- msgid "User Registrations"
4603
  msgstr ""
4604
 
4605
- #: classes/Views/SetupWizard.php:197
4606
- msgid "Log Retention"
4607
  msgstr ""
4608
 
4609
- #: classes/Views/SetupWizard.php:202, classes/Views/SetupWizard.php:741, classes/Views/SetupWizard.php:742
4610
- msgid "Finish"
4611
  msgstr ""
4612
 
4613
- #: classes/Views/SetupWizard.php:262
4614
- msgid "Specified value in not a user."
4615
  msgstr ""
4616
 
4617
- #: classes/Views/SetupWizard.php:263
4618
- msgid "Specified value in not a role."
4619
  msgstr ""
4620
 
4621
- #: classes/Views/SetupWizard.php:264
4622
- msgid "Specified value in not an IP address."
4623
  msgstr ""
4624
 
4625
- #: classes/Views/SetupWizard.php:304
4626
- msgid "WP Activity Log &rsaquo; Setup Wizard"
4627
  msgstr ""
4628
 
4629
- #: classes/Views/SetupWizard.php:322
4630
- msgid "Close Wizard"
4631
  msgstr ""
4632
 
4633
- #. translators: 1 - an opening link tag, 2 - a closing link tag.
4634
- #: classes/Views/SetupWizard.php:415
4635
- msgid "You have reached an invaild step - %1$sreturn to the start of the wizard%2$s."
4636
  msgstr ""
4637
 
4638
- #: classes/Views/SetupWizard.php:432
4639
- msgid "This wizard helps you configure the basic plugin settings. All these settings can be changed at a later stage from the plugin settings."
4640
  msgstr ""
4641
 
4642
- #: classes/Views/SetupWizard.php:437
4643
- msgid "Start Configuring the Plugin"
 
4644
  msgstr ""
4645
 
4646
- #: classes/Views/SetupWizard.php:441
4647
- msgid "Exit Wizard"
4648
  msgstr ""
4649
 
4650
- #: classes/Views/SetupWizard.php:454
4651
- msgid "Please select the level of detail for your WordPress activity logs:"
4652
  msgstr ""
4653
 
4654
- #: classes/Views/SetupWizard.php:458
4655
- msgid "Basic (I want a high level overview and I am not interested in the detail)"
4656
  msgstr ""
4657
 
4658
- #: classes/Views/SetupWizard.php:463
4659
- msgid "Geek (I want to know everything that is happening on my WordPress)"
4660
  msgstr ""
4661
 
4662
- #: classes/Views/SetupWizard.php:465
4663
- msgid "Note: You can change the WordPress logging level from the plugin’s settings anytime."
4664
  msgstr ""
4665
 
4666
- #: classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:468, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:525, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:574, classes/Views/SetupWizard.php:634, classes/Views/SetupWizard.php:635, classes/Views/SetupWizard.php:856, classes/Views/SetupWizard.php:857, extensions/external-db/classes/Connections.php:653, extensions/external-db/classes/Mirroring.php:283, extensions/external-db/classes/Mirroring.php:615
4667
- msgid "Next"
4668
  msgstr ""
4669
 
4670
- #: classes/Views/SetupWizard.php:509
4671
- msgid "Do you or your users use other pages to log in to WordPress other than the default login page ( /wp-admin/ )?"
4672
  msgstr ""
4673
 
4674
- #: classes/Views/SetupWizard.php:513
4675
- msgid "Yes, we use other pages to login to WordPress."
4676
  msgstr ""
4677
 
4678
- #: classes/Views/SetupWizard.php:518
4679
- msgid "No, we only use the default WordPress login page."
4680
  msgstr ""
4681
 
4682
- #: classes/Views/SetupWizard.php:520
4683
- msgid "If your website is a membership or ecommerce website most probably you have more than one area from where the users can login. If you are not sure, select Yes."
4684
  msgstr ""
4685
 
4686
- #: classes/Views/SetupWizard.php:523, classes/Views/SetupWizard.php:572, classes/Views/SetupWizard.php:626
4687
- msgid "Note: You can change the WordPress activity log retention settings at any time from the plugin settings later on."
4688
  msgstr ""
4689
 
4690
- #: classes/Views/SetupWizard.php:558
4691
- msgid "Can visitors register as a user on your website?"
4692
  msgstr ""
4693
 
4694
- #: classes/Views/SetupWizard.php:569
4695
- msgid "If you are not sure about this setting, check if the Membership setting in the WordPress General settings is checked or not. If it is not checked (default) select No."
4696
  msgstr ""
4697
 
4698
- #: classes/Views/SetupWizard.php:608
4699
- msgid "How long do you want to keep the data in the WordPress activity Log?"
4700
  msgstr ""
4701
 
4702
- #: classes/Views/SetupWizard.php:613
4703
- msgid "6 months (data older than 6 months will be deleted)"
 
4704
  msgstr ""
4705
 
4706
- #: classes/Views/SetupWizard.php:618
4707
- msgid "12 months (data older than 12 months will be deleted)"
 
4708
  msgstr ""
4709
 
4710
- #: classes/Views/SetupWizard.php:623
4711
- msgid "Keep all data."
4712
  msgstr ""
4713
 
4714
- #: classes/Views/SetupWizard.php:644
4715
- msgid "The plugin stores the data in the WordPress database in a very efficient way, though the more data you keep the more hard disk space it will consume. If you need need to retain a lot of data we would recommend you to <a href=\"https://wpactivitylog.com/features/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=wizard+configuration\" target=\"_blank\">upgrade to Premium</a> and use the Database tools to store the WordPress activity log in an external database."
4716
  msgstr ""
4717
 
4718
- #: classes/Views/SetupWizard.php:707
4719
- msgid "Your plugin is all set and it is ready to start keeping a record of everything that is happening on your WordPress in a WordPress activity log."
4720
  msgstr ""
4721
 
4722
- #: classes/Views/SetupWizard.php:708
4723
- msgid "Below are a few useful links you might need to refer to:"
 
4724
  msgstr ""
4725
 
4726
- #: classes/Views/SetupWizard.php:713
4727
- msgid "Getting started with the WP Activity Log plugin"
4728
  msgstr ""
4729
 
4730
- #: classes/Views/SetupWizard.php:718
4731
- msgid "Knowledge Base & Support Documents"
4732
  msgstr ""
4733
 
4734
- #: classes/Views/SetupWizard.php:723
4735
- msgid "Benefits of keeping a WordPress activity log"
4736
  msgstr ""
4737
 
4738
- #: classes/Views/SetupWizard.php:733
4739
- msgid "We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback"
4740
  msgstr ""
4741
 
4742
- #: classes/Views/SetupWizard.php:733
4743
- msgid "please get in touch!"
4744
  msgstr ""
4745
 
4746
- #: classes/Views/SetupWizard.php:769
4747
- msgid "Third Party Extensions"
4748
  msgstr ""
4749
 
4750
- #: classes/Views/SetupWizard.php:810
4751
- msgid "Monitoring changes done in third party plugins"
4752
  msgstr ""
4753
 
4754
- #: classes/Views/SetupWizard.php:811
4755
- msgid "We noticed that the below plugins are installed on this website. You can install our extensions to also keep a log of changes users do on these plugins."
4756
  msgstr ""
4757
 
4758
- #: classes/Views/ToggleAlerts.php:27, classes/Views/ToggleAlerts.php:41
4759
- msgid "Enable/Disable Events"
4760
  msgstr ""
4761
 
4762
- #: classes/Views/ToggleAlerts.php:158
4763
- msgid "Basic"
4764
  msgstr ""
4765
 
4766
- #: classes/Views/ToggleAlerts.php:159
4767
- msgid "Geek"
4768
  msgstr ""
4769
 
4770
- #: classes/Views/ToggleAlerts.php:160
4771
- msgid "Custom"
4772
  msgstr ""
4773
 
4774
- #: classes/Views/ToggleAlerts.php:180
4775
- msgid "Log Level: "
 
 
4776
  msgstr ""
4777
 
4778
- #: classes/Views/ToggleAlerts.php:187
4779
- msgid "Use the Log level drop down menu above to use one of our preset log levels. Alternatively you can enable or disable any of the individual events from the below tabs. Refer to <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\">the complete list of WordPress activity log event IDs</a> for reference on all the events the plugin can keep a log of."
4780
  msgstr ""
4781
 
4782
- #: classes/Views/ToggleAlerts.php:197
4783
- msgid "Third party plugins"
 
 
 
4784
  msgstr ""
4785
 
4786
- #: classes/Views/ToggleAlerts.php:298, extensions/reports/classes/CsvReportGenerator.php:77, extensions/reports/classes/HtmlReportGenerator.php:241
4787
- msgid "Code"
4788
  msgstr ""
4789
 
4790
- #: classes/Views/ToggleAlerts.php:341
4791
- msgid "Logins & Logouts"
4792
  msgstr ""
4793
 
4794
- #: classes/Views/ToggleAlerts.php:334
4795
- msgid "Your website is a single site so the multisite events have been disabled."
4796
  msgstr ""
4797
 
4798
- #: classes/Views/ToggleAlerts.php:314
4799
- msgid "The plugin WooCommerce is not installed on your website so these events have been disabled."
4800
  msgstr ""
4801
 
4802
- #: classes/Views/ToggleAlerts.php:321
4803
- msgid "Products"
4804
  msgstr ""
4805
 
4806
- #: classes/Views/ToggleAlerts.php:327
4807
- msgid "Post Changes"
4808
  msgstr ""
4809
 
4810
- #: classes/Views/ToggleAlerts.php:307
4811
- msgid "<strong>Note:</strong> Post refers to any type of content, i.e. blog post, page or a post with a custom post type."
4812
  msgstr ""
4813
 
4814
- #: classes/Views/ToggleAlerts.php:364
4815
- msgid "Not Implemented"
4816
  msgstr ""
4817
 
4818
- #: classes/Views/ToggleAlerts.php:367
4819
- msgid "Not Available"
4820
  msgstr ""
4821
 
4822
- #: classes/Views/ToggleAlerts.php:382
4823
- msgid "User Logins/Logouts"
4824
  msgstr ""
4825
 
4826
- #: classes/Views/ToggleAlerts.php:385
4827
- msgid "User Sessions"
4828
  msgstr ""
4829
 
4830
- #: classes/Views/ToggleAlerts.php:388
4831
- msgid "Files"
4832
  msgstr ""
4833
 
4834
- #: classes/Views/ToggleAlerts.php:391
4835
- msgid "Post Settings"
4836
  msgstr ""
4837
 
4838
- #: classes/Views/ToggleAlerts.php:461
4839
- msgid "Keep a log when a visitor registers a user on the website. Only enable this if you allow visitors to register as users on your website. User registration is disabled by default in WordPress."
4840
  msgstr ""
4841
 
4842
- #: classes/Views/ToggleAlerts.php:475, classes/Views/ToggleAlerts.php:488
4843
- msgid "Number of login attempts to log. Enter 0 to log all failed login attempts. (By default the plugin only logs up to 10 failed login because the process can be very resource intensive in case of a brute force attack)"
4844
  msgstr ""
4845
 
4846
- #: classes/Views/ToggleAlerts.php:502
4847
- msgid "Keep a log of user log in activity on custom login forms (such as WooCommerce & membership plugins)"
4848
  msgstr ""
4849
 
4850
- #: classes/Views/ToggleAlerts.php:548
4851
- msgid "Save Changes"
4852
  msgstr ""
4853
 
4854
- #: classes/Views/ToggleAlerts.php:555
4855
- msgid "Log Level Updated"
4856
  msgstr ""
4857
 
4858
- #. translators: Alerts log level.
4859
- #: classes/Views/ToggleAlerts.php:559
4860
- msgid "The %s log level has been successfully loaded and applied."
4861
  msgstr ""
4862
 
4863
- #: classes/Views/ToggleAlerts.php:563, extensions/settings-import-export/settings-import-export.php:78, extensions/email-notifications/classes/Notifications.php:339, extensions/email-notifications/classes/Notifications.php:962, extensions/email-notifications/classes/Notifications.php:2008
4864
- msgid "OK"
4865
  msgstr ""
4866
 
4867
- #: classes/Views/ToggleAlerts.php:578
4868
- msgid "Enable File Integrity Scanner"
4869
  msgstr ""
4870
 
4871
- #: classes/Views/ToggleAlerts.php:580
4872
- msgid "The file integrity scanner is switched off. To enable this event it has to be switched on."
4873
  msgstr ""
4874
 
4875
- #: classes/Views/ToggleAlerts.php:584
4876
- msgid "SWITCH ON"
4877
  msgstr ""
4878
 
4879
- #: classes/Views/ToggleAlerts.php:585
4880
- msgid "DISABLE EVENT"
4881
  msgstr ""
4882
 
4883
- #: extensions/logs-management/logs-management.php:66
4884
- msgid "Delete activity log data"
4885
  msgstr ""
4886
 
4887
- #: extensions/logs-management/logs-management.php:96
4888
- msgid "All of the below settings can be used to delete data from the activity log. Note that once the data is deleted it cannot be recovered unless you have a backup."
4889
  msgstr ""
4890
 
4891
- #. translators: Upgrade now hyperlink.
4892
- #: extensions/logs-management/logs-management.php:99
4893
- msgid "Logs management is available in the Professional and Business Plans. %s to configure and receive this feature."
4894
  msgstr ""
4895
 
4896
- #: extensions/logs-management/logs-management.php:99, extensions/settings-import-export/settings-import-export.php:129, extensions/email-notifications/classes/SMSProviderSettings.php:172
4897
- msgid "Upgrade now"
4898
  msgstr ""
4899
 
4900
- #: extensions/logs-management/logs-management.php:109
4901
- msgid "Delete activity log data about a specific user"
4902
  msgstr ""
4903
 
4904
- #: extensions/logs-management/logs-management.php:112
4905
- msgid "Enter username"
4906
  msgstr ""
4907
 
4908
- #: extensions/logs-management/logs-management.php:114
4909
- msgid "Specify the user's username above and click delete data to delete all the events in the activity log that either have been generated by this user, or this user is referenced in."
4910
  msgstr ""
4911
 
4912
- #: extensions/logs-management/logs-management.php:121
4913
- msgid "Delete activity log data about a specific IP address"
4914
  msgstr ""
4915
 
4916
- #: extensions/logs-management/logs-management.php:124
4917
- msgid "Enter IP"
4918
  msgstr ""
4919
 
4920
- #: extensions/logs-management/logs-management.php:126
4921
- msgid "Specify the IP address above and click delete data to delete all the events in the activity log that either have been generated from this IP address or the IP address is referenced in it."
4922
  msgstr ""
4923
 
4924
- #: extensions/logs-management/logs-management.php:133
4925
- msgid "Delete activity log data with a specific severity level"
4926
  msgstr ""
4927
 
4928
- #: extensions/logs-management/logs-management.php:136
4929
- msgid "Enter severity"
4930
  msgstr ""
4931
 
4932
- #: extensions/logs-management/logs-management.php:138
4933
- msgid "Specify the severity level above and click delete data to delete all the events in the activity log of that severity level."
4934
  msgstr ""
4935
 
4936
- #: extensions/logs-management/logs-management.php:145
4937
- msgid "Delete activity log data about a specific event type"
4938
  msgstr ""
4939
 
4940
- #: extensions/logs-management/logs-management.php:148
4941
- msgid "Enter event type"
4942
  msgstr ""
4943
 
4944
- #: extensions/logs-management/logs-management.php:150
4945
- msgid "Specify the event type above and click delete data to delete all the events in the activity log of the specified event type."
4946
  msgstr ""
4947
 
4948
- #: extensions/logs-management/logs-management.php:157
4949
- msgid "Delete activity log data about a specific object"
4950
  msgstr ""
4951
 
4952
- #: extensions/logs-management/logs-management.php:160
4953
- msgid "Enter object"
4954
  msgstr ""
4955
 
4956
- #: extensions/logs-management/logs-management.php:162
4957
- msgid "Specify the object above and click delete data to delete all the events in the activity log with the specific object."
4958
  msgstr ""
4959
 
4960
- #: extensions/logs-management/logs-management.php:169
4961
- msgid "Delete activity log data about a specific event ID"
4962
  msgstr ""
4963
 
4964
- #: extensions/logs-management/logs-management.php:172
4965
- msgid "Enter event ID"
4966
  msgstr ""
4967
 
4968
- #: extensions/logs-management/logs-management.php:174
4969
- msgid "Specify the event ID above and click delete data to delete all the events in the activity log of that type."
4970
  msgstr ""
4971
 
4972
- #: extensions/logs-management/logs-management.php:226
4973
- msgid "User not found."
4974
  msgstr ""
4975
 
4976
- #: extensions/logs-management/logs-management.php:252
4977
- msgid "data deleted."
4978
  msgstr ""
4979
 
4980
- #: extensions/logs-management/logs-management.php:252
4981
- msgid " rows removed"
4982
  msgstr ""
4983
 
4984
- #: extensions/logs-management/logs-management.php:261, extensions/logs-management/logs-management.php:262
4985
- msgid "Not provided"
4986
  msgstr ""
4987
 
4988
- #: extensions/search/search-init.php:198
4989
- msgid "An identical search filter already exists."
4990
  msgstr ""
4991
 
4992
- #: extensions/search/search-init.php:217, extensions/search/search-init.php:291, extensions/user-sessions/classes/View/Sessions.php:340
4993
- msgid "Search"
4994
  msgstr ""
4995
 
4996
- #: extensions/search/search-init.php:292
4997
- msgid "- Use the free-text search to search for text in the event's message.<br>- To search for a particular Event ID, user, IP address, Post ID or Type or use date ranges, use the filters."
4998
  msgstr ""
4999
 
5000
- #: extensions/search/search-init.php:293
5001
- msgid "Clear Search Results"
5002
  msgstr ""
5003
 
5004
- #: extensions/search/search-init.php:294
5005
- msgid "Nothing found!"
5006
  msgstr ""
5007
 
5008
- #: extensions/search/search-init.php:295
5009
- msgid "Load"
5010
  msgstr ""
5011
 
5012
- #: extensions/search/search-init.php:296
5013
- msgid "Loading..."
5014
  msgstr ""
5015
 
5016
- #: extensions/search/search-init.php:297
5017
- msgid "Load & Run"
5018
  msgstr ""
5019
 
5020
- #: extensions/search/search-init.php:298, extensions/email-notifications/classes/NotificationBuilder.php:76, extensions/email-notifications/classes/Notifications.php:1918, extensions/email-notifications/classes/Notifications.php:1981, extensions/email-notifications/classes/Notifications.php:1996, extensions/external-db/classes/Connections.php:157, extensions/external-db/classes/Mirroring.php:129
5021
- msgid "Delete"
5022
  msgstr ""
5023
 
5024
- #: extensions/search/search-init.php:299, extensions/external-db/classes/Connections.php:651, extensions/external-db/classes/Mirroring.php:602
5025
- msgid "Deleting..."
5026
  msgstr ""
5027
 
5028
- #: extensions/search/search-init.php:301, extensions/search/classes/FilterManager.php:384
5029
- msgid "Load Search & Filters"
5030
  msgstr ""
5031
 
5032
- #: extensions/search/search-init.php:302
5033
- msgid "* Invalid IP"
5034
  msgstr ""
5035
 
5036
- #: extensions/search/search-init.php:304
5037
- msgid "Close Filters"
5038
  msgstr ""
5039
 
5040
- #: extensions/search/search-init.php:305, extensions/search/classes/FilterManager.php:412
5041
- msgid "Filter View"
5042
  msgstr ""
5043
 
5044
- #. translators: both placeholders are html formatting strings for itallics
5045
- #: extensions/search/search-init.php:308
5046
- msgid "Click the %1$sSearch%2$s button to apply the filters. Click the %1$sClear Search Results%2$s button to reset the search and filters."
5047
  msgstr ""
5048
 
5049
- #: extensions/search/search-init.php:354
5050
- msgid "Widget could not be found."
5051
  msgstr ""
5052
 
5053
- #: extensions/search/search-init.php:425, extensions/search/search-init.php:495
5054
- msgid "No saved search found."
5055
  msgstr ""
5056
 
5057
- #: extensions/search/search-init.php:417
5058
- msgid "Saved searches found."
5059
  msgstr ""
5060
 
5061
- #: extensions/search/search-init.php:459
5062
- msgid "Search name not specified."
5063
  msgstr ""
5064
 
5065
- #: extensions/search/search-init.php:486
5066
- msgid "Saved search not found."
5067
  msgstr ""
5068
 
5069
- #: extensions/search/search-init.php:478
5070
- msgid "Saved search deleted."
5071
  msgstr ""
5072
 
5073
- #: extensions/settings-import-export/settings-import-export.php:58
5074
- msgid "For more information and / or if you require assistance, please"
5075
  msgstr ""
5076
 
5077
- #: extensions/settings-import-export/settings-import-export.php:65
5078
- msgid "Checking import contents"
5079
  msgstr ""
5080
 
5081
- #: extensions/settings-import-export/settings-import-export.php:66
5082
- msgid "Ready to import"
5083
  msgstr ""
5084
 
5085
- #: extensions/settings-import-export/settings-import-export.php:67
5086
- msgid "Issues found"
5087
  msgstr ""
5088
 
5089
- #: extensions/settings-import-export/settings-import-export.php:68
5090
- msgid "Importing settings"
5091
  msgstr ""
5092
 
5093
- #: extensions/settings-import-export/settings-import-export.php:69
5094
- msgid "Settings imported"
5095
  msgstr ""
5096
 
5097
- #: extensions/settings-import-export/settings-import-export.php:71
5098
- msgid "The role, user or post type contained in your settings are not currently found in this website. Importing such settings could lead to abnormal behavour. For more information and / or if you require assistance, please"
5099
  msgstr ""
5100
 
5101
- #: extensions/settings-import-export/settings-import-export.php:72
5102
- msgid "Currently this data is not supported by our export/import wizard."
5103
  msgstr ""
5104
 
5105
- #: extensions/settings-import-export/settings-import-export.php:73
5106
- msgid "Please upload a valid JSON file."
5107
  msgstr ""
5108
 
5109
- #: extensions/settings-import-export/settings-import-export.php:74, extensions/email-notifications/classes/Notifications.php:955, extensions/external-db/classes/Connections.php:643, extensions/external-db/classes/ExternalStorageTab.php:176, extensions/external-db/classes/ExternalStorageTab.php:204, extensions/external-db/classes/Mirroring.php:284
5110
- msgid "Cancel"
5111
  msgstr ""
5112
 
5113
- #: extensions/settings-import-export/settings-import-export.php:75
5114
- msgid "The settings file has been tested and the configuration is ready to be imported. Would you like to proceed?"
5115
  msgstr ""
5116
 
5117
- #: extensions/settings-import-export/settings-import-export.php:76
5118
- msgid "The configuration has been successfully imported. Click OK to close this window"
5119
  msgstr ""
5120
 
5121
- #: extensions/settings-import-export/settings-import-export.php:77
5122
- msgid "Proceed"
5123
  msgstr ""
5124
 
5125
- #: extensions/settings-import-export/settings-import-export.php:96
5126
- msgid "Export/import settings"
5127
  msgstr ""
5128
 
5129
- #: extensions/settings-import-export/settings-import-export.php:126
5130
- msgid "From here you can export the plugin's settings configuration and also import them from an export file. Use the export file to keep a backup of the plugin's configuration or to import the same settings configuration to another website."
5131
  msgstr ""
5132
 
5133
- #. translators: Upgrade now hyperlink.
5134
- #: extensions/settings-import-export/settings-import-export.php:129
5135
- msgid "Settings import/export is available in the Professional and Business Plans. %s to configure and receive this feature."
5136
  msgstr ""
5137
 
5138
- #: extensions/settings-import-export/settings-import-export.php:139
5139
- msgid "Export settings"
5140
  msgstr ""
5141
 
5142
- #: extensions/settings-import-export/settings-import-export.php:142
5143
- msgid "Export"
5144
  msgstr ""
5145
 
5146
- #: extensions/settings-import-export/settings-import-export.php:144
5147
- msgid "Once the settings are exported a download will automatically start. The settings are exported to a JSON file."
5148
  msgstr ""
5149
 
5150
- #: extensions/settings-import-export/settings-import-export.php:151
5151
- msgid "Import settings"
5152
  msgstr ""
5153
 
5154
- #: extensions/settings-import-export/settings-import-export.php:156
5155
- msgid "Validate & Import"
5156
  msgstr ""
5157
 
5158
- #: extensions/settings-import-export/settings-import-export.php:158
5159
- msgid "Once you choose a JSON settings file, it will be checked prior to being imported to alert you of any issues, if there are any."
5160
  msgstr ""
5161
 
5162
- #: extensions/settings-import-export/settings-import-export.php:259
5163
- msgid "Custom notifications are not supported"
5164
  msgstr ""
5165
 
5166
- #: extensions/settings-import-export/settings-import-export.php:254, extensions/settings-import-export/settings-import-export.php:237
5167
- msgid "Role not found: "
5168
  msgstr ""
5169
 
5170
- #: extensions/settings-import-export/settings-import-export.php:246
5171
- msgid "User not found: "
5172
  msgstr ""
5173
 
5174
- #: extensions/settings-import-export/settings-import-export.php:228
5175
- msgid "Post type not found: "
5176
  msgstr ""
5177
 
5178
- #: extensions/settings-import-export/settings-import-export.php:271
5179
- msgid "Setting updated"
5180
  msgstr ""
5181
 
5182
- #: extensions/settings-import-export/settings-import-export.php:271
5183
- msgid "Setting created"
5184
  msgstr ""
5185
 
5186
- #: classes/Views/addons/html-view.php:95, classes/Views/addons/html-view.php:120
5187
- msgid "Upgrade to Premium"
5188
  msgstr ""
5189
 
5190
- #: classes/Views/addons/html-view.php:96
5191
- msgid "More Information"
5192
  msgstr ""
5193
 
5194
- #: classes/Views/addons/html-view.php:104
5195
- msgid "Screenshots"
 
5196
  msgstr ""
5197
 
5198
- #: classes/Views/addons/html-view.php:121
5199
- msgid "Start Free 14-Day Premium Trial"
5200
  msgstr ""
5201
 
5202
- #: extensions/email-notifications/classes/AddNotification.php:58
5203
- msgid "Add New Email Notification"
5204
  msgstr ""
5205
 
5206
- #: extensions/email-notifications/classes/AddNotification.php:72
5207
- msgid "Add notification"
5208
  msgstr ""
5209
 
5210
- #: extensions/email-notifications/classes/AddNotification.php:214, extensions/email-notifications/classes/EditNotification.php:216
5211
- msgid "Back"
5212
  msgstr ""
5213
 
5214
- #: extensions/email-notifications/classes/AddNotification.php:230
5215
- msgid "You have reached the maximum number of notifications you can add."
5216
  msgstr ""
5217
 
5218
- #. translators: Twilio settings hyperlink.
5219
- #. translators: Twilio settings hyperlink.
5220
- #. translators: Twilio settings hyperlink.
5221
- #. translators: Twilio settings hyperlink.
5222
- #. translators: Twilio settings hyperlink.
5223
- #. translators: Twilio settings hyperlink.
5224
- #. translators: Twilio settings hyperlink.
5225
- #. translators: Twilio settings hyperlink.
5226
- #. translators: Twilio settings hyperlink.
5227
- #: extensions/email-notifications/classes/AddNotification.php:275, extensions/email-notifications/classes/EditNotification.php:324, extensions/email-notifications/classes/Notifications.php:896, extensions/email-notifications/classes/Notifications.php:1010, extensions/email-notifications/classes/Notifications.php:1335, extensions/email-notifications/classes/Notifications.php:1499, extensions/email-notifications/classes/Notifications.php:1593, extensions/email-notifications/classes/Notifications.php:1759, extensions/email-notifications/classes/SMSProviderSettings.php:237
5228
- msgid "Click %s to configure Twilio integration for SMS notifications."
5229
  msgstr ""
5230
 
5231
- #: extensions/email-notifications/classes/AddNotification.php:275, extensions/email-notifications/classes/EditNotification.php:324, extensions/email-notifications/classes/Notifications.php:896, extensions/email-notifications/classes/Notifications.php:1010, extensions/email-notifications/classes/Notifications.php:1335, extensions/email-notifications/classes/Notifications.php:1499, extensions/email-notifications/classes/Notifications.php:1593, extensions/email-notifications/classes/Notifications.php:1759, extensions/email-notifications/classes/SMSProviderSettings.php:237
5232
- msgid "here"
5233
  msgstr ""
5234
 
5235
- #. translators: Trigger groups documentation hyperlink
5236
- #. translators: Trigger groups documentation hyperlink
5237
- #: extensions/email-notifications/classes/AddNotification.php:283, extensions/email-notifications/classes/EditNotification.php:332
5238
- msgid "Trigger groups documentation"
5239
  msgstr ""
5240
 
5241
- #: extensions/email-notifications/classes/AddNotification.php:288, extensions/email-notifications/classes/EditNotification.php:337
5242
- msgid "Triggers"
5243
  msgstr ""
5244
 
5245
- #: extensions/email-notifications/classes/AddNotification.php:289, extensions/email-notifications/classes/EditNotification.php:338
5246
- msgid "Add Trigger"
 
5247
  msgstr ""
5248
 
5249
- #: extensions/email-notifications/classes/AddNotification.php:303, extensions/email-notifications/classes/EditNotification.php:381
5250
- msgid "Use default email template"
5251
  msgstr ""
5252
 
5253
- #: extensions/email-notifications/classes/AddNotification.php:308, extensions/email-notifications/classes/EditNotification.php:390
5254
- msgid "Use event specific email template"
5255
  msgstr ""
5256
 
5257
- #: extensions/email-notifications/classes/AddNotification.php:333, extensions/email-notifications/classes/EditNotification.php:423, extensions/external-db/classes/Connections.php:96, extensions/external-db/classes/Mirroring.php:91
5258
- msgid "Name"
5259
  msgstr ""
5260
 
5261
- #: extensions/email-notifications/classes/AddNotification.php:334, extensions/email-notifications/classes/EditNotification.php:424, extensions/email-notifications/classes/Notifications.php:1931, extensions/email-notifications/classes/Notifications.php:1942
5262
- msgid "Title"
5263
  msgstr ""
5264
 
5265
- #: extensions/email-notifications/classes/AddNotification.php:342, extensions/email-notifications/classes/EditNotification.php:432, extensions/email-notifications/classes/Notifications.php:1031, extensions/email-notifications/classes/Notifications.php:1054, extensions/email-notifications/classes/Notifications.php:1071, extensions/email-notifications/classes/Notifications.php:1095, extensions/email-notifications/classes/Notifications.php:1117, extensions/email-notifications/classes/Notifications.php:1130, extensions/email-notifications/classes/Notifications.php:1143, extensions/email-notifications/classes/Notifications.php:1156, extensions/email-notifications/classes/Notifications.php:1169, extensions/email-notifications/classes/Notifications.php:1182, extensions/email-notifications/classes/Notifications.php:1206, extensions/email-notifications/classes/Notifications.php:1221, extensions/email-notifications/classes/Notifications.php:1236, extensions/email-notifications/classes/Notifications.php:1251, extensions/email-notifications/classes/Notifications.php:1266, extensions/email-notifications/classes/Notifications.php:1288, extensions/email-notifications/classes/Notifications.php:1353, extensions/email-notifications/classes/Notifications.php:1368, extensions/email-notifications/classes/Notifications.php:1383, extensions/email-notifications/classes/Notifications.php:1407, extensions/email-notifications/classes/Notifications.php:1422, extensions/email-notifications/classes/Notifications.php:1437, extensions/email-notifications/classes/Notifications.php:1452, extensions/email-notifications/classes/Notifications.php:1514, extensions/email-notifications/classes/Notifications.php:1529, extensions/email-notifications/classes/Notifications.php:1544, extensions/email-notifications/classes/Notifications.php:1608, extensions/email-notifications/classes/Notifications.php:1625, extensions/email-notifications/classes/Notifications.php:1642, extensions/email-notifications/classes/Notifications.php:1659, extensions/email-notifications/classes/Notifications.php:1676, extensions/email-notifications/classes/Notifications.php:1693, extensions/email-notifications/classes/Notifications.php:1710, extensions/email-notifications/classes/Notifications.php:1776, extensions/email-notifications/classes/Notifications.php:1793, extensions/email-notifications/classes/Notifications.php:1810, extensions/email-notifications/classes/Notifications.php:1827, extensions/user-sessions/classes/View/Sessions.php:322
5266
- msgid "Email"
5267
  msgstr ""
5268
 
5269
- #: extensions/email-notifications/classes/AddNotification.php:348, extensions/email-notifications/classes/EditNotification.php:438, extensions/email-notifications/classes/Notifications.php:1057, extensions/email-notifications/classes/Notifications.php:1074, extensions/email-notifications/classes/Notifications.php:1098, extensions/email-notifications/classes/Notifications.php:1120, extensions/email-notifications/classes/Notifications.php:1133, extensions/email-notifications/classes/Notifications.php:1146, extensions/email-notifications/classes/Notifications.php:1159, extensions/email-notifications/classes/Notifications.php:1172, extensions/email-notifications/classes/Notifications.php:1185, extensions/email-notifications/classes/Notifications.php:1209, extensions/email-notifications/classes/Notifications.php:1224, extensions/email-notifications/classes/Notifications.php:1239, extensions/email-notifications/classes/Notifications.php:1254, extensions/email-notifications/classes/Notifications.php:1269, extensions/email-notifications/classes/Notifications.php:1291, extensions/email-notifications/classes/Notifications.php:1356, extensions/email-notifications/classes/Notifications.php:1371, extensions/email-notifications/classes/Notifications.php:1386, extensions/email-notifications/classes/Notifications.php:1410, extensions/email-notifications/classes/Notifications.php:1425, extensions/email-notifications/classes/Notifications.php:1440, extensions/email-notifications/classes/Notifications.php:1455, extensions/email-notifications/classes/Notifications.php:1517, extensions/email-notifications/classes/Notifications.php:1532, extensions/email-notifications/classes/Notifications.php:1547, extensions/email-notifications/classes/Notifications.php:1611, extensions/email-notifications/classes/Notifications.php:1628, extensions/email-notifications/classes/Notifications.php:1645, extensions/email-notifications/classes/Notifications.php:1662, extensions/email-notifications/classes/Notifications.php:1679, extensions/email-notifications/classes/Notifications.php:1696, extensions/email-notifications/classes/Notifications.php:1713, extensions/email-notifications/classes/Notifications.php:1779, extensions/email-notifications/classes/Notifications.php:1796, extensions/email-notifications/classes/Notifications.php:1813, extensions/email-notifications/classes/Notifications.php:1830
5270
- msgid "Mobile Number"
5271
  msgstr ""
5272
 
5273
- #: extensions/email-notifications/classes/Common.php:360, extensions/email-notifications/classes/Common.php:419
5274
- msgid "The form is not valid. Please reload the page and try again."
5275
  msgstr ""
5276
 
5277
- #. translators: Event type
5278
- #: extensions/email-notifications/classes/Common.php:556, extensions/email-notifications/classes/Common.php:546, extensions/email-notifications/classes/Common.php:532, extensions/email-notifications/classes/Common.php:519, extensions/email-notifications/classes/Common.php:496, extensions/email-notifications/classes/Common.php:476, extensions/email-notifications/classes/Common.php:397
5279
- msgid "%s is not valid"
 
 
5280
  msgstr ""
5281
 
5282
- #: extensions/email-notifications/classes/Common.php:562
5283
- msgid "Selected TYPE is not valid."
5284
  msgstr ""
5285
 
5286
- #: extensions/email-notifications/classes/Common.php:552
5287
- msgid "Selected OBJECT is not valid."
5288
  msgstr ""
5289
 
5290
- #: extensions/email-notifications/classes/Common.php:541
5291
- msgid "Selected POST STATUS is not valid."
5292
  msgstr ""
5293
 
5294
- #: extensions/email-notifications/classes/Common.php:528
5295
- msgid "Selected POST TYPE is not valid."
5296
  msgstr ""
5297
 
5298
- #: extensions/email-notifications/classes/Common.php:507
5299
- msgid "The enviroment is not multisite."
 
5300
  msgstr ""
5301
 
5302
- #: extensions/email-notifications/classes/Common.php:513, extensions/email-notifications/classes/Common.php:490
5303
- msgid "%s was not found"
5304
  msgstr ""
5305
 
5306
- #: extensions/email-notifications/classes/Common.php:463, extensions/email-notifications/classes/Common.php:469
5307
- msgid "TIME is not valid."
5308
  msgstr ""
5309
 
5310
- #: extensions/email-notifications/classes/Common.php:454
5311
- msgid "DATE is not valid."
5312
  msgstr ""
5313
 
5314
- #: extensions/email-notifications/classes/Common.php:413
5315
- msgid "The SOURCE IP is not valid. Maximum of 15 characters allowed."
5316
  msgstr ""
5317
 
5318
- #: extensions/email-notifications/classes/Common.php:428
5319
- msgid "The SOURCE IP is not valid."
5320
  msgstr ""
5321
 
5322
- #: extensions/email-notifications/classes/Common.php:437
5323
- msgid "The SOURCE IP fragment is not valid."
5324
  msgstr ""
5325
 
5326
- #: extensions/email-notifications/classes/Common.php:406
5327
- msgid "Selected USER ROLE is not valid."
5328
  msgstr ""
5329
 
5330
- #: extensions/email-notifications/classes/Common.php:387
5331
- msgid "The USERNAME is not valid. Maximum of 50 characters allowed."
5332
  msgstr ""
5333
 
5334
- #: extensions/email-notifications/classes/Common.php:393
5335
- msgid "The USERNAME does not exist."
5336
  msgstr ""
5337
 
5338
- #: extensions/email-notifications/classes/Common.php:371
5339
- msgid "Internal Error. Please reload the page and try again."
5340
  msgstr ""
5341
 
5342
- #: extensions/email-notifications/classes/Common.php:380
5343
- msgid "The EVENT ID is not valid."
5344
  msgstr ""
5345
 
5346
- #: extensions/email-notifications/classes/Common.php:783, extensions/email-notifications/classes/Common.php:811, extensions/email-notifications/classes/Common.php:813
5347
- msgid "Title is required."
5348
  msgstr ""
5349
 
5350
- #: extensions/email-notifications/classes/Common.php:820
5351
- msgid "Title is not valid."
5352
  msgstr ""
5353
 
5354
- #: extensions/email-notifications/classes/Common.php:830
5355
- msgid "Please add at least one condition."
5356
  msgstr ""
5357
 
5358
- #: extensions/email-notifications/classes/Common.php:878, extensions/email-notifications/classes/Common.php:884, extensions/email-notifications/classes/Common.php:889
5359
- msgid "The form is not valid. Please refresh the page and try again."
5360
  msgstr ""
5361
 
5362
- #: extensions/email-notifications/classes/Common.php:898
5363
- msgid "A trigger's condition must not be longer than 50 characters."
5364
  msgstr ""
5365
 
5366
- #: extensions/email-notifications/classes/Common.php:939
5367
- msgid "Email or Username is not valid."
5368
  msgstr ""
5369
 
5370
- #: extensions/email-notifications/classes/Common.php:946
5371
- msgid "Mobile number is not valid."
5372
  msgstr ""
5373
 
5374
- #: extensions/email-notifications/classes/Common.php:933
5375
- msgid "Email or Username is required."
5376
  msgstr ""
5377
 
5378
- #: extensions/email-notifications/classes/Common.php:934
5379
- msgid "Mobile number is required."
5380
  msgstr ""
5381
 
5382
- #: extensions/email-notifications/classes/Common.php:1001, extensions/email-notifications/classes/Notifications.php:610
5383
- msgid "Notification could not be saved."
5384
  msgstr ""
5385
 
5386
- #: extensions/email-notifications/classes/Common.php:1024, extensions/email-notifications/classes/Notifications.php:696
5387
- msgid "Notification successfully saved."
5388
  msgstr ""
5389
 
5390
- #: extensions/email-notifications/classes/Common.php:1046
5391
- msgid "Notification Title"
5392
  msgstr ""
5393
 
5394
- #: extensions/email-notifications/classes/Common.php:1047
5395
- msgid "Website Name"
5396
  msgstr ""
5397
 
5398
- #: extensions/email-notifications/classes/Common.php:1048
5399
- msgid "User Login Name"
5400
  msgstr ""
5401
 
5402
- #: extensions/email-notifications/classes/Common.php:1049
5403
- msgid "User First Name"
5404
  msgstr ""
5405
 
5406
- #: extensions/email-notifications/classes/Common.php:1050
5407
- msgid "User Last Name"
5408
  msgstr ""
5409
 
5410
- #: extensions/email-notifications/classes/Common.php:1051
5411
- msgid "Role(s) of the User"
5412
  msgstr ""
5413
 
5414
- #: extensions/email-notifications/classes/Common.php:1052
5415
- msgid "Event generated on Date and Time"
5416
  msgstr ""
5417
 
5418
- #: extensions/email-notifications/classes/Common.php:1053
5419
- msgid "Event Code"
5420
  msgstr ""
5421
 
5422
- #: extensions/email-notifications/classes/Common.php:1054
5423
- msgid "Event Severity"
5424
  msgstr ""
5425
 
5426
- #: extensions/email-notifications/classes/Common.php:1055, extensions/email-notifications/classes/Common.php:1118
5427
- msgid "Event Message"
5428
  msgstr ""
5429
 
5430
- #: extensions/email-notifications/classes/Common.php:1056
5431
- msgid "Event Metadata"
5432
  msgstr ""
5433
 
5434
- #: extensions/email-notifications/classes/Common.php:1057
5435
- msgid "Event Links"
5436
  msgstr ""
5437
 
5438
- #: extensions/email-notifications/classes/Common.php:1058
5439
- msgid "Client IP Address"
5440
  msgstr ""
5441
 
5442
- #: extensions/email-notifications/classes/Common.php:1059
5443
- msgid "Event Object"
5444
  msgstr ""
5445
 
5446
- #: extensions/email-notifications/classes/Common.php:1106, extensions/email-notifications/classes/Common.php:1172
5447
- msgid "Notification {title} on website {site} triggered"
5448
  msgstr ""
5449
 
5450
- #: extensions/email-notifications/classes/Common.php:1107, extensions/email-notifications/classes/Common.php:1173
5451
- msgid "Notification <strong>{title}</strong> was triggered. Below are the notification details:"
 
5452
  msgstr ""
5453
 
5454
- #: extensions/email-notifications/classes/Common.php:1109
5455
- msgid "Website"
5456
  msgstr ""
5457
 
5458
- #: extensions/email-notifications/classes/Common.php:1111, extensions/email-notifications/classes/Common.php:1176, extensions/reports/classes/CsvReportGenerator.php:80, extensions/reports/classes/CsvReportGenerator.php:64, extensions/reports/classes/CsvReportGenerator.php:197, extensions/reports/classes/HtmlReportGenerator.php:244, extensions/reports/classes/HtmlReportGenerator.php:220, extensions/reports/classes/HtmlReportGenerator.php:358, extensions/search/classes/FilterManager.php:475, extensions/user-sessions/classes/View/Sessions.php:156, extensions/user-sessions/classes/View/Sessions.php:321
5459
- msgid "Username"
5460
  msgstr ""
5461
 
5462
- #: extensions/email-notifications/classes/Common.php:1112
5463
- msgid "User first name"
5464
  msgstr ""
5465
 
5466
- #: extensions/email-notifications/classes/Common.php:1113
5467
- msgid "User last name"
5468
  msgstr ""
5469
 
5470
- #: extensions/email-notifications/classes/Common.php:1114
5471
- msgid "User role"
5472
  msgstr ""
5473
 
5474
- #: extensions/email-notifications/classes/Common.php:1119
5475
- msgid "Event generated on"
5476
  msgstr ""
5477
 
5478
- #: extensions/email-notifications/classes/Common.php:1121
5479
- msgid "These email notifications are sent with <a href=\"http://wpactivitylog.com\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin solution."
5480
  msgstr ""
5481
 
5482
- #: extensions/email-notifications/classes/Common.php:1144, extensions/email-notifications/classes/Common.php:1205
5483
- msgid "User/Role"
5484
  msgstr ""
5485
 
5486
- #: extensions/email-notifications/classes/Common.php:1147
5487
- msgid "Event type"
5488
  msgstr ""
5489
 
5490
- #: extensions/email-notifications/classes/Common.php:1177, extensions/search/classes/FilterManager.php:487, extensions/search/classes/Filters/userrolefilter.php:49, extensions/search/classes/Filters/userrolefilter.php:87, extensions/user-sessions/classes/View/Sessions.php:326
5491
- msgid "User Role"
5492
  msgstr ""
5493
 
5494
- #: extensions/email-notifications/classes/Common.php:1179
5495
- msgid "Generated On"
5496
  msgstr ""
5497
 
5498
- #: extensions/email-notifications/classes/Common.php:1181
5499
- msgid "Monitoring of WordPress and Email Notifications provided by <a href=\"http://wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit trail plugin</a>."
5500
  msgstr ""
5501
 
5502
- #: extensions/email-notifications/classes/Common.php:1206
5503
- msgid "Event"
 
5504
  msgstr ""
5505
 
5506
- #: extensions/email-notifications/classes/Common.php:1221
5507
- msgid "Subject "
5508
  msgstr ""
5509
 
5510
- #: extensions/email-notifications/classes/Common.php:1230
5511
- msgid "Body "
5512
  msgstr ""
5513
 
5514
- #: extensions/email-notifications/classes/Common.php:1233
5515
- msgid "HTML is accepted. Available template tags:"
5516
  msgstr ""
5517
 
5518
- #. translators: singular or plural form of a login total count.
5519
- #: extensions/email-notifications/classes/DailyNotification.php:343
5520
- msgid "was %d login"
5521
- msgid_plural "were %d logins"
5522
- msgstr[0] ""
5523
- msgstr[1] ""
5524
-
5525
- #. translators: a number that is total count of unique users in a login group.
5526
- #: extensions/email-notifications/classes/DailyNotification.php:349
5527
- msgid "%d unique user"
5528
- msgid_plural "%d unique users"
5529
- msgstr[0] ""
5530
- msgstr[1] ""
5531
-
5532
- #. translators: 1 - number of logins. 2 - total unique users
5533
- #: extensions/email-notifications/classes/DailyNotification.php:356
5534
- msgid "There %1$s on your site today from %2$s. Below is a list of the users and the IP addresses they logged in from:"
5535
  msgstr ""
5536
 
5537
- #: extensions/email-notifications/classes/DailyNotification.php:388
5538
- msgid "There were failed logins due to a wrong password from the following IP addresses:"
5539
  msgstr ""
5540
 
5541
- #: extensions/email-notifications/classes/DailyNotification.php:410
5542
- msgid "There were failed logins due to a wrong username from the following IP addresses:"
5543
  msgstr ""
5544
 
5545
- #: extensions/email-notifications/classes/EditNotification.php:58
5546
- msgid "Edit Email Notification"
5547
  msgstr ""
5548
 
5549
- #: extensions/email-notifications/classes/EditNotification.php:72
5550
- msgid "Edit Notification"
5551
  msgstr ""
5552
 
5553
- #: extensions/email-notifications/classes/EditNotification.php:215, extensions/email-notifications/classes/Notifications.php:1880
5554
- msgid "Add New"
5555
  msgstr ""
5556
 
5557
- #: extensions/email-notifications/classes/EditNotification.php:246
5558
- msgid "You do not have sufficient permissions to access this page. - INVALID NOTIFICATION ID"
5559
  msgstr ""
5560
 
5561
- #: extensions/email-notifications/classes/EditNotification.php:442
5562
- msgid "Specify the email address or WordPress username who should receive the notification once the trigger is matched."
5563
  msgstr ""
5564
 
5565
- #: extensions/email-notifications/classes/NotificationBuilder.php:77
5566
- msgid "Save Notification"
5567
  msgstr ""
5568
 
5569
- #: extensions/email-notifications/classes/NotificationBuilder.php:78
5570
- msgid "Add Notification"
5571
  msgstr ""
5572
 
5573
- #: extensions/email-notifications/classes/NotificationBuilder.php:79
5574
- msgid "Email Address or WordPress Username:"
5575
  msgstr ""
5576
 
5577
- #: extensions/email-notifications/classes/NotificationBuilder.php:80
5578
- msgid "Phone number for SMS notifications:"
5579
  msgstr ""
5580
 
5581
- #: extensions/email-notifications/classes/Notifications.php:163, extensions/email-notifications/classes/Notifications.php:2337, extensions/email-notifications/classes/Notifications.php:2438
5582
- msgid "Nonce verification failed. Please refresh and try again."
5583
  msgstr ""
5584
 
5585
- #: extensions/email-notifications/classes/Notifications.php:205
5586
- msgid "Built-in Notifications"
5587
  msgstr ""
5588
 
5589
- #: extensions/email-notifications/classes/Notifications.php:210
5590
- msgid "WordPress System"
5591
  msgstr ""
5592
 
5593
- #: extensions/email-notifications/classes/Notifications.php:214
5594
- msgid "Logins & Users Profiles"
5595
  msgstr ""
5596
 
5597
- #: extensions/email-notifications/classes/Notifications.php:218
5598
- msgid "Content Changes"
 
5599
  msgstr ""
5600
 
5601
- #: extensions/email-notifications/classes/Notifications.php:222
5602
- msgid "Multisite"
5603
  msgstr ""
5604
 
5605
- #: extensions/email-notifications/classes/Notifications.php:226
5606
- msgid "WooCommerce"
5607
  msgstr ""
5608
 
5609
- #: extensions/email-notifications/classes/Notifications.php:232, extensions/email-notifications/classes/Notifications.php:915
5610
- msgid "Custom Notifications"
5611
  msgstr ""
5612
 
5613
- #: extensions/email-notifications/classes/Notifications.php:238
5614
- msgid "Notifications Templates"
5615
  msgstr ""
5616
 
5617
- #: extensions/email-notifications/classes/Notifications.php:244, extensions/email-notifications/classes/Notifications.php:2057
5618
- msgid "Default Email Template"
5619
  msgstr ""
5620
 
5621
- #: extensions/email-notifications/classes/Notifications.php:248, extensions/email-notifications/classes/Notifications.php:2053
5622
- msgid "Default SMS Template"
5623
  msgstr ""
5624
 
5625
- #: extensions/email-notifications/classes/Notifications.php:291, extensions/email-notifications/classes/Notifications.php:305
5626
- msgid "Notifications"
5627
  msgstr ""
5628
 
5629
- #: extensions/email-notifications/classes/Notifications.php:340, extensions/email-notifications/classes/Notifications.php:933
5630
- msgid "Test Notifications"
5631
  msgstr ""
5632
 
5633
- #: extensions/email-notifications/classes/Notifications.php:341
5634
- msgid "Trigger Builder Test Notification"
5635
  msgstr ""
5636
 
5637
- #: extensions/email-notifications/classes/Notifications.php:343
5638
- msgid "Please specify an email address or a phone number to test."
5639
  msgstr ""
5640
 
5641
- #: extensions/email-notifications/classes/Notifications.php:627
5642
- msgid "Email Address or Username is not valid."
5643
  msgstr ""
5644
 
5645
- #: extensions/email-notifications/classes/Notifications.php:637
5646
- msgid "Phone number is not valid."
5647
  msgstr ""
5648
 
5649
- #: extensions/email-notifications/classes/Notifications.php:619
5650
- msgid "Email Address and Mobile Number cannot be empty."
5651
  msgstr ""
5652
 
5653
- #: extensions/email-notifications/classes/Notifications.php:812
5654
- msgid "To configure email notifications please contact the administrator of this multisite network on "
5655
  msgstr ""
5656
 
5657
- #: extensions/email-notifications/classes/Notifications.php:831
5658
- msgid "Daily summary email sent."
5659
  msgstr ""
5660
 
5661
- #: extensions/email-notifications/classes/Notifications.php:827
5662
- msgid "An error occurred while sending the daily summary email."
5663
  msgstr ""
5664
 
5665
- #: extensions/email-notifications/classes/Notifications.php:821
5666
- msgid "Invalid request."
5667
  msgstr ""
5668
 
5669
- #. translators: %s: Twilio settings link
5670
- #: extensions/email-notifications/classes/Notifications.php:905
5671
- msgid "Tick the check box and specify an email address or username to enable a notification. You can specify a phone number to send a SMS notification as well (%s). Click the Save Notifications button to save the changes."
5672
  msgstr ""
5673
 
5674
- #: extensions/email-notifications/classes/Notifications.php:906
5675
- msgid "Configure Twilio account integration"
5676
  msgstr ""
5677
 
5678
- #. translators: %s: Twilio settings link
5679
- #: extensions/email-notifications/classes/Notifications.php:914
5680
- msgid "You can create your own notification criteria in the %s tab."
5681
  msgstr ""
5682
 
5683
- #: extensions/email-notifications/classes/Notifications.php:934
5684
- msgid "Save Notifications"
5685
  msgstr ""
5686
 
5687
- #: extensions/email-notifications/classes/Notifications.php:943
5688
- msgid "Specify an email address to where you would like to send a test email notification:"
5689
  msgstr ""
5690
 
5691
- #: extensions/email-notifications/classes/Notifications.php:948
5692
- msgid "Specify a mobile phone number to where you would like to send a test SMS notification:"
5693
  msgstr ""
5694
 
5695
- #: extensions/email-notifications/classes/Notifications.php:954
5696
- msgid "Send"
5697
  msgstr ""
5698
 
5699
- #: extensions/email-notifications/classes/Notifications.php:1013
5700
- msgid "Daily Summary of Activity Log"
5701
  msgstr ""
5702
 
5703
- #: extensions/email-notifications/classes/Notifications.php:1028
5704
- msgid "Send me a summary of what happens every day."
5705
  msgstr ""
5706
 
5707
- #: extensions/email-notifications/classes/Notifications.php:1032
5708
- msgid "Send Summary Now"
5709
  msgstr ""
5710
 
5711
- #: extensions/email-notifications/classes/Notifications.php:1038
5712
- msgid "Suspicious Activity"
 
 
 
 
 
 
5713
  msgstr ""
5714
 
5715
- #: extensions/email-notifications/classes/Notifications.php:1047, extensions/email-notifications/classes/Notifications.php:1064
5716
- msgid "There are more than"
5717
  msgstr ""
5718
 
5719
- #: extensions/email-notifications/classes/Notifications.php:1049
5720
- msgid "failed WordPress logins for a WordPress user (Event ID 1002)"
5721
  msgstr ""
5722
 
5723
- #: extensions/email-notifications/classes/Notifications.php:1066
5724
- msgid "failed logins of non existing users (Event ID 1003)"
5725
  msgstr ""
5726
 
5727
- #: extensions/email-notifications/classes/Notifications.php:1081
5728
- msgid "WordPress Install Changes"
5729
  msgstr ""
5730
 
5731
- #: extensions/email-notifications/classes/Notifications.php:1090
5732
- msgid "WordPress was updated (Event ID 6004)"
5733
  msgstr ""
5734
 
5735
- #: extensions/email-notifications/classes/Notifications.php:1105
5736
- msgid "Plugin Changes Notifications"
5737
  msgstr ""
5738
 
5739
- #: extensions/email-notifications/classes/Notifications.php:1113
5740
- msgid "New plugin is installed (Event ID 5000)"
5741
  msgstr ""
5742
 
5743
- #: extensions/email-notifications/classes/Notifications.php:1126
5744
- msgid "Installed plugin is activated (Event ID 5001)"
5745
  msgstr ""
5746
 
5747
- #: extensions/email-notifications/classes/Notifications.php:1139
5748
- msgid "Plugin file is modified (Event ID 2051)"
5749
  msgstr ""
5750
 
5751
- #: extensions/email-notifications/classes/Notifications.php:1152
5752
- msgid "Installed plugin is deactivated (Event ID 5002)"
5753
  msgstr ""
5754
 
5755
- #: extensions/email-notifications/classes/Notifications.php:1165
5756
- msgid "A plugin is uninstalled (Event ID 5003)"
5757
  msgstr ""
5758
 
5759
- #: extensions/email-notifications/classes/Notifications.php:1178
5760
- msgid "Installed plugin is upgraded (Event ID 5004)"
5761
  msgstr ""
5762
 
5763
- #: extensions/email-notifications/classes/Notifications.php:1192
5764
- msgid "Themes Changes Notifications"
5765
  msgstr ""
5766
 
5767
- #: extensions/email-notifications/classes/Notifications.php:1201
5768
- msgid "New theme is installed (Event ID 5005)"
5769
  msgstr ""
5770
 
5771
- #: extensions/email-notifications/classes/Notifications.php:1216
5772
- msgid "Installed theme is activated (Event ID 5006)"
5773
  msgstr ""
5774
 
5775
- #: extensions/email-notifications/classes/Notifications.php:1231
5776
- msgid "Theme file is modified (Event ID 2046)"
 
 
 
 
 
 
 
 
 
 
 
5777
  msgstr ""
5778
 
5779
- #: extensions/email-notifications/classes/Notifications.php:1246
5780
- msgid "A theme is uninstalled (Event ID 5007)"
 
 
 
 
 
 
 
 
 
 
 
5781
  msgstr ""
5782
 
5783
- #: extensions/email-notifications/classes/Notifications.php:1261
5784
- msgid "Installed theme is updated (Event ID 5031)"
 
 
 
 
 
 
 
 
 
 
5785
  msgstr ""
5786
 
5787
- #: extensions/email-notifications/classes/Notifications.php:1276
5788
- msgid "Critical Events"
5789
  msgstr ""
5790
 
5791
- #: extensions/email-notifications/classes/Notifications.php:1284
5792
- msgid "Critical Event is Generated"
5793
  msgstr ""
5794
 
5795
- #: extensions/email-notifications/classes/Notifications.php:1348
5796
- msgid "User logs in (Event ID 1000)"
5797
  msgstr ""
5798
 
5799
- #: extensions/email-notifications/classes/Notifications.php:1363
5800
- msgid "First time user logs in"
5801
  msgstr ""
5802
 
5803
- #: extensions/email-notifications/classes/Notifications.php:1378
5804
- msgid "User changed password (Event ID 4003)"
5805
  msgstr ""
5806
 
5807
- #: extensions/email-notifications/classes/Notifications.php:1393
5808
- msgid "User Profile Changes"
5809
  msgstr ""
5810
 
5811
- #: extensions/email-notifications/classes/Notifications.php:1402
5812
- msgid "User changed email address (Event IDs 4005, 4006)"
5813
  msgstr ""
5814
 
5815
- #: extensions/email-notifications/classes/Notifications.php:1417
5816
- msgid "User's role has changed (Event ID 4002)"
5817
  msgstr ""
5818
 
5819
- #: extensions/email-notifications/classes/Notifications.php:1432
5820
- msgid "User changed the password of another user (Event ID 4004)"
5821
  msgstr ""
5822
 
5823
- #: extensions/email-notifications/classes/Notifications.php:1447
5824
- msgid "New user is created (Event IDs 4000, 4001, 4012)"
5825
  msgstr ""
5826
 
5827
- #: extensions/email-notifications/classes/Notifications.php:1509
5828
- msgid "New content is published (Event ID 2001)"
5829
  msgstr ""
5830
 
5831
- #: extensions/email-notifications/classes/Notifications.php:1524
5832
- msgid "Content in a post, page or custom post type is changed (Event ID 2065)"
5833
  msgstr ""
5834
 
5835
- #: extensions/email-notifications/classes/Notifications.php:1539
5836
- msgid "Anything but content in a post is changed (such as date, category, status, parent page etc)"
5837
  msgstr ""
5838
 
5839
- #: extensions/email-notifications/classes/Notifications.php:1604
5840
- msgid "User granted super admin (Event ID 4008)"
5841
  msgstr ""
5842
 
5843
- #: extensions/email-notifications/classes/Notifications.php:1620
5844
- msgid "User revoked super admin (Event ID 4009)"
5845
  msgstr ""
5846
 
5847
- #: extensions/email-notifications/classes/Notifications.php:1637
5848
- msgid "User added to site (Event ID 4010)"
5849
  msgstr ""
5850
 
5851
- #: extensions/email-notifications/classes/Notifications.php:1654
5852
- msgid "User removed from site (Event ID 4011)"
5853
  msgstr ""
5854
 
5855
- #: extensions/email-notifications/classes/Notifications.php:1671
5856
- msgid "Site changes"
5857
  msgstr ""
5858
 
5859
- #: extensions/email-notifications/classes/Notifications.php:1688
5860
- msgid "Activated theme on network (Event ID 5008)"
5861
  msgstr ""
5862
 
5863
- #: extensions/email-notifications/classes/Notifications.php:1705
5864
- msgid "Deactivated theme from network (Event ID 5009)"
5865
  msgstr ""
5866
 
5867
- #: extensions/email-notifications/classes/Notifications.php:1771
5868
- msgid "Any product change"
5869
  msgstr ""
5870
 
5871
- #: extensions/email-notifications/classes/Notifications.php:1788
5872
- msgid "Any store settings change"
5873
  msgstr ""
5874
 
5875
- #: extensions/email-notifications/classes/Notifications.php:1805
5876
- msgid "Any coupon code changes"
5877
  msgstr ""
5878
 
5879
- #: extensions/email-notifications/classes/Notifications.php:1822
5880
- msgid "Any orders changes"
5881
  msgstr ""
5882
 
5883
- #. translators: WSAL Notifications Documentation hyperlink
5884
- #: extensions/email-notifications/classes/Notifications.php:1875
5885
- msgid "Use the trigger builder to build any type of criteria that triggers email and / or SMS notifications. Refer to the %s for more detailed information."
5886
  msgstr ""
5887
 
5888
- #: extensions/email-notifications/classes/Notifications.php:1876
5889
- msgid "WordPress notifications documentation"
5890
  msgstr ""
5891
 
5892
- #: extensions/email-notifications/classes/Notifications.php:2032
5893
- msgid "No notifications found. Click the <code>Add New</code> button above to create one."
5894
  msgstr ""
5895
 
5896
- #: extensions/email-notifications/classes/Notifications.php:2018
5897
- msgid "No notifications found to match your search."
5898
  msgstr ""
5899
 
5900
- #: extensions/email-notifications/classes/Notifications.php:2025, extensions/email-notifications/classes/Notifications.php:2027, extensions/email-notifications/classes/Notifications.php:1902, extensions/email-notifications/classes/Notifications.php:1904
5901
- msgid "Search Notifications"
5902
  msgstr ""
5903
 
5904
- #: extensions/email-notifications/classes/Notifications.php:1893, extensions/reports/classes/HtmlReportGenerator.php:144, extensions/reports/classes/HtmlReportGenerator.php:148, extensions/user-sessions/classes/View/Options/Policies.php:24
5905
- msgid "All"
5906
  msgstr ""
5907
 
5908
- #: extensions/email-notifications/classes/Notifications.php:1915, extensions/email-notifications/classes/Notifications.php:1993
5909
- msgid "Bulk actions"
5910
  msgstr ""
5911
 
5912
- #: extensions/email-notifications/classes/Notifications.php:1916, extensions/email-notifications/classes/Notifications.php:1977, extensions/email-notifications/classes/Notifications.php:1994, extensions/external-db/classes/Mirroring.php:118, extensions/external-db/classes/Mirroring.php:743, extensions/external-db/classes/mirrors/PapertrailConnection.php:44
5913
- msgid "Enable"
5914
  msgstr ""
5915
 
5916
- #: extensions/email-notifications/classes/Notifications.php:1917, extensions/email-notifications/classes/Notifications.php:1975, extensions/email-notifications/classes/Notifications.php:1995, extensions/external-db/classes/Mirroring.php:121, extensions/external-db/classes/Mirroring.php:746
5917
- msgid "Disable"
5918
  msgstr ""
5919
 
5920
- #: extensions/email-notifications/classes/Notifications.php:1920, extensions/email-notifications/classes/Notifications.php:1998
5921
- msgid "Apply"
5922
  msgstr ""
5923
 
5924
- #: extensions/email-notifications/classes/Notifications.php:1928, extensions/email-notifications/classes/Notifications.php:1939, extensions/reports/inc/wsal-reporting-view.inc.php:878
5925
- msgid "Select All"
5926
  msgstr ""
5927
 
5928
- #: extensions/email-notifications/classes/Notifications.php:1965
5929
- msgid "Select"
5930
  msgstr ""
5931
 
5932
- #: extensions/email-notifications/classes/Notifications.php:1969, extensions/email-notifications/classes/Notifications.php:1971
5933
- msgid "Edit this notification"
5934
  msgstr ""
5935
 
5936
- #: extensions/email-notifications/classes/Notifications.php:1971
5937
- msgid "Edit"
5938
  msgstr ""
5939
 
5940
- #: extensions/email-notifications/classes/Notifications.php:1977
5941
- msgid "Enable this notification"
5942
  msgstr ""
5943
 
5944
- #: extensions/email-notifications/classes/Notifications.php:1975
5945
- msgid "Disable this notification"
5946
  msgstr ""
5947
 
5948
- #: extensions/email-notifications/classes/Notifications.php:1981
5949
- msgid "Delete this notification"
5950
  msgstr ""
5951
 
5952
- #: extensions/email-notifications/classes/Notifications.php:1984
5953
- msgid "Send Test Email"
5954
  msgstr ""
5955
 
5956
- #: extensions/email-notifications/classes/Notifications.php:1985
5957
- msgid "Send Test SMS"
5958
  msgstr ""
5959
 
5960
- #: extensions/email-notifications/classes/Notifications.php:2056
5961
- msgid "You can modify the default notification email template from here."
5962
  msgstr ""
5963
 
5964
- #: extensions/email-notifications/classes/Notifications.php:2058
5965
- msgid "This is the default template. You can override this default template with notification specific template which you can modify when using the Trigger Builder."
5966
  msgstr ""
5967
 
5968
- #: extensions/email-notifications/classes/Notifications.php:2052
5969
- msgid "You can modify the default notification SMS template from here."
5970
  msgstr ""
5971
 
5972
- #: extensions/email-notifications/classes/Notifications.php:2054
5973
- msgid "This is the default template for SMS notifications. The maximum number of characters for a SMS is 160, so if you configure longer notifications you will be charged for multiple SMS notifications."
5974
  msgstr ""
5975
 
5976
- #: extensions/email-notifications/classes/Notifications.php:2094
5977
- msgid "Subject"
5978
  msgstr ""
5979
 
5980
- #: extensions/email-notifications/classes/Notifications.php:2099
5981
- msgid "Body"
5982
  msgstr ""
5983
 
5984
- #: extensions/email-notifications/classes/Notifications.php:2124
5985
- msgid "HTML is accepted."
5986
  msgstr ""
5987
 
5988
- #: extensions/email-notifications/classes/Notifications.php:2125
5989
- msgid "Available template tags:"
5990
  msgstr ""
5991
 
5992
- #: extensions/email-notifications/classes/Notifications.php:2147
5993
- msgid "Shorten URLs"
5994
  msgstr ""
5995
 
5996
- #: extensions/email-notifications/classes/Notifications.php:2152
5997
- msgid "Shorten URLs with Bit.ly"
5998
  msgstr ""
5999
 
6000
- #: extensions/email-notifications/classes/Notifications.php:2155
6001
- msgid "Bit.ly Access Token"
6002
  msgstr ""
6003
 
6004
- #. translators: Bit.ly documentation hyperlink
6005
- #: extensions/email-notifications/classes/Notifications.php:2160
6006
- msgid "The URL shortener works for URLs in the {message} variable and will not shorten the URL of the website in the variable {site}. Shorten all URLs in the message using the %s."
6007
  msgstr ""
6008
 
6009
- #: extensions/email-notifications/classes/Notifications.php:2160
6010
- msgid "Bit.ly URL Shortener API"
6011
  msgstr ""
6012
 
6013
- #: extensions/email-notifications/classes/Notifications.php:2208
6014
- msgid "Template successfully saved."
6015
  msgstr ""
6016
 
6017
- #: extensions/email-notifications/classes/Notifications.php:2206
6018
- msgid "Template could not be saved."
6019
  msgstr ""
6020
 
6021
- #: extensions/email-notifications/classes/Notifications.php:2326, extensions/email-notifications/classes/Notifications.php:2432
6022
- msgid "You do not have sufficient permissions to perform this test."
6023
  msgstr ""
6024
 
6025
- #: extensions/email-notifications/classes/Notifications.php:2358
6026
- msgid "Email address is invalid."
6027
  msgstr ""
6028
 
6029
- #: extensions/email-notifications/classes/Notifications.php:2354
6030
- msgid "Test email notification from the WP Activity Log plugin."
6031
  msgstr ""
6032
 
6033
- #: extensions/email-notifications/classes/Notifications.php:2355
6034
- msgid "This is a test email notification sent with the WP Activity Log plugin."
6035
  msgstr ""
6036
 
6037
- #: extensions/email-notifications/classes/Notifications.php:2368
6038
- msgid "Phone number is invalid."
6039
  msgstr ""
6040
 
6041
- #: extensions/email-notifications/classes/Notifications.php:2365
6042
- msgid "This is a test SMS notification sent with the WP Activity Log plugin."
6043
  msgstr ""
6044
 
6045
- #. translators: Support email hyperlink
6046
- #: extensions/email-notifications/classes/Notifications.php:2392
6047
- msgid "There are some problems sending the test email / SMS. Please contact us on %s to assist you with this problem."
6048
  msgstr ""
6049
 
6050
- #: extensions/email-notifications/classes/Notifications.php:2389, extensions/email-notifications/classes/Notifications.php:2486
6051
- msgid "There was a problem sending the SMS. Below is the error we got back from the SMS provider. Please contact us on %s if you need assistance with this issue."
6052
  msgstr ""
6053
 
6054
- #: extensions/email-notifications/classes/Notifications.php:2380
6055
- msgid "Email / SMS sent successfully."
6056
  msgstr ""
6057
 
6058
- #: extensions/email-notifications/classes/Notifications.php:2377, extensions/email-notifications/classes/Notifications.php:2488
6059
- msgid "SMS sent successfully."
6060
  msgstr ""
6061
 
6062
- #: extensions/email-notifications/classes/Notifications.php:2374, extensions/email-notifications/classes/Notifications.php:2467
6063
- msgid "Email sent successfully."
6064
  msgstr ""
6065
 
6066
- #: extensions/email-notifications/classes/Notifications.php:2494
6067
- msgid "Unknown notification type."
6068
  msgstr ""
6069
 
6070
- #: extensions/email-notifications/classes/Notifications.php:2491
6071
- msgid "There are some problems sending the test SMS. Please contact us on %s to assist you with this problem."
6072
  msgstr ""
6073
 
6074
- #: extensions/email-notifications/classes/Notifications.php:2483
6075
- msgid "Mobile number is not set for this notification."
 
6076
  msgstr ""
6077
 
6078
- #: extensions/email-notifications/classes/Notifications.php:2470
6079
- msgid "There are some problems sending the test email. Please contact us on %s to assist you with this problem."
6080
  msgstr ""
6081
 
6082
- #: extensions/email-notifications/classes/Notifications.php:2448
6083
- msgid "Unknown notification."
6084
  msgstr ""
6085
 
6086
- #: extensions/email-notifications/classes/SMSProviderSettings.php:118
6087
- msgid "SMS Provider"
6088
  msgstr ""
6089
 
6090
- #: extensions/email-notifications/classes/SMSProviderSettings.php:148, extensions/email-notifications/classes/SMSProviderSettings.php:146, extensions/external-db/classes/Connections.php:142
6091
- msgid "Test"
6092
  msgstr ""
6093
 
6094
- #: extensions/email-notifications/classes/SMSProviderSettings.php:169
6095
- msgid "Configure your Twilio account details to be able to configure and send SMS notifications."
6096
  msgstr ""
6097
 
6098
- #. translators: Upgrade now hyperlink.
6099
- #: extensions/email-notifications/classes/SMSProviderSettings.php:172
6100
- msgid "SMS notifications are available in the Professional and Business Plans. %s to configure and receive SMS notifications."
6101
  msgstr ""
6102
 
6103
- #: extensions/email-notifications/classes/SMSProviderSettings.php:178
6104
- msgid "Account SID"
6105
  msgstr ""
6106
 
6107
- #: extensions/email-notifications/classes/SMSProviderSettings.php:181
6108
- msgid "Enter Account SID"
6109
  msgstr ""
6110
 
6111
- #. translators: Twilio console link
6112
- #. translators: Twilio console link
6113
- #: extensions/email-notifications/classes/SMSProviderSettings.php:185, extensions/email-notifications/classes/SMSProviderSettings.php:200
6114
- msgid "To view API credentials visit %s"
6115
  msgstr ""
6116
 
6117
- #: extensions/email-notifications/classes/SMSProviderSettings.php:193
6118
- msgid "Auth token"
6119
  msgstr ""
6120
 
6121
- #: extensions/email-notifications/classes/SMSProviderSettings.php:196
6122
- msgid "Enter Auth Token"
6123
  msgstr ""
6124
 
6125
- #: extensions/email-notifications/classes/SMSProviderSettings.php:208
6126
- msgid "Twilio number / Alphanumeric ID"
6127
  msgstr ""
6128
 
6129
- #: extensions/email-notifications/classes/SMSProviderSettings.php:211, extensions/email-notifications/classes/SMSProviderSettings.php:250
6130
- msgid "+16175551212"
6131
  msgstr ""
6132
 
6133
- #: extensions/email-notifications/classes/SMSProviderSettings.php:212
6134
- msgid "Specify a Twilio phone number including the country code (e.g. +16175551212) or a valid Alphanumeric ID (e.g. WSAL)"
6135
  msgstr ""
6136
 
6137
- #: extensions/email-notifications/classes/SMSProviderSettings.php:247
6138
- msgid "Recipient Number"
6139
  msgstr ""
6140
 
6141
- #: extensions/email-notifications/classes/SMSProviderSettings.php:251
6142
- msgid "Country code + 10-digit Twilio phone number (i.e. +16175551212)"
6143
  msgstr ""
6144
 
6145
- #: extensions/email-notifications/classes/SMSProviderSettings.php:257
6146
- msgid "Message Body"
6147
  msgstr ""
6148
 
6149
- #: extensions/email-notifications/classes/SMSProviderSettings.php:261
6150
- msgid "The text of the message you want to send, limited to 1600 characters."
6151
  msgstr ""
6152
 
6153
- #: extensions/external-db/classes/Ajax.php:9, extensions/external-db/classes/Connections.php:18, extensions/external-db/classes/DataMigration.php:9, extensions/external-db/classes/ExternalStorageTab.php:18, extensions/external-db/classes/MigrationCancellation.php:9, extensions/external-db/classes/Mirroring.php:18, extensions/external-db/classes/Settings.php:17, extensions/external-db/classes/StorageSwitch.php:9, extensions/external-db/classes/StorageSwitchToExternal.php:9, extensions/external-db/classes/StorageSwitchToLocal.php:9
6154
- msgid "You are not allowed to view this page."
6155
  msgstr ""
6156
 
6157
- #: extensions/external-db/classes/Common.php:812, extensions/external-db/classes/Settings.php:102
6158
- msgid "External Storage"
6159
  msgstr ""
6160
 
6161
- #. translators: A string wrapped in a link saying to create and configure databases and services connections.
6162
- #: extensions/external-db/classes/Connections.php:78
6163
- msgid "In this section you can %s. Database connections can be used as an external database and for activity log archiving. Third party services connections can be used to mirror the activity logs into them. You can have multiple connections. Please note that connections that are in use cannot be deleted."
6164
  msgstr ""
6165
 
6166
- #: extensions/external-db/classes/Connections.php:82
6167
- msgid "create and configure databases and services connections"
6168
  msgstr ""
6169
 
6170
- #: extensions/external-db/classes/Connections.php:89
6171
- msgid "Create a Connection"
6172
  msgstr ""
6173
 
6174
- #: extensions/external-db/classes/Connections.php:92, extensions/external-db/classes/Settings.php:97
6175
- msgid "Connections"
6176
  msgstr ""
6177
 
6178
- #: extensions/external-db/classes/Connections.php:98
6179
- msgid "Used for"
6180
  msgstr ""
6181
 
6182
- #: extensions/external-db/classes/Connections.php:126, extensions/external-db/classes/Mirroring.php:127
6183
- msgid "Configure"
6184
  msgstr ""
6185
 
6186
- #: extensions/external-db/classes/Connections.php:140
6187
- msgid "Send a test message"
6188
  msgstr ""
6189
 
6190
- #: extensions/external-db/classes/Connections.php:108
6191
- msgid "No connections so far."
6192
  msgstr ""
6193
 
6194
- #: extensions/external-db/classes/Connections.php:180
6195
- msgid "No connection name specified!"
6196
  msgstr ""
6197
 
6198
- #: extensions/external-db/classes/Connections.php:193
6199
- msgid "Configure Connection "
6200
  msgstr ""
6201
 
6202
- #: extensions/external-db/classes/Connections.php:198, extensions/external-db/classes/Connections.php:560
6203
- msgid "Configure the connection"
6204
  msgstr ""
6205
 
6206
- #: extensions/external-db/classes/Connections.php:199, extensions/external-db/classes/Connections.php:561
6207
- msgid "Configure the connection details."
6208
  msgstr ""
6209
 
6210
- #: extensions/external-db/classes/Connections.php:203, extensions/external-db/classes/Connections.php:526, extensions/external-db/classes/Connections.php:652
6211
- msgid "Save Connection"
6212
  msgstr ""
6213
 
6214
- #: extensions/external-db/classes/Connections.php:239
6215
- msgid "Database Name"
6216
  msgstr ""
6217
 
6218
- #: extensions/external-db/classes/Connections.php:245
6219
- msgid "Specify the name of the database where you will store the WordPress activity log."
6220
  msgstr ""
6221
 
6222
- #: extensions/external-db/classes/Connections.php:251
6223
- msgid "Database User"
6224
  msgstr ""
6225
 
6226
- #: extensions/external-db/classes/Connections.php:257
6227
- msgid "Specify the username to be used to connect to the database."
6228
  msgstr ""
6229
 
6230
- #: extensions/external-db/classes/Connections.php:263
6231
- msgid "Database Password"
6232
  msgstr ""
6233
 
6234
- #: extensions/external-db/classes/Connections.php:268
6235
- msgid "Specify the password each time you want to submit new changes. For security reasons, the plugin does not store the password in this form."
6236
  msgstr ""
6237
 
6238
- #: extensions/external-db/classes/Connections.php:274
6239
- msgid "Database Hostname"
6240
  msgstr ""
6241
 
6242
- #: extensions/external-db/classes/Connections.php:280
6243
- msgid "Specify the hostname or IP address of the database server."
6244
  msgstr ""
6245
 
6246
- #: extensions/external-db/classes/Connections.php:286
6247
- msgid "Database Base Prefix"
6248
  msgstr ""
6249
 
6250
- #: extensions/external-db/classes/Connections.php:294
6251
- msgid "Specify a prefix for the database tables of the activity log. Ideally this prefix should be different from the one you use for WordPress so it is not guessable."
6252
  msgstr ""
6253
 
6254
- #: extensions/external-db/classes/Connections.php:300
6255
- msgid "Use website URL as table prefix"
6256
  msgstr ""
6257
 
6258
- #: extensions/external-db/classes/Connections.php:306
6259
- msgid "SSL/TLS"
6260
  msgstr ""
6261
 
6262
- #: extensions/external-db/classes/Connections.php:312
6263
- msgid "Enable to use SSL/TLS to connect with the MySQL server."
6264
  msgstr ""
6265
 
6266
- #: extensions/external-db/classes/Connections.php:319
6267
- msgid "Client Certificate"
 
 
6268
  msgstr ""
6269
 
6270
- #: extensions/external-db/classes/Connections.php:326
6271
- msgid "Enable to use SSL/TLS certificates below to connect with the MySQL server."
6272
  msgstr ""
6273
 
6274
- #: extensions/external-db/classes/Connections.php:331
6275
- msgid "CA SSL Certificate (--ssl-ca)"
6276
  msgstr ""
6277
 
6278
- #: extensions/external-db/classes/Connections.php:336
6279
- msgid "Server SSL Certificate (--ssl-cert)"
6280
  msgstr ""
6281
 
6282
- #: extensions/external-db/classes/Connections.php:341
6283
- msgid "Client Certificate (--ssl-key)"
6284
  msgstr ""
6285
 
6286
- #: extensions/external-db/classes/Connections.php:223
6287
- msgid "Connection Name"
6288
  msgstr ""
6289
 
6290
- #: extensions/external-db/classes/Connections.php:514
6291
- msgid "MySQL Database"
6292
  msgstr ""
6293
 
6294
- #: extensions/external-db/classes/Connections.php:527
6295
- msgid "Select type"
6296
  msgstr ""
6297
 
6298
- #: extensions/external-db/classes/Connections.php:529
6299
- msgid "Select the type of connection"
6300
  msgstr ""
6301
 
6302
- #: extensions/external-db/classes/Connections.php:530
6303
- msgid "Select the type of connection you would like to setup."
6304
  msgstr ""
6305
 
6306
- #: extensions/external-db/classes/Connections.php:535
6307
- msgid "Type of Connection"
6308
  msgstr ""
6309
 
6310
- #: extensions/external-db/classes/Connections.php:551
6311
- msgid "Check requirements"
6312
  msgstr ""
6313
 
6314
- #: extensions/external-db/classes/Connections.php:553
6315
- msgid "Requirements check"
6316
  msgstr ""
6317
 
6318
- #: extensions/external-db/classes/Connections.php:558
6319
- msgid "Configure connection"
6320
  msgstr ""
6321
 
6322
- #: extensions/external-db/classes/Connections.php:568
6323
- msgid "Test connection"
6324
  msgstr ""
6325
 
6326
- #: extensions/external-db/classes/Connections.php:570
6327
- msgid "Connectivity test"
6328
  msgstr ""
6329
 
6330
- #: extensions/external-db/classes/Connections.php:575, extensions/external-db/classes/Connections.php:577
6331
- msgid "Name the connection"
6332
  msgstr ""
6333
 
6334
- #: extensions/external-db/classes/Connections.php:578
6335
- msgid "Please specify a friendly name for the connection. Connection names can be 25 characters long and can only contain letters, numbers and underscores."
6336
  msgstr ""
6337
 
6338
- #: extensions/external-db/classes/Connections.php:644
6339
- msgid "Checking requirements..."
6340
  msgstr ""
6341
 
6342
- #: extensions/external-db/classes/Connections.php:646, extensions/external-db/classes/Mirroring.php:610
6343
- msgid "Are you sure that you want to delete this connection?"
6344
  msgstr ""
6345
 
6346
- #: extensions/external-db/classes/Connections.php:647, extensions/external-db/classes/Mirroring.php:605, extensions/external-db/classes/Settings.php:785
6347
- msgid "Connection failed!"
6348
  msgstr ""
6349
 
6350
- #: extensions/external-db/classes/Connections.php:648
6351
- msgid "Connection test failed! Please check the connection configuration or try again later."
6352
  msgstr ""
6353
 
6354
- #: extensions/external-db/classes/Connections.php:649, extensions/external-db/classes/Mirroring.php:606
6355
- msgid "Connected"
6356
  msgstr ""
6357
 
6358
- #: extensions/external-db/classes/Connections.php:650, extensions/external-db/classes/Mirroring.php:601, extensions/external-db/classes/Settings.php:798
6359
- msgid "Testing..."
6360
  msgstr ""
6361
 
6362
- #: extensions/external-db/classes/Connections.php:654
6363
- msgid "Previous"
6364
  msgstr ""
6365
 
6366
- #: extensions/external-db/classes/Connections.php:655
6367
- msgid "Unable to check the requirements at the moment. Communication with the server failed. Try again later."
6368
  msgstr ""
6369
 
6370
- #: extensions/external-db/classes/Connections.php:656
6371
- msgid "Sending a test message..."
6372
  msgstr ""
6373
 
6374
- #: extensions/external-db/classes/Connections.php:658, extensions/external-db/classes/Mirroring.php:599
6375
- msgid "Connections Wizard"
6376
  msgstr ""
6377
 
6378
- #: extensions/external-db/classes/Connections.php:834
6379
- msgid "Connection failed. Please check the configuration again."
6380
  msgstr ""
6381
 
6382
- #: extensions/external-db/classes/Connections.php:1002
6383
- msgid "Unknown connection type."
6384
  msgstr ""
6385
 
6386
- #: extensions/external-db/classes/Connections.php:997, extensions/external-db/classes/Connections.php:965
6387
- msgid "Connection successful."
6388
  msgstr ""
6389
 
6390
- #: extensions/external-db/classes/Connections.php:963
6391
- msgid "Connection failed."
6392
  msgstr ""
6393
 
6394
- #: extensions/external-db/classes/Connections.php:1023
6395
- msgid "Connection type is missing."
6396
  msgstr ""
6397
 
6398
- #: extensions/external-db/classes/Connections.php:1035
6399
- msgid "Unrecognized mirror type."
6400
  msgstr ""
6401
 
6402
- #: extensions/external-db/classes/Connections.php:1042
6403
- msgid "Requirements check failed."
6404
  msgstr ""
6405
 
6406
- #: extensions/external-db/classes/Connections.php:1047
6407
- msgid "All requirements are met. Your system is ready to use the selected connection type."
6408
  msgstr ""
6409
 
6410
- #: extensions/external-db/classes/Connections.php:1050
6411
- msgid "Selected connection type cannot be used on your system at the moment. The following requirements are not met."
6412
  msgstr ""
6413
 
6414
- #. translators: 1 is the help type being linked
6415
- #. translators: 1 is the help type being linked
6416
- #: extensions/external-db/classes/ExternalStorageTab.php:65, extensions/external-db/classes/Settings.php:317
6417
- msgid "Read more on %1$s."
6418
  msgstr ""
6419
 
6420
- #: extensions/external-db/classes/ExternalStorageTab.php:69
6421
- msgid "external storage for activity logs"
6422
  msgstr ""
6423
 
6424
- #: extensions/external-db/classes/ExternalStorageTab.php:73
6425
- msgid "In this section you can configure the plugin to store the WordPress activity log in an external storage rather than the WordPress database. This could be another database on a remote server."
6426
  msgstr ""
6427
 
6428
- #: extensions/external-db/classes/ExternalStorageTab.php:93
6429
- msgid "Migrating data to local database..."
6430
  msgstr ""
6431
 
6432
- #: extensions/external-db/classes/ExternalStorageTab.php:94
6433
- msgid "new events are still being saved to the external database."
6434
  msgstr ""
6435
 
6436
- #: extensions/external-db/classes/ExternalStorageTab.php:90
6437
- msgid "Migrating data to external database..."
6438
  msgstr ""
6439
 
6440
- #: extensions/external-db/classes/ExternalStorageTab.php:91
6441
- msgid "new events are still being saved to the local database."
6442
  msgstr ""
6443
 
6444
- #: extensions/external-db/classes/ExternalStorageTab.php:107
6445
- msgid "Processed: %1$d out of %2$d"
6446
  msgstr ""
6447
 
6448
- #: extensions/external-db/classes/ExternalStorageTab.php:114
6449
- msgid "Note:"
6450
  msgstr ""
6451
 
6452
- #: extensions/external-db/classes/ExternalStorageTab.php:121, extensions/external-db/classes/Settings.php:783
6453
- msgid "Cancel migration"
6454
  msgstr ""
6455
 
6456
- #: extensions/external-db/classes/ExternalStorageTab.php:118
6457
- msgid "Migration cancellation is pending. It will be cancelled next time the associated background task runs."
6458
  msgstr ""
6459
 
6460
- #: extensions/external-db/classes/ExternalStorageTab.php:145
6461
- msgid "Plugin is using local storage for activity logs at the moment."
6462
  msgstr ""
6463
 
6464
- #: extensions/external-db/classes/ExternalStorageTab.php:148
6465
- msgid "Switch to external database"
6466
  msgstr ""
6467
 
6468
- #: extensions/external-db/classes/ExternalStorageTab.php:135
6469
- msgid "Plugin is using external storage for activity logs at the moment."
6470
  msgstr ""
6471
 
6472
- #: extensions/external-db/classes/ExternalStorageTab.php:138
6473
- msgid "Switch to local database"
6474
  msgstr ""
6475
 
6476
- #: extensions/external-db/classes/ExternalStorageTab.php:142, extensions/external-db/classes/Settings.php:402
6477
- msgid "Test Connection"
6478
  msgstr ""
6479
 
6480
- #: extensions/external-db/classes/ExternalStorageTab.php:172
6481
- msgid "Switch to local storage"
6482
  msgstr ""
6483
 
6484
- #: extensions/external-db/classes/ExternalStorageTab.php:173
6485
- msgid "Do you want to change the plugin settings to start using the local database for storing the logs?"
6486
  msgstr ""
6487
 
6488
- #: extensions/external-db/classes/ExternalStorageTab.php:178, extensions/external-db/classes/ExternalStorageTab.php:206, extensions/external-db/classes/Settings.php:797
6489
- msgid "Switch connection"
6490
  msgstr ""
6491
 
6492
- #: extensions/external-db/classes/ExternalStorageTab.php:188
6493
- msgid "Select connection for external storage"
6494
  msgstr ""
6495
 
6496
- #: extensions/external-db/classes/ExternalStorageTab.php:196, extensions/external-db/classes/Mirroring.php:367, extensions/external-db/classes/Settings.php:338
6497
- msgid "Connection"
6498
  msgstr ""
6499
 
6500
- #: extensions/external-db/classes/ExternalStorageTab.php:213
6501
- msgid "Activity log events in the external (source) database"
6502
  msgstr ""
6503
 
6504
- #: extensions/external-db/classes/ExternalStorageTab.php:213
6505
- msgid "Activity log events in the local (source) database"
6506
  msgstr ""
6507
 
6508
- #: extensions/external-db/classes/ExternalStorageTab.php:214
6509
- msgid "Would you like to move these events to the local database or delete them and start afresh?"
6510
  msgstr ""
6511
 
6512
- #: extensions/external-db/classes/ExternalStorageTab.php:214
6513
- msgid "Would you like to move these events to the external database or delete them and start afresh?"
6514
  msgstr ""
6515
 
6516
- #: extensions/external-db/classes/ExternalStorageTab.php:220
6517
- msgid "There are activity log events in the source database."
6518
  msgstr ""
6519
 
6520
- #: extensions/external-db/classes/ExternalStorageTab.php:224
6521
- msgid "Migrate existing events"
6522
  msgstr ""
6523
 
6524
- #: extensions/external-db/classes/ExternalStorageTab.php:226
6525
- msgid "Delete existing events"
6526
  msgstr ""
6527
 
6528
- #: extensions/external-db/classes/ExternalStorageTab.php:236
6529
- msgid "Current"
6530
  msgstr ""
6531
 
6532
- #: extensions/external-db/classes/ExternalStorageTab.php:249
6533
- msgid "Currently connected to database %1$s on server %2$s"
6534
  msgstr ""
6535
 
6536
- #: extensions/external-db/classes/MigrationCancellation.php:41, extensions/external-db/classes/StorageSwitch.php:138
6537
- msgid "Insecure request."
6538
  msgstr ""
6539
 
6540
- #: extensions/external-db/classes/MigrationCancellation.php:47
6541
- msgid "Migration has already finished or it was cancelled."
6542
  msgstr ""
6543
 
6544
- #: extensions/external-db/classes/MigrationCancellation.php:60
6545
- msgid "Migration will be cancelled shortly"
6546
  msgstr ""
6547
 
6548
- #. translators: A string wrapped in a link saying activity log mirroring.
6549
- #: extensions/external-db/classes/Mirroring.php:75
6550
- msgid "In this section you can configure the mirroring of the WordPress activity log to third party services. You can mirror the activity logs to multiple third party services at the same time. For more information on mirroring and the supported third party services refer to %s."
6551
  msgstr ""
6552
 
6553
- #: extensions/external-db/classes/Mirroring.php:79
6554
- msgid "activity log mirroring"
6555
  msgstr ""
6556
 
6557
- #: extensions/external-db/classes/Mirroring.php:84
6558
- msgid "Setup an Activity Log Mirror"
6559
  msgstr ""
6560
 
6561
- #: extensions/external-db/classes/Mirroring.php:87
6562
- msgid "The WordPress activity log is currently being mirrored to:"
6563
  msgstr ""
6564
 
6565
- #: extensions/external-db/classes/Mirroring.php:101
6566
- msgid "No mirrors so far."
6567
  msgstr ""
6568
 
6569
- #: extensions/external-db/classes/Mirroring.php:137, extensions/external-db/classes/Mirroring.php:141
6570
- msgid "Write activity log to database"
6571
  msgstr ""
6572
 
6573
- #: extensions/external-db/classes/Mirroring.php:138
6574
- msgid "When you mirror the activity log to a third party service, the plugin still keeps a copy of the activity log in the WordPress or external database (depending on what you have configured). Switch off the below setting so no copy of the activity log is written to the database."
6575
  msgstr ""
6576
 
6577
- #: extensions/external-db/classes/Mirroring.php:154, extensions/external-db/classes/Settings.php:553
6578
- msgid "Current status:"
6579
  msgstr ""
6580
 
6581
- #: extensions/external-db/classes/Mirroring.php:170
6582
- msgid "Failed :("
6583
  msgstr ""
6584
 
6585
- #: extensions/external-db/classes/Mirroring.php:185, extensions/external-db/classes/Mirroring.php:862
6586
- msgid "Enabling"
6587
  msgstr ""
6588
 
6589
- #: extensions/external-db/classes/Mirroring.php:185
6590
- msgid "Disabling"
6591
  msgstr ""
6592
 
6593
- #: extensions/external-db/classes/Mirroring.php:249
6594
- msgid "Step 1"
6595
  msgstr ""
6596
 
6597
- #: extensions/external-db/classes/Mirroring.php:250
6598
- msgid "Step 2"
6599
  msgstr ""
6600
 
6601
- #: extensions/external-db/classes/Mirroring.php:251
6602
- msgid "Step 3"
6603
  msgstr ""
6604
 
6605
- #: extensions/external-db/classes/Mirroring.php:259
6606
- msgid "Select the connection where to mirror to the activity log"
6607
  msgstr ""
6608
 
6609
- #: extensions/external-db/classes/Mirroring.php:260, extensions/external-db/classes/Mirroring.php:317
6610
- msgid "Please specify a friendly name for the mirroring connection. Connection names can be 25 characters long, and can only contain letters, numbers and underscores."
6611
  msgstr ""
6612
 
6613
- #: extensions/external-db/classes/Mirroring.php:262, extensions/external-db/classes/Mirroring.php:319
6614
- msgid "This identifier will be used as the source in the logs, so you can easily identify which are the logs being mirrored from this website."
6615
  msgstr ""
6616
 
6617
- #: extensions/external-db/classes/Mirroring.php:264
6618
- msgid "Select one of the connections you have configured to where you want to mirror the activity log."
6619
  msgstr ""
6620
 
6621
- #: extensions/external-db/classes/Mirroring.php:268
6622
- msgid "Start once configured?"
6623
  msgstr ""
6624
 
6625
- #: extensions/external-db/classes/Mirroring.php:271
6626
- msgid "Tick this checkbox to enable the mirror and start sending data once set up."
6627
  msgstr ""
6628
 
6629
- #: extensions/external-db/classes/Mirroring.php:275
6630
- msgid "Configure mirror filtering"
6631
  msgstr ""
6632
 
6633
- #: extensions/external-db/classes/Mirroring.php:276
6634
- msgid "Configure any filtering you’d like to apply to this mirroring connection:"
6635
  msgstr ""
6636
 
6637
- #: extensions/external-db/classes/Mirroring.php:282, extensions/external-db/classes/Mirroring.php:325
6638
- msgid "Save Mirror"
6639
  msgstr ""
6640
 
6641
- #: extensions/external-db/classes/Mirroring.php:301
6642
- msgid "No mirror name specified!"
6643
  msgstr ""
6644
 
6645
- #: extensions/external-db/classes/Mirroring.php:309
6646
- msgid "Configure Mirror "
6647
  msgstr ""
6648
 
6649
- #: extensions/external-db/classes/Mirroring.php:320
6650
- msgid "Configure the mirror"
6651
  msgstr ""
6652
 
6653
- #: extensions/external-db/classes/Mirroring.php:321
6654
- msgid "Configure the mirror details."
6655
  msgstr ""
6656
 
6657
- #: extensions/external-db/classes/Mirroring.php:410
6658
- msgid "Mirror Events"
6659
  msgstr ""
6660
 
6661
- #: extensions/external-db/classes/Mirroring.php:414
6662
- msgid "Exclude/Include events by ID"
6663
  msgstr ""
6664
 
6665
- #: extensions/external-db/classes/Mirroring.php:428
6666
- msgid "Send all events"
6667
  msgstr ""
6668
 
6669
- #: extensions/external-db/classes/Mirroring.php:433
6670
- msgid "Only send events with these IDs:"
6671
  msgstr ""
6672
 
6673
- #: extensions/external-db/classes/Mirroring.php:466
6674
- msgid "Send all events BUT NOT those with these IDs:"
6675
  msgstr ""
6676
 
6677
- #. translators: Events and Event IDs hyperlink.
6678
- #: extensions/external-db/classes/Mirroring.php:499
6679
- msgid "Refer to the %s for more information."
6680
  msgstr ""
6681
 
6682
- #: extensions/external-db/classes/Mirroring.php:499
6683
- msgid "list of events and events IDs"
6684
  msgstr ""
6685
 
6686
- #: extensions/external-db/classes/Mirroring.php:504
6687
- msgid "Exclude/Include severities"
6688
  msgstr ""
6689
 
6690
- #: extensions/external-db/classes/Mirroring.php:506
6691
- msgid "Should mirror these severities:"
6692
  msgstr ""
6693
 
6694
- #: extensions/external-db/classes/Mirroring.php:378, extensions/external-db/classes/Settings.php:721
6695
- msgid "Select a connection"
6696
  msgstr ""
6697
 
6698
- #: extensions/external-db/classes/Mirroring.php:355
6699
- msgid "Mirror identifier in logs"
6700
  msgstr ""
6701
 
6702
- #: extensions/external-db/classes/Mirroring.php:359
6703
- msgid "* Invalid mirror identifier"
6704
  msgstr ""
6705
 
6706
- #: extensions/external-db/classes/Mirroring.php:343
6707
- msgid "Mirror connection friendly name"
6708
  msgstr ""
6709
 
6710
- #: extensions/external-db/classes/Mirroring.php:347
6711
- msgid "* Invalid Mirror Name"
6712
  msgstr ""
6713
 
6714
- #: extensions/external-db/classes/Mirroring.php:600
6715
- msgid "Mirroring Wizard"
6716
  msgstr ""
6717
 
6718
- #: extensions/external-db/classes/Mirroring.php:603
6719
- msgid "Enabling..."
6720
  msgstr ""
6721
 
6722
- #: extensions/external-db/classes/Mirroring.php:604
6723
- msgid "Disabling..."
6724
  msgstr ""
6725
 
6726
- #: extensions/external-db/classes/Mirroring.php:607
6727
- msgid "Running..."
6728
  msgstr ""
6729
 
6730
- #: extensions/external-db/classes/Mirroring.php:608
6731
- msgid "Mirror Complete!"
6732
  msgstr ""
6733
 
6734
- #: extensions/external-db/classes/Mirroring.php:609
6735
- msgid "Failed!"
6736
  msgstr ""
6737
 
6738
- #: extensions/external-db/classes/Mirroring.php:611
6739
- msgid "Are you sure that you want to delete this mirror?"
6740
  msgstr ""
6741
 
6742
- #: extensions/external-db/classes/Mirroring.php:612, extensions/reports/inc/wsal-reporting-view.inc.php:1131
6743
- msgid "Select Event Code(s)"
6744
  msgstr ""
6745
 
6746
- #: extensions/external-db/classes/Mirroring.php:613
6747
- msgid "Select Severity Levels"
6748
  msgstr ""
6749
 
6750
- #: extensions/external-db/classes/Mirroring.php:614
6751
- msgid "Configure and create connection"
6752
  msgstr ""
6753
 
6754
- #: extensions/external-db/classes/Mirroring.php:674, extensions/external-db/classes/Settings.php:113
6755
- msgid "Mirroring"
6756
  msgstr ""
6757
 
6758
- #: extensions/external-db/classes/Mirroring.php:736
6759
- msgid "Mirror not found."
6760
  msgstr ""
6761
 
6762
- #: extensions/external-db/classes/Mirroring.php:830
6763
- msgid "The plugin is not saving the activity log to the database."
6764
  msgstr ""
6765
 
6766
- #: extensions/external-db/classes/Mirroring.php:832
6767
- msgid "The plugin is currently configured to not save the activity log to the database. It is only mirroring the activity log to third party services. The activity log you see below is a record of what happened until writing to the database was disabled. If you would like the plugin to start saving a copy of the activity log to the database again click the below button."
6768
  msgstr ""
6769
 
6770
- #: extensions/external-db/classes/Mirroring.php:835
6771
- msgid "Important"
6772
  msgstr ""
6773
 
6774
- #: extensions/external-db/classes/Mirroring.php:836
6775
- msgid "The activity log data that was generated when writing to the database was disabled, will not be available in the event viewer."
6776
  msgstr ""
6777
 
6778
- #: extensions/external-db/classes/Mirroring.php:840
6779
- msgid "Re-enable writing of activity log to the database"
6780
  msgstr ""
6781
 
6782
- #: extensions/external-db/classes/Mirroring.php:850
6783
- msgid "Try again later..."
6784
  msgstr ""
6785
 
6786
- #: extensions/external-db/classes/Mirroring.php:878
6787
- msgid "Database logging enabled!"
6788
  msgstr ""
6789
 
6790
- #: extensions/external-db/classes/Settings.php:107, extensions/external-db/classes/Settings.php:479
6791
- msgid "Archiving"
6792
  msgstr ""
6793
 
6794
- #: extensions/external-db/classes/Settings.php:157
6795
- msgid "Integrations - external databases & third party services configuration"
6796
  msgstr ""
6797
 
6798
- #: extensions/external-db/classes/Settings.php:171
6799
- msgid "Integrations"
6800
  msgstr ""
6801
 
6802
- #: extensions/external-db/classes/Settings.php:259
6803
- msgid "Please do not close this window while migrating events."
6804
  msgstr ""
6805
 
6806
- #: extensions/external-db/classes/Settings.php:321
6807
- msgid "archiving activity log data"
6808
  msgstr ""
6809
 
6810
- #: extensions/external-db/classes/Settings.php:330
6811
- msgid "In this section you can configure the archiving of old events to an archive database. Archives events can still be accessed and are included in search results and reports."
6812
  msgstr ""
6813
 
6814
- #: extensions/external-db/classes/Settings.php:336
6815
- msgid "Archive the WordPress Activity Log to this Database"
6816
  msgstr ""
6817
 
6818
- #: extensions/external-db/classes/Settings.php:347
6819
- msgid "Archive events that are older than"
6820
  msgstr ""
6821
 
6822
- #: extensions/external-db/classes/Settings.php:349
6823
- msgid "Archiving Options"
6824
  msgstr ""
6825
 
6826
- #: extensions/external-db/classes/Settings.php:363
6827
- msgid "Archive events older than"
6828
  msgstr ""
6829
 
6830
- #: extensions/external-db/classes/Settings.php:373
6831
- msgid "The configured archiving options will override the Security Events Pruning settings configured in the plugin’s settings."
6832
  msgstr ""
6833
 
6834
- #: extensions/external-db/classes/Settings.php:379
6835
- msgid "WordPress Activity Log Data Retention"
6836
  msgstr ""
6837
 
6838
- #: extensions/external-db/classes/Settings.php:380
6839
- msgid "Once you configure archiving these data retention settings will be used instead of the ones configured in the plugin's general settings."
6840
  msgstr ""
6841
 
6842
- #: extensions/external-db/classes/Settings.php:403
6843
- msgid "Execute Archiving Now"
6844
  msgstr ""
6845
 
6846
- #: extensions/external-db/classes/Settings.php:406
6847
- msgid "Reset Archiving Settings"
6848
  msgstr ""
6849
 
6850
- #: extensions/external-db/classes/Settings.php:407
6851
- msgid "Click the button below to disable archiving and reset the settings to no archiving. Note that the archived data will not be deleted."
6852
  msgstr ""
6853
 
6854
- #: extensions/external-db/classes/Settings.php:408
6855
- msgid "Disable Archiving & Reset Settings"
6856
  msgstr ""
6857
 
6858
- #: extensions/external-db/classes/Settings.php:511
6859
- msgid "Run the Archiving Process Every"
6860
  msgstr ""
6861
 
6862
- #: extensions/external-db/classes/Settings.php:522
6863
- msgid "15 minutes"
6864
  msgstr ""
6865
 
6866
- #: extensions/external-db/classes/Settings.php:525
6867
- msgid "1 hour"
6868
  msgstr ""
6869
 
6870
- #: extensions/external-db/classes/Settings.php:528
6871
- msgid "6 hours"
6872
  msgstr ""
6873
 
6874
- #: extensions/external-db/classes/Settings.php:531
6875
- msgid "12 hours"
6876
  msgstr ""
6877
 
6878
- #: extensions/external-db/classes/Settings.php:534
6879
- msgid "24 hours"
6880
  msgstr ""
6881
 
6882
- #: extensions/external-db/classes/Settings.php:540
6883
- msgid "Stop Archiving"
6884
  msgstr ""
6885
 
6886
- #: extensions/external-db/classes/Settings.php:567
6887
- msgid "Running"
6888
  msgstr ""
6889
 
6890
- #: extensions/external-db/classes/Settings.php:612
6891
- msgid "Attention!"
6892
  msgstr ""
6893
 
6894
- #. translators: %1$s: Alerts Pruning Period, %2$s: Alerts Archiving Period
6895
- #: extensions/external-db/classes/Settings.php:616
6896
- msgid "The activity log retention setting is configured to delete events older than %1$s. This period should be longer than the configured %2$s archiving period otherwise events will be deleted and not archived."
6897
  msgstr ""
6898
 
6899
- #: extensions/external-db/classes/Settings.php:668, extensions/external-db/classes/Settings.php:679
6900
- msgid "No connection found."
6901
  msgstr ""
6902
 
6903
- #: extensions/external-db/classes/Settings.php:691
6904
- msgid "Successfully connected to database."
6905
  msgstr ""
6906
 
6907
- #: extensions/external-db/classes/Settings.php:781
6908
- msgid "Archiving complete!"
6909
  msgstr ""
6910
 
6911
- #: extensions/external-db/classes/Settings.php:782
6912
- msgid "Archiving..."
6913
  msgstr ""
6914
 
6915
- #: extensions/external-db/classes/Settings.php:784
6916
- msgid "Continue..."
6917
  msgstr ""
6918
 
6919
- #: extensions/external-db/classes/Settings.php:786
6920
- msgid "Connected!"
6921
  msgstr ""
6922
 
6923
- #: extensions/external-db/classes/Settings.php:787
6924
- msgid "Done!"
6925
  msgstr ""
6926
 
6927
- #. translators: %d: Number of events.
6928
- #: extensions/external-db/classes/Settings.php:789
6929
- msgid " So far %d events have been migrated."
6930
  msgstr ""
6931
 
6932
- #: extensions/external-db/classes/Settings.php:790
6933
- msgid "Migration complete"
6934
  msgstr ""
6935
 
6936
- #: extensions/external-db/classes/Settings.php:791
6937
- msgid "WordPress security events successfully migrated to the external database."
6938
  msgstr ""
6939
 
6940
- #: extensions/external-db/classes/Settings.php:792
6941
- msgid "No events to migrate."
6942
  msgstr ""
6943
 
6944
- #: extensions/external-db/classes/Settings.php:793
6945
- msgid "Resetting failed!"
6946
  msgstr ""
6947
 
6948
- #: extensions/external-db/classes/Settings.php:794
6949
- msgid "Resetting..."
6950
  msgstr ""
6951
 
6952
- #: extensions/external-db/classes/Settings.php:795
6953
- msgid "WordPress security events successfully migrated to WordPress database."
6954
  msgstr ""
6955
 
6956
- #: extensions/external-db/classes/Settings.php:796
6957
- msgid "Please select connection to be used for external storage."
6958
  msgstr ""
6959
 
6960
- #: extensions/external-db/classes/Settings.php:799
6961
- msgid "Working..."
6962
  msgstr ""
6963
 
6964
- #: extensions/external-db/classes/Settings.php:858
6965
- msgid "Bad request. Target state attribute is missing."
6966
  msgstr ""
6967
 
6968
- #: extensions/external-db/classes/StorageSwitch.php:73
6969
- msgid "The migration of the activity log data from the local database to the external database has started."
6970
  msgstr ""
6971
 
6972
- #: extensions/external-db/classes/StorageSwitch.php:73
6973
- msgid "The migration of the activity log data from the external database to the local database has started."
6974
  msgstr ""
6975
 
6976
- #: extensions/external-db/classes/StorageSwitch.php:75
6977
- msgid "Click %s to close this prompt and see the progress."
6978
  msgstr ""
6979
 
6980
- #: extensions/external-db/classes/StorageSwitch.php:76
6981
- msgid "Continue"
6982
  msgstr ""
6983
 
6984
- #: extensions/external-db/classes/StorageSwitch.php:79
6985
- msgid "Activity log migration has started"
6986
  msgstr ""
6987
 
6988
- #: extensions/external-db/classes/StorageSwitch.php:109
6989
- msgid "Plugin found non-empty tables in the target database."
6990
  msgstr ""
6991
 
6992
- #: extensions/external-db/classes/StorageSwitch.php:110
6993
- msgid "Please contact the support or empty the tables manually and try again."
6994
  msgstr ""
6995
 
6996
- #: extensions/external-db/classes/StorageSwitchToExternal.php:39
6997
- msgid "Connection name parameter is missing."
 
 
 
 
 
6998
  msgstr ""
6999
 
7000
- #: extensions/external-db/classes/StorageSwitchToExternal.php:64
7001
- msgid "Connection %s not found."
 
 
 
 
 
7002
  msgstr ""
7003
 
7004
- #: extensions/external-db/classes/StorageSwitchToExternal.php:81
7005
- msgid "Plugin already uses an external storage."
7006
  msgstr ""
7007
 
7008
- #: extensions/external-db/classes/StorageSwitchToExternal.php:97, extensions/external-db/classes/StorageSwitchToLocal.php:39
7009
- msgid "Activity log events deleted from local database"
7010
  msgstr ""
7011
 
7012
- #: extensions/external-db/classes/StorageSwitchToExternal.php:99
7013
- msgid "The plugin has successfully deleted the activity log events from the local database. Now the plugin is connected and will save the activity log events using the external database connection %s."
7014
  msgstr ""
7015
 
7016
- #: extensions/external-db/classes/StorageSwitchToExternal.php:125
7017
- msgid "Switched to external database"
7018
  msgstr ""
7019
 
7020
- #: extensions/external-db/classes/StorageSwitchToExternal.php:127
7021
- msgid "Plugin is now connected to an external database %s."
7022
  msgstr ""
7023
 
7024
- #: extensions/external-db/classes/StorageSwitchToExternal.php:144
7025
- msgid "Cannot connect to the selected database connection."
7026
  msgstr ""
7027
 
7028
- #: extensions/external-db/classes/StorageSwitchToLocal.php:40
7029
- msgid "The plugin has successfully deleted the activity log events from the external database. Now the plugin is connected and will save the activity log events using the local database."
7030
  msgstr ""
7031
 
7032
- #: extensions/external-db/classes/StorageSwitchToLocal.php:70
7033
- msgid "Switched to local database"
7034
  msgstr ""
7035
 
7036
- #: extensions/external-db/classes/StorageSwitchToLocal.php:71
7037
- msgid "Plugin is now connected to the local database."
7038
  msgstr ""
7039
 
7040
- #: extensions/reports/classes/Common.php:698, extensions/reports/classes/Common.php:1267
7041
- msgid "%1$s - Website %2$s"
7042
  msgstr ""
7043
 
7044
- #: extensions/reports/classes/Common.php:701, extensions/reports/classes/Common.php:1270
7045
- msgid "Week number %1$s - Website %2$s"
7046
  msgstr ""
7047
 
7048
- #: extensions/reports/classes/Common.php:704, extensions/reports/classes/Common.php:1273
7049
- msgid "Month %1$s %2$s- Website %3$s"
7050
  msgstr ""
7051
 
7052
- #: extensions/reports/classes/Common.php:707, extensions/reports/classes/Common.php:1276
7053
- msgid "Quarter %1$s - Website %2$s"
7054
  msgstr ""
7055
 
7056
- #: extensions/reports/classes/Common.php:716, extensions/reports/classes/Common.php:1291
7057
- msgid " - %s Email Report"
7058
  msgstr ""
7059
 
7060
- #: extensions/reports/classes/Common.php:933, extensions/reports/classes/Common.php:927
7061
- msgid "Internal error. <code>%s</code> key was not found."
7062
  msgstr ""
7063
 
7064
- #: extensions/reports/classes/Common.php:955, extensions/reports/classes/Common.php:1096
7065
- msgid "Please specify at least one Alert Group or specify an Alert Code."
7066
  msgstr ""
7067
 
7068
- #: extensions/reports/classes/Common.php:963
7069
- msgid "Internal Error: Could not detect the type of the report to generate."
7070
  msgstr ""
7071
 
7072
- #: extensions/reports/classes/Common.php:988, extensions/reports/classes/Common.php:1024, extensions/reports/classes/Common.php:1382, extensions/reports/classes/Common.php:1401, extensions/reports/classes/Common.php:1581
7073
- msgid "There are no alerts that match your filtering criteria. Please try a different set of rules."
7074
  msgstr ""
7075
 
7076
- #: extensions/reports/classes/Common.php:1067
7077
- msgid "Internal Error. Could not retrieve the alerts from the main plugin."
7078
  msgstr ""
7079
 
7080
- #: extensions/reports/classes/Common.php:1385, extensions/reports/classes/Common.php:1404, extensions/reports/classes/Common.php:1584
7081
- msgid "Error: The <strong>%s</strong> path is not accessible."
7082
  msgstr ""
7083
 
7084
- #: extensions/reports/classes/CsvReportGenerator.php:76
7085
- msgid "Blog Name"
7086
  msgstr ""
7087
 
7088
- #: extensions/reports/classes/CsvReportGenerator.php:83, extensions/reports/classes/HtmlReportGenerator.php:247, extensions/user-sessions/classes/View/Sessions.php:163
7089
- msgid "Source IP"
7090
  msgstr ""
7091
 
7092
- #: extensions/reports/classes/CsvReportGenerator.php:84, extensions/reports/classes/HtmlReportGenerator.php:248
7093
- msgid "Object Type"
7094
  msgstr ""
7095
 
7096
- #: extensions/reports/classes/CsvReportGenerator.php:87
7097
- msgid "Metadata"
7098
  msgstr ""
7099
 
7100
- #: extensions/reports/classes/CsvReportGenerator.php:88
7101
- msgid "Links"
7102
  msgstr ""
7103
 
7104
- #: extensions/reports/classes/CsvReportGenerator.php:67, extensions/reports/classes/HtmlReportGenerator.php:223
7105
- msgid "Logins"
7106
  msgstr ""
7107
 
7108
- #: extensions/reports/classes/CsvReportGenerator.php:198, extensions/reports/classes/HtmlReportGenerator.php:359
7109
- msgid "Display name"
7110
  msgstr ""
7111
 
7112
- #: extensions/reports/classes/CsvReportGenerator.php:199, extensions/reports/classes/HtmlReportGenerator.php:360
7113
- msgid "Unique IP"
7114
  msgstr ""
7115
 
7116
- #: extensions/reports/classes/CsvReportGenerator.php:200, extensions/reports/classes/HtmlReportGenerator.php:361
7117
- msgid "List of IP addresses"
7118
  msgstr ""
7119
 
7120
- #: extensions/reports/classes/CsvReportGenerator.php:255, extensions/reports/classes/HtmlReportGenerator.php:394
7121
- msgid "Number of Logins"
7122
  msgstr ""
7123
 
7124
- #: extensions/reports/classes/CsvReportGenerator.php:264, extensions/reports/classes/HtmlReportGenerator.php:412
7125
- msgid "Views"
7126
  msgstr ""
7127
 
7128
- #: extensions/reports/classes/HtmlReportGenerator.php:79, extensions/reports/classes/HtmlReportGenerator.php:327
7129
- msgid "WP Activity Log Reporter"
7130
  msgstr ""
7131
 
7132
- #: extensions/reports/classes/HtmlReportGenerator.php:112
7133
- msgid "Report from"
7134
  msgstr ""
7135
 
7136
- #: extensions/reports/classes/HtmlReportGenerator.php:112
7137
- msgid "website"
7138
  msgstr ""
7139
 
7140
- #: extensions/reports/classes/HtmlReportGenerator.php:119, extensions/reports/classes/HtmlReportGenerator.php:336
7141
- msgid "Report Details:"
7142
  msgstr ""
7143
 
7144
- #: extensions/reports/classes/HtmlReportGenerator.php:120, extensions/reports/classes/HtmlReportGenerator.php:337
7145
- msgid "Generated on:"
7146
  msgstr ""
7147
 
7148
- #: extensions/reports/classes/HtmlReportGenerator.php:121, extensions/reports/classes/HtmlReportGenerator.php:338
7149
- msgid "Generated by:"
7150
  msgstr ""
7151
 
7152
- #: extensions/reports/classes/HtmlReportGenerator.php:127
7153
- msgid "Site(s)"
7154
  msgstr ""
7155
 
7156
- #: extensions/reports/classes/HtmlReportGenerator.php:128
7157
- msgid "User(s)"
7158
  msgstr ""
7159
 
7160
- #: extensions/reports/classes/HtmlReportGenerator.php:129
7161
- msgid "Role(s)"
7162
  msgstr ""
7163
 
7164
- #: extensions/reports/classes/HtmlReportGenerator.php:131
7165
- msgid "Alert Groups"
7166
  msgstr ""
7167
 
7168
- #: extensions/reports/classes/HtmlReportGenerator.php:132, extensions/reports/classes/HtmlReportGenerator.php:342
7169
- msgid "Alert Code(s)"
7170
  msgstr ""
7171
 
7172
- #: extensions/reports/classes/HtmlReportGenerator.php:133, extensions/reports/classes/HtmlReportGenerator.php:343
7173
- msgid "Start date"
7174
  msgstr ""
7175
 
7176
- #: extensions/reports/classes/HtmlReportGenerator.php:134, extensions/reports/classes/HtmlReportGenerator.php:344
7177
- msgid "End date"
7178
  msgstr ""
7179
 
7180
- #: extensions/reports/classes/HtmlReportGenerator.php:135
7181
- msgid "Post Types"
7182
  msgstr ""
7183
 
7184
- #: extensions/reports/classes/HtmlReportGenerator.php:136, extensions/reports/inc/wsal-reporting-view.inc.php:912, extensions/search/classes/FilterManager.php:495, extensions/search/classes/Filters/poststatusfilter.php:47, extensions/search/classes/Filters/poststatusfilter.php:82
7185
- msgid "Post Status"
7186
  msgstr ""
7187
 
7188
- #: extensions/reports/classes/HtmlReportGenerator.php:145, extensions/reports/classes/HtmlReportGenerator.php:313
7189
- msgid "From the beginning"
7190
  msgstr ""
7191
 
7192
- #: extensions/reports/classes/HtmlReportGenerator.php:190, extensions/reports/classes/HtmlReportGenerator.php:339
7193
- msgid "Criteria"
7194
  msgstr ""
7195
 
7196
- #: extensions/reports/classes/HtmlReportGenerator.php:330
7197
- msgid "Report generated with"
7198
  msgstr ""
7199
 
7200
- #: extensions/reports/classes/HtmlReportGenerator.php:333
7201
- msgid "WordPress Plugin"
7202
  msgstr ""
7203
 
7204
- #: extensions/reports/classes/HtmlReportGenerator.php:347
7205
- msgid "List of unique IP addresses used by the same user"
7206
  msgstr ""
7207
 
7208
- #: extensions/reports/classes/HtmlReportGenerator.php:355
7209
- msgid "Results"
7210
  msgstr ""
7211
 
7212
- #: extensions/reports/classes/HtmlReportGenerator.php:511
7213
- msgid "TOTAL"
7214
  msgstr ""
7215
 
7216
- #: extensions/reports/classes/HtmlReportGenerator.php:531, extensions/reports/inc/wsal-reporting-view.inc.php:898
7217
- msgid "Posts"
7218
  msgstr ""
7219
 
7220
- #: extensions/reports/inc/wsal-reporting-view.inc.php:195
7221
- msgid "Invalid Request. Please refresh the page and try again."
7222
  msgstr ""
7223
 
7224
- #: extensions/reports/inc/wsal-reporting-view.inc.php:216, extensions/reports/inc/wsal-reporting-view.inc.php:208
7225
- msgid "Error (TODO - error message): Please select SITES"
7226
  msgstr ""
7227
 
7228
- #: extensions/reports/inc/wsal-reporting-view.inc.php:268, extensions/reports/inc/wsal-reporting-view.inc.php:237
7229
- msgid "Error (TODO - error message): Please select USERS"
7230
  msgstr ""
7231
 
7232
- #: extensions/reports/inc/wsal-reporting-view.inc.php:347, extensions/reports/inc/wsal-reporting-view.inc.php:311
7233
- msgid "Error: Please select at least one role"
7234
  msgstr ""
7235
 
7236
- #: extensions/reports/inc/wsal-reporting-view.inc.php:403, extensions/reports/inc/wsal-reporting-view.inc.php:394
7237
- msgid "Error: Please select at least one IP address"
 
 
7238
  msgstr ""
7239
 
7240
- #: extensions/reports/inc/wsal-reporting-view.inc.php:430, extensions/reports/inc/wsal-reporting-view.inc.php:421
7241
- msgid "Error: Please select at least one object"
 
 
 
7242
  msgstr ""
7243
 
7244
- #: extensions/reports/inc/wsal-reporting-view.inc.php:456, extensions/reports/inc/wsal-reporting-view.inc.php:447
7245
- msgid "Error: Please select at least one event object"
7246
  msgstr ""
7247
 
7248
- #: extensions/reports/inc/wsal-reporting-view.inc.php:541
7249
- msgid "Please select the report format."
7250
  msgstr ""
7251
 
7252
- #: extensions/reports/inc/wsal-reporting-view.inc.php:600
7253
- msgid "Periodic Report successfully saved."
7254
  msgstr ""
7255
 
7256
- #: extensions/reports/inc/wsal-reporting-view.inc.php:563, extensions/reports/inc/wsal-reporting-view.inc.php:619
7257
- msgid "Loading"
7258
  msgstr ""
7259
 
7260
- #: extensions/reports/inc/wsal-reporting-view.inc.php:564, extensions/reports/inc/wsal-reporting-view.inc.php:620
7261
- msgid " Generating report. Please do not close this window."
7262
  msgstr ""
7263
 
7264
- #: extensions/reports/inc/wsal-reporting-view.inc.php:568, extensions/reports/inc/wsal-reporting-view.inc.php:624
7265
- msgid "Searching events, "
7266
  msgstr ""
7267
 
7268
- #: extensions/reports/inc/wsal-reporting-view.inc.php:568, extensions/reports/inc/wsal-reporting-view.inc.php:624
7269
- msgid " currently found."
7270
  msgstr ""
7271
 
7272
- #: extensions/reports/inc/wsal-reporting-view.inc.php:646
7273
- msgid "Periodic Report successfully Deleted."
7274
  msgstr ""
7275
 
7276
- #: extensions/reports/inc/wsal-reporting-view.inc.php:677
7277
- msgid "Generate & Configure Periodic Reports"
7278
  msgstr ""
7279
 
7280
- #: extensions/reports/inc/wsal-reporting-view.inc.php:678
7281
- msgid "Statistics Reports"
7282
  msgstr ""
7283
 
7284
- #: extensions/reports/inc/wsal-reporting-view.inc.php:698
7285
- msgid "Generate a report"
7286
  msgstr ""
7287
 
7288
- #: extensions/reports/inc/wsal-reporting-view.inc.php:701
7289
- msgid "Step 1: Select the type of report"
7290
  msgstr ""
7291
 
7292
- #: extensions/reports/inc/wsal-reporting-view.inc.php:707
7293
- msgid "By Site(s)"
7294
  msgstr ""
7295
 
7296
- #: extensions/reports/inc/wsal-reporting-view.inc.php:715
7297
- msgid "These specific sites"
7298
  msgstr ""
7299
 
7300
- #: extensions/reports/inc/wsal-reporting-view.inc.php:720
7301
- msgid "All sites except these"
7302
  msgstr ""
7303
 
7304
- #: extensions/reports/inc/wsal-reporting-view.inc.php:741
7305
- msgid "By User(s)"
7306
  msgstr ""
7307
 
7308
- #: extensions/reports/inc/wsal-reporting-view.inc.php:745
7309
- msgid "All Users"
7310
  msgstr ""
7311
 
7312
- #: extensions/reports/inc/wsal-reporting-view.inc.php:749
7313
- msgid "These specific users"
7314
  msgstr ""
7315
 
7316
- #: extensions/reports/inc/wsal-reporting-view.inc.php:758
7317
- msgid "All users except these"
7318
  msgstr ""
7319
 
7320
- #: extensions/reports/inc/wsal-reporting-view.inc.php:768
7321
- msgid "Automated verification of usernames is disabled because you have more than 100 users. The process might require a lot of resources to work with a lot of users. Tick the option below to enable it again."
7322
  msgstr ""
7323
 
7324
- #: extensions/reports/inc/wsal-reporting-view.inc.php:773
7325
- msgid "Enable Autocomplete"
7326
  msgstr ""
7327
 
7328
- #: extensions/reports/inc/wsal-reporting-view.inc.php:782
7329
- msgid "By Role(s)"
7330
  msgstr ""
7331
 
7332
- #: extensions/reports/inc/wsal-reporting-view.inc.php:786
7333
- msgid "All Roles"
7334
  msgstr ""
7335
 
7336
- #: extensions/reports/inc/wsal-reporting-view.inc.php:790
7337
- msgid "These specific roles"
7338
  msgstr ""
7339
 
7340
- #: extensions/reports/inc/wsal-reporting-view.inc.php:795
7341
- msgid "All roles except these"
7342
  msgstr ""
7343
 
7344
- #: extensions/reports/inc/wsal-reporting-view.inc.php:803
7345
- msgid "By IP Address(es)"
7346
  msgstr ""
7347
 
7348
- #: extensions/reports/inc/wsal-reporting-view.inc.php:807
7349
- msgid "All IP Addresses"
7350
  msgstr ""
7351
 
7352
- #: extensions/reports/inc/wsal-reporting-view.inc.php:811
7353
- msgid "These specific IP addresses"
7354
  msgstr ""
7355
 
7356
- #: extensions/reports/inc/wsal-reporting-view.inc.php:816
7357
- msgid "All IP addresses except these"
7358
  msgstr ""
7359
 
7360
- #: extensions/reports/inc/wsal-reporting-view.inc.php:824
7361
- msgid "By Object(s)"
7362
  msgstr ""
7363
 
7364
- #: extensions/reports/inc/wsal-reporting-view.inc.php:828
7365
- msgid "All Objects"
7366
  msgstr ""
7367
 
7368
- #: extensions/reports/inc/wsal-reporting-view.inc.php:832
7369
- msgid "These specific objects"
7370
  msgstr ""
7371
 
7372
- #: extensions/reports/inc/wsal-reporting-view.inc.php:837
7373
- msgid "All objects except these"
7374
  msgstr ""
7375
 
7376
- #: extensions/reports/inc/wsal-reporting-view.inc.php:845
7377
- msgid "By Event Type(s)"
7378
  msgstr ""
7379
 
7380
- #: extensions/reports/inc/wsal-reporting-view.inc.php:849
7381
- msgid "All Event Types"
7382
  msgstr ""
7383
 
7384
- #: extensions/reports/inc/wsal-reporting-view.inc.php:853
7385
- msgid "These specific event types"
7386
  msgstr ""
7387
 
7388
- #: extensions/reports/inc/wsal-reporting-view.inc.php:858
7389
- msgid "All event types except these"
7390
  msgstr ""
7391
 
7392
- #: extensions/reports/inc/wsal-reporting-view.inc.php:866
7393
- msgid "By Event Code(s)"
7394
  msgstr ""
7395
 
7396
- #: extensions/reports/inc/wsal-reporting-view.inc.php:904, extensions/search/classes/FilterManager.php:499, extensions/search/classes/Filters/posttypefilter.php:82
7397
- msgid "Post Type"
7398
  msgstr ""
7399
 
7400
- #: extensions/reports/inc/wsal-reporting-view.inc.php:926
7401
- msgid "Specify Event Codes"
7402
  msgstr ""
7403
 
7404
- #: extensions/reports/inc/wsal-reporting-view.inc.php:934
7405
- msgid "By the Below Criteria"
 
7406
  msgstr ""
7407
 
7408
- #: extensions/reports/inc/wsal-reporting-view.inc.php:939
7409
- msgid "Number & List of unique IP addresses per user"
7410
  msgstr ""
7411
 
7412
- #: extensions/reports/inc/wsal-reporting-view.inc.php:944
7413
- msgid "Number of Logins per user"
7414
  msgstr ""
7415
 
7416
- #: extensions/reports/inc/wsal-reporting-view.inc.php:979
7417
- msgid "Select site(s)"
7418
  msgstr ""
7419
 
7420
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1001
7421
- msgid "Select user(s)"
7422
  msgstr ""
7423
 
7424
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1043
7425
- msgid "Select role(s)"
7426
  msgstr ""
7427
 
7428
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1065
7429
- msgid "Select IP address(es)"
7430
  msgstr ""
7431
 
7432
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1087
7433
- msgid "Select Objects(s)"
7434
  msgstr ""
7435
 
7436
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1109
7437
- msgid "Select Type(s)"
7438
  msgstr ""
7439
 
7440
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1161
7441
- msgid "Select Post Type(s)"
7442
  msgstr ""
7443
 
7444
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1191
7445
- msgid "Select Post Status(es)"
7446
  msgstr ""
7447
 
7448
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1494
7449
- msgid "Step 2: Select the date range"
7450
  msgstr ""
7451
 
7452
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1496
7453
- msgid "Note: Do not specify any dates if you are creating a scheduled report or if you want to generate a report from when you started the audit trail."
7454
  msgstr ""
7455
 
7456
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1501
7457
- msgid "Start Date"
7458
  msgstr ""
7459
 
7460
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1504, extensions/reports/inc/wsal-reporting-view.inc.php:1643
7461
- msgid "Select start date"
7462
  msgstr ""
7463
 
7464
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1510
7465
- msgid "End Date"
7466
  msgstr ""
7467
 
7468
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1513, extensions/reports/inc/wsal-reporting-view.inc.php:1652
7469
- msgid "Select end date"
7470
  msgstr ""
7471
 
7472
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1527, extensions/reports/inc/wsal-reporting-view.inc.php:1736
7473
- msgid "Step 3: Select Report Format"
7474
  msgstr ""
7475
 
7476
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1534, extensions/reports/inc/wsal-reporting-view.inc.php:1742
7477
- msgid "HTML"
7478
  msgstr ""
7479
 
7480
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1539, extensions/reports/inc/wsal-reporting-view.inc.php:1746
7481
- msgid "CSV"
7482
  msgstr ""
7483
 
7484
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1546
7485
- msgid "Step 4: Generate Report Now or Configure Periodic Reports"
7486
  msgstr ""
7487
 
7488
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1549
7489
- msgid "Generate Report Now"
7490
  msgstr ""
7491
 
7492
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1552
7493
- msgid " Use the buttons below to use the above criteria for a daily, weekly and monthly summary report which is sent automatically via email."
7494
  msgstr ""
7495
 
7496
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1555
7497
- msgid "Email address(es)"
7498
  msgstr ""
7499
 
7500
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1561
7501
- msgid "Report Name"
7502
  msgstr ""
7503
 
7504
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1567
7505
- msgid "Frequency"
7506
  msgstr ""
7507
 
7508
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1569
7509
- msgid "Daily"
7510
  msgstr ""
7511
 
7512
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1570
7513
- msgid "Weekly"
7514
  msgstr ""
7515
 
7516
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1571
7517
- msgid "Monthly"
7518
  msgstr ""
7519
 
7520
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1572
7521
- msgid "Quarterly"
7522
  msgstr ""
7523
 
7524
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1585
7525
- msgid "Configured Periodic Reports"
7526
  msgstr ""
7527
 
7528
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1588
7529
- msgid "Below is the list of configured periodic reports. Click on Modify to load the criteria and configure it above. To save the new criteria as a new report change the report name and save it. Do not change the report name to overwrite the existing periodic report."
 
7530
  msgstr ""
7531
 
7532
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1591
7533
- msgid "Note: Use the Send Now button to generate a report with data from the last 90 days if a quarterly report is configured, 30 days if monthly report is configured and 7 days if weekly report is configured."
7534
  msgstr ""
7535
 
7536
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1636
7537
- msgid "Step 1: Choose Date Range"
7538
  msgstr ""
7539
 
7540
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1665
7541
- msgid "Step 2: Choose Criteria"
7542
  msgstr ""
7543
 
7544
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1668
7545
- msgid "Report for"
7546
  msgstr ""
7547
 
7548
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1673
7549
- msgid "Number of logins for user"
7550
  msgstr ""
7551
 
7552
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1678
7553
- msgid "Number of logins for users with the role of"
7554
  msgstr ""
7555
 
7556
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1683
7557
- msgid "Number of views for user"
7558
  msgstr ""
7559
 
7560
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1688
7561
- msgid "Number of views for users with the role of"
7562
  msgstr ""
7563
 
7564
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1693
7565
- msgid "Number of published content for user"
7566
  msgstr ""
7567
 
7568
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1698
7569
- msgid "Number of published content for users with the role of"
7570
  msgstr ""
7571
 
7572
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1703
7573
- msgid "Different IP addresses for Usernames"
7574
  msgstr ""
7575
 
7576
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1708
7577
- msgid "List only IP addresses used during login"
7578
  msgstr ""
7579
 
7580
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1710
7581
- msgid "If the above option is enabled the report will only include the IP addresses from where the user logged in. If it is disabled it will list all the IP addresses from where the plugin recorded activity originating from the user."
7582
  msgstr ""
7583
 
7584
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1767, extensions/reports/inc/wsal-reporting-view.inc.php:1772
7585
- msgid "Please specify at least one site"
7586
  msgstr ""
7587
 
7588
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1778, extensions/reports/inc/wsal-reporting-view.inc.php:1783
7589
- msgid "Please specify at least one user"
7590
  msgstr ""
7591
 
7592
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1789, extensions/reports/inc/wsal-reporting-view.inc.php:1794
7593
- msgid "Please specify at least one role"
7594
  msgstr ""
7595
 
7596
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1800, extensions/reports/inc/wsal-reporting-view.inc.php:1805
7597
- msgid "Please specify at least one IP address"
7598
  msgstr ""
7599
 
7600
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1811, extensions/reports/inc/wsal-reporting-view.inc.php:1816
7601
- msgid "Please specify at least one object"
7602
  msgstr ""
7603
 
7604
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1822, extensions/reports/inc/wsal-reporting-view.inc.php:1827
7605
- msgid "Please specify at least one event type"
7606
  msgstr ""
7607
 
7608
- #: extensions/reports/inc/wsal-reporting-view.inc.php:1835
7609
- msgid "Please specify at least one Alert group or specify an Alert code"
7610
  msgstr ""
7611
 
7612
- #: extensions/search/classes/FilterManager.php:211
7613
- msgid "Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\">list of Event IDs</a> for reference."
7614
  msgstr ""
7615
 
7616
- #: extensions/search/classes/FilterManager.php:375
7617
- msgid "Do not show this message again"
7618
  msgstr ""
7619
 
7620
- #: extensions/search/classes/FilterManager.php:376
7621
- msgid "Dismiss this notice."
7622
  msgstr ""
7623
 
7624
- #: extensions/search/classes/FilterManager.php:396
7625
- msgid "Save Search & Filters"
7626
  msgstr ""
7627
 
7628
- #: extensions/search/classes/FilterManager.php:401
7629
- msgid "* Invalid Name"
7630
  msgstr ""
7631
 
7632
- #: extensions/search/classes/FilterManager.php:403
7633
- msgid "Name can only be 12 characters long and only letters, numbers and underscore are allowed."
7634
  msgstr ""
7635
 
7636
- #: extensions/search/classes/FilterManager.php:406, extensions/user-sessions/classes/View/Settings.php:96, extensions/user-sessions/classes/View/Options/Policies.php:333
7637
- msgid "Save"
7638
  msgstr ""
7639
 
7640
- #: extensions/search/classes/FilterManager.php:427, extensions/search/classes/FilterManager.php:538
7641
- msgid "Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\" rel=\"nofollow noopener\">list of Event IDs</a> for reference."
7642
  msgstr ""
7643
 
7644
- #: extensions/search/classes/FilterManager.php:439
7645
- msgid "Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\" rel=\"nofollow noopener\">metadata in the activity log</a> for reference."
7646
  msgstr ""
7647
 
7648
- #: extensions/search/classes/FilterManager.php:451
7649
- msgid "Refer to the <a href=\"https://wpactivitylog.com/support/kb/severity-levels-wordpress-activity-log/\" target=\"_blank\" rel=\"nofollow noopener\">severity levels in the activity log</a> for reference."
7650
  msgstr ""
7651
 
7652
- #: extensions/search/classes/FilterManager.php:464
7653
- msgid "Refer to the <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-audit-trail-alerts/\" target=\"_blank\" rel=\"nofollow noopener\">list of Event IDs</a> for reference."
7654
  msgstr ""
7655
 
7656
- #: extensions/search/classes/FilterManager.php:476
7657
- msgid "Filter by username"
7658
  msgstr ""
7659
 
7660
- #: extensions/search/classes/FilterManager.php:479, extensions/user-sessions/classes/View/Sessions.php:323
7661
- msgid "First Name"
7662
  msgstr ""
7663
 
7664
- #: extensions/search/classes/FilterManager.php:480
7665
- msgid "Filter by user first name"
7666
  msgstr ""
7667
 
7668
- #: extensions/search/classes/FilterManager.php:483, extensions/user-sessions/classes/View/Sessions.php:324
7669
- msgid "Last Name"
7670
  msgstr ""
7671
 
7672
- #: extensions/search/classes/FilterManager.php:484
7673
- msgid "Filter by user last name"
7674
  msgstr ""
7675
 
7676
- #: extensions/search/classes/FilterManager.php:488
7677
- msgid "Filter by user roles"
7678
  msgstr ""
7679
 
7680
- #: extensions/search/classes/FilterManager.php:491
7681
- msgid "User Filters"
7682
  msgstr ""
7683
 
7684
- #: extensions/search/classes/FilterManager.php:496
7685
- msgid "Filter by post status"
7686
  msgstr ""
7687
 
7688
- #: extensions/search/classes/FilterManager.php:500
7689
- msgid "Filter by post type"
7690
  msgstr ""
7691
 
7692
- #: extensions/search/classes/FilterManager.php:504
7693
- msgid "Filter by post ID"
7694
  msgstr ""
7695
 
7696
- #: extensions/search/classes/FilterManager.php:507, extensions/search/classes/Filters/PostNameFilter.php:55
7697
- msgid "Post Name"
7698
  msgstr ""
7699
 
7700
- #: extensions/search/classes/FilterManager.php:508
7701
- msgid "Filter by post name"
7702
  msgstr ""
7703
 
7704
- #: extensions/search/classes/FilterManager.php:511
7705
- msgid "Post Filters"
7706
  msgstr ""
7707
 
7708
- #: extensions/search/classes/FilterManager.php:520
7709
- msgid "Select Site to view"
7710
  msgstr ""
7711
 
7712
- #: extensions/search/classes/FilterManager.php:545
7713
- msgid "Select A Specific Site from the Network"
7714
  msgstr ""
7715
 
7716
- #: extensions/search/classes/FilterManager.php:568
7717
- msgid "Enter an IP address to filter"
7718
  msgstr ""
7719
 
7720
- #: extensions/user-sessions/classes/Helpers.php:129
7721
- msgid "ERROR: Your session was blocked with the WP Activity Log plugin because there is already another user logged in with the same username. Please contact the site administrator for more information."
7722
  msgstr ""
7723
 
7724
- #: extensions/user-sessions/classes/Views.php:110
7725
- msgid "Users Sessions & Management"
7726
  msgstr ""
7727
 
7728
- #: extensions/user-sessions/classes/Views.php:124
7729
- msgid "Logged In Users"
7730
  msgstr ""
7731
 
7732
- #: extensions/user-sessions/classes/Views.php:195
7733
- msgid "Logging out..."
7734
  msgstr ""
7735
 
7736
- #: extensions/user-sessions/classes/Views.php:196
7737
- msgid "Refreshing..."
7738
  msgstr ""
7739
 
7740
- #: extensions/user-sessions/classes/Views.php:197
7741
- msgid "This could result in loss of unsaved work. Are you sure?"
7742
  msgstr ""
7743
 
7744
- #: extensions/user-sessions/classes/Views.php:198
7745
- msgid "Remaining sessions:"
7746
  msgstr ""
7747
 
7748
- #. translators: %s: Total number of users
7749
- #: extensions/user-sessions/classes/Views.php:200
7750
- msgid "out of %s user sessions terminated."
7751
  msgstr ""
7752
 
7753
- #: extensions/user-sessions/classes/Views.php:202, extensions/user-sessions/classes/View/Sessions.php:80
7754
- msgid "Retrieve user data"
7755
  msgstr ""
7756
 
7757
- #: extensions/user-sessions/classes/Views.php:203
7758
- msgid "Retrieving data"
7759
  msgstr ""
7760
 
7761
- #: extensions/user-sessions/classes/Views.php:204
7762
- msgid "Data retrieved"
7763
  msgstr ""
7764
 
7765
- #: extensions/user-sessions/classes/Views.php:205
7766
- msgid "Event ID: "
7767
  msgstr ""
7768
 
7769
- #: extensions/user-sessions/classes/Views.php:206
7770
- msgid "Object: "
7771
  msgstr ""
7772
 
7773
- #: extensions/user-sessions/classes/Views.php:207
7774
- msgid "Event Type: "
7775
  msgstr ""
7776
 
7777
- #: extensions/user-sessions/classes/Views.php:268
7778
- msgid "Terminate all logged in sessions"
7779
  msgstr ""
7780
 
7781
- #: extensions/user-sessions/classes/Views.php:269
7782
- msgid "This will terminate all users' sessions including yours, which could result in unsaved work. Do you like to proceed?"
7783
  msgstr ""
7784
 
7785
- #: extensions/user-sessions/classes/Views.php:280
7786
- msgid "YES"
7787
  msgstr ""
7788
 
7789
- #: extensions/user-sessions/classes/Views.php:281
7790
- msgid "NO"
7791
  msgstr ""
7792
 
7793
- #: extensions/user-sessions/classes/Views.php:293
7794
- msgid "Terminate All Sessions"
7795
  msgstr ""
7796
 
7797
- #: extensions/user-sessions/classes/Views.php:413
7798
- msgid "Users sessions termination is in progress. Please wait..."
7799
  msgstr ""
7800
 
7801
- #: extensions/user-sessions/classes/Views.php:440, extensions/reports/classes/Views/Main.php:724
7802
- msgid "You do not have sufficient permissions."
7803
  msgstr ""
7804
 
7805
- #: extensions/user-sessions/classes/Views.php:466
7806
- msgid "No sessions."
7807
  msgstr ""
7808
 
7809
- #: extensions/user-sessions/classes/Views.php:491
7810
- msgid "Session destroyed."
7811
  msgstr ""
7812
 
7813
- #: extensions/user-sessions/classes/Views.php:499
7814
- msgid "User session data is not set."
7815
  msgstr ""
7816
 
7817
- #: extensions/user-sessions/classes/Views.php:515, extensions/user-sessions/classes/Views.php:589
7818
- msgid "User do not have sufficient permissions."
7819
  msgstr ""
7820
 
7821
- #: extensions/user-sessions/classes/Views.php:568
7822
- msgid "Sessions destroyed!"
7823
  msgstr ""
7824
 
7825
- #: extensions/user-sessions/classes/Views.php:599
7826
- msgid "Nonce check failed."
7827
  msgstr ""
7828
 
7829
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:22
7830
- msgid "AWS CloudWatch"
7831
  msgstr ""
7832
 
7833
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:29, extensions/external-db/classes/mirrors/LogglyConnection.php:27, extensions/external-db/classes/mirrors/PapertrailConnection.php:27, extensions/external-db/classes/mirrors/SlackConnection.php:28, extensions/external-db/classes/mirrors/SyslogConnection.php:27
7834
- msgid "General mirror connection description."
7835
  msgstr ""
7836
 
7837
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:32
7838
- msgid "Region"
7839
  msgstr ""
7840
 
7841
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:59
7842
- msgid "AWS Key"
7843
  msgstr ""
7844
 
7845
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:64
7846
- msgid "AWS Secret"
7847
  msgstr ""
7848
 
7849
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:69
7850
- msgid "AWS Session Token"
7851
  msgstr ""
7852
 
7853
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:71
7854
- msgid "This is optional."
7855
  msgstr ""
7856
 
7857
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:74
7858
- msgid "Log group name"
7859
  msgstr ""
7860
 
7861
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:78
7862
- msgid "Invalid AWS group name. It must satisfy regular expression pattern: %s"
7863
  msgstr ""
7864
 
7865
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:82
7866
- msgid "If you do not specify a group name, one will be created using the default group name \"%s\"."
7867
  msgstr ""
7868
 
7869
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:87, extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:129
7870
- msgid "Log stream name"
7871
  msgstr ""
7872
 
7873
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:89, extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:131
7874
- msgid "If you do not specify a stream name, one will be created using the site name as stream name."
7875
  msgstr ""
7876
 
7877
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:92
7878
- msgid "Retention"
7879
  msgstr ""
7880
 
7881
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:114
7882
- msgid "Days to keep logs."
7883
  msgstr ""
7884
 
7885
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:121
7886
- msgid "Stream"
7887
  msgstr ""
7888
 
7889
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:126
7890
- msgid "Mirror the activity logs of all sub sites on the network to one Stream"
7891
  msgstr ""
7892
 
7893
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:136
7894
- msgid "Create a Stream for every individual sub site on the network. The Stream name should be the:"
7895
  msgstr ""
7896
 
7897
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:144
7898
- msgid "Sitename"
7899
  msgstr ""
7900
 
7901
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:147
7902
- msgid "FQDN"
7903
  msgstr ""
7904
 
7905
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:173
7906
- msgid "You have setup a mirroring connection to AWS CloudWatch in the WP Activity Log plugin. In this version we've done some changes and you need to add the following lines to the wp-config.php file to enable the AWS library."
7907
  msgstr ""
7908
 
7909
- #: extensions/external-db/classes/mirrors/AWSCloudWatchConnection.php:257
7910
- msgid "The AWS library is disabled. Please enable this library by adding the following to the wp-config.php file. Press continue when you are ready or cancel to stop the process."
7911
  msgstr ""
7912
 
7913
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:22
7914
- msgid "Log file(s)"
7915
  msgstr ""
7916
 
7917
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:27
7918
- msgid "WP Activity Log can write the WordPress activity log to a log file.."
7919
  msgstr ""
7920
 
7921
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:30
7922
- msgid "Log file(s) rotation"
7923
  msgstr ""
7924
 
7925
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:33
7926
- msgid "daily"
7927
  msgstr ""
7928
 
7929
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:34
7930
- msgid "monthly"
7931
  msgstr ""
7932
 
7933
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:35
7934
- msgid "yearly"
7935
  msgstr ""
7936
 
7937
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:39
7938
- msgid "Log file prefix"
7939
  msgstr ""
7940
 
7941
- #: extensions/external-db/classes/mirrors/LogFileConnection.php:42
7942
- msgid "Optional. Default prefix is %s."
7943
  msgstr ""
7944
 
7945
- #: extensions/external-db/classes/mirrors/LogglyConnection.php:22
7946
- msgid "Loggly"
7947
  msgstr ""
7948
 
7949
- #: extensions/external-db/classes/mirrors/LogglyConnection.php:30
7950
- msgid "Loggly token"
7951
  msgstr ""
7952
 
7953
- #: extensions/external-db/classes/mirrors/LogglyConnection.php:34
7954
- msgid "The Loggly token required here is the \"Customer token\" and you can get it from the following URL: %s"
7955
  msgstr ""
7956
 
7957
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:22
7958
- msgid "Papertrail"
7959
  msgstr ""
7960
 
7961
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:30
7962
- msgid "Destination"
7963
  msgstr ""
7964
 
7965
- #. translators: %s: Log destinations link
7966
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:36
7967
- msgid "Specify your destination. You can find your Papertrail Destination in the %s section of your Papertrail account page. It should have the following format: logs4.papertrailapp.com:54321"
7968
  msgstr ""
7969
 
7970
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:37
7971
- msgid "Log Destinations"
7972
  msgstr ""
7973
 
7974
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:39
7975
- msgid "Invalid Papertrail Destination"
7976
  msgstr ""
7977
 
7978
- #: extensions/external-db/classes/mirrors/PapertrailConnection.php:42
7979
- msgid "Colorization"
7980
  msgstr ""
7981
 
7982
- #: extensions/external-db/classes/mirrors/SlackConnection.php:22
7983
- msgid "Slack"
7984
  msgstr ""
7985
 
7986
- #: extensions/external-db/classes/mirrors/SlackConnection.php:31
7987
- msgid "Webhook URL"
7988
  msgstr ""
7989
 
7990
- #. translators: hyperlink to the Slack webhook documentation page
7991
- #: extensions/external-db/classes/mirrors/SlackConnection.php:35
7992
- msgid "If you are not familiar with incoming WebHooks on Slack, please refer to %s."
7993
  msgstr ""
7994
 
7995
- #: extensions/external-db/classes/mirrors/SlackConnection.php:39
7996
- msgid "Slack webhooks documentation"
7997
  msgstr ""
7998
 
7999
- #: extensions/external-db/classes/mirrors/SlackConnection.php:44
8000
- msgid "Invalid Webhook URL"
8001
  msgstr ""
8002
 
8003
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:22
8004
- msgid "Syslog Server"
8005
  msgstr ""
8006
 
8007
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:30
8008
- msgid "Syslog Location"
8009
  msgstr ""
8010
 
8011
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:35
8012
- msgid "Write to local syslog file"
8013
  msgstr ""
8014
 
8015
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:38
8016
- msgid "Send messages to remote syslog server"
8017
  msgstr ""
8018
 
8019
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:41
8020
- msgid "IP Address / Hostname"
8021
  msgstr ""
8022
 
8023
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:45
8024
- msgid "Invalid Invalid IP/Hostname"
8025
  msgstr ""
8026
 
8027
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:48
8028
- msgid "Port"
8029
  msgstr ""
8030
 
8031
- #: extensions/external-db/classes/mirrors/SyslogConnection.php:52
8032
- msgid "Invalid Port"
8033
  msgstr ""
8034
 
8035
- #: extensions/reports/classes/Views/Main.php:73
8036
- msgid "Reporting"
8037
  msgstr ""
8038
 
8039
- #: extensions/reports/classes/Views/Main.php:87
8040
- msgid "Reports"
8041
  msgstr ""
8042
 
8043
- #: extensions/reports/classes/Views/Main.php:204
8044
- msgid "Process completed."
8045
  msgstr ""
8046
 
8047
- #: extensions/reports/classes/Views/Main.php:207
8048
- msgid "There are no alerts that match your filtering criteria."
8049
  msgstr ""
8050
 
8051
- #: extensions/reports/classes/Views/Main.php:649
8052
- msgid " Generating reports. Please do not close this window."
 
8053
  msgstr ""
8054
 
8055
- #: extensions/reports/classes/Views/Main.php:662
8056
- msgid "To generate a report or configure automated scheduled report please contact the administrator of this multisite network on "
8057
  msgstr ""
8058
 
8059
- #: extensions/reports/classes/Views/Main.php:680
8060
- msgid "The %s directory which the Reports plugin uses to create reports in was either not found or is not accessible."
8061
  msgstr ""
8062
 
8063
- #: extensions/reports/classes/Views/Main.php:684
8064
- msgid "In order for the plugin to function, the directory %1$s must be created and the plugin should have access to write to this directory, so please configure the following permissions: 0755. If you have any questions or need further assistance please %2$s"
8065
  msgstr ""
8066
 
8067
- #: extensions/search/classes/Filters/AlertWidget.php:38
8068
- msgid "Enter an Event ID to filter - example: 1000"
8069
  msgstr ""
8070
 
8071
- #: extensions/search/classes/Filters/AlertWidget.php:40, extensions/search/classes/Filters/DateWidget.php:39, extensions/search/classes/Filters/IpWidget.php:40, extensions/search/classes/Filters/postidwidget.php:37, extensions/search/classes/Filters/PostNameWidget.php:38, extensions/search/classes/Filters/userfirstnamewidget.php:37, extensions/search/classes/Filters/userlastnamewidget.php:37, extensions/search/classes/Filters/usernamewidget.php:38
8072
- msgid "Add this filter"
8073
  msgstr ""
8074
 
8075
- #: extensions/search/classes/Filters/CodeWidget.php:37
8076
- msgid "Select a Severity to filter"
8077
  msgstr ""
8078
 
8079
- #: extensions/search/classes/Filters/DateFilter.php:56
8080
- msgid "Later than"
8081
  msgstr ""
8082
 
8083
- #: extensions/search/classes/Filters/DateFilter.php:57
8084
- msgid "Earlier than"
8085
  msgstr ""
8086
 
8087
- #: extensions/search/classes/Filters/DateFilter.php:58
8088
- msgid "On this day"
8089
  msgstr ""
8090
 
8091
- #: extensions/search/classes/Filters/EventTypeWidget.php:30
8092
- msgid "Select an Event Type to filter"
8093
  msgstr ""
8094
 
8095
- #: extensions/search/classes/Filters/IpWidget.php:38
8096
- msgid "192.168.128.255"
 
8097
  msgstr ""
8098
 
8099
- #: extensions/search/classes/Filters/ObjectWidget.php:33
8100
- msgid "Select an Object to filter"
8101
  msgstr ""
8102
 
8103
- #: extensions/search/classes/Filters/postidwidget.php:35
8104
- msgid "Enter post ID to filter"
8105
  msgstr ""
8106
 
8107
- #: extensions/search/classes/Filters/PostNameWidget.php:36
8108
- msgid "Enter post name to filter"
8109
  msgstr ""
8110
 
8111
- #: extensions/search/classes/Filters/PostStatusWidget.php:36
8112
- msgid "Select a post status to filter"
8113
  msgstr ""
8114
 
8115
- #: extensions/search/classes/Filters/PostTypeWidget.php:36
8116
- msgid "Select a post type to filter"
8117
  msgstr ""
8118
 
8119
- #: extensions/search/classes/Filters/SiteFilter.php:57
8120
- msgid "Sites"
8121
  msgstr ""
8122
 
8123
- #: extensions/search/classes/Filters/SiteWidget.php:33
8124
- msgid "Select a Site to filter"
8125
  msgstr ""
8126
 
8127
- #: extensions/search/classes/Filters/userfirstnamewidget.php:35, extensions/search/classes/Filters/userlastnamewidget.php:35
8128
- msgid "Enter users first name to filter"
8129
  msgstr ""
8130
 
8131
- #: extensions/search/classes/Filters/usernamewidget.php:36
8132
- msgid "Enter a username to filter"
8133
  msgstr ""
8134
 
8135
- #: extensions/search/classes/Filters/UserRoleWidget.php:36
8136
- msgid "Select a user role to filter"
8137
  msgstr ""
8138
 
8139
- #: extensions/user-sessions/classes/Sensors/UserSessionsTracking.php:307, extensions/user-sessions/classes/View/Options/Policies.php:253
8140
- msgid "ERROR: Your session was blocked with the <a href=\"https://en-gb.wordpress.org/plugins/wp-security-audit-log\" target=\"_blank\">WP Activity Log plugin</a> because there is already another user logged in with the same username. Please contact the site administrator for more information."
8141
  msgstr ""
8142
 
8143
- #: extensions/user-sessions/classes/View/Options.php:30
8144
- msgid "Users Sessions Management"
8145
  msgstr ""
8146
 
8147
- #: extensions/user-sessions/classes/View/Options.php:44
8148
- msgid "User Session Options"
8149
  msgstr ""
8150
 
8151
- #: extensions/user-sessions/classes/View/Sessions.php:94
8152
- msgid "Terminate all sessions that match this search criteria"
8153
  msgstr ""
8154
 
8155
- #: extensions/user-sessions/classes/View/Sessions.php:136
8156
- msgid "Showing results for "
8157
  msgstr ""
8158
 
8159
- #: extensions/user-sessions/classes/View/Sessions.php:124
8160
- msgid "Sessions successfully terminated"
8161
  msgstr ""
8162
 
8163
- #: extensions/user-sessions/classes/View/Sessions.php:124
8164
- msgid "No search results were found."
8165
  msgstr ""
8166
 
8167
- #: extensions/user-sessions/classes/View/Sessions.php:162
8168
- msgid "Expires"
8169
  msgstr ""
8170
 
8171
- #: extensions/user-sessions/classes/View/Sessions.php:164
8172
- msgid "Last Event"
8173
  msgstr ""
8174
 
8175
- #: extensions/user-sessions/classes/View/Sessions.php:165, extensions/user-sessions/classes/View/Sessions.php:482
8176
- msgid "Actions"
8177
  msgstr ""
8178
 
8179
- #. translators: Number of sessions
8180
- #: extensions/user-sessions/classes/View/Sessions.php:294
8181
- msgid "%s users"
8182
  msgstr ""
8183
 
8184
- #: extensions/user-sessions/classes/View/Sessions.php:299
8185
- msgid "Go to the first page"
8186
  msgstr ""
8187
 
8188
- #: extensions/user-sessions/classes/View/Sessions.php:300
8189
- msgid "Go to the previous page"
8190
  msgstr ""
8191
 
8192
- #: extensions/user-sessions/classes/View/Sessions.php:302
8193
- msgid "of"
8194
  msgstr ""
8195
 
8196
- #: extensions/user-sessions/classes/View/Sessions.php:304
8197
- msgid "Go to the next page"
8198
  msgstr ""
8199
 
8200
- #: extensions/user-sessions/classes/View/Sessions.php:305
8201
- msgid "Go to the last page"
8202
  msgstr ""
8203
 
8204
- #: extensions/user-sessions/classes/View/Sessions.php:314
8205
- msgid "Total number of sessions with Administrator Role: "
8206
  msgstr ""
8207
 
8208
- #: extensions/user-sessions/classes/View/Sessions.php:357
8209
- msgid "Show:"
8210
  msgstr ""
8211
 
8212
- #: extensions/user-sessions/classes/View/Sessions.php:366
8213
- msgid "Network-wide Logins"
8214
  msgstr ""
8215
 
8216
- #: extensions/user-sessions/classes/View/Sessions.php:456
8217
- msgid "Session ID: "
8218
  msgstr ""
8219
 
8220
- #: extensions/user-sessions/classes/View/Sessions.php:473
8221
- msgid "Click the button above to retrieve the users' last event."
8222
  msgstr ""
8223
 
8224
- #: extensions/user-sessions/classes/View/Sessions.php:493
8225
- msgid "Show me this user's events"
8226
  msgstr ""
8227
 
8228
- #: extensions/user-sessions/classes/View/Sessions.php:509
8229
- msgid "Terminate Session"
8230
  msgstr ""
8231
 
8232
- #: extensions/user-sessions/classes/View/Sessions.php:412
8233
- msgid "WP Activity Log keeps its own user session data. This means that the sessions of already logged in users will only show up once they logout and log back in. The same applies to your session."
8234
  msgstr ""
8235
 
8236
- #: extensions/user-sessions/classes/View/Sessions.php:404
8237
- msgid "No logged in sessions meet your search criteria."
8238
  msgstr ""
8239
 
8240
- #: extensions/user-sessions/classes/View/Sessions.php:687
8241
- msgid "User sessions do not exist."
8242
  msgstr ""
8243
 
8244
- #: extensions/user-sessions/classes/View/Settings.php:82
8245
- msgid "Cleanup expired session data"
8246
  msgstr ""
8247
 
8248
- #: extensions/user-sessions/classes/View/Settings.php:90
8249
- msgid "The plugin will delete the data about expired users sessions from the WordPress database."
8250
  msgstr ""
8251
 
8252
- #: extensions/user-sessions/classes/View/Options/Policies.php:38
8253
- msgid "Main Policies"
8254
  msgstr ""
8255
 
8256
- #: extensions/user-sessions/classes/View/Options/Policies.php:110
8257
- msgid "Users session management is available in the Business and Enterprise plans."
8258
  msgstr ""
8259
 
8260
- #: extensions/user-sessions/classes/View/Options/Policies.php:117
8261
- msgid "Upgrade the plan"
 
8262
  msgstr ""
8263
 
8264
- #: extensions/user-sessions/classes/View/Options/Policies.php:159
8265
- msgid "Do not enforce policies on users with this role"
8266
  msgstr ""
8267
 
8268
- #: extensions/user-sessions/classes/View/Options/Policies.php:177
8269
- msgid "Inherit the sessions policies"
8270
  msgstr ""
8271
 
8272
- #: extensions/user-sessions/classes/View/Options/Policies.php:129
8273
- msgid "Users sessions policies"
8274
  msgstr ""
8275
 
8276
- #: extensions/user-sessions/classes/View/Options/Policies.php:131
8277
- msgid "Use the settings below to configure the policies to manage the users' sessions policies. These policies are automatically inherited by all profiles. However, you can disable the inheritance or configure different policies for specific roles in the role's tab."
 
8278
  msgstr ""
8279
 
8280
- #: extensions/user-sessions/classes/View/Options/Policies.php:136
8281
- msgid "Enable session policies"
 
8282
  msgstr ""
8283
 
8284
- #: extensions/user-sessions/classes/View/Options/Policies.php:197
8285
- msgid "By default WordPress does not limit how many times the same user can connect simultaneously. So two different users can login at the same time using the same username. Use the settings below to limit and also block simultaneous connections for the same username."
8286
  msgstr ""
8287
 
8288
- #: extensions/user-sessions/classes/View/Options/Policies.php:199
8289
- msgid "Do you want to allow two or more people to login simultaneously with the same username?"
 
8290
  msgstr ""
8291
 
8292
- #: extensions/user-sessions/classes/View/Options/Policies.php:201
8293
- msgid "By allowing multiple sessions two or more people can login to WordPress using the same username. By blocking them, once a person is logged in with a username, if another person tries to login with the same username they will be blocked."
 
8294
  msgstr ""
8295
 
8296
- #: extensions/user-sessions/classes/View/Options/Policies.php:206
8297
- msgid "Multiple Sessions"
8298
  msgstr ""
8299
 
8300
- #: extensions/user-sessions/classes/View/Options/Policies.php:215
8301
- msgid "Allow one session only"
 
8302
  msgstr ""
8303
 
8304
- #: extensions/user-sessions/classes/View/Options/Policies.php:221
8305
- msgid "Allow one session only and override current session"
 
8306
  msgstr ""
8307
 
8308
- #. translators: Number of sessions input tag
8309
- #: extensions/user-sessions/classes/View/Options/Policies.php:231
8310
- msgid "Allow up to %s sessions and block the rest"
8311
  msgstr ""
8312
 
8313
- #: extensions/user-sessions/classes/View/Options/Policies.php:242
8314
- msgid "Configure a Blocked Session Notification for Users"
8315
  msgstr ""
8316
 
8317
- #: extensions/user-sessions/classes/View/Options/Policies.php:244
8318
- msgid "This error message is shown to users when they try to login with a username that already has a session and their session is blocked. You can change this message by editing the text in the below placeholder. Only <a href> HTML code is allowed."
 
8319
  msgstr ""
8320
 
8321
- #: extensions/user-sessions/classes/View/Options/Policies.php:249
8322
- msgid "Blocked Sessions Error"
8323
  msgstr ""
8324
 
8325
- #: extensions/user-sessions/classes/View/Options/Policies.php:267
8326
- msgid "Do you want to terminate idle sessions automatically?"
 
8327
  msgstr ""
8328
 
8329
- #: extensions/user-sessions/classes/View/Options/Policies.php:269
8330
- msgid "If a session has been idle for more than the configured number of hours, it will be automatically destroyed by the plugin."
8331
  msgstr ""
8332
 
8333
- #: extensions/user-sessions/classes/View/Options/Policies.php:274
8334
- msgid "Terminate Idle Sessions"
 
8335
  msgstr ""
8336
 
8337
- #: extensions/user-sessions/classes/View/Options/Policies.php:291
8338
- msgid "1"
8339
  msgstr ""
8340
 
8341
- #: extensions/user-sessions/classes/View/Options/Policies.php:292
8342
- msgid "4"
 
8343
  msgstr ""
8344
 
8345
- #: extensions/user-sessions/classes/View/Options/Policies.php:293
8346
- msgid "8"
8347
  msgstr ""
8348
 
8349
- #: extensions/user-sessions/classes/View/Options/Policies.php:294
8350
- msgid "12"
8351
  msgstr ""
8352
 
8353
- #: extensions/user-sessions/classes/View/Options/Policies.php:295
8354
- msgid "24"
8355
  msgstr ""
8356
 
8357
- #: extensions/user-sessions/classes/View/Options/Policies.php:296
8358
- msgid "32"
8359
  msgstr ""
8360
 
8361
- #: extensions/user-sessions/classes/View/Options/Policies.php:297
8362
- msgid "48"
8363
  msgstr ""
8364
 
8365
- #: extensions/user-sessions/classes/View/Options/Policies.php:304
8366
- msgid "terminate sessions if they have been idle for more than"
8367
  msgstr ""
8368
 
8369
- #: extensions/user-sessions/classes/View/Options/Policies.php:315
8370
- msgid " hour"
8371
  msgstr ""
8372
 
8373
- #: extensions/user-sessions/classes/View/Options/Policies.php:315, extensions/user-sessions/classes/View/Options/Policies.php:322
8374
- msgid " hours"
8375
  msgstr ""
8376
 
8377
- #: extensions/user-sessions/classes/View/Options/Policies.php:308
8378
- msgid " seconds (Testing)"
 
8379
  msgstr ""
1
+ # Copyright (C) 2021 wp-security-audit-log
2
  # This file is distributed under the same license as the wp-security-audit-log package.
3
+ #, fuzzy
4
  msgid ""
5
  msgstr ""
6
  "Project-Id-Version: wp-security-audit-log\n"
7
+ "Report-Msgid-Bugs-To: https://www.wpwhitesecurity.com\n"
8
+ "POT-Creation-Date: \n"
9
+ "PO-Revision-Date: \n"
10
+ "Last-Translator: WP White Security <info@wpwhitesecurity.com>\n"
11
+ "Language-Team: WP White Security <info@wpwhitesecurity.com>\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Generator: Poedit 3.0.1\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
+ "X-Poedit-SearchPathExcluded-1: vendor\n"
23
+ "X-Poedit-SearchPathExcluded-2: node_modules\n"
24
+ "X-Poedit-SearchPathExcluded-3: languages\n"
25
 
26
+ #: classes/AlertFormatter.php:67
27
+ msgid "Exclude custom field from the monitoring"
28
  msgstr ""
29
 
30
+ #: classes/AlertFormatter.php:92
31
+ msgid "unknown"
32
  msgstr ""
33
 
34
+ #: classes/AlertFormatter.php:139
35
+ msgid "Download the log file."
36
  msgstr ""
37
 
38
+ #: classes/AlertFormatter.php:147
39
+ msgid "published"
40
  msgstr ""
41
 
42
+ #: classes/AlertManager.php:359
43
+ #, php-format
44
+ msgid "Event with code %d has not be registered."
45
  msgstr ""
46
 
47
+ #: classes/AlertManager.php:443
48
+ #, php-format
49
+ msgid "Event %s already registered with WP Activity Log."
50
  msgstr ""
51
 
52
+ #: classes/AlertManager.php:488
53
+ msgid "You have custom events that are using the same ID or IDs which are already registered in the plugin, so they have been disabled."
54
  msgstr ""
55
 
56
+ #: classes/AlertManager.php:491
57
+ #, php-format
58
+ msgid "%4$s to help you solve this issue."
59
  msgstr ""
60
 
61
+ #: classes/AlertManager.php:493
62
+ msgid "ERROR:"
63
  msgstr ""
64
 
65
+ #: classes/AlertManager.php:495
66
+ msgid "Contact us"
67
  msgstr ""
68
 
69
+ #: classes/AlertManager.php:1069 classes/AuditLogListView.php:272
70
+ #: classes/AuditLogListView.php:306 classes/Views/Settings.php:1086
71
+ #: classes/WidgetManager.php:76 defaults.php:1706
72
+ msgid "User"
73
  msgstr ""
74
 
75
+ #: classes/AlertManager.php:1070 classes/AlertManager.php:1760
76
+ #: classes/AuditLogGridView.php:436 classes/AuditLogListView.php:442
77
+ #: defaults.php:2294
78
+ msgid "System"
79
  msgstr ""
80
 
81
+ #: classes/AlertManager.php:1071 classes/AuditLogGridView.php:427
82
+ #: classes/AuditLogListView.php:436 defaults.php:2138 defaults.php:2153
83
+ msgid "Plugin"
84
  msgstr ""
85
 
86
+ #: classes/AlertManager.php:1072
87
+ msgid "Database"
88
  msgstr ""
89
 
90
+ #: classes/AlertManager.php:1073 defaults.php:932
91
+ msgid "Post"
92
  msgstr ""
93
 
94
+ #: classes/AlertManager.php:1074 classes/AlertManager.php:1078
95
+ msgid "File"
96
  msgstr ""
97
 
98
+ #: classes/AlertManager.php:1075
99
+ msgid "Tag"
100
  msgstr ""
101
 
102
+ #: classes/AlertManager.php:1076 defaults.php:79
103
+ msgid "Comment"
104
  msgstr ""
105
 
106
+ #: classes/AlertManager.php:1077
107
+ msgid "Setting"
108
  msgstr ""
109
 
110
+ #: classes/AlertManager.php:1079
111
+ msgid "System Setting"
112
  msgstr ""
113
 
114
+ #: classes/AlertManager.php:1080
115
+ msgid "MainWP Network"
116
  msgstr ""
117
 
118
+ #: classes/AlertManager.php:1081
119
+ msgid "MainWP"
120
  msgstr ""
121
 
122
+ #: classes/AlertManager.php:1082
123
+ msgid "Category"
124
  msgstr ""
125
 
126
+ #: classes/AlertManager.php:1083
127
+ msgid "Custom Field"
128
  msgstr ""
129
 
130
+ #: classes/AlertManager.php:1084
131
+ msgid "Widget"
132
  msgstr ""
133
 
134
+ #: classes/AlertManager.php:1085
135
+ msgid "Menu"
136
  msgstr ""
137
 
138
+ #: classes/AlertManager.php:1086
139
+ msgid "Theme"
140
  msgstr ""
141
 
142
+ #: classes/AlertManager.php:1087
143
+ msgid "Activity log"
144
  msgstr ""
145
 
146
+ #: classes/AlertManager.php:1088
147
+ msgid "WP Activity Log"
148
  msgstr ""
149
 
150
+ #: classes/AlertManager.php:1089
151
+ msgid "Multisite Network"
152
  msgstr ""
153
 
154
+ #: classes/AlertManager.php:1090
155
+ msgid "IP Address"
156
  msgstr ""
157
 
158
+ #: classes/AlertManager.php:1106
159
+ msgid "unknown object"
160
  msgstr ""
161
 
162
+ #: classes/AlertManager.php:1143
163
+ msgid "Login"
164
  msgstr ""
165
 
166
+ #: classes/AlertManager.php:1144
167
+ msgid "Logout"
168
  msgstr ""
169
 
170
+ #: classes/AlertManager.php:1145
171
+ msgid "Installed"
172
  msgstr ""
173
 
174
+ #: classes/AlertManager.php:1146
175
+ msgid "Activated"
176
  msgstr ""
177
 
178
+ #: classes/AlertManager.php:1147
179
+ msgid "Deactivated"
180
  msgstr ""
181
 
182
+ #: classes/AlertManager.php:1148
183
+ msgid "Uninstalled"
184
  msgstr ""
185
 
186
+ #: classes/AlertManager.php:1149
187
+ msgid "Updated"
188
  msgstr ""
189
 
190
+ #: classes/AlertManager.php:1150
191
+ msgid "Created"
192
  msgstr ""
193
 
194
+ #: classes/AlertManager.php:1151
195
+ msgid "Modified"
196
  msgstr ""
197
 
198
+ #: classes/AlertManager.php:1152
199
+ msgid "Deleted"
200
  msgstr ""
201
 
202
+ #: classes/AlertManager.php:1153
203
+ msgid "Published"
204
  msgstr ""
205
 
206
+ #: classes/AlertManager.php:1154
207
+ msgid "Approved"
208
  msgstr ""
209
 
210
+ #: classes/AlertManager.php:1155
211
+ msgid "Unapproved"
212
  msgstr ""
213
 
214
+ #: classes/AlertManager.php:1156
215
+ msgid "Enabled"
216
  msgstr ""
217
 
218
+ #: classes/AlertManager.php:1157
219
+ msgid "Disabled"
220
  msgstr ""
221
 
222
+ #: classes/AlertManager.php:1158
223
+ msgid "Added"
224
  msgstr ""
225
 
226
+ #: classes/AlertManager.php:1159
227
+ msgid "Failed Login"
228
  msgstr ""
229
 
230
+ #: classes/AlertManager.php:1160
231
+ msgid "Blocked"
232
  msgstr ""
233
 
234
+ #: classes/AlertManager.php:1161
235
+ msgid "Uploaded"
236
  msgstr ""
237
 
238
+ #: classes/AlertManager.php:1162
239
+ msgid "Restored"
240
  msgstr ""
241
 
242
+ #: classes/AlertManager.php:1163
243
+ msgid "Opened"
244
  msgstr ""
245
 
246
+ #: classes/AlertManager.php:1164
247
+ msgid "Viewed"
248
  msgstr ""
249
 
250
+ #: classes/AlertManager.php:1165
251
+ msgid "Started"
252
  msgstr ""
253
 
254
+ #: classes/AlertManager.php:1166
255
+ msgid "Stopped"
256
  msgstr ""
257
 
258
+ #: classes/AlertManager.php:1167
259
+ msgid "Removed"
260
  msgstr ""
261
 
262
+ #: classes/AlertManager.php:1168
263
+ msgid "Unblocked"
264
  msgstr ""
265
 
266
+ #: classes/AlertManager.php:1169
267
+ msgid "Renamed"
268
  msgstr ""
269
 
270
+ #: classes/AlertManager.php:1170
271
+ msgid "Duplicated"
272
  msgstr ""
273
 
274
+ #: classes/AlertManager.php:1171
275
+ msgid "Submitted"
276
  msgstr ""
277
 
278
+ #: classes/AlertManager.php:1172
279
+ msgid "Revoked"
280
  msgstr ""
281
 
282
+ #: classes/AlertManager.php:1189
283
+ msgid "unknown type"
284
  msgstr ""
285
 
286
+ #: classes/AlertManager.php:1437 classes/Views/ToggleAlerts.php:211
287
+ #: classes/Views/ToggleAlerts.php:244 defaults.php:1508
288
+ msgid "Pages"
289
  msgstr ""
290
 
291
+ #: classes/AlertManager.php:1437 classes/Views/ToggleAlerts.php:211
292
+ #: classes/Views/ToggleAlerts.php:244 defaults.php:1323
293
+ msgid "Custom Post Types"
294
  msgstr ""
295
 
296
+ #: classes/AlertManager.php:1658
297
+ msgid "System Activity"
298
  msgstr ""
299
 
300
+ #: classes/AlertManager.php:1722 classes/ConstantManager.php:147
301
+ msgid "Unknown error code."
302
  msgstr ""
303
 
304
+ #: classes/AlertManager.php:1729 classes/AlertManager.php:1741
305
+ msgid "Unknown Site"
306
  msgstr ""
307
 
308
+ #: classes/AuditLogGridView.php:112 classes/AuditLogListView.php:103
309
+ msgid "No events so far."
310
  msgstr ""
311
 
312
+ #: classes/AuditLogGridView.php:149 classes/AuditLogListView.php:147
313
+ msgid "List View"
314
  msgstr ""
315
 
316
+ #: classes/AuditLogGridView.php:150 classes/AuditLogListView.php:148
317
+ msgid "Grid View"
318
  msgstr ""
319
 
320
+ #: classes/AuditLogGridView.php:175 classes/AuditLogListView.php:173
321
+ msgid "Show "
322
  msgstr ""
323
 
324
+ #: classes/AuditLogGridView.php:183 classes/AuditLogListView.php:181
325
+ msgid " Items"
326
  msgstr ""
327
 
328
+ #: classes/AuditLogGridView.php:190 classes/AuditLogListView.php:188
329
+ msgid " End of Activity Log "
330
  msgstr ""
331
 
332
+ #: classes/AuditLogGridView.php:211 classes/AuditLogListView.php:209
333
+ #: classes/Views/AuditLog.php:589
334
+ msgid "All Sites"
335
  msgstr ""
336
 
337
+ #: classes/AuditLogGridView.php:271 classes/AuditLogGridView.php:295
338
+ #: classes/AuditLogListView.php:269 classes/AuditLogListView.php:297
339
+ #: defaults.php:713 defaults.php:728
340
+ msgid "ID"
341
  msgstr ""
342
 
343
+ #: classes/AuditLogGridView.php:272 classes/AuditLogGridView.php:298
344
+ #: classes/AuditLogListView.php:270 classes/AuditLogListView.php:300
345
+ #: classes/Views/Settings.php:1082 classes/Views/ToggleAlerts.php:299
346
+ msgid "Severity"
347
  msgstr ""
348
 
349
+ #: classes/AuditLogGridView.php:273
350
+ msgid "Info"
351
  msgstr ""
352
 
353
+ #: classes/AuditLogGridView.php:278 classes/AuditLogListView.php:280
354
+ #: classes/AuditLogListView.php:312
355
+ msgid "Site"
356
  msgstr ""
357
 
358
+ #: classes/AuditLogGridView.php:281 classes/AuditLogGridView.php:304
359
+ #: classes/AuditLogListView.php:283 classes/AuditLogListView.php:321
360
+ msgid "Message"
361
  msgstr ""
362
 
363
+ #: classes/AuditLogGridView.php:301
364
+ msgid "Grid"
365
  msgstr ""
366
 
367
+ #: classes/AuditLogGridView.php:369 classes/AuditLogListView.php:398
368
+ msgid "Disable this type of events."
369
  msgstr ""
370
 
371
+ #: classes/AuditLogGridView.php:391
372
+ msgid "Message:"
373
  msgstr ""
374
 
375
+ #: classes/AuditLogGridView.php:401 classes/AuditLogGridView.php:405
376
+ #: classes/AuditLogListView.php:413 classes/Utilities/UserUtils.php:149
377
+ msgid "Unknown"
378
  msgstr ""
379
 
380
+ #: classes/AuditLogGridView.php:430 classes/AuditLogListView.php:438
381
+ #: defaults.php:2063
382
+ msgid "Plugins"
383
  msgstr ""
384
 
385
+ #: classes/AuditLogGridView.php:433 classes/AuditLogListView.php:440
386
+ msgid "Unregistered user"
387
  msgstr ""
388
 
389
+ #: classes/AuditLogGridView.php:470 classes/AuditLogGridView.php:483
390
+ #: classes/AuditLogListView.php:473 classes/AuditLogListView.php:486
391
+ msgid "Show me all activity originating from this IP Address"
392
  msgstr ""
393
 
394
+ #: classes/AuditLogGridView.php:512
395
+ msgid "Date:"
396
  msgstr ""
397
 
398
+ #: classes/AuditLogGridView.php:516
399
+ msgid "Time:"
400
  msgstr ""
401
 
402
+ #: classes/AuditLogGridView.php:520
403
+ msgid "User:"
404
  msgstr ""
405
 
406
+ #: classes/AuditLogGridView.php:524
407
+ msgid "IP:"
408
  msgstr ""
409
 
410
+ #: classes/AuditLogGridView.php:528
411
+ msgid "Object:"
412
  msgstr ""
413
 
414
+ #: classes/AuditLogGridView.php:532
415
+ msgid "Event Type:"
416
  msgstr ""
417
 
418
+ #: classes/AuditLogGridView.php:540 classes/AuditLogListView.php:518
419
+ msgid "View all details of this change"
420
  msgstr ""
421
 
422
+ #: classes/AuditLogGridView.php:541 classes/AuditLogListView.php:519
423
+ msgid "Alert Data Inspector"
424
  msgstr ""
425
 
426
+ #: classes/AuditLogGridView.php:701 classes/AuditLogListView.php:683
427
+ msgid "Select All"
428
  msgstr ""
429
 
430
+ #: classes/AuditLogListView.php:271 classes/AuditLogListView.php:303
431
+ msgid "Date"
432
  msgstr ""
433
 
434
+ #: classes/AuditLogListView.php:273 classes/AuditLogListView.php:309
435
+ msgid "IP"
436
  msgstr ""
437
 
438
+ #: classes/AuditLogListView.php:274 classes/AuditLogListView.php:315
439
+ #: classes/WidgetManager.php:77
440
+ msgid "Object"
441
  msgstr ""
442
 
443
+ #: classes/AuditLogListView.php:275 classes/AuditLogListView.php:318
444
+ #: classes/WidgetManager.php:78
445
+ msgid "Event Type"
446
  msgstr ""
447
 
448
+ #: classes/AuditLogListView.php:382 classes/Models/Occurrence.php:90
449
+ msgid "Alert message not found."
450
  msgstr ""
451
 
452
+ #: classes/AuditLogListView.php:383 classes/Models/Occurrence.php:91
453
+ msgid "Alert description not found."
454
  msgstr ""
455
 
456
+ #: classes/Connector/MySQLDB.php:60
457
+ msgid "Error establishing a database connection. DB username or password are not valid."
458
  msgstr ""
459
 
460
+ #: classes/Connector/MySQLDB.php:68
461
+ #, php-format
462
+ msgid "Code %1$d: %2$s"
463
  msgstr ""
464
 
465
+ #: classes/ConstantManager.php:159 classes/ConstantManager.php:165
466
+ #: classes/Views/ToggleAlerts.php:430 classes/Views/ToggleAlerts.php:436
467
+ msgid "Critical"
468
  msgstr ""
469
 
470
+ #: classes/ConstantManager.php:161 classes/Views/ToggleAlerts.php:432
471
+ msgid "Warning"
472
  msgstr ""
473
 
474
+ #: classes/ConstantManager.php:163 classes/Views/ToggleAlerts.php:434
475
+ #: classes/Views/ToggleAlerts.php:446
476
+ msgid "Notification"
477
  msgstr ""
478
 
479
+ #: classes/ConstantManager.php:167 classes/Views/ToggleAlerts.php:438
480
+ msgid "High"
481
  msgstr ""
482
 
483
+ #: classes/ConstantManager.php:169 classes/Views/ToggleAlerts.php:440
484
+ msgid "Medium"
485
  msgstr ""
486
 
487
+ #: classes/ConstantManager.php:171 classes/Views/ToggleAlerts.php:442
488
+ msgid "Low"
489
  msgstr ""
490
 
491
+ #: classes/ConstantManager.php:173 classes/Views/ToggleAlerts.php:444
492
+ msgid "Informational"
493
  msgstr ""
494
 
495
+ #: classes/Models/Occurrence.php:206
496
+ msgid "WFCM"
497
  msgstr ""
498
 
499
+ #: classes/Models/Occurrence.php:231
500
+ #, php-format
501
+ msgid "This type of activity / change is no longer monitored. You can create your own custom event IDs to keep a log of such change. Read more about custom events %1$shere%2$s."
502
  msgstr ""
503
 
504
+ #: classes/Sensors/Content.php:735
505
+ msgid "Default template"
506
  msgstr ""
507
 
508
+ #: classes/Sensors/Content.php:736
509
+ msgid "Default"
510
  msgstr ""
511
 
512
+ #: classes/Sensors/Content.php:778
513
+ msgid "No previous image"
514
  msgstr ""
515
 
516
+ #: classes/Sensors/Content.php:779
517
+ msgid "No image"
518
  msgstr ""
519
 
520
+ #: classes/Sensors/Content.php:1133 classes/Sensors/Content.php:1141
521
+ msgid "Password Protected"
522
  msgstr ""
523
 
524
+ #: classes/Sensors/Content.php:1135 classes/Sensors/Content.php:1143
525
+ msgid "Private"
526
  msgstr ""
527
 
528
+ #: classes/Sensors/Content.php:1137 classes/Sensors/Content.php:1145
529
+ msgid "Public"
530
  msgstr ""
531
 
532
+ #: classes/Sensors/Content.php:1308
533
+ msgid "no tags"
534
  msgstr ""
535
 
536
+ #: classes/Sensors/Multisite.php:80
537
+ msgid "disabled"
538
  msgstr ""
539
 
540
+ #: classes/Sensors/Multisite.php:81
541
+ msgid "user accounts only"
542
  msgstr ""
543
 
544
+ #: classes/Sensors/Multisite.php:82
545
+ msgid "users can register new sites"
546
  msgstr ""
547
 
548
+ #: classes/Sensors/Multisite.php:83
549
+ msgid "sites & users can be registered"
550
  msgstr ""
551
 
552
+ #: classes/Sensors/System.php:200 classes/Sensors/System.php:201
553
+ msgid "latest posts"
554
  msgstr ""
555
 
556
+ #: classes/Sensors/System.php:200 classes/Sensors/System.php:201
557
+ msgid "static page"
558
  msgstr ""
559
 
560
+ #: classes/Sensors/System.php:380
561
+ msgid "automatically update to all new versions of WordPress"
562
  msgstr ""
563
 
564
+ #: classes/Sensors/System.php:380
565
+ msgid "automatically update maintenance and security releases only"
566
  msgstr ""
567
 
568
+ #: classes/Settings.php:374
569
+ msgid "This function is deprecated"
570
  msgstr ""
571
 
572
+ #: classes/Settings.php:1914
573
+ msgid "Root directory of WordPress (excluding sub directories)"
574
  msgstr ""
575
 
576
+ #: classes/Settings.php:1915
577
+ msgid "WP Admin directory (/wp-admin/)"
578
  msgstr ""
579
 
580
+ #: classes/Settings.php:1916
581
+ msgid "WP Includes directory (/wp-includes/)"
582
  msgstr ""
583
 
584
+ #: classes/Settings.php:1917
585
+ msgid "/wp-content/ directory (excluding plugins, themes & uploads directories)"
586
  msgstr ""
587
 
588
+ #: classes/Settings.php:1918
589
+ msgid "Themes directory (/wp-content/themes/)"
590
  msgstr ""
591
 
592
+ #: classes/Settings.php:1919
593
+ msgid "Plugins directory (/wp-content/plugins/)"
594
  msgstr ""
595
 
596
+ #: classes/Settings.php:1920
597
+ msgid "Uploads directory (/wp-content/uploads/)"
598
  msgstr ""
599
 
600
+ #: classes/Settings.php:1925
601
+ msgid "Uploads directory of all sub sites on this network (/wp-content/sites/*)"
602
  msgstr ""
603
 
604
+ #: classes/Settings.php:2079
605
+ msgid "None provided"
606
  msgstr ""
607
 
608
+ #: classes/ThirdPartyExtensions/GravityFormsExtension.php:16
609
+ msgid "Keep a record of when someone adds, modifies or deletes forms, entries and more in the Gravity Forms plugin."
610
  msgstr ""
611
 
612
+ #: classes/Utilities/Emailer.php:54
613
+ #, php-format
614
+ msgid "WP Activity Log plugin disabled on %s"
615
  msgstr ""
616
 
617
+ #: classes/Utilities/Emailer.php:57
618
+ msgid "Hello admin,"
619
  msgstr ""
620
 
621
+ #: classes/Utilities/Emailer.php:62
622
+ #, php-format
623
+ msgid "This is a notification to let you know that the user %1$s has deactivated the plugin WP Activity Log on the website %2$s on %3$s."
624
  msgstr ""
625
 
626
+ #: classes/Utilities/PluginInstallAndActivate.php:82
627
+ msgid "WP Activity Log can keep a log of changes done on other plugins. Install the relevant extension from the below list to keep a log of changes done on that plugin."
628
  msgstr ""
629
 
630
+ #: classes/Utilities/PluginInstallAndActivate.php:101
631
+ #: classes/Views/SetupWizard.php:834
632
+ msgid "Extension for "
633
  msgstr ""
634
 
635
+ #: classes/Utilities/PluginInstallAndActivate.php:106
636
+ #: classes/Views/SetupWizard.php:839
637
+ msgid "Extension installed, activate now?"
638
  msgstr ""
639
 
640
+ #: classes/Utilities/PluginInstallAndActivate.php:108
641
+ #: classes/Views/SetupWizard.php:272 classes/Views/SetupWizard.php:841
642
+ #: wp-security-audit-log.php:1309
643
+ msgid "Extension installed"
644
  msgstr ""
645
 
646
+ #: classes/Utilities/PluginInstallAndActivate.php:110
647
+ #: classes/Views/SetupWizard.php:843
648
+ msgid "Install Extension"
649
  msgstr ""
650
 
651
+ #: classes/Utilities/PluginInstallerAction.php:80
652
+ msgid "Tried to install a zip or slug that was not in the allowed list"
653
  msgstr ""
654
 
655
+ #: classes/Utilities/UserUtils.php:91
656
+ msgid "Username: "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  msgstr ""
658
 
659
+ #: classes/Utilities/UserUtils.php:92
660
+ msgid "First name: "
661
  msgstr ""
662
 
663
+ #: classes/Utilities/UserUtils.php:93
664
+ msgid "Last Name: "
665
  msgstr ""
666
 
667
+ #: classes/Utilities/UserUtils.php:94
668
+ msgid "Email: "
669
  msgstr ""
670
 
671
+ #: classes/Utilities/UserUtils.php:95
672
+ msgid "Nickname: "
673
  msgstr ""
674
 
675
+ #: classes/ViewManager.php:142
676
+ msgid "WP Activity Log requires Website File Changes Monitor 1.6.0. Please upgrade that plugin."
677
  msgstr ""
678
 
679
+ #: classes/ViewManager.php:284
680
+ msgid "Free Premium Trial"
681
  msgstr ""
682
 
683
+ #: classes/Views/AuditLog.php:98
684
+ msgid "Get email notifications about website changes, view logged-in users, do granular log searches, create detailed reports, and more."
685
  msgstr ""
686
 
687
+ #: classes/Views/AuditLog.php:99
688
+ msgid "Upgrade to premium today and get more out of your activity logs!"
689
  msgstr ""
690
 
691
+ #: classes/Views/AuditLog.php:102
692
+ msgid "Instant SMS & email alerts, search & filters, reports, users sessions management and much more!"
693
  msgstr ""
694
 
695
+ #: classes/Views/AuditLog.php:103
696
+ msgid "Upgrade to premium to get more out of your activity logs!"
 
697
  msgstr ""
698
 
699
+ #: classes/Views/AuditLog.php:106
700
+ msgid "See who logged in on your site in real-time, generate reports, get SMS & email alerts of critical changes and more!"
701
  msgstr ""
702
 
703
+ #: classes/Views/AuditLog.php:107
704
+ msgid "Unlock these and other powerful features with WP Activity Log Premium."
705
  msgstr ""
706
 
707
+ #: classes/Views/AuditLog.php:158
708
+ msgid "Learn more"
709
  msgstr ""
710
 
711
+ #: classes/Views/AuditLog.php:187
712
+ msgid "UPGRADE NOW"
713
  msgstr ""
714
 
715
+ #: classes/Views/AuditLog.php:189
716
+ msgid "Start Free Trial"
717
  msgstr ""
718
 
719
+ #: classes/Views/AuditLog.php:190
720
+ msgid "Dismiss the banner"
721
  msgstr ""
722
 
723
+ #: classes/Views/AuditLog.php:190
724
+ msgid "Close"
725
  msgstr ""
726
 
727
+ #: classes/Views/AuditLog.php:213
728
+ msgid "Help WP Activity Log improve."
729
  msgstr ""
730
 
731
+ #: classes/Views/AuditLog.php:214
732
+ msgid "You can help us improve the plugin by opting in to share non-sensitive data about the plugin usage. The technical data will be shared over a secure channel. Activity log data will never be shared. When you opt-in, you also subscribe to our announcement and newsletter (you can opt-out at any time). If you would rather not opt-in, we will not collect any data."
733
  msgstr ""
734
 
735
+ #: classes/Views/AuditLog.php:214
736
+ msgid "Read more about what data we collect and how."
737
  msgstr ""
738
 
739
+ #: classes/Views/AuditLog.php:216
740
+ msgid "Sure, opt-in"
 
741
  msgstr ""
742
 
743
+ #: classes/Views/AuditLog.php:217
744
+ msgid "No, thank you"
745
  msgstr ""
746
 
747
+ #: classes/Views/AuditLog.php:272
748
+ msgid "We noticed you have"
749
  msgstr ""
750
 
751
+ #: classes/Views/AuditLog.php:274
752
+ msgid "installed."
753
  msgstr ""
754
 
755
+ #: classes/Views/AuditLog.php:276
756
+ msgid "Install extension"
757
  msgstr ""
758
 
759
+ #: classes/Views/AuditLog.php:321
760
+ msgid "Activity Log Viewer"
761
  msgstr ""
762
 
763
+ #: classes/Views/AuditLog.php:348
764
+ msgid "Log Viewer"
765
  msgstr ""
766
 
767
+ #: classes/Views/AuditLog.php:505 classes/Views/Settings.php:324
768
+ #: classes/Views/ToggleAlerts.php:109
769
+ msgid "You do not have sufficient permissions to access this page."
770
  msgstr ""
771
 
772
+ #: classes/Views/AuditLog.php:554
773
+ msgid "Thank you for installing WP Activity Log. Do you want to run the wizard to configure the basic plugin settings?"
774
  msgstr ""
775
 
776
+ #: classes/Views/AuditLog.php:556 classes/Views/Settings.php:532
777
+ #: classes/Views/Settings.php:559 classes/Views/Settings.php:625
778
+ #: classes/Views/Settings.php:683 classes/Views/Settings.php:1118
779
+ #: classes/Views/Settings.php:1402 classes/Views/Settings.php:1443
780
+ #: classes/Views/Settings.php:1464 classes/Views/Settings.php:1474
781
+ #: classes/Views/SetupWizard.php:562
782
+ msgid "Yes"
783
  msgstr ""
784
 
785
+ #: classes/Views/AuditLog.php:557 classes/Views/Settings.php:537
786
+ #: classes/Views/Settings.php:564 classes/Views/Settings.php:655
787
+ #: classes/Views/Settings.php:693 classes/Views/Settings.php:1123
788
+ #: classes/Views/Settings.php:1409 classes/Views/Settings.php:1450
789
+ #: classes/Views/Settings.php:1465 classes/Views/Settings.php:1475
790
+ #: classes/Views/SetupWizard.php:567
791
+ msgid "No"
792
  msgstr ""
793
 
794
+ #: classes/Views/AuditLog.php:588
795
+ msgid "Please enter the number of alerts you would like to see on one page:"
796
  msgstr ""
797
 
798
+ #: classes/Views/AuditLog.php:590
799
+ msgid "No Results"
800
  msgstr ""
801
 
802
+ #: classes/Views/AuditLog.php:727 classes/Views/AuditLog.php:770
803
+ #: classes/Views/AuditLog.php:1048 classes/Views/AuditLog.php:1110
804
+ #: classes/Views/AuditLog.php:1163 classes/Views/Settings.php:239
805
+ #: classes/Views/Settings.php:1759 classes/Views/SetupWizard.php:96
806
+ msgid "Nonce verification failed."
807
  msgstr ""
808
 
809
+ #: classes/Views/AuditLog.php:745
810
+ msgid "No users found."
811
  msgstr ""
812
 
813
+ #: classes/Views/AuditLog.php:810
814
+ msgid "Freemius opt choice selected."
 
815
  msgstr ""
816
 
817
+ #: classes/Views/AuditLog.php:817
818
+ msgid "Freemius opt choice not found."
819
  msgstr ""
820
 
821
+ #: classes/Views/AuditLog.php:913
822
+ #, php-format
823
+ msgid "<br>An error occurred when trying to install and activate the plugin. Please try install it again from the %1$sevent settings%2$s page."
824
  msgstr ""
825
 
826
+ #: classes/Views/AuditLog.php:1012
827
+ msgid "WordPress Activity Log"
828
  msgstr ""
829
 
830
+ #: classes/Views/AuditLog.php:1013
831
+ msgid "When a user makes a change on your website the plugin will keep a record of that event here. Right now there is nothing because this is a new install."
832
  msgstr ""
833
 
834
+ #: classes/Views/AuditLog.php:1014
835
+ msgid "Thank you for using WP Activity Log"
 
836
  msgstr ""
837
 
838
+ #: classes/Views/AuditLog.php:1037 classes/Views/AuditLog.php:1147
839
+ msgid "You do not have sufficient permissions to dismiss this notice."
840
  msgstr ""
841
 
842
+ #: classes/Views/AuditLog.php:1105
843
+ msgid "Access Denied"
844
  msgstr ""
845
 
846
+ #: classes/Views/AuditLog.php:1200
847
+ #, php-format
848
+ msgid "Install the activity log extension for %1$s for more detailed logging of changes done in %2$s."
849
  msgstr ""
850
 
851
+ #: classes/Views/EmailNotifications.php:28
852
+ msgid "Notifications Extension"
853
  msgstr ""
854
 
855
+ #: classes/Views/EmailNotifications.php:35
856
+ msgid "Notifications &#8682;"
857
  msgstr ""
858
 
859
+ #: classes/Views/EmailNotifications.php:49
860
+ msgid "Email & SMS Notifications"
861
  msgstr ""
862
 
863
+ #: classes/Views/EmailNotifications.php:50
864
+ msgid "Get instantly alerted of important changes on your site via email notifications & SMS messages. Upgrade to premium and:"
865
  msgstr ""
866
 
867
+ #: classes/Views/EmailNotifications.php:53
868
+ msgid "Configure any type of email notification"
869
  msgstr ""
870
 
871
+ #: classes/Views/EmailNotifications.php:54
872
+ msgid "Configure SMS messages for instant critical alerts"
873
  msgstr ""
874
 
875
+ #: classes/Views/EmailNotifications.php:55
876
+ msgid "Receive notifications for when users login, change their password or change content"
877
  msgstr ""
878
 
879
+ #: classes/Views/EmailNotifications.php:56
880
+ msgid "Get alerted of site changes like plugin installs, theme changes etc"
881
  msgstr ""
882
 
883
+ #: classes/Views/EmailNotifications.php:57
884
+ msgid "Enable built-in security email notifications of suspicious user activity"
885
  msgstr ""
886
 
887
+ #: classes/Views/EmailNotifications.php:58
888
+ msgid "Personalize all email and SMS templates"
889
  msgstr ""
890
 
891
+ #: classes/Views/EmailNotifications.php:59
892
+ msgid "Use the trigger builder to configure any type of notification criteria!"
893
  msgstr ""
894
 
895
+ #: classes/Views/EmailNotifications.php:61
896
+ msgid "Getting started is really easy. You can use one of the plugin’s built-in notifications or create your own using the easy to use trigger builder."
897
  msgstr ""
898
 
899
+ #: classes/Views/EmailNotifications.php:64
900
+ msgid "Email and SMS notifications instantly alert you of important changes on your WordPress site."
901
  msgstr ""
902
 
903
+ #: classes/Views/EmailNotifications.php:68
904
+ msgid "Easily enable any of the built-in security and user management notifications."
905
  msgstr ""
906
 
907
+ #: classes/Views/EmailNotifications.php:72
908
+ msgid "Use the trigger builder to configure any type of email and SMS notification to get instantly alerted of site changes that are important to you and your business."
909
  msgstr ""
910
 
911
+ #: classes/Views/EmailNotifications.php:76
912
+ msgid "All email and SMS templates are configurable, allowing you to personalize them."
913
  msgstr ""
914
 
915
+ #: classes/Views/ExternalDB.php:28
916
+ msgid "External DB Extension"
917
  msgstr ""
918
 
919
+ #: classes/Views/ExternalDB.php:35
920
+ msgid "Integrations &#8682;"
921
  msgstr ""
922
 
923
+ #: classes/Views/ExternalDB.php:49
924
+ msgid "Activity log database & integration tools"
925
  msgstr ""
926
 
927
+ #: classes/Views/ExternalDB.php:50
928
+ msgid "There are several benefits to segregating the logs from the main site database, and to be able to mirror the logs to third party and centralized business solutions. Upgrade to premium and:"
929
  msgstr ""
930
 
931
+ #: classes/Views/ExternalDB.php:53
932
+ msgid "Store the audit logs of your sites on an external database"
933
  msgstr ""
934
 
935
+ #: classes/Views/ExternalDB.php:54
936
+ msgid "Configuring archiving and store older log data in a segregated database"
937
  msgstr ""
938
 
939
+ #: classes/Views/ExternalDB.php:55
940
+ msgid "Mirror the logs to syslog, Slack, Papertrail and central business communication services"
941
  msgstr ""
942
 
943
+ #: classes/Views/ExternalDB.php:56
944
+ msgid "Configure filters to filter what is mirrored and archived in the databases and services"
945
  msgstr ""
946
 
947
+ #: classes/Views/ExternalDB.php:61
948
+ msgid "Easily configure integration and database connections thanks to a user friendly wizard."
949
  msgstr ""
950
 
951
+ #: classes/Views/ExternalDB.php:65
952
+ msgid "Configure activity log filters for third party services connections."
953
  msgstr ""
954
 
955
+ #: classes/Views/ExternalDB.php:69
956
+ msgid "Configure an unlimited number of connections to different databases and third party services."
957
  msgstr ""
958
 
959
+ #: classes/Views/Help.php:62 classes/Views/Help.php:113
960
+ msgid "Help"
961
  msgstr ""
962
 
963
+ #: classes/Views/Help.php:71 classes/Views/Help.php:242
964
+ msgid "Contact Us"
965
  msgstr ""
966
 
967
+ #: classes/Views/Help.php:77 classes/Views/Help.php:264
968
+ msgid "System Info"
969
  msgstr ""
970
 
971
+ #: classes/Views/Help.php:127
972
+ msgid "Help & Contact Us"
973
  msgstr ""
974
 
975
+ #: classes/Views/Help.php:187
976
+ msgid "Getting Started"
977
  msgstr ""
978
 
979
+ #: classes/Views/Help.php:188
980
+ msgid "Getting started with WP Activity Log is really easy; once the plugin is installed it will automatically keep a log of everything that is happening on your website and you do not need to do anything. Watch the video below for a quick overview of the plugin."
981
  msgstr ""
982
 
983
+ #: classes/Views/Help.php:192
984
+ msgid "Plugin Support"
985
  msgstr ""
986
 
987
+ #: classes/Views/Help.php:194
988
+ msgid "Have you encountered or noticed any issues while using WP Activity Log plugin?"
989
  msgstr ""
990
 
991
+ #: classes/Views/Help.php:195
992
+ msgid "Or you want to report something to us? Click any of the options below to post on the plugin's forum or contact our support directly."
993
  msgstr ""
994
 
995
+ #: classes/Views/Help.php:197
996
+ msgid "Free Support Forum"
997
  msgstr ""
998
 
999
+ #: classes/Views/Help.php:199
1000
+ msgid "Free Support Email"
1001
  msgstr ""
1002
 
1003
+ #: classes/Views/Help.php:203
1004
+ msgid "Plugin Documentation"
1005
  msgstr ""
1006
 
1007
+ #: classes/Views/Help.php:205
1008
+ msgid "For more technical information about the WP Activity Log plugin please visit the plugin’s knowledge base."
1009
  msgstr ""
1010
 
1011
+ #: classes/Views/Help.php:206
1012
+ msgid "Refer to the list of WordPress security events for a complete list of Events and IDs that the plugin uses to keep a log of all the changes in the WordPress activity log."
1013
  msgstr ""
1014
 
1015
+ #: classes/Views/Help.php:208
1016
+ msgid "Plugin Website"
1017
  msgstr ""
1018
 
1019
+ #: classes/Views/Help.php:210
1020
+ msgid "Knowledge Base"
1021
  msgstr ""
1022
 
1023
+ #: classes/Views/Help.php:212
1024
+ msgid "List of activity logs event IDs"
1025
  msgstr ""
1026
 
1027
+ #: classes/Views/Help.php:216
1028
+ msgid "Rate WP Activity Log"
1029
  msgstr ""
1030
 
1031
+ #: classes/Views/Help.php:218
1032
+ msgid "We work really hard to deliver a plugin that enables you to keep a record of all the changes that are happening on your WordPress."
1033
  msgstr ""
1034
 
1035
+ #: classes/Views/Help.php:219
1036
+ msgid "It takes thousands of man-hours every year and endless amount of dedication to research, develop and maintain the free edition of WP Activity Log."
1037
  msgstr ""
1038
 
1039
+ #: classes/Views/Help.php:220
1040
+ msgid "Therefore if you like what you see, and find WP Activity Log useful we ask you nothing more than to please rate our plugin."
1041
  msgstr ""
1042
 
1043
+ #: classes/Views/Help.php:221
1044
+ msgid "We appreciate every star!"
1045
  msgstr ""
1046
 
1047
+ #: classes/Views/Help.php:231
1048
+ msgid "Rate Plugin"
1049
  msgstr ""
1050
 
1051
+ #: classes/Views/Help.php:282
1052
+ msgid "Enforce strong password policies on WordPress"
1053
  msgstr ""
1054
 
1055
+ #: classes/Views/Help.php:288
1056
+ msgid "Automatically identify unauthorized file changes on WordPress"
1057
  msgstr ""
1058
 
1059
+ #: classes/Views/Help.php:294
1060
+ msgid "Add an extra layer of security to your login pages with 2FA & require your users to use it."
1061
  msgstr ""
1062
 
1063
+ #: classes/Views/Help.php:300
1064
+ msgid "See the child sites activity logs from the central MainWP dashboard"
1065
  msgstr ""
1066
 
1067
+ #: classes/Views/Help.php:306
1068
+ msgid "Our other WordPress plugins"
1069
  msgstr ""
1070
 
1071
+ #: classes/Views/Help.php:317
1072
+ msgid "LEARN MORE"
1073
  msgstr ""
1074
 
1075
+ #: classes/Views/LogInUsers.php:28
1076
+ msgid "User Sessions Management Extension"
1077
  msgstr ""
1078
 
1079
+ #: classes/Views/LogInUsers.php:35
1080
+ msgid "Logged In Users &#8682;"
1081
  msgstr ""
1082
 
1083
+ #: classes/Views/LogInUsers.php:49
1084
+ msgid "Real-Time Users Sessions Management"
1085
  msgstr ""
1086
 
1087
+ #: classes/Views/LogInUsers.php:50
1088
+ msgid "Better manage your users’ logins and sessions. Upgrade to premium and:"
1089
  msgstr ""
1090
 
1091
+ #: classes/Views/LogInUsers.php:54
1092
+ msgid "See who is logged in to your site"
1093
  msgstr ""
1094
 
1095
+ #: classes/Views/LogInUsers.php:55
1096
+ msgid "When they logged in and from where"
1097
  msgstr ""
1098
 
1099
+ #: classes/Views/LogInUsers.php:56
1100
+ msgid "The last change they have done in real-time"
1101
  msgstr ""
1102
 
1103
+ #: classes/Views/LogInUsers.php:57
1104
+ msgid "Terminate any users’ session with a click of a button"
1105
  msgstr ""
1106
 
1107
+ #: classes/Views/LogInUsers.php:58
1108
+ msgid "Limit or block multiple sessions for the same user"
1109
  msgstr ""
1110
 
1111
+ #: classes/Views/LogInUsers.php:59
1112
+ msgid "Get alerted of multiple same user sessions"
1113
  msgstr ""
1114
 
1115
+ #: classes/Views/LogInUsers.php:63
1116
+ msgid "See who is logged in to your WordPress site and multisite network in real-time."
1117
  msgstr ""
1118
 
1119
+ #: classes/Views/LogInUsers.php:67
1120
+ msgid "Limit, manage and block multiple same user sessions easily."
1121
  msgstr ""
1122
 
1123
+ #: classes/Views/Reports.php:28
1124
+ msgid "Reports Extension"
1125
  msgstr ""
1126
 
1127
+ #: classes/Views/Reports.php:35
1128
+ msgid "Reports &#8682;"
1129
  msgstr ""
1130
 
1131
+ #: classes/Views/Reports.php:49
1132
+ msgid "Individual, Scheduled & Automated Reports"
1133
  msgstr ""
1134
 
1135
+ #: classes/Views/Reports.php:50
1136
+ msgid "Many are not fans of reports, however reports are vital in business. With them you can make informed decisions that allow you to improve user productivity and the business. Upgrade to Premium so you can:"
1137
  msgstr ""
1138
 
1139
+ #: classes/Views/Reports.php:53
1140
+ msgid "Generate any type of user and site (in multisite) activity report"
1141
  msgstr ""
1142
 
1143
+ #: classes/Views/Reports.php:54
1144
+ msgid "Automate and schedule daily, weekly, monthly and quarterly reports"
1145
  msgstr ""
1146
 
1147
+ #: classes/Views/Reports.php:55
1148
+ msgid "Received reports automatically via email"
1149
  msgstr ""
1150
 
1151
+ #: classes/Views/Reports.php:56
1152
+ msgid "Create statistics reports about users’ views, logins, activity from IP addresses & more"
1153
  msgstr ""
1154
 
1155
+ #: classes/Views/Reports.php:58
1156
+ msgid "Reports are vital to the success of your business and management of your site."
1157
  msgstr ""
1158
 
1159
+ #: classes/Views/Reports.php:61
1160
+ msgid "Generate a HTML or CSV report."
1161
  msgstr ""
1162
 
1163
+ #: classes/Views/Reports.php:65
1164
+ msgid "Easily configure a criteria for your reports."
1165
  msgstr ""
1166
 
1167
+ #: classes/Views/Reports.php:69
1168
+ msgid "Schedule reports that are sent to you by email automatically."
1169
  msgstr ""
1170
 
1171
+ #: classes/Views/Search.php:28
1172
+ msgid "Search Extension"
1173
  msgstr ""
1174
 
1175
+ #: classes/Views/Search.php:35
1176
+ msgid "Search &#8682;"
1177
  msgstr ""
1178
 
1179
+ #: classes/Views/Search.php:49
1180
+ msgid "Search & Filters for the Activity Log"
1181
  msgstr ""
1182
 
1183
+ #: classes/Views/Search.php:50
1184
+ msgid "You can find all the information you want in the activity log, if you know what you are looking for and have the right tools. Upgrade to premium so you can:"
1185
  msgstr ""
1186
 
1187
+ #: classes/Views/Search.php:53
1188
+ msgid "Do text searches and use filters to fine tune the search results"
1189
  msgstr ""
1190
 
1191
+ #: classes/Views/Search.php:54
1192
+ msgid "Easily find when and who did a specific change on your site"
1193
  msgstr ""
1194
 
1195
+ #: classes/Views/Search.php:55
1196
+ msgid "Easily identify and track back suspicious user behaviour"
1197
  msgstr ""
1198
 
1199
+ #: classes/Views/Search.php:56
1200
+ msgid "Search for the cause of a problem and ease troubleshooting"
1201
  msgstr ""
1202
 
1203
+ #: classes/Views/Search.php:57
1204
+ msgid "Save search terms and filters for future use and improved productivity"
1205
  msgstr ""
1206
 
1207
+ #: classes/Views/Search.php:62
1208
+ msgid "Use the text search to find a specific change."
1209
  msgstr ""
1210
 
1211
+ #: classes/Views/Search.php:66
1212
+ msgid "Configure any filter you need to fine tune the search results and find what you are looking for with much less effort."
1213
  msgstr ""
1214
 
1215
+ #: classes/Views/Search.php:70
1216
+ msgid "Save search terms and filters to run the searches again in the future with just a single click."
1217
  msgstr ""
1218
 
1219
+ #: classes/Views/Settings.php:89
1220
+ msgid "General"
1221
  msgstr ""
1222
 
1223
+ #: classes/Views/Settings.php:96
1224
+ msgid "Activity log viewer"
1225
  msgstr ""
1226
 
1227
+ #: classes/Views/Settings.php:103
1228
+ msgid "File changes"
1229
  msgstr ""
1230
 
1231
+ #: classes/Views/Settings.php:109
1232
+ msgid "Exclude objects"
1233
  msgstr ""
1234
 
1235
+ #: classes/Views/Settings.php:116
1236
+ msgid "Advanced settings"
1237
  msgstr ""
1238
 
1239
+ #: classes/Views/Settings.php:165 classes/Views/Settings.php:179
1240
+ msgid "Settings"
1241
  msgstr ""
1242
 
1243
+ #: classes/Views/Settings.php:206
1244
+ msgid "Current user is not allowed to save settings."
1245
  msgstr ""
1246
 
1247
+ #: classes/Views/Settings.php:212
1248
+ msgid "Unknown settings tab."
1249
  msgstr ""
1250
 
1251
+ #: classes/Views/Settings.php:224 classes/Views/Settings.php:1769
1252
+ #: classes/Views/Settings.php:1792 classes/Views/SetupWizard.php:83
1253
+ msgid "Access Denied."
1254
  msgstr ""
1255
 
1256
+ #: classes/Views/Settings.php:249 classes/Views/SetupWizard.php:106
1257
+ msgid "Invalid input."
1258
  msgstr ""
1259
 
1260
+ #: classes/Views/Settings.php:336
1261
+ msgid "Message sent successfully."
1262
  msgstr ""
1263
 
1264
+ #: classes/Views/Settings.php:340 classes/Views/ToggleAlerts.php:126
1265
+ msgid "Settings have been saved."
1266
  msgstr ""
1267
 
1268
+ #: classes/Views/Settings.php:346 classes/Views/ToggleAlerts.php:132
1269
+ msgid "Error: "
1270
  msgstr ""
1271
 
1272
+ #: classes/Views/Settings.php:358
1273
+ msgid "Old data successfully purged."
1274
  msgstr ""
1275
 
1276
+ #: classes/Views/Settings.php:364
1277
+ msgid "No data is old enough to be purged."
1278
  msgstr ""
1279
 
1280
+ #: classes/Views/Settings.php:395
1281
+ msgid "Send Message"
1282
  msgstr ""
1283
 
1284
+ #: classes/Views/Settings.php:405
1285
+ msgid "Do you want to remove all data when the plugin is deleted?"
1286
  msgstr ""
1287
 
1288
+ #: classes/Views/Settings.php:453
1289
+ msgid "Use infinite scroll or pagination for the event viewer?"
1290
  msgstr ""
1291
 
1292
+ #: classes/Views/Settings.php:458
1293
+ #, php-format
1294
+ msgid "When using infinite scroll the event viewer and search results %s load up much faster and require less resources."
1295
  msgstr ""
1296
 
1297
+ #: classes/Views/Settings.php:459
1298
+ msgid "(Premium feature)"
1299
  msgstr ""
1300
 
1301
+ #: classes/Views/Settings.php:466
1302
+ msgid "Select event viewer view type:"
1303
  msgstr ""
1304
 
1305
+ #: classes/Views/Settings.php:471
1306
+ msgid "Infinite Scroll (Recommended)"
1307
  msgstr ""
1308
 
1309
+ #: classes/Views/Settings.php:476
1310
+ msgid "Pagination"
1311
  msgstr ""
1312
 
1313
+ #: classes/Views/Settings.php:487
1314
+ msgid "Do you want the activity log viewer to auto refresh?"
1315
  msgstr ""
1316
 
1317
+ #: classes/Views/Settings.php:488
1318
+ msgid "The activity log viewer auto refreshes every 30 seconds when opened so you can see the latest events as they happen almost in real time."
1319
  msgstr ""
1320
 
1321
+ #: classes/Views/Settings.php:492
1322
+ msgid "Refresh activity log viewer"
1323
  msgstr ""
1324
 
1325
+ #: classes/Views/Settings.php:498
1326
+ msgid "Auto refresh"
1327
  msgstr ""
1328
 
1329
+ #: classes/Views/Settings.php:503
1330
+ msgid "Do not auto refresh"
 
1331
  msgstr ""
1332
 
1333
+ #: classes/Views/Settings.php:513
1334
+ msgid "Display latest events widget in Dashboard & Admin bar"
1335
  msgstr ""
1336
 
1337
+ #: classes/Views/Settings.php:518
1338
+ #, php-format
1339
+ msgid "The events widget displays the latest %d security events in the dashboard and the admin bar notification displays the latest event."
1340
  msgstr ""
1341
 
1342
+ #: classes/Views/Settings.php:526
1343
+ msgid "Dashboard Widget"
1344
  msgstr ""
1345
 
1346
+ #: classes/Views/Settings.php:547
1347
+ msgid "Admin Bar Notification"
1348
  msgstr ""
1349
 
1350
+ #: classes/Views/Settings.php:550
1351
+ msgid "Admin Bar Notification (Premium)"
1352
  msgstr ""
1353
 
1354
+ #: classes/Views/Settings.php:574
1355
+ msgid "Admin Bar Notification Updates"
1356
  msgstr ""
1357
 
1358
+ #: classes/Views/Settings.php:577
1359
+ msgid "Admin Bar Notification Updates (Premium)"
1360
  msgstr ""
1361
 
1362
+ #: classes/Views/Settings.php:586
1363
+ msgid "Update in near real time"
1364
  msgstr ""
1365
 
1366
+ #: classes/Views/Settings.php:591
1367
+ msgid "Update only on page refreshes"
1368
  msgstr ""
1369
 
1370
+ #: classes/Views/Settings.php:601
1371
+ msgid "Add user notification on the WordPress login page"
1372
  msgstr ""
1373
 
1374
+ #: classes/Views/Settings.php:602
1375
+ msgid "Many compliance regulations (such as the GDPR) require website administrators to tell the users of their website that all the changes they do when logged in are being logged."
1376
  msgstr ""
1377
 
1378
+ #: classes/Views/Settings.php:606
1379
+ msgid "Login Page Notification"
1380
  msgstr ""
1381
 
1382
+ #: classes/Views/Settings.php:631
1383
+ msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
1384
  msgstr ""
1385
 
1386
+ #: classes/Views/Settings.php:649
1387
+ msgid "<strong>Note: </strong>"
1388
  msgstr ""
1389
 
1390
+ #: classes/Views/Settings.php:649
1391
+ msgid "The only HTML code allowed in the login page notification is for links ( < a href >< /a > )."
1392
  msgstr ""
1393
 
1394
+ #: classes/Views/Settings.php:665
1395
+ msgid "Is your website running behind a firewall or reverse proxy?"
1396
  msgstr ""
1397
 
1398
+ #: classes/Views/Settings.php:670
1399
+ #, php-format
1400
+ msgid "If your website is running behind a firewall set this option to yes so the plugin retrieves the end user’s IP address from the proxy header - %s."
1401
  msgstr ""
1402
 
1403
+ #: classes/Views/Settings.php:671 classes/Views/Settings.php:717
1404
+ #: classes/Views/Settings.php:772
1405
+ msgid "learn more"
1406
  msgstr ""
1407
 
1408
+ #: classes/Views/Settings.php:678
1409
+ msgid "Reverse Proxy / Firewall Options"
1410
  msgstr ""
1411
 
1412
+ #: classes/Views/Settings.php:688
1413
+ msgid "Filter internal IP addresses from the proxy headers. Enable this option only if you are\tare still seeing the internal IP addresses of the firewall or proxy."
1414
  msgstr ""
1415
 
1416
+ #: classes/Views/Settings.php:704
1417
+ msgid "Who can change the plugin settings?"
1418
  msgstr ""
1419
 
1420
+ #: classes/Views/Settings.php:716
1421
+ #, php-format
1422
+ msgid "By default only users with administrator role (single site) and super administrator role (multisite) can change the settings of the plugin. Though you can restrict the privileges to just your user - %s."
1423
  msgstr ""
1424
 
1425
+ #: classes/Views/Settings.php:727
1426
+ msgid "Restrict plugin access"
1427
  msgstr ""
1428
 
1429
+ #: classes/Views/Settings.php:732 classes/Views/Settings.php:787
1430
+ msgid "Only me"
1431
  msgstr ""
1432
 
1433
+ #: classes/Views/Settings.php:739
1434
+ msgid "All superadmins"
1435
  msgstr ""
1436
 
1437
+ #: classes/Views/Settings.php:741
1438
+ msgid "All administrators"
1439
  msgstr ""
1440
 
1441
+ #: classes/Views/Settings.php:754
1442
+ msgid "Allow other users to view the activity log"
1443
  msgstr ""
1444
 
1445
+ #: classes/Views/Settings.php:766
1446
+ msgid "By default only super administrators and the child sites' administrators can view the WordPress activity log. Though you can change this by using the setting below."
1447
  msgstr ""
1448
 
1449
+ #: classes/Views/Settings.php:768
1450
+ msgid "By default only users with administrator role can view the WordPress activity log. To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
1451
  msgstr ""
1452
 
1453
+ #: classes/Views/Settings.php:781 classes/Views/Settings.php:811
1454
+ msgid "Can view events"
1455
  msgstr ""
1456
 
1457
+ #: classes/Views/Settings.php:788
1458
+ msgid "Super administators only"
1459
  msgstr ""
1460
 
1461
+ #: classes/Views/Settings.php:789
1462
+ msgid "Super administators and site administrators"
1463
  msgstr ""
1464
 
1465
+ #: classes/Views/Settings.php:805
1466
+ msgid "To allow someone who does not have an admin role to view the activity log, specify them in the below setting."
1467
  msgstr ""
1468
 
1469
+ #: classes/Views/Settings.php:811
1470
+ msgid "Can also view events"
1471
  msgstr ""
1472
 
1473
+ #: classes/Views/Settings.php:817 classes/Views/Settings.php:1210
1474
+ #: classes/Views/Settings.php:1231 classes/Views/Settings.php:1252
1475
+ #: classes/Views/Settings.php:1274 classes/Views/Settings.php:1321
1476
+ msgid "Add"
1477
  msgstr ""
1478
 
1479
+ #: classes/Views/Settings.php:820
1480
+ msgid "Specify the username or the users which do not have an admin role but can also see the WordPress activity role. You can also specify roles."
1481
  msgstr ""
1482
 
1483
+ #: classes/Views/Settings.php:834 classes/Views/Settings.php:1217
1484
+ #: classes/Views/Settings.php:1238 classes/Views/Settings.php:1259
1485
+ #: classes/Views/Settings.php:1281 classes/Views/Settings.php:1329
1486
+ #: classes/Views/Settings.php:1583
1487
+ msgid "Remove"
1488
  msgstr ""
1489
 
1490
+ #: classes/Views/Settings.php:846
1491
+ msgid "Which email address should the plugin use as a from address?"
1492
  msgstr ""
1493
 
1494
+ #: classes/Views/Settings.php:847
1495
+ msgid "By default when the plugin sends an email notification it uses the email address specified in this website’s general settings. Though you can change the email address and display name from this section."
1496
  msgstr ""
1497
 
1498
+ #: classes/Views/Settings.php:851
1499
+ msgid "From Email & Name"
1500
  msgstr ""
1501
 
1502
+ #: classes/Views/Settings.php:857
1503
+ msgid "Use the email address from the WordPress general settings"
1504
  msgstr ""
1505
 
1506
+ #: classes/Views/Settings.php:862
1507
+ msgid "Use another email address"
1508
  msgstr ""
1509
 
1510
+ #: classes/Views/Settings.php:866
1511
+ msgid "Email Address"
1512
  msgstr ""
1513
 
1514
+ #: classes/Views/Settings.php:871
1515
+ msgid "Display Name"
1516
  msgstr ""
1517
 
1518
+ #: classes/Views/Settings.php:882
1519
+ msgid "Do you want to hide the plugin from the list of installed plugins?"
1520
  msgstr ""
1521
 
1522
+ #: classes/Views/Settings.php:883
1523
+ msgid "By default all installed plugins are listed in the plugins page. Set this option to Yes remove WP Activity Log from the list of installed plugins for users who are unable to access the WP Activity Log settings."
1524
  msgstr ""
1525
 
1526
+ #: classes/Views/Settings.php:887
1527
+ msgid "Hide Plugin in Plugins Page"
1528
  msgstr ""
1529
 
1530
+ #: classes/Views/Settings.php:892
1531
+ msgid "Yes, hide the plugin and any WP Activity Log plugin extensions from the list of installed plugins"
1532
  msgstr ""
1533
 
1534
+ #: classes/Views/Settings.php:897
1535
+ msgid "No, do not hide the plugin"
1536
  msgstr ""
1537
 
1538
+ #: classes/Views/Settings.php:963
1539
+ msgid "For how long do you want to keep the activity log events (Retention settings) ?"
1540
  msgstr ""
1541
 
1542
+ #: classes/Views/Settings.php:966
1543
+ msgid "The plugin uses an efficient way to store the activity log data in the WordPress database, though the more data you keep the more disk space will be required. "
1544
  msgstr ""
1545
 
1546
+ #: classes/Views/Settings.php:967
1547
+ msgid "<a href=\"https://wpactivitylog.com/pricing/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">Upgrade to Premium</a> to store the activity log data in an external database."
1548
  msgstr ""
1549
 
1550
+ #: classes/Views/Settings.php:980
1551
+ msgid "What timestamp you would like to see in the WordPress activity log?"
1552
  msgstr ""
1553
 
1554
+ #: classes/Views/Settings.php:981
1555
+ msgid "Note that the WordPress' timezone might be different from that configured on the server so when you switch from UTC to WordPress timezone or vice versa you might notice a big difference."
1556
  msgstr ""
1557
 
1558
+ #: classes/Views/Settings.php:985
1559
+ msgid "Events Timestamp"
1560
  msgstr ""
1561
 
1562
+ #: classes/Views/Settings.php:1005
1563
+ msgid "UTC"
 
1564
  msgstr ""
1565
 
1566
+ #: classes/Views/Settings.php:1011
1567
+ msgid "Timezone configured on this WordPress website"
1568
  msgstr ""
1569
 
1570
+ #: classes/Views/Settings.php:1018
1571
+ msgid "Show Milliseconds"
1572
  msgstr ""
1573
 
1574
+ #: classes/Views/Settings.php:1025
1575
+ msgid "Show Milliseconds in list view"
1576
  msgstr ""
1577
 
1578
+ #: classes/Views/Settings.php:1035
1579
+ msgid "What user information should be displayed in the WordPress activity log?"
1580
  msgstr ""
1581
 
1582
+ #: classes/Views/Settings.php:1036
1583
+ msgid "Usernames might not be the same as a user's first and last name so it can be difficult to recognize whose user was that did a change. When there is no first & last name or public display name configured the plugin will revert back to the WordPress username."
1584
  msgstr ""
1585
 
1586
+ #: classes/Views/Settings.php:1040
1587
+ msgid "User information in Activity log"
1588
  msgstr ""
1589
 
1590
+ #: classes/Views/Settings.php:1046
1591
+ msgid "WordPress username"
1592
  msgstr ""
1593
 
1594
+ #: classes/Views/Settings.php:1051
1595
+ msgid "First name & last name"
 
1596
  msgstr ""
1597
 
1598
+ #: classes/Views/Settings.php:1056
1599
+ msgid "Configured public display name"
1600
  msgstr ""
1601
 
1602
+ #: classes/Views/Settings.php:1066
1603
+ msgid "Select the columns to be displayed in the WordPress activity log"
1604
  msgstr ""
1605
 
1606
+ #: classes/Views/Settings.php:1067
1607
+ msgid "When you deselect a column it won’t be shown in the activity log viewer in both views. The data will still be recorded by the plugin."
1608
  msgstr ""
1609
 
1610
+ #: classes/Views/Settings.php:1071
1611
+ msgid "Activity log columns selection"
1612
  msgstr ""
1613
 
1614
+ #: classes/Views/Settings.php:1080
1615
+ msgid "Event ID"
1616
  msgstr ""
1617
 
1618
+ #: classes/Views/Settings.php:1084
1619
+ msgid "Date & Time"
1620
  msgstr ""
1621
 
1622
+ #: classes/Views/Settings.php:1088
1623
+ msgid "Source IP Address"
1624
  msgstr ""
1625
 
1626
+ #: classes/Views/Settings.php:1090
1627
+ msgid "Info (used in Grid view mode only)"
1628
  msgstr ""
1629
 
1630
+ #: classes/Views/Settings.php:1106
1631
+ msgid "Do you want to keep a log of WordPress background activity?"
1632
  msgstr ""
1633
 
1634
+ #: classes/Views/Settings.php:1108
1635
+ msgid "WordPress does a lot of things in the background that you do not necessarily need to know about, such as; deletion of post revisions, deletion of auto saved drafts etc. By default the plugin does not report them since there might be a lot and are irrelevant to the user."
1636
  msgstr ""
1637
 
1638
+ #: classes/Views/Settings.php:1113
1639
+ msgid "Enable Events for WordPress Background Activity"
1640
  msgstr ""
1641
 
1642
+ #: classes/Views/Settings.php:1172 classes/Views/ToggleAlerts.php:522
1643
+ msgid "Website File Changes Monitor"
1644
  msgstr ""
1645
 
1646
+ #: classes/Views/Settings.php:1173 classes/Views/ToggleAlerts.php:523
1647
+ msgid "To keep a log of file changes please install Website File Changes Monitor, a plugin which is also developed by us."
1648
  msgstr ""
1649
 
1650
+ #: classes/Views/Settings.php:1174 classes/Views/ToggleAlerts.php:524
1651
+ msgid "Install plugin now"
1652
  msgstr ""
1653
 
1654
+ #: classes/Views/Settings.php:1174 classes/Views/ToggleAlerts.php:524
1655
+ msgid "Learn More"
1656
  msgstr ""
1657
 
1658
+ #: classes/Views/Settings.php:1188
1659
+ msgid "Configure how often file changes scan run and other settings from the"
1660
  msgstr ""
1661
 
1662
+ #: classes/Views/Settings.php:1188
1663
+ msgid "Website File Changes plugin settings"
1664
  msgstr ""
1665
 
1666
+ #: classes/Views/Settings.php:1202
1667
+ msgid "By default the plugin keeps a log of all user changes done on your WordPress website. Use the setting below to exclude any objects from the activity log. When an object is excluded from the activity log, any event in which that object is referred will not be logged in the activity log."
1668
  msgstr ""
1669
 
1670
+ #: classes/Views/Settings.php:1206
1671
+ msgid "Exclude Users:"
1672
  msgstr ""
1673
 
1674
+ #: classes/Views/Settings.php:1227
1675
+ msgid "Exclude Roles:"
1676
  msgstr ""
1677
 
1678
+ #: classes/Views/Settings.php:1248
1679
+ msgid "Exclude IP Address(es):"
1680
  msgstr ""
1681
 
1682
+ #: classes/Views/Settings.php:1264
1683
+ msgid "You can exclude an individual IP address or a range of IP addresses. To exclude a range use the following format: [first IP]-[last octet of the last IP]. Example: 172.16.180.6-127."
1684
  msgstr ""
1685
 
1686
+ #: classes/Views/Settings.php:1270
1687
+ msgid "Exclude Post Type:"
1688
  msgstr ""
1689
 
1690
+ #: classes/Views/Settings.php:1286
1691
+ msgid "WordPress has the post and page post types by default though your website might use more post types (custom post types). You can exclude all post types, including the default WordPress ones."
1692
  msgstr ""
1693
 
1694
+ #: classes/Views/Settings.php:1293
1695
+ msgid "Exclude custom post fields:"
1696
  msgstr ""
1697
 
1698
+ #: classes/Views/Settings.php:1301
1699
+ msgid "Exclude custom user fields:"
1700
  msgstr ""
1701
 
1702
+ #: classes/Views/Settings.php:1334
1703
+ msgid "You can use the * wildcard to exclude multiple matching custom fields. For example to exclude all custom fields starting with wp123 enter wp123*"
1704
  msgstr ""
1705
 
1706
+ #: classes/Views/Settings.php:1361
1707
+ msgid "These settings are for advanced users."
1708
  msgstr ""
1709
 
1710
+ #: classes/Views/Settings.php:1362
1711
+ msgid "If you have any questions <a href=\"https://wpactivitylog.com/contact/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=settings+pages\" target=\"_blank\">contact us</a>."
1712
  msgstr ""
1713
 
1714
+ #: classes/Views/Settings.php:1365
1715
+ msgid "Reset plugin settings to default"
1716
  msgstr ""
1717
 
1718
+ #: classes/Views/Settings.php:1366
1719
+ msgid "Use this button to <em>factory reset</em> the plugin. This means that all the configured settings will be reset to default and all email notifications, scheduled reports, external database / third party services connections, archiving and mirroring rule will be deleted. NOTE: the activity log data will not be purged. Use the setting below to purge the activity log."
1720
  msgstr ""
1721
 
1722
+ #: classes/Views/Settings.php:1370
1723
+ msgid "Reset Settings"
1724
  msgstr ""
1725
 
1726
+ #: classes/Views/Settings.php:1372
1727
+ msgid "RESET"
1728
  msgstr ""
1729
 
1730
+ #: classes/Views/Settings.php:1378
1731
+ msgid "Purge the WordPress activity log"
1732
  msgstr ""
1733
 
1734
+ #: classes/Views/Settings.php:1379
1735
+ msgid "Click the Purge button below to delete all the data from the WordPress activity log and start afresh."
1736
  msgstr ""
1737
 
1738
+ #: classes/Views/Settings.php:1383
1739
+ msgid "Purge Activity Log"
1740
  msgstr ""
1741
 
1742
+ #: classes/Views/Settings.php:1385
1743
+ msgid "PURGE"
1744
  msgstr ""
1745
 
1746
+ #: classes/Views/Settings.php:1392
1747
+ msgid "MainWP Child Site Stealth Mode"
 
1748
  msgstr ""
1749
 
1750
+ #: classes/Views/Settings.php:1393
1751
+ msgid "This option is enabled automatically when the plugin detects the MainWP Child plugin on the site. When this setting is enabled plugin access is restricted to the administrator who installs the plugin, the plugin is not shown in the list of installed plugins and no admin notifications are shown. Disable this option to change the plugin to the default setup."
1752
  msgstr ""
1753
 
1754
+ #: classes/Views/Settings.php:1397
1755
+ msgid "Enable MainWP Child Site Stealth Mode"
1756
  msgstr ""
1757
 
1758
+ #: classes/Views/Settings.php:1417
1759
+ msgid "Admin blocking plugins support"
1760
  msgstr ""
1761
 
1762
+ #: classes/Views/Settings.php:1422
1763
+ msgid "Enable early plugin loading on sites that use admin blocking plugins"
1764
  msgstr ""
1765
 
1766
+ #: classes/Views/Settings.php:1431
1767
+ msgid "Do you want to delete the plugin data from the database upon uninstall?"
1768
  msgstr ""
1769
 
1770
+ #: classes/Views/Settings.php:1432
1771
+ msgid "The plugin saves the activity log data and settings in the WordPress database. By default upon uninstalling the plugin the data is kept in the database so if it is installed again, you can still access the data. If the data is deleted it is not possible to recover it so you won't be able to access it again even when you reinstall the plugin."
1772
  msgstr ""
1773
 
1774
+ #: classes/Views/Settings.php:1436
1775
+ msgid "Remove Data on Uninstall"
1776
  msgstr ""
1777
 
1778
+ #: classes/Views/Settings.php:1461
1779
+ msgid "Are you sure you want to reset all the plugin settings to default? This action cannot be undone."
1780
  msgstr ""
1781
 
1782
+ #: classes/Views/Settings.php:1471
1783
+ msgid "Are you sure you want to purge all the activity log data?"
1784
  msgstr ""
1785
 
1786
+ #: classes/Views/Settings.php:1495
1787
+ msgid "MainWP Child plugin is not active on this website."
1788
  msgstr ""
1789
 
1790
+ #: classes/Views/Settings.php:1576
1791
+ msgid "The specified value is not a valid URL!"
1792
  msgstr ""
1793
 
1794
+ #: classes/Views/Settings.php:1577
1795
+ msgid "The specified value is not a valid post type!"
1796
  msgstr ""
1797
 
1798
+ #: classes/Views/Settings.php:1578
1799
+ msgid "The specified value is not a valid IP address!"
1800
  msgstr ""
1801
 
1802
+ #: classes/Views/Settings.php:1579
1803
+ msgid "The specified value is not a user nor a role!"
1804
  msgstr ""
1805
 
1806
+ #: classes/Views/Settings.php:1580
1807
+ msgid "Filename cannot be added because it contains invalid characters."
1808
  msgstr ""
1809
 
1810
+ #: classes/Views/Settings.php:1581
1811
+ msgid "File extension cannot be added because it contains invalid characters."
1812
  msgstr ""
1813
 
1814
+ #: classes/Views/Settings.php:1582
1815
+ msgid "Directory cannot be added because it contains invalid characters."
1816
  msgstr ""
1817
 
1818
+ #: classes/Views/Settings.php:1584
1819
+ msgid "Please save any changes before switching tabs."
1820
  msgstr ""
1821
 
1822
+ #: classes/Views/Settings.php:1775 classes/Views/Settings.php:1798
1823
+ msgid "Nonce Verification Failed."
1824
  msgstr ""
1825
 
1826
+ #: classes/Views/Settings.php:1783
1827
+ msgid "Plugin settings have been reset."
1828
  msgstr ""
1829
 
1830
+ #: classes/Views/Settings.php:1807
1831
+ msgid "Tables has been reset."
1832
  msgstr ""
1833
 
1834
+ #: classes/Views/Settings.php:1809
1835
+ msgid "Reset query failed."
 
1836
  msgstr ""
1837
 
1838
+ #: classes/Views/Settings.php:1822
1839
+ msgid "Activity log retention"
1840
  msgstr ""
1841
 
1842
+ #: classes/Views/Settings.php:1828
1843
+ msgid "Keep all data"
1844
  msgstr ""
1845
 
1846
+ #: classes/Views/Settings.php:1844
1847
+ msgid "Days"
1848
  msgstr ""
1849
 
1850
+ #: classes/Views/Settings.php:1845
1851
+ msgid "Months"
1852
  msgstr ""
1853
 
1854
+ #: classes/Views/Settings.php:1846
1855
+ msgid "Years"
1856
  msgstr ""
1857
 
1858
+ #: classes/Views/Settings.php:1861
1859
+ msgid "Delete events older than"
1860
  msgstr ""
1861
 
1862
+ #: classes/Views/Settings.php:1879
1863
+ msgid "The next scheduled purging of activity log data that is older than "
1864
  msgstr ""
1865
 
1866
+ #: classes/Views/Settings.php:1886
1867
+ msgid "You can run the purging process now by clicking the button below."
1868
  msgstr ""
1869
 
1870
+ #: classes/Views/Settings.php:1890
1871
+ msgid "Purge Old Data"
1872
  msgstr ""
1873
 
1874
+ #: classes/Views/SetupWizard.php:178
1875
+ msgid "Welcome"
1876
  msgstr ""
1877
 
1878
+ #: classes/Views/SetupWizard.php:182
1879
+ msgid "Log Details"
1880
  msgstr ""
1881
 
1882
+ #: classes/Views/SetupWizard.php:187
1883
+ msgid "Log In"
1884
  msgstr ""
1885
 
1886
+ #: classes/Views/SetupWizard.php:192
1887
+ msgid "User Registrations"
1888
  msgstr ""
1889
 
1890
+ #: classes/Views/SetupWizard.php:197
1891
+ msgid "Log Retention"
1892
  msgstr ""
1893
 
1894
+ #: classes/Views/SetupWizard.php:202 classes/Views/SetupWizard.php:741
1895
+ #: classes/Views/SetupWizard.php:742
1896
+ msgid "Finish"
1897
  msgstr ""
1898
 
1899
+ #: classes/Views/SetupWizard.php:262
1900
+ msgid "Specified value in not a user."
1901
  msgstr ""
1902
 
1903
+ #: classes/Views/SetupWizard.php:263
1904
+ msgid "Specified value in not a role."
1905
  msgstr ""
1906
 
1907
+ #: classes/Views/SetupWizard.php:264
1908
+ msgid "Specified value in not an IP address."
1909
  msgstr ""
1910
 
1911
+ #: classes/Views/SetupWizard.php:270 wp-security-audit-log.php:1307
1912
+ msgid "Installing, please wait"
1913
  msgstr ""
1914
 
1915
+ #: classes/Views/SetupWizard.php:271 wp-security-audit-log.php:1308
1916
+ msgid "Already installed"
1917
  msgstr ""
1918
 
1919
+ #: classes/Views/SetupWizard.php:273 wp-security-audit-log.php:1310
1920
+ msgid "Extension activated"
 
 
 
 
 
 
 
 
 
1921
  msgstr ""
1922
 
1923
+ #: classes/Views/SetupWizard.php:274 wp-security-audit-log.php:1311
1924
+ msgid "Install failed"
1925
  msgstr ""
1926
 
1927
+ #: classes/Views/SetupWizard.php:304
1928
+ msgid "WP Activity Log &rsaquo; Setup Wizard"
 
 
1929
  msgstr ""
1930
 
1931
+ #: classes/Views/SetupWizard.php:322
1932
+ msgid "Close Wizard"
1933
  msgstr ""
1934
 
1935
+ #: classes/Views/SetupWizard.php:415
1936
+ #, php-format
1937
+ msgid "You have reached an invaild step - %1$sreturn to the start of the wizard%2$s."
1938
  msgstr ""
1939
 
1940
+ #: classes/Views/SetupWizard.php:432
1941
+ msgid "This wizard helps you configure the basic plugin settings. All these settings can be changed at a later stage from the plugin settings."
1942
  msgstr ""
1943
 
1944
+ #: classes/Views/SetupWizard.php:437
1945
+ msgid "Start Configuring the Plugin"
1946
  msgstr ""
1947
 
1948
+ #: classes/Views/SetupWizard.php:441
1949
+ msgid "Exit Wizard"
1950
  msgstr ""
1951
 
1952
+ #: classes/Views/SetupWizard.php:454
1953
+ msgid "Please select the level of detail for your WordPress activity logs:"
1954
  msgstr ""
1955
 
1956
+ #: classes/Views/SetupWizard.php:458
1957
+ msgid "Basic (I want a high level overview and I am not interested in the detail)"
1958
  msgstr ""
1959
 
1960
+ #: classes/Views/SetupWizard.php:463
1961
+ msgid "Geek (I want to know everything that is happening on my WordPress)"
1962
  msgstr ""
1963
 
1964
+ #: classes/Views/SetupWizard.php:465
1965
+ msgid "Note: You can change the WordPress logging level from the plugin’s settings anytime."
1966
  msgstr ""
1967
 
1968
+ #: classes/Views/SetupWizard.php:468 classes/Views/SetupWizard.php:525
1969
+ #: classes/Views/SetupWizard.php:574 classes/Views/SetupWizard.php:634
1970
+ #: classes/Views/SetupWizard.php:635 classes/Views/SetupWizard.php:856
1971
+ #: classes/Views/SetupWizard.php:857
1972
+ msgid "Next"
1973
  msgstr ""
1974
 
1975
+ #: classes/Views/SetupWizard.php:509
1976
+ msgid "Do you or your users use other pages to log in to WordPress other than the default login page ( /wp-admin/ )?"
1977
  msgstr ""
1978
 
1979
+ #: classes/Views/SetupWizard.php:513
1980
+ msgid "Yes, we use other pages to login to WordPress."
1981
  msgstr ""
1982
 
1983
+ #: classes/Views/SetupWizard.php:518
1984
+ msgid "No, we only use the default WordPress login page."
1985
  msgstr ""
1986
 
1987
+ #: classes/Views/SetupWizard.php:520
1988
+ msgid "If your website is a membership or ecommerce website most probably you have more than one area from where the users can login. If you are not sure, select Yes."
1989
  msgstr ""
1990
 
1991
+ #: classes/Views/SetupWizard.php:523 classes/Views/SetupWizard.php:572
1992
+ #: classes/Views/SetupWizard.php:626
1993
+ msgid "Note: You can change the WordPress activity log retention settings at any time from the plugin settings later on."
1994
  msgstr ""
1995
 
1996
+ #: classes/Views/SetupWizard.php:558
1997
+ msgid "Can visitors register as a user on your website?"
1998
  msgstr ""
1999
 
2000
+ #: classes/Views/SetupWizard.php:569
2001
+ msgid "If you are not sure about this setting, check if the Membership setting in the WordPress General settings is checked or not. If it is not checked (default) select No."
2002
  msgstr ""
2003
 
2004
+ #: classes/Views/SetupWizard.php:608
2005
+ msgid "How long do you want to keep the data in the WordPress activity Log?"
2006
  msgstr ""
2007
 
2008
+ #: classes/Views/SetupWizard.php:613
2009
+ msgid "6 months (data older than 6 months will be deleted)"
2010
  msgstr ""
2011
 
2012
+ #: classes/Views/SetupWizard.php:618
2013
+ msgid "12 months (data older than 12 months will be deleted)"
2014
  msgstr ""
2015
 
2016
+ #: classes/Views/SetupWizard.php:623
2017
+ msgid "Keep all data."
2018
  msgstr ""
2019
 
2020
+ #: classes/Views/SetupWizard.php:644
2021
+ msgid "The plugin stores the data in the WordPress database in a very efficient way, though the more data you keep the more hard disk space it will consume. If you need need to retain a lot of data we would recommend you to <a href=\"https://wpactivitylog.com/features/?utm_source=plugin&utm_medium=referral&utm_campaign=WSAL&utm_content=wizard+configuration\" target=\"_blank\">upgrade to Premium</a> and use the Database tools to store the WordPress activity log in an external database."
2022
  msgstr ""
2023
 
2024
+ #: classes/Views/SetupWizard.php:707
2025
+ msgid "Your plugin is all set and it is ready to start keeping a record of everything that is happening on your WordPress in a WordPress activity log."
2026
  msgstr ""
2027
 
2028
+ #: classes/Views/SetupWizard.php:708
2029
+ msgid "Below are a few useful links you might need to refer to:"
2030
  msgstr ""
2031
 
2032
+ #: classes/Views/SetupWizard.php:713
2033
+ msgid "Getting started with the WP Activity Log plugin"
2034
  msgstr ""
2035
 
2036
+ #: classes/Views/SetupWizard.php:718
2037
+ msgid "Knowledge Base & Support Documents"
2038
  msgstr ""
2039
 
2040
+ #: classes/Views/SetupWizard.php:723
2041
+ msgid "Benefits of keeping a WordPress activity log"
2042
  msgstr ""
2043
 
2044
+ #: classes/Views/SetupWizard.php:733
2045
+ msgid "We trust this plugin meets all your activity log requirements. Should you encounter any problems, have feature requests or would like to share some feedback"
2046
  msgstr ""
2047
 
2048
+ #: classes/Views/SetupWizard.php:733
2049
+ msgid "please get in touch!"
2050
  msgstr ""
2051
 
2052
+ #: classes/Views/SetupWizard.php:769
2053
+ msgid "Third Party Extensions"
2054
  msgstr ""
2055
 
2056
+ #: classes/Views/SetupWizard.php:810
2057
+ msgid "Monitoring changes done in third party plugins"
2058
  msgstr ""
2059
 
2060
+ #: classes/Views/SetupWizard.php:811
2061
+ msgid "We noticed that the below plugins are installed on this website. You can install our extensions to also keep a log of changes users do on these plugins."
2062
  msgstr ""
2063
 
2064
+ #: classes/Views/ToggleAlerts.php:27 classes/Views/ToggleAlerts.php:41
2065
+ msgid "Enable/Disable Events"
2066
  msgstr ""
2067
 
2068
+ #: classes/Views/ToggleAlerts.php:158
2069
+ msgid "Basic"
2070
  msgstr ""
2071
 
2072
+ #: classes/Views/ToggleAlerts.php:159
2073
+ msgid "Geek"
2074
  msgstr ""
2075
 
2076
+ #: classes/Views/ToggleAlerts.php:160
2077
+ msgid "Custom"
2078
  msgstr ""
2079
 
2080
+ #: classes/Views/ToggleAlerts.php:180
2081
+ msgid "Log Level: "
2082
  msgstr ""
2083
 
2084
+ #: classes/Views/ToggleAlerts.php:187
2085
+ msgid "Use the Log level drop down menu above to use one of our preset log levels. Alternatively you can enable or disable any of the individual events from the below tabs. Refer to <a href=\"https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/\" target=\"_blank\">the complete list of WordPress activity log event IDs</a> for reference on all the events the plugin can keep a log of."
2086
  msgstr ""
2087
 
2088
+ #: classes/Views/ToggleAlerts.php:197
2089
+ msgid "Third party plugins"
2090
  msgstr ""
2091
 
2092
+ #: classes/Views/ToggleAlerts.php:298
2093
+ msgid "Code"
2094
  msgstr ""
2095
 
2096
+ #: classes/Views/ToggleAlerts.php:300 classes/WidgetManager.php:79
2097
+ msgid "Description"
2098
  msgstr ""
2099
 
2100
+ #: classes/Views/ToggleAlerts.php:304 defaults.php:342
2101
+ msgid "Content"
2102
  msgstr ""
2103
 
2104
+ #: classes/Views/ToggleAlerts.php:307
2105
+ msgid "<strong>Note:</strong> Post refers to any type of content, i.e. blog post, page or a post with a custom post type."
2106
  msgstr ""
2107
 
2108
+ #: classes/Views/ToggleAlerts.php:310
2109
+ msgid "WooCommerce"
2110
  msgstr ""
2111
 
2112
+ #: classes/Views/ToggleAlerts.php:310 classes/Views/ToggleAlerts.php:318
2113
+ msgid "WooCommerce Products"
2114
  msgstr ""
2115
 
2116
+ #: classes/Views/ToggleAlerts.php:314
2117
+ msgid "The plugin WooCommerce is not installed on your website so these events have been disabled."
2118
  msgstr ""
2119
 
2120
+ #: classes/Views/ToggleAlerts.php:321
2121
+ msgid "Products"
2122
  msgstr ""
2123
 
2124
+ #: classes/Views/ToggleAlerts.php:327
2125
+ msgid "Post Changes"
2126
  msgstr ""
2127
 
2128
+ #: classes/Views/ToggleAlerts.php:330 defaults.php:3211
2129
+ msgid "MultiSite"
2130
  msgstr ""
2131
 
2132
+ #: classes/Views/ToggleAlerts.php:334
2133
+ msgid "Your website is a single site so the multisite events have been disabled."
2134
  msgstr ""
2135
 
2136
+ #: classes/Views/ToggleAlerts.php:338
2137
+ msgid "Other User Activity"
2138
  msgstr ""
2139
 
2140
+ #: classes/Views/ToggleAlerts.php:341
2141
+ msgid "Logins & Logouts"
2142
  msgstr ""
2143
 
2144
+ #: classes/Views/ToggleAlerts.php:353 classes/Views/ToggleAlerts.php:512
2145
+ #: defaults.php:3362
2146
+ msgid "Monitor File Changes"
2147
  msgstr ""
2148
 
2149
+ #: classes/Views/ToggleAlerts.php:364
2150
+ msgid "Not Implemented"
2151
  msgstr ""
2152
 
2153
+ #: classes/Views/ToggleAlerts.php:367
2154
+ msgid "Not Available"
2155
  msgstr ""
2156
 
2157
+ #: classes/Views/ToggleAlerts.php:382
2158
+ msgid "User Logins/Logouts"
2159
  msgstr ""
2160
 
2161
+ #: classes/Views/ToggleAlerts.php:385
2162
+ msgid "User Sessions"
2163
  msgstr ""
2164
 
2165
+ #: classes/Views/ToggleAlerts.php:388
2166
+ msgid "Files"
2167
  msgstr ""
2168
 
2169
+ #: classes/Views/ToggleAlerts.php:391
2170
+ msgid "Post Settings"
2171
  msgstr ""
2172
 
2173
+ #: classes/Views/ToggleAlerts.php:422 defaults.php:3361
2174
+ msgid "File Changes"
2175
  msgstr ""
2176
 
2177
+ #: classes/Views/ToggleAlerts.php:461
2178
+ msgid "Keep a log when a visitor registers a user on the website. Only enable this if you allow visitors to register as users on your website. User registration is disabled by default in WordPress."
2179
  msgstr ""
2180
 
2181
+ #: classes/Views/ToggleAlerts.php:475 classes/Views/ToggleAlerts.php:488
2182
+ msgid "Number of login attempts to log. Enter 0 to log all failed login attempts. (By default the plugin only logs up to 10 failed login because the process can be very resource intensive in case of a brute force attack)"
2183
  msgstr ""
2184
 
2185
+ #: classes/Views/ToggleAlerts.php:502
2186
+ msgid "Keep a log of user log in activity on custom login forms (such as WooCommerce & membership plugins)"
2187
  msgstr ""
2188
 
2189
+ #: classes/Views/ToggleAlerts.php:548
2190
+ msgid "Save Changes"
2191
  msgstr ""
2192
 
2193
+ #: classes/Views/ToggleAlerts.php:555
2194
+ msgid "Log Level Updated"
2195
  msgstr ""
2196
 
2197
+ #: classes/Views/ToggleAlerts.php:559
2198
+ #, php-format
2199
+ msgid "The %s log level has been successfully loaded and applied."
2200
  msgstr ""
2201
 
2202
+ #: classes/Views/ToggleAlerts.php:563
2203
+ msgid "OK"
2204
  msgstr ""
2205
 
2206
+ #: classes/Views/ToggleAlerts.php:578
2207
+ msgid "Enable File Integrity Scanner"
2208
  msgstr ""
2209
 
2210
+ #: classes/Views/ToggleAlerts.php:580
2211
+ msgid "The file integrity scanner is switched off. To enable this event it has to be switched on."
2212
  msgstr ""
2213
 
2214
+ #: classes/Views/ToggleAlerts.php:584
2215
+ msgid "SWITCH ON"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2216
  msgstr ""
2217
 
2218
+ #: classes/Views/ToggleAlerts.php:585
2219
+ msgid "DISABLE EVENT"
2220
  msgstr ""
2221
 
2222
+ #: classes/Views/addons/html-view.php:95 classes/Views/addons/html-view.php:120
2223
+ msgid "Upgrade to Premium"
2224
  msgstr ""
2225
 
2226
+ #: classes/Views/addons/html-view.php:96
2227
+ msgid "More Information"
2228
  msgstr ""
2229
 
2230
+ #: classes/Views/addons/html-view.php:104
2231
+ msgid "Screenshots"
2232
  msgstr ""
2233
 
2234
+ #: classes/Views/addons/html-view.php:121
2235
+ msgid "Start Free 14-Day Premium Trial"
2236
  msgstr ""
2237
 
2238
+ #: classes/WidgetManager.php:55
2239
+ msgid "Latest Events"
2240
  msgstr ""
2241
 
2242
+ #: classes/WidgetManager.php:71
2243
+ msgid "No events found."
2244
  msgstr ""
2245
 
2246
+ #: defaults.php:71
2247
+ msgid "View category"
2248
  msgstr ""
2249
 
2250
+ #: defaults.php:75
2251
+ msgid "Contact Support"
2252
  msgstr ""
2253
 
2254
+ #: defaults.php:88
2255
+ msgid "View page in the editor"
2256
  msgstr ""
2257
 
2258
+ #: defaults.php:92
2259
+ msgid "View the post in editor"
2260
  msgstr ""
2261
 
2262
+ #: defaults.php:97
2263
+ msgid "View the order"
2264
  msgstr ""
2265
 
2266
+ #: defaults.php:101
2267
+ msgid "User profile page"
2268
  msgstr ""
2269
 
2270
+ #: defaults.php:105
2271
+ msgid "Open the log file"
2272
  msgstr ""
2273
 
2274
+ #: defaults.php:113
2275
+ msgid "View menu"
2276
  msgstr ""
2277
 
2278
+ #: defaults.php:117 defaults.php:126 defaults.php:3218 defaults.php:3230
2279
+ #: defaults.php:3242 defaults.php:3254 defaults.php:3266 defaults.php:3278
2280
+ msgid "URL"
2281
  msgstr ""
2282
 
2283
+ #: defaults.php:121
2284
+ msgid "View attachment page"
2285
  msgstr ""
2286
 
2287
+ #: defaults.php:130
2288
+ msgid "View the content changes"
2289
  msgstr ""
2290
 
2291
+ #: defaults.php:134
2292
+ msgid "View tag"
2293
  msgstr ""
2294
 
2295
+ #: defaults.php:177
2296
+ msgid "Critical severity events."
2297
  msgstr ""
2298
 
2299
+ #: defaults.php:179
2300
+ msgid "High severity events."
2301
  msgstr ""
2302
 
2303
+ #: defaults.php:181
2304
+ msgid "Medium severity events."
2305
  msgstr ""
2306
 
2307
+ #: defaults.php:183
2308
+ msgid "Low severity events."
2309
  msgstr ""
2310
 
2311
+ #: defaults.php:185
2312
+ msgid "Informational events."
2313
  msgstr ""
2314
 
2315
+ #: defaults.php:190
2316
+ msgid "Users Logins & Sessions Events"
2317
  msgstr ""
2318
 
2319
+ #: defaults.php:191
2320
+ msgid "User Activity"
2321
  msgstr ""
2322
 
2323
+ #: defaults.php:195
2324
+ msgid "User logged in"
2325
  msgstr ""
2326
 
2327
+ #: defaults.php:196
2328
+ msgid "User logged in."
2329
  msgstr ""
2330
 
2331
+ #: defaults.php:205
2332
+ msgid "User logged out"
2333
  msgstr ""
2334
 
2335
+ #: defaults.php:206
2336
+ msgid "User logged out."
2337
  msgstr ""
2338
 
2339
+ #: defaults.php:215
2340
+ msgid "Login failed"
2341
  msgstr ""
2342
 
2343
+ #: defaults.php:216 defaults.php:226
2344
+ msgid "%Attempts% failed login(s)."
2345
  msgstr ""
2346
 
2347
+ #: defaults.php:225
2348
+ msgid "Login failed / non existing user"
2349
  msgstr ""
2350
 
2351
+ #: defaults.php:235
2352
+ msgid "Login blocked"
 
2353
  msgstr ""
2354
 
2355
+ #: defaults.php:236
2356
+ msgid "Login blocked because other session(s) already exist for this user."
2357
  msgstr ""
2358
 
2359
+ #: defaults.php:238
2360
+ msgid "IP address"
 
2361
  msgstr ""
2362
 
2363
+ #: defaults.php:247
2364
+ msgid "User logged in with existing session(s)"
2365
  msgstr ""
2366
 
2367
+ #: defaults.php:248
2368
+ msgid "User logged in however there are other session(s) already for this user."
2369
  msgstr ""
2370
 
2371
+ #: defaults.php:250
2372
+ msgid "IP address(es)"
2373
  msgstr ""
2374
 
2375
+ #: defaults.php:259
2376
+ msgid "User logged out all other sessions with the same username"
2377
  msgstr ""
2378
 
2379
+ #: defaults.php:260
2380
+ msgid "Logged out all other sessions with the same user."
2381
  msgstr ""
2382
 
2383
+ #: defaults.php:269
2384
+ msgid "User session destroyed and logged out"
2385
  msgstr ""
2386
 
2387
+ #: defaults.php:270
2388
+ msgid "Terminated the session of the user %TargetUserName%."
2389
  msgstr ""
2390
 
2391
+ #: defaults.php:272 defaults.php:285 defaults.php:297 defaults.php:1718
2392
+ #: defaults.php:1746 defaults.php:1760 defaults.php:1774 defaults.php:1789
2393
+ #: defaults.php:1804 defaults.php:1818 defaults.php:1832 defaults.php:1848
2394
+ #: defaults.php:1863 defaults.php:1877 defaults.php:1891 defaults.php:1906
2395
+ #: defaults.php:1922 defaults.php:1936 defaults.php:1951 defaults.php:1965
2396
+ #: defaults.php:1979 defaults.php:1996 defaults.php:2010 defaults.php:2024
2397
+ #: defaults.php:2397
2398
+ msgid "Role"
2399
  msgstr ""
2400
 
2401
+ #: defaults.php:273 defaults.php:298
2402
+ msgid "Session ID"
2403
  msgstr ""
2404
 
2405
+ #: defaults.php:282
2406
+ msgid "Switched to another user"
2407
  msgstr ""
2408
 
2409
+ #: defaults.php:283
2410
+ msgid "Switched the session to being logged in as %TargetUserName%."
2411
  msgstr ""
2412
 
2413
+ #: defaults.php:294
2414
+ msgid "The plugin terminated an idle session for a user"
2415
  msgstr ""
2416
 
2417
+ #: defaults.php:295
2418
+ msgid "The plugin terminated an idle session for the user %username%."
2419
  msgstr ""
2420
 
2421
+ #: defaults.php:307
2422
+ msgid "User uploaded file to the Uploads directory"
2423
  msgstr ""
2424
 
2425
+ #: defaults.php:308
2426
+ msgid "Uploaded a file called %FileName%."
2427
  msgstr ""
2428
 
2429
+ #: defaults.php:310 defaults.php:322
2430
+ msgid "Directory"
2431
  msgstr ""
2432
 
2433
+ #: defaults.php:319
2434
+ msgid "User deleted file from Uploads directory"
2435
  msgstr ""
2436
 
2437
+ #: defaults.php:320
2438
+ msgid "Deleted the file %FileName%."
2439
  msgstr ""
2440
 
2441
+ #: defaults.php:331
2442
+ msgid "User requested a password reset"
2443
  msgstr ""
2444
 
2445
+ #: defaults.php:332
2446
+ msgid "User requested a password reset. This does not mean that the password was changed."
2447
  msgstr ""
2448
 
2449
+ #: defaults.php:341
2450
+ msgid "Content & Comments"
2451
  msgstr ""
2452
 
2453
+ #: defaults.php:346
2454
+ msgid "User created a new post and saved it as draft"
2455
  msgstr ""
2456
 
2457
+ #: defaults.php:347
2458
+ msgid "Created the post %PostTitle%."
2459
  msgstr ""
2460
 
2461
+ #: defaults.php:349 defaults.php:363 defaults.php:377 defaults.php:391
2462
+ #: defaults.php:405 defaults.php:419 defaults.php:433 defaults.php:449
2463
+ #: defaults.php:464 defaults.php:478 defaults.php:493 defaults.php:508
2464
+ #: defaults.php:523 defaults.php:538 defaults.php:552 defaults.php:566
2465
+ #: defaults.php:580 defaults.php:594 defaults.php:608 defaults.php:622
2466
+ #: defaults.php:636 defaults.php:650 defaults.php:664 defaults.php:678
2467
+ #: defaults.php:694 defaults.php:808 defaults.php:887 defaults.php:902
2468
+ #: defaults.php:918 defaults.php:933 defaults.php:950 defaults.php:965
2469
+ #: defaults.php:986 defaults.php:1001 defaults.php:1016 defaults.php:1031
2470
+ #: defaults.php:1046 defaults.php:1061 defaults.php:1076 defaults.php:1091
2471
+ #: defaults.php:1106 defaults.php:1121 defaults.php:1140 defaults.php:2135
2472
+ #: defaults.php:2150
2473
+ msgid "Post ID"
2474
  msgstr ""
2475
 
2476
+ #: defaults.php:350 defaults.php:364 defaults.php:378 defaults.php:392
2477
+ #: defaults.php:406 defaults.php:420 defaults.php:434 defaults.php:450
2478
+ #: defaults.php:465 defaults.php:479 defaults.php:494 defaults.php:509
2479
+ #: defaults.php:524 defaults.php:539 defaults.php:553 defaults.php:567
2480
+ #: defaults.php:581 defaults.php:595 defaults.php:609 defaults.php:623
2481
+ #: defaults.php:637 defaults.php:651 defaults.php:665 defaults.php:679
2482
+ #: defaults.php:695 defaults.php:809 defaults.php:888 defaults.php:903
2483
+ #: defaults.php:919 defaults.php:934 defaults.php:951 defaults.php:966
2484
+ #: defaults.php:987 defaults.php:1002 defaults.php:1017 defaults.php:1032
2485
+ #: defaults.php:1047 defaults.php:1062 defaults.php:1077 defaults.php:1092
2486
+ #: defaults.php:1107 defaults.php:1122 defaults.php:1141 defaults.php:2136
2487
+ #: defaults.php:2151
2488
+ msgid "Post type"
2489
  msgstr ""
2490
 
2491
+ #: defaults.php:351 defaults.php:365 defaults.php:379 defaults.php:393
2492
+ #: defaults.php:407 defaults.php:421 defaults.php:435 defaults.php:451
2493
+ #: defaults.php:480 defaults.php:495 defaults.php:510 defaults.php:525
2494
+ #: defaults.php:540 defaults.php:554 defaults.php:568 defaults.php:582
2495
+ #: defaults.php:596 defaults.php:610 defaults.php:624 defaults.php:638
2496
+ #: defaults.php:652 defaults.php:666 defaults.php:680 defaults.php:696
2497
+ #: defaults.php:810 defaults.php:889 defaults.php:904 defaults.php:920
2498
+ #: defaults.php:935 defaults.php:952 defaults.php:967 defaults.php:988
2499
+ #: defaults.php:1003 defaults.php:1018 defaults.php:1033 defaults.php:1048
2500
+ #: defaults.php:1063 defaults.php:1078 defaults.php:1093 defaults.php:1108
2501
+ #: defaults.php:1123 defaults.php:1142 defaults.php:2137 defaults.php:2152
2502
+ msgid "Post status"
2503
  msgstr ""
2504
 
2505
+ #: defaults.php:360
2506
+ msgid "User published a post"
2507
  msgstr ""
2508
 
2509
+ #: defaults.php:361
2510
+ msgid "Published the post %PostTitle%."
2511
  msgstr ""
2512
 
2513
+ #: defaults.php:374
2514
+ msgid "User modified a post"
2515
  msgstr ""
2516
 
2517
+ #: defaults.php:375
2518
+ msgid "Modified the post %PostTitle%."
2519
  msgstr ""
2520
 
2521
+ #: defaults.php:388
2522
+ msgid "User permanently deleted a post from the trash"
2523
  msgstr ""
2524
 
2525
+ #: defaults.php:389
2526
+ msgid "Permanently deleted the post %PostTitle%."
2527
  msgstr ""
2528
 
2529
+ #: defaults.php:402
2530
+ msgid "User moved a post to the trash"
2531
  msgstr ""
2532
 
2533
+ #: defaults.php:403
2534
+ msgid "Moved the post %PostTitle% to trash."
2535
  msgstr ""
2536
 
2537
+ #: defaults.php:416
2538
+ msgid "User restored a post from trash"
2539
  msgstr ""
2540
 
2541
+ #: defaults.php:417
2542
+ msgid "Restored the post %PostTitle% from trash."
2543
  msgstr ""
2544
 
2545
+ #: defaults.php:430
2546
+ msgid "User changed post URL"
2547
  msgstr ""
2548
 
2549
+ #: defaults.php:431
2550
+ msgid "Changed the URL of the post %PostTitle%."
2551
  msgstr ""
2552
 
2553
+ #: defaults.php:436 defaults.php:2943 defaults.php:2955
2554
+ msgid "Previous URL"
2555
  msgstr ""
2556
 
2557
+ #: defaults.php:437
2558
+ msgid "New URL"
2559
  msgstr ""
2560
 
2561
+ #: defaults.php:446
2562
+ msgid "User changed post author"
2563
  msgstr ""
2564
 
2565
+ #: defaults.php:447
2566
+ msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
2567
  msgstr ""
2568
 
2569
+ #: defaults.php:452
2570
+ msgid "Previous author"
2571
  msgstr ""
2572
 
2573
+ #: defaults.php:461
2574
+ msgid "User changed post status"
2575
  msgstr ""
2576
 
2577
+ #: defaults.php:462
2578
+ msgid "Changed the status of the post %PostTitle% to %NewStatus%."
2579
  msgstr ""
2580
 
2581
+ #: defaults.php:466
2582
+ msgid "Previous status"
2583
  msgstr ""
2584
 
2585
+ #: defaults.php:475
2586
+ msgid "User changed the visibility of a post"
2587
  msgstr ""
2588
 
2589
+ #: defaults.php:476
2590
+ msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
2591
  msgstr ""
2592
 
2593
+ #: defaults.php:481
2594
+ msgid "Previous visibility status"
2595
  msgstr ""
2596
 
2597
+ #: defaults.php:490
2598
+ msgid "User changed the date of a post"
2599
  msgstr ""
2600
 
2601
+ #: defaults.php:491
2602
+ msgid "Changed the date of the post %PostTitle% to %NewDate%."
 
2603
  msgstr ""
2604
 
2605
+ #: defaults.php:496
2606
+ msgid "Previous date"
2607
  msgstr ""
2608
 
2609
+ #: defaults.php:505
2610
+ msgid "User changed the parent of a page"
2611
  msgstr ""
2612
 
2613
+ #: defaults.php:506
2614
+ msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
2615
  msgstr ""
2616
 
2617
+ #: defaults.php:511 defaults.php:848
2618
+ msgid "Previous parent"
2619
  msgstr ""
2620
 
2621
+ #: defaults.php:520
2622
+ msgid "User changed the template of a page"
2623
  msgstr ""
2624
 
2625
+ #: defaults.php:521
2626
+ msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
2627
  msgstr ""
2628
 
2629
+ #: defaults.php:526
2630
+ msgid "Previous template"
2631
  msgstr ""
2632
 
2633
+ #: defaults.php:535
2634
+ msgid "User set a post as sticky"
2635
  msgstr ""
2636
 
2637
+ #: defaults.php:536
2638
+ msgid "Set the post %PostTitle% as sticky."
2639
  msgstr ""
2640
 
2641
+ #: defaults.php:549
2642
+ msgid "User removed post from sticky"
2643
  msgstr ""
2644
 
2645
+ #: defaults.php:550
2646
+ msgid "Removed the post %PostTitle% from sticky."
2647
  msgstr ""
2648
 
2649
+ #: defaults.php:563
2650
+ msgid "User modified the content of a post"
2651
  msgstr ""
2652
 
2653
+ #: defaults.php:564
2654
+ msgid "Modified the content of the post %PostTitle%."
2655
  msgstr ""
2656
 
2657
+ #: defaults.php:577
2658
+ msgid "User submitted a post for review"
2659
  msgstr ""
2660
 
2661
+ #: defaults.php:578
2662
+ msgid "Submitted the post %PostTitle% for review."
2663
  msgstr ""
2664
 
2665
+ #: defaults.php:591
2666
+ msgid "User scheduled a post"
2667
  msgstr ""
2668
 
2669
+ #: defaults.php:592
2670
+ msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
2671
  msgstr ""
2672
 
2673
+ #: defaults.php:605
2674
+ msgid "User changed title of a post"
2675
  msgstr ""
2676
 
2677
+ #: defaults.php:606
2678
+ msgid "Changed the title of the post %OldTitle% to %NewTitle%."
2679
  msgstr ""
2680
 
2681
+ #: defaults.php:619
2682
+ msgid "User opened a post in the editor"
2683
  msgstr ""
2684
 
2685
+ #: defaults.php:620
2686
+ msgid "Opened the post %PostTitle% in the editor."
2687
  msgstr ""
2688
 
2689
+ #: defaults.php:633
2690
+ msgid "User viewed a post"
2691
  msgstr ""
2692
 
2693
+ #: defaults.php:634
2694
+ msgid "Viewed the post %PostTitle%."
2695
  msgstr ""
2696
 
2697
+ #: defaults.php:647
2698
+ msgid "User enabled/disabled comments in a post"
2699
  msgstr ""
2700
 
2701
+ #: defaults.php:648
2702
+ msgid "Comments in the post %PostTitle%."
2703
  msgstr ""
2704
 
2705
+ #: defaults.php:661
2706
+ msgid "User enabled/disabled trackbacks and pingbacks in a post"
2707
  msgstr ""
2708
 
2709
+ #: defaults.php:662
2710
+ msgid "Pingbacks and Trackbacks in the post %PostTitle%."
2711
  msgstr ""
2712
 
2713
+ #: defaults.php:675
2714
+ msgid "User updated the excerpt in a post"
2715
  msgstr ""
2716
 
2717
+ #: defaults.php:676
2718
+ msgid "The excerpt of the post %PostTitle%."
2719
  msgstr ""
2720
 
2721
+ #: defaults.php:681
2722
+ msgid "Previous excerpt entry"
 
2723
  msgstr ""
2724
 
2725
+ #: defaults.php:682
2726
+ msgid "New excerpt entry"
2727
  msgstr ""
2728
 
2729
+ #: defaults.php:691
2730
+ msgid "User updated the featured image in a post"
2731
  msgstr ""
2732
 
2733
+ #: defaults.php:692
2734
+ msgid "The featured image of the post %PostTitle%."
2735
  msgstr ""
2736
 
2737
+ #: defaults.php:697
2738
+ msgid "Previous image"
2739
  msgstr ""
2740
 
2741
+ #: defaults.php:698
2742
+ msgid "New image"
2743
  msgstr ""
2744
 
2745
+ #: defaults.php:706
2746
+ msgid "Tags"
2747
  msgstr ""
2748
 
2749
+ #: defaults.php:710
2750
+ msgid "User added post tag"
2751
  msgstr ""
2752
 
2753
+ #: defaults.php:711
2754
+ msgid "Added tag(s) to the post %PostTitle%."
2755
  msgstr ""
2756
 
2757
+ #: defaults.php:714 defaults.php:729
2758
+ msgid "Type"
2759
  msgstr ""
2760
 
2761
+ #: defaults.php:715 defaults.php:730
2762
+ msgid "Status"
 
2763
  msgstr ""
2764
 
2765
+ #: defaults.php:716
2766
+ msgid "Added tag(s)"
2767
  msgstr ""
2768
 
2769
+ #: defaults.php:725
2770
+ msgid "User removed post tag"
2771
  msgstr ""
2772
 
2773
+ #: defaults.php:726
2774
+ msgid "Removed tag(s) from the post %PostTitle%."
2775
  msgstr ""
2776
 
2777
+ #: defaults.php:731
2778
+ msgid "Removed tag(s)"
2779
  msgstr ""
2780
 
2781
+ #: defaults.php:740
2782
+ msgid "User created new tag"
2783
  msgstr ""
2784
 
2785
+ #: defaults.php:741
2786
+ msgid "Created the tag %TagName%."
2787
  msgstr ""
2788
 
2789
+ #: defaults.php:743 defaults.php:755 defaults.php:767 defaults.php:791
2790
+ #: defaults.php:823 defaults.php:835 defaults.php:847 defaults.php:860
2791
+ msgid "Slug"
2792
  msgstr ""
2793
 
2794
+ #: defaults.php:752
2795
+ msgid "User deleted tag"
2796
  msgstr ""
2797
 
2798
+ #: defaults.php:753
2799
+ msgid "Deleted the tag %TagName%."
2800
  msgstr ""
2801
 
2802
+ #: defaults.php:764
2803
+ msgid "Renamed the tag %old_name% to %new_name%."
2804
  msgstr ""
2805
 
2806
+ #: defaults.php:776
2807
+ msgid "User changed tag slug"
2808
  msgstr ""
2809
 
2810
+ #: defaults.php:777
2811
+ msgid "Changed the slug of the tag %tag% to %new_slug%."
2812
  msgstr ""
2813
 
2814
+ #: defaults.php:779 defaults.php:872
2815
+ msgid "Previous slug"
 
2816
  msgstr ""
2817
 
2818
+ #: defaults.php:788
2819
+ msgid "User changed tag description"
2820
  msgstr ""
2821
 
2822
+ #: defaults.php:789
2823
+ msgid "Changed the description of the tag %tag%."
2824
  msgstr ""
2825
 
2826
+ #: defaults.php:792
2827
+ msgid "Previous description"
 
 
2828
  msgstr ""
2829
 
2830
+ #: defaults.php:793
2831
+ msgid "New description"
2832
  msgstr ""
2833
 
2834
+ #: defaults.php:801
2835
+ msgid "Categories"
2836
  msgstr ""
2837
 
2838
+ #: defaults.php:805
2839
+ msgid "User changed post category"
2840
  msgstr ""
2841
 
2842
+ #: defaults.php:806
2843
+ msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
2844
  msgstr ""
2845
 
2846
+ #: defaults.php:811
2847
+ msgid "Previous category(ies)"
2848
  msgstr ""
2849
 
2850
+ #: defaults.php:820
2851
+ msgid "User created new category"
2852
  msgstr ""
2853
 
2854
+ #: defaults.php:821
2855
+ msgid "Created the category %CategoryName%."
2856
  msgstr ""
2857
 
2858
+ #: defaults.php:832
2859
+ msgid "User deleted category"
2860
  msgstr ""
2861
 
2862
+ #: defaults.php:833
2863
+ msgid "Deleted the category %CategoryName%."
2864
  msgstr ""
2865
 
2866
+ #: defaults.php:844
2867
+ msgid "Changed the parent of a category"
2868
  msgstr ""
2869
 
2870
+ #: defaults.php:845
2871
+ msgid "Changed the parent of the category %CategoryName% to %NewParent%."
2872
  msgstr ""
2873
 
2874
+ #: defaults.php:857
2875
+ msgid "User changed category name"
 
2876
  msgstr ""
2877
 
2878
+ #: defaults.php:858
2879
+ msgid "Renamed the category %old_name% to %new_name%."
2880
  msgstr ""
2881
 
2882
+ #: defaults.php:869
2883
+ msgid "User changed category slug"
2884
  msgstr ""
2885
 
2886
+ #: defaults.php:870
2887
+ msgid "Changed the slug of the category %CategoryName% to %new_slug%."
2888
  msgstr ""
2889
 
2890
+ #: defaults.php:880
2891
+ msgid "Custom Fields"
2892
  msgstr ""
2893
 
2894
+ #: defaults.php:884
2895
+ msgid "User created a custom field for a post"
2896
  msgstr ""
2897
 
2898
+ #: defaults.php:885
2899
+ msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
2900
  msgstr ""
2901
 
2902
+ #: defaults.php:890 defaults.php:1851
2903
+ msgid "Custom field value"
2904
  msgstr ""
2905
 
2906
+ #: defaults.php:899
2907
+ msgid "User updated a custom field value for a post"
2908
  msgstr ""
2909
 
2910
+ #: defaults.php:900
2911
+ msgid "Modified the value of the custom field %MetaKey% in the post %PostTitle%."
2912
  msgstr ""
2913
 
2914
+ #: defaults.php:905
2915
+ msgid "Previous custom field value"
2916
  msgstr ""
2917
 
2918
+ #: defaults.php:906
2919
+ msgid "New custom field value"
2920
  msgstr ""
2921
 
2922
+ #: defaults.php:915
2923
+ msgid "User deleted a custom field from a post"
2924
  msgstr ""
2925
 
2926
+ #: defaults.php:916
2927
+ msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
2928
  msgstr ""
2929
 
2930
+ #: defaults.php:929
2931
+ msgid "User updated a custom field name for a post"
2932
  msgstr ""
2933
 
2934
+ #: defaults.php:930
2935
+ msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
2936
  msgstr ""
2937
 
2938
+ #: defaults.php:943
2939
+ msgid "Custom Fields (ACF)"
2940
  msgstr ""
2941
 
2942
+ #: defaults.php:947
2943
+ msgid "User added relationship to a custom field value for a post"
2944
  msgstr ""
2945
 
2946
+ #: defaults.php:948
2947
+ msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
2948
  msgstr ""
2949
 
2950
+ #: defaults.php:953
2951
+ msgid "New relationships"
2952
  msgstr ""
2953
 
2954
+ #: defaults.php:962
2955
+ msgid "User removed relationship from a custom field value for a post"
2956
  msgstr ""
2957
 
2958
+ #: defaults.php:963
2959
+ msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
2960
  msgstr ""
2961
 
2962
+ #: defaults.php:968
2963
+ msgid "Removed relationships"
2964
  msgstr ""
2965
 
2966
+ #: defaults.php:979
2967
+ msgid "Comments"
2968
  msgstr ""
2969
 
2970
+ #: defaults.php:983
2971
+ msgid "User approved a comment"
2972
  msgstr ""
2973
 
2974
+ #: defaults.php:984
2975
+ msgid "Approved the comment posted by %Author% on the post %PostTitle%."
2976
  msgstr ""
2977
 
2978
+ #: defaults.php:989 defaults.php:1004 defaults.php:1019 defaults.php:1034
2979
+ #: defaults.php:1049 defaults.php:1064 defaults.php:1079 defaults.php:1094
2980
+ #: defaults.php:1109 defaults.php:1124 defaults.php:1143
2981
+ msgid "Comment ID"
2982
  msgstr ""
2983
 
2984
+ #: defaults.php:998
2985
+ msgid "User unapproved a comment"
2986
  msgstr ""
2987
 
2988
+ #: defaults.php:999
2989
+ msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
2990
  msgstr ""
2991
 
2992
+ #: defaults.php:1013
2993
+ msgid "User replied to a comment"
2994
  msgstr ""
2995
 
2996
+ #: defaults.php:1014
2997
+ msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
2998
  msgstr ""
2999
 
3000
+ #: defaults.php:1028
3001
+ msgid "User edited a comment"
3002
  msgstr ""
3003
 
3004
+ #: defaults.php:1029
3005
+ msgid "Edited the comment posted by %Author% on the post %PostTitle%."
3006
  msgstr ""
3007
 
3008
+ #: defaults.php:1043
3009
+ msgid "User marked a comment as Spam"
3010
  msgstr ""
3011
 
3012
+ #: defaults.php:1044
3013
+ msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
3014
  msgstr ""
3015
 
3016
+ #: defaults.php:1058
3017
+ msgid "User marked a comment as Not Spam"
3018
  msgstr ""
3019
 
3020
+ #: defaults.php:1059
3021
+ msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
3022
  msgstr ""
3023
 
3024
+ #: defaults.php:1073
3025
+ msgid "User moved a comment to trash"
3026
  msgstr ""
3027
 
3028
+ #: defaults.php:1074
3029
+ msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
3030
  msgstr ""
3031
 
3032
+ #: defaults.php:1088
3033
+ msgid "User restored a comment from the trash"
3034
  msgstr ""
3035
 
3036
+ #: defaults.php:1089
3037
+ msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
3038
  msgstr ""
3039
 
3040
+ #: defaults.php:1103
3041
+ msgid "User permanently deleted a comment"
3042
  msgstr ""
3043
 
3044
+ #: defaults.php:1104
3045
+ msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
3046
  msgstr ""
3047
 
3048
+ #: defaults.php:1118
3049
+ msgid "User posted a comment"
3050
  msgstr ""
3051
 
3052
+ #: defaults.php:1119 defaults.php:1138
3053
+ msgid "Posted a comment on the post %PostTitle%."
3054
  msgstr ""
3055
 
3056
+ #: defaults.php:1137
3057
+ msgid "Visitor posted a comment"
3058
  msgstr ""
3059
 
3060
+ #: defaults.php:1154
3061
+ msgid "Widgets"
3062
  msgstr ""
3063
 
3064
+ #: defaults.php:1158
3065
+ msgid "User added a new widget"
3066
  msgstr ""
3067
 
3068
+ #: defaults.php:1159
3069
+ msgid "Added a new %WidgetName% widget in %Sidebar%."
3070
  msgstr ""
3071
 
3072
+ #: defaults.php:1168
3073
+ msgid "User modified a widget"
3074
  msgstr ""
3075
 
3076
+ #: defaults.php:1169
3077
+ msgid "Modified the %WidgetName% widget in %Sidebar%."
3078
  msgstr ""
3079
 
3080
+ #: defaults.php:1178
3081
+ msgid "User deleted widget"
3082
  msgstr ""
3083
 
3084
+ #: defaults.php:1179
3085
+ msgid "Deleted the %WidgetName% widget from %Sidebar%."
3086
  msgstr ""
3087
 
3088
+ #: defaults.php:1188
3089
+ msgid "User moved widget"
3090
  msgstr ""
3091
 
3092
+ #: defaults.php:1189
3093
+ msgid "Moved the %WidgetName% widget."
3094
  msgstr ""
3095
 
3096
+ #: defaults.php:1191
3097
+ msgid "From"
3098
  msgstr ""
3099
 
3100
+ #: defaults.php:1192
3101
+ msgid "To"
3102
  msgstr ""
3103
 
3104
+ #: defaults.php:1201
3105
+ msgid "User changed widget position"
3106
  msgstr ""
3107
 
3108
+ #: defaults.php:1202
3109
+ msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
3110
  msgstr ""
3111
 
3112
+ #: defaults.php:1213
3113
+ msgid "Menus"
3114
  msgstr ""
3115
 
3116
+ #: defaults.php:1217
3117
+ msgid "User created new menu"
3118
  msgstr ""
3119
 
3120
+ #: defaults.php:1218
3121
+ msgid "New menu called %MenuName%."
3122
  msgstr ""
3123
 
3124
+ #: defaults.php:1227
3125
+ msgid "User added content to a menu"
3126
  msgstr ""
3127
 
3128
+ #: defaults.php:1228
3129
+ msgid "Added the item %ContentName% to the menu %MenuName%."
 
 
3130
  msgstr ""
3131
 
3132
+ #: defaults.php:1230 defaults.php:1242 defaults.php:1274
3133
+ msgid "Item type"
3134
  msgstr ""
3135
 
3136
+ #: defaults.php:1239
3137
+ msgid "User removed content from a menu"
3138
  msgstr ""
3139
 
3140
+ #: defaults.php:1240
3141
+ msgid "Removed the item %ContentName% from the menu %MenuName%."
3142
  msgstr ""
3143
 
3144
+ #: defaults.php:1251
3145
+ msgid "User deleted menu"
3146
  msgstr ""
3147
 
3148
+ #: defaults.php:1252
3149
+ msgid "Deleted the menu %MenuName%."
3150
  msgstr ""
3151
 
3152
+ #: defaults.php:1261
3153
+ msgid "User changed menu setting"
3154
  msgstr ""
3155
 
3156
+ #: defaults.php:1262
3157
+ msgid "The setting %MenuSetting% in the menu %MenuName%."
3158
  msgstr ""
3159
 
3160
+ #: defaults.php:1271
3161
+ msgid "User modified content in a menu"
3162
  msgstr ""
3163
 
3164
+ #: defaults.php:1272
3165
+ msgid "Modified the item %ContentName% in the menu %MenuName%."
3166
  msgstr ""
3167
 
3168
+ #: defaults.php:1283
3169
+ msgid "User changed name of a menu"
3170
  msgstr ""
3171
 
3172
+ #: defaults.php:1284
3173
+ msgid "Renamed the menu %OldMenuName% to %MenuName%."
3174
  msgstr ""
3175
 
3176
+ #: defaults.php:1293
3177
+ msgid "User changed order of the objects in a menu"
3178
  msgstr ""
3179
 
3180
+ #: defaults.php:1294
3181
+ msgid "Changed the order of the items in the menu %MenuName%."
3182
  msgstr ""
3183
 
3184
+ #: defaults.php:1303
3185
+ msgid "User moved objects as a sub-item"
3186
  msgstr ""
3187
 
3188
+ #: defaults.php:1304
3189
+ msgid "Moved items as sub-items in the menu %MenuName%."
3190
  msgstr ""
3191
 
3192
+ #: defaults.php:1306
3193
+ msgid "Moved item"
3194
  msgstr ""
3195
 
3196
+ #: defaults.php:1307
3197
+ msgid "as a sub-item of"
3198
  msgstr ""
3199
 
3200
+ #: defaults.php:1327
3201
+ msgid "User modified a draft blog post"
3202
  msgstr ""
3203
 
3204
+ #: defaults.php:1328
3205
+ msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
3206
  msgstr ""
3207
 
3208
+ #: defaults.php:1333
3209
+ msgid "User created a new post with custom post type and saved it as draft"
3210
  msgstr ""
3211
 
3212
+ #: defaults.php:1334
3213
+ msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
3214
  msgstr ""
3215
 
3216
+ #: defaults.php:1339
3217
+ msgid "User published a post with custom post type"
3218
  msgstr ""
3219
 
3220
+ #: defaults.php:1340
3221
+ msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
3222
  msgstr ""
3223
 
3224
+ #: defaults.php:1345
3225
+ msgid "User modified a post with custom post type"
3226
  msgstr ""
3227
 
3228
+ #: defaults.php:1346
3229
+ msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
3230
  msgstr ""
3231
 
3232
+ #: defaults.php:1351
3233
+ msgid "User modified a draft post with custom post type"
3234
  msgstr ""
3235
 
3236
+ #: defaults.php:1352
3237
+ msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
3238
  msgstr ""
3239
 
3240
+ #: defaults.php:1357
3241
+ msgid "User permanently deleted post with custom post type"
3242
  msgstr ""
3243
 
3244
+ #: defaults.php:1358
3245
+ msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
3246
  msgstr ""
3247
 
3248
+ #: defaults.php:1363
3249
+ msgid "User moved post with custom post type to trash"
3250
  msgstr ""
3251
 
3252
+ #: defaults.php:1364
3253
+ msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
3254
  msgstr ""
3255
 
3256
+ #: defaults.php:1369
3257
+ msgid "User restored post with custom post type from trash"
3258
  msgstr ""
3259
 
3260
+ #: defaults.php:1370
3261
+ msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
 
3262
  msgstr ""
3263
 
3264
+ #: defaults.php:1375
3265
+ msgid "User changed the category of a post with custom post type"
3266
  msgstr ""
3267
 
3268
+ #: defaults.php:1376
3269
+ msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
3270
  msgstr ""
3271
 
3272
+ #: defaults.php:1381
3273
+ msgid "User changed the URL of a post with custom post type"
3274
  msgstr ""
3275
 
3276
+ #: defaults.php:1382
3277
+ msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
3278
  msgstr ""
3279
 
3280
+ #: defaults.php:1387
3281
+ msgid "User changed the author or post with custom post type"
3282
  msgstr ""
3283
 
3284
+ #: defaults.php:1388
3285
+ msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
3286
  msgstr ""
3287
 
3288
+ #: defaults.php:1393
3289
+ msgid "User changed the status of post with custom post type"
3290
  msgstr ""
3291
 
3292
+ #: defaults.php:1394
3293
+ msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
3294
  msgstr ""
3295
 
3296
+ #: defaults.php:1399
3297
+ msgid "User changed the visibility of a post with custom post type"
3298
  msgstr ""
3299
 
3300
+ #: defaults.php:1400
3301
+ msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
3302
  msgstr ""
3303
 
3304
+ #: defaults.php:1405
3305
+ msgid "User changed the date of post with custom post type"
3306
  msgstr ""
3307
 
3308
+ #: defaults.php:1406
3309
+ msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
3310
  msgstr ""
3311
 
3312
+ #: defaults.php:1411
3313
+ msgid "User created a custom field for a custom post type"
3314
  msgstr ""
3315
 
3316
+ #: defaults.php:1412
3317
+ msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
3318
  msgstr ""
3319
 
3320
+ #: defaults.php:1417
3321
+ msgid "User updated a custom field for a custom post type"
3322
  msgstr ""
3323
 
3324
+ #: defaults.php:1418
3325
+ msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3326
  msgstr ""
3327
 
3328
+ #: defaults.php:1423
3329
+ msgid "User deleted a custom field from a custom post type"
3330
  msgstr ""
3331
 
3332
+ #: defaults.php:1424
3333
+ msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3334
  msgstr ""
3335
 
3336
+ #: defaults.php:1429
3337
+ msgid "User updated a custom field name for a custom post type"
3338
  msgstr ""
3339
 
3340
+ #: defaults.php:1430
3341
+ msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
3342
  msgstr ""
3343
 
3344
+ #: defaults.php:1435
3345
+ msgid "User modified content for a published custom post type"
3346
  msgstr ""
3347
 
3348
+ #: defaults.php:1436
3349
+ msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
3350
  msgstr ""
3351
 
3352
+ #: defaults.php:1441
3353
+ msgid "User modified content for a draft post"
3354
  msgstr ""
3355
 
3356
+ #: defaults.php:1442
3357
+ msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
3358
  msgstr ""
3359
 
3360
+ #: defaults.php:1447
3361
+ msgid "User modified content for a draft custom post type"
3362
  msgstr ""
3363
 
3364
+ #: defaults.php:1448
3365
+ msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
3366
  msgstr ""
3367
 
3368
+ #: defaults.php:1453
3369
+ msgid "User modified content of a post"
3370
  msgstr ""
3371
 
3372
+ #: defaults.php:1454
3373
+ msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
3374
  msgstr ""
3375
 
3376
+ #: defaults.php:1459
3377
+ msgid "User scheduled a custom post type"
3378
  msgstr ""
3379
 
3380
+ #: defaults.php:1460
3381
+ msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
3382
  msgstr ""
3383
 
3384
+ #: defaults.php:1465
3385
+ msgid "User changed title of a custom post type"
3386
  msgstr ""
3387
 
3388
+ #: defaults.php:1466
3389
+ msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
 
3390
  msgstr ""
3391
 
3392
+ #: defaults.php:1471
3393
+ msgid "User opened a custom post type in the editor"
3394
  msgstr ""
3395
 
3396
+ #: defaults.php:1472
3397
+ msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
3398
  msgstr ""
3399
 
3400
+ #: defaults.php:1477
3401
+ msgid "User viewed a custom post type"
3402
  msgstr ""
3403
 
3404
+ #: defaults.php:1478
3405
+ msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
3406
  msgstr ""
3407
 
3408
+ #: defaults.php:1483
3409
+ msgid "A plugin created a custom post"
3410
  msgstr ""
3411
 
3412
+ #: defaults.php:1484
3413
+ msgid "A plugin automatically created the following custom post: %PostTitle%."
3414
  msgstr ""
3415
 
3416
+ #: defaults.php:1489
3417
+ msgid "A plugin deleted a custom post"
3418
  msgstr ""
3419
 
3420
+ #: defaults.php:1490
3421
+ msgid "A plugin automatically deleted the following custom post: %PostTitle%."
3422
  msgstr ""
3423
 
3424
+ #: defaults.php:1495
3425
+ msgid "A plugin modified a custom post"
3426
  msgstr ""
3427
 
3428
+ #: defaults.php:1496
3429
+ msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
3430
  msgstr ""
3431
 
3432
+ #: defaults.php:1512
3433
+ msgid "User created a new WordPress page and saved it as draft"
3434
  msgstr ""
3435
 
3436
+ #: defaults.php:1513
3437
+ msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
3438
  msgstr ""
3439
 
3440
+ #: defaults.php:1518
3441
+ msgid "User published a WordPress page"
3442
  msgstr ""
3443
 
3444
+ #: defaults.php:1519
3445
+ msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
3446
  msgstr ""
3447
 
3448
+ #: defaults.php:1524
3449
+ msgid "User modified a published WordPress page"
3450
  msgstr ""
3451
 
3452
+ #: defaults.php:1525
3453
+ msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
3454
  msgstr ""
3455
 
3456
+ #: defaults.php:1530
3457
+ msgid "User modified a draft WordPress page"
3458
  msgstr ""
3459
 
3460
+ #: defaults.php:1531
3461
+ msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
3462
  msgstr ""
3463
 
3464
+ #: defaults.php:1536
3465
+ msgid "User permanently deleted a page from the trash"
3466
  msgstr ""
3467
 
3468
+ #: defaults.php:1537
3469
+ msgid "Permanently deleted the page %PostTitle%."
3470
  msgstr ""
3471
 
3472
+ #: defaults.php:1542
3473
+ msgid "User moved WordPress page to the trash"
3474
  msgstr ""
3475
 
3476
+ #: defaults.php:1543
3477
+ msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
3478
  msgstr ""
3479
 
3480
+ #: defaults.php:1548
3481
+ msgid "User restored a WordPress page from trash"
3482
  msgstr ""
3483
 
3484
+ #: defaults.php:1549
3485
+ msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
3486
  msgstr ""
3487
 
3488
+ #: defaults.php:1554
3489
+ msgid "User changed page URL"
3490
  msgstr ""
3491
 
3492
+ #: defaults.php:1555
3493
+ msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
3494
  msgstr ""
3495
 
3496
+ #: defaults.php:1560
3497
+ msgid "User changed page author"
3498
  msgstr ""
3499
 
3500
+ #: defaults.php:1561
3501
+ msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
3502
  msgstr ""
3503
 
3504
+ #: defaults.php:1566
3505
+ msgid "User changed page status"
3506
  msgstr ""
3507
 
3508
+ #: defaults.php:1567
3509
+ msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
3510
  msgstr ""
3511
 
3512
+ #: defaults.php:1572
3513
+ msgid "User changed the visibility of a page post"
3514
  msgstr ""
3515
 
3516
+ #: defaults.php:1573
3517
+ msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
3518
  msgstr ""
3519
 
3520
+ #: defaults.php:1578
3521
+ msgid "User changed the date of a page post"
3522
  msgstr ""
3523
 
3524
+ #: defaults.php:1579
3525
+ msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
3526
  msgstr ""
3527
 
3528
+ #: defaults.php:1584
3529
+ msgid "User created a custom field for a page"
3530
  msgstr ""
3531
 
3532
+ #: defaults.php:1585
3533
+ msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3534
  msgstr ""
3535
 
3536
+ #: defaults.php:1590
3537
+ msgid "User updated a custom field value for a page"
3538
  msgstr ""
3539
 
3540
+ #: defaults.php:1591
3541
+ msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3542
  msgstr ""
3543
 
3544
+ #: defaults.php:1596
3545
+ msgid "User deleted a custom field from a page"
3546
  msgstr ""
3547
 
3548
+ #: defaults.php:1597
3549
+ msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
3550
  msgstr ""
3551
 
3552
+ #: defaults.php:1602
3553
+ msgid "User updated a custom field name for a page"
3554
  msgstr ""
3555
 
3556
+ #: defaults.php:1603
3557
+ msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
3558
  msgstr ""
3559
 
3560
+ #: defaults.php:1608
3561
+ msgid "User modified content for a published page"
3562
  msgstr ""
3563
 
3564
+ #: defaults.php:1609
3565
+ msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
3566
  msgstr ""
3567
 
3568
+ #: defaults.php:1614
3569
+ msgid "User modified content for a draft page"
3570
  msgstr ""
3571
 
3572
+ #: defaults.php:1615
3573
+ msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
3574
  msgstr ""
3575
 
3576
+ #: defaults.php:1620
3577
+ msgid "User scheduled a page"
3578
  msgstr ""
3579
 
3580
+ #: defaults.php:1621
3581
+ msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
3582
  msgstr ""
3583
 
3584
+ #: defaults.php:1626
3585
+ msgid "User changed title of a page"
3586
  msgstr ""
3587
 
3588
+ #: defaults.php:1627
3589
+ msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
3590
  msgstr ""
3591
 
3592
+ #: defaults.php:1632
3593
+ msgid "User opened a page in the editor"
3594
  msgstr ""
3595
 
3596
+ #: defaults.php:1633
3597
+ msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
3598
  msgstr ""
3599
 
3600
+ #: defaults.php:1638
3601
+ msgid "User viewed a page"
3602
  msgstr ""
3603
 
3604
+ #: defaults.php:1639
3605
+ msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
 
3606
  msgstr ""
3607
 
3608
+ #: defaults.php:1644
3609
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
3610
  msgstr ""
3611
 
3612
+ #: defaults.php:1645
3613
+ msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3614
  msgstr ""
3615
 
3616
+ #: defaults.php:1650
3617
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
3618
  msgstr ""
3619
 
3620
+ #: defaults.php:1651
3621
+ msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
3622
  msgstr ""
3623
 
3624
+ #: defaults.php:1656
3625
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
3626
  msgstr ""
3627
 
3628
+ #: defaults.php:1657
3629
+ msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
3630
  msgstr ""
3631
 
3632
+ #: defaults.php:1662
3633
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
3634
  msgstr ""
3635
 
3636
+ #: defaults.php:1663
3637
+ msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
 
3638
  msgstr ""
3639
 
3640
+ #: defaults.php:1668
3641
+ msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
3642
  msgstr ""
3643
 
3644
+ #: defaults.php:1669
3645
+ msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3646
  msgstr ""
3647
 
3648
+ #: defaults.php:1674
3649
+ msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
3650
  msgstr ""
3651
 
3652
+ #: defaults.php:1675
3653
+ msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
3654
  msgstr ""
3655
 
3656
+ #: defaults.php:1680
3657
+ msgid "A plugin created a page"
3658
  msgstr ""
3659
 
3660
+ #: defaults.php:1681
3661
+ msgid "A plugin automatically created the following page: %PostTitle%."
3662
  msgstr ""
3663
 
3664
+ #: defaults.php:1686
3665
+ msgid "A plugin deleted a page"
3666
  msgstr ""
3667
 
3668
+ #: defaults.php:1687
3669
+ msgid "A plugin automatically deleted the following page: %PostTitle%."
3670
  msgstr ""
3671
 
3672
+ #: defaults.php:1692
3673
+ msgid "A plugin modified a page"
3674
  msgstr ""
3675
 
3676
+ #: defaults.php:1693
3677
+ msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
3678
  msgstr ""
3679
 
3680
+ #: defaults.php:1698
3681
+ msgid "User Accounts"
3682
  msgstr ""
3683
 
3684
+ #: defaults.php:1699
3685
+ msgid "User Profiles"
3686
  msgstr ""
3687
 
3688
+ #: defaults.php:1703
3689
+ msgid "New user was created on WordPress"
3690
  msgstr ""
3691
 
3692
+ #: defaults.php:1704
3693
+ msgid "A new user %NewUserData->Username% is created via registration."
3694
  msgstr ""
3695
 
3696
+ #: defaults.php:1715
3697
+ msgid "User created another WordPress user"
3698
  msgstr ""
3699
 
3700
+ #: defaults.php:1716
3701
+ msgid "Created the new user: %NewUserData->Username%."
3702
  msgstr ""
3703
 
3704
+ #: defaults.php:1719 defaults.php:1733 defaults.php:1747 defaults.php:1761
3705
+ #: defaults.php:1775 defaults.php:1790 defaults.php:1805 defaults.php:1819
3706
+ #: defaults.php:1833 defaults.php:1849 defaults.php:1878 defaults.php:1892
3707
+ #: defaults.php:1907 defaults.php:1923 defaults.php:1937 defaults.php:1952
3708
+ #: defaults.php:1966 defaults.php:1980 defaults.php:1997 defaults.php:2011
3709
+ #: defaults.php:2025 defaults.php:2039 defaults.php:2052 defaults.php:2398
3710
+ msgid "First name"
3711
  msgstr ""
3712
 
3713
+ #: defaults.php:1720 defaults.php:1734 defaults.php:1748 defaults.php:1762
3714
+ #: defaults.php:1776 defaults.php:1791 defaults.php:1806 defaults.php:1820
3715
+ #: defaults.php:1834 defaults.php:1850 defaults.php:1865 defaults.php:1893
3716
+ #: defaults.php:1908 defaults.php:1924 defaults.php:1938 defaults.php:1953
3717
+ #: defaults.php:1967 defaults.php:1981 defaults.php:1998 defaults.php:2012
3718
+ #: defaults.php:2026 defaults.php:2040 defaults.php:2053 defaults.php:2399
3719
+ msgid "Last name"
3720
  msgstr ""
3721
 
3722
+ #: defaults.php:1729
3723
+ msgid "The role of a user was changed by another WordPress user"
3724
  msgstr ""
3725
 
3726
+ #: defaults.php:1730
3727
+ msgid "Changed the role of user %TargetUsername% to %NewRole%."
3728
  msgstr ""
3729
 
3730
+ #: defaults.php:1732 defaults.php:2789
3731
+ msgid "Previous role"
3732
  msgstr ""
3733
 
3734
+ #: defaults.php:1743
3735
+ msgid "User has changed his or her password"
3736
  msgstr ""
3737
 
3738
+ #: defaults.php:1744
3739
+ msgid "Changed the password."
3740
  msgstr ""
3741
 
3742
+ #: defaults.php:1757
3743
+ msgid "User changed another user's password"
3744
  msgstr ""
3745
 
3746
+ #: defaults.php:1758
3747
+ msgid "Changed the password of the user %TargetUserData->Username%."
3748
  msgstr ""
3749
 
3750
+ #: defaults.php:1771
3751
+ msgid "User changed his or her email address"
3752
  msgstr ""
3753
 
3754
+ #: defaults.php:1772
3755
+ msgid "Changed the email address to %NewEmail%."
3756
  msgstr ""
3757
 
3758
+ #: defaults.php:1777 defaults.php:1792
3759
+ msgid "Previous email address"
3760
  msgstr ""
3761
 
3762
+ #: defaults.php:1786
3763
+ msgid "User changed another user's email address"
3764
  msgstr ""
3765
 
3766
+ #: defaults.php:1787
3767
+ msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
3768
  msgstr ""
3769
 
3770
+ #: defaults.php:1801
3771
+ msgid "User was deleted by another user"
3772
  msgstr ""
3773
 
3774
+ #: defaults.php:1802
3775
+ msgid "Deleted the user %TargetUserData->Username%."
3776
  msgstr ""
3777
 
3778
+ #: defaults.php:1815
3779
+ msgid "User opened the profile page of another user"
3780
  msgstr ""
3781
 
3782
+ #: defaults.php:1816
3783
+ msgid "Opened the profile page of user %TargetUsername%."
3784
  msgstr ""
3785
 
3786
+ #: defaults.php:1829
3787
+ msgid "User updated a custom field value for a user"
3788
  msgstr ""
3789
 
3790
+ #: defaults.php:1830
3791
+ msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
3792
  msgstr ""
3793
 
3794
+ #: defaults.php:1835 defaults.php:2879 defaults.php:2911 defaults.php:3322
3795
+ msgid "Previous value"
3796
  msgstr ""
3797
 
3798
+ #: defaults.php:1836 defaults.php:3323
3799
+ msgid "New value"
3800
  msgstr ""
3801
 
3802
+ #: defaults.php:1845
3803
+ msgid "User created a custom field value for a user"
3804
  msgstr ""
3805
 
3806
+ #: defaults.php:1846
3807
+ msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
3808
  msgstr ""
3809
 
3810
+ #: defaults.php:1860
3811
+ msgid "User changed first name for a user"
3812
  msgstr ""
3813
 
3814
+ #: defaults.php:1861
3815
+ msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
3816
  msgstr ""
3817
 
3818
+ #: defaults.php:1864
3819
+ msgid "Previous name"
3820
  msgstr ""
3821
 
3822
+ #: defaults.php:1874
3823
+ msgid "User changed last name for a user"
3824
  msgstr ""
3825
 
3826
+ #: defaults.php:1875
3827
+ msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
3828
  msgstr ""
3829
 
3830
+ #: defaults.php:1879
3831
+ msgid "Previous last name"
3832
  msgstr ""
3833
 
3834
+ #: defaults.php:1888
3835
+ msgid "User changed nickname for a user"
3836
  msgstr ""
3837
 
3838
+ #: defaults.php:1889
3839
+ msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
3840
  msgstr ""
3841
 
3842
+ #: defaults.php:1894
3843
+ msgid "Previous nickname"
3844
  msgstr ""
3845
 
3846
+ #: defaults.php:1903
3847
+ msgid "User changed the display name for a user"
3848
  msgstr ""
3849
 
3850
+ #: defaults.php:1904
3851
+ msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
3852
  msgstr ""
3853
 
3854
+ #: defaults.php:1909
3855
+ msgid "Previous display name"
3856
  msgstr ""
3857
 
3858
+ #: defaults.php:1919 defaults.php:1933
3859
+ msgid "User created an application password"
3860
  msgstr ""
3861
 
3862
+ #: defaults.php:1920
3863
+ msgid "The application password %friendly_name%."
3864
  msgstr ""
3865
 
3866
+ #: defaults.php:1934
3867
+ msgid "The application password %friendly_name% for the user %login%."
3868
  msgstr ""
3869
 
3870
+ #: defaults.php:1948
3871
+ msgid "User revoked all application passwords"
3872
  msgstr ""
3873
 
3874
+ #: defaults.php:1949
3875
+ msgid "All application passwords."
3876
  msgstr ""
3877
 
3878
+ #: defaults.php:1962
3879
+ msgid "User revoked all application passwords for a user"
3880
  msgstr ""
3881
 
3882
+ #: defaults.php:1963
3883
+ msgid "All application passwords from the user %login%."
3884
  msgstr ""
3885
 
3886
+ #: defaults.php:1976
3887
+ msgid "Admin sent a password reset request to a user"
3888
  msgstr ""
3889
 
3890
+ #: defaults.php:1977
3891
+ msgid "Sent a password reset request to the user %login%."
3892
  msgstr ""
3893
 
3894
+ #: defaults.php:1989
3895
+ msgid "Multisite User Profiles"
3896
  msgstr ""
3897
 
3898
+ #: defaults.php:1993
3899
+ msgid "User granted Super Admin privileges"
3900
  msgstr ""
3901
 
3902
+ #: defaults.php:1994
3903
+ msgid "Granted Super Admin privileges to the user %TargetUsername%."
3904
  msgstr ""
3905
 
3906
+ #: defaults.php:2007
3907
+ msgid "User revoked from Super Admin privileges"
3908
  msgstr ""
3909
 
3910
+ #: defaults.php:2008
3911
+ msgid "Revoked Super Admin privileges from %TargetUsername%."
3912
  msgstr ""
3913
 
3914
+ #: defaults.php:2021
3915
+ msgid "Existing user added to a site"
3916
  msgstr ""
3917
 
3918
+ #: defaults.php:2022
3919
+ msgid "Added user %TargetUsername% to the site %SiteName%."
3920
  msgstr ""
3921
 
3922
+ #: defaults.php:2035
3923
+ msgid "User removed from site"
3924
  msgstr ""
3925
 
3926
+ #: defaults.php:2036
3927
+ msgid "Removed user %TargetUsername% from the site %SiteName%"
3928
  msgstr ""
3929
 
3930
+ #: defaults.php:2038
3931
+ msgid "Site role"
3932
  msgstr ""
3933
 
3934
+ #: defaults.php:2049
3935
+ msgid "New network user created"
3936
  msgstr ""
3937
 
3938
+ #: defaults.php:2050
3939
+ msgid "Created the new network user %NewUserData->Username%."
3940
  msgstr ""
3941
 
3942
+ #: defaults.php:2062
3943
+ msgid "Plugins & Themes"
3944
  msgstr ""
3945
 
3946
+ #: defaults.php:2067
3947
+ msgid "User installed a plugin"
3948
  msgstr ""
3949
 
3950
+ #: defaults.php:2068
3951
+ msgid "Installed the plugin %Plugin->Name%."
3952
  msgstr ""
3953
 
3954
+ #: defaults.php:2070 defaults.php:2083 defaults.php:2096 defaults.php:2109
3955
+ #: defaults.php:2205 defaults.php:2218 defaults.php:2231 defaults.php:2270
3956
+ #: defaults.php:2283
3957
+ msgid "Version"
3958
  msgstr ""
3959
 
3960
+ #: defaults.php:2071 defaults.php:2084 defaults.php:2097 defaults.php:2110
3961
+ #: defaults.php:2123 defaults.php:2166 defaults.php:2179 defaults.php:2206
3962
+ #: defaults.php:2219 defaults.php:2232 defaults.php:2245 defaults.php:2271
3963
+ #: defaults.php:2284
3964
+ msgid "Install location"
3965
  msgstr ""
3966
 
3967
+ #: defaults.php:2080
3968
+ msgid "User activated a WordPress plugin"
3969
  msgstr ""
3970
 
3971
+ #: defaults.php:2081
3972
+ msgid "Activated the plugin %PluginData->Name%."
3973
  msgstr ""
3974
 
3975
+ #: defaults.php:2093
3976
+ msgid "User deactivated a WordPress plugin"
3977
  msgstr ""
3978
 
3979
+ #: defaults.php:2094
3980
+ msgid "Deactivated the plugin %PluginData->Name%."
3981
  msgstr ""
3982
 
3983
+ #: defaults.php:2106
3984
+ msgid "User uninstalled a plugin"
3985
  msgstr ""
3986
 
3987
+ #: defaults.php:2107
3988
+ msgid "Uninstalled the plugin %PluginData->Name%."
3989
  msgstr ""
3990
 
3991
+ #: defaults.php:2119
3992
+ msgid "User upgraded a plugin"
3993
  msgstr ""
3994
 
3995
+ #: defaults.php:2120
3996
+ msgid "Updated the plugin %PluginData->Name%."
3997
  msgstr ""
3998
 
3999
+ #: defaults.php:2122
4000
+ msgid "Updated version"
4001
  msgstr ""
4002
 
4003
+ #: defaults.php:2132
4004
+ msgid "A plugin created a post"
4005
  msgstr ""
4006
 
4007
+ #: defaults.php:2133
4008
+ msgid "The plugin created the post %PostTitle%."
4009
  msgstr ""
4010
 
4011
+ #: defaults.php:2147
4012
+ msgid "A plugin deleted a post"
4013
  msgstr ""
4014
 
4015
+ #: defaults.php:2148
4016
+ msgid "A plugin deleted the post %PostTitle%."
4017
  msgstr ""
4018
 
4019
+ #: defaults.php:2163
4020
+ msgid "Changed the Automatic updates setting for a plugin."
4021
  msgstr ""
4022
 
4023
+ #: defaults.php:2164
4024
+ msgid "Changed the Automatic updates setting for the plugin %name%."
4025
  msgstr ""
4026
 
4027
+ #: defaults.php:2176
4028
+ msgid "Changed the Automatic updates setting for a theme."
4029
  msgstr ""
4030
 
4031
+ #: defaults.php:2177
4032
+ msgid "Changed the Automatic updates setting for the theme %name%."
4033
  msgstr ""
4034
 
4035
+ #: defaults.php:2189
4036
+ msgid "User changed a file using the plugin editor"
4037
  msgstr ""
4038
 
4039
+ #: defaults.php:2190
4040
+ msgid "Modified the file %File% with the plugin editor."
4041
  msgstr ""
4042
 
4043
+ #: defaults.php:2198
4044
+ msgid "Themes"
4045
  msgstr ""
4046
 
4047
+ #: defaults.php:2202
4048
+ msgid "User installed a theme"
4049
  msgstr ""
4050
 
4051
+ #: defaults.php:2203
4052
+ msgid "Installed the theme %Theme->Name%."
4053
  msgstr ""
4054
 
4055
+ #: defaults.php:2215
4056
+ msgid "User activated a theme"
4057
  msgstr ""
4058
 
4059
+ #: defaults.php:2216
4060
+ msgid "Activated the theme %Theme->Name%."
4061
  msgstr ""
4062
 
4063
+ #: defaults.php:2228
4064
+ msgid "User uninstalled a theme"
4065
  msgstr ""
4066
 
4067
+ #: defaults.php:2229
4068
+ msgid "Deleted the theme %Theme->Name%."
4069
  msgstr ""
4070
 
4071
+ #: defaults.php:2241
4072
+ msgid "User updated a theme"
4073
  msgstr ""
4074
 
4075
+ #: defaults.php:2242
4076
+ msgid "Updated the theme %Theme->Name%."
4077
  msgstr ""
4078
 
4079
+ #: defaults.php:2244 defaults.php:2338
4080
+ msgid "New version"
4081
  msgstr ""
4082
 
4083
+ #: defaults.php:2254
4084
+ msgid "User changed a file using the theme editor"
4085
  msgstr ""
4086
 
4087
+ #: defaults.php:2255
4088
+ msgid "Modified the file %Theme%/%File% with the theme editor."
4089
  msgstr ""
4090
 
4091
+ #: defaults.php:2263
4092
+ msgid "Themes on Multisite"
4093
  msgstr ""
4094
 
4095
+ #: defaults.php:2267
4096
+ msgid "Activated theme on network"
4097
  msgstr ""
4098
 
4099
+ #: defaults.php:2268
4100
+ msgid "Network activated the theme %Theme->Name%."
4101
  msgstr ""
4102
 
4103
+ #: defaults.php:2280
4104
+ msgid "Deactivated theme from network"
4105
  msgstr ""
4106
 
4107
+ #: defaults.php:2281
4108
+ msgid "Network deactivated the theme %Theme->Name%."
4109
  msgstr ""
4110
 
4111
+ #: defaults.php:2293
4112
+ msgid "WordPress & System"
4113
  msgstr ""
4114
 
4115
+ #: defaults.php:2298
4116
+ msgid "Unknown Error"
4117
  msgstr ""
4118
 
4119
+ #: defaults.php:2299
4120
+ msgid "An unexpected error has occurred."
4121
  msgstr ""
4122
 
4123
+ #: defaults.php:2304
4124
+ msgid "PHP error"
4125
  msgstr ""
4126
 
4127
+ #: defaults.php:2305 defaults.php:2311 defaults.php:2317 defaults.php:2323
4128
+ #: defaults.php:2329
4129
+ msgid "%Message%."
4130
  msgstr ""
4131
 
4132
+ #: defaults.php:2310
4133
+ msgid "PHP warning"
4134
  msgstr ""
4135
 
4136
+ #: defaults.php:2316
4137
+ msgid "PHP notice"
4138
  msgstr ""
4139
 
4140
+ #: defaults.php:2322
4141
+ msgid "PHP exception"
4142
  msgstr ""
4143
 
4144
+ #: defaults.php:2328
4145
+ msgid "PHP shutdown error"
4146
  msgstr ""
4147
 
4148
+ #: defaults.php:2334
4149
+ msgid "WordPress was updated"
4150
  msgstr ""
4151
 
4152
+ #: defaults.php:2335
4153
+ msgid "Updated WordPress."
4154
  msgstr ""
4155
 
4156
+ #: defaults.php:2337
4157
+ msgid "Previous version"
4158
  msgstr ""
4159
 
4160
+ #: defaults.php:2354
4161
+ msgid "Advertising Extensions"
4162
  msgstr ""
4163
 
4164
+ #: defaults.php:2355
4165
+ msgid "%PromoName% %PromoMessage%"
4166
  msgstr ""
4167
 
4168
+ #: defaults.php:2359
4169
+ msgid "Activity log plugin"
4170
  msgstr ""
4171
 
4172
+ #: defaults.php:2363
4173
+ msgid "Events automatically pruned by system"
4174
  msgstr ""
4175
 
4176
+ #: defaults.php:2364
4177
+ msgid "System automatically deleted %EventCount% events from the activity log."
4178
  msgstr ""
4179
 
4180
+ #: defaults.php:2373
4181
+ msgid "Reset the plugin's settings to default"
4182
  msgstr ""
4183
 
4184
+ #: defaults.php:2374
4185
+ msgid "Reset the activity log plugin's settings to default."
4186
  msgstr ""
4187
 
4188
+ #: defaults.php:2383
4189
+ msgid "Purged the activity log"
4190
  msgstr ""
4191
 
4192
+ #: defaults.php:2384
4193
+ msgid "Purged the activity log."
4194
  msgstr ""
4195
 
4196
+ #: defaults.php:2394
4197
+ msgid "Deleted all the data about a user from the activity log."
4198
  msgstr ""
4199
 
4200
+ #: defaults.php:2395
4201
+ msgid "Deleted all the data about the user <strong>%user%</strong> from the activity log."
4202
  msgstr ""
4203
 
4204
+ #: defaults.php:2408
4205
+ msgid "Deleted all the data of a specific type from the activity log."
4206
  msgstr ""
4207
 
4208
+ #: defaults.php:2409
4209
+ msgid "Deleted all the data about the %deleted_data_type% %deleted_data% from the activity log."
4210
  msgstr ""
4211
 
4212
+ #: defaults.php:2419
4213
+ msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
4214
  msgstr ""
4215
 
4216
+ #: defaults.php:2420
4217
+ msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
4218
  msgstr ""
4219
 
4220
+ #: defaults.php:2430
4221
+ msgid "Changed the status of the Login Page Notification"
4222
  msgstr ""
4223
 
4224
+ #: defaults.php:2431
4225
+ msgid "Changed the status of the <strong>Login Page Notification.</strong>"
4226
  msgstr ""
4227
 
4228
+ #: defaults.php:2440
4229
+ msgid "Changed the text of the Login Page Notification"
4230
  msgstr ""
4231
 
4232
+ #: defaults.php:2441
4233
+ msgid "Changed the text of the <strong>Login Page Notification.</strong>"
4234
  msgstr ""
4235
 
4236
+ #: defaults.php:2450
4237
+ msgid "Changed the status of the Reverse proxy / firewall option"
4238
  msgstr ""
4239
 
4240
+ #: defaults.php:2451
4241
+ msgid "Changed the status of the <strong>Reverse proxy / firewall option.</strong>"
4242
  msgstr ""
4243
 
4244
+ #: defaults.php:2460
4245
+ msgid "Changed the Restrict plugin access setting"
4246
  msgstr ""
4247
 
4248
+ #: defaults.php:2461
4249
+ msgid "Changed the <strong>Restrict plugin access</strong> setting to %new_setting%."
4250
  msgstr ""
4251
 
4252
+ #: defaults.php:2463 defaults.php:2497 defaults.php:2967 defaults.php:3054
4253
+ #: defaults.php:3347
4254
+ msgid "Previous setting"
4255
  msgstr ""
4256
 
4257
+ #: defaults.php:2472
4258
+ msgid "The user %user% to / from the list of users who can view the activity log"
4259
  msgstr ""
4260
 
4261
+ #: defaults.php:2473
4262
+ msgid "The user %user% to / from the list of users who can view the activity log."
4263
  msgstr ""
4264
 
4265
+ #: defaults.php:2475
4266
+ msgid "Previous list of users who had access to view the activity log"
4267
  msgstr ""
4268
 
4269
+ #: defaults.php:2484
4270
+ msgid "Changed the status of the Hide plugin in plugins page setting"
4271
  msgstr ""
4272
 
4273
+ #: defaults.php:2485
4274
+ msgid "Changed the status of the <strong>Hide plugin in plugins page</strong> setting."
4275
  msgstr ""
4276
 
4277
+ #: defaults.php:2494
4278
+ msgid "Changed the Activity log retention setting"
4279
  msgstr ""
4280
 
4281
+ #: defaults.php:2495
4282
+ msgid "Changed the <strong>Activity log retention</strong> to %new_setting%."
4283
  msgstr ""
4284
 
4285
+ #: defaults.php:2506
4286
+ msgid "A user was added to / from the list of excluded users from the activity log"
4287
  msgstr ""
4288
 
4289
+ #: defaults.php:2507
4290
+ msgid "The user %user% to / from the list of excluded users from the activity log."
4291
  msgstr ""
4292
 
4293
+ #: defaults.php:2509 defaults.php:2521
4294
+ msgid "Previous list of users"
4295
  msgstr ""
4296
 
4297
+ #: defaults.php:2518
4298
+ msgid "A user role was added to / from the list of excluded roles from the activity log"
4299
  msgstr ""
4300
 
4301
+ #: defaults.php:2519
4302
+ msgid "The user role %role% to / from the list of excluded roles from the activity log."
4303
  msgstr ""
4304
 
4305
+ #: defaults.php:2530
4306
+ msgid "An IP address was added to / from the list of excluded IP addresses from the activity log"
4307
  msgstr ""
4308
 
4309
+ #: defaults.php:2531
4310
+ msgid "The IP address %ip% to / from the list of excluded IP addresses from the activity log."
4311
  msgstr ""
4312
 
4313
+ #: defaults.php:2533
4314
+ msgid "Previous list of IPs"
4315
  msgstr ""
4316
 
4317
+ #: defaults.php:2542
4318
+ msgid "A post type was added to / from the list of excluded post types from the activity log"
4319
  msgstr ""
4320
 
4321
+ #: defaults.php:2543
4322
+ msgid "The post type %post_type% to / from the list of excluded post types from the activity log."
4323
  msgstr ""
4324
 
4325
+ #: defaults.php:2545
4326
+ msgid "Previous list of Post types"
4327
  msgstr ""
4328
 
4329
+ #: defaults.php:2554
4330
+ msgid "A custom field was added to / from the list of excluded custom fields from the activity log"
4331
  msgstr ""
4332
 
4333
+ #: defaults.php:2555
4334
+ msgid "The custom field %custom_field% to / from the list of excluded custom fields from the activity log."
4335
  msgstr ""
4336
 
4337
+ #: defaults.php:2557
4338
+ msgid "Previous list of Custom fields"
4339
  msgstr ""
4340
 
4341
+ #: defaults.php:2566
4342
+ msgid "A custom field was added to / from the list of excluded user profile custom fields from the activity log"
4343
  msgstr ""
4344
 
4345
+ #: defaults.php:2567
4346
+ msgid "The custom field %custom_field% to / from the list of excluded user profile custom fields from the activity log."
4347
  msgstr ""
4348
 
4349
+ #: defaults.php:2569
4350
+ msgid "Previous list of user profile Custom fields"
4351
  msgstr ""
4352
 
4353
+ #: defaults.php:2577
4354
+ msgid "Notifications & Integrations"
4355
  msgstr ""
4356
 
4357
+ #: defaults.php:2581
4358
+ msgid "Changed the status of the Daily Summary of Activity Log"
4359
  msgstr ""
4360
 
4361
+ #: defaults.php:2582
4362
+ msgid "Changed the status of the <strong>Daily Summary of Activity Log.</strong>."
4363
  msgstr ""
4364
 
4365
+ #: defaults.php:2591
4366
+ msgid "Modified the reciepients of the Daily Summary of Activity Log."
4367
  msgstr ""
4368
 
4369
+ #: defaults.php:2592
4370
+ msgid "Modified the reciepients of the <strong>Daily Summary of Activity Log</strong>."
4371
  msgstr ""
4372
 
4373
+ #: defaults.php:2594
4374
+ msgid "New recipient"
4375
  msgstr ""
4376
 
4377
+ #: defaults.php:2595
4378
+ msgid "Previous recipient"
4379
  msgstr ""
4380
 
4381
+ #: defaults.php:2604
4382
+ msgid "Changed the status of a built in notification"
4383
  msgstr ""
4384
 
4385
+ #: defaults.php:2605
4386
+ msgid "Changed the status of the built in notification %notification_name%."
4387
  msgstr ""
4388
 
4389
+ #: defaults.php:2614
4390
+ msgid "Modified the recipient(s) of the built a notification"
4391
  msgstr ""
4392
 
4393
+ #: defaults.php:2615
4394
+ msgid "Modified the recipient(s) of the built in notification %notification_name%."
4395
  msgstr ""
4396
 
4397
+ #: defaults.php:2617
4398
+ msgid "New recipient(s)"
4399
  msgstr ""
4400
 
4401
+ #: defaults.php:2618
4402
+ msgid "Previous recipient(s)"
4403
  msgstr ""
4404
 
4405
+ #: defaults.php:2627
4406
+ msgid "Added a new custom notification"
4407
  msgstr ""
4408
 
4409
+ #: defaults.php:2628
4410
+ msgid "Added a new custom notification %notification_name%."
4411
  msgstr ""
4412
 
4413
+ #: defaults.php:2630 defaults.php:2642
4414
+ msgid "Recipient(s)"
4415
  msgstr ""
4416
 
4417
+ #: defaults.php:2639
4418
+ msgid "Modified a custom notification"
4419
  msgstr ""
4420
 
4421
+ #: defaults.php:2640
4422
+ msgid "Modified the custom notification %notification_name%."
4423
  msgstr ""
4424
 
4425
+ #: defaults.php:2651
4426
+ msgid "Changed the status of a custom notification"
4427
  msgstr ""
4428
 
4429
+ #: defaults.php:2652
4430
+ msgid "Changed the status of the custom notification %notification_name%."
4431
  msgstr ""
4432
 
4433
+ #: defaults.php:2661
4434
+ msgid "Deleted a custom notification"
4435
  msgstr ""
4436
 
4437
+ #: defaults.php:2662
4438
+ msgid "Deleted the custom notification %notification_name%."
4439
  msgstr ""
4440
 
4441
+ #: defaults.php:2671
4442
+ msgid "Modified a default notification template"
4443
  msgstr ""
4444
 
4445
+ #: defaults.php:2672
4446
+ msgid "Modified the default %template_name% notification template."
4447
  msgstr ""
4448
 
4449
+ #: defaults.php:2683
4450
+ msgid "Added a new integrations connection"
4451
  msgstr ""
4452
 
4453
+ #: defaults.php:2684
4454
+ msgid "Added / removed the integrations connection %name%"
4455
  msgstr ""
4456
 
4457
+ #: defaults.php:2686 defaults.php:2698
4458
+ msgid "Connection type"
4459
  msgstr ""
4460
 
4461
+ #: defaults.php:2695
4462
+ msgid "Modified an integrations connection"
4463
  msgstr ""
4464
 
4465
+ #: defaults.php:2696
4466
+ msgid "Modified the integrations connection %name%."
4467
  msgstr ""
4468
 
4469
+ #: defaults.php:2707
4470
+ msgid "Deleted a integrations connection"
4471
  msgstr ""
4472
 
4473
+ #: defaults.php:2708
4474
+ msgid "Deleted the integrations connection %name%."
 
4475
  msgstr ""
4476
 
4477
+ #: defaults.php:2717
4478
+ msgid "Added a new activity log mirror"
4479
  msgstr ""
4480
 
4481
+ #: defaults.php:2718
4482
+ msgid "Added a new activity log mirror %name%."
4483
  msgstr ""
4484
 
4485
+ #: defaults.php:2720 defaults.php:2732 defaults.php:2744
4486
+ msgid "Connection used by this mirror"
4487
  msgstr ""
4488
 
4489
+ #: defaults.php:2729
4490
+ msgid "Modified an activity log mirror"
4491
  msgstr ""
4492
 
4493
+ #: defaults.php:2730
4494
+ msgid "Modified the activity log mirror %name%."
4495
  msgstr ""
4496
 
4497
+ #: defaults.php:2741
4498
+ msgid "Changed the status of an activity log mirror"
4499
  msgstr ""
4500
 
4501
+ #: defaults.php:2742
4502
+ msgid "Changed the status of the activity log mirror %name%."
4503
  msgstr ""
4504
 
4505
+ #: defaults.php:2753
4506
+ msgid "Deleted an activity log mirror"
4507
  msgstr ""
4508
 
4509
+ #: defaults.php:2754
4510
+ msgid "Deleted the activity log mirror %name%."
4511
  msgstr ""
4512
 
4513
+ #: defaults.php:2763
4514
+ msgid "Changed the status of Logging of events to the database"
4515
  msgstr ""
4516
 
4517
+ #: defaults.php:2764
4518
+ msgid "Changed the status of <strong>Logging of events to the database</strong>."
4519
  msgstr ""
4520
 
4521
+ #: defaults.php:2772
4522
+ msgid "WordPress Site Settings"
4523
  msgstr ""
4524
 
4525
+ #: defaults.php:2776
4526
+ msgid "Option Anyone Can Register in WordPress settings changed"
4527
  msgstr ""
4528
 
4529
+ #: defaults.php:2777
4530
+ msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
4531
  msgstr ""
4532
 
4533
+ #: defaults.php:2786
4534
+ msgid "New User Default Role changed"
4535
  msgstr ""
4536
 
4537
+ #: defaults.php:2787
4538
+ msgid "Changed the <strong>New user default role</strong> WordPress setting."
4539
  msgstr ""
4540
 
4541
+ #: defaults.php:2790
4542
+ msgid "New role"
4543
  msgstr ""
4544
 
4545
+ #: defaults.php:2799
4546
+ msgid "WordPress Administrator Notification email changed"
4547
  msgstr ""
4548
 
4549
+ #: defaults.php:2800
4550
+ msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
4551
  msgstr ""
4552
 
4553
+ #: defaults.php:2802
4554
+ msgid "Previous address"
4555
  msgstr ""
4556
 
4557
+ #: defaults.php:2803
4558
+ msgid "New address"
4559
  msgstr ""
4560
 
4561
+ #: defaults.php:2812
4562
+ msgid "User changes the WordPress Permalinks"
4563
  msgstr ""
4564
 
4565
+ #: defaults.php:2813
4566
+ msgid "Changed the <strong>WordPress permalinks</strong>."
4567
  msgstr ""
4568
 
4569
+ #: defaults.php:2815
4570
+ msgid "Previous permalinks"
4571
  msgstr ""
4572
 
4573
+ #: defaults.php:2816
4574
+ msgid "New permalinks"
4575
  msgstr ""
4576
 
4577
+ #: defaults.php:2825
4578
+ msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
4579
  msgstr ""
4580
 
4581
+ #: defaults.php:2826
4582
+ msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
4583
  msgstr ""
4584
 
4585
+ #: defaults.php:2835
4586
+ msgid "Enabled/Disabled comments on all the website"
4587
  msgstr ""
4588
 
4589
+ #: defaults.php:2836
4590
+ msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
4591
  msgstr ""
4592
 
4593
+ #: defaults.php:2846
4594
+ msgid "Enabled/Disabled the option Comment author must fill out name and email"
4595
  msgstr ""
4596
 
4597
+ #: defaults.php:2847
4598
+ msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
4599
  msgstr ""
4600
 
4601
+ #: defaults.php:2856
4602
+ msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
4603
  msgstr ""
4604
 
4605
+ #: defaults.php:2857
4606
+ msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
4607
  msgstr ""
4608
 
4609
+ #: defaults.php:2866
4610
+ msgid "Enabled/Disabled the option to automatically close comments"
4611
  msgstr ""
4612
 
4613
+ #: defaults.php:2867
4614
+ msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
4615
  msgstr ""
4616
 
4617
+ #: defaults.php:2876
4618
+ msgid "Changed the value of the option Automatically close comments"
4619
  msgstr ""
4620
 
4621
+ #: defaults.php:2877
4622
+ msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
4623
  msgstr ""
4624
 
4625
+ #: defaults.php:2888
4626
+ msgid "Enabled/Disabled the option for comments to be manually approved"
4627
  msgstr ""
4628
 
4629
+ #: defaults.php:2889
4630
+ msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
4631
  msgstr ""
4632
 
4633
+ #: defaults.php:2898
4634
+ msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
4635
  msgstr ""
4636
 
4637
+ #: defaults.php:2899
4638
+ msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
4639
  msgstr ""
4640
 
4641
+ #: defaults.php:2908
4642
+ msgid "Changed the number of links that a comment must have to be held in the queue"
4643
  msgstr ""
4644
 
4645
+ #: defaults.php:2909
4646
+ msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
4647
  msgstr ""
4648
 
4649
+ #: defaults.php:2920
4650
+ msgid "Modified the list of keywords for comments moderation"
4651
  msgstr ""
4652
 
4653
+ #: defaults.php:2921
4654
+ msgid "Modified the list of keywords for comments medoration in WordPress."
4655
  msgstr ""
4656
 
4657
+ #: defaults.php:2930
4658
+ msgid "Modified the list of keywords for comments blacklisting"
4659
  msgstr ""
4660
 
4661
+ #: defaults.php:2931
4662
+ msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
4663
  msgstr ""
4664
 
4665
+ #: defaults.php:2940
4666
+ msgid "Option WordPress Address (URL) in WordPress settings changed"
4667
  msgstr ""
4668
 
4669
+ #: defaults.php:2941
4670
+ msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
4671
  msgstr ""
4672
 
4673
+ #: defaults.php:2952
4674
+ msgid "Option Site Address (URL) in WordPress settings changed"
4675
  msgstr ""
4676
 
4677
+ #: defaults.php:2953
4678
+ msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
4679
  msgstr ""
4680
 
4681
+ #: defaults.php:2964
4682
+ msgid "Option Your homepage displays in WordPress settings changed"
4683
  msgstr ""
4684
 
4685
+ #: defaults.php:2965
4686
+ msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
4687
  msgstr ""
4688
 
4689
+ #: defaults.php:2976
4690
+ msgid "Option homepage in WordPress settings changed"
 
4691
  msgstr ""
4692
 
4693
+ #: defaults.php:2977
4694
+ msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
4695
  msgstr ""
4696
 
4697
+ #: defaults.php:2979 defaults.php:2991
4698
+ msgid "Previous page"
4699
  msgstr ""
4700
 
4701
+ #: defaults.php:2988
4702
+ msgid "Option posts page in WordPress settings changed"
4703
  msgstr ""
4704
 
4705
+ #: defaults.php:2989
4706
+ msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
4707
  msgstr ""
4708
 
4709
+ #: defaults.php:3001
4710
+ msgid "Option Timezone in WordPress settings changed"
4711
  msgstr ""
4712
 
4713
+ #: defaults.php:3002
4714
+ msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
 
4715
  msgstr ""
4716
 
4717
+ #: defaults.php:3004
4718
+ msgid "Previous timezone"
4719
  msgstr ""
4720
 
4721
+ #: defaults.php:3013
4722
+ msgid "Option Date format in WordPress settings changed"
4723
  msgstr ""
4724
 
4725
+ #: defaults.php:3014
4726
+ msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
4727
  msgstr ""
4728
 
4729
+ #: defaults.php:3016 defaults.php:3028
4730
+ msgid "Previous format"
4731
  msgstr ""
4732
 
4733
+ #: defaults.php:3025
4734
+ msgid "Option Time format in WordPress settings changed"
4735
  msgstr ""
4736
 
4737
+ #: defaults.php:3026
4738
+ msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
4739
  msgstr ""
4740
 
4741
+ #: defaults.php:3038
4742
+ msgid "Option Automatic updates setting changed"
4743
  msgstr ""
4744
 
4745
+ #: defaults.php:3039
4746
+ msgid "Changed the <strong>Automatic updates</strong> setting."
4747
  msgstr ""
4748
 
4749
+ #: defaults.php:3041
4750
+ msgid "New setting status"
4751
  msgstr ""
4752
 
4753
+ #: defaults.php:3051
4754
+ msgid "Option Site Language setting changed"
4755
  msgstr ""
4756
 
4757
+ #: defaults.php:3052
4758
+ msgid "Changed the <strong>Site Language</strong> to %new_value%."
4759
  msgstr ""
4760
 
4761
+ #: defaults.php:3062
4762
+ msgid "Database Events"
4763
  msgstr ""
4764
 
4765
+ #: defaults.php:3066
4766
+ msgid "Plugin created table"
4767
  msgstr ""
4768
 
4769
+ #: defaults.php:3067
4770
+ msgid "The plugin %Plugin->Name% created this table in the database."
4771
  msgstr ""
4772
 
4773
+ #: defaults.php:3069 defaults.php:3081 defaults.php:3093 defaults.php:3105
4774
+ #: defaults.php:3117
4775
+ msgid "Table"
4776
  msgstr ""
4777
 
4778
+ #: defaults.php:3078
4779
+ msgid "Plugin modified table structure"
4780
  msgstr ""
4781
 
4782
+ #: defaults.php:3079
4783
+ msgid "The plugin %Plugin->Name% modified the structure of a database table."
4784
  msgstr ""
4785
 
4786
+ #: defaults.php:3090
4787
+ msgid "Plugin deleted table"
4788
  msgstr ""
4789
 
4790
+ #: defaults.php:3091
4791
+ msgid "The plugin %Plugin->Name% deleted this table from the database."
4792
  msgstr ""
4793
 
4794
+ #: defaults.php:3102
4795
+ msgid "Theme created tables"
4796
  msgstr ""
4797
 
4798
+ #: defaults.php:3103
4799
+ msgid "The theme %Theme->Name% created this tables in the database."
4800
  msgstr ""
4801
 
4802
+ #: defaults.php:3114
4803
+ msgid "Theme modified tables structure"
4804
  msgstr ""
4805
 
4806
+ #: defaults.php:3115
4807
+ msgid "The theme %Theme->Name% modified the structure of this database table"
4808
  msgstr ""
4809
 
4810
+ #: defaults.php:3126
4811
+ msgid "Theme deleted tables"
4812
  msgstr ""
4813
 
4814
+ #: defaults.php:3127
4815
+ msgid "The theme %Theme->Name% deleted this table from the database."
4816
  msgstr ""
4817
 
4818
+ #: defaults.php:3129 defaults.php:3141 defaults.php:3153 defaults.php:3165
4819
+ #: defaults.php:3177 defaults.php:3189 defaults.php:3201
4820
+ msgid "Tables"
4821
  msgstr ""
4822
 
4823
+ #: defaults.php:3138
4824
+ msgid "Unknown component created tables"
4825
  msgstr ""
4826
 
4827
+ #: defaults.php:3139
4828
+ msgid "An unknown component created these tables in the database."
4829
  msgstr ""
4830
 
4831
+ #: defaults.php:3150
4832
+ msgid "Unknown component modified tables structure"
4833
  msgstr ""
4834
 
4835
+ #: defaults.php:3151
4836
+ msgid "An unknown component modified the structure of these database tables."
4837
  msgstr ""
4838
 
4839
+ #: defaults.php:3162
4840
+ msgid "Unknown component deleted tables"
4841
  msgstr ""
4842
 
4843
+ #: defaults.php:3163
4844
+ msgid "An unknown component deleted these tables from the database."
4845
  msgstr ""
4846
 
4847
+ #: defaults.php:3174
4848
+ msgid "WordPress created tables"
4849
  msgstr ""
4850
 
4851
+ #: defaults.php:3175
4852
+ msgid "WordPress has created these tables in the database."
4853
  msgstr ""
4854
 
4855
+ #: defaults.php:3186
4856
+ msgid "WordPress modified tables structure"
4857
  msgstr ""
4858
 
4859
+ #: defaults.php:3187
4860
+ msgid "WordPress modified the structure of these database tables."
4861
  msgstr ""
4862
 
4863
+ #: defaults.php:3198
4864
+ msgid "WordPress deleted tables"
4865
  msgstr ""
4866
 
4867
+ #: defaults.php:3199
4868
+ msgid "WordPress deleted these tables from the database."
4869
  msgstr ""
4870
 
4871
+ #: defaults.php:3210
4872
+ msgid "Multisite Network Sites"
4873
  msgstr ""
4874
 
4875
+ #: defaults.php:3215
4876
+ msgid "New site added on the network"
4877
  msgstr ""
4878
 
4879
+ #: defaults.php:3216
4880
+ msgid "Added the new site %SiteName% to the network."
4881
  msgstr ""
4882
 
4883
+ #: defaults.php:3227
4884
+ msgid "Existing site archived"
4885
  msgstr ""
4886
 
4887
+ #: defaults.php:3228
4888
+ msgid "Archived the site %SiteName% on the network."
4889
  msgstr ""
4890
 
4891
+ #: defaults.php:3239
4892
+ msgid "Archived site has been unarchived"
4893
  msgstr ""
4894
 
4895
+ #: defaults.php:3240
4896
+ msgid "Unarchived the site %SiteName%."
4897
  msgstr ""
4898
 
4899
+ #: defaults.php:3251
4900
+ msgid "Deactivated site has been activated"
4901
  msgstr ""
4902
 
4903
+ #: defaults.php:3252
4904
+ msgid "Activated the site %SiteName% on the network."
 
4905
  msgstr ""
4906
 
4907
+ #: defaults.php:3263
4908
+ msgid "Site has been deactivated"
4909
  msgstr ""
4910
 
4911
+ #: defaults.php:3264
4912
+ msgid "Deactiveated the site %SiteName% on the network."
4913
  msgstr ""
4914
 
4915
+ #: defaults.php:3275
4916
+ msgid "Existing site deleted from network"
4917
  msgstr ""
4918
 
4919
+ #: defaults.php:3276
4920
+ msgid "The site: %SiteName%."
4921
  msgstr ""
4922
 
4923
+ #: defaults.php:3287
4924
+ msgid "Allow site administrators to add new users to their sites settings changed"
4925
  msgstr ""
4926
 
4927
+ #: defaults.php:3288
4928
+ msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
4929
  msgstr ""
4930
 
4931
+ #: defaults.php:3297
4932
+ msgid "Site upload space settings changed"
4933
  msgstr ""
4934
 
4935
+ #: defaults.php:3298
4936
+ msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
4937
  msgstr ""
4938
 
4939
+ #: defaults.php:3307
4940
+ msgid "Site upload space file size settings changed"
4941
  msgstr ""
4942
 
4943
+ #: defaults.php:3308
4944
+ msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
4945
  msgstr ""
4946
 
4947
+ #: defaults.php:3310
4948
+ msgid "Previous size (MB)"
4949
  msgstr ""
4950
 
4951
+ #: defaults.php:3319
4952
+ msgid "Site Upload file types settings changed"
4953
  msgstr ""
4954
 
4955
+ #: defaults.php:3320
4956
+ msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
4957
  msgstr ""
4958
 
4959
+ #: defaults.php:3332
4960
+ msgid "Site Max upload file size settings changed"
4961
  msgstr ""
4962
 
4963
+ #: defaults.php:3333
4964
+ msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
4965
  msgstr ""
4966
 
4967
+ #: defaults.php:3335
4968
+ msgid "Previous size (KB)"
4969
  msgstr ""
4970
 
4971
+ #: defaults.php:3344
4972
+ msgid "Allow new registrations settings changed"
4973
  msgstr ""
4974
 
4975
+ #: defaults.php:3345
4976
+ msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
4977
  msgstr ""
4978
 
4979
+ #: defaults.php:3366
4980
+ msgid "Dummy"
4981
  msgstr ""
4982
 
4983
+ #: wp-security-audit-log.php:984 wp-security-audit-log.php:1012
4984
+ #, php-format
4985
+ msgid "Hey %s"
4986
  msgstr ""
4987
 
4988
+ #: wp-security-audit-log.php:988
4989
+ msgid "Never miss an important update! Opt-in to our security and feature updates notifications, and non-sensitive diagnostic tracking with freemius.com."
4990
  msgstr ""
4991
 
4992
+ #: wp-security-audit-log.php:989 wp-security-audit-log.php:1024
4993
+ msgid "Note: "
4994
  msgstr ""
4995
 
4996
+ #: wp-security-audit-log.php:990 wp-security-audit-log.php:1025
4997
+ msgid "NO ACTIVITY LOG ACTIVITY & DATA IS SENT BACK TO OUR SERVERS."
4998
  msgstr ""
4999
 
5000
+ #: wp-security-audit-log.php:1018
5001
+ #, php-format
5002
+ msgid "Please help us improve %1$s! If you opt-in, some non-sensitive data about your usage of %2$s will be sent to %3$s, a diagnostic tracking service we use. If you skip this, that's okay! %2$s will still work just fine."
5003
  msgstr ""
5004
 
5005
+ #: wp-security-audit-log.php:1070
5006
+ #, php-format
5007
+ msgid "You need to activate the licence key to use WP Activity Log Premium. %2$s"
5008
  msgstr ""
5009
 
5010
+ #: wp-security-audit-log.php:1071
5011
+ msgid "Activate the licence key now"
5012
  msgstr ""
5013
 
5014
+ #: wp-security-audit-log.php:1089
5015
+ #, php-format
5016
+ msgid "%s You need to renew your license to continue using premium features."
5017
  msgstr ""
5018
 
5019
+ #: wp-security-audit-log.php:1093
5020
+ #, php-format
5021
+ msgid "The license is limited to %s sub-sites. You need to upgrade your license to cover all the sub-sites on this network."
5022
  msgstr ""
5023
 
5024
+ #: wp-security-audit-log.php:1191
5025
+ msgid "Error: You do not have sufficient permissions to disable this custom field."
5026
  msgstr ""
5027
 
5028
+ #: wp-security-audit-log.php:1239
5029
+ #, php-format
5030
+ msgid "Custom field %s is no longer being monitored."
5031
  msgstr ""
5032
 
5033
+ #: wp-security-audit-log.php:1244
5034
+ #, php-format
5035
+ msgid "Enable the monitoring of this custom field again from the %s tab in the plugin settings."
5036
  msgstr ""
5037
 
5038
+ #: wp-security-audit-log.php:1245
5039
+ msgid "Excluded Objects"
 
5040
  msgstr ""
5041
 
5042
+ #: wp-security-audit-log.php:1258
5043
+ msgid "Error: You do not have sufficient permissions to disable this alert."
5044
  msgstr ""
5045
 
5046
+ #: wp-security-audit-log.php:1282
5047
+ #, php-format
5048
+ msgid "Alert %1$s is no longer being monitored.<br /> %2$s"
5049
  msgstr ""
5050
 
5051
+ #: wp-security-audit-log.php:1282
5052
+ msgid "You can enable this alert again from the Enable/Disable Alerts node in the plugin menu."
5053
  msgstr ""
5054
 
5055
+ #: wp-security-audit-log.php:1363
5056
+ #, php-format
5057
+ msgid "You are using a version of PHP that is older than %s, which is no longer supported."
5058
  msgstr ""
5059
 
5060
+ #: wp-security-audit-log.php:1365
5061
+ msgid "Contact us on <a href=\"mailto:plugins@wpwhitesecurity.com\">plugins@wpwhitesecurity.com</a> to help you switch the version of PHP you are using."
5062
  msgstr ""
5063
 
5064
+ #: wp-security-audit-log.php:1370
5065
+ #, php-format
5066
+ msgid "Please install the %s plugin on the MainWP dashboard."
5067
  msgstr ""
5068
 
5069
+ #: wp-security-audit-log.php:1370
5070
+ msgid "Activity Log for MainWP"
5071
  msgstr ""
5072
 
5073
+ #: wp-security-audit-log.php:1372
5074
+ #, php-format
5075
+ msgid "The WP Activity Log should be installed on the child sites only. Refer to the %s for more information."
5076
  msgstr ""
5077
 
5078
+ #: wp-security-audit-log.php:1372
5079
+ msgid "getting started guide"
5080
  msgstr ""
5081
 
5082
+ #: wp-security-audit-log.php:1854
5083
+ msgid "For security and auditing purposes, a record of all of your logged-in actions and changes within the WordPress dashboard will be recorded in an activity log with the <a href=\"https://wpactivitylog.com/\" target=\"_blank\">WP Activity Log plugin</a>. The audit log also includes the IP address where you accessed this site from."
5084
  msgstr ""
5085
 
5086
+ #: wp-security-audit-log.php:1873
5087
+ msgid "Every 6 hours"
5088
  msgstr ""
5089
 
5090
+ #: wp-security-audit-log.php:1877
5091
+ msgid "Every 45 minutes"
5092
  msgstr ""
5093
 
5094
+ #: wp-security-audit-log.php:1881
5095
+ msgid "Every 30 minutes"
5096
  msgstr ""
5097
 
5098
+ #: wp-security-audit-log.php:1885
5099
+ msgid "Every 15 minutes"
5100
  msgstr ""
5101
 
5102
+ #: wp-security-audit-log.php:1889
5103
+ msgid "Every 10 minutes"
5104
  msgstr ""
5105
 
5106
+ #: wp-security-audit-log.php:1893
5107
+ msgid "Every 1 minute"
5108
  msgstr ""
5109
 
5110
+ #: wp-security-audit-log.php:1907
5111
+ #, php-format
5112
+ msgid "Method %1$s is deprecated since version %2$s!"
5113
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl.html
6
  Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 5.0
8
  Tested up to: 5.9
9
- Stable tag: 4.3.4
10
  Requires PHP: 7.0
11
 
12
  The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
@@ -208,23 +208,11 @@ Please refer to our [support pages](https://wpactivitylog.com/support/?utm_sourc
208
 
209
  == Changelog ==
210
 
211
- = 4.3.4 (2022-01-05) =
 
212
 
213
- Release notes: [WP Activity Log 4.3.4: paving the way for 4.4](https://wpactivitylog.com/wsal-4-3-4/)
214
-
215
- **New features**
216
- * See a user's activity log with one-click from the WordPress users page.
217
- * Added "Custom User Field" as criterion in the notifications trigger builder.
218
-
219
- **Improvements**
220
- * User's role is reported in the list of logged in users.
221
- * Added PHP Opcache flush during plugin upgrade (needed for updating to 4.4).
222
- * Made more JS strings in the plugin translatable.
223
- * Added the URL metadata in the CSV activity log reports.
224
-
225
- **Bug fixes**
226
- * In some code the premium plugin trial was 7 days - changed to 14 days.
227
- * Fixed: cannot set up a third party service integration on WordPress earlier than 5.6.
228
- * Fixed some typos in some of the events' text.
229
 
230
  Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
6
  Tags: activity log, wordpress activity logs, security audit log, audit log, user tracking, security event log, audit trail, wordpress security monitor, wordpress admin, wordpress admin monitoring, user activity, admin, multisite, SMS alerts, wordpress monitoring, email notification, wordpress email alerts, tracking, user tracking, user activity report, wordpress audit trail
7
  Requires at least: 5.0
8
  Tested up to: 5.9
9
+ Stable tag: 4.3.6
10
  Requires PHP: 7.0
11
 
12
  The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
208
 
209
  == Changelog ==
210
 
211
+ = 4.3.6 (2022-02-15) =
212
+ Release notes: the improvements in this update are required to prepare for WP Activity Log 4.4. Therefore it is important to install this update before you update to version 4.4.
213
 
214
+ * **Improvements**
215
+ * Removed opcache purging.
216
+ * Improved error handling during plugin upgrade.
 
 
 
 
 
 
 
 
 
 
 
 
 
217
 
218
  Refer to the [complete plugin changelog](https://wpactivitylog.com/support/kb/plugin-changelog/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=WSAL&utm_content=plugin+repos+description) for more detailed information about what was new, improved and fixed in previous versions of the WP Activity Log plugin.
wp-security-audit-log.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://wpactivitylog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
- * Version: 4.3.4
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: https://www.wpwhitesecurity.com/
10
  * License: GPL2
@@ -17,7 +17,7 @@
17
 
18
  /*
19
  WP Activity Log
20
- Copyright(c) 2022 WP White Security (email : info@wpwhitesecurity.com)
21
 
22
  This program is free software; you can redistribute it and/or modify
23
  it under the terms of the GNU General Public License, version 2, as
@@ -49,7 +49,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
49
  *
50
  * @var string
51
  */
52
- public $version = '4.3.4';
53
 
54
  /**
55
  * Plugin constants.
@@ -322,9 +322,6 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
322
  return;
323
  }
324
 
325
- require_once 'classes/Utilities/OpCacheUtils.php';
326
- add_filter( 'upgrader_pre_install', array( 'WSAL_Utilities_OpCacheUtils', 'clear_caches' ), 10, 2 );
327
-
328
  $this->define_constants();
329
  $this->set_allowed_html_tags();
330
  $this->includes();
@@ -337,30 +334,74 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
337
  }
338
  }
339
 
340
- /**
341
- * Returns whether the plugin should load.
342
- *
343
- * @return bool Whether the plugin should load.
344
- */
345
- public function should_load() {
346
- // Always load on the admin.
347
- if ( is_admin() ) {
348
- return true;
349
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
- // check conditions for frontend
352
- if ( self::is_frontend() && ! is_user_logged_in() && ! self::should_load_frontend() ) {
353
- // user isn't logged in, and we aren't logging visitor events on front-end
354
- return false;
355
- }
356
 
357
- // other contexts/scenarios
358
- if ( self::is_rest_api() ) {
359
- return is_user_logged_in();
360
- }
361
 
362
- return true;
363
- }
364
 
365
  /**
366
  * Checks to see if WSAL should be loaded for register, login, and comment events.
4
  * Plugin URI: https://wpactivitylog.com/
5
  * Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
6
  * Author: WP White Security
7
+ * Version: 4.3.6
8
  * Text Domain: wp-security-audit-log
9
  * Author URI: https://www.wpwhitesecurity.com/
10
  * License: GPL2
17
 
18
  /*
19
  WP Activity Log
20
+ Copyright(c) 2021 WP White Security (email : info@wpwhitesecurity.com)
21
 
22
  This program is free software; you can redistribute it and/or modify
23
  it under the terms of the GNU General Public License, version 2, as
49
  *
50
  * @var string
51
  */
52
+ public $version = '4.3.6';
53
 
54
  /**
55
  * Plugin constants.
322
  return;
323
  }
324
 
 
 
 
325
  $this->define_constants();
326
  $this->set_allowed_html_tags();
327
  $this->includes();
334
  }
335
  }
336
 
337
+ /**
338
+ * Returns whether the plugin should load.
339
+ *
340
+ * @return bool Whether the plugin should load.
341
+ */
342
+ public function should_load() {
343
+ // Always load on the admin, except for the scenario when this plugin is being updated.
344
+ if ( is_admin() ) {
345
+ $acceptable_slugs = array(
346
+ 'wp-security-audit-log',
347
+ 'wp-activity-log',
348
+ );
349
+
350
+ // Check if this plugin is being updated from the plugin list.
351
+ if ( isset( $_REQUEST['action'] ) && 'update-plugin' === wp_unslash( trim( $_REQUEST['action'] ) )
352
+ && in_array( wp_unslash( trim( $_REQUEST['slug'] ) ), $acceptable_slugs ) ) {
353
+ return false;
354
+ }
355
+
356
+ // Check if this plugin is being updated using the file upload method.
357
+ if ( isset( $_REQUEST['action'] ) && 'upload-plugin' === wp_unslash( trim( $_REQUEST['action'] ) )
358
+ && isset( $_REQUEST['overwrite'] ) && 'update-plugin' === wp_unslash( trim( $_REQUEST['overwrite'] ) )
359
+ && isset( $_REQUEST['package'] )) {
360
+ /**
361
+ * Request doesn't contain the file name, but a numeric package ID.
362
+ *
363
+ * @see File_Upload_Upgrader::__construct()
364
+ */
365
+ $post_id = (int) $_REQUEST['package'];
366
+ $attachment = get_post( $post_id );
367
+ if ( ! empty( $attachment ) ) {
368
+ $filename = $attachment->post_title;
369
+ foreach ( $acceptable_slugs as $acceptable_slug ) {
370
+ if ( false !== strpos( $filename, $acceptable_slug ) ) {
371
+ return false;
372
+ }
373
+ }
374
+ }
375
+ }
376
+
377
+ // Check if this plugin is being updated from the WordPress updated screen (update-core.php).
378
+ if ( isset( $_REQUEST['action'] ) && 'do-plugin-upgrade' === wp_unslash( trim( $_REQUEST['action'] ) ) ) {
379
+ $selected_plugins = $_REQUEST['checked'];
380
+ if ( ! empty( $selected_plugins ) ) {
381
+ foreach ( $selected_plugins as $selected_plugin ) {
382
+ if ( 'wp-security-audit-log.php' === basename( $selected_plugin ) ) {
383
+ return false;
384
+ }
385
+ }
386
+ }
387
+ }
388
+
389
+ return true;
390
+ }
391
 
392
+ // Check conditions for frontend.
393
+ if ( self::is_frontend() && ! is_user_logged_in() && ! self::should_load_frontend() ) {
394
+ // User isn't logged in, and we aren't logging visitor events on front-end.
395
+ return false;
396
+ }
397
 
398
+ // Other contexts/scenarios.
399
+ if ( self::is_rest_api() ) {
400
+ return is_user_logged_in();
401
+ }
402
 
403
+ return true;
404
+ }
405
 
406
  /**
407
  * Checks to see if WSAL should be loaded for register, login, and comment events.