26 lines
793 B
PHP
Executable File
26 lines
793 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* 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' => 'Essa página desapareceu!',
|
|
'message' => 'Desculpe, mas a página que você está procurando não foi encontrada. Verifique a URL por erros e tente novamente.',
|
|
'link' => 'Voltar para a página inicial',
|
|
],
|
|
'unauthorized' => [
|
|
'code' => '401',
|
|
'title' => 'Não autorizado',
|
|
'message' => 'Desculpe, que você precisa de privilégios de administrador para ver esta página.',
|
|
'link' => 'Voltar para a página inicial',
|
|
],
|
|
];
|