- | project->dateRange;?> |
+ project->dateRange;?> |
begin, "class='form-control form-date' onchange='computeWorkDays()' placeholder='" . $lang->project->begin . "'");?>
diff --git a/module/testtask/lang/en.php b/module/testtask/lang/en.php
index c1a8afa874..2a87f8756c 100644
--- a/module/testtask/lang/en.php
+++ b/module/testtask/lang/en.php
@@ -103,3 +103,7 @@ $lang->testtask->mail->create->title = "%s created testtask #%s:%s";
$lang->testtask->mail->edit->title = "%s finished testtask #%s:%s";
$lang->testtask->testScope = 'Test scope';
+
+$lang->testtask->action = new stdclass();
+$lang->testtask->action->testtaskstarted = '$date, 由 $actor started test task. $objectID。' . "\n";
+$lang->testtask->action->testtaskclosed = '$date, 由 $actor finished test task. $objectID。' . "\n";
diff --git a/module/testtask/lang/zh-cn.php b/module/testtask/lang/zh-cn.php
index 178d5070e1..ec4361026d 100644
--- a/module/testtask/lang/zh-cn.php
+++ b/module/testtask/lang/zh-cn.php
@@ -103,3 +103,7 @@ $lang->testtask->mail->create->title = "%s创建了测试任务 #%s:%s";
$lang->testtask->mail->edit->title = "%s编辑了测试任务 #%s:%s";
$lang->testtask->testScope = '测试范畴';
+
+$lang->testtask->action = new stdclass();
+$lang->testtask->action->testtaskstarted = '$date, 由 $actor 启动测试任务 $objectID。' . "\n";
+$lang->testtask->action->testtaskclosed = '$date, 由 $actor 完成测试任务 $objectID。' . "\n";
diff --git a/module/user/css/edit.css b/module/user/css/edit.css
new file mode 100644
index 0000000000..944bc8b2ab
--- /dev/null
+++ b/module/user/css/edit.css
@@ -0,0 +1 @@
+.table caption {border: none; border-bottom: 1px solid #ddd}
diff --git a/www/theme/default/style.css b/www/theme/default/style.css
index 7a8c118948..f72f24dcbb 100644
--- a/www/theme/default/style.css
+++ b/www/theme/default/style.css
@@ -464,7 +464,7 @@ body {font-size: 13px; color:#141414;padding-bottom: 40px;}
#titlebar > .heading > strong > i, #titlebar > .heading > strong > small > i {display: none}
#titlebar > .heading > small > i {position: relative; top: 1px; display: none}
#titlebar > .heading > small {font-size: 14px; color: #333;}
-#titlebar > .heading > small:before {content: '::'}
+#titlebar > .heading > small:before {content: '\e6e1'; font-family: ZenIcon; font-weight: normal;}
#titlebar .actions {position: absolute; right: 20px; top: 8px;}
#titlebar .actions > .btn, #titlebar .actions > .btn-group {margin-left: 8px;}
#titlebar .actions > .text {display: inline-block; margin-left: 8px; line-height: 30px}
|