23 lines
675 B
PHP
23 lines
675 B
PHP
<?php
|
|
/**
|
|
* order.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' => 'カテゴリ',
|
|
'edit_category' => 'カテゴリを編集',
|
|
'parent_category' => '上位カテゴリ',
|
|
|
|
'categories_index' => 'カテゴリーリスト',
|
|
'categories_create' => 'カテゴリを作成',
|
|
'categories_show' => 'カテゴリーの詳細',
|
|
'categories_update' => 'カテゴリを更新',
|
|
'categories_delete' => 'カテゴリを削除',
|
|
];
|