* Finish task #7536,7557,7558.

This commit is contained in:
tianshujie98
2020-07-27 10:05:11 +08:00
parent 5c2a141a78
commit 94f98fa13a
7 changed files with 18 additions and 6 deletions
+1 -1
View File
@@ -527,7 +527,7 @@ $lang->error->date = "『%s』should be valid date.";
$lang->error->datetime = "『%s』should be valid date.";
$lang->error->code = "『%s』should be letters or numbers.";
$lang->error->account = "『%s』should be valid account.";
$lang->error->passwordsame = "The password input is inconsistent.";
$lang->error->passwordsame = "The two passwords should be the same.";
$lang->error->passwordrule = "Password should follow rules. It must be at least 6 characters.";
$lang->error->accessDenied = 'Access is denied.';
$lang->error->pasteImg = 'Image is not allowed to be pasted in your browser!';
+1 -1
View File
@@ -527,7 +527,7 @@ $lang->error->date = "『%s』should be valid date.";
$lang->error->datetime = "『%s』should be valid date.";
$lang->error->code = "『%s』should be letters or numbers.";
$lang->error->account = "『%s』should be >= 3 letters or numbers.";
$lang->error->passwordsame = "The password input is inconsistent.";
$lang->error->passwordsame = "The two passwords should be the same.";
$lang->error->passwordrule = "Password should conform to rules. It should be >= 6 characters.";
$lang->error->accessDenied = 'Access is denied.';
$lang->error->pasteImg = 'Images are not allowed to be pasted in your browser!';
+1 -1
View File
@@ -527,7 +527,7 @@ $lang->error->date = "『%s』should be valid date.";
$lang->error->datetime = "『 %s 』should be valid date.";
$lang->error->code = "『 %s 』should be letters or numbers.";
$lang->error->account = "『 %s 』should be >= 3 letters or numbers.";
$lang->error->passwordsame = "The password input is inconsistent.";
$lang->error->passwordsame = "The two passwords should be the same.";
$lang->error->passwordrule = "Password should conform to rules. It should be >= 6 characters.";
$lang->error->accessDenied = 'Access is denied.';
$lang->error->pasteImg = 'Images are not allowed to be pasted in your browser!';
+1 -1
View File
@@ -527,7 +527,7 @@ $lang->error->date = "『%s』should be valid date.";
$lang->error->datetime = "『%s』should be valid date.";
$lang->error->code = "『%s』nên là chữ hoặc số.";
$lang->error->account = "『%s』should be >= 3 letters or numbers.";
$lang->error->passwordsame = "The password input is inconsistent.";
$lang->error->passwordsame = "The two passwords should be the same.";
$lang->error->passwordrule = "Password should conform to rules. It should be >= 6 characters.";
$lang->error->accessDenied = 'Truy cập bị từ chối.';
$lang->error->pasteImg = 'Images are not allowed to be pasted in your browser!';
+1 -1
View File
@@ -527,7 +527,7 @@ $lang->error->date = "『%s』应当为合法的日期。";
$lang->error->datetime = "『%s』应当为合法的日期。";
$lang->error->code = "『%s』应当为字母或数字的组合。";
$lang->error->account = "『%s』只能是字母和数字的组合三位以上。";
$lang->error->passwordsame = "密码输入不一致。";
$lang->error->passwordsame = "两次密码应该相同。";
$lang->error->passwordrule = "密码应该符合规则,长度至少为六位。";
$lang->error->accessDenied = '您没有访问权限';
$lang->error->pasteImg = '您的浏览器不支持粘贴图片!';
+11 -1
View File
@@ -50,7 +50,17 @@
<td><?php echo $todo->id . html::hidden("todoIDList[$todo->id]", $todo->id);?></td>
<td><?php echo html::input("dates[$todo->id]", $todo->date, "class='form-control form-date'");?></td>
<td class='text-center'>
<?php echo html::select("types[$todo->id]", $lang->todo->typeList, $todo->type, "onchange='loadList(this.value, " . $todo->id . ")' class='form-control'");?>
<?php
if($todo->type == 'cycle')
{
echo html::hidden("types[$todo->id]", $todo->type);
echo $lang->todo->cycle;
}
else
{
echo html::select("types[$todo->id]", $lang->todo->typeList, $todo->type, "onchange='loadList(this.value, " . $todo->id . ")' class='form-control'");
}
?>
</td>
<td style='overflow:visible' <?php echo zget($visibleFields, 'pri', "class='hidden'")?>><?php echo html::select("pris[$todo->id]", $lang->todo->priList, $todo->pri, "class='form-control chosen'");?></td>
<td style='overflow:visible'>
+2
View File
@@ -83,12 +83,14 @@
</div>
</div>
<?php endif;?>
<?php if($todo->type != 'cycle'):?>
<div class="row form-group">
<label class="col-sm-1"><?php echo $lang->todo->type;?></label>
<div class="col-sm-2">
<?php echo html::select('type', $lang->todo->typeList, $todo->type, 'onchange="loadList(this.value);" class="form-control"');?>
</div>
</div>
<?php endif;?>
<div class="row form-group">
<label class="col-sm-1"><?php echo $lang->todo->pri;?></label>
<div class="col-sm-2">