mirror of
https://github.com/Karaka-Management/oms-Kanban.git
synced 2026-01-31 12:48:40 +00:00
26 lines
571 B
PHP
26 lines
571 B
PHP
<?php
|
||
/**
|
||
* Karaka
|
||
*
|
||
* PHP Version 8.0
|
||
*
|
||
* @package Modules\Localization
|
||
* @copyright Dennis Eichhorn
|
||
* @license OMS License 1.0
|
||
* @version 1.0.0
|
||
* @link https://karaka.app
|
||
*/
|
||
declare(strict_types=1);
|
||
|
||
return ['Kanban' => [
|
||
':bStatus1' => 'Активный',
|
||
':bStatus2' => 'Неактивный',
|
||
':bStatus3' => 'В архиве',
|
||
'Archive' => '#VALUE!',
|
||
'Back' => '#VALUE!',
|
||
'Dashboard' => 'Приборная доска',
|
||
'Date' => '#VALUE!',
|
||
'Status' => '#VALUE!',
|
||
'Title' => '#VALUE!',
|
||
]];
|