mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-22 02:42:18 +01:00
28 lines
842 B
PHP
Executable File
28 lines
842 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) James Brooks <james@cachethq.io>
|
|
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
|
|
* (c) Graham Campbell <graham@mineuk.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
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',
|
|
],
|
|
'unauthorized' => [
|
|
'code' => '401',
|
|
'title' => 'Unauthorized',
|
|
'message' => 'Sorry, you need admin privileges to see this page.',
|
|
'link' => 'Return to homepage',
|
|
],
|
|
];
|