mirror of
https://github.com/Karaka-Management/oms-ProjectManagement.git
synced 2026-01-11 23:58:40 +00:00
33 lines
832 B
PHP
33 lines
832 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Localization
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['ProjectManagement' => [
|
|
'Actual' => 'Tatsächlich',
|
|
'Budget' => 'Budget',
|
|
'Description' => 'Beschreibung',
|
|
'Due' => 'Fällig',
|
|
'End' => 'Ende',
|
|
'Exponential' => 'Exponentiell',
|
|
'Linear' => 'Linear',
|
|
'Log' => 'Protokoll',
|
|
'Manual' => 'Handbuch',
|
|
'Name' => 'Name',
|
|
'Progress' => 'Fortschritt',
|
|
'Project' => 'Projekt',
|
|
'Projects' => 'Projekte',
|
|
'Start' => 'Start',
|
|
'Tasks' => 'Aufgaben',
|
|
'Title' => 'Titel',
|
|
]];
|