mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-01-11 15:18:44 +00:00
38 lines
885 B
PHP
Executable File
38 lines
885 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Localization
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Calendar' => [
|
|
'Blocks' => 'Blöcke',
|
|
'Calendar' => 'Kalender',
|
|
'Close' => 'Nah dran',
|
|
'Day' => 'Tag',
|
|
'Event' => 'Fall',
|
|
'Friday' => 'Freitag',
|
|
'Interval' => 'Intervall',
|
|
'Layout' => 'Layout',
|
|
'List' => 'Liste',
|
|
'Monday' => 'Montag',
|
|
'Month' => 'Monat',
|
|
'NewEvent' => 'Neues Event',
|
|
'Saturday' => 'Samstag',
|
|
'Settings' => 'Einstellungen',
|
|
'Sunday' => 'Sonntag',
|
|
'Thursday' => 'Donnerstag',
|
|
'Timeline' => 'Zeitleiste',
|
|
'Tuesday' => 'Dienstag',
|
|
'Wednesday' => 'Mittwoch',
|
|
'Week' => 'Woche',
|
|
'Year' => 'Jahr',
|
|
]];
|