24 lines
875 B
PHP
Executable file
24 lines
875 B
PHP
Executable file
<?php
|
|
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
if (empty($lang) || !is_array($lang))
|
|
{
|
|
$lang = [];
|
|
}
|
|
|
|
$lang = array_merge($lang, array(
|
|
'LINKPROTECTION_SOLVE_CAPTCHA' => 'Solve the captcha to view the protected link',
|
|
'LINKPROTECTION_CAPTCHA_SOLVED' => 'Solved! Here is your unprotected link',
|
|
'LINKPROTECTION_BYPASS' => 'You have permission to bypass the captcha',
|
|
'LINKPROTECTION_REMAINING_LINKS' => 'You can visit an additional %d links within the next %d seconds',
|
|
'LINKPROTECTION_NO_LINKS_REMAINING' => 'You have no links remaining',
|
|
'LINKPROTECTION_CAPTCHA_EXPIRED' => 'Captcha expired',
|
|
'LINKPROTECTION_ROUTE_ERROR' => 'Invalid route',
|
|
'LINKPROTECTION_PERMISSION_ERROR' => 'You do not have permission to view protected links',
|
|
'LINKPROTECTION_LINK_ERROR' => 'Invalid link',
|
|
'LINKPROTECTION_DECRYPTION_ERROR' => 'Unable to decrypt link',
|
|
));
|