File size: 1.31Kb
<?php
/**
*
* phpBB Media Embed PlugIn extension for the phpBB Forum Software package.
*
* @copyright (c) 2016 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
$lang = array_merge($lang, array(
// Settings
'ACP_MEDIA_SETTINGS' => 'Media Embed Settings',
'ACP_MEDIA_SETTINGS_EXPLAIN' => 'Here you can configure the settings for the Media Embed PlugIn.',
'ACP_MEDIA_DISPLAY_BBCODE' => 'Display <samp>[MEDIA]</samp> BBCode on posting page',
'ACP_MEDIA_DISPLAY_BBCODE_EXPLAIN' => 'If disallowed, the BBCode button will not be displayed, however users can still use the <samp>[media]</samp> tag in their posts',
'ACP_MEDIA_ALLOW_SIG' => 'Allow in user signatures',
'ACP_MEDIA_ALLOW_SIG_EXPLAIN' => 'Allow user signatures to display embedded media content.',
'ACP_MEDIA_SITE_TITLE' => 'Site id: %s',
'ACP_MEDIA_SITE_DISABLED' => 'This site conflicts with an existing BBCode: [%s]',
// Manage sites
'ACP_MEDIA_MANAGE' => 'Manage Media Embed Sites',
'ACP_MEDIA_MANAGE_EXPLAIN' => 'Here you can manage the sites you want to allow the Media Embed PlugIn to display content from.',
'ACP_MEDIA_SITES_ERROR' => 'There are no media sites to display.',
));