blob: aab35ee902156d63f9f560c3134951349a63a5c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php
// __________________________________________________
//
// Fichero de idiomas php: acceso_esp.php
// Idioma: Español
// __________________________________________________
// Mensajes de error.
$TbErr=array();
$TbErr[0]="NO ERRORS";
$TbErr[1]="Attention: You must access the application via the homepage";
$TbErr[2]="Attention: The application not have access to the database server";
$TbErr[3]="Attention: There are problems to retrieve the record, it may have been removed";
$TbErr[4]="Attention: You do not have access to this application";
// Mensajes.
$TbMsg=array();
$TbMsg["ACCESS_TITLE"]="OpenGnsys: Labs web administration";
$TbMsg["ACCESS_HEADING"]="Computer Labs Management";
$TbMsg["ACCESS_SUBHEAD"]="Administrators Access";
$TbMsg["ACCESS_USERNAME"]="Username";
$TbMsg["ACCESS_PASSWORD"]="Password";
$TbMsg["ACCESS_ORGUNIT"]="Organitational Unit";
$TbMsg["ACCESS_OK"]="OK";
$TbMsg["ACCESS_CHOOSE"]="Choose";
$TbMsg["ACCESS_NOUSER"]="You must enter a username";
$TbMsg["ACCESS_NOPASS"]="You must enter a password";
$TbMsg["ACCESS_NOUNIT"]='You have not entered any Organizational Unit.\nYou will NOT have access to the system unless that you are a main administrator of the Application.\nDo you want to access with this profile?';
$TbMsg["ACCESS_ALLOWED"]='Allowed access. Please wait ...';
$TbMsg["ACCESS_ERROR"]='Access error';
$TbMsg["ACCESS_UNKNOWNERROR"]='Unknown error';
$TbMsg["ACCESS_NOFRAMES"]='Sorry, your browser does not handle frames.';
?>
|