* [bug#56820] Add notic lang.

This commit is contained in:
liyang
2024-11-11 08:15:12 +08:00
committed by 曹延义
parent a4a48e3d61
commit 9c8a53c58d
2 changed files with 16 additions and 12 deletions
+8 -6
View File
@@ -169,12 +169,14 @@ $lang->host->diskTypeList['ssd'] = 'SSD';
$lang->host->confirmDelete = 'Do you want to delete this host?';
$lang->host->notice = new stdclass();
$lang->host->notice->memory = 'Memory size should be numbers!';
$lang->host->notice->diskSize = 'Disk size should be numbers!';
$lang->host->notice->cpuNumber = 'CPU number should be numbers!';
$lang->host->notice->cpuCores = 'CPU cores should be numbers!';
$lang->host->notice->int = '『%s』should be a positive integer!';
$lang->host->notice->ip = '『%s』incorrect format!';
$lang->host->notice->memory = 'Memory size should be numbers!';
$lang->host->notice->diskSize = 'Disk size should be numbers!';
$lang->host->notice->cpuNumber = 'CPU number should be numbers!';
$lang->host->notice->cpuCores = 'CPU cores should be numbers!';
$lang->host->notice->int = '『%s』should be a positive integer!';
$lang->host->notice->ip = '『%s』incorrect format!';
$lang->host->notice->nameLength = 'Host name length should not exceed 100 characters!';
$lang->host->notice->descLength = 'Host description length should not exceed 255 characters!';
$lang->host->CDlist = array();
$lang->host->CDlist['manual'] = 'Manual';
+8 -6
View File
@@ -169,12 +169,14 @@ $lang->host->diskTypeList['ssd'] = '固态硬盘';
$lang->host->confirmDelete = '是否删除该主机记录?';
$lang->host->notice = new stdclass();
$lang->host->notice->memory = '内存大小只能为数字!';
$lang->host->notice->diskSize = '硬盘容量只能为数字!';
$lang->host->notice->cpuNumber = 'CPU数量只能为数字!';
$lang->host->notice->cpuCores = 'CPU核心数只能为数字!';
$lang->host->notice->int = '『%s』应当是正整数!';
$lang->host->notice->ip = '『%s』格式不正确!';
$lang->host->notice->memory = '内存大小只能为数字!';
$lang->host->notice->diskSize = '硬盘容量只能为数字!';
$lang->host->notice->cpuNumber = 'CPU数量只能为数字!';
$lang->host->notice->cpuCores = 'CPU核心数只能为数字!';
$lang->host->notice->int = '『%s』应当是正整数!';
$lang->host->notice->ip = '『%s』格式不正确!';
$lang->host->notice->nameLength = '主机名称长度不能超过100个字符!';
$lang->host->notice->descLength = '主机描述长度不能超过255个字符!';
$lang->host->CDlist = array();
$lang->host->CDlist['manual'] = '手工';