add contents

This commit is contained in:
Trevor Batley
2025-10-09 15:04:29 +11:00
parent 170362eec1
commit bce7dd054a
2537 changed files with 301282 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
Attention!
The number of recent failed login attempts has exceeded the configured limit (@THRESHOLD@ in @INTERVAL@ minutes)!
This is the @SEQUENCE@. warning issued at @NOW@.
In case this turns out to be part of an ongoing sequence, you will receive the next alert on @NEXT_ALERT@.
You can investigate the issue by logging into the wiki and checking the logs in the admin area.

View File

@@ -0,0 +1,9 @@
Attention!
The number of recent logins has exceeded the configured limit (@THRESHOLD@ in @INTERVAL@ minutes)!
This is the @SEQUENCE@. warning issued at @NOW@.
In case this turns out to be part of an ongoing sequence, you will receive the next alert on @NEXT_ALERT@.
You can investigate the issue by logging into the wiki and checking the logs in the admin area.

View File

@@ -0,0 +1,3 @@
====== Weekly User and Admin Activity ======
This screen displays the following activities during the last 7 days: user logins and logouts, as well as usage of admin tools. You can use the navigation buttons at the bottom of the screen to display earlier weeks.

View File

@@ -0,0 +1,25 @@
<?php
$lang['menu'] = 'Weekly user and admin activity';
$lang['date'] = 'Date';
$lang['ip'] = 'IP Address';
$lang['action'] = 'Action';
$lang['range'] = 'Displayed date range:';
$lang['off'] = 'logged off';
$lang['autologoff'] = 'has been logged out automatically';
$lang['in'] = 'logged in permanently';
$lang['tin'] = 'logged in temporarily';
$lang['fail'] = 'failed login attempt';
$lang['data'] = 'Data';
$lang['submit'] = 'Apply filter';
$lang['filter_auth_ok'] = 'User logins and logoffs';
$lang['filter_auth_error'] = 'Failed login attempts';
$lang['filter_admin'] = 'Admin';
$lang['filter_other'] = 'Other';
$lang['email_max_success_logins_subject'] = 'Alert: Too many logins';
$lang['email_max_failed_logins_subject'] = 'Alert: Too many failed login attempts';
$lang['email_report_subject'] = 'Monthly log report';

View File

@@ -0,0 +1,11 @@
Usage Report for Last Month
Logins
* successful logins: @@auth_ok@@
* failed login attempts: @@auth_fail@@
* number of logged in users: @@users@@
Admin Tools
@@admin_pages@@

View File

@@ -0,0 +1,10 @@
<?php
$lang['login_success_max'] = 'When the number of logins per configured interval (login_success_interval) exceeds this number, an admin should be notified';
$lang['login_success_interval'] = 'Interval to check the number of recent successful logins, in minutes';
$lang['login_success_email'] = 'Email to send notifications about too many recent logins';
$lang['login_failed_max'] = 'When the number of failed logins attempt per configured interval (login_failed_interval) exceeds this number, an admin should be notified';
$lang['login_failed_interval'] = 'Interval to check the number of recent failed login attempts, in minutes';
$lang['login_failed_email'] = 'Email to send notifications about too many failed logins';
$lang['report_email'] = 'Email to send monthly reports to (beginning of every month)';
$lang['admin_date_format'] = 'Date format to use in admin list instead of the global configuration (see PHP <a href="http://php.net/strftime">strftime</a> function)';