23 lines
580 B
PHP
23 lines
580 B
PHP
<?php
|
|
/**
|
|
* page.php
|
|
*
|
|
* @copyright 2022 tuikehome.com - All Rights Reserved
|
|
* @link https://www.tuikehome.com
|
|
* @author Edward Yang <service@tuikehome.com>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'index' => 'Manajemen Artikel',
|
|
'info_title' => 'Judul Informasi',
|
|
'info_content' => 'Konten',
|
|
|
|
'pages_index' => 'Daftar Artikel',
|
|
'pages_create' => 'Buat artikel',
|
|
'pages_show' => 'Detail Artikel',
|
|
'pages_update' => 'Penyuntingan Artikel',
|
|
'pages_delete' => 'Hapus artikel',
|
|
];
|