1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-15 17:51:39 +01:00

First commit. Check if all is uploaded well.

This commit is contained in:
Kevin Puertas
2017-10-30 22:59:39 +01:00
parent f88dceff1b
commit 6b38aa6cf8
247 changed files with 27230 additions and 0 deletions

39
assets/translations/en.php Executable file
View File

@@ -0,0 +1,39 @@
<?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';
?>