mirror of
https://github.com/Karaka-Management/oms-SalesAnalysis.git
synced 2026-01-11 19:38:39 +00:00
25 lines
518 B
PHP
Executable File
25 lines
518 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\SalesAnalysis
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Navigation' => [
|
|
'Analysis' => 'Analyse',
|
|
'Dashboard' => 'Dashboard',
|
|
'Database' => 'Database',
|
|
'Invoices' => 'Rechnungen',
|
|
'Marketing' => 'Marketing',
|
|
'Overview' => 'Übersicht',
|
|
'Products' => 'Produkte',
|
|
'Regions' => 'Regionen',
|
|
]];
|