File tree Expand file tree Collapse file tree 3 files changed +19
-3
lines changed
aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Localization/SourceFiles Expand file tree Collapse file tree 3 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 61
61
<text name =" PasswordRequireNonAlphanumeric" >密码至少需要包含一个特殊字符(非字母或数字的字符).</text >
62
62
<text name =" PasswordRequireUppercase" >密码至少需要一位是A到Z的大写字母.</text >
63
63
<text name =" PasswordTooShort" >密码长度太短</text >
64
+
65
+ <text name =" UserName" >用户名</text >
66
+ <text name =" Name" >名称</text >
67
+ <text name =" IsActive" >是否启用</text >
68
+ <text name =" LastLoginTime" >最近登陆时间</text >
69
+ <text name =" RoleName" >角色名</text >
70
+ <text name =" DisplayName" >显示名</text >
71
+ <text name =" Description" >描述</text >
72
+ <text name =" IsStatic" >是否内置</text >
73
+
74
+ <text name =" All" >全部</text >
75
+ <text name =" Actived" >启用</text >
76
+ <text name =" NoActive" >未启用</text >
77
+
78
+ <text name =" Yes" >是</text >
79
+ <text name =" No" >否</text >
64
80
</texts >
65
81
</localizationDictionary >
Original file line number Diff line number Diff line change 107
107
},{
108
108
title:this .L (' IsStatic' ),
109
109
render :(h : any ,params : any )=> {
110
- return h (' span' ,params .row .isStatic ? ' 是 ' : ' 否 ' )
110
+ return h (' span' ,params .row .isStatic ? this . L ( ' Yes ' ) : this . L ( ' No ' ) )
111
111
}
112
112
},{
113
113
title:this .L (' Actions' ),
Original file line number Diff line number Diff line change 10
10
</FormItem >
11
11
</Col >
12
12
<Col span =" 8" >
13
- <FormItem :label =" L('TenantName ')+':'" style =" width :100% " >
13
+ <FormItem :label =" L('Name ')+':'" style =" width :100% " >
14
14
<Input v-model =" filters[0].Value" ></Input >
15
15
</FormItem >
16
16
</Col >
112
112
title:this .L (' TenancyName' ),
113
113
key:' tenancyName'
114
114
},{
115
- title:this .L (' TenantName ' ),
115
+ title:this .L (' Name ' ),
116
116
key:' name'
117
117
},{
118
118
title:this .L (' IsActive' ),
You can’t perform that action at this time.
0 commit comments