mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-11 08:08:41 +00:00
27 lines
563 B
PHP
Executable File
27 lines
563 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 ['Comments' => [
|
|
'Created' => 'Erstellt',
|
|
'Creator' => 'Ersteller',
|
|
'Edit' => 'Bearbeiten',
|
|
'Comment' => 'Kommentar',
|
|
'Comments' => 'Kommentare',
|
|
'Upload' => 'Hochladen',
|
|
'Voting' => 'Wählen',
|
|
'lstatus-1' => 'Aktiv',
|
|
'lstatus-2' => 'Gesperrt',
|
|
'lstatus-3' => 'Inaktiv',
|
|
]];
|