1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-03-02 17:03:45 +01:00
This commit is contained in:
2018-01-15 12:47:23 +01:00
parent 97ac06b224
commit a478f8a587
9 changed files with 16 additions and 9 deletions

View File

@@ -34,8 +34,9 @@
{% if check.uptime != -1 %}{#Only if records exists#}
<td>
<span class='{{check.statusColor}}' data-tooltip='Type of check: {{check.nameCheck}}' data-tooltip-position='top'>{{check.statusText}}</span>
<span class='{{check.statusColor}}' data-tooltip='Type of check: {{T_[check.nameCheck]}}' data-tooltip-position='top'>{{check.statusText}}</span> {# Use T_[Var] to merge var to array #}
({{ check.uptime}}%)
}
</td>
<td>
{{check.dateLastChk}} -

View File

@@ -1,6 +1,8 @@
<?php
//English (Use as a reference) - Maybe grammar can be fixed
define('T_ENGVERSION',1);
if (!defined('T_ENGVERSION')){
define('T_ENGVERSION',1);
}
//(indexpage.twig) In index, title
$T_['statdif1'] = 'Status of different checks';

View File

@@ -1,6 +1,8 @@
<?php
//Español (Oficial)
define('T_VERSION',1);
if (!defined('T_VERSION')){
define('T_VERSION',1);
}
//(indexpage.twig) In index, title
$T_['statdif1'] = 'Estado de los diferentes servicios';