* Rename $lang->colon to $lang->hyphen.
This commit is contained in:
@@ -464,7 +464,7 @@ class task extends control
|
||||
/* Shows the variables needed to start the task page. */
|
||||
$assignedTo = empty($task->assignedTo) ? $this->app->user->account : $task->assignedTo;
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon .$this->lang->task->start;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen .$this->lang->task->start;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->view->members = $this->user->getTeamMemberPairs($task->execution, 'execution', 'nodeleted');
|
||||
$this->view->assignedTo = !empty($task->team) ? $this->task->getAssignedTo4Multi($task->team, $task) : $assignedTo;
|
||||
@@ -622,7 +622,7 @@ class task extends control
|
||||
$task->myConsumed = zget($currentTeam, 'consumed', 0);
|
||||
}
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon .$this->lang->task->finish;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen .$this->lang->task->finish;
|
||||
$this->view->members = $members;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->view->canRecordEffort = $this->task->canOperateEffort($task);
|
||||
@@ -673,7 +673,7 @@ class task extends control
|
||||
}
|
||||
|
||||
/* Show the variables associated. */
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon .$this->lang->task->pause;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen .$this->lang->task->pause;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->display();
|
||||
}
|
||||
@@ -720,7 +720,7 @@ class task extends control
|
||||
return $this->send($response);
|
||||
}
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon .$this->lang->task->restart;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen .$this->lang->task->restart;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->view->members = $this->loadModel('user')->getTeamMemberPairs($task->execution, 'execution', 'nodeleted');
|
||||
$this->view->assignedTo = $task->assignedTo == '' ? $this->app->user->account : $task->assignedTo;
|
||||
@@ -763,7 +763,7 @@ class task extends control
|
||||
return $this->send($response);
|
||||
}
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon .$this->lang->task->finish;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen .$this->lang->task->finish;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->display();
|
||||
}
|
||||
@@ -878,7 +878,7 @@ class task extends control
|
||||
return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'closeModal' => true, 'load' => $this->createLink('task', 'view', "taskID=$taskID")));
|
||||
}
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon . $this->lang->task->cancel;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen . $this->lang->task->cancel;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
|
||||
$this->display();
|
||||
@@ -940,7 +940,7 @@ class task extends control
|
||||
$this->view->teamMembers = $teamMembers;
|
||||
}
|
||||
|
||||
$this->view->title = $this->view->execution->name . $this->lang->colon . $this->lang->task->activate;
|
||||
$this->view->title = $this->view->execution->name . $this->lang->hyphen . $this->lang->task->activate;
|
||||
$this->view->users = $this->loadModel('user')->getPairs('noletter');
|
||||
$this->view->isMultiple = !empty($this->view->task->team);
|
||||
$this->display();
|
||||
@@ -1064,7 +1064,7 @@ class task extends control
|
||||
$this->execution->setMenu($executionID);
|
||||
if($this->app->tab == 'project') $this->view->projectID = $execution->project;
|
||||
|
||||
$this->view->title = $execution->name . $this->lang->colon . $this->lang->task->report->common;
|
||||
$this->view->title = $execution->name . $this->lang->hyphen . $this->lang->task->report->common;
|
||||
$this->view->executionID = $executionID;
|
||||
$this->view->browseType = $browseType;
|
||||
$this->view->chartType = $chartType;
|
||||
|
||||
Reference in New Issue
Block a user