blob: b1fce40fe9a2f7fc0b739c604be7ec2173edb49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
//______________________________________________
//
// Fichero de idiomas php: estados_esp.php
// Idioma: Español
//______________________________________________
if (empty ($TbMsg)) $TbMsg=array();
$TbMsg["STATUS_BSY"]="Ocupado";
$TbMsg["STATUS_INI"]="Iniciando";
$TbMsg["STATUS_OFF"]="Apagado";
$TbMsg["STATUS_OPG"]="OpenGnsys";
$TbMsg["STATUS_LNX"]="GNU/Linux";
$TbMsg["STATUS_MNT"]="Mantenimiento";
$TbMsg["STATUS_VDI"]="Virtual";
$TbMsg["STATUS_WXP"]="Windows";
// Estados nuevo agente OGAgent.
$TbMsg["STATUS_LNXS"]="Sesión GNU/Linux";
$TbMsg["STATUS_OSX"]="macOS";
$TbMsg["STATUS_WIN"]="Windows";
$TbMsg["STATUS_WINS"]="Sesión Windows";
|