mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-01-24 13:38:40 +00:00
38 lines
924 B
PHP
Executable File
38 lines
924 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\Localization
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['Calendar' => [
|
|
'Blocks' => 'lohkot',
|
|
'Calendar' => 'Kalenteri',
|
|
'Close' => 'kiinni',
|
|
'Day' => 'Päivä',
|
|
'Event' => 'Tapahtuma',
|
|
'Friday' => 'perjantai',
|
|
'Interval' => 'intervalli',
|
|
'Layout' => 'Layout',
|
|
'List' => 'Lista',
|
|
'Monday' => 'maanantai',
|
|
'Month' => 'Kuukausi',
|
|
'NewEvent' => 'Uusi tapahtuma',
|
|
'Saturday' => 'lauantai',
|
|
'Settings' => 'asetukset',
|
|
'Sunday' => 'sunnuntai',
|
|
'Thursday' => 'torstai',
|
|
'Timeline' => 'Aikajana',
|
|
'Tuesday' => 'tiistai',
|
|
'Wednesday' => 'keskiviikko',
|
|
'Week' => 'Viikko',
|
|
'Year' => 'vuosi',
|
|
]];
|