mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-02-14 09:11:34 +01:00
46 lines
1.5 KiB
PHP
Executable File
46 lines
1.5 KiB
PHP
Executable File
<?php
|
|
//English (Use as a reference) - Maybe grammar can be fixed
|
|
if (!defined('T_ENGVERSION')){
|
|
define('T_ENGVERSION',1);
|
|
}
|
|
|
|
//(indexpage.twig) In index, title
|
|
$T_['statdif1'] = 'Status of different checks';
|
|
$T_['name'] = 'Name';
|
|
$T_['group'] = 'Group';
|
|
$T_['status'] = 'Status';
|
|
$T_['status_uptime'] = 'Status (Uptime)';
|
|
$T_['failed'] = 'Failed';
|
|
$T_['last_check'] = 'Last check';
|
|
$T_['last_err'] = 'Last error';
|
|
$T_['last_news'] = 'Lastest news';
|
|
//(indexpage.twig)[NEXT 6] Marking as good, problems or other in status.
|
|
$T_['status_right'] = 'Well';
|
|
$T_['status_lproblems'] = 'Maybe some light fails';
|
|
$T_['status_problems'] = 'Some outages';
|
|
$T_['status_outofserv'] = 'Out of service';
|
|
$T_['status_maintenance'] = 'In maintenance';
|
|
$T_['status_empty'] = 'No checks yet';
|
|
$T_['no_errs'] = 'No errors';
|
|
$T_['add'] = 'Add';
|
|
$T_['edit'] = 'Edit';
|
|
$T_['delete'] = 'Delete';
|
|
$T_['more_opts'] = 'More options';
|
|
$T_['check_type'] = 'Type of check';
|
|
//(admin panel)[NEXT 6] Left menu of panel
|
|
$T_['home'] = 'Home';
|
|
$T_['checks'] = 'Checks';
|
|
$T_['groups'] = 'Groups';
|
|
$T_['news'] = 'News';
|
|
$T_['settings'] = 'Settings';
|
|
$T_['users'] = 'Users';
|
|
//[NEXT 5]Check texts
|
|
$T_['PING_IP'] = 'Ping to IP:Port';
|
|
$T_['HTTP_CODE'] = 'Http code';
|
|
$T_['VISIT_COUNT'] = 'Visit counter';
|
|
$T_['DATABASE'] = 'Database check';
|
|
$T_['JSON_API'] = 'JSON API';
|
|
$T_['add_grp_to_add_chk'] = 'Add a group for start adding checks';
|
|
$T_['view_hist'] = 'View history';
|
|
$T_['lastest_fails'] = 'Lastest fails';
|
|
?>
|