2015-01-13 10:13:11 +01:00
|
|
|
<?php
|
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
|
|
|
* (c) James Brooks <james@cachethq.io>
|
2015-05-19 10:45:38 +01:00
|
|
|
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
|
|
|
|
* (c) Graham Campbell <graham@mineuk.com>
|
2015-04-19 08:52:39 +01:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2015-01-13 10:13:11 +01:00
|
|
|
return [
|
|
|
|
'not-found' => [
|
|
|
|
'code' => '404',
|
|
|
|
'title' => 'Die Seite konnte nicht gefunden werden!',
|
|
|
|
'message' => 'Entschuldigung, aber die Seite konnte nicht gefunden werden. Überprüfen Sie die URL und versuchen Sie es erneut.',
|
|
|
|
'link' => 'Zurück zur Startseite',
|
2015-01-23 17:06:46 -06:00
|
|
|
],
|
|
|
|
'unauthorized' => [
|
|
|
|
'code' => '401',
|
|
|
|
'title' => 'Unauthorized',
|
|
|
|
'message' => 'Sorry, you need admin privileges to see this page.',
|
|
|
|
'link' => 'Return to homepage',
|
|
|
|
],
|
2015-01-13 10:13:11 +01:00
|
|
|
];
|