First commit

This commit is contained in:
ebassi -
commit e3597abe8e
35 changed files with 2401 additions and 0 deletions

24
language/en/protected_page.php Executable file
View file

@ -0,0 +1,24 @@
<?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',
));