mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-02-14 17:21:35 +01:00
46 lines
1.5 KiB
PHP
Executable File
46 lines
1.5 KiB
PHP
Executable File
<?php
|
|
//Español (Oficial)
|
|
if (!defined('T_VERSION')){
|
|
define('T_VERSION',1);
|
|
}
|
|
|
|
//(indexpage.twig) In index, title
|
|
$T_['statdif1'] = 'Estado de los diferentes servicios';
|
|
$T_['name'] = 'Nombre';
|
|
$T_['group'] = 'Grupo';
|
|
$T_['status'] = 'Estado';
|
|
$T_['status_uptime'] = 'Estado (Uptime)';
|
|
$T_['failed'] = 'Erróneo';
|
|
$T_['last_check'] = 'Última comprobación';
|
|
$T_['last_err'] = 'Último error';
|
|
$T_['last_news'] = 'Últimas noticias';
|
|
//(indexpage.twig) [NEXT 6] Marking as good, problems or other in status.
|
|
$T_['status_right'] = 'Todo correcto';
|
|
$T_['status_lproblems'] = 'Problemas de rendimiento';
|
|
$T_['status_problems'] = 'Problemas';
|
|
$T_['status_outofserv'] = 'Fuera de servicio';
|
|
$T_['status_maintenance'] = 'En mantenimiento';
|
|
$T_['status_empty'] = 'Sin registros';
|
|
$T_['no_errs'] = 'Sin errores';
|
|
$T_['add'] = 'Añadir';
|
|
$T_['edit'] = 'Editar';
|
|
$T_['delete'] = 'Borrar';
|
|
$T_['more_opts'] = 'Más opciones';
|
|
$T_['check_type'] = 'Tipo de check';
|
|
//(admin panel)[NEXT 6] Left menu of panel
|
|
$T_['home'] = 'Inicio';
|
|
$T_['checks'] = 'Checks';
|
|
$T_['groups'] = 'Grupos';
|
|
$T_['news'] = 'Noticias';
|
|
$T_['settings'] = 'Opciones';
|
|
$T_['users'] = 'Usuarios';
|
|
//[NEXT 5]Check texts
|
|
$T_['PING_IP'] = 'Ping a IP:Puerto';
|
|
$T_['HTTP_CODE'] = 'Código HTTP';
|
|
$T_['VISIT_COUNT'] = 'Contador de visitas';
|
|
$T_['DATABASE'] = 'Conexión a base de datos';
|
|
$T_['JSON_API'] = 'JSON API';
|
|
$T_['add_grp_to_add_chk'] = 'Añade un grupo para empezar a añadir checks';
|
|
$T_['view_hist'] = 'Ver histórico';
|
|
$T_['lastest_fails'] = 'Ultimos errores';
|
|
?>
|