Subversion Repositories wimsdev

Rev

Rev 2071 | Rev 3422 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
23 reyssat 1
!set wims_module_log=error: $error
2
 
3
<b>错误</b>.
4
 
5
!if bad_auth iswordof $error
6
身份验证错. 请重试.
7
 !exit
8
!endif
9
 
10
!if bad_pass iswordof $error
11
不好的密码: 它只能由数字或英文字母组成, 含4至16个字符.
12
重复的密码必须与第一个相同! 请再试.
13
 !exit
14
!endif
15
 
16
!if empty_data iswordof $error
17
请填写你的模块的
18
 <b><em><font color=red>$(name_$empty_data)</font></em></b>
19
的定义.
20
 !exit
21
!endif
22
 
23
!if bad_fname iswordof $error
24
非法文件名. 请为文件另取一个名字.
25
 !exit
26
!endif
27
 
2071 zjchen 28
!if binary_file iswordof $error
29
 这里不允许二进制文件.
30
 !exit
31
!endif
32
 
23 reyssat 33
!if illegal_filedesc iswordof $error
34
这里只能给出filedesc的定义, 不能放别的东西.
35
 !exit
36
!endif
37
 
38
!if badoriginal iswordof $error
39
此模块不能复制.
40
 !exit
41
!endif
42
 
43
!if clash iswordof $error
44
目标模块已存在.
45
 !exit
46
!endif
47
 
48
!if badtarget iswordof $error
49
目标模块地址不合要求: 太长, 太短, 不完整或非法字符.
50
 !exit
51
!endif
52
 
53
!if symlink iswordof $error
54
源模块不能复制, 因为它包含符号链接.
55
 !exit
56
!endif
57
 
58
!msg $error
59