Move lang into en/cachet.php where possible. Lang everything.

This commit is contained in:
James Brooks
2014-12-01 16:37:37 +00:00
parent 84c2bc9b61
commit 70a876744b
9 changed files with 42 additions and 33 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ class Incident extends Eloquent implements \Dingo\Api\Transformer\TransformableI
* @return string
*/
public function getHumanStatusAttribute() {
$statuses = Lang::get('incident.status');
$statuses = Lang::get('cachet.incident.status');
return $statuses[$this->status];
}