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
@@ -26,7 +26,7 @@ class Component extends Eloquent implements \Dingo\Api\Transformer\Transformable
* @return string
*/
public function getHumanStatusAttribute() {
return Lang::get('component.status.' . $this->status);
return Lang::get('cachet.component.status.' . $this->status);
}
/**