Remove the remaining use of the lang facade

This commit is contained in:
Graham Campbell
2015-01-01 22:03:33 +00:00
parent b2edda5ee2
commit 056e0c489e
5 changed files with 8 additions and 10 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ API::error(function (\Illuminate\Database\Eloquent\ModelNotFoundException $excep
App::missing(function ($exception) {
if (Request::is('dashboard*') or Request::is('api*')) {
return Response::view('errors.404', [
'pageTitle' => Lang::get('cachet.dashboard.not_found_title'),
'pageTitle' => trans('cachet.dashboard.not_found_title'),
], 404);
}