* finish the task #822.
This commit is contained in:
@@ -34,7 +34,12 @@ userList = "<?php echo join(',', array_keys($users));?>".split(',');
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->bug->openedBuild;?></th>
|
||||
<td>
|
||||
<span id='buildBox'><?php echo html::select('openedBuild[]', $builds, $buildID, 'size=3 multiple=multiple class=select-3');?></span>
|
||||
<span id='buildBox'>
|
||||
<?php
|
||||
echo html::select('openedBuild[]', $builds, $buildID, 'size=3 multiple=multiple class=select-3');
|
||||
echo $lang->build->notice2;
|
||||
?>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
@@ -38,3 +38,6 @@ $lang->build->bugs = 'Linked bugs';
|
||||
|
||||
$lang->build->finishStories = 'The total demand for a complete %s';
|
||||
$lang->build->resolvedBugs = 'The total solution of bug%s';
|
||||
|
||||
$lang->build->notice = '(No build in your system, create it in build of project right now.)';
|
||||
$lang->build->notice2 = '(If the build is empty, please create it in build of project right now.)';
|
||||
|
||||
@@ -38,3 +38,6 @@ $lang->build->bugs = '已关联Bug';
|
||||
|
||||
$lang->build->finishStories = '本次共完成需求%s个';
|
||||
$lang->build->resolvedBugs = '本次共解决Bug%s个';
|
||||
|
||||
$lang->build->notice = '(还没有相应的版本信息哦,马上到[项目视图]-[版本]创建一个吧)';
|
||||
$lang->build->notice2 = '(如果还没有相应的版本信息,请到[项目视图]-[版本]创建)';
|
||||
|
||||
@@ -22,7 +22,13 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->release->build;?></th>
|
||||
<td><?php echo html::select('build', $builds, '', "class='select-3' onchange=loadStoriesAndBugs(this.value,$productID)");?></td>
|
||||
<td>
|
||||
<?php
|
||||
echo html::select('build', $builds, '', "class='select-3' onchange=loadStoriesAndBugs(this.value,$productID)");
|
||||
unset($builds['']);
|
||||
if(empty($builds)) echo $lang->build->notice;
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->release->date;?></th>
|
||||
|
||||
Reference in New Issue
Block a user