From 863a2f4ed3b2206fd20072a34983ac41757a0634 Mon Sep 17 00:00:00 2001 From: gm-ah Date: Thu, 14 May 2015 16:49:44 +0700 Subject: [PATCH] Create errors.php --- resources/lang/id/errors.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 resources/lang/id/errors.php diff --git a/resources/lang/id/errors.php b/resources/lang/id/errors.php new file mode 100644 index 00000000..314b1db6 --- /dev/null +++ b/resources/lang/id/errors.php @@ -0,0 +1,25 @@ + + * + * 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', + ], +];