* @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, [
'EXCEPTION_OUT_OF_BOUNDS' => 'The field `%1$s` received data beyond its bounds. Reason: %2$s',
'EXCEPTION_UNEXPECTED_VALUE' => 'The field `%1$s` received unexpected data. Reason: %2$s',
'EXCEPTION_ROLL_EDIT_COUNT' => 'Roll edit count',
'EXCEPTION_ROLL_EDIT_TIME' => 'Roll edit time',
'EXCEPTION_ROLL_EDIT_USER' => 'Edit user identifier',
'EXCEPTION_ROLL_DICE_COMPOUND' => 'Compounding dice (!!)',
'EXCEPTION_ROLL_DICE_EXPLODE' => 'Exploding dice (!, !!, !p)',
'EXCEPTION_ROLL_DICE_FUDGE' => 'Fudge dice (F)',
'EXCEPTION_ROLL_DICE_PENETRATE' => 'Penetrating dice (!p)',
'EXCEPTION_ROLL_DICE_PERCENT' => 'Percentage dice (d% or d100)',
'EXCEPTION_ROLL_DICE_QTY' => 'Dice quantity (Xd6)',
'EXCEPTION_ROLL_DICES' => 'Dices',
'EXCEPTION_ROLL_DICES_QTY' => 'Dice quantities (Xd6 + Xd6)',
'EXCEPTION_ROLL_FORUM_ID' => 'Forum identifier',
'EXCEPTION_ROLL_ID' => 'Roll identifier',
'EXCEPTION_ROLL_NOTATION' => 'Roll notation',
'EXCEPTION_ROLL_POST_ID' => 'Post identifier',
'EXCEPTION_ROLL_REGEX_NAME' => 'Regex name',
'EXCEPTION_ROLL_SIDES' => 'Dice sides (1dX)',
'EXCEPTION_ROLL_TIME' => 'Roll time',
'EXCEPTION_ROLL_TOPIC_ID' => 'Topic identifier',
'EXCEPTION_ROLL_USER_ID' => 'User identifier',
'EXCEPTION_FIELD_MISSING' => 'Required field missing.',
'EXCEPTION_NOT_ALLOWED' => 'The input is not allowed.',
'EXCEPTION_ROLL_ALREADY_EXIST' => 'The provided roll already exists.',
'EXCEPTION_ROLL_NO_MATCHES' => 'No dice matches found for provided notation.',
'EXCEPTION_ROLL_NOT_EXIST' => 'The provided roll does not exist.',
'EXCEPTION_ROLL_NAME_NOT_FOUND' => 'The provided regex name could not be found.',
// TRANSLATORS pay attention here
'EXCEPTION_ROLL_ULINT' => 'The input is not in the rage of 0 to 4 294 967 295.', // Leave in place (non-breaking thin space)
'EXCEPTION_ROLL_USINT' => 'The input is not in the rage of 0 to 65 535.', // Leave in place (non-breaking thin space)
'EXCEPTION_TOO_LONG' => 'The input was longer than the maximum length.',
'EXCEPTION_TOO_HIGH' => 'The input was higher than the maximum value.',
]);