mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-03-02 17:03:45 +01:00
Fixes
This commit is contained in:
@@ -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}} -
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user