LinkProtection/language/en/info_acp_linkprotection.php

70 lines
6.2 KiB
PHP
Executable file

<?php
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
$lang = array_merge($lang, array(
'ACP_LINKPROTECTION_TITLE' => 'Link Protection',
'ACP_LINKPROTECTION_LINKREPLACEMENT' => 'Link Replacement',
'ACP_LINKPROTECTION_PROTECTED_PAGE' => 'Protected Link Page',
'ACP_LINKPROTECTION_SETTING_SAVED' => 'Settings have been saved successfully!',
'ACP_LINKPROTECTION_KEY_UPDATED' => 'A new encryption key was successfully generated!',
'ACP_lINKPROTECTION_VALUE_ERROR' => 'Invalid value \'%s\' for option \'%s\'. Settings have not been updated',
'ACP_LINKPROTECTION_GENERAL' => 'General Settings',
'ACP_LINKPROTECTION_MANUAL' => 'Manual Link Replacement',
'ACP_LINKPROTECTION_AUTOMATIC' => 'Automatic Link Replacement',
'ACP_LINKPROTECTION_MAXLINKS' => 'Maximum Protected Links Per Post',
'ACP_LINKPROTECTION_MAXLINKS_EXPLANATION' => 'The maximum number of links that can be protected in a single post. It should be set to a reasonable number to avoid placing excessive load on the server',
'ACP_LINKPROTECTION_KEY' => 'Encryption Key',
'ACP_LINKPROTECTION_KEY_EXPLANATION' => 'The key used to encrypt and decrypt links. Do not share the key with anyone. You should store a backup copy of this key somewhere safe',
'ACP_LINKPROTECTION_NEWKEY' => 'Generate New Key',
'ACP_LINKPROTECTION_CIPHER' => 'Encryption Cipher',
'ACP_LINKPROTECTION_CIPHER_EXPLANATION' => 'The cipher used to encrypt links. Increasing the key length will make the encryption more secure but place additional load on the server. After changing the cipher, you must generate a new key',
'ACP_LINKPROTECTION_WARNING' => 'WARNING: Once the system is live, this setting should never be changed',
'ACP_LINKPROTECTION_MANUALENABLED' => 'Enabled',
'ACP_LINKPROTECTION_MANUALENABLED_EXPLANATION' => 'When manual link protection is enabled, users can protect links using the [protect=title]url[/protect] or [protect]url[/protect] tags',
'ACP_LINKPROTECTION_STRICTMANUAL' => 'Strict Manual Protection',
'ACP_LINKPROTECTION_STRICTMANUAL_EXPLANATION' => 'When strict manual link protection is enabled, only valid URLs can be protected using the [protect] tag. If this is not enabled, any text can be protected',
'ACP_LINKPROTECTION_MANUALTITLE' => 'Default Title',
'ACP_LINKPROTECTION_MANUALTITLE_EXPLANATION' => 'The default title for manually protected links. This will be used when the user does not specify a title for the protected link',
'ACP_LINKPROTECTION_MANUALLENGTH' => 'Maximum Length',
'ACP_LINKPROTECTION_MANUALLENGTH_EXPLANATION' => 'The maximum length of any text or URL that can be protected with manual link protection. This should be set to a reasonable value to avoid placing excessive load on the server',
'ACP_LINKPROTECTION_MANUALTAGS' => 'Additional Tags',
'ACP_LINKPROTECTION_MANUALTAGS_EXPLANATION' => 'Here you can specify additional BBCode tags that can be used to manually protect links. Note that the [protect] tag will always be available. Additional tags should be separated by commas, for example dl,download will add support for [dl] and [download] tags. Only alphanumeric characters are accepted',
'ACP_LINKPROTECTION_AUTOMATICENABLED' => 'Enabled',
'ACP_LINKPROTECTION_AUTOMATICENABLED_EXPLANATION' => 'When automatic link protection is enabled, any valid links matching the URLs specified below will be automatically protected inside posts',
'ACP_LINKPROTECTION_AUTOMATICLENGTH' => 'Maximum Length',
'ACP_LINKPROTECTION_AUTOMATICLENGTH_EXPLANATION' => 'The maximum length of any URL that can be automatically protected. URLs exceeding this length will not be protected. It should be set to a reasonable value to avoid placing excessive load on the server',
'ACP_LINKPROTECTION_AUTOMATICLINKS' => 'Site List',
'ACP_LINKPROTECTION_AUTOMATICLINKS_EXPLANATION' => 'Here you can add new links to the automatic protection system. The URL match is the text your link should contain in order to be automatically protected. The title is what the protected links will appear as inside a post. To delete a URL, select the Delete checkbox next to the link. To add a new URL, enter the details and select the Add checkbox',
'ACP_LINKPROTECTION_PROTECTEDPREFIX' => 'Protected Page Prefix',
'ACP_LINKPROTECTION_PROTECTEDPREFIX_EXPLANATION' => 'The URL prefix of the protected link page. Can be changed to prevent conflict with other plugins',
'ACP_LINKPROTECTION_CAPTCHA' => 'Captcha',
'ACP_LINKPROTECTION_CAPTCHA_EXPLANATION' => 'Select the captcha that will be used on the protected link page',
'ACP_LINKPROTECTION_SHOWSUBMIT' => 'Captcha Submit Button',
'ACP_LINKPROTECTION_SHOWSUBMIT_EXPLANATION' => 'Whether to add a submit button to the protected link page captcha. Some captchas styles such as one-click captchas do not require a submit button',
'ACP_LINKPROTECTION_SOLVETIME' => 'Captcha Solve Time',
'ACP_LINKPROTECTION_SOLVETIME_EXPLANATION' => 'The amount of time in seconds that a user has to solve the captcha once the page loads. After this time the captcha will expire',
'ACP_LINKPROTECTION_MULTIPLELINKS' => 'Multiple Links Per Captcha',
'ACP_LINKPROTECTION_MULTIPLELINKS_EXPLANATION' => 'If this option is enabled, the user will be able to visit multiple links within a short time period after solving a single captcha. The number of links and the duration can be configured below',
'ACP_LINKPROTECTION_SOLVEDURATION' => 'Captcha Solve Duration',
'ACP_LINKPROTECTION_SOLVEDURATION_EXPLANATION' => 'If the multiple links option is enabled, this controls the time period during which the user will be able to view multiple links',
'ACP_LINKPROTECTION_GROUPLINKS' => 'Links Per Group',
'ACP_LINKPROTECTION_GROUPLINKS_EXPLANATION' => 'If the multiple links option is enabled, this controls how many protected links the user will be able to view before having to solve another captcha. The number of links can be set per group. If the user is a member of multiple groups, the highest value of all groups will be used',
'ACP_LINKPROTECTION_DEMO' => 'Captcha Preview',
'CAPTCHA_PREVIEW_EXPLAIN' => 'The plugin as it would look like using the current selection',
));