Version Description
(2021-04-22) =
Improvements * Redefined and improved the definitions of the activity log events. * Improved text for all the activity log events.
Download this release
Release Info
Developer | WPWhiteSecurity |
Plugin | WP Security Audit Log |
Version | 4.2.2 |
Comparing to | |
See all releases |
Code changes from version 4.2.1 to 4.2.2
- defaults.php +256 -333
- languages/wp-security-audit-log.pot +816 -844
- readme.txt +7 -1
- wp-security-audit-log.php +5 -2
defaults.php
CHANGED
@@ -180,7 +180,7 @@ function wsaldefaults_wsal_init() {
|
|
180 |
1000,
|
181 |
WSAL_LOW,
|
182 |
__( 'User logged in', 'wp-security-audit-log' ),
|
183 |
-
__( 'User logged in', 'wp-security-audit-log' ),
|
184 |
[],
|
185 |
[],
|
186 |
'user',
|
@@ -190,7 +190,7 @@ function wsaldefaults_wsal_init() {
|
|
190 |
1001,
|
191 |
WSAL_LOW,
|
192 |
__( 'User logged out', 'wp-security-audit-log' ),
|
193 |
-
__( 'User logged out', 'wp-security-audit-log' ),
|
194 |
[],
|
195 |
[],
|
196 |
'user',
|
@@ -200,7 +200,7 @@ function wsaldefaults_wsal_init() {
|
|
200 |
1002,
|
201 |
WSAL_MEDIUM,
|
202 |
__( 'Login failed', 'wp-security-audit-log' ),
|
203 |
-
__( '%Attempts% failed login(s)', 'wp-security-audit-log' ),
|
204 |
[],
|
205 |
[],
|
206 |
'user',
|
@@ -210,7 +210,7 @@ function wsaldefaults_wsal_init() {
|
|
210 |
1003,
|
211 |
WSAL_LOW,
|
212 |
__( 'Login failed / non existing user', 'wp-security-audit-log' ),
|
213 |
-
__( '%Attempts% failed login(s)', 'wp-security-audit-log' ),
|
214 |
[],
|
215 |
wsaldefaults_build_links( [ 'LogFileText' ] ),
|
216 |
'system',
|
@@ -232,7 +232,7 @@ function wsaldefaults_wsal_init() {
|
|
232 |
1005,
|
233 |
WSAL_LOW,
|
234 |
__( 'User logged in with existing session(s)', 'wp-security-audit-log' ),
|
235 |
-
__( 'User logged in
|
236 |
[
|
237 |
__( 'IP address(es)', 'wp-security-audit-log' ) => '%IPAddress%'
|
238 |
],
|
@@ -254,9 +254,8 @@ function wsaldefaults_wsal_init() {
|
|
254 |
1007,
|
255 |
WSAL_MEDIUM,
|
256 |
__( 'User session destroyed and logged out', 'wp-security-audit-log' ),
|
257 |
-
__( 'Terminated the session of
|
258 |
[
|
259 |
-
__( 'User', 'wp-security-audit-log' ) => '%TargetUserName%',
|
260 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
261 |
__( 'Session ID', 'wp-security-audit-log' ) => '%TargetSessionID%'
|
262 |
],
|
@@ -268,9 +267,8 @@ function wsaldefaults_wsal_init() {
|
|
268 |
1008,
|
269 |
WSAL_MEDIUM,
|
270 |
__( 'Switched to another user', 'wp-security-audit-log' ),
|
271 |
-
__( 'Switched to
|
272 |
[
|
273 |
-
__( 'User', 'wp-security-audit-log' ) => '%TargetUserName%',
|
274 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%'
|
275 |
],
|
276 |
[],
|
@@ -280,10 +278,9 @@ function wsaldefaults_wsal_init() {
|
|
280 |
array(
|
281 |
2010,
|
282 |
WSAL_MEDIUM,
|
283 |
-
__( 'User uploaded file
|
284 |
-
__( '
|
285 |
[
|
286 |
-
__( 'Filename', 'wp-security-audit-log' ) => '%FileName%',
|
287 |
__( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
|
288 |
],
|
289 |
[],
|
@@ -294,9 +291,8 @@ function wsaldefaults_wsal_init() {
|
|
294 |
2011,
|
295 |
WSAL_LOW,
|
296 |
__( 'User deleted file from Uploads directory', 'wp-security-audit-log' ),
|
297 |
-
__( '
|
298 |
[
|
299 |
-
__( 'Filename', 'wp-security-audit-log' ) => '%FileName%',
|
300 |
__( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
|
301 |
],
|
302 |
[],
|
@@ -322,13 +318,13 @@ function wsaldefaults_wsal_init() {
|
|
322 |
2000,
|
323 |
WSAL_INFORMATIONAL,
|
324 |
__( 'User created a new post and saved it as draft', 'wp-security-audit-log' ),
|
325 |
-
__( 'Created the post %PostTitle
|
326 |
[
|
327 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
328 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
329 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
330 |
],
|
331 |
-
wsaldefaults_build_links( [ '
|
332 |
'post',
|
333 |
'created'
|
334 |
),
|
@@ -336,13 +332,13 @@ function wsaldefaults_wsal_init() {
|
|
336 |
2001,
|
337 |
WSAL_LOW,
|
338 |
__( 'User published a post', 'wp-security-audit-log' ),
|
339 |
-
__( 'Published the post %PostTitle
|
340 |
[
|
341 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
342 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
343 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
344 |
],
|
345 |
-
wsaldefaults_build_links( [ '
|
346 |
'post',
|
347 |
'published'
|
348 |
),
|
@@ -350,13 +346,13 @@ function wsaldefaults_wsal_init() {
|
|
350 |
2002,
|
351 |
WSAL_LOW,
|
352 |
__( 'User modified a post', 'wp-security-audit-log' ),
|
353 |
-
__( 'Modified the post %PostTitle
|
354 |
[
|
355 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
356 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
357 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
358 |
],
|
359 |
-
wsaldefaults_build_links( [ '
|
360 |
'post',
|
361 |
'modified'
|
362 |
),
|
@@ -364,7 +360,7 @@ function wsaldefaults_wsal_init() {
|
|
364 |
2008,
|
365 |
WSAL_MEDIUM,
|
366 |
__( 'User permanently deleted a post from the trash', 'wp-security-audit-log' ),
|
367 |
-
__( 'Permanently deleted the post %PostTitle
|
368 |
[
|
369 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
370 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -378,13 +374,13 @@ function wsaldefaults_wsal_init() {
|
|
378 |
2012,
|
379 |
WSAL_MEDIUM,
|
380 |
__( 'User moved a post to the trash', 'wp-security-audit-log' ),
|
381 |
-
__( 'Moved the post %PostTitle% to trash', 'wp-security-audit-log' ),
|
382 |
[
|
383 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
384 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
385 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
386 |
],
|
387 |
-
wsaldefaults_build_links( [ '
|
388 |
'post',
|
389 |
'deleted'
|
390 |
),
|
@@ -392,13 +388,13 @@ function wsaldefaults_wsal_init() {
|
|
392 |
2014,
|
393 |
WSAL_LOW,
|
394 |
__( 'User restored a post from trash', 'wp-security-audit-log' ),
|
395 |
-
__( 'Restored the post %PostTitle% from trash', 'wp-security-audit-log' ),
|
396 |
[
|
397 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
398 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
399 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
400 |
],
|
401 |
-
wsaldefaults_build_links( [ '
|
402 |
'post',
|
403 |
'restored'
|
404 |
),
|
@@ -406,7 +402,7 @@ function wsaldefaults_wsal_init() {
|
|
406 |
2017,
|
407 |
WSAL_INFORMATIONAL,
|
408 |
__( 'User changed post URL', 'wp-security-audit-log' ),
|
409 |
-
__( 'Changed the URL of the post %PostTitle
|
410 |
[
|
411 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
412 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -422,15 +418,14 @@ function wsaldefaults_wsal_init() {
|
|
422 |
2019,
|
423 |
WSAL_INFORMATIONAL,
|
424 |
__( 'User changed post author', 'wp-security-audit-log' ),
|
425 |
-
__( 'Changed the author of the post %PostTitle%', 'wp-security-audit-log' ),
|
426 |
[
|
427 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
428 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
429 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
430 |
-
__( 'Previous author', 'wp-security-audit-log' ) => '%OldAuthor%'
|
431 |
-
__( 'New author', 'wp-security-audit-log' ) => '%NewAuthor%'
|
432 |
],
|
433 |
-
wsaldefaults_build_links( [ '
|
434 |
'post',
|
435 |
'modified'
|
436 |
),
|
@@ -438,14 +433,13 @@ function wsaldefaults_wsal_init() {
|
|
438 |
2021,
|
439 |
WSAL_MEDIUM,
|
440 |
__( 'User changed post status', 'wp-security-audit-log' ),
|
441 |
-
__( 'Changed the status of the post %PostTitle%', 'wp-security-audit-log' ),
|
442 |
[
|
443 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
444 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
445 |
-
__( 'Previous status', 'wp-security-audit-log' ) => '%OldStatus%'
|
446 |
-
__( 'New status', 'wp-security-audit-log' ) => '%NewStatus%'
|
447 |
],
|
448 |
-
wsaldefaults_build_links( [ '
|
449 |
'post',
|
450 |
'modified'
|
451 |
),
|
@@ -453,15 +447,14 @@ function wsaldefaults_wsal_init() {
|
|
453 |
2025,
|
454 |
WSAL_LOW,
|
455 |
__( 'User changed the visibility of a post', 'wp-security-audit-log' ),
|
456 |
-
__( 'Changed the visibility of the post %PostTitle%', 'wp-security-audit-log' ),
|
457 |
[
|
458 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
459 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
460 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
461 |
-
__( 'Previous visibility status', 'wp-security-audit-log' ) => '%OldVisibility%'
|
462 |
-
__( 'New visibility status', 'wp-security-audit-log' ) => '%NewVisibility%'
|
463 |
],
|
464 |
-
wsaldefaults_build_links( [ '
|
465 |
'post',
|
466 |
'modified'
|
467 |
),
|
@@ -469,15 +462,14 @@ function wsaldefaults_wsal_init() {
|
|
469 |
2027,
|
470 |
WSAL_INFORMATIONAL,
|
471 |
__( 'User changed the date of a post', 'wp-security-audit-log' ),
|
472 |
-
__( 'Changed the date of the post %PostTitle%', 'wp-security-audit-log' ),
|
473 |
[
|
474 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
475 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
476 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
477 |
-
__( 'Previous date', 'wp-security-audit-log' ) => '%OldDate%'
|
478 |
-
__( 'New date', 'wp-security-audit-log' ) => '%NewDate%'
|
479 |
],
|
480 |
-
wsaldefaults_build_links( [ '
|
481 |
'post',
|
482 |
'modified'
|
483 |
),
|
@@ -485,15 +477,14 @@ function wsaldefaults_wsal_init() {
|
|
485 |
2047,
|
486 |
WSAL_LOW,
|
487 |
__( 'User changed the parent of a page', 'wp-security-audit-log' ),
|
488 |
-
__( 'Changed the parent of the post %PostTitle%', 'wp-security-audit-log' ),
|
489 |
[
|
490 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
491 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
492 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
493 |
-
__( 'Previous parent', 'wp-security-audit-log' ) => '%OldParentName%'
|
494 |
-
__( 'New parent', 'wp-security-audit-log' ) => '%NewParentName%'
|
495 |
],
|
496 |
-
wsaldefaults_build_links( [ '
|
497 |
'post',
|
498 |
'modified'
|
499 |
),
|
@@ -501,15 +492,14 @@ function wsaldefaults_wsal_init() {
|
|
501 |
2048,
|
502 |
WSAL_LOW,
|
503 |
__( 'User changed the template of a page', 'wp-security-audit-log' ),
|
504 |
-
__( 'Changed the template of the post %PostTitle%', 'wp-security-audit-log' ),
|
505 |
[
|
506 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
507 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
508 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
509 |
-
__( 'Previous template', 'wp-security-audit-log' ) => '%OldTemplate%'
|
510 |
-
__( 'New template', 'wp-security-audit-log' ) => '%NewTemplate%'
|
511 |
],
|
512 |
-
wsaldefaults_build_links( [ '
|
513 |
'post',
|
514 |
'modified'
|
515 |
),
|
@@ -517,13 +507,13 @@ function wsaldefaults_wsal_init() {
|
|
517 |
2049,
|
518 |
WSAL_INFORMATIONAL,
|
519 |
__( 'User set a post as sticky', 'wp-security-audit-log' ),
|
520 |
-
__( 'Set the post %PostTitle% as sticky', 'wp-security-audit-log' ),
|
521 |
[
|
522 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
523 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
524 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
525 |
],
|
526 |
-
wsaldefaults_build_links( [ '
|
527 |
'post',
|
528 |
'modified'
|
529 |
),
|
@@ -531,13 +521,13 @@ function wsaldefaults_wsal_init() {
|
|
531 |
2050,
|
532 |
WSAL_INFORMATIONAL,
|
533 |
__( 'User removed post from sticky', 'wp-security-audit-log' ),
|
534 |
-
__( 'Removed the post %PostTitle% from sticky', 'wp-security-audit-log' ),
|
535 |
[
|
536 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
537 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
538 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
539 |
],
|
540 |
-
wsaldefaults_build_links( [ '
|
541 |
'post',
|
542 |
'modified'
|
543 |
),
|
@@ -545,13 +535,13 @@ function wsaldefaults_wsal_init() {
|
|
545 |
2065,
|
546 |
WSAL_LOW,
|
547 |
__( 'User modified the content of a post', 'wp-security-audit-log' ),
|
548 |
-
__( 'Modified the content of the post %PostTitle
|
549 |
[
|
550 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
551 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
552 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
553 |
],
|
554 |
-
wsaldefaults_build_links( [ 'RevisionLink', '
|
555 |
'post',
|
556 |
'modified'
|
557 |
),
|
@@ -559,13 +549,13 @@ function wsaldefaults_wsal_init() {
|
|
559 |
2073,
|
560 |
WSAL_INFORMATIONAL,
|
561 |
__( 'User submitted a post for review', 'wp-security-audit-log' ),
|
562 |
-
__( 'Submitted the post %PostTitle% for review', 'wp-security-audit-log' ),
|
563 |
[
|
564 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
565 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
566 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
567 |
],
|
568 |
-
wsaldefaults_build_links( [ '
|
569 |
'post',
|
570 |
'modified'
|
571 |
),
|
@@ -573,13 +563,13 @@ function wsaldefaults_wsal_init() {
|
|
573 |
2074,
|
574 |
WSAL_LOW,
|
575 |
__( 'User scheduled a post', 'wp-security-audit-log' ),
|
576 |
-
__( 'Scheduled the post %PostTitle% to be published on %PublishingDate
|
577 |
[
|
578 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
579 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
580 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
581 |
],
|
582 |
-
wsaldefaults_build_links( [ '
|
583 |
'post',
|
584 |
'modified'
|
585 |
),
|
@@ -587,14 +577,13 @@ function wsaldefaults_wsal_init() {
|
|
587 |
2086,
|
588 |
WSAL_INFORMATIONAL,
|
589 |
__( 'User changed title of a post', 'wp-security-audit-log' ),
|
590 |
-
__( 'Changed the title of the post %OldTitle%', 'wp-security-audit-log' ),
|
591 |
[
|
592 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
593 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
594 |
-
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
595 |
-
__( 'New title', 'wp-security-audit-log' ) => '%NewTitle%'
|
596 |
],
|
597 |
-
wsaldefaults_build_links( [ '
|
598 |
'post',
|
599 |
'modified'
|
600 |
),
|
@@ -602,13 +591,13 @@ function wsaldefaults_wsal_init() {
|
|
602 |
2100,
|
603 |
WSAL_INFORMATIONAL,
|
604 |
__( 'User opened a post in the editor', 'wp-security-audit-log' ),
|
605 |
-
__( 'Opened the post %PostTitle% in the editor', 'wp-security-audit-log' ),
|
606 |
[
|
607 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
608 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
609 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
610 |
],
|
611 |
-
wsaldefaults_build_links( [ '
|
612 |
'post',
|
613 |
'opened'
|
614 |
),
|
@@ -616,7 +605,7 @@ function wsaldefaults_wsal_init() {
|
|
616 |
2101,
|
617 |
WSAL_INFORMATIONAL,
|
618 |
__( 'User viewed a post', 'wp-security-audit-log' ),
|
619 |
-
__( 'Viewed the post %PostTitle
|
620 |
[
|
621 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
622 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -630,13 +619,13 @@ function wsaldefaults_wsal_init() {
|
|
630 |
2111,
|
631 |
WSAL_LOW,
|
632 |
__( 'User enabled/disabled comments in a post', 'wp-security-audit-log' ),
|
633 |
-
__( '
|
634 |
[
|
635 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
636 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
637 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
638 |
],
|
639 |
-
wsaldefaults_build_links( [ '
|
640 |
'post',
|
641 |
'enabled'
|
642 |
),
|
@@ -644,13 +633,13 @@ function wsaldefaults_wsal_init() {
|
|
644 |
2112,
|
645 |
WSAL_LOW,
|
646 |
__( 'User enabled/disabled trackbacks and pingbacks in a post', 'wp-security-audit-log' ),
|
647 |
-
__( 'Pingbacks and Trackbacks in the post %PostTitle
|
648 |
[
|
649 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
650 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
651 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
652 |
],
|
653 |
-
wsaldefaults_build_links( [ '
|
654 |
'post',
|
655 |
'enabled'
|
656 |
),
|
@@ -658,7 +647,7 @@ function wsaldefaults_wsal_init() {
|
|
658 |
2129,
|
659 |
WSAL_INFORMATIONAL,
|
660 |
__( 'User updated the excerpt in a post', 'wp-security-audit-log' ),
|
661 |
-
__( 'The excerpt of the post %PostTitle
|
662 |
[
|
663 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
664 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -666,7 +655,7 @@ function wsaldefaults_wsal_init() {
|
|
666 |
__( 'Previous excerpt entry', 'wp-security-audit-log' ) => '%old_post_excerpt%',
|
667 |
__( 'New excerpt entry', 'wp-security-audit-log' ) => '%post_excerpt%'
|
668 |
],
|
669 |
-
wsaldefaults_build_links( [ '
|
670 |
'post',
|
671 |
'modified'
|
672 |
),
|
@@ -674,7 +663,7 @@ function wsaldefaults_wsal_init() {
|
|
674 |
2130,
|
675 |
WSAL_INFORMATIONAL,
|
676 |
__( 'User updated the featured image in a post', 'wp-security-audit-log' ),
|
677 |
-
__( 'The featured image of the post %PostTitle
|
678 |
[
|
679 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
680 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -682,7 +671,7 @@ function wsaldefaults_wsal_init() {
|
|
682 |
__( 'Previous image', 'wp-security-audit-log' ) => '%previous_image%',
|
683 |
__( 'New image', 'wp-security-audit-log' ) => '%new_image%'
|
684 |
],
|
685 |
-
wsaldefaults_build_links( [ '
|
686 |
'post',
|
687 |
'modified'
|
688 |
),
|
@@ -693,7 +682,7 @@ function wsaldefaults_wsal_init() {
|
|
693 |
2119,
|
694 |
WSAL_INFORMATIONAL,
|
695 |
__( 'User added post tag', 'wp-security-audit-log' ),
|
696 |
-
__( 'Added tag(s) to the post %PostTitle
|
697 |
[
|
698 |
__( 'ID', 'wp-security-audit-log' ) => '%PostID%',
|
699 |
__( 'Type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -708,14 +697,14 @@ function wsaldefaults_wsal_init() {
|
|
708 |
2120,
|
709 |
WSAL_INFORMATIONAL,
|
710 |
__( 'User removed post tag', 'wp-security-audit-log' ),
|
711 |
-
__( 'Removed tag(s) from the post %PostTitle
|
712 |
[
|
713 |
__( 'ID', 'wp-security-audit-log' ) => '%PostID%',
|
714 |
__( 'Type', 'wp-security-audit-log' ) => '%PostType%',
|
715 |
__( 'Status', 'wp-security-audit-log' ) => '%PostStatus%',
|
716 |
__( 'Removed tag(s)', 'wp-security-audit-log' ) => '%tag%'
|
717 |
],
|
718 |
-
wsaldefaults_build_links( [ '
|
719 |
'post',
|
720 |
'modified'
|
721 |
),
|
@@ -723,7 +712,7 @@ function wsaldefaults_wsal_init() {
|
|
723 |
2121,
|
724 |
WSAL_INFORMATIONAL,
|
725 |
__( 'User created new tag', 'wp-security-audit-log' ),
|
726 |
-
__( 'Created the tag %TagName
|
727 |
[
|
728 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
729 |
],
|
@@ -735,7 +724,7 @@ function wsaldefaults_wsal_init() {
|
|
735 |
2122,
|
736 |
WSAL_LOW,
|
737 |
__( 'User deleted tag', 'wp-security-audit-log' ),
|
738 |
-
__( 'Deleted the tag %TagName
|
739 |
[
|
740 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
741 |
],
|
@@ -746,12 +735,10 @@ function wsaldefaults_wsal_init() {
|
|
746 |
array(
|
747 |
2123,
|
748 |
WSAL_INFORMATIONAL,
|
749 |
-
__( '
|
750 |
-
|
751 |
[
|
752 |
-
__( '
|
753 |
-
__( 'New name', 'wp-security-audit-log' ) => '%new_name%',
|
754 |
-
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%'
|
755 |
],
|
756 |
wsaldefaults_build_links( [ 'TagLink' ] ),
|
757 |
'tag',
|
@@ -761,10 +748,9 @@ function wsaldefaults_wsal_init() {
|
|
761 |
2124,
|
762 |
WSAL_INFORMATIONAL,
|
763 |
__( 'User changed tag slug', 'wp-security-audit-log' ),
|
764 |
-
__( 'Changed the slug of the tag %tag%', 'wp-security-audit-log' ),
|
765 |
[
|
766 |
-
__( 'Previous slug', 'wp-security-audit-log' ) => '%old_slug%'
|
767 |
-
__( 'New slug', 'wp-security-audit-log' ) => '%new_slug%'
|
768 |
],
|
769 |
wsaldefaults_build_links( [ 'TagLink' ] ),
|
770 |
'tag',
|
@@ -774,7 +760,7 @@ function wsaldefaults_wsal_init() {
|
|
774 |
2125,
|
775 |
WSAL_INFORMATIONAL,
|
776 |
__( 'User changed tag description', 'wp-security-audit-log' ),
|
777 |
-
__( 'Changed the description of the tag %tag
|
778 |
[
|
779 |
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%',
|
780 |
__( 'Previous description', 'wp-security-audit-log' ) => '%old_desc%',
|
@@ -791,15 +777,14 @@ function wsaldefaults_wsal_init() {
|
|
791 |
2016,
|
792 |
WSAL_LOW,
|
793 |
__( 'User changed post category', 'wp-security-audit-log' ),
|
794 |
-
__( 'Changed the category of the post %PostTitle%', 'wp-security-audit-log' ),
|
795 |
[
|
796 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
797 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
798 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
799 |
-
__( 'Previous category(ies)', 'wp-security-audit-log' ) => '%OldCategories%'
|
800 |
-
__( 'New category(ies)', 'wp-security-audit-log' ) => '%NewCategories%'
|
801 |
],
|
802 |
-
wsaldefaults_build_links( [ '
|
803 |
'post',
|
804 |
'modified'
|
805 |
),
|
@@ -807,7 +792,7 @@ function wsaldefaults_wsal_init() {
|
|
807 |
2023,
|
808 |
WSAL_MEDIUM,
|
809 |
__( 'User created new category', 'wp-security-audit-log' ),
|
810 |
-
__( 'Created the category %CategoryName
|
811 |
[
|
812 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
813 |
],
|
@@ -819,7 +804,7 @@ function wsaldefaults_wsal_init() {
|
|
819 |
2024,
|
820 |
WSAL_MEDIUM,
|
821 |
__( 'User deleted category', 'wp-security-audit-log' ),
|
822 |
-
__( 'Deleted the category %CategoryName
|
823 |
[
|
824 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
825 |
],
|
@@ -831,11 +816,10 @@ function wsaldefaults_wsal_init() {
|
|
831 |
2052,
|
832 |
WSAL_LOW,
|
833 |
__( 'Changed the parent of a category', 'wp-security-audit-log' ),
|
834 |
-
__( 'Changed the parent of the category %CategoryName%', 'wp-security-audit-log' ),
|
835 |
[
|
836 |
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%',
|
837 |
-
__( 'Previous parent', 'wp-security-audit-log' ) => '%OldParent%'
|
838 |
-
__( 'New parent', 'wp-security-audit-log' ) => '%NewParent%'
|
839 |
],
|
840 |
wsaldefaults_build_links( [ 'CategoryLink' ] ),
|
841 |
'category',
|
@@ -845,10 +829,8 @@ function wsaldefaults_wsal_init() {
|
|
845 |
2127,
|
846 |
WSAL_LOW,
|
847 |
__( 'User changed category name', 'wp-security-audit-log' ),
|
848 |
-
__( '
|
849 |
[
|
850 |
-
__( 'Previous name', 'wp-security-audit-log' ) => '%old_name%',
|
851 |
-
__( 'New name', 'wp-security-audit-log' ) => '%new_name%',
|
852 |
__( 'Slug', 'wp-security-audit-log' ) => '%slug%'
|
853 |
],
|
854 |
wsaldefaults_build_links( [ 'cat_link' ] ),
|
@@ -859,10 +841,9 @@ function wsaldefaults_wsal_init() {
|
|
859 |
2128,
|
860 |
WSAL_LOW,
|
861 |
__( 'User changed category slug', 'wp-security-audit-log' ),
|
862 |
-
__( 'Changed the slug of the category %CategoryName%', 'wp-security-audit-log' ),
|
863 |
[
|
864 |
-
__( 'Previous slug', 'wp-security-audit-log' ) => '%old_slug%'
|
865 |
-
__( 'New slug', 'wp-security-audit-log' ) => '%new_slug%'
|
866 |
],
|
867 |
wsaldefaults_build_links( [ 'cat_link' ] ),
|
868 |
'category',
|
@@ -875,14 +856,14 @@ function wsaldefaults_wsal_init() {
|
|
875 |
2053,
|
876 |
WSAL_LOW,
|
877 |
__( 'User created a custom field for a post', 'wp-security-audit-log' ),
|
878 |
-
__( 'Created the new custom field %MetaKey% in the post %PostTitle
|
879 |
[
|
880 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
881 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
882 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
883 |
__( 'Custom field value', 'wp-security-audit-log' ) => '%MetaValue%'
|
884 |
],
|
885 |
-
wsaldefaults_build_links( [ '
|
886 |
'post',
|
887 |
'modified'
|
888 |
),
|
@@ -890,7 +871,7 @@ function wsaldefaults_wsal_init() {
|
|
890 |
2054,
|
891 |
WSAL_LOW,
|
892 |
__( 'User updated a custom field value for a post', 'wp-security-audit-log' ),
|
893 |
-
__( 'Modified the value of the custom field %
|
894 |
[
|
895 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
896 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -898,7 +879,7 @@ function wsaldefaults_wsal_init() {
|
|
898 |
__( 'Previous custom field value', 'wp-security-audit-log' ) => '%MetaValueOld%',
|
899 |
__( 'New custom field value', 'wp-security-audit-log' ) => '%MetaValueNew%'
|
900 |
],
|
901 |
-
wsaldefaults_build_links( [ '
|
902 |
'custom-field',
|
903 |
'modified'
|
904 |
),
|
@@ -906,13 +887,13 @@ function wsaldefaults_wsal_init() {
|
|
906 |
2055,
|
907 |
WSAL_MEDIUM,
|
908 |
__( 'User deleted a custom field from a post', 'wp-security-audit-log' ),
|
909 |
-
__( 'Deleted the custom field %MetaKey% from the post %PostTitle
|
910 |
[
|
911 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
912 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
913 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
914 |
],
|
915 |
-
wsaldefaults_build_links( [ '
|
916 |
'custom-field',
|
917 |
'deleted'
|
918 |
),
|
@@ -920,16 +901,14 @@ function wsaldefaults_wsal_init() {
|
|
920 |
2062,
|
921 |
WSAL_LOW,
|
922 |
__( 'User updated a custom field name for a post', 'wp-security-audit-log' ),
|
923 |
-
__( '
|
924 |
[
|
925 |
-
__( 'Previous custom field name', 'wp-security-audit-log' ) => '%MetaKeyOld%',
|
926 |
-
__( 'New custom field name', 'wp-security-audit-log' ) => '%MetaKeyNew%',
|
927 |
__( 'Post', 'wp-security-audit-log' ) => '%PostTitle%',
|
928 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
929 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
930 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
931 |
],
|
932 |
-
wsaldefaults_build_links( [ '
|
933 |
'custom-field',
|
934 |
'renamed'
|
935 |
),
|
@@ -940,7 +919,7 @@ function wsaldefaults_wsal_init() {
|
|
940 |
2131,
|
941 |
WSAL_LOW,
|
942 |
__( 'User added relationship to a custom field value for a post', 'wp-security-audit-log' ),
|
943 |
-
__( 'Added relationships to the custom field %MetaKey% in the post %PostTitle
|
944 |
[
|
945 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
946 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -955,7 +934,7 @@ function wsaldefaults_wsal_init() {
|
|
955 |
2132,
|
956 |
WSAL_LOW,
|
957 |
__( 'User removed relationship from a custom field value for a post', 'wp-security-audit-log' ),
|
958 |
-
__( 'Removed relationships from the custom field %MetaKey% in the post %PostTitle
|
959 |
[
|
960 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
961 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -976,14 +955,14 @@ function wsaldefaults_wsal_init() {
|
|
976 |
2090,
|
977 |
WSAL_INFORMATIONAL,
|
978 |
__( 'User approved a comment', 'wp-security-audit-log' ),
|
979 |
-
__( 'Approved the comment posted by %Author% on the post %PostTitle
|
980 |
[
|
981 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
982 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
983 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
984 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
985 |
],
|
986 |
-
wsaldefaults_build_links( [ '
|
987 |
'comment',
|
988 |
'approved'
|
989 |
),
|
@@ -991,14 +970,14 @@ function wsaldefaults_wsal_init() {
|
|
991 |
2091,
|
992 |
WSAL_INFORMATIONAL,
|
993 |
__( 'User unapproved a comment', 'wp-security-audit-log' ),
|
994 |
-
__( 'Unapproved the comment posted by %Author% on the post %PostTitle
|
995 |
[
|
996 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
997 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
998 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
999 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1000 |
],
|
1001 |
-
wsaldefaults_build_links( [ '
|
1002 |
'comment',
|
1003 |
'unapproved'
|
1004 |
),
|
@@ -1006,14 +985,14 @@ function wsaldefaults_wsal_init() {
|
|
1006 |
2092,
|
1007 |
WSAL_INFORMATIONAL,
|
1008 |
__( 'User replied to a comment', 'wp-security-audit-log' ),
|
1009 |
-
__( 'Replied to the comment posted by %Author% on the post %PostTitle
|
1010 |
[
|
1011 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1012 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1013 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1014 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1015 |
],
|
1016 |
-
wsaldefaults_build_links( [ '
|
1017 |
'comment',
|
1018 |
'created'
|
1019 |
),
|
@@ -1021,14 +1000,14 @@ function wsaldefaults_wsal_init() {
|
|
1021 |
2093,
|
1022 |
WSAL_LOW,
|
1023 |
__( 'User edited a comment', 'wp-security-audit-log' ),
|
1024 |
-
__( 'Edited the comment posted by %Author% on the post %PostTitle
|
1025 |
[
|
1026 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1027 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1028 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1029 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1030 |
],
|
1031 |
-
wsaldefaults_build_links( [ '
|
1032 |
'comment',
|
1033 |
'modified'
|
1034 |
),
|
@@ -1036,14 +1015,14 @@ function wsaldefaults_wsal_init() {
|
|
1036 |
2094,
|
1037 |
WSAL_INFORMATIONAL,
|
1038 |
__( 'User marked a comment as Spam', 'wp-security-audit-log' ),
|
1039 |
-
__( 'Marked the comment posted by %Author% on the post %PostTitle% as
|
1040 |
[
|
1041 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1042 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1043 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1044 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1045 |
],
|
1046 |
-
wsaldefaults_build_links( [ '
|
1047 |
'comment',
|
1048 |
'unapproved'
|
1049 |
),
|
@@ -1051,14 +1030,14 @@ function wsaldefaults_wsal_init() {
|
|
1051 |
2095,
|
1052 |
WSAL_LOW,
|
1053 |
__( 'User marked a comment as Not Spam', 'wp-security-audit-log' ),
|
1054 |
-
__( 'Marked the comment posted by %Author% on the post %PostTitle% as not spam', 'wp-security-audit-log' ),
|
1055 |
[
|
1056 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1057 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1058 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1059 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1060 |
],
|
1061 |
-
wsaldefaults_build_links( [ '
|
1062 |
'comment',
|
1063 |
'approved'
|
1064 |
),
|
@@ -1066,14 +1045,14 @@ function wsaldefaults_wsal_init() {
|
|
1066 |
2096,
|
1067 |
WSAL_LOW,
|
1068 |
__( 'User moved a comment to trash', 'wp-security-audit-log' ),
|
1069 |
-
__( 'Moved the comment posted by %Author% on the post %PostTitle% to trash', 'wp-security-audit-log' ),
|
1070 |
[
|
1071 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1072 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1073 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1074 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1075 |
],
|
1076 |
-
wsaldefaults_build_links( [ '
|
1077 |
'comment',
|
1078 |
'deleted'
|
1079 |
),
|
@@ -1081,14 +1060,14 @@ function wsaldefaults_wsal_init() {
|
|
1081 |
2097,
|
1082 |
WSAL_INFORMATIONAL,
|
1083 |
__( 'User restored a comment from the trash', 'wp-security-audit-log' ),
|
1084 |
-
__( 'Restored the comment posted by %Author% on the post %PostTitle% from trash', 'wp-security-audit-log' ),
|
1085 |
[
|
1086 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1087 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1088 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1089 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1090 |
],
|
1091 |
-
wsaldefaults_build_links( [ '
|
1092 |
'comment',
|
1093 |
'restored'
|
1094 |
),
|
@@ -1096,14 +1075,14 @@ function wsaldefaults_wsal_init() {
|
|
1096 |
2098,
|
1097 |
WSAL_LOW,
|
1098 |
__( 'User permanently deleted a comment', 'wp-security-audit-log' ),
|
1099 |
-
__( 'Permanently deleted the comment posted by %Author% on the post %PostTitle
|
1100 |
[
|
1101 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1102 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1103 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1104 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1105 |
],
|
1106 |
-
wsaldefaults_build_links( [ '
|
1107 |
'comment',
|
1108 |
'deleted'
|
1109 |
),
|
@@ -1111,14 +1090,14 @@ function wsaldefaults_wsal_init() {
|
|
1111 |
2099,
|
1112 |
WSAL_INFORMATIONAL,
|
1113 |
__( 'User posted a comment', 'wp-security-audit-log' ),
|
1114 |
-
__( 'Posted a comment on the post %PostTitle
|
1115 |
[
|
1116 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1117 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1118 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1119 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1120 |
],
|
1121 |
-
wsaldefaults_build_links( [ '
|
1122 |
'comment',
|
1123 |
'created'
|
1124 |
),
|
@@ -1130,14 +1109,14 @@ function wsaldefaults_wsal_init() {
|
|
1130 |
2126,
|
1131 |
WSAL_INFORMATIONAL,
|
1132 |
__( 'Visitor posted a comment', 'wp-security-audit-log' ),
|
1133 |
-
__( 'Posted a comment on the post %PostTitle
|
1134 |
[
|
1135 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1136 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1137 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1138 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1139 |
],
|
1140 |
-
wsaldefaults_build_links( [ '
|
1141 |
'comment',
|
1142 |
'created'
|
1143 |
),
|
@@ -1181,7 +1160,7 @@ function wsaldefaults_wsal_init() {
|
|
1181 |
2045,
|
1182 |
WSAL_LOW,
|
1183 |
__( 'User moved widget', 'wp-security-audit-log' ),
|
1184 |
-
__( 'Moved the %WidgetName% widget', 'wp-security-audit-log' ),
|
1185 |
[
|
1186 |
__( 'From', 'wp-security-audit-log' ) => '%OldSidebar%',
|
1187 |
__( 'To', 'wp-security-audit-log' ) => '%NewSidebar%'
|
@@ -1210,7 +1189,7 @@ function wsaldefaults_wsal_init() {
|
|
1210 |
2078,
|
1211 |
WSAL_LOW,
|
1212 |
__( 'User created new menu', 'wp-security-audit-log' ),
|
1213 |
-
__( 'New menu called %MenuName
|
1214 |
[],
|
1215 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1216 |
'menu',
|
@@ -1220,10 +1199,9 @@ function wsaldefaults_wsal_init() {
|
|
1220 |
2079,
|
1221 |
WSAL_LOW,
|
1222 |
__( 'User added content to a menu', 'wp-security-audit-log' ),
|
1223 |
-
__( 'Added
|
1224 |
[
|
1225 |
-
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
1226 |
-
__( 'Item name', 'wp-security-audit-log' ) => '%ContentName%'
|
1227 |
],
|
1228 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1229 |
'menu',
|
@@ -1233,10 +1211,9 @@ function wsaldefaults_wsal_init() {
|
|
1233 |
2080,
|
1234 |
WSAL_LOW,
|
1235 |
__( 'User removed content from a menu', 'wp-security-audit-log' ),
|
1236 |
-
__( 'Removed item from the menu %MenuName
|
1237 |
[
|
1238 |
-
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
1239 |
-
__( 'Item name', 'wp-security-audit-log' ) => '%ContentName%'
|
1240 |
],
|
1241 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1242 |
'menu',
|
@@ -1246,7 +1223,7 @@ function wsaldefaults_wsal_init() {
|
|
1246 |
2081,
|
1247 |
WSAL_MEDIUM,
|
1248 |
__( 'User deleted menu', 'wp-security-audit-log' ),
|
1249 |
-
__( 'Deleted the menu %MenuName
|
1250 |
[],
|
1251 |
[],
|
1252 |
'menu',
|
@@ -1256,10 +1233,8 @@ function wsaldefaults_wsal_init() {
|
|
1256 |
2082,
|
1257 |
WSAL_LOW,
|
1258 |
__( 'User changed menu setting', 'wp-security-audit-log' ),
|
1259 |
-
__( 'The setting in the %MenuName
|
1260 |
-
[
|
1261 |
-
__( 'Setting', 'wp-security-audit-log' ) => '%MenuSetting%'
|
1262 |
-
],
|
1263 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1264 |
'menu',
|
1265 |
'enabled'
|
@@ -1268,10 +1243,9 @@ function wsaldefaults_wsal_init() {
|
|
1268 |
2083,
|
1269 |
WSAL_LOW,
|
1270 |
__( 'User modified content in a menu', 'wp-security-audit-log' ),
|
1271 |
-
__( 'Modified
|
1272 |
[
|
1273 |
-
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
1274 |
-
__( 'Item name', 'wp-security-audit-log' ) => '%ContentName%'
|
1275 |
],
|
1276 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1277 |
'menu',
|
@@ -1281,11 +1255,8 @@ function wsaldefaults_wsal_init() {
|
|
1281 |
2084,
|
1282 |
WSAL_LOW,
|
1283 |
__( 'User changed name of a menu', 'wp-security-audit-log' ),
|
1284 |
-
__( '
|
1285 |
-
[
|
1286 |
-
__( 'Previous name', 'wp-security-audit-log' ) => '%OldMenuName%',
|
1287 |
-
__( 'New name', 'wp-security-audit-log' ) => '%MenuName%'
|
1288 |
-
],
|
1289 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1290 |
'menu',
|
1291 |
'renamed'
|
@@ -1294,7 +1265,7 @@ function wsaldefaults_wsal_init() {
|
|
1294 |
2085,
|
1295 |
WSAL_LOW,
|
1296 |
__( 'User changed order of the objects in a menu', 'wp-security-audit-log' ),
|
1297 |
-
__( 'Changed the order of the items in the menu %MenuName
|
1298 |
[],
|
1299 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1300 |
'menu',
|
@@ -1304,9 +1275,8 @@ function wsaldefaults_wsal_init() {
|
|
1304 |
2089,
|
1305 |
WSAL_LOW,
|
1306 |
__( 'User moved objects as a sub-item', 'wp-security-audit-log' ),
|
1307 |
-
'',
|
1308 |
[
|
1309 |
-
__( 'Menu name', 'wp-security-audit-log' ) => '%MenuName%',
|
1310 |
__( 'Moved item', 'wp-security-audit-log' ) => '%ItemName%',
|
1311 |
__( 'as a sub-item of', 'wp-security-audit-log' ) => '%ParentName%'
|
1312 |
],
|
@@ -1705,10 +1675,9 @@ function wsaldefaults_wsal_init() {
|
|
1705 |
4000,
|
1706 |
WSAL_CRITICAL,
|
1707 |
__( 'New user was created on WordPress', 'wp-security-audit-log' ),
|
1708 |
-
__( '
|
1709 |
[
|
1710 |
-
__( 'User', 'wp-security-audit-log' ) => '%NewUserData->Username%'
|
1711 |
-
__( 'Role', 'wp-security-audit-log' ) => '%NewUserData->Roles%'
|
1712 |
],
|
1713 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1714 |
'user',
|
@@ -1718,9 +1687,8 @@ function wsaldefaults_wsal_init() {
|
|
1718 |
4001,
|
1719 |
WSAL_CRITICAL,
|
1720 |
__( 'User created another WordPress user', 'wp-security-audit-log' ),
|
1721 |
-
__( '
|
1722 |
[
|
1723 |
-
__( 'New user', 'wp-security-audit-log' ) => '%NewUserData->Username%',
|
1724 |
__( 'Role', 'wp-security-audit-log' ) => '%NewUserData->Roles%',
|
1725 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
1726 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
@@ -1733,10 +1701,9 @@ function wsaldefaults_wsal_init() {
|
|
1733 |
4002,
|
1734 |
WSAL_CRITICAL,
|
1735 |
__( 'The role of a user was changed by another WordPress user', 'wp-security-audit-log' ),
|
1736 |
-
__( 'Changed the role of user %TargetUsername%', 'wp-security-audit-log' ),
|
1737 |
[
|
1738 |
__( 'Previous role', 'wp-security-audit-log' ) => '%OldRole%',
|
1739 |
-
__( 'New role', 'wp-security-audit-log' ) => '%NewRole%',
|
1740 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1741 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%'
|
1742 |
],
|
@@ -1748,7 +1715,7 @@ function wsaldefaults_wsal_init() {
|
|
1748 |
4003,
|
1749 |
WSAL_HIGH,
|
1750 |
__( 'User has changed his or her password', 'wp-security-audit-log' ),
|
1751 |
-
__( 'Changed the password', 'wp-security-audit-log' ),
|
1752 |
[
|
1753 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1754 |
__( 'First name', 'wp-security-audit-log' ) => '%TargetUserData->FirstName%',
|
@@ -1762,7 +1729,7 @@ function wsaldefaults_wsal_init() {
|
|
1762 |
4004,
|
1763 |
WSAL_HIGH,
|
1764 |
__( 'User changed another user\'s password', 'wp-security-audit-log' ),
|
1765 |
-
__( 'Changed the password of the user %TargetUserData->Username
|
1766 |
[
|
1767 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1768 |
__( 'First name', 'wp-security-audit-log' ) => '%TargetUserData->FirstName%',
|
@@ -1776,13 +1743,12 @@ function wsaldefaults_wsal_init() {
|
|
1776 |
4005,
|
1777 |
WSAL_MEDIUM,
|
1778 |
__( 'User changed his or her email address', 'wp-security-audit-log' ),
|
1779 |
-
__( 'Changed the email address', 'wp-security-audit-log' ),
|
1780 |
[
|
1781 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1782 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1783 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1784 |
-
__( 'Previous email address', 'wp-security-audit-log' ) => '%OldEmail%'
|
1785 |
-
__( 'New email address', 'wp-security-audit-log' ) => '%NewEmail%'
|
1786 |
],
|
1787 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1788 |
'user',
|
@@ -1792,13 +1758,12 @@ function wsaldefaults_wsal_init() {
|
|
1792 |
4006,
|
1793 |
WSAL_MEDIUM,
|
1794 |
__( 'User changed another user\'s email address', 'wp-security-audit-log' ),
|
1795 |
-
__( 'Changed the email address of the user %TargetUsername%', 'wp-security-audit-log' ),
|
1796 |
[
|
1797 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1798 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1799 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1800 |
-
__( 'Previous email address', 'wp-security-audit-log' ) => '%OldEmail%'
|
1801 |
-
__( 'New email address', 'wp-security-audit-log' ) => '%NewEmail%'
|
1802 |
],
|
1803 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1804 |
'user',
|
@@ -1808,9 +1773,8 @@ function wsaldefaults_wsal_init() {
|
|
1808 |
4007,
|
1809 |
WSAL_HIGH,
|
1810 |
__( 'User was deleted by another user', 'wp-security-audit-log' ),
|
1811 |
-
__( '
|
1812 |
[
|
1813 |
-
__( 'User', 'wp-security-audit-log' ) => '%TargetUserData->Username%',
|
1814 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1815 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
1816 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
@@ -1823,7 +1787,7 @@ function wsaldefaults_wsal_init() {
|
|
1823 |
4014,
|
1824 |
WSAL_INFORMATIONAL,
|
1825 |
__( 'User opened the profile page of another user', 'wp-security-audit-log' ),
|
1826 |
-
__( '
|
1827 |
[
|
1828 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1829 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
@@ -1837,12 +1801,11 @@ function wsaldefaults_wsal_init() {
|
|
1837 |
4015,
|
1838 |
WSAL_LOW,
|
1839 |
__( 'User updated a custom field value for a user', 'wp-security-audit-log' ),
|
1840 |
-
__( 'Changed the value of
|
1841 |
[
|
1842 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1843 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1844 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1845 |
-
__( 'Custom field', 'wp-security-audit-log' ) => '%custom_field_name%',
|
1846 |
__( 'Previous value', 'wp-security-audit-log' ) => '%old_value%',
|
1847 |
__( 'New value', 'wp-security-audit-log' ) => '%new_value%'
|
1848 |
],
|
@@ -1854,12 +1817,11 @@ function wsaldefaults_wsal_init() {
|
|
1854 |
4016,
|
1855 |
WSAL_LOW,
|
1856 |
__( 'User created a custom field value for a user', 'wp-security-audit-log' ),
|
1857 |
-
__( 'Created
|
1858 |
[
|
1859 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1860 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1861 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1862 |
-
__( 'Custom field', 'wp-security-audit-log' ) => '%custom_field_name%',
|
1863 |
__( 'Custom field value', 'wp-security-audit-log' ) => '%new_value%'
|
1864 |
],
|
1865 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
@@ -1870,11 +1832,10 @@ function wsaldefaults_wsal_init() {
|
|
1870 |
4017,
|
1871 |
WSAL_INFORMATIONAL,
|
1872 |
__( 'User changed first name for a user', 'wp-security-audit-log' ),
|
1873 |
-
__( 'Changed the first name of the user %TargetUsername%', 'wp-security-audit-log' ),
|
1874 |
[
|
1875 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1876 |
__( 'Previous name', 'wp-security-audit-log' ) => '%old_firstname%',
|
1877 |
-
__( 'New name', 'wp-security-audit-log' ) => '%new_firstname%',
|
1878 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%'
|
1879 |
],
|
1880 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
@@ -1885,12 +1846,11 @@ function wsaldefaults_wsal_init() {
|
|
1885 |
4018,
|
1886 |
WSAL_INFORMATIONAL,
|
1887 |
__( 'User changed last name for a user', 'wp-security-audit-log' ),
|
1888 |
-
__( 'Changed the last name of the user %TargetUsername%', 'wp-security-audit-log' ),
|
1889 |
[
|
1890 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1891 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1892 |
-
__( 'Previous last name', 'wp-security-audit-log' ) => '%old_lastname%'
|
1893 |
-
__( 'New last name', 'wp-security-audit-log' ) => '%new_lastname%'
|
1894 |
],
|
1895 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1896 |
'user',
|
@@ -1900,13 +1860,12 @@ function wsaldefaults_wsal_init() {
|
|
1900 |
4019,
|
1901 |
WSAL_INFORMATIONAL,
|
1902 |
__( 'User changed nickname for a user', 'wp-security-audit-log' ),
|
1903 |
-
__( 'Changed the nickname of the user %TargetUsername%', 'wp-security-audit-log' ),
|
1904 |
[
|
1905 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1906 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1907 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1908 |
-
__( 'Previous nickname', 'wp-security-audit-log' ) => '%old_nickname%'
|
1909 |
-
__( 'New nickname', 'wp-security-audit-log' ) => '%new_nickname%'
|
1910 |
],
|
1911 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1912 |
'user',
|
@@ -1916,13 +1875,12 @@ function wsaldefaults_wsal_init() {
|
|
1916 |
4020,
|
1917 |
WSAL_LOW,
|
1918 |
__( 'User changed the display name for a user', 'wp-security-audit-log' ),
|
1919 |
-
__( 'Changed the display name of the user %TargetUsername%', 'wp-security-audit-log' ),
|
1920 |
[
|
1921 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1922 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1923 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1924 |
-
__( 'Previous display name', 'wp-security-audit-log' ) => '%old_displayname%'
|
1925 |
-
__( 'New display name', 'wp-security-audit-log' ) => '%new_displayname%'
|
1926 |
],
|
1927 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1928 |
'user',
|
@@ -1933,12 +1891,11 @@ function wsaldefaults_wsal_init() {
|
|
1933 |
4025,
|
1934 |
WSAL_CRITICAL,
|
1935 |
__( 'User created an application password', 'wp-security-audit-log' ),
|
1936 |
-
__( '
|
1937 |
[
|
1938 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1939 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1940 |
-
__( 'Last name', 'wp-security-audit-log' ) => '%lastname%'
|
1941 |
-
__( 'Application password friendly name', 'wp-security-audit-log' ) => '%friendly_name%'
|
1942 |
],
|
1943 |
[],
|
1944 |
'user',
|
@@ -1948,12 +1905,11 @@ function wsaldefaults_wsal_init() {
|
|
1948 |
4026,
|
1949 |
WSAL_CRITICAL,
|
1950 |
__( 'User created an application password', 'wp-security-audit-log' ),
|
1951 |
-
__( '
|
1952 |
[
|
1953 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1954 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1955 |
-
__( 'Last name', 'wp-security-audit-log' ) => '%lastname%'
|
1956 |
-
__( 'Application password friendly name', 'wp-security-audit-log' ) => '%friendly_name%'
|
1957 |
],
|
1958 |
[],
|
1959 |
'user',
|
@@ -1964,7 +1920,7 @@ function wsaldefaults_wsal_init() {
|
|
1964 |
4027,
|
1965 |
WSAL_HIGH,
|
1966 |
__( 'User revoked all application passwords', 'wp-security-audit-log' ),
|
1967 |
-
__( 'All application passwords', 'wp-security-audit-log' ),
|
1968 |
[
|
1969 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1970 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
@@ -1978,7 +1934,7 @@ function wsaldefaults_wsal_init() {
|
|
1978 |
4028,
|
1979 |
WSAL_HIGH,
|
1980 |
__( 'User revoked all application passwords for a user', 'wp-security-audit-log' ),
|
1981 |
-
__( 'All application passwords from the user %login
|
1982 |
[
|
1983 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1984 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
@@ -1992,7 +1948,7 @@ function wsaldefaults_wsal_init() {
|
|
1992 |
4029,
|
1993 |
WSAL_HIGH,
|
1994 |
__( 'Admin sent a password reset request to a user', 'wp-security-audit-log' ),
|
1995 |
-
__( 'Sent a password reset request to the user %login
|
1996 |
[
|
1997 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1998 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
@@ -2009,7 +1965,7 @@ function wsaldefaults_wsal_init() {
|
|
2009 |
4008,
|
2010 |
WSAL_CRITICAL,
|
2011 |
__( 'User granted Super Admin privileges', 'wp-security-audit-log' ),
|
2012 |
-
__( 'Granted Super Admin privileges to %TargetUsername
|
2013 |
[
|
2014 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
2015 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
@@ -2023,7 +1979,7 @@ function wsaldefaults_wsal_init() {
|
|
2023 |
4009,
|
2024 |
WSAL_CRITICAL,
|
2025 |
__( 'User revoked from Super Admin privileges', 'wp-security-audit-log' ),
|
2026 |
-
__( 'Revoked Super Admin privileges from %TargetUsername
|
2027 |
[
|
2028 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
2029 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
@@ -2037,7 +1993,7 @@ function wsaldefaults_wsal_init() {
|
|
2037 |
4010,
|
2038 |
WSAL_MEDIUM,
|
2039 |
__( 'Existing user added to a site', 'wp-security-audit-log' ),
|
2040 |
-
__( 'Added user %TargetUsername% to site
|
2041 |
[
|
2042 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
2043 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
@@ -2051,7 +2007,7 @@ function wsaldefaults_wsal_init() {
|
|
2051 |
4011,
|
2052 |
WSAL_MEDIUM,
|
2053 |
__( 'User removed from site', 'wp-security-audit-log' ),
|
2054 |
-
__( 'Removed user %TargetUsername% from site
|
2055 |
[
|
2056 |
__( 'Site role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
2057 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
@@ -2065,7 +2021,7 @@ function wsaldefaults_wsal_init() {
|
|
2065 |
4012,
|
2066 |
WSAL_CRITICAL,
|
2067 |
__( 'New network user created', 'wp-security-audit-log' ),
|
2068 |
-
__( 'Created
|
2069 |
[
|
2070 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
2071 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
@@ -2083,9 +2039,8 @@ function wsaldefaults_wsal_init() {
|
|
2083 |
5000,
|
2084 |
WSAL_CRITICAL,
|
2085 |
__( 'User installed a plugin', 'wp-security-audit-log' ),
|
2086 |
-
__( '
|
2087 |
[
|
2088 |
-
__( 'Name', 'wp-security-audit-log' ) => '%Plugin->Name%',
|
2089 |
__( 'Version', 'wp-security-audit-log' ) => '%Plugin->Version%',
|
2090 |
__( 'Install location', 'wp-security-audit-log' ) => '%Plugin->plugin_dir_path%'
|
2091 |
],
|
@@ -2097,9 +2052,8 @@ function wsaldefaults_wsal_init() {
|
|
2097 |
5001,
|
2098 |
WSAL_HIGH,
|
2099 |
__( 'User activated a WordPress plugin', 'wp-security-audit-log' ),
|
2100 |
-
__( '
|
2101 |
[
|
2102 |
-
__( 'Name', 'wp-security-audit-log' ) => '%PluginData->Name%',
|
2103 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2104 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2105 |
],
|
@@ -2111,9 +2065,8 @@ function wsaldefaults_wsal_init() {
|
|
2111 |
5002,
|
2112 |
WSAL_HIGH,
|
2113 |
__( 'User deactivated a WordPress plugin', 'wp-security-audit-log' ),
|
2114 |
-
__( '
|
2115 |
[
|
2116 |
-
__( 'Name', 'wp-security-audit-log' ) => '%PluginData->Name%',
|
2117 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2118 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2119 |
],
|
@@ -2125,9 +2078,8 @@ function wsaldefaults_wsal_init() {
|
|
2125 |
5003,
|
2126 |
WSAL_HIGH,
|
2127 |
__( 'User uninstalled a plugin', 'wp-security-audit-log' ),
|
2128 |
-
__( '
|
2129 |
[
|
2130 |
-
__( 'Name', 'wp-security-audit-log' ) => '%PluginData->Name%',
|
2131 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2132 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2133 |
],
|
@@ -2139,9 +2091,8 @@ function wsaldefaults_wsal_init() {
|
|
2139 |
5004,
|
2140 |
WSAL_LOW,
|
2141 |
__( 'User upgraded a plugin', 'wp-security-audit-log' ),
|
2142 |
-
__( '
|
2143 |
[
|
2144 |
-
__( 'Name', 'wp-security-audit-log' ) => '%PluginData->Name%',
|
2145 |
__( 'Updated version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2146 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2147 |
],
|
@@ -2153,10 +2104,9 @@ function wsaldefaults_wsal_init() {
|
|
2153 |
5010,
|
2154 |
WSAL_LOW,
|
2155 |
__( 'Plugin created table', 'wp-security-audit-log' ),
|
2156 |
-
__( 'Plugin created this table in the database', 'wp-security-audit-log' ),
|
2157 |
[
|
2158 |
-
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
2159 |
-
__( 'Plugin', 'wp-security-audit-log' ) => '%Plugin->Name%'
|
2160 |
],
|
2161 |
[],
|
2162 |
'database',
|
@@ -2166,10 +2116,9 @@ function wsaldefaults_wsal_init() {
|
|
2166 |
5011,
|
2167 |
WSAL_LOW,
|
2168 |
__( 'Plugin modified table structure', 'wp-security-audit-log' ),
|
2169 |
-
__( 'Plugin modified the structure of
|
2170 |
[
|
2171 |
-
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
2172 |
-
__( 'Plugin', 'wp-security-audit-log' ) => '%Plugin->Name%'
|
2173 |
],
|
2174 |
[],
|
2175 |
'database',
|
@@ -2179,10 +2128,9 @@ function wsaldefaults_wsal_init() {
|
|
2179 |
5012,
|
2180 |
WSAL_MEDIUM,
|
2181 |
__( 'Plugin deleted table', 'wp-security-audit-log' ),
|
2182 |
-
__( 'Plugin deleted this table from the database', 'wp-security-audit-log' ),
|
2183 |
[
|
2184 |
-
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
2185 |
-
__( 'Plugin', 'wp-security-audit-log' ) => '%Plugin->Name%'
|
2186 |
],
|
2187 |
[],
|
2188 |
'database',
|
@@ -2192,7 +2140,7 @@ function wsaldefaults_wsal_init() {
|
|
2192 |
5019,
|
2193 |
WSAL_MEDIUM,
|
2194 |
__( 'A plugin created a post', 'wp-security-audit-log' ),
|
2195 |
-
__( '
|
2196 |
[
|
2197 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
2198 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -2207,7 +2155,7 @@ function wsaldefaults_wsal_init() {
|
|
2207 |
5025,
|
2208 |
WSAL_LOW,
|
2209 |
__( 'A plugin deleted a post', 'wp-security-audit-log' ),
|
2210 |
-
__( '
|
2211 |
[
|
2212 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
2213 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
@@ -2222,10 +2170,8 @@ function wsaldefaults_wsal_init() {
|
|
2222 |
2051,
|
2223 |
WSAL_HIGH,
|
2224 |
__( 'User changed a file using the plugin editor', 'wp-security-audit-log' ),
|
2225 |
-
__( 'Modified
|
2226 |
-
[
|
2227 |
-
__( 'File', 'wp-security-audit-log' ) => '%File%'
|
2228 |
-
],
|
2229 |
[],
|
2230 |
'file',
|
2231 |
'modified'
|
@@ -2237,9 +2183,8 @@ function wsaldefaults_wsal_init() {
|
|
2237 |
5005,
|
2238 |
WSAL_CRITICAL,
|
2239 |
__( 'User installed a theme', 'wp-security-audit-log' ),
|
2240 |
-
__( '
|
2241 |
[
|
2242 |
-
__( 'Name', 'wp-security-audit-log' ) => '%Theme->Name%',
|
2243 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2244 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%',
|
2245 |
],
|
@@ -2251,9 +2196,8 @@ function wsaldefaults_wsal_init() {
|
|
2251 |
5006,
|
2252 |
WSAL_HIGH,
|
2253 |
__( 'User activated a theme', 'wp-security-audit-log' ),
|
2254 |
-
__( '
|
2255 |
[
|
2256 |
-
__( 'Name', 'wp-security-audit-log' ) => '%Theme->Name%',
|
2257 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2258 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2259 |
],
|
@@ -2265,9 +2209,8 @@ function wsaldefaults_wsal_init() {
|
|
2265 |
5007,
|
2266 |
WSAL_HIGH,
|
2267 |
__( 'User uninstalled a theme', 'wp-security-audit-log' ),
|
2268 |
-
__( '
|
2269 |
[
|
2270 |
-
__( 'Name', 'wp-security-audit-log' ) => '%Theme->Name%',
|
2271 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2272 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2273 |
],
|
@@ -2279,10 +2222,9 @@ function wsaldefaults_wsal_init() {
|
|
2279 |
5013,
|
2280 |
WSAL_LOW,
|
2281 |
__( 'Theme created tables', 'wp-security-audit-log' ),
|
2282 |
-
__( 'Theme created this
|
2283 |
[
|
2284 |
-
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
2285 |
-
__( 'Theme', 'wp-security-audit-log' ) => '%Theme->Name%'
|
2286 |
],
|
2287 |
[],
|
2288 |
'database',
|
@@ -2292,10 +2234,9 @@ function wsaldefaults_wsal_init() {
|
|
2292 |
5014,
|
2293 |
WSAL_LOW,
|
2294 |
__( 'Theme modified tables structure', 'wp-security-audit-log' ),
|
2295 |
-
__( 'Theme modified the structure of this database table', 'wp-security-audit-log' ),
|
2296 |
[
|
2297 |
-
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
2298 |
-
__( 'Theme', 'wp-security-audit-log' ) => '%Theme->Name%'
|
2299 |
],
|
2300 |
[],
|
2301 |
'database',
|
@@ -2305,10 +2246,9 @@ function wsaldefaults_wsal_init() {
|
|
2305 |
5015,
|
2306 |
WSAL_MEDIUM,
|
2307 |
__( 'Theme deleted tables', 'wp-security-audit-log' ),
|
2308 |
-
__( 'Theme deleted this table from the database', 'wp-security-audit-log' ),
|
2309 |
[
|
2310 |
-
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2311 |
-
__( 'Theme', 'wp-security-audit-log' ) => '%Theme->Name%'
|
2312 |
],
|
2313 |
[],
|
2314 |
'database',
|
@@ -2318,9 +2258,8 @@ function wsaldefaults_wsal_init() {
|
|
2318 |
5031,
|
2319 |
WSAL_LOW,
|
2320 |
__( 'User updated a theme', 'wp-security-audit-log' ),
|
2321 |
-
__( '
|
2322 |
[
|
2323 |
-
__( 'Name', 'wp-security-audit-log' ) => '%Theme->Name%',
|
2324 |
__( 'New version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2325 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2326 |
],
|
@@ -2332,10 +2271,8 @@ function wsaldefaults_wsal_init() {
|
|
2332 |
2046,
|
2333 |
WSAL_HIGH,
|
2334 |
__( 'User changed a file using the theme editor', 'wp-security-audit-log' ),
|
2335 |
-
__( 'Modified
|
2336 |
-
[
|
2337 |
-
__( 'File', 'wp-security-audit-log' ) => '%Theme%/%File%'
|
2338 |
-
],
|
2339 |
[],
|
2340 |
'file',
|
2341 |
'modified'
|
@@ -2347,7 +2284,7 @@ function wsaldefaults_wsal_init() {
|
|
2347 |
5008,
|
2348 |
WSAL_HIGH,
|
2349 |
__( 'Activated theme on network', 'wp-security-audit-log' ),
|
2350 |
-
__( 'Network activated the theme %Theme->Name
|
2351 |
[
|
2352 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2353 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
@@ -2360,7 +2297,7 @@ function wsaldefaults_wsal_init() {
|
|
2360 |
5009,
|
2361 |
WSAL_MEDIUM,
|
2362 |
__( 'Deactivated theme from network', 'wp-security-audit-log' ),
|
2363 |
-
__( 'Network deactivated the theme %Theme->Name
|
2364 |
[
|
2365 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2366 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
@@ -2376,7 +2313,7 @@ function wsaldefaults_wsal_init() {
|
|
2376 |
5016,
|
2377 |
WSAL_HIGH,
|
2378 |
__( 'Unknown component created tables', 'wp-security-audit-log' ),
|
2379 |
-
__( 'An unknown component created these tables in the database', 'wp-security-audit-log' ),
|
2380 |
[
|
2381 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2382 |
],
|
@@ -2388,7 +2325,7 @@ function wsaldefaults_wsal_init() {
|
|
2388 |
5017,
|
2389 |
WSAL_HIGH,
|
2390 |
__( 'Unknown component modified tables structure', 'wp-security-audit-log' ),
|
2391 |
-
__( 'An unknown component modified the structure of these database tables', 'wp-security-audit-log' ),
|
2392 |
[
|
2393 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2394 |
],
|
@@ -2400,7 +2337,7 @@ function wsaldefaults_wsal_init() {
|
|
2400 |
5018,
|
2401 |
WSAL_HIGH,
|
2402 |
__( 'Unknown component deleted tables', 'wp-security-audit-log' ),
|
2403 |
-
__( 'An unknown component deleted these tables from the database', 'wp-security-audit-log' ),
|
2404 |
[
|
2405 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2406 |
],
|
@@ -2412,7 +2349,7 @@ function wsaldefaults_wsal_init() {
|
|
2412 |
5022,
|
2413 |
WSAL_HIGH,
|
2414 |
__( 'WordPress created tables', 'wp-security-audit-log' ),
|
2415 |
-
__( 'WordPress created these tables in the database', 'wp-security-audit-log' ),
|
2416 |
[
|
2417 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2418 |
],
|
@@ -2424,7 +2361,7 @@ function wsaldefaults_wsal_init() {
|
|
2424 |
5023,
|
2425 |
WSAL_HIGH,
|
2426 |
__( 'WordPress modified tables structure', 'wp-security-audit-log' ),
|
2427 |
-
__( 'WordPress modified the structure of these database tables', 'wp-security-audit-log' ),
|
2428 |
[
|
2429 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2430 |
],
|
@@ -2436,7 +2373,7 @@ function wsaldefaults_wsal_init() {
|
|
2436 |
5024,
|
2437 |
WSAL_HIGH,
|
2438 |
__( 'WordPress deleted tables', 'wp-security-audit-log' ),
|
2439 |
-
__( 'WordPress deleted these tables from the database', 'wp-security-audit-log' ),
|
2440 |
[
|
2441 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2442 |
],
|
@@ -2489,7 +2426,7 @@ function wsaldefaults_wsal_init() {
|
|
2489 |
6004,
|
2490 |
WSAL_MEDIUM,
|
2491 |
__( 'WordPress was updated', 'wp-security-audit-log' ),
|
2492 |
-
__( 'Updated WordPress', 'wp-security-audit-log' ),
|
2493 |
[
|
2494 |
__( 'Previous version', 'wp-security-audit-log' ) => '%OldVersion%',
|
2495 |
__( 'New version', 'wp-security-audit-log' ) => '%NewVersion%'
|
@@ -2518,7 +2455,7 @@ function wsaldefaults_wsal_init() {
|
|
2518 |
6000,
|
2519 |
WSAL_INFORMATIONAL,
|
2520 |
__( 'Events automatically pruned by system', 'wp-security-audit-log' ),
|
2521 |
-
__( 'System automatically deleted %EventCount% events', 'wp-security-audit-log' ),
|
2522 |
[],
|
2523 |
[],
|
2524 |
'wp-activity-log',
|
@@ -2528,7 +2465,7 @@ function wsaldefaults_wsal_init() {
|
|
2528 |
6006,
|
2529 |
WSAL_MEDIUM,
|
2530 |
__( 'Reset the plugin\'s settings to default', 'wp-security-audit-log' ),
|
2531 |
-
__( 'Reset the activity log plugin\'s settings to default', 'wp-security-audit-log' ),
|
2532 |
[],
|
2533 |
[],
|
2534 |
'wp-activity-log',
|
@@ -2538,7 +2475,7 @@ function wsaldefaults_wsal_init() {
|
|
2538 |
6034,
|
2539 |
WSAL_CRITICAL,
|
2540 |
__( 'Purged the activity log', 'wp-security-audit-log' ),
|
2541 |
-
__( 'Purged the activity log', 'wp-security-audit-log' ),
|
2542 |
[],
|
2543 |
[],
|
2544 |
'wp-activity-log',
|
@@ -2548,7 +2485,7 @@ function wsaldefaults_wsal_init() {
|
|
2548 |
6043,
|
2549 |
WSAL_HIGH,
|
2550 |
__( 'Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard', 'wp-security-audit-log' ),
|
2551 |
-
__( 'Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard.', 'wp-security-audit-log' ),
|
2552 |
[],
|
2553 |
[],
|
2554 |
'wp-activity-log',
|
@@ -2561,7 +2498,7 @@ function wsaldefaults_wsal_init() {
|
|
2561 |
6001,
|
2562 |
WSAL_CRITICAL,
|
2563 |
__( 'Option Anyone Can Register in WordPress settings changed', 'wp-security-audit-log' ),
|
2564 |
-
__( 'The <strong>Membership</strong> setting <strong>Anyone can register</strong
|
2565 |
[],
|
2566 |
[],
|
2567 |
'system-setting',
|
@@ -2571,7 +2508,7 @@ function wsaldefaults_wsal_init() {
|
|
2571 |
6002,
|
2572 |
WSAL_CRITICAL,
|
2573 |
__( 'New User Default Role changed', 'wp-security-audit-log' ),
|
2574 |
-
__( 'Changed the <strong>New user default role</strong> WordPress setting', 'wp-security-audit-log' ),
|
2575 |
[
|
2576 |
__( 'Previous role', 'wp-security-audit-log' ) => '%OldRole%',
|
2577 |
__( 'New role', 'wp-security-audit-log' ) => '%NewRole%'
|
@@ -2584,7 +2521,7 @@ function wsaldefaults_wsal_init() {
|
|
2584 |
6003,
|
2585 |
WSAL_CRITICAL,
|
2586 |
__( 'WordPress Administrator Notification email changed', 'wp-security-audit-log' ),
|
2587 |
-
__( 'Change the <strong>Administrator email address</strong> in the WordPress settings', 'wp-security-audit-log' ),
|
2588 |
[
|
2589 |
__( 'Previous address', 'wp-security-audit-log' ) => '%OldEmail%',
|
2590 |
__( 'New address', 'wp-security-audit-log' ) => '%NewEmail%'
|
@@ -2597,7 +2534,7 @@ function wsaldefaults_wsal_init() {
|
|
2597 |
6005,
|
2598 |
WSAL_HIGH,
|
2599 |
__( 'User changes the WordPress Permalinks', 'wp-security-audit-log' ),
|
2600 |
-
__( 'Changed the WordPress permalinks', 'wp-security-audit-log' ),
|
2601 |
[
|
2602 |
__( 'Previous permalinks', 'wp-security-audit-log' ) => '%OldPattern%',
|
2603 |
__( 'New permalinks', 'wp-security-audit-log' ) => '%NewPattern%'
|
@@ -2610,7 +2547,7 @@ function wsaldefaults_wsal_init() {
|
|
2610 |
6008,
|
2611 |
WSAL_INFORMATIONAL,
|
2612 |
__( 'Enabled/Disabled the option Discourage search engines from indexing this site', 'wp-security-audit-log' ),
|
2613 |
-
__( '
|
2614 |
[],
|
2615 |
[],
|
2616 |
'system-setting',
|
@@ -2620,7 +2557,7 @@ function wsaldefaults_wsal_init() {
|
|
2620 |
6009,
|
2621 |
WSAL_MEDIUM,
|
2622 |
__( 'Enabled/Disabled comments on all the website', 'wp-security-audit-log' ),
|
2623 |
-
__( '
|
2624 |
[],
|
2625 |
[],
|
2626 |
'system-setting',
|
@@ -2631,7 +2568,7 @@ function wsaldefaults_wsal_init() {
|
|
2631 |
6010,
|
2632 |
WSAL_MEDIUM,
|
2633 |
__( 'Enabled/Disabled the option Comment author must fill out name and email', 'wp-security-audit-log' ),
|
2634 |
-
__( '
|
2635 |
[],
|
2636 |
[],
|
2637 |
'system-setting',
|
@@ -2641,7 +2578,7 @@ function wsaldefaults_wsal_init() {
|
|
2641 |
6011,
|
2642 |
WSAL_MEDIUM,
|
2643 |
__( 'Enabled/Disabled the option Users must be logged in and registered to comment', 'wp-security-audit-log' ),
|
2644 |
-
__( '
|
2645 |
[],
|
2646 |
[],
|
2647 |
'system-setting',
|
@@ -2651,7 +2588,7 @@ function wsaldefaults_wsal_init() {
|
|
2651 |
6012,
|
2652 |
WSAL_INFORMATIONAL,
|
2653 |
__( 'Enabled/Disabled the option to automatically close comments', 'wp-security-audit-log' ),
|
2654 |
-
__( '
|
2655 |
[],
|
2656 |
[],
|
2657 |
'system-setting',
|
@@ -2661,10 +2598,9 @@ function wsaldefaults_wsal_init() {
|
|
2661 |
6013,
|
2662 |
WSAL_INFORMATIONAL,
|
2663 |
__( 'Changed the value of the option Automatically close comments', 'wp-security-audit-log' ),
|
2664 |
-
__( 'Changed the value of the WordPress setting
|
2665 |
[
|
2666 |
-
__( 'Previous value', 'wp-security-audit-log' ) => '%OldValue%'
|
2667 |
-
__( 'New value', 'wp-security-audit-log' ) => '%NewValue%'
|
2668 |
],
|
2669 |
[],
|
2670 |
'system-setting',
|
@@ -2674,7 +2610,7 @@ function wsaldefaults_wsal_init() {
|
|
2674 |
6014,
|
2675 |
WSAL_MEDIUM,
|
2676 |
__( 'Enabled/Disabled the option for comments to be manually approved', 'wp-security-audit-log' ),
|
2677 |
-
__( '
|
2678 |
[],
|
2679 |
[],
|
2680 |
'system-setting',
|
@@ -2684,7 +2620,7 @@ function wsaldefaults_wsal_init() {
|
|
2684 |
6015,
|
2685 |
WSAL_LOW,
|
2686 |
__( 'Enabled/Disabled the option for an author to have previously approved comments for the comments to appear', 'wp-security-audit-log' ),
|
2687 |
-
__( '
|
2688 |
[],
|
2689 |
[],
|
2690 |
'system-setting',
|
@@ -2694,10 +2630,9 @@ function wsaldefaults_wsal_init() {
|
|
2694 |
6016,
|
2695 |
WSAL_LOW,
|
2696 |
__( 'Changed the number of links that a comment must have to be held in the queue', 'wp-security-audit-log' ),
|
2697 |
-
__( 'Changed the WordPress setting <strong>Hold a comment in the queue if it contains links</strong>', 'wp-security-audit-log' ),
|
2698 |
[
|
2699 |
-
__( 'Previous value', 'wp-security-audit-log' ) => '%OldValue%'
|
2700 |
-
__( 'New value', 'wp-security-audit-log' ) => '%NewValue%'
|
2701 |
],
|
2702 |
[],
|
2703 |
'system-setting',
|
@@ -2707,7 +2642,7 @@ function wsaldefaults_wsal_init() {
|
|
2707 |
6017,
|
2708 |
WSAL_INFORMATIONAL,
|
2709 |
__( 'Modified the list of keywords for comments moderation', 'wp-security-audit-log' ),
|
2710 |
-
__( 'Modified the list of keywords for comments
|
2711 |
[],
|
2712 |
[],
|
2713 |
'system-setting',
|
@@ -2717,7 +2652,7 @@ function wsaldefaults_wsal_init() {
|
|
2717 |
6018,
|
2718 |
WSAL_INFORMATIONAL,
|
2719 |
__( 'Modified the list of keywords for comments blacklisting', 'wp-security-audit-log' ),
|
2720 |
-
__( 'Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress', 'wp-security-audit-log' ),
|
2721 |
[],
|
2722 |
[],
|
2723 |
'system-setting',
|
@@ -2727,10 +2662,9 @@ function wsaldefaults_wsal_init() {
|
|
2727 |
6024,
|
2728 |
WSAL_CRITICAL,
|
2729 |
__( 'Option WordPress Address (URL) in WordPress settings changed', 'wp-security-audit-log' ),
|
2730 |
-
__( 'Changed the <strong>WordPress address (URL)</strong>', 'wp-security-audit-log' ),
|
2731 |
[
|
2732 |
-
__( 'Previous URL', 'wp-security-audit-log' ) => '%old_url%'
|
2733 |
-
__( 'New URL', 'wp-security-audit-log' ) => '%new_url%'
|
2734 |
],
|
2735 |
[],
|
2736 |
'system-setting',
|
@@ -2740,10 +2674,9 @@ function wsaldefaults_wsal_init() {
|
|
2740 |
6025,
|
2741 |
WSAL_CRITICAL,
|
2742 |
__( 'Option Site Address (URL) in WordPress settings changed', 'wp-security-audit-log' ),
|
2743 |
-
__( 'Changed the <strong>Site address (URL)</strong>', 'wp-security-audit-log' ),
|
2744 |
[
|
2745 |
-
__( 'Previous URL', 'wp-security-audit-log' ) => '%old_url%'
|
2746 |
-
__( 'New URL', 'wp-security-audit-log' ) => '%new_url%'
|
2747 |
],
|
2748 |
[],
|
2749 |
'system-setting',
|
@@ -2753,10 +2686,9 @@ function wsaldefaults_wsal_init() {
|
|
2753 |
6035,
|
2754 |
WSAL_CRITICAL,
|
2755 |
__( 'Option Your homepage displays in WordPress settings changed', 'wp-security-audit-log' ),
|
2756 |
-
__( '
|
2757 |
[
|
2758 |
-
__( 'Previous setting', 'wp-security-audit-log' ) => '%old_homepage%'
|
2759 |
-
__( 'New setting', 'wp-security-audit-log' ) => '%new_homepage%'
|
2760 |
],
|
2761 |
[],
|
2762 |
'system-setting',
|
@@ -2766,10 +2698,9 @@ function wsaldefaults_wsal_init() {
|
|
2766 |
6036,
|
2767 |
WSAL_CRITICAL,
|
2768 |
__( 'Option homepage in WordPress settings changed', 'wp-security-audit-log' ),
|
2769 |
-
__( 'Changed the <strong>Homepage</strong> in the WordPress settings', 'wp-security-audit-log' ),
|
2770 |
[
|
2771 |
-
__( 'Previous page', 'wp-security-audit-log' ) => '%old_page%'
|
2772 |
-
__( 'New page', 'wp-security-audit-log' ) => '%new_page%'
|
2773 |
],
|
2774 |
[],
|
2775 |
'system-setting',
|
@@ -2779,10 +2710,9 @@ function wsaldefaults_wsal_init() {
|
|
2779 |
6037,
|
2780 |
WSAL_CRITICAL,
|
2781 |
__( 'Option posts page in WordPress settings changed', 'wp-security-audit-log' ),
|
2782 |
-
__( 'Changed the <strong>Posts
|
2783 |
[
|
2784 |
-
__( 'Previous page', 'wp-security-audit-log' ) => '%old_page%'
|
2785 |
-
__( 'New setting', 'wp-security-audit-log' ) => '%new_page%'
|
2786 |
],
|
2787 |
[],
|
2788 |
'system-setting',
|
@@ -2793,10 +2723,9 @@ function wsaldefaults_wsal_init() {
|
|
2793 |
6040,
|
2794 |
WSAL_CRITICAL,
|
2795 |
__( 'Option Timezone in WordPress settings changed', 'wp-security-audit-log' ),
|
2796 |
-
__( '
|
2797 |
[
|
2798 |
-
__( 'Previous timezone', 'wp-security-audit-log' ) => '%old_timezone%'
|
2799 |
-
__( 'New timezone', 'wp-security-audit-log' ) => '%new_timezone%'
|
2800 |
],
|
2801 |
[],
|
2802 |
'system-setting',
|
@@ -2806,10 +2735,9 @@ function wsaldefaults_wsal_init() {
|
|
2806 |
6041,
|
2807 |
WSAL_CRITICAL,
|
2808 |
__( 'Option Date format in WordPress settings changed', 'wp-security-audit-log' ),
|
2809 |
-
__( '
|
2810 |
[
|
2811 |
-
__( 'Previous format', 'wp-security-audit-log' ) => '%old_date_format%'
|
2812 |
-
__( 'New format', 'wp-security-audit-log' ) => '%new_date_format%'
|
2813 |
],
|
2814 |
[],
|
2815 |
'system-setting',
|
@@ -2819,10 +2747,9 @@ function wsaldefaults_wsal_init() {
|
|
2819 |
6042,
|
2820 |
WSAL_CRITICAL,
|
2821 |
__( 'Option Time format in WordPress settings changed', 'wp-security-audit-log' ),
|
2822 |
-
__( '
|
2823 |
[
|
2824 |
-
__( 'Previous format', 'wp-security-audit-log' ) => '%old_time_format%'
|
2825 |
-
__( 'New format', 'wp-security-audit-log' ) => '%new_time_format%'
|
2826 |
],
|
2827 |
[],
|
2828 |
'system-setting',
|
@@ -2833,7 +2760,7 @@ function wsaldefaults_wsal_init() {
|
|
2833 |
6044,
|
2834 |
WSAL_HIGH,
|
2835 |
__( 'Option Automatic updates setting changed', 'wp-security-audit-log' ),
|
2836 |
-
__( '
|
2837 |
[
|
2838 |
__( 'New setting status', 'wp-security-audit-log' ) => '%updates_status%'
|
2839 |
],
|
@@ -2846,10 +2773,9 @@ function wsaldefaults_wsal_init() {
|
|
2846 |
6045,
|
2847 |
WSAL_HIGH,
|
2848 |
__( 'Option Site Language setting changed', 'wp-security-audit-log' ),
|
2849 |
-
__( 'Changed the <strong>Site Language</strong>
|
2850 |
[
|
2851 |
-
__( 'Previous setting', 'wp-security-audit-log' ) => '%previous_value%'
|
2852 |
-
__( 'New setting', 'wp-security-audit-log' ) => '%new_value%'
|
2853 |
],
|
2854 |
[],
|
2855 |
'system-setting',
|
@@ -2864,7 +2790,7 @@ function wsaldefaults_wsal_init() {
|
|
2864 |
7000,
|
2865 |
WSAL_CRITICAL,
|
2866 |
__( 'New site added on the network', 'wp-security-audit-log' ),
|
2867 |
-
__( '
|
2868 |
[
|
2869 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2870 |
],
|
@@ -2876,7 +2802,7 @@ function wsaldefaults_wsal_init() {
|
|
2876 |
7001,
|
2877 |
WSAL_HIGH,
|
2878 |
__( 'Existing site archived', 'wp-security-audit-log' ),
|
2879 |
-
__( 'Archived the site
|
2880 |
[
|
2881 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2882 |
],
|
@@ -2888,7 +2814,7 @@ function wsaldefaults_wsal_init() {
|
|
2888 |
7002,
|
2889 |
WSAL_HIGH,
|
2890 |
__( 'Archived site has been unarchived', 'wp-security-audit-log' ),
|
2891 |
-
__( 'Unarchived the site
|
2892 |
[
|
2893 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2894 |
],
|
@@ -2900,7 +2826,7 @@ function wsaldefaults_wsal_init() {
|
|
2900 |
7003,
|
2901 |
WSAL_HIGH,
|
2902 |
__( 'Deactivated site has been activated', 'wp-security-audit-log' ),
|
2903 |
-
__( 'Activated the site
|
2904 |
[
|
2905 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2906 |
],
|
@@ -2912,7 +2838,7 @@ function wsaldefaults_wsal_init() {
|
|
2912 |
7004,
|
2913 |
WSAL_HIGH,
|
2914 |
__( 'Site has been deactivated', 'wp-security-audit-log' ),
|
2915 |
-
__( '
|
2916 |
[
|
2917 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2918 |
],
|
@@ -2924,7 +2850,7 @@ function wsaldefaults_wsal_init() {
|
|
2924 |
7005,
|
2925 |
WSAL_HIGH,
|
2926 |
__( 'Existing site deleted from network', 'wp-security-audit-log' ),
|
2927 |
-
__( 'The site: %SiteName
|
2928 |
[
|
2929 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2930 |
],
|
@@ -2936,7 +2862,7 @@ function wsaldefaults_wsal_init() {
|
|
2936 |
7007,
|
2937 |
WSAL_CRITICAL,
|
2938 |
__( 'Allow site administrators to add new users to their sites settings changed', 'wp-security-audit-log' ),
|
2939 |
-
__( '
|
2940 |
[],
|
2941 |
[],
|
2942 |
'multisite-network',
|
@@ -2946,7 +2872,7 @@ function wsaldefaults_wsal_init() {
|
|
2946 |
7008,
|
2947 |
WSAL_HIGH,
|
2948 |
__( 'Site upload space settings changed', 'wp-security-audit-log' ),
|
2949 |
-
__( '
|
2950 |
[],
|
2951 |
[],
|
2952 |
'multisite-network',
|
@@ -2956,10 +2882,9 @@ function wsaldefaults_wsal_init() {
|
|
2956 |
7009,
|
2957 |
WSAL_MEDIUM,
|
2958 |
__( 'Site upload space file size settings changed', 'wp-security-audit-log' ),
|
2959 |
-
__( '
|
2960 |
[
|
2961 |
-
__( 'Previous size (MB)', 'wp-security-audit-log' ) => '%old_value%'
|
2962 |
-
__( 'New size (MB)', 'wp-security-audit-log' ) => '%new_value%'
|
2963 |
],
|
2964 |
[],
|
2965 |
'multisite-network',
|
@@ -2969,7 +2894,7 @@ function wsaldefaults_wsal_init() {
|
|
2969 |
7010,
|
2970 |
WSAL_CRITICAL,
|
2971 |
__( 'Site Upload file types settings changed', 'wp-security-audit-log' ),
|
2972 |
-
__( '
|
2973 |
[
|
2974 |
__( 'Previous value', 'wp-security-audit-log' ) => '%old_value%',
|
2975 |
__( 'New value', 'wp-security-audit-log' ) => '%new_value%'
|
@@ -2982,10 +2907,9 @@ function wsaldefaults_wsal_init() {
|
|
2982 |
7011,
|
2983 |
WSAL_CRITICAL,
|
2984 |
__( 'Site Max upload file size settings changed', 'wp-security-audit-log' ),
|
2985 |
-
__( 'Changed the <strong>Max upload file size</strong> network setting', 'wp-security-audit-log' ),
|
2986 |
[
|
2987 |
-
__( 'Previous size (KB)', 'wp-security-audit-log' ) => '%old_value%'
|
2988 |
-
__( 'New size (KB)', 'wp-security-audit-log' ) => '%new_value%'
|
2989 |
],
|
2990 |
[],
|
2991 |
'multisite-network',
|
@@ -2995,10 +2919,9 @@ function wsaldefaults_wsal_init() {
|
|
2995 |
7012,
|
2996 |
WSAL_HIGH,
|
2997 |
__( 'Allow new registrations settings changed', 'wp-security-audit-log' ),
|
2998 |
-
__( 'Changed the <strong>Allow new registrations</strong>
|
2999 |
[
|
3000 |
-
__( 'Previous setting', 'wp-security-audit-log' ) => '%previous_setting%'
|
3001 |
-
__( 'New setting', 'wp-security-audit-log' ) => '%new_setting%'
|
3002 |
],
|
3003 |
[],
|
3004 |
'multisite-network',
|
180 |
1000,
|
181 |
WSAL_LOW,
|
182 |
__( 'User logged in', 'wp-security-audit-log' ),
|
183 |
+
__( 'User logged in.', 'wp-security-audit-log' ),
|
184 |
[],
|
185 |
[],
|
186 |
'user',
|
190 |
1001,
|
191 |
WSAL_LOW,
|
192 |
__( 'User logged out', 'wp-security-audit-log' ),
|
193 |
+
__( 'User logged out.', 'wp-security-audit-log' ),
|
194 |
[],
|
195 |
[],
|
196 |
'user',
|
200 |
1002,
|
201 |
WSAL_MEDIUM,
|
202 |
__( 'Login failed', 'wp-security-audit-log' ),
|
203 |
+
__( '%Attempts% failed login(s).', 'wp-security-audit-log' ),
|
204 |
[],
|
205 |
[],
|
206 |
'user',
|
210 |
1003,
|
211 |
WSAL_LOW,
|
212 |
__( 'Login failed / non existing user', 'wp-security-audit-log' ),
|
213 |
+
__( '%Attempts% failed login(s).', 'wp-security-audit-log' ),
|
214 |
[],
|
215 |
wsaldefaults_build_links( [ 'LogFileText' ] ),
|
216 |
'system',
|
232 |
1005,
|
233 |
WSAL_LOW,
|
234 |
__( 'User logged in with existing session(s)', 'wp-security-audit-log' ),
|
235 |
+
__( 'User logged in however there are other session(s) already for this user.', 'wp-security-audit-log' ),
|
236 |
[
|
237 |
__( 'IP address(es)', 'wp-security-audit-log' ) => '%IPAddress%'
|
238 |
],
|
254 |
1007,
|
255 |
WSAL_MEDIUM,
|
256 |
__( 'User session destroyed and logged out', 'wp-security-audit-log' ),
|
257 |
+
__( 'Terminated the session of the user %TargetUserName%.', 'wp-security-audit-log' ),
|
258 |
[
|
|
|
259 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
260 |
__( 'Session ID', 'wp-security-audit-log' ) => '%TargetSessionID%'
|
261 |
],
|
267 |
1008,
|
268 |
WSAL_MEDIUM,
|
269 |
__( 'Switched to another user', 'wp-security-audit-log' ),
|
270 |
+
__( 'Switched the session to being logged in as %TargetUserName%.', 'wp-security-audit-log' ),
|
271 |
[
|
|
|
272 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%'
|
273 |
],
|
274 |
[],
|
278 |
array(
|
279 |
2010,
|
280 |
WSAL_MEDIUM,
|
281 |
+
__( 'User uploaded file to the Uploads directory', 'wp-security-audit-log' ),
|
282 |
+
__( 'Uploaded a file called %FileName%.', 'wp-security-audit-log' ),
|
283 |
[
|
|
|
284 |
__( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
|
285 |
],
|
286 |
[],
|
291 |
2011,
|
292 |
WSAL_LOW,
|
293 |
__( 'User deleted file from Uploads directory', 'wp-security-audit-log' ),
|
294 |
+
__( 'Deleted the file %FileName%.', 'wp-security-audit-log' ),
|
295 |
[
|
|
|
296 |
__( 'Directory', 'wp-security-audit-log' ) => '%FilePath%'
|
297 |
],
|
298 |
[],
|
318 |
2000,
|
319 |
WSAL_INFORMATIONAL,
|
320 |
__( 'User created a new post and saved it as draft', 'wp-security-audit-log' ),
|
321 |
+
__( 'Created the post %PostTitle%.', 'wp-security-audit-log' ),
|
322 |
[
|
323 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
324 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
325 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
326 |
],
|
327 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
328 |
'post',
|
329 |
'created'
|
330 |
),
|
332 |
2001,
|
333 |
WSAL_LOW,
|
334 |
__( 'User published a post', 'wp-security-audit-log' ),
|
335 |
+
__( 'Published the post %PostTitle%.', 'wp-security-audit-log' ),
|
336 |
[
|
337 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
338 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
339 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
340 |
],
|
341 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
342 |
'post',
|
343 |
'published'
|
344 |
),
|
346 |
2002,
|
347 |
WSAL_LOW,
|
348 |
__( 'User modified a post', 'wp-security-audit-log' ),
|
349 |
+
__( 'Modified the post %PostTitle%.', 'wp-security-audit-log' ),
|
350 |
[
|
351 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
352 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
353 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
354 |
],
|
355 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
356 |
'post',
|
357 |
'modified'
|
358 |
),
|
360 |
2008,
|
361 |
WSAL_MEDIUM,
|
362 |
__( 'User permanently deleted a post from the trash', 'wp-security-audit-log' ),
|
363 |
+
__( 'Permanently deleted the post %PostTitle%.', 'wp-security-audit-log' ),
|
364 |
[
|
365 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
366 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
374 |
2012,
|
375 |
WSAL_MEDIUM,
|
376 |
__( 'User moved a post to the trash', 'wp-security-audit-log' ),
|
377 |
+
__( 'Moved the post %PostTitle% to trash.', 'wp-security-audit-log' ),
|
378 |
[
|
379 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
380 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
381 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
382 |
],
|
383 |
+
wsaldefaults_build_links( [ 'PostUrlIfPublished' ] ),
|
384 |
'post',
|
385 |
'deleted'
|
386 |
),
|
388 |
2014,
|
389 |
WSAL_LOW,
|
390 |
__( 'User restored a post from trash', 'wp-security-audit-log' ),
|
391 |
+
__( 'Restored the post %PostTitle% from trash.', 'wp-security-audit-log' ),
|
392 |
[
|
393 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
394 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
395 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
396 |
],
|
397 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
398 |
'post',
|
399 |
'restored'
|
400 |
),
|
402 |
2017,
|
403 |
WSAL_INFORMATIONAL,
|
404 |
__( 'User changed post URL', 'wp-security-audit-log' ),
|
405 |
+
__( 'Changed the URL of the post %PostTitle%.', 'wp-security-audit-log' ),
|
406 |
[
|
407 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
408 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
418 |
2019,
|
419 |
WSAL_INFORMATIONAL,
|
420 |
__( 'User changed post author', 'wp-security-audit-log' ),
|
421 |
+
__( 'Changed the author of the post %PostTitle% to %NewAuthor%.', 'wp-security-audit-log' ),
|
422 |
[
|
423 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
424 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
425 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
426 |
+
__( 'Previous author', 'wp-security-audit-log' ) => '%OldAuthor%'
|
|
|
427 |
],
|
428 |
+
wsaldefaults_build_links( [ 'PostUrlIfPublished' ] ),
|
429 |
'post',
|
430 |
'modified'
|
431 |
),
|
433 |
2021,
|
434 |
WSAL_MEDIUM,
|
435 |
__( 'User changed post status', 'wp-security-audit-log' ),
|
436 |
+
__( 'Changed the status of the post %PostTitle% to %NewStatus%.', 'wp-security-audit-log' ),
|
437 |
[
|
438 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
439 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
440 |
+
__( 'Previous status', 'wp-security-audit-log' ) => '%OldStatus%'
|
|
|
441 |
],
|
442 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
443 |
'post',
|
444 |
'modified'
|
445 |
),
|
447 |
2025,
|
448 |
WSAL_LOW,
|
449 |
__( 'User changed the visibility of a post', 'wp-security-audit-log' ),
|
450 |
+
__( 'Changed the visibility of the post %PostTitle% to %NewVisibility%.', 'wp-security-audit-log' ),
|
451 |
[
|
452 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
453 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
454 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
455 |
+
__( 'Previous visibility status', 'wp-security-audit-log' ) => '%OldVisibility%'
|
|
|
456 |
],
|
457 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
458 |
'post',
|
459 |
'modified'
|
460 |
),
|
462 |
2027,
|
463 |
WSAL_INFORMATIONAL,
|
464 |
__( 'User changed the date of a post', 'wp-security-audit-log' ),
|
465 |
+
__( 'Changed the date of the post %PostTitle% to %NewDate%.', 'wp-security-audit-log' ),
|
466 |
[
|
467 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
468 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
469 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
470 |
+
__( 'Previous date', 'wp-security-audit-log' ) => '%OldDate%'
|
|
|
471 |
],
|
472 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
473 |
'post',
|
474 |
'modified'
|
475 |
),
|
477 |
2047,
|
478 |
WSAL_LOW,
|
479 |
__( 'User changed the parent of a page', 'wp-security-audit-log' ),
|
480 |
+
__( 'Changed the parent of the post %PostTitle% to %NewParentName%.', 'wp-security-audit-log' ),
|
481 |
[
|
482 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
483 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
484 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
485 |
+
__( 'Previous parent', 'wp-security-audit-log' ) => '%OldParentName%'
|
|
|
486 |
],
|
487 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
488 |
'post',
|
489 |
'modified'
|
490 |
),
|
492 |
2048,
|
493 |
WSAL_LOW,
|
494 |
__( 'User changed the template of a page', 'wp-security-audit-log' ),
|
495 |
+
__( 'Changed the template of the post %PostTitle% to %NewTemplate%.', 'wp-security-audit-log' ),
|
496 |
[
|
497 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
498 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
499 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
500 |
+
__( 'Previous template', 'wp-security-audit-log' ) => '%OldTemplate%'
|
|
|
501 |
],
|
502 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
503 |
'post',
|
504 |
'modified'
|
505 |
),
|
507 |
2049,
|
508 |
WSAL_INFORMATIONAL,
|
509 |
__( 'User set a post as sticky', 'wp-security-audit-log' ),
|
510 |
+
__( 'Set the post %PostTitle% as sticky.', 'wp-security-audit-log' ),
|
511 |
[
|
512 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
513 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
514 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
515 |
],
|
516 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
517 |
'post',
|
518 |
'modified'
|
519 |
),
|
521 |
2050,
|
522 |
WSAL_INFORMATIONAL,
|
523 |
__( 'User removed post from sticky', 'wp-security-audit-log' ),
|
524 |
+
__( 'Removed the post %PostTitle% from sticky.', 'wp-security-audit-log' ),
|
525 |
[
|
526 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
527 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
528 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
529 |
],
|
530 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
531 |
'post',
|
532 |
'modified'
|
533 |
),
|
535 |
2065,
|
536 |
WSAL_LOW,
|
537 |
__( 'User modified the content of a post', 'wp-security-audit-log' ),
|
538 |
+
__( 'Modified the content of the post %PostTitle%.', 'wp-security-audit-log' ),
|
539 |
[
|
540 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
541 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
542 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
543 |
],
|
544 |
+
wsaldefaults_build_links( [ 'RevisionLink', 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
545 |
'post',
|
546 |
'modified'
|
547 |
),
|
549 |
2073,
|
550 |
WSAL_INFORMATIONAL,
|
551 |
__( 'User submitted a post for review', 'wp-security-audit-log' ),
|
552 |
+
__( 'Submitted the post %PostTitle% for review.', 'wp-security-audit-log' ),
|
553 |
[
|
554 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
555 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
556 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
557 |
],
|
558 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
559 |
'post',
|
560 |
'modified'
|
561 |
),
|
563 |
2074,
|
564 |
WSAL_LOW,
|
565 |
__( 'User scheduled a post', 'wp-security-audit-log' ),
|
566 |
+
__( 'Scheduled the post %PostTitle% to be published on %PublishingDate%.', 'wp-security-audit-log' ),
|
567 |
[
|
568 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
569 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
570 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
571 |
],
|
572 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
573 |
'post',
|
574 |
'modified'
|
575 |
),
|
577 |
2086,
|
578 |
WSAL_INFORMATIONAL,
|
579 |
__( 'User changed title of a post', 'wp-security-audit-log' ),
|
580 |
+
__( 'Changed the title of the post %OldTitle% to %NewTitle%.', 'wp-security-audit-log' ),
|
581 |
[
|
582 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
583 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
584 |
+
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
|
|
585 |
],
|
586 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
587 |
'post',
|
588 |
'modified'
|
589 |
),
|
591 |
2100,
|
592 |
WSAL_INFORMATIONAL,
|
593 |
__( 'User opened a post in the editor', 'wp-security-audit-log' ),
|
594 |
+
__( 'Opened the post %PostTitle% in the editor.', 'wp-security-audit-log' ),
|
595 |
[
|
596 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
597 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
598 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
599 |
],
|
600 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
601 |
'post',
|
602 |
'opened'
|
603 |
),
|
605 |
2101,
|
606 |
WSAL_INFORMATIONAL,
|
607 |
__( 'User viewed a post', 'wp-security-audit-log' ),
|
608 |
+
__( 'Viewed the post %PostTitle%.', 'wp-security-audit-log' ),
|
609 |
[
|
610 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
611 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
619 |
2111,
|
620 |
WSAL_LOW,
|
621 |
__( 'User enabled/disabled comments in a post', 'wp-security-audit-log' ),
|
622 |
+
__( 'Comments in the post %PostTitle%.', 'wp-security-audit-log' ),
|
623 |
[
|
624 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
625 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
626 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
627 |
],
|
628 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
629 |
'post',
|
630 |
'enabled'
|
631 |
),
|
633 |
2112,
|
634 |
WSAL_LOW,
|
635 |
__( 'User enabled/disabled trackbacks and pingbacks in a post', 'wp-security-audit-log' ),
|
636 |
+
__( 'Pingbacks and Trackbacks in the post %PostTitle%.', 'wp-security-audit-log' ),
|
637 |
[
|
638 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
639 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
640 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
641 |
],
|
642 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
643 |
'post',
|
644 |
'enabled'
|
645 |
),
|
647 |
2129,
|
648 |
WSAL_INFORMATIONAL,
|
649 |
__( 'User updated the excerpt in a post', 'wp-security-audit-log' ),
|
650 |
+
__( 'The excerpt of the post %PostTitle%.', 'wp-security-audit-log' ),
|
651 |
[
|
652 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
653 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
655 |
__( 'Previous excerpt entry', 'wp-security-audit-log' ) => '%old_post_excerpt%',
|
656 |
__( 'New excerpt entry', 'wp-security-audit-log' ) => '%post_excerpt%'
|
657 |
],
|
658 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
659 |
'post',
|
660 |
'modified'
|
661 |
),
|
663 |
2130,
|
664 |
WSAL_INFORMATIONAL,
|
665 |
__( 'User updated the featured image in a post', 'wp-security-audit-log' ),
|
666 |
+
__( 'The featured image of the post %PostTitle%.', 'wp-security-audit-log' ),
|
667 |
[
|
668 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
669 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
671 |
__( 'Previous image', 'wp-security-audit-log' ) => '%previous_image%',
|
672 |
__( 'New image', 'wp-security-audit-log' ) => '%new_image%'
|
673 |
],
|
674 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
675 |
'post',
|
676 |
'modified'
|
677 |
),
|
682 |
2119,
|
683 |
WSAL_INFORMATIONAL,
|
684 |
__( 'User added post tag', 'wp-security-audit-log' ),
|
685 |
+
__( 'Added tag(s) to the post %PostTitle%.', 'wp-security-audit-log' ),
|
686 |
[
|
687 |
__( 'ID', 'wp-security-audit-log' ) => '%PostID%',
|
688 |
__( 'Type', 'wp-security-audit-log' ) => '%PostType%',
|
697 |
2120,
|
698 |
WSAL_INFORMATIONAL,
|
699 |
__( 'User removed post tag', 'wp-security-audit-log' ),
|
700 |
+
__( 'Removed tag(s) from the post %PostTitle%.', 'wp-security-audit-log' ),
|
701 |
[
|
702 |
__( 'ID', 'wp-security-audit-log' ) => '%PostID%',
|
703 |
__( 'Type', 'wp-security-audit-log' ) => '%PostType%',
|
704 |
__( 'Status', 'wp-security-audit-log' ) => '%PostStatus%',
|
705 |
__( 'Removed tag(s)', 'wp-security-audit-log' ) => '%tag%'
|
706 |
],
|
707 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
708 |
'post',
|
709 |
'modified'
|
710 |
),
|
712 |
2121,
|
713 |
WSAL_INFORMATIONAL,
|
714 |
__( 'User created new tag', 'wp-security-audit-log' ),
|
715 |
+
__( 'Created the tag %TagName%.', 'wp-security-audit-log' ),
|
716 |
[
|
717 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
718 |
],
|
724 |
2122,
|
725 |
WSAL_LOW,
|
726 |
__( 'User deleted tag', 'wp-security-audit-log' ),
|
727 |
+
__( 'Deleted the tag %TagName%.', 'wp-security-audit-log' ),
|
728 |
[
|
729 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
730 |
],
|
735 |
array(
|
736 |
2123,
|
737 |
WSAL_INFORMATIONAL,
|
738 |
+
__( 'Renamed the tag %old_name% to %new_name%.', 'wp-security-audit-log' ),
|
739 |
+
'',
|
740 |
[
|
741 |
+
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%'
|
|
|
|
|
742 |
],
|
743 |
wsaldefaults_build_links( [ 'TagLink' ] ),
|
744 |
'tag',
|
748 |
2124,
|
749 |
WSAL_INFORMATIONAL,
|
750 |
__( 'User changed tag slug', 'wp-security-audit-log' ),
|
751 |
+
__( 'Changed the slug of the tag %tag% to %new_slug%.', 'wp-security-audit-log' ),
|
752 |
[
|
753 |
+
__( 'Previous slug', 'wp-security-audit-log' ) => '%old_slug%'
|
|
|
754 |
],
|
755 |
wsaldefaults_build_links( [ 'TagLink' ] ),
|
756 |
'tag',
|
760 |
2125,
|
761 |
WSAL_INFORMATIONAL,
|
762 |
__( 'User changed tag description', 'wp-security-audit-log' ),
|
763 |
+
__( 'Changed the description of the tag %tag%.', 'wp-security-audit-log' ),
|
764 |
[
|
765 |
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%',
|
766 |
__( 'Previous description', 'wp-security-audit-log' ) => '%old_desc%',
|
777 |
2016,
|
778 |
WSAL_LOW,
|
779 |
__( 'User changed post category', 'wp-security-audit-log' ),
|
780 |
+
__( 'Changed the category(ies) of the post %PostTitle% to %NewCategories%.', 'wp-security-audit-log' ),
|
781 |
[
|
782 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
783 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
784 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
785 |
+
__( 'Previous category(ies)', 'wp-security-audit-log' ) => '%OldCategories%'
|
|
|
786 |
],
|
787 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
788 |
'post',
|
789 |
'modified'
|
790 |
),
|
792 |
2023,
|
793 |
WSAL_MEDIUM,
|
794 |
__( 'User created new category', 'wp-security-audit-log' ),
|
795 |
+
__( 'Created the category %CategoryName%.', 'wp-security-audit-log' ),
|
796 |
[
|
797 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
798 |
],
|
804 |
2024,
|
805 |
WSAL_MEDIUM,
|
806 |
__( 'User deleted category', 'wp-security-audit-log' ),
|
807 |
+
__( 'Deleted the category %CategoryName%.', 'wp-security-audit-log' ),
|
808 |
[
|
809 |
__( 'Slug', 'wp-security-audit-log' ) => 'Slug'
|
810 |
],
|
816 |
2052,
|
817 |
WSAL_LOW,
|
818 |
__( 'Changed the parent of a category', 'wp-security-audit-log' ),
|
819 |
+
__( 'Changed the parent of the category %CategoryName% to %NewParent%.', 'wp-security-audit-log' ),
|
820 |
[
|
821 |
__( 'Slug', 'wp-security-audit-log' ) => '%Slug%',
|
822 |
+
__( 'Previous parent', 'wp-security-audit-log' ) => '%OldParent%'
|
|
|
823 |
],
|
824 |
wsaldefaults_build_links( [ 'CategoryLink' ] ),
|
825 |
'category',
|
829 |
2127,
|
830 |
WSAL_LOW,
|
831 |
__( 'User changed category name', 'wp-security-audit-log' ),
|
832 |
+
__( 'Renamed the category %old_name% to %new_name%.', 'wp-security-audit-log' ),
|
833 |
[
|
|
|
|
|
834 |
__( 'Slug', 'wp-security-audit-log' ) => '%slug%'
|
835 |
],
|
836 |
wsaldefaults_build_links( [ 'cat_link' ] ),
|
841 |
2128,
|
842 |
WSAL_LOW,
|
843 |
__( 'User changed category slug', 'wp-security-audit-log' ),
|
844 |
+
__( 'Changed the slug of the category %CategoryName% to %new_slug%.', 'wp-security-audit-log' ),
|
845 |
[
|
846 |
+
__( 'Previous slug', 'wp-security-audit-log' ) => '%old_slug%'
|
|
|
847 |
],
|
848 |
wsaldefaults_build_links( [ 'cat_link' ] ),
|
849 |
'category',
|
856 |
2053,
|
857 |
WSAL_LOW,
|
858 |
__( 'User created a custom field for a post', 'wp-security-audit-log' ),
|
859 |
+
__( 'Created the new custom field %MetaKey% in the post %PostTitle%.', 'wp-security-audit-log' ),
|
860 |
[
|
861 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
862 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
863 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
864 |
__( 'Custom field value', 'wp-security-audit-log' ) => '%MetaValue%'
|
865 |
],
|
866 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'MetaLink', 'PostUrlIfPublished' ] ),
|
867 |
'post',
|
868 |
'modified'
|
869 |
),
|
871 |
2054,
|
872 |
WSAL_LOW,
|
873 |
__( 'User updated a custom field value for a post', 'wp-security-audit-log' ),
|
874 |
+
__( 'Modified the value of the custom field %MetaName% in the post %PostTitle%.', 'wp-security-audit-log' ),
|
875 |
[
|
876 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
877 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
879 |
__( 'Previous custom field value', 'wp-security-audit-log' ) => '%MetaValueOld%',
|
880 |
__( 'New custom field value', 'wp-security-audit-log' ) => '%MetaValueNew%'
|
881 |
],
|
882 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'MetaLink', 'PostUrlIfPublished' ] ),
|
883 |
'custom-field',
|
884 |
'modified'
|
885 |
),
|
887 |
2055,
|
888 |
WSAL_MEDIUM,
|
889 |
__( 'User deleted a custom field from a post', 'wp-security-audit-log' ),
|
890 |
+
__( 'Deleted the custom field %MetaKey% from the post %PostTitle%.', 'wp-security-audit-log' ),
|
891 |
[
|
892 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
893 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
894 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
895 |
],
|
896 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
897 |
'custom-field',
|
898 |
'deleted'
|
899 |
),
|
901 |
2062,
|
902 |
WSAL_LOW,
|
903 |
__( 'User updated a custom field name for a post', 'wp-security-audit-log' ),
|
904 |
+
__( 'Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%.', 'wp-security-audit-log' ),
|
905 |
[
|
|
|
|
|
906 |
__( 'Post', 'wp-security-audit-log' ) => '%PostTitle%',
|
907 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
908 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
909 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%'
|
910 |
],
|
911 |
+
wsaldefaults_build_links( [ 'EditorLinkPost', 'PostUrlIfPublished' ] ),
|
912 |
'custom-field',
|
913 |
'renamed'
|
914 |
),
|
919 |
2131,
|
920 |
WSAL_LOW,
|
921 |
__( 'User added relationship to a custom field value for a post', 'wp-security-audit-log' ),
|
922 |
+
__( 'Added relationships to the custom field %MetaKey% in the post %PostTitle%.', 'wp-security-audit-log' ),
|
923 |
[
|
924 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
925 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
934 |
2132,
|
935 |
WSAL_LOW,
|
936 |
__( 'User removed relationship from a custom field value for a post', 'wp-security-audit-log' ),
|
937 |
+
__( 'Removed relationships from the custom field %MetaKey% in the post %PostTitle%.', 'wp-security-audit-log' ),
|
938 |
[
|
939 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
940 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
955 |
2090,
|
956 |
WSAL_INFORMATIONAL,
|
957 |
__( 'User approved a comment', 'wp-security-audit-log' ),
|
958 |
+
__( 'Approved the comment posted by %Author% on the post %PostTitle%.', 'wp-security-audit-log' ),
|
959 |
[
|
960 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
961 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
962 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
963 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
964 |
],
|
965 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
966 |
'comment',
|
967 |
'approved'
|
968 |
),
|
970 |
2091,
|
971 |
WSAL_INFORMATIONAL,
|
972 |
__( 'User unapproved a comment', 'wp-security-audit-log' ),
|
973 |
+
__( 'Unapproved the comment posted by %Author% on the post %PostTitle%.', 'wp-security-audit-log' ),
|
974 |
[
|
975 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
976 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
977 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
978 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
979 |
],
|
980 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
981 |
'comment',
|
982 |
'unapproved'
|
983 |
),
|
985 |
2092,
|
986 |
WSAL_INFORMATIONAL,
|
987 |
__( 'User replied to a comment', 'wp-security-audit-log' ),
|
988 |
+
__( 'Replied to the comment posted by %Author% on the post %PostTitle%.', 'wp-security-audit-log' ),
|
989 |
[
|
990 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
991 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
992 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
993 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
994 |
],
|
995 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
996 |
'comment',
|
997 |
'created'
|
998 |
),
|
1000 |
2093,
|
1001 |
WSAL_LOW,
|
1002 |
__( 'User edited a comment', 'wp-security-audit-log' ),
|
1003 |
+
__( 'Edited the comment posted by %Author% on the post %PostTitle%.', 'wp-security-audit-log' ),
|
1004 |
[
|
1005 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1006 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1007 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1008 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1009 |
],
|
1010 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1011 |
'comment',
|
1012 |
'modified'
|
1013 |
),
|
1015 |
2094,
|
1016 |
WSAL_INFORMATIONAL,
|
1017 |
__( 'User marked a comment as Spam', 'wp-security-audit-log' ),
|
1018 |
+
__( 'Marked the comment posted by %Author% on the post %PostTitle% as spam.', 'wp-security-audit-log' ),
|
1019 |
[
|
1020 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1021 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1022 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1023 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1024 |
],
|
1025 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1026 |
'comment',
|
1027 |
'unapproved'
|
1028 |
),
|
1030 |
2095,
|
1031 |
WSAL_LOW,
|
1032 |
__( 'User marked a comment as Not Spam', 'wp-security-audit-log' ),
|
1033 |
+
__( 'Marked the comment posted by %Author% on the post %PostTitle% as not spam.', 'wp-security-audit-log' ),
|
1034 |
[
|
1035 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1036 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1037 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1038 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1039 |
],
|
1040 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1041 |
'comment',
|
1042 |
'approved'
|
1043 |
),
|
1045 |
2096,
|
1046 |
WSAL_LOW,
|
1047 |
__( 'User moved a comment to trash', 'wp-security-audit-log' ),
|
1048 |
+
__( 'Moved the comment posted by %Author% on the post %PostTitle% to trash.', 'wp-security-audit-log' ),
|
1049 |
[
|
1050 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1051 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1052 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1053 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1054 |
],
|
1055 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1056 |
'comment',
|
1057 |
'deleted'
|
1058 |
),
|
1060 |
2097,
|
1061 |
WSAL_INFORMATIONAL,
|
1062 |
__( 'User restored a comment from the trash', 'wp-security-audit-log' ),
|
1063 |
+
__( 'Restored the comment posted by %Author% on the post %PostTitle% from trash.', 'wp-security-audit-log' ),
|
1064 |
[
|
1065 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1066 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1067 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1068 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1069 |
],
|
1070 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1071 |
'comment',
|
1072 |
'restored'
|
1073 |
),
|
1075 |
2098,
|
1076 |
WSAL_LOW,
|
1077 |
__( 'User permanently deleted a comment', 'wp-security-audit-log' ),
|
1078 |
+
__( 'Permanently deleted the comment posted by %Author% on the post %PostTitle%.', 'wp-security-audit-log' ),
|
1079 |
[
|
1080 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1081 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1082 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1083 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1084 |
],
|
1085 |
+
wsaldefaults_build_links( [ 'PostUrlIfPublished' ] ),
|
1086 |
'comment',
|
1087 |
'deleted'
|
1088 |
),
|
1090 |
2099,
|
1091 |
WSAL_INFORMATIONAL,
|
1092 |
__( 'User posted a comment', 'wp-security-audit-log' ),
|
1093 |
+
__( 'Posted a comment on the post %PostTitle%.', 'wp-security-audit-log' ),
|
1094 |
[
|
1095 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1096 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1097 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1098 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1099 |
],
|
1100 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1101 |
'comment',
|
1102 |
'created'
|
1103 |
),
|
1109 |
2126,
|
1110 |
WSAL_INFORMATIONAL,
|
1111 |
__( 'Visitor posted a comment', 'wp-security-audit-log' ),
|
1112 |
+
__( 'Posted a comment on the post %PostTitle%.', 'wp-security-audit-log' ),
|
1113 |
[
|
1114 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
1115 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
1116 |
__( 'Post status', 'wp-security-audit-log' ) => '%PostStatus%',
|
1117 |
__( 'Comment ID', 'wp-security-audit-log' ) => '%CommentID%'
|
1118 |
],
|
1119 |
+
wsaldefaults_build_links( [ 'CommentLink', 'PostUrlIfPublished' ] ),
|
1120 |
'comment',
|
1121 |
'created'
|
1122 |
),
|
1160 |
2045,
|
1161 |
WSAL_LOW,
|
1162 |
__( 'User moved widget', 'wp-security-audit-log' ),
|
1163 |
+
__( 'Moved the %WidgetName% widget.', 'wp-security-audit-log' ),
|
1164 |
[
|
1165 |
__( 'From', 'wp-security-audit-log' ) => '%OldSidebar%',
|
1166 |
__( 'To', 'wp-security-audit-log' ) => '%NewSidebar%'
|
1189 |
2078,
|
1190 |
WSAL_LOW,
|
1191 |
__( 'User created new menu', 'wp-security-audit-log' ),
|
1192 |
+
__( 'New menu called %MenuName%.', 'wp-security-audit-log' ),
|
1193 |
[],
|
1194 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1195 |
'menu',
|
1199 |
2079,
|
1200 |
WSAL_LOW,
|
1201 |
__( 'User added content to a menu', 'wp-security-audit-log' ),
|
1202 |
+
__( 'Added the item %ContentName% to the menu %MenuName%.', 'wp-security-audit-log' ),
|
1203 |
[
|
1204 |
+
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
|
|
1205 |
],
|
1206 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1207 |
'menu',
|
1211 |
2080,
|
1212 |
WSAL_LOW,
|
1213 |
__( 'User removed content from a menu', 'wp-security-audit-log' ),
|
1214 |
+
__( 'Removed the item %ContentName% from the menu %MenuName%.', 'wp-security-audit-log' ),
|
1215 |
[
|
1216 |
+
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
|
|
1217 |
],
|
1218 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1219 |
'menu',
|
1223 |
2081,
|
1224 |
WSAL_MEDIUM,
|
1225 |
__( 'User deleted menu', 'wp-security-audit-log' ),
|
1226 |
+
__( 'Deleted the menu %MenuName%.', 'wp-security-audit-log' ),
|
1227 |
[],
|
1228 |
[],
|
1229 |
'menu',
|
1233 |
2082,
|
1234 |
WSAL_LOW,
|
1235 |
__( 'User changed menu setting', 'wp-security-audit-log' ),
|
1236 |
+
__( 'The setting %MenuSetting% in the menu %MenuName%.', 'wp-security-audit-log' ),
|
1237 |
+
[],
|
|
|
|
|
1238 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1239 |
'menu',
|
1240 |
'enabled'
|
1243 |
2083,
|
1244 |
WSAL_LOW,
|
1245 |
__( 'User modified content in a menu', 'wp-security-audit-log' ),
|
1246 |
+
__( 'Modified the item %ContentName% in the menu %MenuName%.', 'wp-security-audit-log' ),
|
1247 |
[
|
1248 |
+
__( 'Item type', 'wp-security-audit-log' ) => '%ContentType%'
|
|
|
1249 |
],
|
1250 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1251 |
'menu',
|
1255 |
2084,
|
1256 |
WSAL_LOW,
|
1257 |
__( 'User changed name of a menu', 'wp-security-audit-log' ),
|
1258 |
+
__( 'Renamed the menu %OldMenuName% to %MenuName%.', 'wp-security-audit-log' ),
|
1259 |
+
[],
|
|
|
|
|
|
|
1260 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1261 |
'menu',
|
1262 |
'renamed'
|
1265 |
2085,
|
1266 |
WSAL_LOW,
|
1267 |
__( 'User changed order of the objects in a menu', 'wp-security-audit-log' ),
|
1268 |
+
__( 'Changed the order of the items in the menu %MenuName%.', 'wp-security-audit-log' ),
|
1269 |
[],
|
1270 |
wsaldefaults_build_links( [ 'MenuUrl' ] ),
|
1271 |
'menu',
|
1275 |
2089,
|
1276 |
WSAL_LOW,
|
1277 |
__( 'User moved objects as a sub-item', 'wp-security-audit-log' ),
|
1278 |
+
__( 'Moved items as sub-items in the menu %MenuName%.', 'wp-security-audit-log' ),
|
1279 |
[
|
|
|
1280 |
__( 'Moved item', 'wp-security-audit-log' ) => '%ItemName%',
|
1281 |
__( 'as a sub-item of', 'wp-security-audit-log' ) => '%ParentName%'
|
1282 |
],
|
1675 |
4000,
|
1676 |
WSAL_CRITICAL,
|
1677 |
__( 'New user was created on WordPress', 'wp-security-audit-log' ),
|
1678 |
+
__( 'A new user %NewUserData->Username% is created via registration.', 'wp-security-audit-log' ),
|
1679 |
[
|
1680 |
+
__( 'User', 'wp-security-audit-log' ) => '%NewUserData->Username%'
|
|
|
1681 |
],
|
1682 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1683 |
'user',
|
1687 |
4001,
|
1688 |
WSAL_CRITICAL,
|
1689 |
__( 'User created another WordPress user', 'wp-security-audit-log' ),
|
1690 |
+
__( 'Created the new user: %NewUserData->Username%.', 'wp-security-audit-log' ),
|
1691 |
[
|
|
|
1692 |
__( 'Role', 'wp-security-audit-log' ) => '%NewUserData->Roles%',
|
1693 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
1694 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
1701 |
4002,
|
1702 |
WSAL_CRITICAL,
|
1703 |
__( 'The role of a user was changed by another WordPress user', 'wp-security-audit-log' ),
|
1704 |
+
__( 'Changed the role of user %TargetUsername% to %NewRole%.', 'wp-security-audit-log' ),
|
1705 |
[
|
1706 |
__( 'Previous role', 'wp-security-audit-log' ) => '%OldRole%',
|
|
|
1707 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1708 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%'
|
1709 |
],
|
1715 |
4003,
|
1716 |
WSAL_HIGH,
|
1717 |
__( 'User has changed his or her password', 'wp-security-audit-log' ),
|
1718 |
+
__( 'Changed the password.', 'wp-security-audit-log' ),
|
1719 |
[
|
1720 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1721 |
__( 'First name', 'wp-security-audit-log' ) => '%TargetUserData->FirstName%',
|
1729 |
4004,
|
1730 |
WSAL_HIGH,
|
1731 |
__( 'User changed another user\'s password', 'wp-security-audit-log' ),
|
1732 |
+
__( 'Changed the password of the user %TargetUserData->Username%.', 'wp-security-audit-log' ),
|
1733 |
[
|
1734 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1735 |
__( 'First name', 'wp-security-audit-log' ) => '%TargetUserData->FirstName%',
|
1743 |
4005,
|
1744 |
WSAL_MEDIUM,
|
1745 |
__( 'User changed his or her email address', 'wp-security-audit-log' ),
|
1746 |
+
__( 'Changed the email address to %NewEmail%.', 'wp-security-audit-log' ),
|
1747 |
[
|
1748 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1749 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1750 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1751 |
+
__( 'Previous email address', 'wp-security-audit-log' ) => '%OldEmail%'
|
|
|
1752 |
],
|
1753 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1754 |
'user',
|
1758 |
4006,
|
1759 |
WSAL_MEDIUM,
|
1760 |
__( 'User changed another user\'s email address', 'wp-security-audit-log' ),
|
1761 |
+
__( 'Changed the email address of the user %TargetUsername% to %NewEmail%.', 'wp-security-audit-log' ),
|
1762 |
[
|
1763 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1764 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1765 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1766 |
+
__( 'Previous email address', 'wp-security-audit-log' ) => '%OldEmail%'
|
|
|
1767 |
],
|
1768 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1769 |
'user',
|
1773 |
4007,
|
1774 |
WSAL_HIGH,
|
1775 |
__( 'User was deleted by another user', 'wp-security-audit-log' ),
|
1776 |
+
__( 'Deleted the user %TargetUserData->Username%.', 'wp-security-audit-log' ),
|
1777 |
[
|
|
|
1778 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserData->Roles%',
|
1779 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
1780 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
1787 |
4014,
|
1788 |
WSAL_INFORMATIONAL,
|
1789 |
__( 'User opened the profile page of another user', 'wp-security-audit-log' ),
|
1790 |
+
__( 'Opened the profile page of user %TargetUsername%.', 'wp-security-audit-log' ),
|
1791 |
[
|
1792 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1793 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1801 |
4015,
|
1802 |
WSAL_LOW,
|
1803 |
__( 'User updated a custom field value for a user', 'wp-security-audit-log' ),
|
1804 |
+
__( 'Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%.', 'wp-security-audit-log' ),
|
1805 |
[
|
1806 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1807 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1808 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
|
|
1809 |
__( 'Previous value', 'wp-security-audit-log' ) => '%old_value%',
|
1810 |
__( 'New value', 'wp-security-audit-log' ) => '%new_value%'
|
1811 |
],
|
1817 |
4016,
|
1818 |
WSAL_LOW,
|
1819 |
__( 'User created a custom field value for a user', 'wp-security-audit-log' ),
|
1820 |
+
__( 'Created the custom field %custom_field_name% in the user profile %TargetUsername%.', 'wp-security-audit-log' ),
|
1821 |
[
|
1822 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1823 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1824 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
|
|
1825 |
__( 'Custom field value', 'wp-security-audit-log' ) => '%new_value%'
|
1826 |
],
|
1827 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1832 |
4017,
|
1833 |
WSAL_INFORMATIONAL,
|
1834 |
__( 'User changed first name for a user', 'wp-security-audit-log' ),
|
1835 |
+
__( 'Changed the first name of the user %TargetUsername% to %new_firstname%.', 'wp-security-audit-log' ),
|
1836 |
[
|
1837 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1838 |
__( 'Previous name', 'wp-security-audit-log' ) => '%old_firstname%',
|
|
|
1839 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%'
|
1840 |
],
|
1841 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1846 |
4018,
|
1847 |
WSAL_INFORMATIONAL,
|
1848 |
__( 'User changed last name for a user', 'wp-security-audit-log' ),
|
1849 |
+
__( 'Changed the last name of the user %TargetUsername% to %new_lastname%.', 'wp-security-audit-log' ),
|
1850 |
[
|
1851 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1852 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1853 |
+
__( 'Previous last name', 'wp-security-audit-log' ) => '%old_lastname%'
|
|
|
1854 |
],
|
1855 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1856 |
'user',
|
1860 |
4019,
|
1861 |
WSAL_INFORMATIONAL,
|
1862 |
__( 'User changed nickname for a user', 'wp-security-audit-log' ),
|
1863 |
+
__( 'Changed the nickname of the user %TargetUsername% to %new_nickname%.', 'wp-security-audit-log' ),
|
1864 |
[
|
1865 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1866 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1867 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1868 |
+
__( 'Previous nickname', 'wp-security-audit-log' ) => '%old_nickname%'
|
|
|
1869 |
],
|
1870 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1871 |
'user',
|
1875 |
4020,
|
1876 |
WSAL_LOW,
|
1877 |
__( 'User changed the display name for a user', 'wp-security-audit-log' ),
|
1878 |
+
__( 'Changed the display name of the user %TargetUsername% to %new_displayname%.', 'wp-security-audit-log' ),
|
1879 |
[
|
1880 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1881 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1882 |
__( 'Last name', 'wp-security-audit-log' ) => '%LastName%',
|
1883 |
+
__( 'Previous display name', 'wp-security-audit-log' ) => '%old_displayname%'
|
|
|
1884 |
],
|
1885 |
wsaldefaults_build_links( [ 'EditUserLink' ] ),
|
1886 |
'user',
|
1891 |
4025,
|
1892 |
WSAL_CRITICAL,
|
1893 |
__( 'User created an application password', 'wp-security-audit-log' ),
|
1894 |
+
__( 'The application password %friendly_name%.', 'wp-security-audit-log' ),
|
1895 |
[
|
1896 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1897 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1898 |
+
__( 'Last name', 'wp-security-audit-log' ) => '%lastname%'
|
|
|
1899 |
],
|
1900 |
[],
|
1901 |
'user',
|
1905 |
4026,
|
1906 |
WSAL_CRITICAL,
|
1907 |
__( 'User created an application password', 'wp-security-audit-log' ),
|
1908 |
+
__( 'The application password %friendly_name% for the user %login%.', 'wp-security-audit-log' ),
|
1909 |
[
|
1910 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1911 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1912 |
+
__( 'Last name', 'wp-security-audit-log' ) => '%lastname%'
|
|
|
1913 |
],
|
1914 |
[],
|
1915 |
'user',
|
1920 |
4027,
|
1921 |
WSAL_HIGH,
|
1922 |
__( 'User revoked all application passwords', 'wp-security-audit-log' ),
|
1923 |
+
__( 'All application passwords.', 'wp-security-audit-log' ),
|
1924 |
[
|
1925 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1926 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1934 |
4028,
|
1935 |
WSAL_HIGH,
|
1936 |
__( 'User revoked all application passwords for a user', 'wp-security-audit-log' ),
|
1937 |
+
__( 'All application passwords from the user %login%.', 'wp-security-audit-log' ),
|
1938 |
[
|
1939 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1940 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1948 |
4029,
|
1949 |
WSAL_HIGH,
|
1950 |
__( 'Admin sent a password reset request to a user', 'wp-security-audit-log' ),
|
1951 |
+
__( 'Sent a password reset request to the user %login%.', 'wp-security-audit-log' ),
|
1952 |
[
|
1953 |
__( 'Role', 'wp-security-audit-log' ) => '%roles%',
|
1954 |
__( 'First name', 'wp-security-audit-log' ) => '%firstname%',
|
1965 |
4008,
|
1966 |
WSAL_CRITICAL,
|
1967 |
__( 'User granted Super Admin privileges', 'wp-security-audit-log' ),
|
1968 |
+
__( 'Granted Super Admin privileges to the user %TargetUsername%.', 'wp-security-audit-log' ),
|
1969 |
[
|
1970 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1971 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1979 |
4009,
|
1980 |
WSAL_CRITICAL,
|
1981 |
__( 'User revoked from Super Admin privileges', 'wp-security-audit-log' ),
|
1982 |
+
__( 'Revoked Super Admin privileges from %TargetUsername%.', 'wp-security-audit-log' ),
|
1983 |
[
|
1984 |
__( 'Role', 'wp-security-audit-log' ) => '%Roles%',
|
1985 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
1993 |
4010,
|
1994 |
WSAL_MEDIUM,
|
1995 |
__( 'Existing user added to a site', 'wp-security-audit-log' ),
|
1996 |
+
__( 'Added user %TargetUsername% to the site %SiteName%.', 'wp-security-audit-log' ),
|
1997 |
[
|
1998 |
__( 'Role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
1999 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
2007 |
4011,
|
2008 |
WSAL_MEDIUM,
|
2009 |
__( 'User removed from site', 'wp-security-audit-log' ),
|
2010 |
+
__( 'Removed user %TargetUsername% from the site %SiteName%', 'wp-security-audit-log' ),
|
2011 |
[
|
2012 |
__( 'Site role', 'wp-security-audit-log' ) => '%TargetUserRole%',
|
2013 |
__( 'First name', 'wp-security-audit-log' ) => '%FirstName%',
|
2021 |
4012,
|
2022 |
WSAL_CRITICAL,
|
2023 |
__( 'New network user created', 'wp-security-audit-log' ),
|
2024 |
+
__( 'Created the new network user %NewUserData->Username%.', 'wp-security-audit-log' ),
|
2025 |
[
|
2026 |
__( 'First name', 'wp-security-audit-log' ) => '%NewUserData->FirstName%',
|
2027 |
__( 'Last name', 'wp-security-audit-log' ) => '%NewUserData->LastName%'
|
2039 |
5000,
|
2040 |
WSAL_CRITICAL,
|
2041 |
__( 'User installed a plugin', 'wp-security-audit-log' ),
|
2042 |
+
__( 'Installed the plugin %Plugin->Name%.', 'wp-security-audit-log' ),
|
2043 |
[
|
|
|
2044 |
__( 'Version', 'wp-security-audit-log' ) => '%Plugin->Version%',
|
2045 |
__( 'Install location', 'wp-security-audit-log' ) => '%Plugin->plugin_dir_path%'
|
2046 |
],
|
2052 |
5001,
|
2053 |
WSAL_HIGH,
|
2054 |
__( 'User activated a WordPress plugin', 'wp-security-audit-log' ),
|
2055 |
+
__( 'Activated the plugin %PluginData->Name%.', 'wp-security-audit-log' ),
|
2056 |
[
|
|
|
2057 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2058 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2059 |
],
|
2065 |
5002,
|
2066 |
WSAL_HIGH,
|
2067 |
__( 'User deactivated a WordPress plugin', 'wp-security-audit-log' ),
|
2068 |
+
__( 'Deactivated the plugin %PluginData->Name%.', 'wp-security-audit-log' ),
|
2069 |
[
|
|
|
2070 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2071 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2072 |
],
|
2078 |
5003,
|
2079 |
WSAL_HIGH,
|
2080 |
__( 'User uninstalled a plugin', 'wp-security-audit-log' ),
|
2081 |
+
__( 'Uninstalled the plugin %PluginData->Name%.', 'wp-security-audit-log' ),
|
2082 |
[
|
|
|
2083 |
__( 'Version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2084 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2085 |
],
|
2091 |
5004,
|
2092 |
WSAL_LOW,
|
2093 |
__( 'User upgraded a plugin', 'wp-security-audit-log' ),
|
2094 |
+
__( 'Updated the plugin %PluginData->Name%.', 'wp-security-audit-log' ),
|
2095 |
[
|
|
|
2096 |
__( 'Updated version', 'wp-security-audit-log' ) => '%PluginData->Version%',
|
2097 |
__( 'Install location', 'wp-security-audit-log' ) => '%PluginFile%'
|
2098 |
],
|
2104 |
5010,
|
2105 |
WSAL_LOW,
|
2106 |
__( 'Plugin created table', 'wp-security-audit-log' ),
|
2107 |
+
__( 'The plugin %Plugin->Name% created this table in the database.', 'wp-security-audit-log' ),
|
2108 |
[
|
2109 |
+
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2110 |
],
|
2111 |
[],
|
2112 |
'database',
|
2116 |
5011,
|
2117 |
WSAL_LOW,
|
2118 |
__( 'Plugin modified table structure', 'wp-security-audit-log' ),
|
2119 |
+
__( 'The plugin %Plugin->Name% modified the structure of a database table.', 'wp-security-audit-log' ),
|
2120 |
[
|
2121 |
+
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2122 |
],
|
2123 |
[],
|
2124 |
'database',
|
2128 |
5012,
|
2129 |
WSAL_MEDIUM,
|
2130 |
__( 'Plugin deleted table', 'wp-security-audit-log' ),
|
2131 |
+
__( 'The plugin %Plugin->Name% deleted this table from the database.', 'wp-security-audit-log' ),
|
2132 |
[
|
2133 |
+
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2134 |
],
|
2135 |
[],
|
2136 |
'database',
|
2140 |
5019,
|
2141 |
WSAL_MEDIUM,
|
2142 |
__( 'A plugin created a post', 'wp-security-audit-log' ),
|
2143 |
+
__( 'The plugin created the post %PostTitle%.', 'wp-security-audit-log' ),
|
2144 |
[
|
2145 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
2146 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
2155 |
5025,
|
2156 |
WSAL_LOW,
|
2157 |
__( 'A plugin deleted a post', 'wp-security-audit-log' ),
|
2158 |
+
__( 'A plugin deleted the post %PostTitle%.', 'wp-security-audit-log' ),
|
2159 |
[
|
2160 |
__( 'Post ID', 'wp-security-audit-log' ) => '%PostID%',
|
2161 |
__( 'Post type', 'wp-security-audit-log' ) => '%PostType%',
|
2170 |
2051,
|
2171 |
WSAL_HIGH,
|
2172 |
__( 'User changed a file using the plugin editor', 'wp-security-audit-log' ),
|
2173 |
+
__( 'Modified the file %File% with the plugin editor.', 'wp-security-audit-log' ),
|
2174 |
+
[],
|
|
|
|
|
2175 |
[],
|
2176 |
'file',
|
2177 |
'modified'
|
2183 |
5005,
|
2184 |
WSAL_CRITICAL,
|
2185 |
__( 'User installed a theme', 'wp-security-audit-log' ),
|
2186 |
+
__( 'Installed the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2187 |
[
|
|
|
2188 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2189 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%',
|
2190 |
],
|
2196 |
5006,
|
2197 |
WSAL_HIGH,
|
2198 |
__( 'User activated a theme', 'wp-security-audit-log' ),
|
2199 |
+
__( 'Activated the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2200 |
[
|
|
|
2201 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2202 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2203 |
],
|
2209 |
5007,
|
2210 |
WSAL_HIGH,
|
2211 |
__( 'User uninstalled a theme', 'wp-security-audit-log' ),
|
2212 |
+
__( 'Deleted the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2213 |
[
|
|
|
2214 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2215 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2216 |
],
|
2222 |
5013,
|
2223 |
WSAL_LOW,
|
2224 |
__( 'Theme created tables', 'wp-security-audit-log' ),
|
2225 |
+
__( 'The theme %Theme->Name% created this tables in the database.', 'wp-security-audit-log' ),
|
2226 |
[
|
2227 |
+
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2228 |
],
|
2229 |
[],
|
2230 |
'database',
|
2234 |
5014,
|
2235 |
WSAL_LOW,
|
2236 |
__( 'Theme modified tables structure', 'wp-security-audit-log' ),
|
2237 |
+
__( 'The theme %Theme->Name% modified the structure of this database table', 'wp-security-audit-log' ),
|
2238 |
[
|
2239 |
+
__( 'Table', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2240 |
],
|
2241 |
[],
|
2242 |
'database',
|
2246 |
5015,
|
2247 |
WSAL_MEDIUM,
|
2248 |
__( 'Theme deleted tables', 'wp-security-audit-log' ),
|
2249 |
+
__( 'The theme %Theme->Name% deleted this table from the database.', 'wp-security-audit-log' ),
|
2250 |
[
|
2251 |
+
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
|
|
2252 |
],
|
2253 |
[],
|
2254 |
'database',
|
2258 |
5031,
|
2259 |
WSAL_LOW,
|
2260 |
__( 'User updated a theme', 'wp-security-audit-log' ),
|
2261 |
+
__( 'Updated the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2262 |
[
|
|
|
2263 |
__( 'New version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2264 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2265 |
],
|
2271 |
2046,
|
2272 |
WSAL_HIGH,
|
2273 |
__( 'User changed a file using the theme editor', 'wp-security-audit-log' ),
|
2274 |
+
__( 'Modified the file %Theme%/%File% with the theme editor.', 'wp-security-audit-log' ),
|
2275 |
+
[],
|
|
|
|
|
2276 |
[],
|
2277 |
'file',
|
2278 |
'modified'
|
2284 |
5008,
|
2285 |
WSAL_HIGH,
|
2286 |
__( 'Activated theme on network', 'wp-security-audit-log' ),
|
2287 |
+
__( 'Network activated the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2288 |
[
|
2289 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2290 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2297 |
5009,
|
2298 |
WSAL_MEDIUM,
|
2299 |
__( 'Deactivated theme from network', 'wp-security-audit-log' ),
|
2300 |
+
__( 'Network deactivated the theme %Theme->Name%.', 'wp-security-audit-log' ),
|
2301 |
[
|
2302 |
__( 'Version', 'wp-security-audit-log' ) => '%Theme->Version%',
|
2303 |
__( 'Install location', 'wp-security-audit-log' ) => '%Theme->get_template_directory%'
|
2313 |
5016,
|
2314 |
WSAL_HIGH,
|
2315 |
__( 'Unknown component created tables', 'wp-security-audit-log' ),
|
2316 |
+
__( 'An unknown component created these tables in the database.', 'wp-security-audit-log' ),
|
2317 |
[
|
2318 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2319 |
],
|
2325 |
5017,
|
2326 |
WSAL_HIGH,
|
2327 |
__( 'Unknown component modified tables structure', 'wp-security-audit-log' ),
|
2328 |
+
__( 'An unknown component modified the structure of these database tables.', 'wp-security-audit-log' ),
|
2329 |
[
|
2330 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2331 |
],
|
2337 |
5018,
|
2338 |
WSAL_HIGH,
|
2339 |
__( 'Unknown component deleted tables', 'wp-security-audit-log' ),
|
2340 |
+
__( 'An unknown component deleted these tables from the database.', 'wp-security-audit-log' ),
|
2341 |
[
|
2342 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2343 |
],
|
2349 |
5022,
|
2350 |
WSAL_HIGH,
|
2351 |
__( 'WordPress created tables', 'wp-security-audit-log' ),
|
2352 |
+
__( 'WordPress has created these tables in the database.', 'wp-security-audit-log' ),
|
2353 |
[
|
2354 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2355 |
],
|
2361 |
5023,
|
2362 |
WSAL_HIGH,
|
2363 |
__( 'WordPress modified tables structure', 'wp-security-audit-log' ),
|
2364 |
+
__( 'WordPress modified the structure of these database tables.', 'wp-security-audit-log' ),
|
2365 |
[
|
2366 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2367 |
],
|
2373 |
5024,
|
2374 |
WSAL_HIGH,
|
2375 |
__( 'WordPress deleted tables', 'wp-security-audit-log' ),
|
2376 |
+
__( 'WordPress deleted these tables from the database.', 'wp-security-audit-log' ),
|
2377 |
[
|
2378 |
__( 'Tables', 'wp-security-audit-log' ) => '%TableNames%'
|
2379 |
],
|
2426 |
6004,
|
2427 |
WSAL_MEDIUM,
|
2428 |
__( 'WordPress was updated', 'wp-security-audit-log' ),
|
2429 |
+
__( 'Updated WordPress.', 'wp-security-audit-log' ),
|
2430 |
[
|
2431 |
__( 'Previous version', 'wp-security-audit-log' ) => '%OldVersion%',
|
2432 |
__( 'New version', 'wp-security-audit-log' ) => '%NewVersion%'
|
2455 |
6000,
|
2456 |
WSAL_INFORMATIONAL,
|
2457 |
__( 'Events automatically pruned by system', 'wp-security-audit-log' ),
|
2458 |
+
__( 'System automatically deleted %EventCount% events from the activity log.', 'wp-security-audit-log' ),
|
2459 |
[],
|
2460 |
[],
|
2461 |
'wp-activity-log',
|
2465 |
6006,
|
2466 |
WSAL_MEDIUM,
|
2467 |
__( 'Reset the plugin\'s settings to default', 'wp-security-audit-log' ),
|
2468 |
+
__( 'Reset the activity log plugin\'s settings to default.', 'wp-security-audit-log' ),
|
2469 |
[],
|
2470 |
[],
|
2471 |
'wp-activity-log',
|
2475 |
6034,
|
2476 |
WSAL_CRITICAL,
|
2477 |
__( 'Purged the activity log', 'wp-security-audit-log' ),
|
2478 |
+
__( 'Purged the activity log.', 'wp-security-audit-log' ),
|
2479 |
[],
|
2480 |
[],
|
2481 |
'wp-activity-log',
|
2485 |
6043,
|
2486 |
WSAL_HIGH,
|
2487 |
__( 'Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard', 'wp-security-audit-log' ),
|
2488 |
+
__( 'Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard.', 'wp-security-audit-log' ),
|
2489 |
[],
|
2490 |
[],
|
2491 |
'wp-activity-log',
|
2498 |
6001,
|
2499 |
WSAL_CRITICAL,
|
2500 |
__( 'Option Anyone Can Register in WordPress settings changed', 'wp-security-audit-log' ),
|
2501 |
+
__( 'The <strong>Membership</strong> setting <strong>Anyone can register</strong>.', 'wp-security-audit-log' ),
|
2502 |
[],
|
2503 |
[],
|
2504 |
'system-setting',
|
2508 |
6002,
|
2509 |
WSAL_CRITICAL,
|
2510 |
__( 'New User Default Role changed', 'wp-security-audit-log' ),
|
2511 |
+
__( 'Changed the <strong>New user default role</strong> WordPress setting.', 'wp-security-audit-log' ),
|
2512 |
[
|
2513 |
__( 'Previous role', 'wp-security-audit-log' ) => '%OldRole%',
|
2514 |
__( 'New role', 'wp-security-audit-log' ) => '%NewRole%'
|
2521 |
6003,
|
2522 |
WSAL_CRITICAL,
|
2523 |
__( 'WordPress Administrator Notification email changed', 'wp-security-audit-log' ),
|
2524 |
+
__( 'Change the <strong>Administrator email address</strong> in the WordPress settings.', 'wp-security-audit-log' ),
|
2525 |
[
|
2526 |
__( 'Previous address', 'wp-security-audit-log' ) => '%OldEmail%',
|
2527 |
__( 'New address', 'wp-security-audit-log' ) => '%NewEmail%'
|
2534 |
6005,
|
2535 |
WSAL_HIGH,
|
2536 |
__( 'User changes the WordPress Permalinks', 'wp-security-audit-log' ),
|
2537 |
+
__( 'Changed the <strong>WordPress permalinks</strong>.', 'wp-security-audit-log' ),
|
2538 |
[
|
2539 |
__( 'Previous permalinks', 'wp-security-audit-log' ) => '%OldPattern%',
|
2540 |
__( 'New permalinks', 'wp-security-audit-log' ) => '%NewPattern%'
|
2547 |
6008,
|
2548 |
WSAL_INFORMATIONAL,
|
2549 |
__( 'Enabled/Disabled the option Discourage search engines from indexing this site', 'wp-security-audit-log' ),
|
2550 |
+
__( 'Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)', 'wp-security-audit-log' ),
|
2551 |
[],
|
2552 |
[],
|
2553 |
'system-setting',
|
2557 |
6009,
|
2558 |
WSAL_MEDIUM,
|
2559 |
__( 'Enabled/Disabled comments on all the website', 'wp-security-audit-log' ),
|
2560 |
+
__( 'Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>.', 'wp-security-audit-log' ),
|
2561 |
[],
|
2562 |
[],
|
2563 |
'system-setting',
|
2568 |
6010,
|
2569 |
WSAL_MEDIUM,
|
2570 |
__( 'Enabled/Disabled the option Comment author must fill out name and email', 'wp-security-audit-log' ),
|
2571 |
+
__( 'Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>.', 'wp-security-audit-log' ),
|
2572 |
[],
|
2573 |
[],
|
2574 |
'system-setting',
|
2578 |
6011,
|
2579 |
WSAL_MEDIUM,
|
2580 |
__( 'Enabled/Disabled the option Users must be logged in and registered to comment', 'wp-security-audit-log' ),
|
2581 |
+
__( 'Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>.', 'wp-security-audit-log' ),
|
2582 |
[],
|
2583 |
[],
|
2584 |
'system-setting',
|
2588 |
6012,
|
2589 |
WSAL_INFORMATIONAL,
|
2590 |
__( 'Enabled/Disabled the option to automatically close comments', 'wp-security-audit-log' ),
|
2591 |
+
__( 'Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>.', 'wp-security-audit-log' ),
|
2592 |
[],
|
2593 |
[],
|
2594 |
'system-setting',
|
2598 |
6013,
|
2599 |
WSAL_INFORMATIONAL,
|
2600 |
__( 'Changed the value of the option Automatically close comments', 'wp-security-audit-log' ),
|
2601 |
+
__( 'Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%.', 'wp-security-audit-log' ),
|
2602 |
[
|
2603 |
+
__( 'Previous value', 'wp-security-audit-log' ) => '%OldValue%'
|
|
|
2604 |
],
|
2605 |
[],
|
2606 |
'system-setting',
|
2610 |
6014,
|
2611 |
WSAL_MEDIUM,
|
2612 |
__( 'Enabled/Disabled the option for comments to be manually approved', 'wp-security-audit-log' ),
|
2613 |
+
__( 'Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>.', 'wp-security-audit-log' ),
|
2614 |
[],
|
2615 |
[],
|
2616 |
'system-setting',
|
2620 |
6015,
|
2621 |
WSAL_LOW,
|
2622 |
__( 'Enabled/Disabled the option for an author to have previously approved comments for the comments to appear', 'wp-security-audit-log' ),
|
2623 |
+
__( 'Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>.', 'wp-security-audit-log' ),
|
2624 |
[],
|
2625 |
[],
|
2626 |
'system-setting',
|
2630 |
6016,
|
2631 |
WSAL_LOW,
|
2632 |
__( 'Changed the number of links that a comment must have to be held in the queue', 'wp-security-audit-log' ),
|
2633 |
+
__( 'Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links.', 'wp-security-audit-log' ),
|
2634 |
[
|
2635 |
+
__( 'Previous value', 'wp-security-audit-log' ) => '%OldValue%'
|
|
|
2636 |
],
|
2637 |
[],
|
2638 |
'system-setting',
|
2642 |
6017,
|
2643 |
WSAL_INFORMATIONAL,
|
2644 |
__( 'Modified the list of keywords for comments moderation', 'wp-security-audit-log' ),
|
2645 |
+
__( 'Modified the list of keywords for comments medoration in WordPress.', 'wp-security-audit-log' ),
|
2646 |
[],
|
2647 |
[],
|
2648 |
'system-setting',
|
2652 |
6018,
|
2653 |
WSAL_INFORMATIONAL,
|
2654 |
__( 'Modified the list of keywords for comments blacklisting', 'wp-security-audit-log' ),
|
2655 |
+
__( 'Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress.', 'wp-security-audit-log' ),
|
2656 |
[],
|
2657 |
[],
|
2658 |
'system-setting',
|
2662 |
6024,
|
2663 |
WSAL_CRITICAL,
|
2664 |
__( 'Option WordPress Address (URL) in WordPress settings changed', 'wp-security-audit-log' ),
|
2665 |
+
__( 'Changed the <strong>WordPress address (URL)</strong> tp %new_url%.', 'wp-security-audit-log' ),
|
2666 |
[
|
2667 |
+
__( 'Previous URL', 'wp-security-audit-log' ) => '%old_url%'
|
|
|
2668 |
],
|
2669 |
[],
|
2670 |
'system-setting',
|
2674 |
6025,
|
2675 |
WSAL_CRITICAL,
|
2676 |
__( 'Option Site Address (URL) in WordPress settings changed', 'wp-security-audit-log' ),
|
2677 |
+
__( 'Changed the <strong>Site address (URL)</strong> to %new_url%.', 'wp-security-audit-log' ),
|
2678 |
[
|
2679 |
+
__( 'Previous URL', 'wp-security-audit-log' ) => '%old_url%'
|
|
|
2680 |
],
|
2681 |
[],
|
2682 |
'system-setting',
|
2686 |
6035,
|
2687 |
WSAL_CRITICAL,
|
2688 |
__( 'Option Your homepage displays in WordPress settings changed', 'wp-security-audit-log' ),
|
2689 |
+
__( 'Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%.', 'wp-security-audit-log' ),
|
2690 |
[
|
2691 |
+
__( 'Previous setting', 'wp-security-audit-log' ) => '%old_homepage%'
|
|
|
2692 |
],
|
2693 |
[],
|
2694 |
'system-setting',
|
2698 |
6036,
|
2699 |
WSAL_CRITICAL,
|
2700 |
__( 'Option homepage in WordPress settings changed', 'wp-security-audit-log' ),
|
2701 |
+
__( 'Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%.', 'wp-security-audit-log' ),
|
2702 |
[
|
2703 |
+
__( 'Previous page', 'wp-security-audit-log' ) => '%old_page%'
|
|
|
2704 |
],
|
2705 |
[],
|
2706 |
'system-setting',
|
2710 |
6037,
|
2711 |
WSAL_CRITICAL,
|
2712 |
__( 'Option posts page in WordPress settings changed', 'wp-security-audit-log' ),
|
2713 |
+
__( 'Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%.', 'wp-security-audit-log' ),
|
2714 |
[
|
2715 |
+
__( 'Previous page', 'wp-security-audit-log' ) => '%old_page%'
|
|
|
2716 |
],
|
2717 |
[],
|
2718 |
'system-setting',
|
2723 |
6040,
|
2724 |
WSAL_CRITICAL,
|
2725 |
__( 'Option Timezone in WordPress settings changed', 'wp-security-audit-log' ),
|
2726 |
+
__( 'Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%.', 'wp-security-audit-log' ),
|
2727 |
[
|
2728 |
+
__( 'Previous timezone', 'wp-security-audit-log' ) => '%old_timezone%'
|
|
|
2729 |
],
|
2730 |
[],
|
2731 |
'system-setting',
|
2735 |
6041,
|
2736 |
WSAL_CRITICAL,
|
2737 |
__( 'Option Date format in WordPress settings changed', 'wp-security-audit-log' ),
|
2738 |
+
__( 'Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%.', 'wp-security-audit-log' ),
|
2739 |
[
|
2740 |
+
__( 'Previous format', 'wp-security-audit-log' ) => '%old_date_format%'
|
|
|
2741 |
],
|
2742 |
[],
|
2743 |
'system-setting',
|
2747 |
6042,
|
2748 |
WSAL_CRITICAL,
|
2749 |
__( 'Option Time format in WordPress settings changed', 'wp-security-audit-log' ),
|
2750 |
+
__( 'Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%.', 'wp-security-audit-log' ),
|
2751 |
[
|
2752 |
+
__( 'Previous format', 'wp-security-audit-log' ) => '%old_time_format%'
|
|
|
2753 |
],
|
2754 |
[],
|
2755 |
'system-setting',
|
2760 |
6044,
|
2761 |
WSAL_HIGH,
|
2762 |
__( 'Option Automatic updates setting changed', 'wp-security-audit-log' ),
|
2763 |
+
__( 'Changed the <strong>Automatic updates</strong> setting.', 'wp-security-audit-log' ),
|
2764 |
[
|
2765 |
__( 'New setting status', 'wp-security-audit-log' ) => '%updates_status%'
|
2766 |
],
|
2773 |
6045,
|
2774 |
WSAL_HIGH,
|
2775 |
__( 'Option Site Language setting changed', 'wp-security-audit-log' ),
|
2776 |
+
__( 'Changed the <strong>Site Language</strong> to %new_value%.', 'wp-security-audit-log' ),
|
2777 |
[
|
2778 |
+
__( 'Previous setting', 'wp-security-audit-log' ) => '%previous_value%'
|
|
|
2779 |
],
|
2780 |
[],
|
2781 |
'system-setting',
|
2790 |
7000,
|
2791 |
WSAL_CRITICAL,
|
2792 |
__( 'New site added on the network', 'wp-security-audit-log' ),
|
2793 |
+
__( 'Added the new site %SiteName% to the network.', 'wp-security-audit-log' ),
|
2794 |
[
|
2795 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2796 |
],
|
2802 |
7001,
|
2803 |
WSAL_HIGH,
|
2804 |
__( 'Existing site archived', 'wp-security-audit-log' ),
|
2805 |
+
__( 'Archived the site %SiteName% on the network.', 'wp-security-audit-log' ),
|
2806 |
[
|
2807 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2808 |
],
|
2814 |
7002,
|
2815 |
WSAL_HIGH,
|
2816 |
__( 'Archived site has been unarchived', 'wp-security-audit-log' ),
|
2817 |
+
__( 'Unarchived the site %SiteName%.', 'wp-security-audit-log' ),
|
2818 |
[
|
2819 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2820 |
],
|
2826 |
7003,
|
2827 |
WSAL_HIGH,
|
2828 |
__( 'Deactivated site has been activated', 'wp-security-audit-log' ),
|
2829 |
+
__( 'Activated the site %SiteName% on the network.', 'wp-security-audit-log' ),
|
2830 |
[
|
2831 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2832 |
],
|
2838 |
7004,
|
2839 |
WSAL_HIGH,
|
2840 |
__( 'Site has been deactivated', 'wp-security-audit-log' ),
|
2841 |
+
__( 'Deactiveated the site %SiteName% on the network.', 'wp-security-audit-log' ),
|
2842 |
[
|
2843 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2844 |
],
|
2850 |
7005,
|
2851 |
WSAL_HIGH,
|
2852 |
__( 'Existing site deleted from network', 'wp-security-audit-log' ),
|
2853 |
+
__( 'The site: %SiteName%.', 'wp-security-audit-log' ),
|
2854 |
[
|
2855 |
__( 'URL', 'wp-security-audit-log' ) => '%BlogURL%'
|
2856 |
],
|
2862 |
7007,
|
2863 |
WSAL_CRITICAL,
|
2864 |
__( 'Allow site administrators to add new users to their sites settings changed', 'wp-security-audit-log' ),
|
2865 |
+
__( 'Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>.', 'wp-security-audit-log' ),
|
2866 |
[],
|
2867 |
[],
|
2868 |
'multisite-network',
|
2872 |
7008,
|
2873 |
WSAL_HIGH,
|
2874 |
__( 'Site upload space settings changed', 'wp-security-audit-log' ),
|
2875 |
+
__( 'Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site\'s upload directory).', 'wp-security-audit-log' ),
|
2876 |
[],
|
2877 |
[],
|
2878 |
'multisite-network',
|
2882 |
7009,
|
2883 |
WSAL_MEDIUM,
|
2884 |
__( 'Site upload space file size settings changed', 'wp-security-audit-log' ),
|
2885 |
+
__( 'Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%.', 'wp-security-audit-log' ),
|
2886 |
[
|
2887 |
+
__( 'Previous size (MB)', 'wp-security-audit-log' ) => '%old_value%'
|
|
|
2888 |
],
|
2889 |
[],
|
2890 |
'multisite-network',
|
2894 |
7010,
|
2895 |
WSAL_CRITICAL,
|
2896 |
__( 'Site Upload file types settings changed', 'wp-security-audit-log' ),
|
2897 |
+
__( 'Changed the network setting <strong>Upload file types (list of allowed file types)</strong>.', 'wp-security-audit-log' ),
|
2898 |
[
|
2899 |
__( 'Previous value', 'wp-security-audit-log' ) => '%old_value%',
|
2900 |
__( 'New value', 'wp-security-audit-log' ) => '%new_value%'
|
2907 |
7011,
|
2908 |
WSAL_CRITICAL,
|
2909 |
__( 'Site Max upload file size settings changed', 'wp-security-audit-log' ),
|
2910 |
+
__( 'Changed the <strong>Max upload file size</strong> network setting to %new_value%.', 'wp-security-audit-log' ),
|
2911 |
[
|
2912 |
+
__( 'Previous size (KB)', 'wp-security-audit-log' ) => '%old_value%'
|
|
|
2913 |
],
|
2914 |
[],
|
2915 |
'multisite-network',
|
2919 |
7012,
|
2920 |
WSAL_HIGH,
|
2921 |
__( 'Allow new registrations settings changed', 'wp-security-audit-log' ),
|
2922 |
+
__( 'Changed the <strong>Allow new registrations</strong> setting to %new_setting%.', 'wp-security-audit-log' ),
|
2923 |
[
|
2924 |
+
__( 'Previous setting', 'wp-security-audit-log' ) => '%previous_setting%'
|
|
|
2925 |
],
|
2926 |
[],
|
2927 |
'multisite-network',
|
languages/wp-security-audit-log.pot
CHANGED
@@ -44,20 +44,28 @@ msgstr ""
|
|
44 |
msgid "User Activity"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: defaults.php:182
|
48 |
msgid "User logged in"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
52 |
msgid "User logged out"
|
53 |
msgstr ""
|
54 |
|
|
|
|
|
|
|
|
|
55 |
#: defaults.php:202
|
56 |
msgid "Login failed"
|
57 |
msgstr ""
|
58 |
|
59 |
#: defaults.php:203, defaults.php:213
|
60 |
-
msgid "%Attempts% failed login(s)"
|
61 |
msgstr ""
|
62 |
|
63 |
#: defaults.php:212
|
@@ -81,7 +89,7 @@ msgid "User logged in with existing session(s)"
|
|
81 |
msgstr ""
|
82 |
|
83 |
#: defaults.php:235
|
84 |
-
msgid "User logged in
|
85 |
msgstr ""
|
86 |
|
87 |
#: defaults.php:237, extensions/reports/classes/HtmlReportGenerator.php:134
|
@@ -101,2310 +109,2254 @@ msgid "User session destroyed and logged out"
|
|
101 |
msgstr ""
|
102 |
|
103 |
#: defaults.php:257
|
104 |
-
msgid "Terminated the session of
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: defaults.php:259, defaults.php:
|
108 |
-
msgid "User"
|
109 |
-
msgstr ""
|
110 |
-
|
111 |
-
#: defaults.php:260, defaults.php:274, defaults.php:1711, defaults.php:1724, defaults.php:1753, defaults.php:1767, defaults.php:1781, defaults.php:1797, defaults.php:1814, defaults.php:1828, defaults.php:1842, defaults.php:1859, defaults.php:1875, defaults.php:1890, defaults.php:1905, defaults.php:1921, defaults.php:1938, defaults.php:1953, defaults.php:1969, defaults.php:1983, defaults.php:1997, defaults.php:2014, defaults.php:2028, defaults.php:2042, extensions/external-db/classes/Common.php:969, extensions/reports/classes/CsvReportGenerator.php:88, extensions/reports/classes/CsvReportGenerator.php:72, extensions/reports/classes/HtmlReportGenerator.php:250, extensions/reports/classes/HtmlReportGenerator.php:226
|
112 |
msgid "Role"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: defaults.php:
|
116 |
msgid "Session ID"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: defaults.php:
|
120 |
msgid "Switched to another user"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: defaults.php:
|
124 |
-
msgid "Switched to
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: defaults.php:
|
128 |
-
msgid "User uploaded file
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: defaults.php:
|
132 |
-
msgid "
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: defaults.php:
|
136 |
msgid "Directory"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: defaults.php:
|
140 |
msgid "User deleted file from Uploads directory"
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
144 |
msgid "User requested a password reset"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: defaults.php:
|
148 |
msgid "User requested a password reset. This does not mean that the password was changed."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: defaults.php:
|
152 |
msgid "Content & Comments"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: defaults.php:
|
156 |
msgid "Content"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: defaults.php:
|
160 |
msgid "User created a new post and saved it as draft"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: defaults.php:
|
164 |
-
msgid "Created the post %PostTitle
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: defaults.php:
|
168 |
msgid "Post ID"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: defaults.php:
|
172 |
msgid "Post type"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: defaults.php:
|
176 |
msgid "Post status"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: defaults.php:
|
180 |
msgid "User published a post"
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: defaults.php:
|
184 |
-
msgid "Published the post %PostTitle
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: defaults.php:
|
188 |
msgid "User modified a post"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: defaults.php:
|
192 |
-
msgid "Modified the post %PostTitle
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: defaults.php:
|
196 |
msgid "User permanently deleted a post from the trash"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: defaults.php:
|
200 |
-
msgid "Permanently deleted the post %PostTitle
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: defaults.php:
|
204 |
msgid "User moved a post to the trash"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: defaults.php:
|
208 |
-
msgid "Moved the post %PostTitle% to trash"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: defaults.php:
|
212 |
msgid "User restored a post from trash"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: defaults.php:
|
216 |
-
msgid "Restored the post %PostTitle% from trash"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: defaults.php:
|
220 |
msgid "User changed post URL"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: defaults.php:
|
224 |
-
msgid "Changed the URL of the post %PostTitle
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: defaults.php:
|
228 |
msgid "Previous URL"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: defaults.php:
|
232 |
msgid "New URL"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: defaults.php:
|
236 |
msgid "User changed post author"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: defaults.php:
|
240 |
-
msgid "Changed the author of the post %PostTitle%"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: defaults.php:
|
244 |
msgid "Previous author"
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: defaults.php:
|
248 |
-
msgid "New author"
|
249 |
-
msgstr ""
|
250 |
-
|
251 |
-
#: defaults.php:440
|
252 |
msgid "User changed post status"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: defaults.php:
|
256 |
-
msgid "Changed the status of the post %PostTitle%"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: defaults.php:
|
260 |
msgid "Previous status"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: defaults.php:
|
264 |
-
msgid "New status"
|
265 |
-
msgstr ""
|
266 |
-
|
267 |
-
#: defaults.php:455
|
268 |
msgid "User changed the visibility of a post"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: defaults.php:
|
272 |
-
msgid "Changed the visibility of the post %PostTitle%"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: defaults.php:
|
276 |
msgid "Previous visibility status"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: defaults.php:
|
280 |
-
msgid "New visibility status"
|
281 |
-
msgstr ""
|
282 |
-
|
283 |
-
#: defaults.php:471
|
284 |
msgid "User changed the date of a post"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: defaults.php:
|
288 |
-
msgid "Changed the date of the post %PostTitle%"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: defaults.php:
|
292 |
msgid "Previous date"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: defaults.php:
|
296 |
-
msgid "New date"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#: defaults.php:487
|
300 |
msgid "User changed the parent of a page"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: defaults.php:
|
304 |
-
msgid "Changed the parent of the post %PostTitle%"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: defaults.php:
|
308 |
msgid "Previous parent"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: defaults.php:494
|
312 |
-
msgid "New parent"
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: defaults.php:503
|
316 |
msgid "User changed the template of a page"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: defaults.php:
|
320 |
-
msgid "Changed the template of the post %PostTitle%"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: defaults.php:
|
324 |
msgid "Previous template"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: defaults.php:
|
328 |
-
msgid "New template"
|
329 |
-
msgstr ""
|
330 |
-
|
331 |
-
#: defaults.php:519
|
332 |
msgid "User set a post as sticky"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: defaults.php:
|
336 |
-
msgid "Set the post %PostTitle% as sticky"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: defaults.php:
|
340 |
msgid "User removed post from sticky"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: defaults.php:
|
344 |
-
msgid "Removed the post %PostTitle% from sticky"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: defaults.php:
|
348 |
msgid "User modified the content of a post"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: defaults.php:
|
352 |
-
msgid "Modified the content of the post %PostTitle
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: defaults.php:
|
356 |
msgid "User submitted a post for review"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: defaults.php:
|
360 |
-
msgid "Submitted the post %PostTitle% for review"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: defaults.php:
|
364 |
msgid "User scheduled a post"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: defaults.php:
|
368 |
-
msgid "Scheduled the post %PostTitle% to be published on %PublishingDate
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: defaults.php:
|
372 |
msgid "User changed title of a post"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: defaults.php:
|
376 |
-
msgid "Changed the title of the post %OldTitle%"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: defaults.php:
|
380 |
-
msgid "New title"
|
381 |
-
msgstr ""
|
382 |
-
|
383 |
-
#: defaults.php:604
|
384 |
msgid "User opened a post in the editor"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: defaults.php:
|
388 |
-
msgid "Opened the post %PostTitle% in the editor"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: defaults.php:
|
392 |
msgid "User viewed a post"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: defaults.php:
|
396 |
-
msgid "Viewed the post %PostTitle
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: defaults.php:
|
400 |
msgid "User enabled/disabled comments in a post"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: defaults.php:
|
404 |
-
msgid "
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: defaults.php:
|
408 |
msgid "User enabled/disabled trackbacks and pingbacks in a post"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: defaults.php:
|
412 |
-
msgid "Pingbacks and Trackbacks in the post %PostTitle
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: defaults.php:
|
416 |
msgid "User updated the excerpt in a post"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: defaults.php:
|
420 |
-
msgid "The excerpt of the post %PostTitle
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: defaults.php:
|
424 |
msgid "Previous excerpt entry"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: defaults.php:
|
428 |
msgid "New excerpt entry"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: defaults.php:
|
432 |
msgid "User updated the featured image in a post"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: defaults.php:
|
436 |
-
msgid "The featured image of the post %PostTitle
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: defaults.php:
|
440 |
msgid "Previous image"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: defaults.php:
|
444 |
msgid "New image"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: defaults.php:
|
448 |
msgid "Tags"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: defaults.php:
|
452 |
msgid "User added post tag"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: defaults.php:
|
456 |
-
msgid "Added tag(s) to the post %PostTitle
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: defaults.php:
|
460 |
msgid "ID"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: defaults.php:
|
464 |
msgid "Type"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: defaults.php:
|
468 |
msgid "Status"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: defaults.php:
|
472 |
msgid "Added tag(s)"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: defaults.php:
|
476 |
msgid "User removed post tag"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: defaults.php:
|
480 |
-
msgid "Removed tag(s) from the post %PostTitle
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: defaults.php:
|
484 |
msgid "Removed tag(s)"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: defaults.php:
|
488 |
msgid "User created new tag"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: defaults.php:
|
492 |
-
msgid "Created the tag %TagName
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: defaults.php:
|
496 |
msgid "Slug"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: defaults.php:
|
500 |
msgid "User deleted tag"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: defaults.php:
|
504 |
-
msgid "Deleted the tag %TagName
|
505 |
-
msgstr ""
|
506 |
-
|
507 |
-
#: defaults.php:749, defaults.php:750
|
508 |
-
msgid "User renamed tag"
|
509 |
-
msgstr ""
|
510 |
-
|
511 |
-
#: defaults.php:752, defaults.php:850, defaults.php:1286, defaults.php:1876
|
512 |
-
msgid "Previous name"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: defaults.php:
|
516 |
-
msgid "
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: defaults.php:
|
520 |
msgid "User changed tag slug"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: defaults.php:
|
524 |
-
msgid "Changed the slug of the tag %tag%"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: defaults.php:
|
528 |
msgid "Previous slug"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: defaults.php:
|
532 |
-
msgid "New slug"
|
533 |
-
msgstr ""
|
534 |
-
|
535 |
-
#: defaults.php:776
|
536 |
msgid "User changed tag description"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: defaults.php:
|
540 |
-
msgid "Changed the description of the tag %tag
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: defaults.php:
|
544 |
msgid "Previous description"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: defaults.php:
|
548 |
msgid "New description"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: defaults.php:
|
552 |
msgid "Categories"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: defaults.php:
|
556 |
msgid "User changed post category"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: defaults.php:
|
560 |
-
msgid "Changed the category of the post %PostTitle%"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: defaults.php:
|
564 |
msgid "Previous category(ies)"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: defaults.php:
|
568 |
-
msgid "New category(ies)"
|
569 |
-
msgstr ""
|
570 |
-
|
571 |
-
#: defaults.php:809
|
572 |
msgid "User created new category"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: defaults.php:
|
576 |
-
msgid "Created the category %CategoryName
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: defaults.php:
|
580 |
msgid "User deleted category"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: defaults.php:
|
584 |
-
msgid "Deleted the category %CategoryName
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: defaults.php:
|
588 |
msgid "Changed the parent of a category"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: defaults.php:
|
592 |
-
msgid "Changed the parent of the category %CategoryName%"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: defaults.php:
|
596 |
msgid "User changed category name"
|
597 |
msgstr ""
|
598 |
|
599 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
600 |
msgid "User changed category slug"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: defaults.php:
|
604 |
-
msgid "Changed the slug of the category %CategoryName%"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: defaults.php:
|
608 |
msgid "Custom Fields"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: defaults.php:
|
612 |
msgid "User created a custom field for a post"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: defaults.php:
|
616 |
-
msgid "Created the new custom field %MetaKey% in the post %PostTitle
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: defaults.php:
|
620 |
msgid "Custom field value"
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: defaults.php:
|
624 |
msgid "User updated a custom field value for a post"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: defaults.php:
|
628 |
-
msgid "Modified the value of the custom field %
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: defaults.php:
|
632 |
msgid "Previous custom field value"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: defaults.php:
|
636 |
msgid "New custom field value"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: defaults.php:
|
640 |
msgid "User deleted a custom field from a post"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: defaults.php:
|
644 |
-
msgid "Deleted the custom field %MetaKey% from the post %PostTitle
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: defaults.php:
|
648 |
msgid "User updated a custom field name for a post"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: defaults.php:
|
652 |
-
msgid "
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: defaults.php:
|
656 |
-
msgid "New custom field name"
|
657 |
-
msgstr ""
|
658 |
-
|
659 |
-
#: defaults.php:927, classes/AlertManager.php:1144
|
660 |
msgid "Post"
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: defaults.php:
|
664 |
msgid "Custom Fields (ACF)"
|
665 |
msgstr ""
|
666 |
|
667 |
-
#: defaults.php:
|
668 |
msgid "User added relationship to a custom field value for a post"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: defaults.php:
|
672 |
-
msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: defaults.php:
|
676 |
msgid "New relationships"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: defaults.php:
|
680 |
msgid "User removed relationship from a custom field value for a post"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: defaults.php:
|
684 |
-
msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: defaults.php:
|
688 |
msgid "Removed relationships"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: defaults.php:
|
692 |
msgid "Comments"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: defaults.php:
|
696 |
msgid "User approved a comment"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: defaults.php:
|
700 |
-
msgid "Approved the comment posted by %Author% on the post %PostTitle
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: defaults.php:
|
704 |
msgid "Comment ID"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: defaults.php:
|
708 |
msgid "User unapproved a comment"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: defaults.php:
|
712 |
-
msgid "Unapproved the comment posted by %Author% on the post %PostTitle
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: defaults.php:
|
716 |
msgid "User replied to a comment"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: defaults.php:
|
720 |
-
msgid "Replied to the comment posted by %Author% on the post %PostTitle
|
721 |
msgstr ""
|
722 |
|
723 |
-
#: defaults.php:
|
724 |
msgid "User edited a comment"
|
725 |
msgstr ""
|
726 |
|
727 |
-
#: defaults.php:
|
728 |
-
msgid "Edited the comment posted by %Author% on the post %PostTitle
|
729 |
msgstr ""
|
730 |
|
731 |
-
#: defaults.php:
|
732 |
msgid "User marked a comment as Spam"
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: defaults.php:
|
736 |
-
msgid "Marked the comment posted by %Author% on the post %PostTitle% as
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: defaults.php:
|
740 |
msgid "User marked a comment as Not Spam"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: defaults.php:
|
744 |
-
msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam"
|
745 |
msgstr ""
|
746 |
|
747 |
-
#: defaults.php:
|
748 |
msgid "User moved a comment to trash"
|
749 |
msgstr ""
|
750 |
|
751 |
-
#: defaults.php:
|
752 |
-
msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash"
|
753 |
msgstr ""
|
754 |
|
755 |
-
#: defaults.php:
|
756 |
msgid "User restored a comment from the trash"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: defaults.php:
|
760 |
-
msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: defaults.php:
|
764 |
msgid "User permanently deleted a comment"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: defaults.php:
|
768 |
-
msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: defaults.php:
|
772 |
msgid "User posted a comment"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: defaults.php:
|
776 |
-
msgid "Posted a comment on the post %PostTitle
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: defaults.php:
|
780 |
msgid "Visitor posted a comment"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: defaults.php:
|
784 |
msgid "Widgets"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: defaults.php:
|
788 |
msgid "User added a new widget"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: defaults.php:
|
792 |
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: defaults.php:
|
796 |
msgid "User modified a widget"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: defaults.php:
|
800 |
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: defaults.php:
|
804 |
msgid "User deleted widget"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: defaults.php:
|
808 |
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: defaults.php:
|
812 |
msgid "User moved widget"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: defaults.php:
|
816 |
-
msgid "Moved the %WidgetName% widget"
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: defaults.php:
|
820 |
msgid "From"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: defaults.php:
|
824 |
msgid "To"
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: defaults.php:
|
828 |
msgid "User changed widget position"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: defaults.php:
|
832 |
msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
|
833 |
msgstr ""
|
834 |
|
835 |
-
#: defaults.php:
|
836 |
msgid "Menus"
|
837 |
msgstr ""
|
838 |
|
839 |
-
#: defaults.php:
|
840 |
msgid "User created new menu"
|
841 |
msgstr ""
|
842 |
|
843 |
-
#: defaults.php:
|
844 |
-
msgid "New menu called %MenuName
|
845 |
msgstr ""
|
846 |
|
847 |
-
#: defaults.php:
|
848 |
msgid "User added content to a menu"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: defaults.php:
|
852 |
-
msgid "Added
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: defaults.php:
|
856 |
msgid "Item type"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: defaults.php:
|
860 |
-
msgid "Item name"
|
861 |
-
msgstr ""
|
862 |
-
|
863 |
-
#: defaults.php:1235
|
864 |
msgid "User removed content from a menu"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: defaults.php:
|
868 |
-
msgid "Removed item from the menu %MenuName
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: defaults.php:
|
872 |
msgid "User deleted menu"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: defaults.php:
|
876 |
-
msgid "Deleted the menu %MenuName
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: defaults.php:
|
880 |
msgid "User changed menu setting"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: defaults.php:
|
884 |
-
msgid "The setting in the %MenuName
|
885 |
-
msgstr ""
|
886 |
-
|
887 |
-
#: defaults.php:1261, classes/AlertManager.php:1148
|
888 |
-
msgid "Setting"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: defaults.php:
|
892 |
msgid "User modified content in a menu"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: defaults.php:
|
896 |
-
msgid "Modified
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: defaults.php:
|
900 |
msgid "User changed name of a menu"
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
904 |
msgid "User changed order of the objects in a menu"
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: defaults.php:
|
908 |
-
msgid "Changed the order of the items in the menu %MenuName
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: defaults.php:
|
912 |
msgid "User moved objects as a sub-item"
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: defaults.php:
|
916 |
-
msgid "
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: defaults.php:
|
920 |
msgid "Moved item"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: defaults.php:
|
924 |
msgid "as a sub-item of"
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: defaults.php:
|
928 |
msgid "Custom Post Types"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: defaults.php:
|
932 |
msgid "User modified a draft blog post"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: defaults.php:
|
936 |
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: defaults.php:
|
940 |
msgid "User created a new post with custom post type and saved it as draft"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: defaults.php:
|
944 |
msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: defaults.php:
|
948 |
msgid "User published a post with custom post type"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: defaults.php:
|
952 |
msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: defaults.php:
|
956 |
msgid "User modified a post with custom post type"
|
957 |
msgstr ""
|
958 |
|
959 |
-
#: defaults.php:
|
960 |
msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: defaults.php:
|
964 |
msgid "User modified a draft post with custom post type"
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: defaults.php:
|
968 |
msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: defaults.php:
|
972 |
msgid "User permanently deleted post with custom post type"
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: defaults.php:
|
976 |
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: defaults.php:
|
980 |
msgid "User moved post with custom post type to trash"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: defaults.php:
|
984 |
msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: defaults.php:
|
988 |
msgid "User restored post with custom post type from trash"
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: defaults.php:
|
992 |
msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: defaults.php:
|
996 |
msgid "User changed the category of a post with custom post type"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: defaults.php:
|
1000 |
msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#: defaults.php:
|
1004 |
msgid "User changed the URL of a post with custom post type"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: defaults.php:
|
1008 |
msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: defaults.php:
|
1012 |
msgid "User changed the author or post with custom post type"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: defaults.php:
|
1016 |
msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: defaults.php:
|
1020 |
msgid "User changed the status of post with custom post type"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: defaults.php:
|
1024 |
msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: defaults.php:
|
1028 |
msgid "User changed the visibility of a post with custom post type"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: defaults.php:
|
1032 |
msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: defaults.php:
|
1036 |
msgid "User changed the date of post with custom post type"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: defaults.php:
|
1040 |
msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: defaults.php:
|
1044 |
msgid "User created a custom field for a custom post type"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: defaults.php:
|
1048 |
msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: defaults.php:
|
1052 |
msgid "User updated a custom field for a custom post type"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: defaults.php:
|
1056 |
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: defaults.php:
|
1060 |
msgid "User deleted a custom field from a custom post type"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: defaults.php:
|
1064 |
msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: defaults.php:
|
1068 |
msgid "User updated a custom field name for a custom post type"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: defaults.php:
|
1072 |
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: defaults.php:
|
1076 |
msgid "User modified content for a published custom post type"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: defaults.php:
|
1080 |
msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: defaults.php:
|
1084 |
msgid "User modified content for a draft post"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: defaults.php:
|
1088 |
msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: defaults.php:
|
1092 |
msgid "User modified content for a draft custom post type"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: defaults.php:
|
1096 |
msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: defaults.php:
|
1100 |
msgid "User modified content of a post"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: defaults.php:
|
1104 |
msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: defaults.php:
|
1108 |
msgid "User scheduled a custom post type"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: defaults.php:
|
1112 |
msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: defaults.php:
|
1116 |
msgid "User changed title of a custom post type"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: defaults.php:
|
1120 |
msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: defaults.php:
|
1124 |
msgid "User opened a custom post type in the editor"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: defaults.php:
|
1128 |
msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: defaults.php:
|
1132 |
msgid "User viewed a custom post type"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: defaults.php:
|
1136 |
msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: defaults.php:
|
1140 |
msgid "A plugin created a custom post"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: defaults.php:
|
1144 |
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: defaults.php:
|
1148 |
msgid "A plugin deleted a custom post"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: defaults.php:
|
1152 |
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: defaults.php:
|
1156 |
msgid "A plugin modified a custom post"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: defaults.php:
|
1160 |
msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: defaults.php:
|
1164 |
msgid "Pages"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: defaults.php:
|
1168 |
msgid "User created a new WordPress page and saved it as draft"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: defaults.php:
|
1172 |
msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: defaults.php:
|
1176 |
msgid "User published a WordPress page"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: defaults.php:
|
1180 |
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: defaults.php:
|
1184 |
msgid "User modified a published WordPress page"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: defaults.php:
|
1188 |
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: defaults.php:
|
1192 |
msgid "User modified a draft WordPress page"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: defaults.php:
|
1196 |
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: defaults.php:
|
1200 |
msgid "User permanently deleted a page from the trash"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: defaults.php:
|
1204 |
msgid "Permanently deleted the page %PostTitle%."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: defaults.php:
|
1208 |
msgid "User moved WordPress page to the trash"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: defaults.php:
|
1212 |
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: defaults.php:
|
1216 |
msgid "User restored a WordPress page from trash"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: defaults.php:
|
1220 |
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: defaults.php:
|
1224 |
msgid "User changed page URL"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: defaults.php:
|
1228 |
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: defaults.php:
|
1232 |
msgid "User changed page author"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: defaults.php:
|
1236 |
msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: defaults.php:
|
1240 |
msgid "User changed page status"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: defaults.php:
|
1244 |
msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: defaults.php:
|
1248 |
msgid "User changed the visibility of a page post"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: defaults.php:
|
1252 |
msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: defaults.php:
|
1256 |
msgid "User changed the date of a page post"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: defaults.php:
|
1260 |
msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: defaults.php:
|
1264 |
msgid "User created a custom field for a page"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: defaults.php:
|
1268 |
msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: defaults.php:
|
1272 |
msgid "User updated a custom field value for a page"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: defaults.php:
|
1276 |
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: defaults.php:
|
1280 |
msgid "User deleted a custom field from a page"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: defaults.php:
|
1284 |
msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: defaults.php:
|
1288 |
msgid "User updated a custom field name for a page"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: defaults.php:
|
1292 |
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: defaults.php:
|
1296 |
msgid "User modified content for a published page"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: defaults.php:
|
1300 |
msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: defaults.php:
|
1304 |
msgid "User modified content for a draft page"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: defaults.php:
|
1308 |
msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
-
#: defaults.php:
|
1312 |
msgid "User scheduled a page"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: defaults.php:
|
1316 |
msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: defaults.php:
|
1320 |
msgid "User changed title of a page"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: defaults.php:
|
1324 |
msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: defaults.php:
|
1328 |
msgid "User opened a page in the editor"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
-
#: defaults.php:
|
1332 |
msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: defaults.php:
|
1336 |
msgid "User viewed a page"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: defaults.php:
|
1340 |
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: defaults.php:
|
1344 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: defaults.php:
|
1348 |
msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: defaults.php:
|
1352 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: defaults.php:
|
1356 |
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: defaults.php:
|
1360 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: defaults.php:
|
1364 |
msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: defaults.php:
|
1368 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: defaults.php:
|
1372 |
msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: defaults.php:
|
1376 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: defaults.php:
|
1380 |
msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: defaults.php:
|
1384 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: defaults.php:
|
1388 |
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: defaults.php:
|
1392 |
msgid "A plugin created a page"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: defaults.php:
|
1396 |
msgid "A plugin automatically created the following page: %PostTitle%."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: defaults.php:
|
1400 |
msgid "A plugin deleted a page"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: defaults.php:
|
1404 |
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: defaults.php:
|
1408 |
msgid "A plugin modified a page"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: defaults.php:
|
1412 |
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: defaults.php:
|
1416 |
msgid "User Accounts"
|
1417 |
msgstr ""
|
1418 |
|
1419 |
-
#: defaults.php:
|
1420 |
msgid "User Profiles"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: defaults.php:
|
1424 |
msgid "New user was created on WordPress"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#: defaults.php:
|
1428 |
-
msgid "
|
|
|
|
|
|
|
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: defaults.php:
|
1432 |
msgid "User created another WordPress user"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: defaults.php:
|
1436 |
-
msgid "
|
1437 |
msgstr ""
|
1438 |
|
1439 |
-
#: defaults.php:
|
1440 |
msgid "First name"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: defaults.php:
|
1444 |
msgid "Last name"
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: defaults.php:
|
1448 |
msgid "The role of a user was changed by another WordPress user"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: defaults.php:
|
1452 |
-
msgid "Changed the role of user %TargetUsername%"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: defaults.php:
|
1456 |
msgid "Previous role"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: defaults.php:
|
1460 |
-
msgid "New role"
|
1461 |
-
msgstr ""
|
1462 |
-
|
1463 |
-
#: defaults.php:1750
|
1464 |
msgid "User has changed his or her password"
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: defaults.php:
|
1468 |
-
msgid "Changed the password"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
-
#: defaults.php:
|
1472 |
msgid "User changed another user's password"
|
1473 |
msgstr ""
|
1474 |
|
1475 |
-
#: defaults.php:
|
1476 |
-
msgid "Changed the password of the user %TargetUserData->Username
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: defaults.php:
|
1480 |
msgid "User changed his or her email address"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#: defaults.php:
|
1484 |
-
msgid "Changed the email address"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: defaults.php:
|
1488 |
msgid "Previous email address"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: defaults.php:
|
1492 |
-
msgid "New email address"
|
1493 |
-
msgstr ""
|
1494 |
-
|
1495 |
-
#: defaults.php:1794
|
1496 |
msgid "User changed another user's email address"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: defaults.php:
|
1500 |
-
msgid "Changed the email address of the user %TargetUsername%"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: defaults.php:
|
1504 |
msgid "User was deleted by another user"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: defaults.php:
|
1508 |
-
msgid "
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: defaults.php:
|
1512 |
-
msgid "
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: defaults.php:
|
1516 |
-
msgid "
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: defaults.php:
|
1520 |
-
msgid "
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: defaults.php:
|
1524 |
-
msgid "
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: defaults.php:
|
1528 |
msgid "Previous value"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: defaults.php:
|
1532 |
msgid "New value"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
-
#: defaults.php:
|
1536 |
msgid "User created a custom field value for a user"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
-
#: defaults.php:
|
1540 |
-
msgid "Created
|
1541 |
msgstr ""
|
1542 |
|
1543 |
-
#: defaults.php:
|
1544 |
msgid "User changed first name for a user"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
-
#: defaults.php:
|
1548 |
-
msgid "Changed the first name of the user %TargetUsername%"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#: defaults.php:
|
1552 |
-
msgid "
|
1553 |
msgstr ""
|
1554 |
|
1555 |
-
#: defaults.php:
|
1556 |
-
msgid "
|
1557 |
msgstr ""
|
1558 |
|
1559 |
-
#: defaults.php:
|
1560 |
-
msgid "
|
1561 |
msgstr ""
|
1562 |
|
1563 |
-
#: defaults.php:
|
1564 |
-
msgid "
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: defaults.php:
|
1568 |
msgid "User changed nickname for a user"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: defaults.php:
|
1572 |
-
msgid "Changed the nickname of the user %TargetUsername%"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: defaults.php:
|
1576 |
msgid "Previous nickname"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: defaults.php:
|
1580 |
-
msgid "New nickname"
|
1581 |
-
msgstr ""
|
1582 |
-
|
1583 |
-
#: defaults.php:1918
|
1584 |
msgid "User changed the display name for a user"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
#: defaults.php:
|
1588 |
-
msgid "Changed the display name of the user %TargetUsername%"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: defaults.php:
|
1592 |
msgid "Previous display name"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: defaults.php:
|
1596 |
-
msgid "New display name"
|
1597 |
-
msgstr ""
|
1598 |
-
|
1599 |
-
#: defaults.php:1935, defaults.php:1950
|
1600 |
msgid "User created an application password"
|
1601 |
msgstr ""
|
1602 |
|
1603 |
-
#: defaults.php:
|
1604 |
-
msgid "
|
1605 |
msgstr ""
|
1606 |
|
1607 |
-
#: defaults.php:
|
1608 |
-
msgid "
|
1609 |
-
msgstr ""
|
1610 |
-
|
1611 |
-
#: defaults.php:1951
|
1612 |
-
msgid "An application password for the user %login%"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: defaults.php:
|
1616 |
msgid "User revoked all application passwords"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: defaults.php:
|
1620 |
-
msgid "All application passwords"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: defaults.php:
|
1624 |
msgid "User revoked all application passwords for a user"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: defaults.php:
|
1628 |
-
msgid "All application passwords from the user %login
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: defaults.php:
|
1632 |
msgid "Admin sent a password reset request to a user"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: defaults.php:
|
1636 |
-
msgid "Sent a password reset request to the user %login
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: defaults.php:
|
1640 |
msgid "Multisite User Profiles"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: defaults.php:
|
1644 |
msgid "User granted Super Admin privileges"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#: defaults.php:
|
1648 |
-
msgid "Granted Super Admin privileges to %TargetUsername
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: defaults.php:
|
1652 |
msgid "User revoked from Super Admin privileges"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
-
#: defaults.php:
|
1656 |
-
msgid "Revoked Super Admin privileges from %TargetUsername
|
1657 |
msgstr ""
|
1658 |
|
1659 |
-
#: defaults.php:
|
1660 |
msgid "Existing user added to a site"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: defaults.php:
|
1664 |
-
msgid "Added user %TargetUsername% to site
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: defaults.php:
|
1668 |
msgid "User removed from site"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: defaults.php:
|
1672 |
-
msgid "Removed user %TargetUsername% from site
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: defaults.php:
|
1676 |
msgid "Site role"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: defaults.php:
|
1680 |
msgid "New network user created"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: defaults.php:
|
1684 |
-
msgid "Created
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: defaults.php:
|
1688 |
msgid "Plugins & Themes"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: defaults.php:
|
1692 |
msgid "Plugins"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: defaults.php:
|
1696 |
msgid "User installed a plugin"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
-
#: defaults.php:
|
1700 |
-
msgid "Name"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: defaults.php:
|
1704 |
msgid "Version"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: defaults.php:
|
1708 |
msgid "Install location"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#: defaults.php:
|
1712 |
msgid "User activated a WordPress plugin"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1716 |
msgid "User deactivated a WordPress plugin"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1720 |
msgid "User uninstalled a plugin"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1724 |
msgid "User upgraded a plugin"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1728 |
msgid "Updated version"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
-
#: defaults.php:
|
1732 |
msgid "Plugin created table"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: defaults.php:
|
1736 |
-
msgid "Plugin created this table in the database"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: defaults.php:
|
1740 |
msgid "Table"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
-
#: defaults.php:
|
1744 |
-
msgid "Plugin"
|
1745 |
-
msgstr ""
|
1746 |
-
|
1747 |
-
#: defaults.php:2168
|
1748 |
msgid "Plugin modified table structure"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
-
#: defaults.php:
|
1752 |
-
msgid "Plugin modified the structure of
|
1753 |
msgstr ""
|
1754 |
|
1755 |
-
#: defaults.php:
|
1756 |
msgid "Plugin deleted table"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
#: defaults.php:
|
1760 |
-
msgid "Plugin deleted this table from the database"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
-
#: defaults.php:
|
1764 |
msgid "A plugin created a post"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: defaults.php:
|
1768 |
-
msgid "
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: defaults.php:
|
1772 |
-
msgid "
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: defaults.php:
|
1776 |
-
msgid "
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: defaults.php:
|
1780 |
-
msgid "
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: defaults.php:
|
1784 |
-
msgid "
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: defaults.php:
|
1788 |
-
msgid "File"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: defaults.php:
|
1792 |
msgid "Themes"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: defaults.php:
|
1796 |
msgid "User installed a theme"
|
1797 |
msgstr ""
|
1798 |
|
1799 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1800 |
msgid "User activated a theme"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1804 |
msgid "User uninstalled a theme"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: defaults.php:
|
1808 |
-
msgid "
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: defaults.php:
|
1812 |
-
msgid "Theme created
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: defaults.php:
|
1816 |
-
msgid "Theme"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#: defaults.php:
|
1820 |
msgid "Theme modified tables structure"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: defaults.php:
|
1824 |
-
msgid "Theme modified the structure of this database table"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: defaults.php:
|
1828 |
msgid "Theme deleted tables"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: defaults.php:
|
1832 |
-
msgid "Theme deleted this table from the database"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: defaults.php:
|
1836 |
msgid "Tables"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: defaults.php:
|
1840 |
msgid "User updated a theme"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
1844 |
msgid "New version"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: defaults.php:
|
1848 |
msgid "User changed a file using the theme editor"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: defaults.php:
|
1852 |
-
msgid "Modified
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: defaults.php:
|
1856 |
msgid "Themes on Multisite"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: defaults.php:
|
1860 |
msgid "Activated theme on network"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: defaults.php:
|
1864 |
-
msgid "Network activated the theme %Theme->Name
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: defaults.php:
|
1868 |
msgid "Deactivated theme from network"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: defaults.php:
|
1872 |
-
msgid "Network deactivated the theme %Theme->Name
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: defaults.php:
|
1876 |
msgid "Database Events"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: defaults.php:
|
1880 |
msgid "Unknown component created tables"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: defaults.php:
|
1884 |
-
msgid "An unknown component created these tables in the database"
|
1885 |
msgstr ""
|
1886 |
|
1887 |
-
#: defaults.php:
|
1888 |
msgid "Unknown component modified tables structure"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: defaults.php:
|
1892 |
-
msgid "An unknown component modified the structure of these database tables"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: defaults.php:
|
1896 |
msgid "Unknown component deleted tables"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: defaults.php:
|
1900 |
-
msgid "An unknown component deleted these tables from the database"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: defaults.php:
|
1904 |
msgid "WordPress created tables"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: defaults.php:
|
1908 |
-
msgid "WordPress created these tables in the database"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: defaults.php:
|
1912 |
msgid "WordPress modified tables structure"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: defaults.php:
|
1916 |
-
msgid "WordPress modified the structure of these database tables"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
-
#: defaults.php:
|
1920 |
msgid "WordPress deleted tables"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#: defaults.php:
|
1924 |
-
msgid "WordPress deleted these tables from the database"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: defaults.php:
|
1928 |
msgid "WordPress & System"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: defaults.php:
|
1932 |
msgid "System"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: defaults.php:
|
1936 |
msgid "Unknown Error"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: defaults.php:
|
1940 |
msgid "An unexpected error has occurred."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: defaults.php:
|
1944 |
msgid "PHP error"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
-
#: defaults.php:
|
1948 |
msgid "%Message%."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: defaults.php:
|
1952 |
msgid "PHP warning"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: defaults.php:
|
1956 |
msgid "PHP notice"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: defaults.php:
|
1960 |
msgid "PHP exception"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: defaults.php:
|
1964 |
msgid "PHP shutdown error"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: defaults.php:
|
1968 |
msgid "WordPress was updated"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: defaults.php:
|
1972 |
-
msgid "Updated WordPress"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: defaults.php:
|
1976 |
msgid "Previous version"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
-
#: defaults.php:
|
1980 |
msgid "Advertising Extensions"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: defaults.php:
|
1984 |
msgid "%PromoName% %PromoMessage%"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
-
#: defaults.php:
|
1988 |
msgid "Activity log plugin"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#: defaults.php:
|
1992 |
msgid "Events automatically pruned by system"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: defaults.php:
|
1996 |
-
msgid "System automatically deleted %EventCount% events"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: defaults.php:
|
2000 |
msgid "Reset the plugin's settings to default"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
-
#: defaults.php:
|
2004 |
-
msgid "Reset the activity log plugin's settings to default"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: defaults.php:
|
2008 |
msgid "Purged the activity log"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
2012 |
msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
-
#: defaults.php:
|
2016 |
-
msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard."
|
2017 |
msgstr ""
|
2018 |
|
2019 |
-
#: defaults.php:
|
2020 |
msgid "WordPress Site Settings"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: defaults.php:
|
2024 |
msgid "Option Anyone Can Register in WordPress settings changed"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
-
#: defaults.php:
|
2028 |
-
msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong
|
2029 |
msgstr ""
|
2030 |
|
2031 |
-
#: defaults.php:
|
2032 |
msgid "New User Default Role changed"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
-
#: defaults.php:
|
2036 |
-
msgid "Changed the <strong>New user default role</strong> WordPress setting"
|
2037 |
msgstr ""
|
2038 |
|
2039 |
-
#: defaults.php:
|
|
|
|
|
|
|
|
|
2040 |
msgid "WordPress Administrator Notification email changed"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
-
#: defaults.php:
|
2044 |
-
msgid "Change the <strong>Administrator email address</strong> in the WordPress settings"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
-
#: defaults.php:
|
2048 |
msgid "Previous address"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
-
#: defaults.php:
|
2052 |
msgid "New address"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
-
#: defaults.php:
|
2056 |
msgid "User changes the WordPress Permalinks"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
-
#: defaults.php:
|
2060 |
-
msgid "Changed the WordPress permalinks"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: defaults.php:
|
2064 |
msgid "Previous permalinks"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: defaults.php:
|
2068 |
msgid "New permalinks"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: defaults.php:
|
2072 |
msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
-
#: defaults.php:
|
2076 |
-
msgid "
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: defaults.php:
|
2080 |
msgid "Enabled/Disabled comments on all the website"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: defaults.php:
|
2084 |
-
msgid "
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: defaults.php:
|
2088 |
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
-
#: defaults.php:
|
2092 |
-
msgid "
|
2093 |
msgstr ""
|
2094 |
|
2095 |
-
#: defaults.php:
|
2096 |
msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
-
#: defaults.php:
|
2100 |
-
msgid "
|
2101 |
msgstr ""
|
2102 |
|
2103 |
-
#: defaults.php:
|
2104 |
msgid "Enabled/Disabled the option to automatically close comments"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: defaults.php:
|
2108 |
-
msgid "
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#: defaults.php:
|
2112 |
msgid "Changed the value of the option Automatically close comments"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
-
#: defaults.php:
|
2116 |
-
msgid "Changed the value of the WordPress setting
|
2117 |
msgstr ""
|
2118 |
|
2119 |
-
#: defaults.php:
|
2120 |
msgid "Enabled/Disabled the option for comments to be manually approved"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: defaults.php:
|
2124 |
-
msgid "
|
2125 |
msgstr ""
|
2126 |
|
2127 |
-
#: defaults.php:
|
2128 |
msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
-
#: defaults.php:
|
2132 |
-
msgid "
|
2133 |
msgstr ""
|
2134 |
|
2135 |
-
#: defaults.php:
|
2136 |
msgid "Changed the number of links that a comment must have to be held in the queue"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: defaults.php:
|
2140 |
-
msgid "Changed the WordPress setting <strong>Hold a comment in the queue if it contains links</strong>"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: defaults.php:
|
2144 |
msgid "Modified the list of keywords for comments moderation"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
-
#: defaults.php:
|
2148 |
-
msgid "Modified the list of keywords for comments
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: defaults.php:
|
2152 |
msgid "Modified the list of keywords for comments blacklisting"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: defaults.php:
|
2156 |
-
msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: defaults.php:
|
2160 |
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: defaults.php:
|
2164 |
-
msgid "Changed the <strong>WordPress address (URL)</strong>"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: defaults.php:
|
2168 |
msgid "Option Site Address (URL) in WordPress settings changed"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: defaults.php:
|
2172 |
-
msgid "Changed the <strong>Site address (URL)</strong>"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: defaults.php:
|
2176 |
msgid "Option Your homepage displays in WordPress settings changed"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
-
#: defaults.php:
|
2180 |
-
msgid "
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: defaults.php:
|
2184 |
msgid "Previous setting"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: defaults.php:
|
2188 |
-
msgid "New setting"
|
2189 |
-
msgstr ""
|
2190 |
-
|
2191 |
-
#: defaults.php:2768
|
2192 |
msgid "Option homepage in WordPress settings changed"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: defaults.php:
|
2196 |
-
msgid "Changed the <strong>Homepage</strong> in the WordPress settings"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: defaults.php:
|
2200 |
msgid "Previous page"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: defaults.php:
|
2204 |
-
msgid "New page"
|
2205 |
-
msgstr ""
|
2206 |
-
|
2207 |
-
#: defaults.php:2781
|
2208 |
msgid "Option posts page in WordPress settings changed"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: defaults.php:
|
2212 |
-
msgid "Changed the <strong>Posts
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: defaults.php:
|
2216 |
msgid "Option Timezone in WordPress settings changed"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: defaults.php:
|
2220 |
-
msgid "
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: defaults.php:
|
2224 |
msgid "Previous timezone"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: defaults.php:
|
2228 |
-
msgid "New timezone"
|
2229 |
-
msgstr ""
|
2230 |
-
|
2231 |
-
#: defaults.php:2808
|
2232 |
msgid "Option Date format in WordPress settings changed"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: defaults.php:
|
2236 |
-
msgid "
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: defaults.php:
|
2240 |
msgid "Previous format"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: defaults.php:
|
2244 |
-
msgid "New format"
|
2245 |
-
msgstr ""
|
2246 |
-
|
2247 |
-
#: defaults.php:2821
|
2248 |
msgid "Option Time format in WordPress settings changed"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: defaults.php:
|
2252 |
-
msgid "
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: defaults.php:
|
2256 |
msgid "Option Automatic updates setting changed"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#: defaults.php:
|
2260 |
-
msgid "
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#: defaults.php:
|
2264 |
msgid "New setting status"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: defaults.php:
|
2268 |
msgid "Option Site Language setting changed"
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#: defaults.php:
|
2272 |
-
msgid "Changed the <strong>Site Language</strong>
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#: defaults.php:
|
2276 |
msgid "Multisite Network Sites"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: defaults.php:
|
2280 |
msgid "MultiSite"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: defaults.php:
|
2284 |
msgid "New site added on the network"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#: defaults.php:
|
2288 |
-
msgid "
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: defaults.php:
|
2292 |
msgid "URL"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
-
#: defaults.php:
|
2296 |
msgid "Existing site archived"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
-
#: defaults.php:
|
2300 |
-
msgid "Archived the site
|
2301 |
msgstr ""
|
2302 |
|
2303 |
-
#: defaults.php:
|
2304 |
msgid "Archived site has been unarchived"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
-
#: defaults.php:
|
2308 |
-
msgid "Unarchived the site
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: defaults.php:
|
2312 |
msgid "Deactivated site has been activated"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: defaults.php:
|
2316 |
-
msgid "Activated the site
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: defaults.php:
|
2320 |
msgid "Site has been deactivated"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: defaults.php:
|
2324 |
-
msgid "
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: defaults.php:
|
2328 |
msgid "Existing site deleted from network"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: defaults.php:
|
2332 |
-
msgid "The site: %SiteName
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: defaults.php:
|
2336 |
msgid "Allow site administrators to add new users to their sites settings changed"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: defaults.php:
|
2340 |
-
msgid "
|
2341 |
msgstr ""
|
2342 |
|
2343 |
-
#: defaults.php:
|
2344 |
msgid "Site upload space settings changed"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
-
#: defaults.php:
|
2348 |
-
msgid "
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: defaults.php:
|
2352 |
msgid "Site upload space file size settings changed"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: defaults.php:
|
2356 |
-
msgid "
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: defaults.php:
|
2360 |
msgid "Previous size (MB)"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: defaults.php:
|
2364 |
-
msgid "New size (MB)"
|
2365 |
-
msgstr ""
|
2366 |
-
|
2367 |
-
#: defaults.php:2971
|
2368 |
msgid "Site Upload file types settings changed"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: defaults.php:
|
2372 |
-
msgid "
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: defaults.php:
|
2376 |
msgid "Site Max upload file size settings changed"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: defaults.php:
|
2380 |
-
msgid "Changed the <strong>Max upload file size</strong> network setting"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: defaults.php:
|
2384 |
msgid "Previous size (KB)"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: defaults.php:
|
2388 |
-
msgid "New size (KB)"
|
2389 |
-
msgstr ""
|
2390 |
-
|
2391 |
-
#: defaults.php:2997
|
2392 |
msgid "Allow new registrations settings changed"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: defaults.php:
|
2396 |
-
msgid "Changed the <strong>Allow new registrations</strong>
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: defaults.php:
|
2400 |
msgid "File Changes"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: defaults.php:
|
2404 |
msgid "Monitor File Changes"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: defaults.php:
|
2408 |
msgid "Dummy"
|
2409 |
msgstr ""
|
2410 |
|
@@ -2536,36 +2488,36 @@ msgstr ""
|
|
2536 |
msgid "getting started guide"
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: wp-security-audit-log.php:
|
2540 |
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."
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: wp-security-audit-log.php:
|
2544 |
msgid "Every 6 hours"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: wp-security-audit-log.php:
|
2548 |
msgid "Every 45 minutes"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: wp-security-audit-log.php:
|
2552 |
msgid "Every 30 minutes"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: wp-security-audit-log.php:
|
2556 |
msgid "Every 15 minutes"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
-
#: wp-security-audit-log.php:
|
2560 |
msgid "Every 10 minutes"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: wp-security-audit-log.php:
|
2564 |
msgid "Every 1 minute"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
#. translators: 1. Deprecated method name 2. Version since deprecated
|
2568 |
-
#: wp-security-audit-log.php:
|
2569 |
msgid "Method %1$s is deprecated since version %2$s!"
|
2570 |
msgstr ""
|
2571 |
|
@@ -2616,6 +2568,10 @@ msgstr ""
|
|
2616 |
msgid "Database"
|
2617 |
msgstr ""
|
2618 |
|
|
|
|
|
|
|
|
|
2619 |
#: classes/AlertManager.php:1146
|
2620 |
msgid "Tag"
|
2621 |
msgstr ""
|
@@ -2624,6 +2580,10 @@ msgstr ""
|
|
2624 |
msgid "Comment"
|
2625 |
msgstr ""
|
2626 |
|
|
|
|
|
|
|
|
|
2627 |
#: classes/AlertManager.php:1150
|
2628 |
msgid "System Setting"
|
2629 |
msgstr ""
|
@@ -2652,6 +2612,10 @@ msgstr ""
|
|
2652 |
msgid "Menu"
|
2653 |
msgstr ""
|
2654 |
|
|
|
|
|
|
|
|
|
2655 |
#: classes/AlertManager.php:1158
|
2656 |
msgid "Activity log"
|
2657 |
msgstr ""
|
@@ -2845,11 +2809,11 @@ msgstr ""
|
|
2845 |
msgid "Info"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: classes/AuditLogGridView.php:295, classes/AuditLogListView.php:307, classes/AuditLogListView.php:339, extensions/email-notifications/classes/Common.php:1124, extensions/email-notifications/classes/Common.php:
|
2849 |
msgid "Site"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: classes/AuditLogGridView.php:298, classes/AuditLogGridView.php:321, classes/AuditLogListView.php:310, classes/AuditLogListView.php:348, extensions/email-notifications/classes/Common.php:
|
2853 |
msgid "Message"
|
2854 |
msgstr ""
|
2855 |
|
@@ -4047,7 +4011,7 @@ msgstr ""
|
|
4047 |
msgid "Date & Time"
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#: classes/Views/Settings.php:1088, extensions/email-notifications/classes/Common.php:1093, extensions/email-notifications/classes/Common.php:1127, extensions/email-notifications/classes/Common.php:
|
4051 |
msgid "Event ID"
|
4052 |
msgstr ""
|
4053 |
|
@@ -4737,6 +4701,10 @@ msgstr ""
|
|
4737 |
msgid "Use event specific email template"
|
4738 |
msgstr ""
|
4739 |
|
|
|
|
|
|
|
|
|
4740 |
#: extensions/email-notifications/classes/AddNotification.php:337, extensions/email-notifications/classes/EditNotification.php:430, extensions/email-notifications/classes/Notifications.php:1857, extensions/email-notifications/classes/Notifications.php:1868
|
4741 |
msgid "Title"
|
4742 |
msgstr ""
|
@@ -4914,11 +4882,11 @@ msgstr ""
|
|
4914 |
msgid "Event Object"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: extensions/email-notifications/classes/Common.php:1089, extensions/email-notifications/classes/Common.php:
|
4918 |
msgid "Notification {title} on website {site} triggered"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: extensions/email-notifications/classes/Common.php:1090, extensions/email-notifications/classes/Common.php:
|
4922 |
msgid "Notification <strong>{title}</strong> was triggered. Below are the notification details:"
|
4923 |
msgstr ""
|
4924 |
|
@@ -4926,7 +4894,7 @@ msgstr ""
|
|
4926 |
msgid "Website"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
-
#: extensions/email-notifications/classes/Common.php:1094, extensions/email-notifications/classes/Common.php:
|
4930 |
msgid "Username"
|
4931 |
msgstr ""
|
4932 |
|
@@ -4942,35 +4910,39 @@ msgstr ""
|
|
4942 |
msgid "These email notifications are sent with <a href=\"http://wpactivitylog.com\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin solution."
|
4943 |
msgstr ""
|
4944 |
|
4945 |
-
#: extensions/email-notifications/classes/Common.php:1125, extensions/email-notifications/classes/Common.php:
|
4946 |
msgid "User/Role"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: extensions/email-notifications/classes/Common.php:
|
|
|
|
|
|
|
|
|
4950 |
msgid "User Role"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
-
#: extensions/email-notifications/classes/Common.php:
|
4954 |
msgid "Generated On"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: extensions/email-notifications/classes/Common.php:
|
4958 |
msgid "Monitoring of WordPress and Email Notifications provided by <a href=\"http://wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit trail plugin</a>."
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: extensions/email-notifications/classes/Common.php:
|
4962 |
msgid "Event"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: extensions/email-notifications/classes/Common.php:
|
4966 |
msgid "Subject "
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: extensions/email-notifications/classes/Common.php:
|
4970 |
msgid "Body "
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: extensions/email-notifications/classes/Common.php:
|
4974 |
msgid "HTML is accepted. Available template tags:"
|
4975 |
msgstr ""
|
4976 |
|
44 |
msgid "User Activity"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: defaults.php:182
|
48 |
msgid "User logged in"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: defaults.php:183
|
52 |
+
msgid "User logged in."
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: defaults.php:192
|
56 |
msgid "User logged out"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: defaults.php:193
|
60 |
+
msgid "User logged out."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
#: defaults.php:202
|
64 |
msgid "Login failed"
|
65 |
msgstr ""
|
66 |
|
67 |
#: defaults.php:203, defaults.php:213
|
68 |
+
msgid "%Attempts% failed login(s)."
|
69 |
msgstr ""
|
70 |
|
71 |
#: defaults.php:212
|
89 |
msgstr ""
|
90 |
|
91 |
#: defaults.php:235
|
92 |
+
msgid "User logged in however there are other session(s) already for this user."
|
93 |
msgstr ""
|
94 |
|
95 |
#: defaults.php:237, extensions/reports/classes/HtmlReportGenerator.php:134
|
109 |
msgstr ""
|
110 |
|
111 |
#: defaults.php:257
|
112 |
+
msgid "Terminated the session of the user %TargetUserName%."
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: defaults.php:259, defaults.php:272, defaults.php:1692, defaults.php:1720, defaults.php:1734, defaults.php:1748, defaults.php:1763, defaults.php:1778, defaults.php:1792, defaults.php:1806, defaults.php:1822, defaults.php:1837, defaults.php:1851, defaults.php:1865, defaults.php:1880, defaults.php:1896, defaults.php:1910, defaults.php:1925, defaults.php:1939, defaults.php:1953, defaults.php:1970, defaults.php:1984, defaults.php:1998, extensions/external-db/classes/Common.php:969, extensions/reports/classes/CsvReportGenerator.php:88, extensions/reports/classes/CsvReportGenerator.php:72, extensions/reports/classes/HtmlReportGenerator.php:250, extensions/reports/classes/HtmlReportGenerator.php:226
|
|
|
|
|
|
|
|
|
116 |
msgid "Role"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: defaults.php:260
|
120 |
msgid "Session ID"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: defaults.php:269
|
124 |
msgid "Switched to another user"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: defaults.php:270
|
128 |
+
msgid "Switched the session to being logged in as %TargetUserName%."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: defaults.php:281
|
132 |
+
msgid "User uploaded file to the Uploads directory"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: defaults.php:282
|
136 |
+
msgid "Uploaded a file called %FileName%."
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: defaults.php:284, defaults.php:296
|
140 |
msgid "Directory"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: defaults.php:293
|
144 |
msgid "User deleted file from Uploads directory"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: defaults.php:294
|
148 |
+
msgid "Deleted the file %FileName%."
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: defaults.php:305
|
152 |
msgid "User requested a password reset"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: defaults.php:306
|
156 |
msgid "User requested a password reset. This does not mean that the password was changed."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: defaults.php:315
|
160 |
msgid "Content & Comments"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: defaults.php:316
|
164 |
msgid "Content"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: defaults.php:320
|
168 |
msgid "User created a new post and saved it as draft"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: defaults.php:321
|
172 |
+
msgid "Created the post %PostTitle%."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: defaults.php:323, defaults.php:337, defaults.php:351, defaults.php:365, defaults.php:379, defaults.php:393, defaults.php:407, defaults.php:423, defaults.php:438, defaults.php:452, defaults.php:467, defaults.php:482, defaults.php:497, defaults.php:512, defaults.php:526, 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:668, defaults.php:782, defaults.php:861, defaults.php:876, defaults.php:892, defaults.php:907, defaults.php:924, defaults.php:939, defaults.php:960, defaults.php:975, defaults.php:990, defaults.php:1005, defaults.php:1020, defaults.php:1035, defaults.php:1050, defaults.php:1065, defaults.php:1080, defaults.php:1095, defaults.php:1114, defaults.php:2145, defaults.php:2160, extensions/search/classes/FilterManager.php:502, extensions/search/classes/Filters/PostIDFilter.php:29, extensions/search/classes/Filters/PostIDFilter.php:57
|
176 |
msgid "Post ID"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: defaults.php:324, defaults.php:338, defaults.php:352, defaults.php:366, defaults.php:380, defaults.php:394, defaults.php:408, defaults.php:424, defaults.php:439, defaults.php:453, defaults.php:468, defaults.php:483, defaults.php:498, defaults.php:513, defaults.php:527, defaults.php:541, defaults.php:555, defaults.php:569, defaults.php:583, defaults.php:597, defaults.php:611, defaults.php:625, defaults.php:639, defaults.php:653, defaults.php:669, defaults.php:783, defaults.php:862, defaults.php:877, defaults.php:893, defaults.php:908, defaults.php:925, defaults.php:940, defaults.php:961, defaults.php:976, defaults.php:991, defaults.php:1006, defaults.php:1021, defaults.php:1036, defaults.php:1051, defaults.php:1066, defaults.php:1081, defaults.php:1096, defaults.php:1115, defaults.php:2146, defaults.php:2161
|
180 |
msgid "Post type"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: defaults.php:325, defaults.php:339, defaults.php:353, defaults.php:367, defaults.php:381, defaults.php:395, defaults.php:409, defaults.php:425, defaults.php:454, defaults.php:469, defaults.php:484, defaults.php:499, defaults.php:514, defaults.php:528, defaults.php:542, defaults.php:556, defaults.php:570, defaults.php:584, defaults.php:598, defaults.php:612, defaults.php:626, defaults.php:640, defaults.php:654, defaults.php:670, defaults.php:784, defaults.php:863, defaults.php:878, defaults.php:894, defaults.php:909, defaults.php:926, defaults.php:941, defaults.php:962, defaults.php:977, defaults.php:992, defaults.php:1007, defaults.php:1022, defaults.php:1037, defaults.php:1052, defaults.php:1067, defaults.php:1082, defaults.php:1097, defaults.php:1116, defaults.php:2147, defaults.php:2162
|
184 |
msgid "Post status"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: defaults.php:334
|
188 |
msgid "User published a post"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: defaults.php:335
|
192 |
+
msgid "Published the post %PostTitle%."
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: defaults.php:348
|
196 |
msgid "User modified a post"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: defaults.php:349
|
200 |
+
msgid "Modified the post %PostTitle%."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: defaults.php:362
|
204 |
msgid "User permanently deleted a post from the trash"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: defaults.php:363
|
208 |
+
msgid "Permanently deleted the post %PostTitle%."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: defaults.php:376
|
212 |
msgid "User moved a post to the trash"
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: defaults.php:377
|
216 |
+
msgid "Moved the post %PostTitle% to trash."
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: defaults.php:390
|
220 |
msgid "User restored a post from trash"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: defaults.php:391
|
224 |
+
msgid "Restored the post %PostTitle% from trash."
|
225 |
msgstr ""
|
226 |
|
227 |
+
#: defaults.php:404
|
228 |
msgid "User changed post URL"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: defaults.php:405
|
232 |
+
msgid "Changed the URL of the post %PostTitle%."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: defaults.php:410, defaults.php:2667, defaults.php:2679
|
236 |
msgid "Previous URL"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: defaults.php:411
|
240 |
msgid "New URL"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: defaults.php:420
|
244 |
msgid "User changed post author"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: defaults.php:421
|
248 |
+
msgid "Changed the author of the post %PostTitle% to %NewAuthor%."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: defaults.php:426
|
252 |
msgid "Previous author"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: defaults.php:435
|
|
|
|
|
|
|
|
|
256 |
msgid "User changed post status"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: defaults.php:436
|
260 |
+
msgid "Changed the status of the post %PostTitle% to %NewStatus%."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: defaults.php:440
|
264 |
msgid "Previous status"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: defaults.php:449
|
|
|
|
|
|
|
|
|
268 |
msgid "User changed the visibility of a post"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: defaults.php:450
|
272 |
+
msgid "Changed the visibility of the post %PostTitle% to %NewVisibility%."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: defaults.php:455
|
276 |
msgid "Previous visibility status"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: defaults.php:464
|
|
|
|
|
|
|
|
|
280 |
msgid "User changed the date of a post"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: defaults.php:465
|
284 |
+
msgid "Changed the date of the post %PostTitle% to %NewDate%."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: defaults.php:470
|
288 |
msgid "Previous date"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: defaults.php:479
|
|
|
|
|
|
|
|
|
292 |
msgid "User changed the parent of a page"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: defaults.php:480
|
296 |
+
msgid "Changed the parent of the post %PostTitle% to %NewParentName%."
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: defaults.php:485, defaults.php:822
|
300 |
msgid "Previous parent"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: defaults.php:494
|
|
|
|
|
|
|
|
|
304 |
msgid "User changed the template of a page"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: defaults.php:495
|
308 |
+
msgid "Changed the template of the post %PostTitle% to %NewTemplate%."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: defaults.php:500
|
312 |
msgid "Previous template"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: defaults.php:509
|
|
|
|
|
|
|
|
|
316 |
msgid "User set a post as sticky"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: defaults.php:510
|
320 |
+
msgid "Set the post %PostTitle% as sticky."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: defaults.php:523
|
324 |
msgid "User removed post from sticky"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: defaults.php:524
|
328 |
+
msgid "Removed the post %PostTitle% from sticky."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: defaults.php:537
|
332 |
msgid "User modified the content of a post"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: defaults.php:538
|
336 |
+
msgid "Modified the content of the post %PostTitle%."
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: defaults.php:551
|
340 |
msgid "User submitted a post for review"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: defaults.php:552
|
344 |
+
msgid "Submitted the post %PostTitle% for review."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: defaults.php:565
|
348 |
msgid "User scheduled a post"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: defaults.php:566
|
352 |
+
msgid "Scheduled the post %PostTitle% to be published on %PublishingDate%."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: defaults.php:579
|
356 |
msgid "User changed title of a post"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: defaults.php:580
|
360 |
+
msgid "Changed the title of the post %OldTitle% to %NewTitle%."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: defaults.php:593
|
|
|
|
|
|
|
|
|
364 |
msgid "User opened a post in the editor"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: defaults.php:594
|
368 |
+
msgid "Opened the post %PostTitle% in the editor."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: defaults.php:607
|
372 |
msgid "User viewed a post"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: defaults.php:608
|
376 |
+
msgid "Viewed the post %PostTitle%."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: defaults.php:621
|
380 |
msgid "User enabled/disabled comments in a post"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: defaults.php:622
|
384 |
+
msgid "Comments in the post %PostTitle%."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: defaults.php:635
|
388 |
msgid "User enabled/disabled trackbacks and pingbacks in a post"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: defaults.php:636
|
392 |
+
msgid "Pingbacks and Trackbacks in the post %PostTitle%."
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: defaults.php:649
|
396 |
msgid "User updated the excerpt in a post"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: defaults.php:650
|
400 |
+
msgid "The excerpt of the post %PostTitle%."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: defaults.php:655
|
404 |
msgid "Previous excerpt entry"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: defaults.php:656
|
408 |
msgid "New excerpt entry"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: defaults.php:665
|
412 |
msgid "User updated the featured image in a post"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: defaults.php:666
|
416 |
+
msgid "The featured image of the post %PostTitle%."
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: defaults.php:671
|
420 |
msgid "Previous image"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: defaults.php:672
|
424 |
msgid "New image"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: defaults.php:680
|
428 |
msgid "Tags"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: defaults.php:684
|
432 |
msgid "User added post tag"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: defaults.php:685
|
436 |
+
msgid "Added tag(s) to the post %PostTitle%."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: defaults.php:687, defaults.php:702, classes/AuditLogGridView.php:288, classes/AuditLogGridView.php:312, classes/AuditLogListView.php:296, classes/AuditLogListView.php:324, extensions/external-db/classes/Common.php:954
|
440 |
msgid "ID"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: defaults.php:688, defaults.php:703, extensions/external-db/classes/Connections.php:96, extensions/external-db/classes/Mirroring.php:124, extensions/reports/classes/CsvReportGenerator.php:84, extensions/reports/classes/HtmlReportGenerator.php:246
|
444 |
msgid "Type"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: defaults.php:689, defaults.php:704
|
448 |
msgid "Status"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: defaults.php:690
|
452 |
msgid "Added tag(s)"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: defaults.php:699
|
456 |
msgid "User removed post tag"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: defaults.php:700
|
460 |
+
msgid "Removed tag(s) from the post %PostTitle%."
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: defaults.php:705
|
464 |
msgid "Removed tag(s)"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: defaults.php:714
|
468 |
msgid "User created new tag"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: defaults.php:715
|
472 |
+
msgid "Created the tag %TagName%."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: defaults.php:717, defaults.php:729, defaults.php:741, defaults.php:765, defaults.php:797, defaults.php:809, defaults.php:821, defaults.php:834
|
476 |
msgid "Slug"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: defaults.php:726
|
480 |
msgid "User deleted tag"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: defaults.php:727
|
484 |
+
msgid "Deleted the tag %TagName%."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: defaults.php:738
|
488 |
+
msgid "Renamed the tag %old_name% to %new_name%."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: defaults.php:750
|
492 |
msgid "User changed tag slug"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: defaults.php:751
|
496 |
+
msgid "Changed the slug of the tag %tag% to %new_slug%."
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: defaults.php:753, defaults.php:846
|
500 |
msgid "Previous slug"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: defaults.php:762
|
|
|
|
|
|
|
|
|
504 |
msgid "User changed tag description"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: defaults.php:763
|
508 |
+
msgid "Changed the description of the tag %tag%."
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: defaults.php:766
|
512 |
msgid "Previous description"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: defaults.php:767
|
516 |
msgid "New description"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: defaults.php:775
|
520 |
msgid "Categories"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: defaults.php:779
|
524 |
msgid "User changed post category"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: defaults.php:780
|
528 |
+
msgid "Changed the category(ies) of the post %PostTitle% to %NewCategories%."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: defaults.php:785
|
532 |
msgid "Previous category(ies)"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: defaults.php:794
|
|
|
|
|
|
|
|
|
536 |
msgid "User created new category"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: defaults.php:795
|
540 |
+
msgid "Created the category %CategoryName%."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: defaults.php:806
|
544 |
msgid "User deleted category"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: defaults.php:807
|
548 |
+
msgid "Deleted the category %CategoryName%."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: defaults.php:818
|
552 |
msgid "Changed the parent of a category"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: defaults.php:819
|
556 |
+
msgid "Changed the parent of the category %CategoryName% to %NewParent%."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: defaults.php:831
|
560 |
msgid "User changed category name"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: defaults.php:832
|
564 |
+
msgid "Renamed the category %old_name% to %new_name%."
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: defaults.php:843
|
568 |
msgid "User changed category slug"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: defaults.php:844
|
572 |
+
msgid "Changed the slug of the category %CategoryName% to %new_slug%."
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: defaults.php:854
|
576 |
msgid "Custom Fields"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: defaults.php:858
|
580 |
msgid "User created a custom field for a post"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: defaults.php:859
|
584 |
+
msgid "Created the new custom field %MetaKey% in the post %PostTitle%."
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: defaults.php:864, defaults.php:1825
|
588 |
msgid "Custom field value"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: defaults.php:873
|
592 |
msgid "User updated a custom field value for a post"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: defaults.php:874
|
596 |
+
msgid "Modified the value of the custom field %MetaName% in the post %PostTitle%."
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: defaults.php:879
|
600 |
msgid "Previous custom field value"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: defaults.php:880
|
604 |
msgid "New custom field value"
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: defaults.php:889
|
608 |
msgid "User deleted a custom field from a post"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: defaults.php:890
|
612 |
+
msgid "Deleted the custom field %MetaKey% from the post %PostTitle%."
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: defaults.php:903
|
616 |
msgid "User updated a custom field name for a post"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: defaults.php:904
|
620 |
+
msgid "Renamed the custom field %MetaKeyOld% on post %PostTitle% to %MetaKeNew%."
|
621 |
msgstr ""
|
622 |
|
623 |
+
#: defaults.php:906, classes/AlertManager.php:1144
|
|
|
|
|
|
|
|
|
624 |
msgid "Post"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: defaults.php:917
|
628 |
msgid "Custom Fields (ACF)"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: defaults.php:921
|
632 |
msgid "User added relationship to a custom field value for a post"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: defaults.php:922
|
636 |
+
msgid "Added relationships to the custom field %MetaKey% in the post %PostTitle%."
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: defaults.php:927
|
640 |
msgid "New relationships"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: defaults.php:936
|
644 |
msgid "User removed relationship from a custom field value for a post"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: defaults.php:937
|
648 |
+
msgid "Removed relationships from the custom field %MetaKey% in the post %PostTitle%."
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: defaults.php:942
|
652 |
msgid "Removed relationships"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: defaults.php:953
|
656 |
msgid "Comments"
|
657 |
msgstr ""
|
658 |
|
659 |
+
#: defaults.php:957
|
660 |
msgid "User approved a comment"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: defaults.php:958
|
664 |
+
msgid "Approved the comment posted by %Author% on the post %PostTitle%."
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: defaults.php:963, defaults.php:978, defaults.php:993, defaults.php:1008, defaults.php:1023, defaults.php:1038, defaults.php:1053, defaults.php:1068, defaults.php:1083, defaults.php:1098, defaults.php:1117
|
668 |
msgid "Comment ID"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: defaults.php:972
|
672 |
msgid "User unapproved a comment"
|
673 |
msgstr ""
|
674 |
|
675 |
+
#: defaults.php:973
|
676 |
+
msgid "Unapproved the comment posted by %Author% on the post %PostTitle%."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: defaults.php:987
|
680 |
msgid "User replied to a comment"
|
681 |
msgstr ""
|
682 |
|
683 |
+
#: defaults.php:988
|
684 |
+
msgid "Replied to the comment posted by %Author% on the post %PostTitle%."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: defaults.php:1002
|
688 |
msgid "User edited a comment"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: defaults.php:1003
|
692 |
+
msgid "Edited the comment posted by %Author% on the post %PostTitle%."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: defaults.php:1017
|
696 |
msgid "User marked a comment as Spam"
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: defaults.php:1018
|
700 |
+
msgid "Marked the comment posted by %Author% on the post %PostTitle% as spam."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: defaults.php:1032
|
704 |
msgid "User marked a comment as Not Spam"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: defaults.php:1033
|
708 |
+
msgid "Marked the comment posted by %Author% on the post %PostTitle% as not spam."
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: defaults.php:1047
|
712 |
msgid "User moved a comment to trash"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: defaults.php:1048
|
716 |
+
msgid "Moved the comment posted by %Author% on the post %PostTitle% to trash."
|
717 |
msgstr ""
|
718 |
|
719 |
+
#: defaults.php:1062
|
720 |
msgid "User restored a comment from the trash"
|
721 |
msgstr ""
|
722 |
|
723 |
+
#: defaults.php:1063
|
724 |
+
msgid "Restored the comment posted by %Author% on the post %PostTitle% from trash."
|
725 |
msgstr ""
|
726 |
|
727 |
+
#: defaults.php:1077
|
728 |
msgid "User permanently deleted a comment"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: defaults.php:1078
|
732 |
+
msgid "Permanently deleted the comment posted by %Author% on the post %PostTitle%."
|
733 |
msgstr ""
|
734 |
|
735 |
+
#: defaults.php:1092
|
736 |
msgid "User posted a comment"
|
737 |
msgstr ""
|
738 |
|
739 |
+
#: defaults.php:1093, defaults.php:1112
|
740 |
+
msgid "Posted a comment on the post %PostTitle%."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: defaults.php:1111
|
744 |
msgid "Visitor posted a comment"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: defaults.php:1128
|
748 |
msgid "Widgets"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: defaults.php:1132
|
752 |
msgid "User added a new widget"
|
753 |
msgstr ""
|
754 |
|
755 |
+
#: defaults.php:1133
|
756 |
msgid "Added a new %WidgetName% widget in %Sidebar%."
|
757 |
msgstr ""
|
758 |
|
759 |
+
#: defaults.php:1142
|
760 |
msgid "User modified a widget"
|
761 |
msgstr ""
|
762 |
|
763 |
+
#: defaults.php:1143
|
764 |
msgid "Modified the %WidgetName% widget in %Sidebar%."
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: defaults.php:1152
|
768 |
msgid "User deleted widget"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: defaults.php:1153
|
772 |
msgid "Deleted the %WidgetName% widget from %Sidebar%."
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: defaults.php:1162
|
776 |
msgid "User moved widget"
|
777 |
msgstr ""
|
778 |
|
779 |
+
#: defaults.php:1163
|
780 |
+
msgid "Moved the %WidgetName% widget."
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: defaults.php:1165, extensions/reports/inc/wsal-reporting-view.inc.php:1505
|
784 |
msgid "From"
|
785 |
msgstr ""
|
786 |
|
787 |
+
#: defaults.php:1166, extensions/reports/inc/wsal-reporting-view.inc.php:1514
|
788 |
msgid "To"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: defaults.php:1175
|
792 |
msgid "User changed widget position"
|
793 |
msgstr ""
|
794 |
|
795 |
+
#: defaults.php:1176
|
796 |
msgid "Changed the position of the %WidgetName% widget in %Sidebar%."
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: defaults.php:1187
|
800 |
msgid "Menus"
|
801 |
msgstr ""
|
802 |
|
803 |
+
#: defaults.php:1191
|
804 |
msgid "User created new menu"
|
805 |
msgstr ""
|
806 |
|
807 |
+
#: defaults.php:1192
|
808 |
+
msgid "New menu called %MenuName%."
|
809 |
msgstr ""
|
810 |
|
811 |
+
#: defaults.php:1201
|
812 |
msgid "User added content to a menu"
|
813 |
msgstr ""
|
814 |
|
815 |
+
#: defaults.php:1202
|
816 |
+
msgid "Added the item %ContentName% to the menu %MenuName%."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: defaults.php:1204, defaults.php:1216, defaults.php:1248
|
820 |
msgid "Item type"
|
821 |
msgstr ""
|
822 |
|
823 |
+
#: defaults.php:1213
|
|
|
|
|
|
|
|
|
824 |
msgid "User removed content from a menu"
|
825 |
msgstr ""
|
826 |
|
827 |
+
#: defaults.php:1214
|
828 |
+
msgid "Removed the item %ContentName% from the menu %MenuName%."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: defaults.php:1225
|
832 |
msgid "User deleted menu"
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: defaults.php:1226
|
836 |
+
msgid "Deleted the menu %MenuName%."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: defaults.php:1235
|
840 |
msgid "User changed menu setting"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: defaults.php:1236
|
844 |
+
msgid "The setting %MenuSetting% in the menu %MenuName%."
|
|
|
|
|
|
|
|
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: defaults.php:1245
|
848 |
msgid "User modified content in a menu"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: defaults.php:1246
|
852 |
+
msgid "Modified the item %ContentName% in the menu %MenuName%."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: defaults.php:1257
|
856 |
msgid "User changed name of a menu"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: defaults.php:1258
|
860 |
+
msgid "Renamed the menu %OldMenuName% to %MenuName%."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: defaults.php:1267
|
864 |
msgid "User changed order of the objects in a menu"
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: defaults.php:1268
|
868 |
+
msgid "Changed the order of the items in the menu %MenuName%."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: defaults.php:1277
|
872 |
msgid "User moved objects as a sub-item"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: defaults.php:1278
|
876 |
+
msgid "Moved items as sub-items in the menu %MenuName%."
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: defaults.php:1280
|
880 |
msgid "Moved item"
|
881 |
msgstr ""
|
882 |
|
883 |
+
#: defaults.php:1281
|
884 |
msgid "as a sub-item of"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: defaults.php:1297, extensions/reports/classes/HtmlReportGenerator.php:545
|
888 |
msgid "Custom Post Types"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: defaults.php:1301
|
892 |
msgid "User modified a draft blog post"
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: defaults.php:1302
|
896 |
msgid "Modified the draft post with the %PostTitle%. %EditorLinkPost%."
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: defaults.php:1307
|
900 |
msgid "User created a new post with custom post type and saved it as draft"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: defaults.php:1308
|
904 |
msgid "Created a new custom post called %PostTitle% of type %PostType%. %EditorLinkPost%."
|
905 |
msgstr ""
|
906 |
|
907 |
+
#: defaults.php:1313
|
908 |
msgid "User published a post with custom post type"
|
909 |
msgstr ""
|
910 |
|
911 |
+
#: defaults.php:1314
|
912 |
msgid "Published a custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: defaults.php:1319
|
916 |
msgid "User modified a post with custom post type"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: defaults.php:1320
|
920 |
msgid "Modified the custom post %PostTitle% of type %PostType%. Post URL is %PostUrl%. %EditorLinkPost%."
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: defaults.php:1325
|
924 |
msgid "User modified a draft post with custom post type"
|
925 |
msgstr ""
|
926 |
|
927 |
+
#: defaults.php:1326
|
928 |
msgid "Modified the draft custom post %PostTitle% of type is %PostType%. %EditorLinkPost%."
|
929 |
msgstr ""
|
930 |
|
931 |
+
#: defaults.php:1331
|
932 |
msgid "User permanently deleted post with custom post type"
|
933 |
msgstr ""
|
934 |
|
935 |
+
#: defaults.php:1332
|
936 |
msgid "Permanently Deleted the custom post %PostTitle% of type %PostType%."
|
937 |
msgstr ""
|
938 |
|
939 |
+
#: defaults.php:1337
|
940 |
msgid "User moved post with custom post type to trash"
|
941 |
msgstr ""
|
942 |
|
943 |
+
#: defaults.php:1338
|
944 |
msgid "Moved the custom post %PostTitle% of type %PostType% to trash. Post URL was %PostUrl%."
|
945 |
msgstr ""
|
946 |
|
947 |
+
#: defaults.php:1343
|
948 |
msgid "User restored post with custom post type from trash"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#: defaults.php:1344
|
952 |
msgid "The custom post %PostTitle% of type %PostType% has been restored from trash. %EditorLinkPost%."
|
953 |
msgstr ""
|
954 |
|
955 |
+
#: defaults.php:1349
|
956 |
msgid "User changed the category of a post with custom post type"
|
957 |
msgstr ""
|
958 |
|
959 |
+
#: defaults.php:1350
|
960 |
msgid "Changed the category(ies) of the custom post %PostTitle% of type %PostType% from %OldCategories% to %NewCategories%. %EditorLinkPost%."
|
961 |
msgstr ""
|
962 |
|
963 |
+
#: defaults.php:1355
|
964 |
msgid "User changed the URL of a post with custom post type"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: defaults.php:1356
|
968 |
msgid "Changed the URL of the custom post %PostTitle% of type %PostType% from %OldUrl% to %NewUrl%. %EditorLinkPost%."
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: defaults.php:1361
|
972 |
msgid "User changed the author or post with custom post type"
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: defaults.php:1362
|
976 |
msgid "Changed the author of custom post %PostTitle% of type %PostType% from %OldAuthor% to %NewAuthor%. %EditorLinkPost%."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: defaults.php:1367
|
980 |
msgid "User changed the status of post with custom post type"
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: defaults.php:1368
|
984 |
msgid "Changed the status of custom post %PostTitle% of type %PostType% from %OldStatus% to %NewStatus%. %EditorLinkPost%."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: defaults.php:1373
|
988 |
msgid "User changed the visibility of a post with custom post type"
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: defaults.php:1374
|
992 |
msgid "Changed the visibility of the custom post %PostTitle% of type %PostType% from %OldVisibility% to %NewVisibility%. %EditorLinkPost%."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: defaults.php:1379
|
996 |
msgid "User changed the date of post with custom post type"
|
997 |
msgstr ""
|
998 |
|
999 |
+
#: defaults.php:1380
|
1000 |
msgid "Changed the date of the custom post %PostTitle% of type %PostType% from %OldDate% to %NewDate%. %EditorLinkPost%."
|
1001 |
msgstr ""
|
1002 |
|
1003 |
+
#: defaults.php:1385
|
1004 |
msgid "User created a custom field for a custom post type"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: defaults.php:1386
|
1008 |
msgid "Created a new custom field %MetaKey% with value %MetaValue% in custom post %PostTitle% of type %PostType%. %EditorLinkPost%.<br>%MetaLink%."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: defaults.php:1391
|
1012 |
msgid "User updated a custom field for a custom post type"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: defaults.php:1392
|
1016 |
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
+
#: defaults.php:1397
|
1020 |
msgid "User deleted a custom field from a custom post type"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: defaults.php:1398
|
1024 |
msgid "Deleted the custom field %MetaKey% with id %MetaID% from custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1025 |
msgstr ""
|
1026 |
|
1027 |
+
#: defaults.php:1403
|
1028 |
msgid "User updated a custom field name for a custom post type"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: defaults.php:1404
|
1032 |
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in custom post %PostTitle% of type %PostType% %EditorLinkPost%.<br>%MetaLink%."
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: defaults.php:1409
|
1036 |
msgid "User modified content for a published custom post type"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: defaults.php:1410
|
1040 |
msgid "Modified the content of the published custom post type %PostTitle%. Post URL is %PostUrl%. %EditorLinkPost%."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: defaults.php:1415
|
1044 |
msgid "User modified content for a draft post"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
+
#: defaults.php:1416
|
1048 |
msgid "Modified the content of the draft post %PostTitle%.%RevisionLink% %EditorLinkPost%."
|
1049 |
msgstr ""
|
1050 |
|
1051 |
+
#: defaults.php:1421
|
1052 |
msgid "User modified content for a draft custom post type"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: defaults.php:1422
|
1056 |
msgid "Modified the content of the draft custom post type %PostTitle%.%EditorLinkPost%."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: defaults.php:1427
|
1060 |
msgid "User modified content of a post"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: defaults.php:1428
|
1064 |
msgid "Modified the content of post %PostTitle% which is submitted for review.%RevisionLink% %EditorLinkPost%."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: defaults.php:1433
|
1068 |
msgid "User scheduled a custom post type"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: defaults.php:1434
|
1072 |
msgid "Scheduled the custom post type %PostTitle% to be published %PublishingDate%. %EditorLinkPost%."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: defaults.php:1439
|
1076 |
msgid "User changed title of a custom post type"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
+
#: defaults.php:1440
|
1080 |
msgid "Changed the title of the custom post %OldTitle% to %NewTitle%. %EditorLinkPost%."
|
1081 |
msgstr ""
|
1082 |
|
1083 |
+
#: defaults.php:1445
|
1084 |
msgid "User opened a custom post type in the editor"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: defaults.php:1446
|
1088 |
msgid "Opened the custom post %PostTitle% of type %PostType% in the editor. View the post: %EditorLinkPost%."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
+
#: defaults.php:1451
|
1092 |
msgid "User viewed a custom post type"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: defaults.php:1452
|
1096 |
msgid "Viewed the custom post %PostTitle% of type %PostType%. View the post: %PostUrl%."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: defaults.php:1457
|
1100 |
msgid "A plugin created a custom post"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: defaults.php:1458
|
1104 |
msgid "A plugin automatically created the following custom post: %PostTitle%."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: defaults.php:1463
|
1108 |
msgid "A plugin deleted a custom post"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: defaults.php:1464
|
1112 |
msgid "A plugin automatically deleted the following custom post: %PostTitle%."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: defaults.php:1469
|
1116 |
msgid "A plugin modified a custom post"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
+
#: defaults.php:1470
|
1120 |
msgid "Plugin modified the custom post %PostTitle%. View the post: %EditorLinkPost%."
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: defaults.php:1482, extensions/reports/classes/HtmlReportGenerator.php:540
|
1124 |
msgid "Pages"
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: defaults.php:1486
|
1128 |
msgid "User created a new WordPress page and saved it as draft"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: defaults.php:1487
|
1132 |
msgid "Created a new page called %PostTitle% and saved it as draft. %EditorLinkPage%."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: defaults.php:1492
|
1136 |
msgid "User published a WordPress page"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: defaults.php:1493
|
1140 |
msgid "Published a page called %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: defaults.php:1498
|
1144 |
msgid "User modified a published WordPress page"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: defaults.php:1499
|
1148 |
msgid "Modified the published page %PostTitle%. Page URL is %PostUrl%. %EditorLinkPage%."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: defaults.php:1504
|
1152 |
msgid "User modified a draft WordPress page"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: defaults.php:1505
|
1156 |
msgid "Modified the draft page %PostTitle%. Page ID is %PostID%. %EditorLinkPage%."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: defaults.php:1510
|
1160 |
msgid "User permanently deleted a page from the trash"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: defaults.php:1511
|
1164 |
msgid "Permanently deleted the page %PostTitle%."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: defaults.php:1516
|
1168 |
msgid "User moved WordPress page to the trash"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: defaults.php:1517
|
1172 |
msgid "Moved the page %PostTitle% to trash. Page URL was %PostUrl%."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: defaults.php:1522
|
1176 |
msgid "User restored a WordPress page from trash"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: defaults.php:1523
|
1180 |
msgid "Page %PostTitle% has been restored from trash. %EditorLinkPage%."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: defaults.php:1528
|
1184 |
msgid "User changed page URL"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: defaults.php:1529
|
1188 |
msgid "Changed the URL of the page %PostTitle% from %OldUrl% to %NewUrl%. %EditorLinkPage%."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: defaults.php:1534
|
1192 |
msgid "User changed page author"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: defaults.php:1535
|
1196 |
msgid "Changed the author of the page %PostTitle% from %OldAuthor% to %NewAuthor%. %EditorLinkPage%."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: defaults.php:1540
|
1200 |
msgid "User changed page status"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: defaults.php:1541
|
1204 |
msgid "Changed the status of the page %PostTitle% from %OldStatus% to %NewStatus%. %EditorLinkPage%."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: defaults.php:1546
|
1208 |
msgid "User changed the visibility of a page post"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: defaults.php:1547
|
1212 |
msgid "Changed the visibility of the page %PostTitle% from %OldVisibility% to %NewVisibility%. %EditorLinkPage%."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: defaults.php:1552
|
1216 |
msgid "User changed the date of a page post"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: defaults.php:1553
|
1220 |
msgid "Changed the date of the page %PostTitle% from %OldDate% to %NewDate%. %EditorLinkPage%."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: defaults.php:1558
|
1224 |
msgid "User created a custom field for a page"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: defaults.php:1559
|
1228 |
msgid "Created a new custom field called %MetaKey% with value %MetaValue% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: defaults.php:1564
|
1232 |
msgid "User updated a custom field value for a page"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: defaults.php:1565
|
1236 |
msgid "Modified the value of the custom field %MetaKey% from %MetaValueOld% to %MetaValueNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: defaults.php:1570
|
1240 |
msgid "User deleted a custom field from a page"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: defaults.php:1571
|
1244 |
msgid "Deleted the custom field %MetaKey% with id %MetaID% from page %PostTitle% %EditorLinkPage%<br>%MetaLink%."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: defaults.php:1576
|
1248 |
msgid "User updated a custom field name for a page"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: defaults.php:1577
|
1252 |
msgid "Changed the custom field name from %MetaKeyOld% to %MetaKeyNew% in the page %PostTitle% %EditorLinkPage%.<br>%MetaLink%."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: defaults.php:1582
|
1256 |
msgid "User modified content for a published page"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: defaults.php:1583
|
1260 |
msgid "Modified the content of the published page %PostTitle%. Page URL is %PostUrl%. %RevisionLink% %EditorLinkPage%."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: defaults.php:1588
|
1264 |
msgid "User modified content for a draft page"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: defaults.php:1589
|
1268 |
msgid "Modified the content of draft page %PostTitle%.%RevisionLink% %EditorLinkPage%."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: defaults.php:1594
|
1272 |
msgid "User scheduled a page"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: defaults.php:1595
|
1276 |
msgid "Scheduled the page %PostTitle% to be published %PublishingDate%. %EditorLinkPage%."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: defaults.php:1600
|
1280 |
msgid "User changed title of a page"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: defaults.php:1601
|
1284 |
msgid "Changed the title of the page %OldTitle% to %NewTitle%. %EditorLinkPage%."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: defaults.php:1606
|
1288 |
msgid "User opened a page in the editor"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: defaults.php:1607
|
1292 |
msgid "Opened the page %PostTitle% in the editor. View the page: %EditorLinkPage%."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: defaults.php:1612
|
1296 |
msgid "User viewed a page"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: defaults.php:1613
|
1300 |
msgid "Viewed the page %PostTitle%. View the page: %PostUrl%."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: defaults.php:1618
|
1304 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft post"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: defaults.php:1619
|
1308 |
msgid "Disabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: defaults.php:1624
|
1312 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft post"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: defaults.php:1625
|
1316 |
msgid "Enabled %Type% on the draft post %PostTitle%. View the post: %PostUrl%."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: defaults.php:1630
|
1320 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a published page"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: defaults.php:1631
|
1324 |
msgid "Disabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: defaults.php:1636
|
1328 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a published page"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: defaults.php:1637
|
1332 |
msgid "Enabled %Type% on the published page %PostTitle%. View the page: %PostUrl%."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: defaults.php:1642
|
1336 |
msgid "User disabled Comments/Trackbacks and Pingbacks on a draft page"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: defaults.php:1643
|
1340 |
msgid "Disabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: defaults.php:1648
|
1344 |
msgid "User enabled Comments/Trackbacks and Pingbacks on a draft page"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: defaults.php:1649
|
1348 |
msgid "Enabled %Type% on the draft page %PostTitle%. View the page: %PostUrl%."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: defaults.php:1654
|
1352 |
msgid "A plugin created a page"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: defaults.php:1655
|
1356 |
msgid "A plugin automatically created the following page: %PostTitle%."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: defaults.php:1660
|
1360 |
msgid "A plugin deleted a page"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: defaults.php:1661
|
1364 |
msgid "A plugin automatically deleted the following page: %PostTitle%."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: defaults.php:1666
|
1368 |
msgid "A plugin modified a page"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: defaults.php:1667
|
1372 |
msgid "Plugin modified the page %PostTitle%. View the page: %EditorLinkPage%."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: defaults.php:1672
|
1376 |
msgid "User Accounts"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
+
#: defaults.php:1673
|
1380 |
msgid "User Profiles"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: defaults.php:1677
|
1384 |
msgid "New user was created on WordPress"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: defaults.php:1678
|
1388 |
+
msgid "A new user %NewUserData->Username% is created via registration."
|
1389 |
+
msgstr ""
|
1390 |
+
|
1391 |
+
#: defaults.php:1680, classes/AlertManager.php:1140, classes/AuditLogListView.php:299, classes/AuditLogListView.php:333, classes/WidgetManager.php:76, classes/Views/Settings.php:1094, extensions/external-db/classes/Common.php:964, extensions/reports/classes/CsvReportGenerator.php:87, extensions/reports/classes/CsvReportGenerator.php:71, extensions/reports/classes/HtmlReportGenerator.php:249, extensions/reports/classes/HtmlReportGenerator.php:225, extensions/search/classes/Filters/UserNameFilter.php:44, extensions/user-sessions/classes/View/Sessions.php:138
|
1392 |
+
msgid "User"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: defaults.php:1689
|
1396 |
msgid "User created another WordPress user"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: defaults.php:1690
|
1400 |
+
msgid "Created the new user: %NewUserData->Username%."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: defaults.php:1693, defaults.php:1707, defaults.php:1721, defaults.php:1735, defaults.php:1749, defaults.php:1764, defaults.php:1779, defaults.php:1793, defaults.php:1807, defaults.php:1823, defaults.php:1852, defaults.php:1866, defaults.php:1881, defaults.php:1897, defaults.php:1911, defaults.php:1926, defaults.php:1940, defaults.php:1954, defaults.php:1971, defaults.php:1985, defaults.php:1999, defaults.php:2013, defaults.php:2026
|
1404 |
msgid "First name"
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: defaults.php:1694, defaults.php:1708, defaults.php:1722, defaults.php:1736, defaults.php:1750, defaults.php:1765, defaults.php:1780, defaults.php:1794, defaults.php:1808, defaults.php:1824, defaults.php:1839, defaults.php:1867, defaults.php:1882, defaults.php:1898, defaults.php:1912, defaults.php:1927, defaults.php:1941, defaults.php:1955, defaults.php:1972, defaults.php:1986, defaults.php:2000, defaults.php:2014, defaults.php:2027
|
1408 |
msgid "Last name"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: defaults.php:1703
|
1412 |
msgid "The role of a user was changed by another WordPress user"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: defaults.php:1704
|
1416 |
+
msgid "Changed the role of user %TargetUsername% to %NewRole%."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: defaults.php:1706, defaults.php:2513
|
1420 |
msgid "Previous role"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: defaults.php:1717
|
|
|
|
|
|
|
|
|
1424 |
msgid "User has changed his or her password"
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: defaults.php:1718
|
1428 |
+
msgid "Changed the password."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: defaults.php:1731
|
1432 |
msgid "User changed another user's password"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: defaults.php:1732
|
1436 |
+
msgid "Changed the password of the user %TargetUserData->Username%."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: defaults.php:1745
|
1440 |
msgid "User changed his or her email address"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: defaults.php:1746
|
1444 |
+
msgid "Changed the email address to %NewEmail%."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: defaults.php:1751, defaults.php:1766
|
1448 |
msgid "Previous email address"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: defaults.php:1760
|
|
|
|
|
|
|
|
|
1452 |
msgid "User changed another user's email address"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: defaults.php:1761
|
1456 |
+
msgid "Changed the email address of the user %TargetUsername% to %NewEmail%."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: defaults.php:1775
|
1460 |
msgid "User was deleted by another user"
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: defaults.php:1776
|
1464 |
+
msgid "Deleted the user %TargetUserData->Username%."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
+
#: defaults.php:1789
|
1468 |
+
msgid "User opened the profile page of another user"
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: defaults.php:1790
|
1472 |
+
msgid "Opened the profile page of user %TargetUsername%."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: defaults.php:1803
|
1476 |
+
msgid "User updated a custom field value for a user"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
+
#: defaults.php:1804
|
1480 |
+
msgid "Changed the value of the custom field %custom_field_name% in the user profile %TargetUsername%."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: defaults.php:1809, defaults.php:2603, defaults.php:2635, defaults.php:2899
|
1484 |
msgid "Previous value"
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: defaults.php:1810, defaults.php:2900
|
1488 |
msgid "New value"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: defaults.php:1819
|
1492 |
msgid "User created a custom field value for a user"
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: defaults.php:1820
|
1496 |
+
msgid "Created the custom field %custom_field_name% in the user profile %TargetUsername%."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: defaults.php:1834
|
1500 |
msgid "User changed first name for a user"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
+
#: defaults.php:1835
|
1504 |
+
msgid "Changed the first name of the user %TargetUsername% to %new_firstname%."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: defaults.php:1838
|
1508 |
+
msgid "Previous name"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: defaults.php:1848
|
1512 |
+
msgid "User changed last name for a user"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
+
#: defaults.php:1849
|
1516 |
+
msgid "Changed the last name of the user %TargetUsername% to %new_lastname%."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: defaults.php:1853
|
1520 |
+
msgid "Previous last name"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: defaults.php:1862
|
1524 |
msgid "User changed nickname for a user"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: defaults.php:1863
|
1528 |
+
msgid "Changed the nickname of the user %TargetUsername% to %new_nickname%."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: defaults.php:1868
|
1532 |
msgid "Previous nickname"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: defaults.php:1877
|
|
|
|
|
|
|
|
|
1536 |
msgid "User changed the display name for a user"
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: defaults.php:1878
|
1540 |
+
msgid "Changed the display name of the user %TargetUsername% to %new_displayname%."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: defaults.php:1883
|
1544 |
msgid "Previous display name"
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: defaults.php:1893, defaults.php:1907
|
|
|
|
|
|
|
|
|
1548 |
msgid "User created an application password"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
+
#: defaults.php:1894
|
1552 |
+
msgid "The application password %friendly_name%."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#: defaults.php:1908
|
1556 |
+
msgid "The application password %friendly_name% for the user %login%."
|
|
|
|
|
|
|
|
|
1557 |
msgstr ""
|
1558 |
|
1559 |
+
#: defaults.php:1922
|
1560 |
msgid "User revoked all application passwords"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: defaults.php:1923
|
1564 |
+
msgid "All application passwords."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: defaults.php:1936
|
1568 |
msgid "User revoked all application passwords for a user"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
+
#: defaults.php:1937
|
1572 |
+
msgid "All application passwords from the user %login%."
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: defaults.php:1950
|
1576 |
msgid "Admin sent a password reset request to a user"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: defaults.php:1951
|
1580 |
+
msgid "Sent a password reset request to the user %login%."
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: defaults.php:1963
|
1584 |
msgid "Multisite User Profiles"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: defaults.php:1967
|
1588 |
msgid "User granted Super Admin privileges"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: defaults.php:1968
|
1592 |
+
msgid "Granted Super Admin privileges to the user %TargetUsername%."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: defaults.php:1981
|
1596 |
msgid "User revoked from Super Admin privileges"
|
1597 |
msgstr ""
|
1598 |
|
1599 |
+
#: defaults.php:1982
|
1600 |
+
msgid "Revoked Super Admin privileges from %TargetUsername%."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: defaults.php:1995
|
1604 |
msgid "Existing user added to a site"
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: defaults.php:1996
|
1608 |
+
msgid "Added user %TargetUsername% to the site %SiteName%."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: defaults.php:2009
|
1612 |
msgid "User removed from site"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: defaults.php:2010
|
1616 |
+
msgid "Removed user %TargetUsername% from the site %SiteName%"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: defaults.php:2012
|
1620 |
msgid "Site role"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: defaults.php:2023
|
1624 |
msgid "New network user created"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: defaults.php:2024
|
1628 |
+
msgid "Created the new network user %NewUserData->Username%."
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: defaults.php:2036
|
1632 |
msgid "Plugins & Themes"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: defaults.php:2037, classes/AuditLogGridView.php:463, classes/AuditLogListView.php:490
|
1636 |
msgid "Plugins"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: defaults.php:2041
|
1640 |
msgid "User installed a plugin"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: defaults.php:2042
|
1644 |
+
msgid "Installed the plugin %Plugin->Name%."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: defaults.php:2044, defaults.php:2057, defaults.php:2070, defaults.php:2083, defaults.php:2188, defaults.php:2201, defaults.php:2214, defaults.php:2289, defaults.php:2302
|
1648 |
msgid "Version"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: defaults.php:2045, defaults.php:2058, defaults.php:2071, defaults.php:2084, defaults.php:2097, defaults.php:2189, defaults.php:2202, defaults.php:2215, defaults.php:2264, defaults.php:2290, defaults.php:2303
|
1652 |
msgid "Install location"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: defaults.php:2054
|
1656 |
msgid "User activated a WordPress plugin"
|
1657 |
msgstr ""
|
1658 |
|
1659 |
+
#: defaults.php:2055
|
1660 |
+
msgid "Activated the plugin %PluginData->Name%."
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: defaults.php:2067
|
1664 |
msgid "User deactivated a WordPress plugin"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
+
#: defaults.php:2068
|
1668 |
+
msgid "Deactivated the plugin %PluginData->Name%."
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: defaults.php:2080
|
1672 |
msgid "User uninstalled a plugin"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: defaults.php:2081
|
1676 |
+
msgid "Uninstalled the plugin %PluginData->Name%."
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: defaults.php:2093
|
1680 |
msgid "User upgraded a plugin"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: defaults.php:2094
|
1684 |
+
msgid "Updated the plugin %PluginData->Name%."
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: defaults.php:2096
|
1688 |
msgid "Updated version"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: defaults.php:2106
|
1692 |
msgid "Plugin created table"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: defaults.php:2107
|
1696 |
+
msgid "The plugin %Plugin->Name% created this table in the database."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: defaults.php:2109, defaults.php:2121, defaults.php:2133, defaults.php:2227, defaults.php:2239
|
1700 |
msgid "Table"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: defaults.php:2118
|
|
|
|
|
|
|
|
|
1704 |
msgid "Plugin modified table structure"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: defaults.php:2119
|
1708 |
+
msgid "The plugin %Plugin->Name% modified the structure of a database table."
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: defaults.php:2130
|
1712 |
msgid "Plugin deleted table"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: defaults.php:2131
|
1716 |
+
msgid "The plugin %Plugin->Name% deleted this table from the database."
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: defaults.php:2142
|
1720 |
msgid "A plugin created a post"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: defaults.php:2143
|
1724 |
+
msgid "The plugin created the post %PostTitle%."
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: defaults.php:2148, defaults.php:2163, classes/AlertManager.php:1142, classes/AuditLogGridView.php:460, classes/AuditLogListView.php:486
|
1728 |
+
msgid "Plugin"
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: defaults.php:2157
|
1732 |
+
msgid "A plugin deleted a post"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: defaults.php:2158
|
1736 |
+
msgid "A plugin deleted the post %PostTitle%."
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: defaults.php:2172
|
1740 |
+
msgid "User changed a file using the plugin editor"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: defaults.php:2173
|
1744 |
+
msgid "Modified the file %File% with the plugin editor."
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: defaults.php:2181
|
1748 |
msgid "Themes"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: defaults.php:2185
|
1752 |
msgid "User installed a theme"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: defaults.php:2186
|
1756 |
+
msgid "Installed the theme %Theme->Name%."
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: defaults.php:2198
|
1760 |
msgid "User activated a theme"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: defaults.php:2199
|
1764 |
+
msgid "Activated the theme %Theme->Name%."
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: defaults.php:2211
|
1768 |
msgid "User uninstalled a theme"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: defaults.php:2212
|
1772 |
+
msgid "Deleted the theme %Theme->Name%."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: defaults.php:2224
|
1776 |
+
msgid "Theme created tables"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: defaults.php:2225
|
1780 |
+
msgid "The theme %Theme->Name% created this tables in the database."
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: defaults.php:2236
|
1784 |
msgid "Theme modified tables structure"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: defaults.php:2237
|
1788 |
+
msgid "The theme %Theme->Name% modified the structure of this database table"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: defaults.php:2248
|
1792 |
msgid "Theme deleted tables"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: defaults.php:2249
|
1796 |
+
msgid "The theme %Theme->Name% deleted this table from the database."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: defaults.php:2251, defaults.php:2318, defaults.php:2330, defaults.php:2342, defaults.php:2354, defaults.php:2366, defaults.php:2378
|
1800 |
msgid "Tables"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: defaults.php:2260
|
1804 |
msgid "User updated a theme"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: defaults.php:2261
|
1808 |
+
msgid "Updated the theme %Theme->Name%."
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: defaults.php:2263, defaults.php:2432
|
1812 |
msgid "New version"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: defaults.php:2273
|
1816 |
msgid "User changed a file using the theme editor"
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: defaults.php:2274
|
1820 |
+
msgid "Modified the file %Theme%/%File% with the theme editor."
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: defaults.php:2282
|
1824 |
msgid "Themes on Multisite"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: defaults.php:2286
|
1828 |
msgid "Activated theme on network"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: defaults.php:2287
|
1832 |
+
msgid "Network activated the theme %Theme->Name%."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: defaults.php:2299
|
1836 |
msgid "Deactivated theme from network"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: defaults.php:2300
|
1840 |
+
msgid "Network deactivated the theme %Theme->Name%."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: defaults.php:2311
|
1844 |
msgid "Database Events"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: defaults.php:2315
|
1848 |
msgid "Unknown component created tables"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: defaults.php:2316
|
1852 |
+
msgid "An unknown component created these tables in the database."
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: defaults.php:2327
|
1856 |
msgid "Unknown component modified tables structure"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: defaults.php:2328
|
1860 |
+
msgid "An unknown component modified the structure of these database tables."
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: defaults.php:2339
|
1864 |
msgid "Unknown component deleted tables"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: defaults.php:2340
|
1868 |
+
msgid "An unknown component deleted these tables from the database."
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: defaults.php:2351
|
1872 |
msgid "WordPress created tables"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: defaults.php:2352
|
1876 |
+
msgid "WordPress has created these tables in the database."
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: defaults.php:2363
|
1880 |
msgid "WordPress modified tables structure"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: defaults.php:2364
|
1884 |
+
msgid "WordPress modified the structure of these database tables."
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: defaults.php:2375
|
1888 |
msgid "WordPress deleted tables"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: defaults.php:2376
|
1892 |
+
msgid "WordPress deleted these tables from the database."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: defaults.php:2387
|
1896 |
msgid "WordPress & System"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: defaults.php:2388, classes/AlertManager.php:1141, classes/AlertManager.php:1929, classes/AuditLogGridView.php:469, classes/AuditLogListView.php:498, extensions/email-notifications/classes/DailyNotification.php:240, extensions/email-notifications/classes/Notifier.php:639, extensions/reports/classes/Common.php:1258
|
1900 |
msgid "System"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: defaults.php:2392
|
1904 |
msgid "Unknown Error"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: defaults.php:2393
|
1908 |
msgid "An unexpected error has occurred."
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: defaults.php:2398
|
1912 |
msgid "PHP error"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: defaults.php:2399, defaults.php:2405, defaults.php:2411, defaults.php:2417, defaults.php:2423
|
1916 |
msgid "%Message%."
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: defaults.php:2404
|
1920 |
msgid "PHP warning"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: defaults.php:2410
|
1924 |
msgid "PHP notice"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: defaults.php:2416
|
1928 |
msgid "PHP exception"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: defaults.php:2422
|
1932 |
msgid "PHP shutdown error"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: defaults.php:2428
|
1936 |
msgid "WordPress was updated"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: defaults.php:2429
|
1940 |
+
msgid "Updated WordPress."
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: defaults.php:2431
|
1944 |
msgid "Previous version"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: defaults.php:2448
|
1948 |
msgid "Advertising Extensions"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: defaults.php:2449
|
1952 |
msgid "%PromoName% %PromoMessage%"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: defaults.php:2453
|
1956 |
msgid "Activity log plugin"
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: defaults.php:2457
|
1960 |
msgid "Events automatically pruned by system"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: defaults.php:2458
|
1964 |
+
msgid "System automatically deleted %EventCount% events from the activity log."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: defaults.php:2467
|
1968 |
msgid "Reset the plugin's settings to default"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: defaults.php:2468
|
1972 |
+
msgid "Reset the activity log plugin's settings to default."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: defaults.php:2477
|
1976 |
msgid "Purged the activity log"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: defaults.php:2478
|
1980 |
+
msgid "Purged the activity log."
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: defaults.php:2487
|
1984 |
msgid "Some WP Activity Log plugin settings on this site were propagated and overridden from the MainWP dashboard"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: defaults.php:2488
|
1988 |
+
msgid "Some <strong>WP Activity Log</strong> plugin settings on this site were propagated and overridden from the MainWP dashboard."
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: defaults.php:2496
|
1992 |
msgid "WordPress Site Settings"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: defaults.php:2500
|
1996 |
msgid "Option Anyone Can Register in WordPress settings changed"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: defaults.php:2501
|
2000 |
+
msgid "The <strong>Membership</strong> setting <strong>Anyone can register</strong>."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: defaults.php:2510
|
2004 |
msgid "New User Default Role changed"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: defaults.php:2511
|
2008 |
+
msgid "Changed the <strong>New user default role</strong> WordPress setting."
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: defaults.php:2514
|
2012 |
+
msgid "New role"
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: defaults.php:2523
|
2016 |
msgid "WordPress Administrator Notification email changed"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: defaults.php:2524
|
2020 |
+
msgid "Change the <strong>Administrator email address</strong> in the WordPress settings."
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: defaults.php:2526
|
2024 |
msgid "Previous address"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: defaults.php:2527
|
2028 |
msgid "New address"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: defaults.php:2536
|
2032 |
msgid "User changes the WordPress Permalinks"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: defaults.php:2537
|
2036 |
+
msgid "Changed the <strong>WordPress permalinks</strong>."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: defaults.php:2539
|
2040 |
msgid "Previous permalinks"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: defaults.php:2540
|
2044 |
msgid "New permalinks"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: defaults.php:2549
|
2048 |
msgid "Enabled/Disabled the option Discourage search engines from indexing this site"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: defaults.php:2550
|
2052 |
+
msgid "Changed the status of the WordPress setting <strong>Search engine visibility</strong> (Discourage search engines from indexing this site)"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: defaults.php:2559
|
2056 |
msgid "Enabled/Disabled comments on all the website"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: defaults.php:2560
|
2060 |
+
msgid "Changed the status of the WordPress setting <strong>Allow people to submit comments on new posts</strong>."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: defaults.php:2570
|
2064 |
msgid "Enabled/Disabled the option Comment author must fill out name and email"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: defaults.php:2571
|
2068 |
+
msgid "Changed the status of the WordPress setting <strong>.Comment author must fill out name and email</strong>."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: defaults.php:2580
|
2072 |
msgid "Enabled/Disabled the option Users must be logged in and registered to comment"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: defaults.php:2581
|
2076 |
+
msgid "Changed the status of the WordPress setting <strong>Users must be registered and logged in to comment</strong>."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: defaults.php:2590
|
2080 |
msgid "Enabled/Disabled the option to automatically close comments"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: defaults.php:2591
|
2084 |
+
msgid "Changed the status of the WordPress setting <strong>Automatically close comments after %Value% days</strong>."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: defaults.php:2600
|
2088 |
msgid "Changed the value of the option Automatically close comments"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: defaults.php:2601
|
2092 |
+
msgid "Changed the value of the WordPress setting <strong>Automatically close comments after a number of days</strong> to %NewValue%."
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: defaults.php:2612
|
2096 |
msgid "Enabled/Disabled the option for comments to be manually approved"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: defaults.php:2613
|
2100 |
+
msgid "Changed the value of the WordPress setting <strong>Comments must be manualy approved</strong>."
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: defaults.php:2622
|
2104 |
msgid "Enabled/Disabled the option for an author to have previously approved comments for the comments to appear"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: defaults.php:2623
|
2108 |
+
msgid "Changed the value of the WordPress setting <strong>Comment author must have a previously approved comment</strong>."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: defaults.php:2632
|
2112 |
msgid "Changed the number of links that a comment must have to be held in the queue"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: defaults.php:2633
|
2116 |
+
msgid "Changed the value of the WordPress setting <strong>Hold a comment in the queue if it contains links</strong> to %NewValue% links."
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: defaults.php:2644
|
2120 |
msgid "Modified the list of keywords for comments moderation"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: defaults.php:2645
|
2124 |
+
msgid "Modified the list of keywords for comments medoration in WordPress."
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: defaults.php:2654
|
2128 |
msgid "Modified the list of keywords for comments blacklisting"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: defaults.php:2655
|
2132 |
+
msgid "Modified the list of <strong>Disallowed comment keys</strong> (keywords) for comments blacklisting in WordPress."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: defaults.php:2664
|
2136 |
msgid "Option WordPress Address (URL) in WordPress settings changed"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: defaults.php:2665
|
2140 |
+
msgid "Changed the <strong>WordPress address (URL)</strong> tp %new_url%."
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: defaults.php:2676
|
2144 |
msgid "Option Site Address (URL) in WordPress settings changed"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: defaults.php:2677
|
2148 |
+
msgid "Changed the <strong>Site address (URL)</strong> to %new_url%."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: defaults.php:2688
|
2152 |
msgid "Option Your homepage displays in WordPress settings changed"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: defaults.php:2689
|
2156 |
+
msgid "Changed the <strong>Your homepage displays</strong> WordPress setting to %new_homepage%."
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#: defaults.php:2691, defaults.php:2778, defaults.php:2924
|
2160 |
msgid "Previous setting"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: defaults.php:2700
|
|
|
|
|
|
|
|
|
2164 |
msgid "Option homepage in WordPress settings changed"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: defaults.php:2701
|
2168 |
+
msgid "Changed the <strong>Homepage</strong> in the WordPress settings to %new_page%."
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: defaults.php:2703, defaults.php:2715
|
2172 |
msgid "Previous page"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: defaults.php:2712
|
|
|
|
|
|
|
|
|
2176 |
msgid "Option posts page in WordPress settings changed"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: defaults.php:2713
|
2180 |
+
msgid "Changed the <strong> Posts</strong> page in the WordPress settings to %new_page%."
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: defaults.php:2725
|
2184 |
msgid "Option Timezone in WordPress settings changed"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
+
#: defaults.php:2726
|
2188 |
+
msgid "Changed the <strong>Timezone</strong> in the WordPress settings to %new_timezone%."
|
2189 |
msgstr ""
|
2190 |
|
2191 |
+
#: defaults.php:2728
|
2192 |
msgid "Previous timezone"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
+
#: defaults.php:2737
|
|
|
|
|
|
|
|
|
2196 |
msgid "Option Date format in WordPress settings changed"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: defaults.php:2738
|
2200 |
+
msgid "Changed the <strong>Date format</strong> in the WordPress settings to %new_date_format%."
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: defaults.php:2740, defaults.php:2752
|
2204 |
msgid "Previous format"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: defaults.php:2749
|
|
|
|
|
|
|
|
|
2208 |
msgid "Option Time format in WordPress settings changed"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: defaults.php:2750
|
2212 |
+
msgid "Changed the <strong>Time format</strong> in the WordPress settings to %new_time_format%."
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: defaults.php:2762
|
2216 |
msgid "Option Automatic updates setting changed"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: defaults.php:2763
|
2220 |
+
msgid "Changed the <strong>Automatic updates</strong> setting."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: defaults.php:2765
|
2224 |
msgid "New setting status"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: defaults.php:2775
|
2228 |
msgid "Option Site Language setting changed"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: defaults.php:2776
|
2232 |
+
msgid "Changed the <strong>Site Language</strong> to %new_value%."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: defaults.php:2787
|
2236 |
msgid "Multisite Network Sites"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: defaults.php:2788
|
2240 |
msgid "MultiSite"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: defaults.php:2792
|
2244 |
msgid "New site added on the network"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: defaults.php:2793
|
2248 |
+
msgid "Added the new site %SiteName% to the network."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: defaults.php:2795, defaults.php:2807, defaults.php:2819, defaults.php:2831, defaults.php:2843, defaults.php:2855
|
2252 |
msgid "URL"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
+
#: defaults.php:2804
|
2256 |
msgid "Existing site archived"
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: defaults.php:2805
|
2260 |
+
msgid "Archived the site %SiteName% on the network."
|
2261 |
msgstr ""
|
2262 |
|
2263 |
+
#: defaults.php:2816
|
2264 |
msgid "Archived site has been unarchived"
|
2265 |
msgstr ""
|
2266 |
|
2267 |
+
#: defaults.php:2817
|
2268 |
+
msgid "Unarchived the site %SiteName%."
|
2269 |
msgstr ""
|
2270 |
|
2271 |
+
#: defaults.php:2828
|
2272 |
msgid "Deactivated site has been activated"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: defaults.php:2829
|
2276 |
+
msgid "Activated the site %SiteName% on the network."
|
2277 |
msgstr ""
|
2278 |
|
2279 |
+
#: defaults.php:2840
|
2280 |
msgid "Site has been deactivated"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
+
#: defaults.php:2841
|
2284 |
+
msgid "Deactiveated the site %SiteName% on the network."
|
2285 |
msgstr ""
|
2286 |
|
2287 |
+
#: defaults.php:2852
|
2288 |
msgid "Existing site deleted from network"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
+
#: defaults.php:2853
|
2292 |
+
msgid "The site: %SiteName%."
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: defaults.php:2864
|
2296 |
msgid "Allow site administrators to add new users to their sites settings changed"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: defaults.php:2865
|
2300 |
+
msgid "Changed the status of the network setting <strong>Allow site administrators to add new users to their sites</strong>."
|
2301 |
msgstr ""
|
2302 |
|
2303 |
+
#: defaults.php:2874
|
2304 |
msgid "Site upload space settings changed"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: defaults.php:2875
|
2308 |
+
msgid "Changed the status of the network setting <strong>Site upload space</strong> (to limit space allocated for each site's upload directory)."
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: defaults.php:2884
|
2312 |
msgid "Site upload space file size settings changed"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: defaults.php:2885
|
2316 |
+
msgid "Changed the file size in the <strong>Site upload space</strong> network setting to %new_value%."
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: defaults.php:2887
|
2320 |
msgid "Previous size (MB)"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: defaults.php:2896
|
|
|
|
|
|
|
|
|
2324 |
msgid "Site Upload file types settings changed"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: defaults.php:2897
|
2328 |
+
msgid "Changed the network setting <strong>Upload file types (list of allowed file types)</strong>."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: defaults.php:2909
|
2332 |
msgid "Site Max upload file size settings changed"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: defaults.php:2910
|
2336 |
+
msgid "Changed the <strong>Max upload file size</strong> network setting to %new_value%."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: defaults.php:2912
|
2340 |
msgid "Previous size (KB)"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: defaults.php:2921
|
|
|
|
|
|
|
|
|
2344 |
msgid "Allow new registrations settings changed"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: defaults.php:2922
|
2348 |
+
msgid "Changed the <strong>Allow new registrations</strong> setting to %new_setting%."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: defaults.php:2938, classes/Views/Settings.php:99
|
2352 |
msgid "File Changes"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: defaults.php:2939
|
2356 |
msgid "Monitor File Changes"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: defaults.php:2943
|
2360 |
msgid "Dummy"
|
2361 |
msgstr ""
|
2362 |
|
2488 |
msgid "getting started guide"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: wp-security-audit-log.php:1925
|
2492 |
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."
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: wp-security-audit-log.php:1944
|
2496 |
msgid "Every 6 hours"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: wp-security-audit-log.php:1948
|
2500 |
msgid "Every 45 minutes"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: wp-security-audit-log.php:1952
|
2504 |
msgid "Every 30 minutes"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: wp-security-audit-log.php:1956
|
2508 |
msgid "Every 15 minutes"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: wp-security-audit-log.php:1960
|
2512 |
msgid "Every 10 minutes"
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: wp-security-audit-log.php:1964
|
2516 |
msgid "Every 1 minute"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
#. translators: 1. Deprecated method name 2. Version since deprecated
|
2520 |
+
#: wp-security-audit-log.php:1978
|
2521 |
msgid "Method %1$s is deprecated since version %2$s!"
|
2522 |
msgstr ""
|
2523 |
|
2568 |
msgid "Database"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: classes/AlertManager.php:1145, classes/AlertManager.php:1149
|
2572 |
+
msgid "File"
|
2573 |
+
msgstr ""
|
2574 |
+
|
2575 |
#: classes/AlertManager.php:1146
|
2576 |
msgid "Tag"
|
2577 |
msgstr ""
|
2580 |
msgid "Comment"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: classes/AlertManager.php:1148
|
2584 |
+
msgid "Setting"
|
2585 |
+
msgstr ""
|
2586 |
+
|
2587 |
#: classes/AlertManager.php:1150
|
2588 |
msgid "System Setting"
|
2589 |
msgstr ""
|
2612 |
msgid "Menu"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: classes/AlertManager.php:1157
|
2616 |
+
msgid "Theme"
|
2617 |
+
msgstr ""
|
2618 |
+
|
2619 |
#: classes/AlertManager.php:1158
|
2620 |
msgid "Activity log"
|
2621 |
msgstr ""
|
2809 |
msgid "Info"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: classes/AuditLogGridView.php:295, classes/AuditLogListView.php:307, classes/AuditLogListView.php:339, extensions/email-notifications/classes/Common.php:1124, extensions/email-notifications/classes/Common.php:1185, extensions/external-db/classes/Common.php:949, extensions/search/classes/Filters/SiteFilter.php:29
|
2813 |
msgid "Site"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: classes/AuditLogGridView.php:298, classes/AuditLogGridView.php:321, classes/AuditLogListView.php:310, classes/AuditLogListView.php:348, extensions/email-notifications/classes/Common.php:1129, extensions/email-notifications/classes/Common.php:1159, extensions/reports/classes/CsvReportGenerator.php:92, extensions/reports/classes/HtmlReportGenerator.php:254
|
2817 |
msgid "Message"
|
2818 |
msgstr ""
|
2819 |
|
4011 |
msgid "Date & Time"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: classes/Views/Settings.php:1088, extensions/email-notifications/classes/Common.php:1093, extensions/email-notifications/classes/Common.php:1127, extensions/email-notifications/classes/Common.php:1156, extensions/search/classes/Filters/AlertFilter.php:26, extensions/search/classes/Filters/AlertFilter.php:51
|
4015 |
msgid "Event ID"
|
4016 |
msgstr ""
|
4017 |
|
4701 |
msgid "Use event specific email template"
|
4702 |
msgstr ""
|
4703 |
|
4704 |
+
#: extensions/email-notifications/classes/AddNotification.php:336, extensions/email-notifications/classes/EditNotification.php:429, extensions/external-db/classes/Connections.php:95, extensions/external-db/classes/Mirroring.php:123
|
4705 |
+
msgid "Name"
|
4706 |
+
msgstr ""
|
4707 |
+
|
4708 |
#: extensions/email-notifications/classes/AddNotification.php:337, extensions/email-notifications/classes/EditNotification.php:430, extensions/email-notifications/classes/Notifications.php:1857, extensions/email-notifications/classes/Notifications.php:1868
|
4709 |
msgid "Title"
|
4710 |
msgstr ""
|
4882 |
msgid "Event Object"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: extensions/email-notifications/classes/Common.php:1089, extensions/email-notifications/classes/Common.php:1153
|
4886 |
msgid "Notification {title} on website {site} triggered"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: extensions/email-notifications/classes/Common.php:1090, extensions/email-notifications/classes/Common.php:1154
|
4890 |
msgid "Notification <strong>{title}</strong> was triggered. Below are the notification details:"
|
4891 |
msgstr ""
|
4892 |
|
4894 |
msgid "Website"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: extensions/email-notifications/classes/Common.php:1094, extensions/email-notifications/classes/Common.php:1157, extensions/reports/classes/CsvReportGenerator.php:86, extensions/reports/classes/CsvReportGenerator.php:70, extensions/reports/classes/CsvReportGenerator.php:200, extensions/reports/classes/HtmlReportGenerator.php:248, extensions/reports/classes/HtmlReportGenerator.php:224, extensions/reports/classes/HtmlReportGenerator.php:362, extensions/search/classes/FilterManager.php:474, extensions/user-sessions/classes/View/Sessions.php:140, extensions/user-sessions/classes/View/Sessions.php:294
|
4898 |
msgid "Username"
|
4899 |
msgstr ""
|
4900 |
|
4910 |
msgid "These email notifications are sent with <a href=\"http://wpactivitylog.com\">WP Activity Log</a>, the most comprehensive WordPress activity log plugin solution."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: extensions/email-notifications/classes/Common.php:1125, extensions/email-notifications/classes/Common.php:1186
|
4914 |
msgid "User/Role"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: extensions/email-notifications/classes/Common.php:1128
|
4918 |
+
msgid "Event type"
|
4919 |
+
msgstr ""
|
4920 |
+
|
4921 |
+
#: extensions/email-notifications/classes/Common.php:1158, extensions/search/classes/FilterManager.php:486, extensions/search/classes/Filters/userrolefilter.php:49, extensions/search/classes/Filters/userrolefilter.php:87, extensions/user-sessions/classes/View/Sessions.php:299
|
4922 |
msgid "User Role"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: extensions/email-notifications/classes/Common.php:1160
|
4926 |
msgid "Generated On"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: extensions/email-notifications/classes/Common.php:1162
|
4930 |
msgid "Monitoring of WordPress and Email Notifications provided by <a href=\"http://wpactivitylog.com\">WP Activity Log, WordPress most comprehensive audit trail plugin</a>."
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: extensions/email-notifications/classes/Common.php:1187
|
4934 |
msgid "Event"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: extensions/email-notifications/classes/Common.php:1202
|
4938 |
msgid "Subject "
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: extensions/email-notifications/classes/Common.php:1211
|
4942 |
msgid "Body "
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: extensions/email-notifications/classes/Common.php:1214
|
4946 |
msgid "HTML is accepted. Available template tags:"
|
4947 |
msgstr ""
|
4948 |
|
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: 4.4
|
8 |
Tested up to: 5.7
|
9 |
-
Stable tag: 4.2.
|
10 |
Requires PHP: 5.5
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
@@ -206,6 +206,12 @@ Please refer to our [support pages](https://wpactivitylog.com/support/?utm_sourc
|
|
206 |
|
207 |
== Changelog ==
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
= 4.2.1 (2021-03-17) =
|
210 |
|
211 |
Release notes: [WP Activity Log 4.2.1: Maintenance update & new event IDs](https://wpactivitylog.com/wsal-4-2-1/)
|
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: 4.4
|
8 |
Tested up to: 5.7
|
9 |
+
Stable tag: 4.2.2
|
10 |
Requires PHP: 5.5
|
11 |
|
12 |
The #1 user-rated activity log plugin. Keep a comprehensive log of the changes that happen on your site with this easy to use plugin.
|
206 |
|
207 |
== Changelog ==
|
208 |
|
209 |
+
= 4.2.2 (2021-04-22) =
|
210 |
+
|
211 |
+
**Improvements**
|
212 |
+
* Redefined and improved the definitions of the [activity log events](https://wpactivitylog.com/support/kb/list-wordpress-activity-log-event-ids/).
|
213 |
+
* Improved text for all the activity log events.
|
214 |
+
|
215 |
= 4.2.1 (2021-03-17) =
|
216 |
|
217 |
Release notes: [WP Activity Log 4.2.1: Maintenance update & new event IDs](https://wpactivitylog.com/wsal-4-2-1/)
|
wp-security-audit-log.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: http://wpactivitylog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
-
* Version: 4.2.
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: https://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
@@ -47,7 +47,7 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
47 |
*
|
48 |
* @var string
|
49 |
*/
|
50 |
-
public $version = '4.2.
|
51 |
|
52 |
/**
|
53 |
* Plugin constants.
|
@@ -1415,6 +1415,9 @@ if ( ! function_exists( 'wsal_freemius' ) ) {
|
|
1415 |
// set some initial plugins settings (only the ones that bypass the regular settings retrieval at some
|
1416 |
// point) - e.g. disabled events
|
1417 |
$this->SetGlobalSetting( 'disabled-alerts', implode( ',', $this->settings()->always_disabled_alerts ) );
|
|
|
|
|
|
|
1418 |
}
|
1419 |
|
1420 |
// Do version-to-version specific changes.
|
4 |
* Plugin URI: http://wpactivitylog.com/
|
5 |
* Description: Identify WordPress security issues before they become a problem. Keep track of everything happening on your WordPress including WordPress users activity. Similar to Windows Event Log and Linux Syslog, WP Activity Log generates a security alert for everything that happens on your WordPress blogs and websites. Use the Activity log viewer included in the plugin to see all the security alerts.
|
6 |
* Author: WP White Security
|
7 |
+
* Version: 4.2.2
|
8 |
* Text Domain: wp-security-audit-log
|
9 |
* Author URI: https://www.wpwhitesecurity.com/
|
10 |
* License: GPL2
|
47 |
*
|
48 |
* @var string
|
49 |
*/
|
50 |
+
public $version = '4.2.2';
|
51 |
|
52 |
/**
|
53 |
* Plugin constants.
|
1415 |
// set some initial plugins settings (only the ones that bypass the regular settings retrieval at some
|
1416 |
// point) - e.g. disabled events
|
1417 |
$this->SetGlobalSetting( 'disabled-alerts', implode( ',', $this->settings()->always_disabled_alerts ) );
|
1418 |
+
|
1419 |
+
// we stop here as no further updates are needed for a freshly installed plugin
|
1420 |
+
return;
|
1421 |
}
|
1422 |
|
1423 |
// Do version-to-version specific changes.
|