blob: e98c70c846cc958adc1ffb9b8c91fa650c68360e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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_WXP"]="Windows";
$TbMsg["STATUS_VDI"]="Virtual";
// 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";
|