23 lines
605 B
PHP
23 lines
605 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' => 'Artikelverwaltung',
|
|
'info_title' => 'Informationstitel',
|
|
'info_content' => 'Inhalt',
|
|
|
|
'pages_index' => 'Artikelliste',
|
|
'pages_create' => 'Artikel erstellen',
|
|
'pages_show' => 'Artikeldetails',
|
|
'pages_update' => 'Artikelbearbeitung',
|
|
'pages_delete' => 'Artikel löschen',
|
|
];
|