1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-14 17:21:35 +01:00
Files
CheckServer/assets/translations/en.php
2017-10-30 22:59:39 +01:00

39 lines
1.3 KiB
PHP
Executable File

<?php
//English (Use as a reference) - Maybe grammar can be fixed
define('T_ENGVERSION',1);
//(indexpage.twig) In index, title
$T_['statdif1'] = 'Status of different checks';
$T_['name'] = 'Name';
$T_['status'] = 'Status';
$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 4]Check texts
$T_['PING_IP'] = 'Ping to IP:Port';
$T_['HTTP_CODE'] = 'Http code';
$T_['VISIT_COUNT'] = 'Visit counter';
$T_['DATABASE'] = 'Database check';
$T_['add_grp_to_add_chk'] = 'Add a group for start adding checks';
?>