* Adjust code.
This commit is contained in:
@@ -32,6 +32,7 @@ $lang->my->setStoryConcept = 'Set Story Concept';
|
||||
$lang->my->storyConcept = 'Story Concept';
|
||||
$lang->my->noTodo = 'Keine toDos. ';
|
||||
$lang->my->noData = 'No %s yet. ';
|
||||
$lang->my->storyChanged = "Story Changed";
|
||||
|
||||
$lang->my->myExecutions = 'My Stage/Sprint/Iteration';
|
||||
$lang->my->name = 'Name';
|
||||
|
||||
@@ -32,6 +32,7 @@ $lang->my->setStoryConcept = 'Set Story Concept';
|
||||
$lang->my->storyConcept = 'Story Concept';
|
||||
$lang->my->noTodo = 'No todos yet. ';
|
||||
$lang->my->noData = 'No %s yet. ';
|
||||
$lang->my->storyChanged = "Story Changed";
|
||||
|
||||
$lang->my->myExecutions = "My Stage/Sprint/Iteration";
|
||||
$lang->my->name = 'Name';
|
||||
|
||||
@@ -32,6 +32,7 @@ $lang->my->setStoryConcept = 'Set Story Concept';
|
||||
$lang->my->storyConcept = 'Story Concept';
|
||||
$lang->my->noTodo = "Je n'ai rien à faire pour l'instant.";
|
||||
$lang->my->noData = 'No %s yet. ';
|
||||
$lang->my->storyChanged = "Story Changed";
|
||||
|
||||
$lang->my->myExecutions = 'My Stage/Sprint/Iteration';
|
||||
$lang->my->name = 'Name';
|
||||
|
||||
@@ -32,6 +32,7 @@ $lang->my->setStoryConcept = 'Set Story Concept';
|
||||
$lang->my->storyConcept = 'Story Concept';
|
||||
$lang->my->noTodo = 'Chưa có việc nào.';
|
||||
$lang->my->noData = 'No %s yet. ';
|
||||
$lang->my->storyChanged = "Story Changed";
|
||||
|
||||
$lang->my->myExecutions = "My Stage/Sprint/Iteration";
|
||||
$lang->my->name = 'Name';
|
||||
|
||||
@@ -32,6 +32,7 @@ $lang->my->score = '我的积分';
|
||||
$lang->my->scoreRule = '积分规则';
|
||||
$lang->my->noTodo = '暂时没有待办。';
|
||||
$lang->my->noData = "暂时没有%s。";
|
||||
$lang->my->storyChanged = "需求变更";
|
||||
|
||||
$lang->my->myExecutions = "我参与的阶段/冲刺/迭代";
|
||||
$lang->my->name = '名称';
|
||||
|
||||
@@ -32,6 +32,7 @@ $lang->my->score = '我的積分';
|
||||
$lang->my->scoreRule = '積分規則';
|
||||
$lang->my->noTodo = '暫時沒有待辦。';
|
||||
$lang->my->noData = "暫時沒有%s。";
|
||||
$lang->my->storyChanged = "需求變更";
|
||||
|
||||
$lang->my->myExecutions = "我參與的階段/衝刺/迭代";
|
||||
$lang->my->name = '名稱';
|
||||
|
||||
@@ -65,7 +65,7 @@
|
||||
<th class='c-hours w-50px'> <?php common::printOrderLink('estimate', $orderBy, $vars, $lang->task->estimateAB);?></th>
|
||||
<th class='c-hours w-50px'> <?php common::printOrderLink('consumed', $orderBy, $vars, $lang->task->consumedAB);?></th>
|
||||
<th class='c-hours w-50px'> <?php common::printOrderLink('left', $orderBy, $vars, $lang->task->leftAB);?></th>
|
||||
<th class='c-status'> <?php common::printOrderLink('status', $orderBy, $vars, $lang->statusAB);?></th>
|
||||
<th class='c-status w-70px'> <?php common::printOrderLink('status', $orderBy, $vars, $lang->statusAB);?></th>
|
||||
<th class='c-actions-6'> <?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -104,7 +104,7 @@
|
||||
<td class='c-hours'><?php echo round($task->left, 1);?></td>
|
||||
<td class='c-status'>
|
||||
<?php $storyChanged = (!empty($task->storyStatus) and $task->storyStatus == 'active' and $task->latestStoryVersion > $task->storyVersion and !in_array($task->status, array('cancel', 'closed')));?>
|
||||
<?php !empty($storyChanged) ? print("<span class='status-story status-changed'>{$this->lang->story->changed}</span>") : print("<span class='status-task status-{$task->status}'> " . $this->processStatus('task', $task) . "</span>");?>
|
||||
<?php !empty($storyChanged) ? print("<span class='status-story status-changed'>{$this->lang->my->storyChanged}</span>") : print("<span class='status-task status-{$task->status}'> " . $this->processStatus('task', $task) . "</span>");?>
|
||||
</td>
|
||||
<td class='c-actions'>
|
||||
<?php
|
||||
@@ -113,7 +113,7 @@
|
||||
if($task->needConfirm)
|
||||
{
|
||||
$this->lang->task->confirmStoryChange = $this->lang->confirm;
|
||||
common::printIcon('task', 'confirmStoryChange', "taskid=$task->id", '', 'list', '', 'hiddenwin', 'btn-wide', '', '', '', $task->PRJ);
|
||||
common::printIcon('task', 'confirmStoryChange', "taskid=$task->id", '', 'list', '', 'hiddenwin', '', '', '', '', $task->PRJ);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user