Subversion Repositories wimsdev

Rev

Rev 3422 | Rev 4027 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3422 Rev 3985
Line 1... Line 1...
1
!set wims_module_log=error: $error
1
!set wims_module_log=error: $error
2
 
2
 
3
<b>Error</b>.
3
<b>$wims_name_Error</b>.
4
 
-
 
5
!if bad_auth iswordof $error
-
 
6
 Fracaso de autenticación. Vuelve a intentar.
-
 
7
 !exit
-
 
8
!endif
-
 
9
 
-
 
10
!if bad_pass iswordof $error
-
 
11
 Mala contraseña: debe tener entre 4 y 16 caracteres,
-
 
12
 cartas y cifras solamente. ¡Y la contraseña repetida debe ser idéntica
-
 
13
 primero! Intente aún.
-
 
14
 !exit
-
 
15
!endif
-
 
16
 
4
 
17
!if empty_data iswordof $error
5
!if empty_data iswordof $error
18
 Quiere cumplir la definición de
6
 Quiere cumplir la definición de
19
 <b><em><font color="red">$(name_$empty_data)</font></em></b>
7
 <b><em><font color="red">$(name_$empty_data)</font></em></b>
20
 de su módulo.
8
 de su módulo.
21
 !exit
9
 !exit
22
!endif
10
!endif
23
 
11
 
24
!if bad_fname iswordof $error
12
!if bad_fname iswordof $error
25
 Nombre de fichero ilegal. Quiere elegir otro nombre para su fichero.
13
 Nombre de fichero ilegal. Quiere elegir otro nombre para su fichero.
26
 !exit
14
 !exit
27
!endif
15
!endif
28
 
16
 
29
!if binary_file iswordof $error
17
!if binary_file iswordof $error
30
 Fichero binario prohibido.
18
 Fichero binario prohibido.
31
 !exit
19
 !exit
32
!endif
20
!endif
33
 
21
 
34
!if illegal_filedesc iswordof $error
22
!if illegal_filedesc iswordof $error
35
 No pueden poner sino definiciones directas en filedesc.
23
 No pueden poner sino definiciones directas en filedesc.
36
 !exit
24
 !exit
37
!endif
25
!endif
38
 
26
 
39
!if badoriginal iswordof $error
27
!if badoriginal iswordof $error
40
 Este módulo no puede copiarse.
28
 Este módulo no puede copiarse.
Line 56... Line 44...
56
 Imposible de copiar el módulo fuente, ya que contiene vínculos simbólicos.
44
 Imposible de copiar el módulo fuente, ya que contiene vínculos simbólicos.
57
 !exit
45
 !exit
58
!endif
46
!endif
59
 
47
 
60
!msg $error
48
!msg $error
61
 
-