mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
16 lines
267 B
PHP
Executable File
16 lines
267 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'en' => [
|
|
'Test' => [ // Identifier e.g. Module/application
|
|
'key' => 'Test_EN',
|
|
],
|
|
],
|
|
'de' => [
|
|
'Test' => [ // Identifier e.g. Module/application
|
|
'key' => 'Test_DE',
|
|
],
|
|
],
|
|
];
|