mirror of
https://github.com/Karaka-Management/oms-HumanResourceTimeRecording.git
synced 2026-01-23 09:18:40 +00:00
42 lines
1.0 KiB
PHP
Executable File
42 lines
1.0 KiB
PHP
Executable File
<?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 ['HumanResourceTimeRecording' => [
|
|
'Break' => 'Break',
|
|
':CS0' => 'Start',
|
|
':CS1' => 'Pause',
|
|
':CS2' => 'Continue',
|
|
':CS3' => 'End',
|
|
':CT0' => 'Office',
|
|
':CT1' => 'Remote',
|
|
':CT2' => 'Home',
|
|
':CT3' => 'Vacation',
|
|
':CT4' => 'Sick',
|
|
':CT5' => 'On the move',
|
|
':D0' => 'Sunday',
|
|
':D1' => 'Monday',
|
|
':D2' => 'Tuesday',
|
|
':D3' => 'Wednesday',
|
|
':D4' => 'Thursday',
|
|
':D5' => 'Friday',
|
|
':D6' => 'Saturday',
|
|
'Date' => 'Date',
|
|
'End' => 'End',
|
|
'Recordings' => 'Recordings',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Total' => 'Total',
|
|
'Type' => 'Type',
|
|
]];
|