23 lines
635 B
PHP
23 lines
635 B
PHP
<?php
|
|
/**
|
|
* page.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'index' => '情報ページ',
|
|
'info_title' => '情報タイトル',
|
|
'info_content' => 'コンテンツ',
|
|
|
|
'pages_index' => '単一ページリスト',
|
|
'pages_create' => '単一のページを作成',
|
|
'pages_show' => '単一ページの詳細',
|
|
'pages_update' => '単一ページ編集',
|
|
'pages_delete' => '単一のページを削除',
|
|
];
|