You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
891 B
45 lines
891 B
2 years ago
|
import { Lang } from 'noob-mengyxu';
|
||
|
|
||
|
export default class En extends Lang.En {
|
||
|
table = {
|
||
|
title: 'Table demo',
|
||
|
props: [
|
||
|
'Case name',
|
||
|
'Task name',
|
||
|
'User name',
|
||
|
'Log content',
|
||
|
'Create time',
|
||
|
],
|
||
|
};
|
||
|
form = {
|
||
|
title: 'Form Example',
|
||
|
input: 'Input',
|
||
|
select: 'Select',
|
||
|
datePicker: 'Date picker',
|
||
|
pass: 'The verification passed',
|
||
|
bishu: 'Must enter',
|
||
|
bixuan: 'Must select',
|
||
|
maxLen: 'Max length',
|
||
|
char: 'Character',
|
||
|
num: 'Integer',
|
||
|
hex: 'Hexadecimal',
|
||
|
lan: 'Longitude',
|
||
|
lat: 'Latitude',
|
||
|
email: 'Email',
|
||
|
phone: 'Phone number',
|
||
|
idCard: 'ID card',
|
||
|
pwd: 'Simple password',
|
||
|
password: 'Password',
|
||
|
};
|
||
|
menu = {
|
||
|
operator: 'Operator',
|
||
|
home: 'Home',
|
||
|
base: 'General',
|
||
|
table: 'Table',
|
||
|
form: 'Form',
|
||
|
tool: 'Tool',
|
||
|
terminal: 'Terminal',
|
||
|
color: 'Color',
|
||
|
};
|
||
|
}
|