fix languages 5
Some checks failed
Image optimization / general_image_workflow (push) Has been cancelled
CI / general_module_workflow_php (push) Has been cancelled
CI / general_module_workflow_js (push) Has been cancelled

This commit is contained in:
Dennis Eichhorn 2024-05-18 21:16:17 +00:00
parent 909a5f0cab
commit 80a0a14a6d
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,47 @@
<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package Modules\Accounting\Models
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace Modules\Accounting\Models;
/**
* Null model
*
* @package Modules\Accounting\Models
* @license OMS License 2.0
* @link https://jingga.app
* @since 1.0.0
*/
final class NullPostingElement extends PostingElement
{
/**
* Constructor
*
* @param int $id Model id
*
* @since 1.0.0
*/
public function __construct(int $id = 0)
{
$this->id = $id;
parent::__construct();
}
/**
* {@inheritdoc}
*/
public function jsonSerialize() : mixed
{
return ['id' => $this->id];
}
}

View File

@ -13,6 +13,7 @@
declare(strict_types=1); declare(strict_types=1);
return ['Accounting' => [ return ['Accounting' => [
'Addition' => 'Zusatz',
'Account' => 'Konto', 'Account' => 'Konto',
'Accounts' => 'Konten', 'Accounts' => 'Konten',
'BatchPostings' => 'Chargenbuchungen', 'BatchPostings' => 'Chargenbuchungen',

View File

@ -13,6 +13,7 @@
declare(strict_types=1); declare(strict_types=1);
return ['Accounting' => [ return ['Accounting' => [
'Addition' => 'Addition',
'Account' => 'Account', 'Account' => 'Account',
'Accounts' => 'Accounts', 'Accounts' => 'Accounts',
'BatchPostings' => 'Batch Postings', 'BatchPostings' => 'Batch Postings',