<?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)
*
* Translated By : Bassel Taha Alhitary <http://alhitary.net>
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = [];
}
$lang = array_merge($lang, [
// Settings
'ACP_MEDIA_SETTINGS' => 'إعدادات إدراج مُحتوى الوسائط',
'ACP_MEDIA_SETTINGS_EXPLAIN' => 'من هنا تستطيع ضبط الإعدادات الخاصة بالإضافة “إدراج مُحتوى الوسائط”.',
'ACP_MEDIA_BBCODE_LEGEND' => 'BBCode',
'ACP_MEDIA_DISPLAY_BBCODE' => 'ظهور زر BBCode للوسائط <samp>[MEDIA]</samp>',
'ACP_MEDIA_DISPLAY_BBCODE_EXPLAIN' => 'اختيارك “لا”, يعني منع ظهور زر BBCode الخاص بالوسائط <samp>[MEDIA]</samp> في محرر الكتابة, وبالرغم من ذلك يستطيع الأعضاء استخدام الوسم <samp>[media]</samp> في مُشاركاتهم.',
'ACP_MEDIA_OPTIONS_LEGEND' => 'Options',
'ACP_MEDIA_ALLOW_SIG' => 'التوقيعات',
'ACP_MEDIA_ALLOW_SIG_EXPLAIN' => 'السماح للعضو بإستخدام وسم الوسائط في التوقيع.',
'ACP_MEDIA_CACHE_LEGEND' => 'Content caching',
'ACP_MEDIA_ENABLE_CACHE' => 'Enable Media Embed cache',
'ACP_MEDIA_ENABLE_CACHE_EXPLAIN' => 'In some cases you may notice slower than normal performance when loading media from other sites, especially while loading the same content multiple times (e.g. when editing a post). Enabling this will cache the information Media Embed gathers from sites locally and should improve performance.',
'ACP_MEDIA_PARSE_URLS' => 'تحويل الروابط العادية',
'ACP_MEDIA_PARSE_URLS_EXPLAIN' => 'اختار “نعم” لتحويل الروابط العادية (التي لم تندرج بين الوسوم <samp>[media]</samp> أو <samp>[url]</samp>) إلى محتوى الوسائط. مع الملاحظة بأن تطبيق هذا الخيار سيكون على المشاركات الجديدة فقط, ولن تؤثر على المشاركات القديمة.',
'ACP_MEDIA_WIDTH_LEGEND' => 'Content sizing',
'ACP_MEDIA_FULL_WIDTH' => 'Enable full width content',
'ACP_MEDIA_FULL_WIDTH_EXPLAIN' => 'Enable this to expand most Media Embed content to fill the full width of the post content area while maintaining its native aspect ratio.',
'ACP_MEDIA_MAX_WIDTH' => 'Custom max-width content',
'ACP_MEDIA_MAX_WIDTH_EXPLAIN' => 'Use this field to define custom max-width values for individual sites. This will override the default size and the full width option above. Enter each site on a new line, using the format <samp class="error">siteId:width</samp> with either <samp class="error">px</samp> or <samp class="error">%</samp>. For example:<br><br><samp class="error">youtube:80%</samp><br><samp class="error">funnyordie:480px</samp><br><br><i><strong class="error">Tip:</strong> Hover your mouse over a site on the Manage sites page to reveal the site id name to use here.</i>',
'ACP_MEDIA_PURGE_CACHE' => 'Purge Media Embed cache',
'ACP_MEDIA_PURGE_CACHE_EXPLAIN' => 'Media Embed cache is automatically purged once per day, however this button can be used to manually purge its cache now.',
'ACP_MEDIA_SITE_TITLE' => 'الموقع: %s',
'ACP_MEDIA_SITE_DISABLED' => 'هذا الموقع يتعارض مع BBCode آخر موجود: [%s]',
'ACP_MEDIA_ERROR_MSG' => 'The following errors were encountered:<br><br>%s',
'ACP_MEDIA_INVALID_SITE' => '%1$s:%2$s :: “%1$s” is not a valid site id',
'ACP_MEDIA_INVALID_WIDTH' => '%1$s:%2$s :: “%2$s” is not a valid width in “px” or “%%”',
// Manage sites
'ACP_MEDIA_MANAGE' => 'إدارة مواقع الوسائط',
'ACP_MEDIA_MANAGE_EXPLAIN' => 'من هنا تستطيع إدارة المواقع التي تريد السماح بإدارج محتوى الوسائط منها.',
'ACP_MEDIA_SITES_ERROR' => 'لا يوجد مواقع وسائط يُمكن عرضها.',
'ACP_MEDIA_SITES_MISSING' => 'المواقع التالية لم تعد مدعومة أو تعمل. نرجوا إعادة إرسال هذه الصفحة لإزالتها.',
]);