diff --git a/resources/lang/en/general.php b/resources/lang/en/general.php index d93bc43bfe..6ee22f68c7 100644 --- a/resources/lang/en/general.php +++ b/resources/lang/en/general.php @@ -354,4 +354,6 @@ return [ 'checkout_tooltip' => 'Check this item out', 'checkin_tooltip' => 'Check this item in', 'checkout_user_tooltip' => 'Check this item out to a user', + 'maintenance_mode' => 'The service is temporarily unavailable for system updates. Please check back later.', + 'maintenance_mode_title' => 'System Temporarily Unavilable', ]; \ No newline at end of file diff --git a/resources/views/errors/503.blade.php b/resources/views/errors/503.blade.php index 0d330fb8e5..013d0f1ce6 100644 --- a/resources/views/errors/503.blade.php +++ b/resources/views/errors/503.blade.php @@ -2,7 +2,7 @@ {{-- Page title --}} @section('title') -System Unavailable + {{ trans('general.maintenance_mode_title') }} @parent @stop @@ -11,35 +11,34 @@ System Unavailable @section('content') - +
-
- -
-
-
-

System Unavailable

-

{!! json_decode(file_get_contents(storage_path('framework/down')), true)['message'] !!}

-
-
- - - +
+
+

+ + {{ trans('general.maintenance_mode_title') }} +

+
+
+
+
+ +
+
+

{{ trans('general.maintenance_mode') }}

+
+
+
+
@stop