Skip to content

Commit

Permalink
Missing localized strings (#26751)
Browse files Browse the repository at this point in the history
  • Loading branch information
subotkevic authored and taylorotwell committed Dec 5, 2018
1 parent 1c24fea commit f88adea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Exceptions/views/403.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
</div>
@endsection

@section('message', __($exception->getMessage() ?: 'Sorry, you are forbidden from accessing this page.'))
@section('message', __($exception->getMessage() ?: __('Sorry, you are forbidden from accessing this page.')))
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Exceptions/views/503.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
</div>
@endsection

@section('message', __($exception->getMessage() ?: 'Sorry, we are doing some maintenance. Please check back soon.'))
@section('message', __($exception->getMessage() ?: __('Sorry, we are doing some maintenance. Please check back soon.')))

0 comments on commit f88adea

Please sign in to comment.