* Finish task #9021.
This commit is contained in:
@@ -230,5 +230,10 @@ $lang->custom->conceptOptions->hourPoint['0'] = 'Stunde';
|
||||
$lang->custom->conceptOptions->hourPoint['1'] = 'Story Point';
|
||||
$lang->custom->conceptOptions->hourPoint['2'] = 'Function Point';
|
||||
|
||||
$lang->custom->conceptOptions->estimateUnit = array();
|
||||
$lang->custom->conceptOptions->estimateUnit['0'] = 'Stunde(H)';
|
||||
$lang->custom->conceptOptions->estimateUnit['1'] = 'Story Point(SP)';
|
||||
$lang->custom->conceptOptions->estimateUnit['2'] = 'Function Point(FP)';
|
||||
|
||||
$lang->custom->scrum = new stdclass();
|
||||
$lang->custom->scrum->setConcept = 'Set concept';
|
||||
|
||||
@@ -230,5 +230,10 @@ $lang->custom->conceptOptions->hourPoint['0'] = 'Hours';
|
||||
$lang->custom->conceptOptions->hourPoint['1'] = 'Story Point';
|
||||
$lang->custom->conceptOptions->hourPoint['2'] = 'Function Point';
|
||||
|
||||
$lang->custom->conceptOptions->estimateUnit = array();
|
||||
$lang->custom->conceptOptions->estimateUnit['0'] = 'Stunde(H)';
|
||||
$lang->custom->conceptOptions->estimateUnit['1'] = 'Story Point(SP)';
|
||||
$lang->custom->conceptOptions->estimateUnit['2'] = 'Function Point(FP)';
|
||||
|
||||
$lang->custom->scrum = new stdclass();
|
||||
$lang->custom->scrum->setConcept = 'Set concept';
|
||||
|
||||
@@ -230,5 +230,10 @@ $lang->custom->conceptOptions->hourPoint['0'] = 'Heures';
|
||||
$lang->custom->conceptOptions->hourPoint['1'] = 'Story Point';
|
||||
$lang->custom->conceptOptions->hourPoint['2'] = 'Function Point';
|
||||
|
||||
$lang->custom->conceptOptions->estimateUnit = array();
|
||||
$lang->custom->conceptOptions->estimateUnit['0'] = 'Stunde(H)';
|
||||
$lang->custom->conceptOptions->estimateUnit['1'] = 'Story Point(SP)';
|
||||
$lang->custom->conceptOptions->estimateUnit['2'] = 'Function Point(FP)';
|
||||
|
||||
$lang->custom->scrum = new stdclass();
|
||||
$lang->custom->scrum->setConcept = 'Set concept';
|
||||
|
||||
@@ -230,5 +230,10 @@ $lang->custom->conceptOptions->hourPoint['0'] = 'giờ';
|
||||
$lang->custom->conceptOptions->hourPoint['1'] = 'Điểm';
|
||||
$lang->custom->conceptOptions->hourPoint['2'] = 'Function Point';
|
||||
|
||||
$lang->custom->conceptOptions->estimateUnit = array();
|
||||
$lang->custom->conceptOptions->estimateUnit['0'] = 'Stunde(H)';
|
||||
$lang->custom->conceptOptions->estimateUnit['1'] = 'Story Point(SP)';
|
||||
$lang->custom->conceptOptions->estimateUnit['2'] = 'Function Point(FP)';
|
||||
|
||||
$lang->custom->scrum = new stdclass();
|
||||
$lang->custom->scrum->setConcept = 'Set concept';
|
||||
|
||||
@@ -230,5 +230,10 @@ $lang->custom->conceptOptions->hourPoint['0'] = '工时';
|
||||
$lang->custom->conceptOptions->hourPoint['1'] = '故事点';
|
||||
$lang->custom->conceptOptions->hourPoint['2'] = '功能点';
|
||||
|
||||
$lang->custom->conceptOptions->estimateUnit = array();
|
||||
$lang->custom->conceptOptions->estimateUnit['0'] = '工时(H)';
|
||||
$lang->custom->conceptOptions->estimateUnit['1'] = '故事点(SP)';
|
||||
$lang->custom->conceptOptions->estimateUnit['2'] = '功能点(FP)';
|
||||
|
||||
$lang->custom->scrum = new stdclass();
|
||||
$lang->custom->scrum->setConcept = '设置项目概念';
|
||||
|
||||
@@ -23,7 +23,7 @@ $lang->custom->system[] = 'estimate';
|
||||
<table class='table table-form mw-900px'>
|
||||
<tr>
|
||||
<th class='thWidth'><?php echo $lang->custom->estimateUnit;?></th>
|
||||
<td class='w-350px'><?php echo html::radio('hourPoint', $lang->custom->conceptOptions->hourPoint, $unit);?></td>
|
||||
<td class='w-350px'><?php echo html::radio('hourPoint', $lang->custom->conceptOptions->estimateUnit, $unit);?></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr class='hidden' id='convertRelations'>
|
||||
|
||||
@@ -85,7 +85,8 @@
|
||||
</td>
|
||||
<td class='c-product'><?php echo $story->productTitle;?></td>
|
||||
<td class='c-user'><?php echo zget($users, $story->openedBy);?></td>
|
||||
<td class='c-hours'><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<?php $unit = zget($this->config->custom, 'hourPoint', '1');?>
|
||||
<td class='c-hours' title="<?php echo $story->estimate . ' ' . $lang->custom->conceptOptions->hourPoint[$unit];?>"><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<td class='c-status'><span class='status-story status-<?php echo $story->status;?>'> <?php echo $this->processStatus('story', $story);?></span></td>
|
||||
<td class='c-stage'><?php echo zget($lang->story->stageList, $story->stage);?></td>
|
||||
<td class='c-actions'>
|
||||
|
||||
@@ -87,7 +87,8 @@
|
||||
<td class='c-product'><?php echo $story->productTitle;?></td>
|
||||
<td class='c-plan'><?php echo $story->planTitle;?></td>
|
||||
<td class='c-user'><?php echo zget($users, $story->openedBy);?></td>
|
||||
<td class='c-hours'><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<?php $unit = zget($this->config->custom, 'hourPoint', '1');?>
|
||||
<td class='c-hours' title="<?php echo $story->estimate . ' ' . $lang->custom->conceptOptions->hourPoint[$unit];?>"><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<td class='c-status'><span class='status-story status-<?php echo $story->status;?>'> <?php echo $this->processStatus('story', $story);?></span></td>
|
||||
<td class='c-stage'><?php echo zget($lang->story->stageList, $story->stage);?></td>
|
||||
<td class='c-actions'>
|
||||
|
||||
@@ -173,7 +173,8 @@
|
||||
</td>
|
||||
<td class='c-user' title='<?php echo zget($users, $story->openedBy);?>'><?php echo zget($users, $story->openedBy);?></td>
|
||||
<td class='c-user' title='<?php echo zget($users, $story->assignedTo);?>'><?php echo zget($users, $story->assignedTo);?></td>
|
||||
<td class='c-estimate'><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<?php $unit = zget($this->config->custom, 'hourPoint', '1');?>
|
||||
<td class='c-estimate' title="<?php echo $story->estimate . ' ' . $lang->custom->conceptOptions->hourPoint[$unit];?>"><?php echo $story->estimate . ' ' . $config->hourUnit;?></td>
|
||||
<?php $status = $this->processStatus('story', $story);?>
|
||||
<td class='c-status' title='<?php echo $status;?>'>
|
||||
<span class='status-story status-<?php echo $story->status;?>'><?php echo $status;?></span>
|
||||
|
||||
@@ -3314,7 +3314,8 @@ class storyModel extends model
|
||||
}
|
||||
else if($id == 'estimate')
|
||||
{
|
||||
$title = $story->estimate . ' ' . $this->config->hourUnit;
|
||||
$unit = zget($this->config->custom, 'hourPoint', '1');
|
||||
$title = $story->estimate . ' ' . $this->lang->custom->conceptOptions->hourPoint[$unit];
|
||||
}
|
||||
else if($id == 'reviewedBy')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user