36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*
|
|
* https://www.d3data.de
|
|
*
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
|
|
* @link https://www.oxidmodule.com
|
|
*/
|
|
|
|
$sLangName = "English";
|
|
|
|
// -------------------------------
|
|
// RESOURCE IDENTITFIER = STRING
|
|
// -------------------------------
|
|
$aLang = [
|
|
|
|
//Navigation
|
|
'charset' => 'UTF-8',
|
|
|
|
'D3_CFG_MOD_EXCEPTION_NOMODCFG' => 'Modulkonfiguration %s kann nicht geladen werden',
|
|
'D3_CFG_MOD_EXCEPTION_NOMODCFGID' => 'Modulkonfiguration %s kann nicht ermittelt werden',
|
|
|
|
'NAVIGATION_PAGE' => 'Seite',
|
|
'GENERAL_LIST_FIRST' => 'Erste Seite',
|
|
'GENERAL_LIST_PREV' => 'zurück',
|
|
'GENERAL_LIST_NEXT' => 'vor',
|
|
'GENERAL_LIST_LAST' => 'Letzte Seite',
|
|
|
|
];
|