29 lines
796 B
PHP
29 lines
796 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is part of KIDCateringBundle.
|
|
*
|
|
* (c) Stephan GIeb 2025 <stephan.gieb@yupdesign.de>
|
|
* @license GPL-3.0-or-later
|
|
* For the full copyright and license information,
|
|
* please view the LICENSE file that was distributed with this source code.
|
|
* @link https://github.com/yupdesign/contao-kid-catering-bundle
|
|
*/
|
|
|
|
use Yupdesign\ContaoKidCateringBundle\Controller\FrontendModule\WeeklyMenuController;
|
|
|
|
/**
|
|
* Backend modules
|
|
*/
|
|
$GLOBALS['TL_LANG']['MOD']['catering'] = 'Kantine';
|
|
$GLOBALS['TL_LANG']['MOD']['meals'] = ['Speisen', 'Übersicht aller Speisen'];
|
|
|
|
/**
|
|
* Frontend modules
|
|
*/
|
|
$GLOBALS['TL_LANG']['FMD']['catering'] = 'Kantine';
|
|
$GLOBALS['TL_LANG']['FMD'][WeeklyMenuController::TYPE] = ['Speiseplan', 'Gibt einen HTML-Speiseplan aus.'];
|
|
|