From d13e95399e8f113e835e08c7417c0f319acd524c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 21 Jul 2016 15:30:11 +0300 Subject: [PATCH] Revert "Translate error template" --- resources/lang/en/texts.php | 3 +-- resources/views/error.blade.php | 22 +++++++++++----------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index b9dd10e92e6c..027d562629f0 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -2044,8 +2044,7 @@ $LANG = array( 'payment_error_code' => 'There was an error processing your payment [:code]. Please try again later.', 'standard_fees_apply' => 'Standard fees apply: 2.9% + $0.30 per successful charge.', 'limit_import_rows' => 'Data needs to be imported in batches of :count rows or less', - 'error_title' => 'Something went wrong', - 'error_contact_text' => 'If you\'d like help please email us at :mailaddress', + ); diff --git a/resources/views/error.blade.php b/resources/views/error.blade.php index 6f6ff478c8f5..ec409da311c4 100644 --- a/resources/views/error.blade.php +++ b/resources/views/error.blade.php @@ -2,18 +2,18 @@ @section('content') -

 

-

 

+

 

+

 

-

-
-

{{ trans('texts.error_title') }}...

-

{{ $error }}

-

{{ trans('texts.error_contact_text', ['mailaddress' => env('MAIL_USERNAME')]) }}

-
-
+
+
+

Something went wrong...

+

{{ $error }}

+

If you'd like help please email us at {{ env('MAIL_USERNAME') }}.

+
+
-

 

-

 

+

 

+

 

@stop