13 lines
504 B
PHP
13 lines
504 B
PHP
<?php
|
|
|
|
// phpcs:disable PSR1.Files.SideEffects
|
|
defined('SYSPATH') or die('No direct access allowed.');
|
|
// phpcs:enable PSR1.Files.SideEffects
|
|
|
|
$lang = array
|
|
(
|
|
'undefined_group' => 'Die Gruppe %s ist nicht in Ihrer Konfiguration enthalten.',
|
|
'requires_mcrypt' => 'Um die Bibliothek Encrypt zu benutzen, muss mcrypt in Ihrer PHP-Installation aktiviert werden',
|
|
'no_encryption_key' => 'Um die Bibliothek Encrypt zu benutzen, müssen Sie einen Schlüssel in Ihrer Konfiguration eintragen'
|
|
);
|