Skip to content
Snippets Groups Projects
Commit c13c9efc authored by karl's avatar karl
Browse files

Die Errorseiten 404 und 500 werden bei entsprechenden Fehlern auch übersetzt angezeigt.

parent 36d8c631
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
<?php
return [
'1' => 'Fehler 404, Seite nicht gefunden',
'2' => 'M&ouml;glicherweise haben Sie einen falschen oder veralteten Link eingegeben.',
];
\ No newline at end of file
<?php
return [
'1' => 'Ups. Das h&auml;tte nicht passieren d&uuml;rfen.',
'2' => 'Bei Ihrer Anfrage ist etwas schief gegangen. Wir versuchen, m&ouml;glichst schnell, der Sache auf den Grund zu gehen.',
];
\ No newline at end of file
<?php
return [
'1' => 'Error 404, Page not found',
'2' => 'Maybe you entered a wrong or old link.',
];
\ No newline at end of file
<?php
return [
'1' => 'Oops. That should not have happened.',
'2' => 'Something went wrong with your request. We are drilling down on it as soon as possible.',
];
\ No newline at end of file
@extends('layouts.subPages')
@section('title', 'Fehler 404 - Seite nicht gefunden')
@section('content')
<h1>{{ trans('404.1') }}</h1>
<p>{{ trans('404.2') }}</p>
@endsection
\ No newline at end of file
@extends('layouts.subPages')
@section('title', 'Fehler 500 - Interner Serverfehler')
@section('content')
<h1>{{ trans('500.1') }}</h1>
<p>{{ trans('500.2') }}</p>
@endsection
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment