Skip to content

Commit

Permalink
Revert "Missing localized strings (#26751)"
Browse files Browse the repository at this point in the history
This reverts commit f88adea.
  • Loading branch information
driesvints committed Jan 14, 2019
1 parent d1e7879 commit 4a08120
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 4a08120

Please sign in to comment.