Extensions
This commit is contained in:
26
ext/phpbbstudio/dice/language/en/ext_require.php
Normal file
26
ext/phpbbstudio/dice/language/en/ext_require.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* phpBB Studio's Dice extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2019 phpBB Studio <https://www.phpbbstudio.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*/
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = [];
|
||||
}
|
||||
|
||||
/**
|
||||
* Some characters you may want to copy&paste: ’ » “ ” …
|
||||
*/
|
||||
$lang = array_merge($lang, [
|
||||
'ERROR_PHPBB_VERSION' => 'Minimum phpBB version required is %1$s but less than %2$s',
|
||||
'ERROR_PHP_VERSION' => 'PHP version must be equal or greater than 5.5',
|
||||
'ERROR_GLOB_STREAM' => 'The stream GLOB is not available in your system.',
|
||||
]);
|
||||
Reference in New Issue
Block a user