28 lines
810 B
PHP
28 lines
810 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) James Brooks <james@cachethq.io>
|
|
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
|
|
* (c) Graham Campbell <graham@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' => 'Halaman ini hilang!',
|
|
'message' => 'Maaf, halaman yang diinginkan tidak ditemukan. Periksa apakah ada kesalahan URL lalu coba lagi.',
|
|
'link' => 'Kembali ke depan',
|
|
],
|
|
'unauthorized' => [
|
|
'code' => '401',
|
|
'title' => 'Tidak dibolehkan',
|
|
'message' => 'Maaf, anda perlu kewenangan admin untuk melihat halaman ini.',
|
|
'link' => 'Kembali ke depan',
|
|
],
|
|
];
|