Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/tabs.tar
Назад
script.install.php 0000604 00000001255 15245530525 0010233 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; require_once __DIR__ . '/script.install.helper.php'; class PlgSystemTabsInstallerScript extends PlgSystemTabsInstallerScriptHelper { public $name = 'TABS'; public $alias = 'tabs'; public $extension_type = 'plugin'; public function uninstall($adapter) { $this->uninstallPlugin($this->extname, 'editors-xtd'); } } script.install.helper.php 0000604 00000054511 15245530525 0011514 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Filesystem\File as JFile; use Joomla\CMS\Filesystem\Folder as JFolder; use Joomla\CMS\Installer\Installer as JInstaller; use Joomla\CMS\Language\Text as JText; class PlgSystemTabsInstallerScriptHelper { public $name = ''; public $alias = ''; public $extname = ''; public $extension_type = ''; public $plugin_folder = 'system'; public $module_position = 'status'; public $client_id = 1; public $install_type = 'install'; public $show_message = true; public $db = null; public $softbreak = null; public $installed_version = ''; public function __construct(&$params) { $this->extname = $this->extname ?: $this->alias; $this->db = JFactory::getDbo(); } public function preflight($route, $adapter) { if ( ! in_array($route, ['install', 'update'])) { return true; } JFactory::getLanguage()->load('plg_system_regularlabsinstaller', JPATH_PLUGINS . '/system/regularlabsinstaller'); $this->installed_version = $this->getVersion($this->getInstalledXMLFile()); if ($this->show_message && $this->isInstalled()) { $this->install_type = 'update'; } // if ($this->extension_type == 'component') // { // // Remove admin menu to prevent error on creating it again // $query = $this->db->getQuery(true) // ->delete('#__menu') // ->where($this->db->quoteName('path') . ' = ' . $this->db->quote('com-' . $this->extname)) // ->where($this->db->quoteName('client_id') . ' = 1'); // $this->db->setQuery($query); // $this->db->execute(); // } if ($this->onBeforeInstall($route) === false) { return false; } return true; } public function postflight($route, $adapter) { $this->removeGlobalLanguageFiles(); $this->removeUnusedLanguageFiles(); JFactory::getLanguage()->load($this->getPrefix() . '_' . $this->extname, $this->getMainFolder()); if ( ! in_array($route, ['install', 'update'])) { return true; } $this->fixExtensionNames(); $this->updateUpdateSites(); $this->removeAdminCache(); if ($this->onAfterInstall($route) === false) { return false; } if ($route == 'install') { $this->publishExtension(); } if ($this->show_message) { $this->addInstalledMessage(); } JFactory::getCache()->clean('com_plugins'); JFactory::getCache()->clean('_system'); return true; } public function isInstalled() { if ( ! is_file($this->getInstalledXMLFile())) { return false; } $query = $this->db->getQuery(true) ->select($this->db->quoteName('extension_id')) ->from('#__extensions') ->where($this->db->quoteName('type') . ' = ' . $this->db->quote($this->extension_type)) ->where($this->db->quoteName('element') . ' = ' . $this->db->quote($this->getElementName())) ->setLimit(1); $this->db->setQuery($query); $result = $this->db->loadResult(); return empty($result) ? false : true; } public function getMainFolder() { switch ($this->extension_type) { case 'plugin' : return JPATH_PLUGINS . '/' . $this->plugin_folder . '/' . $this->extname; case 'component' : return JPATH_ADMINISTRATOR . '/components/com_' . $this->extname; case 'module' : return JPATH_ADMINISTRATOR . '/modules/mod_' . $this->extname; case 'library' : return JPATH_SITE . '/libraries/' . $this->extname; } } public function getInstalledXMLFile() { return $this->getXMLFile($this->getMainFolder()); } public function getCurrentXMLFile() { return $this->getXMLFile(__DIR__); } public function getXMLFile($folder) { switch ($this->extension_type) { case 'module' : return $folder . '/mod_' . $this->extname . '.xml'; default : return $folder . '/' . $this->extname . '.xml'; } } public function uninstallExtension($extname, $type = 'plugin', $folder = 'system', $show_message = true) { if (empty($extname)) { return; } $folders = []; switch ($type) { case 'plugin': $folders[] = JPATH_PLUGINS . '/' . $folder . '/' . $extname; break; case 'component': $folders[] = JPATH_ADMINISTRATOR . '/components/com_' . $extname; $folders[] = JPATH_SITE . '/components/com_' . $extname; break; case 'module': $folders[] = JPATH_ADMINISTRATOR . '/modules/mod_' . $extname; $folders[] = JPATH_SITE . '/modules/mod_' . $extname; break; } if ( ! $this->foldersExist($folders)) { return; } $query = $this->db->getQuery(true) ->select($this->db->quoteName('extension_id')) ->from('#__extensions') ->where($this->db->quoteName('element') . ' = ' . $this->db->quote($this->getElementName($type, $extname))) ->where($this->db->quoteName('type') . ' = ' . $this->db->quote($type)); if ($type == 'plugin') { $query->where($this->db->quoteName('folder') . ' = ' . $this->db->quote($folder)); } $this->db->setQuery($query); $ids = $this->db->loadColumn(); if (empty($ids)) { foreach ($folders as $folder) { JFactory::getApplication()->enqueueMessage('2. Deleting: ' . $folder, 'notice'); JFolder::delete($folder); } return; } $ignore_ids = JFactory::getApplication()->getUserState('rl_ignore_uninstall_ids', []); if (JFactory::getApplication()->input->get('option') == 'com_installer' && JFactory::getApplication()->input->get('task') == 'remove') { // Don't attempt to uninstall extensions that are already selected to get uninstalled by them selves $ignore_ids = array_merge($ignore_ids, JFactory::getApplication()->input->get('cid', [], 'array')); JFactory::getApplication()->input->set('cid', array_merge($ignore_ids, $ids)); } $ids = array_diff($ids, $ignore_ids); if (empty($ids)) { return; } $ignore_ids = array_merge($ignore_ids, $ids); JFactory::getApplication()->setUserState('rl_ignore_uninstall_ids', $ignore_ids); foreach ($ids as $id) { $tmpInstaller = new JInstaller; $tmpInstaller->uninstall($type, $id); } if ($show_message) { JFactory::getApplication()->enqueueMessage( JText::sprintf( 'COM_INSTALLER_UNINSTALL_SUCCESS', JText::_('COM_INSTALLER_TYPE_TYPE_' . strtoupper($type)) ), 'success' ); } } public function foldersExist($folders = []) { foreach ($folders as $folder) { if (is_dir($folder)) { return true; } } return false; } public function uninstallPlugin($extname, $folder = 'system', $show_message = true) { $this->uninstallExtension($extname, 'plugin', $folder, $show_message); } public function uninstallComponent($extname, $show_message = true) { $this->uninstallExtension($extname, 'component', null, $show_message); } public function uninstallModule($extname, $show_message = true) { $this->uninstallExtension($extname, 'module', null, $show_message); } public function publishExtension() { switch ($this->extension_type) { case 'plugin' : $this->publishPlugin(); case 'module' : $this->publishModule(); } } public function publishPlugin() { $query = $this->db->getQuery(true) ->update('#__extensions') ->set($this->db->quoteName('enabled') . ' = 1') ->where($this->db->quoteName('type') . ' = ' . $this->db->quote('plugin')) ->where($this->db->quoteName('element') . ' = ' . $this->db->quote($this->extname)) ->where($this->db->quoteName('folder') . ' = ' . $this->db->quote($this->plugin_folder)); $this->db->setQuery($query); $this->db->execute(); } public function publishModule() { // Get module id $query = $this->db->getQuery(true) ->select($this->db->quoteName('id')) ->from('#__modules') ->where($this->db->quoteName('module') . ' = ' . $this->db->quote('mod_' . $this->extname)) ->where($this->db->quoteName('client_id') . ' = ' . (int) $this->client_id); $this->db->setQuery($query, 0, 1); $id = $this->db->loadResult(); if ( ! $id) { return; } // check if module is already in the modules_menu table (meaning is is already saved) $query->clear() ->select($this->db->quoteName('moduleid')) ->from('#__modules_menu') ->where($this->db->quoteName('moduleid') . ' = ' . (int) $id) ->setLimit(1); $this->db->setQuery($query); $exists = $this->db->loadResult(); if ($exists) { return; } // Get highest ordering number in position $query->clear() ->select($this->db->quoteName('ordering')) ->from('#__modules') ->where($this->db->quoteName('position') . ' = ' . $this->db->quote($this->module_position)) ->where($this->db->quoteName('client_id') . ' = ' . (int) $this->client_id) ->order('ordering DESC'); $this->db->setQuery($query, 0, 1); $ordering = $this->db->loadResult(); $ordering++; // publish module and set ordering number $query->clear() ->update('#__modules') ->set($this->db->quoteName('published') . ' = 1') ->set($this->db->quoteName('ordering') . ' = ' . (int) $ordering) ->set($this->db->quoteName('position') . ' = ' . $this->db->quote($this->module_position)) ->where($this->db->quoteName('id') . ' = ' . (int) $id); $this->db->setQuery($query); $this->db->execute(); // add module to the modules_menu table $query->clear() ->insert('#__modules_menu') ->columns([$this->db->quoteName('moduleid'), $this->db->quoteName('menuid')]) ->values((int) $id . ', 0'); $this->db->setQuery($query); $this->db->execute(); } public function addInstalledMessage() { JFactory::getApplication()->enqueueMessage( JText::sprintf( $this->install_type == 'update' ? 'RLI_THE_EXTENSION_HAS_BEEN_UPDATED_SUCCESSFULLY' : 'RLI_THE_EXTENSION_HAS_BEEN_INSTALLED_SUCCESSFULLY', '<strong>' . JText::_($this->name) . '</strong>', '<strong>' . $this->getVersion() . '</strong>', $this->getFullType() ), 'success' ); } public function getPrefix() { switch ($this->extension_type) { case 'plugin': return JText::_('plg_' . strtolower($this->plugin_folder)); case 'component': return JText::_('com'); case 'module': return JText::_('mod'); case 'library': return JText::_('lib'); default: return $this->extension_type; } } public function getElementName($type = null, $extname = null) { $type = is_null($type) ? $this->extension_type : $type; $extname = is_null($extname) ? $this->extname : $extname; switch ($type) { case 'component' : return 'com_' . $extname; case 'module' : return 'mod_' . $extname; case 'plugin' : default: return $extname; } } public function getFullType() { return JText::_('RLI_' . strtoupper($this->getPrefix())); } public function getVersion($file = '') { $file = $file ?: $this->getCurrentXMLFile(); if ( ! is_file($file)) { return ''; } $xml = JInstaller::parseXMLInstallFile($file); if ( ! $xml || ! isset($xml['version'])) { return ''; } return $xml['version']; } public function isNewer() { if ( ! $this->installed_version) { return true; } $package_version = $this->getVersion(); return version_compare($this->installed_version, $package_version, '<='); } public function canInstall() { // The extension is not installed yet if ( ! $this->installed_version) { return true; } // The free version is installed. So any version is ok to install if (strpos($this->installed_version, 'PRO') === false) { return true; } // Current package is a pro version, so all good if (strpos($this->getVersion(), 'PRO') !== false) { return true; } JFactory::getLanguage()->load($this->getPrefix() . '_' . $this->extname, __DIR__); JFactory::getApplication()->enqueueMessage(JText::_('RLI_ERROR_PRO_TO_FREE'), 'error'); JFactory::getApplication()->enqueueMessage( html_entity_decode( JText::sprintf( 'RLI_ERROR_UNINSTALL_FIRST', '<a href="https://regularlabs.com/' . $this->alias . '" target="_blank">', '</a>', JText::_($this->name) ) ), 'error' ); return false; } /* * Fixes incorrectly formed versions because of issues in old packager */ public function fixFileVersions($file) { if (is_array($file)) { foreach ($file as $f) { self::fixFileVersions($f); } return; } if ( ! is_string($file) || ! is_file($file)) { return; } $contents = file_get_contents($file); if ( strpos($contents, 'FREEFREE') === false && strpos($contents, 'FREEPRO') === false && strpos($contents, 'PROFREE') === false && strpos($contents, 'PROPRO') === false ) { return; } $contents = str_replace( ['FREEFREE', 'FREEPRO', 'PROFREE', 'PROPRO'], ['FREE', 'PRO', 'FREE', 'PRO'], $contents ); JFile::write($file, $contents); } public function onBeforeInstall($route) { if ( ! $this->canInstall()) { return false; } return true; } public function onAfterInstall($route) { return true; } public function delete($files = []) { foreach ($files as $file) { if (is_dir($file)) { JFolder::delete($file); } if (is_file($file)) { JFile::delete($file); } } } public function fixAssetsRules() { $query = $this->db->getQuery(true) ->select($this->db->quoteName('rules')) ->from('#__assets') ->where($this->db->quoteName('title') . ' = ' . $this->db->quote('com_' . $this->extname)) ->setLimit(1); $this->db->setQuery($query); $rules = $this->db->loadResult(); $rules = json_decode($rules); if (empty($rules)) { return; } foreach ($rules as $key => $value) { if ( ! empty($value)) { continue; } unset($rules->$key); } $rules = json_encode($rules); $query = $this->db->getQuery(true) ->update($this->db->quoteName('#__assets')) ->set($this->db->quoteName('rules') . ' = ' . $this->db->quote($rules)) ->where($this->db->quoteName('title') . ' = ' . $this->db->quote('com_' . $this->extname)); $this->db->setQuery($query); $this->db->execute(); } private function fixExtensionNames() { switch ($this->extension_type) { case 'module' : $this->fixModuleNames(); } } private function fixModuleNames() { // Get module id $query = $this->db->getQuery(true) ->select($this->db->quoteName('id')) ->from('#__modules') ->where($this->db->quoteName('module') . ' = ' . $this->db->quote('mod_' . $this->extname)) ->where($this->db->quoteName('client_id') . ' = ' . (int) $this->client_id); $this->db->setQuery($query, 0, 1); $module_id = $this->db->loadResult(); if (empty($module_id)) { return; } $title = 'Regular Labs - ' . JText::_($this->name); $query->clear() ->update('#__modules') ->set($this->db->quoteName('title') . ' = ' . $this->db->quote($title)) ->where($this->db->quoteName('id') . ' = ' . (int) $module_id) ->where($this->db->quoteName('title') . ' LIKE ' . $this->db->quote('NoNumber%')); $this->db->setQuery($query); $this->db->execute(); // Fix module assets // Get asset id $query = $this->db->getQuery(true) ->select($this->db->quoteName('id')) ->from('#__assets') ->where($this->db->quoteName('name') . ' = ' . $this->db->quote('com_modules.module.' . (int) $module_id)) ->where($this->db->quoteName('title') . ' LIKE ' . $this->db->quote('NoNumber%')) ->setLimit(1); $this->db->setQuery($query); $asset_id = $this->db->loadResult(); if (empty($asset_id)) { return; } $query->clear() ->update('#__assets') ->set($this->db->quoteName('title') . ' = ' . $this->db->quote($title)) ->where($this->db->quoteName('id') . ' = ' . (int) $asset_id); $this->db->setQuery($query); $this->db->execute(); } private function updateUpdateSites() { $this->removeOldUpdateSites(); $this->updateNamesInUpdateSites(); $this->updateHttptoHttpsInUpdateSites(); $this->removeDuplicateUpdateSite(); $this->updateDownloadKey(); } private function removeOldUpdateSites() { $query = $this->db->getQuery(true) ->select($this->db->quoteName('update_site_id')) ->from('#__update_sites') ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('nonumber.nl%')) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%e=' . $this->alias . '%')); $this->db->setQuery($query, 0, 1); $id = $this->db->loadResult(); if ( ! $id) { return; } $query->clear() ->delete('#__update_sites') ->where($this->db->quoteName('update_site_id') . ' = ' . (int) $id); $this->db->setQuery($query); $this->db->execute(); $query->clear() ->delete('#__update_sites_extensions') ->where($this->db->quoteName('update_site_id') . ' = ' . (int) $id); $this->db->setQuery($query); $this->db->execute(); } private function updateNamesInUpdateSites() { $name = JText::_($this->name); if ($this->alias != 'extensionmanager') { $name = 'Regular Labs - ' . $name; } $query = $this->db->getQuery(true) ->update('#__update_sites') ->set($this->db->quoteName('name') . ' = ' . $this->db->quote($name)) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%download.regularlabs.com%')) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%e=' . $this->alias . '%')); $this->db->setQuery($query); $this->db->execute(); } private function updateHttptoHttpsInUpdateSites() { $query = $this->db->getQuery(true) ->update('#__update_sites') ->set($this->db->quoteName('location') . ' = REPLACE(' . $this->db->quoteName('location') . ', ' . $this->db->quote('http://') . ', ' . $this->db->quote('https://') . ')') ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('http://download.regularlabs.com%')); $this->db->setQuery($query); $this->db->execute(); } private function removeDuplicateUpdateSite() { // First check to see if there is a pro entry $query = $this->db->getQuery(true) ->select($this->db->quoteName('update_site_id')) ->from('#__update_sites') ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%download.regularlabs.com%')) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%e=' . $this->alias . '%')) ->where($this->db->quoteName('location') . ' NOT LIKE ' . $this->db->quote('%pro=1%')) ->setLimit(1); $this->db->setQuery($query); $id = $this->db->loadResult(); // Otherwise just get the first match if ( ! $id) { $query->clear() ->select($this->db->quoteName('update_site_id')) ->from('#__update_sites') ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%download.regularlabs.com%')) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%e=' . $this->alias . '%')); $this->db->setQuery($query, 0, 1); $id = $this->db->loadResult(); // Remove pro=1 from the found update site $query->clear() ->update('#__update_sites') ->set($this->db->quoteName('location') . ' = replace(' . $this->db->quoteName('location') . ', ' . $this->db->quote('&pro=1') . ', ' . $this->db->quote('') . ')') ->where($this->db->quoteName('update_site_id') . ' = ' . (int) $id); $this->db->setQuery($query); $this->db->execute(); } if ( ! $id) { return; } $query->clear() ->select($this->db->quoteName('update_site_id')) ->from('#__update_sites') ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%download.regularlabs.com%')) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%e=' . $this->alias . '%')) ->where($this->db->quoteName('update_site_id') . ' != ' . $id); $this->db->setQuery($query); $ids = $this->db->loadColumn(); if (empty($ids)) { return; } $query->clear() ->delete('#__update_sites') ->where($this->db->quoteName('update_site_id') . ' IN (' . implode(',', $ids) . ')'); $this->db->setQuery($query); $this->db->execute(); $query->clear() ->delete('#__update_sites_extensions') ->where($this->db->quoteName('update_site_id') . ' IN (' . implode(',', $ids) . ')'); $this->db->setQuery($query); $this->db->execute(); } // Save the download key from the Regular Labs Extension Manager config to the update sites private function updateDownloadKey() { $query = $this->db->getQuery(true) ->select($this->db->quoteName('params')) ->from('#__extensions') ->where($this->db->quoteName('element') . ' = ' . $this->db->quote('com_regularlabsmanager')); $this->db->setQuery($query); $params = $this->db->loadResult(); if ( ! $params) { return; } $params = json_decode($params); if ( ! isset($params->key)) { return; } // Add the key on all regularlabs.com urls $query->clear() ->update('#__update_sites') ->set($this->db->quoteName('extra_query') . ' = ' . $this->db->quote('k=' . $params->key)) ->where($this->db->quoteName('location') . ' LIKE ' . $this->db->quote('%download.regularlabs.com%')); $this->db->setQuery($query); $this->db->execute(); } private function removeAdminCache() { $this->delete([JPATH_ADMINISTRATOR . '/cache/regularlabs']); $this->delete([JPATH_ADMINISTRATOR . '/cache/nonumber']); } private function removeGlobalLanguageFiles() { if ($this->extension_type == 'library') { return; } $language_files = JFolder::files(JPATH_ADMINISTRATOR . '/language', '\.' . $this->getPrefix() . '_' . $this->extname . '\.', true, true); // Remove override files foreach ($language_files as $i => $language_file) { if (strpos($language_file, '/overrides/') === false) { continue; } unset($language_files[$i]); } if (empty($language_files)) { return; } JFile::delete($language_files); } private function removeUnusedLanguageFiles() { if ($this->extension_type == 'library') { return; } if ( ! is_file(__DIR__ . '/language')) { return; } $installed_languages = array_merge( is_file(JPATH_SITE . '/language') ? JFolder::folders(JPATH_SITE . '/language') : [], is_file(JPATH_ADMINISTRATOR . '/language') ? JFolder::folders(JPATH_ADMINISTRATOR . '/language') : [] ); $languages = array_diff( JFolder::folders(__DIR__ . '/language') ?: [], $installed_languages ); $delete_languages = []; foreach ($languages as $language) { $delete_languages[] = $this->getMainFolder() . '/language/' . $language; } if (empty($delete_languages)) { return; } // Remove folders $this->delete($delete_languages); } } src/Helper.php 0000604 00000004015 15245530525 0007265 0 ustar 00 <?php /** * @package Tabs * @version 7.6.0 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2020 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use RegularLabs\Library\Article as RL_Article; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\Html as RL_Html; /** * Plugin that replaces stuff */ class Helper { public function onContentPrepare($context, &$article, &$params) { $area = isset($article->created_by) ? 'article' : 'other'; $context = (($params instanceof \JRegistry) && $params->get('rl_search')) ? 'com_search.' . $params->get('readmore_limit') : $context; RL_Article::process($article, $context, $this, 'replaceTags', [$area, $context]); } public function onAfterDispatch() { Document::addHeadStuff(); if ( ! $buffer = RL_Document::getBuffer()) { return; } if ( ! Replace::replaceTags($buffer, 'component')) { return; } RL_Document::setBuffer($buffer); } public function onAfterRender() { $html = JFactory::getApplication()->getBody(); if ($html == '') { return; } $params = Params::get(); list($tag_start, $tag_end) = Params::getTagCharacters(); if ( strpos($html, $tag_start . $params->tag_open) === false && strpos($html, 'rl_tabs-scrollto') === false ) { Document::removeHeadStuff($html); Clean::cleanLeftoverJunk($html); JFactory::getApplication()->setBody($html); return; } // only do stuff in body list($pre, $body, $post) = RL_Html::getBody($html); Replace::replaceTags($body, 'body'); $html = $pre . $body . $post; Clean::cleanLeftoverJunk($html); JFactory::getApplication()->setBody($html); } public function replaceTags(&$string, $area = 'article', $context = '') { Replace::replaceTags($string, $area, $context); } } src/Clean.php 0000604 00000001570 15245530525 0007073 0 ustar 00 <?php /** * @package Tabs * @version 7.6.0 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2020 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use RegularLabs\Library\Protect as RL_Protect; class Clean { /** * Just in case you can't figure the method name out: this cleans the left-over junk */ public static function cleanLeftoverJunk(&$string) { $params = Params::get(); Protect::unprotectTags($string); RL_Protect::removeFromHtmlTagContent($string, Params::getTags(true)); RL_Protect::removeInlineComments($string, 'Tabs'); if ( ! $params->place_comments) { RL_Protect::removeCommentTags($string, 'Tabs'); } } } src/Protect.php 0000604 00000002670 15245530525 0007473 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use RegularLabs\Library\Protect as RL_Protect; class Protect { static $name = 'Tabs'; public static function _(&$string) { RL_Protect::protectHtmlCommentTags($string); RL_Protect::protectFields($string, Params::getTags(true)); RL_Protect::protectSourcerer($string); } public static function protectTags(&$string) { RL_Protect::protectTags($string, Params::getTags(true)); } public static function unprotectTags(&$string) { RL_Protect::unprotectTags($string, Params::getTags(true)); } /** * Wrap the comment in comment tags * * @param string $comment * * @return string */ public static function wrapInCommentTags($comment) { return RL_Protect::wrapInCommentTags(self::$name, $comment); } /** * Get the html start comment tags * * @return string */ public static function getCommentStartTag() { return RL_Protect::getCommentStartTag(self::$name); } /** * Get the html end comment tags * * @return string */ public static function getCommentEndTag() { return RL_Protect::getCommentEndTag(self::$name); } } src/Replace.php 0000604 00000057061 15245530525 0007432 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Router\Route as JRoute; use Joomla\CMS\Uri\Uri as JUri; use RegularLabs\Library\Alias as RL_Alias; use RegularLabs\Library\Html as RL_Html; use RegularLabs\Library\HtmlTag as RL_HtmlTag; use RegularLabs\Library\PluginTag as RL_PluginTag; use RegularLabs\Library\Protect as RL_Protect; use RegularLabs\Library\RegEx as RL_RegEx; use RegularLabs\Library\StringHelper as RL_String; use RegularLabs\Library\Title as RL_Title; use RegularLabs\Library\Uri as RL_Uri; class Replace { static $context = ''; static $sets = []; static $ids = []; static $matches = []; static $allitems = []; static $setcount = 0; public static function replaceTags(&$string, $area = 'article', $context = '') { if ( ! is_string($string) || $string == '') { return false; } self::$context = $context; // Check if tags are in the text snippet used for the search component if (strpos($context, 'com_search.') === 0) { $limit = explode('.', $context, 2); $limit = (int) array_pop($limit); $string_check = substr($string, 0, $limit); if ( ! RL_String::contains($string_check, Params::getTags(true))) { return false; } } $params = Params::get(); // allow in component? if (RL_Protect::isRestrictedComponent(isset($params->disabled_components) ? $params->disabled_components : [], $area)) { Protect::_($string); self::handlePrintPage($string); RL_Protect::unprotect($string); return true; } if ( ! RL_String::contains($string, Params::getTags(true))) { // Links with #tab-name or &tab=tab-name self::replaceLinks($string); return true; } Protect::_($string); list($start_tags, $end_tags) = Params::getTags(); list($pre_string, $string, $post_string) = RL_Html::getContentContainingSearches( $string, $start_tags, $end_tags ); if (JFactory::getApplication()->input->getInt('print', 0)) { // Replace syntax with general html on print pages self::handlePrintPage($string); $string = $pre_string . $string . $post_string; RL_Protect::unprotect($string); return true; } $sets = self::getSets($string); self::initSets($sets); // Tag syntax: {tab ...} self::replaceSyntax($string, $sets); // Closing tag: {/tab} self::replaceClosingTag($string); // Links with #tab-name or &tab=tab-name self::replaceLinks($string); // Link tag {tablink ...} self::replaceLinkTag($string); $string = $pre_string . $string . $post_string; RL_Protect::unprotect($string); return true; } private static function handlePrintPage(&$string) { $sets = self::getSets($string); self::initSets($sets); $prefix = ''; foreach ($sets as $items) { foreach ($items as $item) { $class = 'rl_tabs-print'; if ($item->open) { $class .= ' active'; } $replace = $prefix . '<div id="' . $item->id . '" class="' . $class . '">' . '<' . $item->title_tag . ' class="rl_tabs-title nn_tabs-title">' . '<a id="anchor-' . $item->id . '" class="anchor"></a>' . $item->title_full . '</' . $item->title_tag . '>'; $string = RL_String::replaceOnce($item->orig, $replace, $string); $prefix = '</div>'; } } $regex = Params::getRegex('end'); RL_RegEx::matchAll($regex, $string, $matches); $replace = '</div>'; foreach ($matches as $match) { $string = RL_String::replaceOnce($match[0], $replace, $string); $replace = ''; } $regex = Params::getRegex('link'); RL_RegEx::matchAll($regex, $string, $matches); foreach ($matches as $match) { $href = RL_Uri::get($match['id']); $link = '<a href="' . $href . '">' . $match['text'] . '</a>'; $string = RL_String::replaceOnce($match[0], $link, $string); } } public static function getSets(&$string, $only_basic_details = false) { $regex = Params::getRegex(); RL_RegEx::matchAll($regex, $string, $matches); if (empty($matches)) { return []; } self::$sets = []; $set_ids = []; foreach ($matches as $match) { if (substr($match['tag'], 0, 1) == '/') { if (empty($set_ids)) { continue; } $set_id = key($set_ids); array_pop($set_ids); if (empty($set_id)) { continue; } self::$sets[$set_id][0]->ending = $match[0]; continue; } end($set_ids); $item = self::getSetItem($match, $set_ids, $only_basic_details); if ($only_basic_details) { if ( ! isset(self::$sets['basic'])) { self::$sets['basic'] = []; } self::$sets['basic'][] = $item; continue; } if ( ! isset(self::$sets[$item->set])) { self::$sets[$item->set] = []; } self::$sets[$item->set][] = $item; } return self::$sets; } private static function getSetItem($match, &$set_ids, $only_basic_details = false) { $item = (object) []; // Set the values from the tag $tag = RL_Title::clean($match['data'], false, false); self::setTagAttributes($item, $tag); if ($only_basic_details) { return $item; } $item->orig = $match[0]; $item->set_id = trim(str_replace('-', '_', $match['set_id'])); // New set if (empty($set_ids) || current($set_ids) != $item->set_id) { self::$setcount++; $set_ids[self::$setcount . '.' . $item->set_id] = $item->set_id; } $item->set = array_search($item->set_id, array_reverse($set_ids)); $item->level = self::getSetLevel($item->set, $set_ids); list($item->pre, $item->post) = RL_Html::cleanSurroundingTags( [$match['pre'], $match['post']], ['div', 'p', 'span', 'h[0-6]'] ); return $item; } private static function getSetLevel($set_id, $set_ids) { // Sets are still empty, so this is the first set if (empty(self::$sets)) { return 1; } // Grab the level from the previous entry of this set if (isset(self::$sets[$set_id])) { return self::$sets[$set_id][0]->level; } // Look up the level of the previous set $previous_set_id = array_search(prev($set_ids), array_reverse($set_ids)); // Grab the level from the previous entry of this set if (isset(self::$sets[$previous_set_id])) { return self::$sets[$previous_set_id][0]->level + 1; } return 1; } private static function getParent($set_id, $level) { if (empty(self::$sets)) { return false; } if (isset(self::$sets[$set_id])) { return self::$sets[$set_id][0]->parent; } reset(self::$sets); $previous_set = current(self::$sets); $prev_level = $prev_level = $previous_set[0]->level; while ($prev_level >= $level) { $previous_set = prev(self::$sets); if (empty($previous_set)) { end(self::$sets); return false; } $prev_level = $previous_set[0]->level; } end(self::$sets); end($previous_set); $parent_item = key($previous_set); return [$previous_set[$parent_item]->set, $parent_item]; } private static function addChildToParent($item) { if (empty($item->parent)) { return; } list($parent_set, $parent_item) = $item->parent; if (empty(self::$sets[$parent_set]) || empty(self::$sets[$parent_set][$parent_item])) { return; } self::$sets[$parent_set][$parent_item]->children[] = $item->set; } private static function initSets(&$sets) { $params = Params::get(); $urlitem = JFactory::getApplication()->input->get('tab'); $itemcount = 0; foreach ($sets as $set_id => $items) { $opened_by_default = 0; foreach ($items as $i => $item) { $item->title = isset($item->title) ? trim($item->title) : 'Tab'; $item->title_full = $item->title; if (isset($item->{'title-opened'}) || isset($item->{'title-closed'})) { $title_closed = isset($item->{'title-closed'}) ? $item->{'title-closed'} : $item->title; $title_opened = isset($item->{'title-opened'}) ? $item->{'title-opened'} : $item->title; // Set main title to the title-opened, otherwise to title-closed $item->title = $title_opened ?: ($title_closed ?: $item->title); // place the title-opened and title-closed in css controlled spans $item->title_full = '<span class="rl_tabs-title-inactive nn_tabs-title-inactive">' . $title_closed . '</span>' . '<span class="rl_tabs-title-active nn_tabs-title-active">' . $title_opened . '</span>'; } $item->haslink = RL_RegEx::match('<a [^>]*>.*?</a>', $item->title); $item->title = RL_Title::clean($item->title, true); $item->title = $item->title ?: RL_HtmlTag::getAttributeValue('title', $item->title_full); $item->title = $item->title ?: RL_HtmlTag::getAttributeValue('alt', $item->title_full); $item->alias = RL_Alias::get(isset($item->alias) ? $item->alias : $item->title); $item->alias = $item->alias ?: 'tab'; $item->id = self::createId($item->alias); $item->set = (int) $set_id; $item->count = $i + 1; $set_keys = [ 'class', 'open', 'output_title_tag', 'title_tag', 'onclick', ]; foreach ($set_keys as $key) { $item->{$key} = isset($item->{$key}) ? $item->{$key} : (isset($params->{$key}) ? $params->{$key} : ''); } $item->matches = RL_Title::getUrlMatches([$item->id, $item->title]); $item->matches[] = ++$itemcount . ''; $item->matches[] = $item->set . '.' . ($i + 1); $item->matches[] = $item->set . '-' . ($i + 1); $item->matches = array_unique($item->matches); $item->matches = array_diff($item->matches, self::$matches); self::$matches = array_merge(self::$matches, $item->matches); if (self::itemIsOpen($item, $urlitem, $i == 0)) { $opened_by_default = $i; } // Will be set after all items are checked based on the $opened_by_default id $item->open = false; $sets[$set_id][$i] = $item; self::$allitems[] = $item; } self::setOpenItem($sets[$set_id], $opened_by_default); } } private static function itemIsOpen($item, $urlitem, $is_first = false) { if ($item->haslink) { return false; } if ( ! empty($item->close)) { return false; } if (isset($item->open)) { return $item->open; } if ($urlitem && in_array($urlitem, $item->matches)) { return true; } if ($is_first) { return true; } return false; } private static function setOpenItem(&$items, $opened_by_default = 0) { $opened_by_default = (int) $opened_by_default; while (isset($items[$opened_by_default]) && $items[$opened_by_default]->haslink) { $opened_by_default++; } if ( ! isset($items[$opened_by_default])) { return; } $items[$opened_by_default]->open = true; } private static function setTagAttributes(&$item, $string) { $values = self::getTagAttributes($string); $item = (object) array_merge((array) $item, (array) $values); } private static function getTagAttributes($string) { RL_PluginTag::protectSpecialChars($string); $is_old_syntax = (strpos($string, '|') !== false); if ($is_old_syntax) { // Fix some different old syntaxes $string = str_replace( [ '|alias:', '|align_', ], [ '|alias=', '|align=', ], $string ); } RL_PluginTag::unprotectSpecialChars($string, true); $known_boolean_keys = [ 'open', 'active', 'opened', 'default', 'scroll', 'noscroll', 'nooutline', 'outline_handles', 'outline_content', 'color_inactive_handles', ]; // Get the values from the tag $attributes = RL_PluginTag::getAttributesFromString($string, 'title', $known_boolean_keys); $key_aliases = [ 'title' => ['name'], 'title-opened' => ['title-open', 'title-active'], 'title-closed' => ['title-close', 'title-inactive'], 'open' => ['active', 'opened', 'default'], 'access' => ['accesslevels', 'accesslevel'], 'usergroup' => ['usergroups', 'group', 'groups'], 'position' => ['positioning'], 'align' => ['alignment'], 'heading_attributes' => ['li_attributes'], 'link_attributes' => ['a_attributes'], 'body_attributes' => ['content_attributes'], ]; RL_PluginTag::replaceKeyAliases($attributes, $key_aliases); if ($is_old_syntax) { self::setPositionFromOldClasses($attributes); } return $attributes; } private static function setPositionFromOldClasses(&$values) { if (empty($values->class) || ! empty($values->position)) { return; } $classes = explode(' ', $values->class); $positions = ['top', 'bottom', 'left', 'right']; $found = array_intersect($classes, $positions); if (empty($found)) { return; } $position = array_shift($found); $classes = array_diff($classes, [$position]); $values->class = implode(' ', $classes); $values->position = $position; } private static function replaceSyntax(&$string, $sets) { $regex = Params::getRegex('end'); if ( ! RL_RegEx::match($regex, $string)) { return; } foreach ($sets as $items) { self::replaceSyntaxItemList($string, $items); } } private static function replaceSyntaxItemList(&$string, $items) { $first = key($items); end($items); foreach ($items as $i => &$item) { self::replaceSyntaxItem($string, $item, $items, ($i == $first)); } } private static function replaceSyntaxItem(&$string, $item, $items, $first = 0) { if (strpos($string, $item->orig) === false) { return; } $params = Params::get(); $html = []; $html[] = $item->post; $html[] = $item->pre; if ($first && $params->place_comments) { $html[] = Protect::getCommentStartTag(); } if ( ! in_array(self::$context, ['com_search.search', 'com_search.search.article', 'com_finder.indexer'])) { $html[] = self::getPreHtml($item, $items, $first); } $class = self::getItemClass($item, 'tab-pane rl_tabs-pane nn_tabs-pane'); $body_attributes = 'role="tabpanel"' . ' aria-labelledby="tab-' . $item->id . '"' . ' aria-hidden="' . ($item->open ? 'false' : 'true') . '"'; if ( ! empty($item->body_attributes)) { $body_attributes .= ' ' . $item->body_attributes; } $html[] = '<div class="' . trim($class) . '" id="' . $item->id . '" ' . $body_attributes . '>'; if ( ! $item->haslink) { if ($item->output_title_tag) { $html[] = '<' . $item->title_tag . ' class="rl_tabs-title nn_tabs-title">'; } $class = 'anchor'; $html[] = '<a id="anchor-' . $item->id . '" class="' . $class . '"></a>'; if ($item->output_title_tag) { $html[] = $item->title . '</' . $item->title_tag . '>'; } } $html = implode("\n", $html); $string = RL_String::replaceOnce($item->orig, $html, $string); } private static function getPreHtml($item, $items, $first = 0) { if ( ! $first) { return '</div>'; } $params = Params::get(); $class = self::getMainClasses($item); $html[] = '<div class="' . trim($class) . '" role="presentation">'; $html[] = self::getNav($items); $html[] = '<div class="tab-content">'; return implode("\n", $html); } private static function getMainClasses($item) { $params = Params::get(); $classes = [ 'rl_tabs nn_tabs', $params->mainclass, ]; if ( ! empty($item->mainclass)) { $classes[] = $item->mainclass; } if ( ! empty($item->nooutline)) { $item->outline_handles = false; $item->outline_content = false; } if ( ! empty($item->outline_handles) || ! empty($item->outline_content)) { $item->nooutline = false; } $settings = [ 'nooutline', 'outline_handles', 'outline_content', 'color_inactive_handles', ]; self::addClassesBySettings($item, $classes, $settings); $align = isset($item->align) ? 'align_' . $item->align : Params::getAlignment(); $position = 'top'; $classes[] = $position; $classes[] = $align; $classes = array_diff($classes, ['']); return trim(implode(' ', $classes)); } private static function getItemClass($item, $mainclass = 'rl_tabs-tab nn_tabs-tab nav-item') { // nav-item used for Boootstrap 4 $class = [$mainclass]; if ($item->open) { $class[] = 'active'; } if ( ! empty($item->mode)) { $class[] = $item->mode == 'hover' ? 'hover' : 'click'; } $class[] = trim($item->class); return trim(implode(' ', $class)); } private static function addClassesBySettings($item, &$classes, $settings = []) { foreach ($settings as $setting) { self::addClassBySetting($item, $classes, $setting); } } private static function addClassBySetting($item, &$classes, $setting = '') { if ( (empty($item->{$setting}) && empty(Params::get()->{$setting})) || (isset($item->{$setting}) && ! $item->{$setting}) ) { return; } $classes[] = $setting; } private static function replaceClosingTag(&$string) { $params = Params::get(); $regex = Params::getRegex('end'); RL_RegEx::matchAll($regex, $string, $matches); if (empty($matches)) { return; } foreach ($matches as $match) { $html = '</div></div></div>'; if ($params->place_comments) { $html .= Protect::getCommentEndTag(); } list($pre, $post) = RL_Html::cleanSurroundingTags([$match['pre'], $match['post']]); $html = $pre . $html . $post; $string = RL_String::replaceOnce($match[0], $html, $string); } } private static function replaceLinks(&$string) { // Links with #tab-name self::replaceAnchorLinks($string); // Links with &tab=tab-name self::replaceUrlLinks($string); } private static function replaceAnchorLinks(&$string) { RL_RegEx::matchAll( '(?<link><a\s[^>]*href="(?<url>([^"]*)?)\#(?<id>[^"]*)"[^>]*>)(?<text>.*?)</a>', $string, $matches ); if (empty($matches)) { return; } self::replaceLinksMatches($string, $matches); } private static function replaceUrlLinks(&$string) { RL_RegEx::matchAll( '(?<link><a\s[^>]*href="(?<url>[^"]*)(?:\?|&(?:amp;)?)tab=(?<id>[^"\#&]*)(?:\#[^"]*)?"[^>]*>)(?<text>.*?)</a>', $string, $matches ); if (empty($matches)) { return; } self::replaceLinksMatches($string, $matches); } private static function replaceLinksMatches(&$string, $matches) { $uri = JUri::getInstance(); $current_urls = []; $current_urls[] = $uri->toString(['path']); $current_urls[] = $uri->toString(['scheme', 'host', 'path']); $current_urls[] = $uri->toString(['scheme', 'host', 'port', 'path']); foreach ($matches as $match) { $link = $match['link']; if ( strpos($link, 'data-toggle=') !== false || strpos($link, 'onclick=') !== false || strpos($link, 'rl_tabs-toggle-sm') !== false || strpos($link, 'rl_tabs-link') !== false || strpos($link, 'rl_sliders-link') !== false ) { continue; } $url = $match['url']; if (strpos($url, 'index.php/') === 0) { $url = '/' . $url; } if (strpos($url, 'index.php') === 0) { $url = JRoute::_($url); } if ($url != '' && ! in_array($url, $current_urls)) { continue; } $id = $match['id']; if ( ! self::stringHasItem($string, $id)) { // This is a link to a normal anchor or other element on the page // Remove the prepending obsolete url and leave the hash // $string = str_replace('href="' . $match['url'] . '#' . $id . '"', 'href="#' . $id . '"', $string); continue; } $attributes = self::getLinkAttributes($id); // Combine attributes with original $attributes = RL_HtmlTag::combineAttributes($link, $attributes); $html = '<a ' . $attributes . '><span class="rl_tabs-link-inner nn_tabs-link-inner">' . $match['text'] . '</span></a>'; $string = str_replace($match[0], $html, $string); } } private static function replaceLinkTag(&$string) { $regex = Params::getRegex('link'); RL_RegEx::matchAll($regex, $string, $matches); if (empty($matches)) { return; } foreach ($matches as $match) { self::replaceLinkTagMatch($string, $match); } } private static function replaceLinkTagMatch(&$string, $match) { $params = Params::get(); $id = RL_Alias::get($match['id']); if ( ! self::stringHasItem($string, $id)) { $id_by_name = self::findItemByMatch($match['id']); $id_by_id = self::findItemByMatch($id); $id = $id_by_name ?: ($id_by_id ?: $id); } if ( ! self::stringHasItem($string, $id)) { $html = '<a href="' . RL_Uri::get($id) . '">' . $match['text'] . '</a>'; if ($params->place_comments) { $html = Protect::wrapInCommentTags($html); } $string = RL_String::replaceOnce($match[0], $html, $string); return; } $html = '<a ' . self::getLinkAttributes($id) . '>' . '<span class="rl_tabs-link-inner nn_tabs-link-inner">' . $match['text'] . '</span>' . '</a>'; if ($params->place_comments) { $html = Protect::wrapInCommentTags($html); } $string = RL_String::replaceOnce($match[0], $html, $string); } private static function findItemByMatch($id) { foreach (self::$allitems as $item) { if ( ! in_array($id, $item->matches)) { continue; } return $item->id; } return false; } private static function getLinkAttributes($id) { return 'href="' . RL_Uri::get($id) . '"' . ' class="rl_tabs-link rl_tabs-link-' . $id . ' nn_tabs-link nn_tabs-link-' . $id . '"' . ' data-id="' . $id . '"'; } private static function stringHasItem(&$string, $id) { return (strpos($string, 'data-toggle="tab" data-id="' . $id . '"') !== false); } private static function getNav(&$items) { $html = []; $ul_extra = ''; // Nav for non-mobile view $html[] = '<!--googleoff: index-->'; $html[] = '<a id="rl_tabs-scrollto_' . $items[0]->set . '" class="anchor rl_tabs-scroll nn_tabs-scroll"></a>'; $html[] = '<ul class="nav nav-tabs" id="set-rl_tabs-' . $items[0]->set . '" role="tablist"' . $ul_extra . '>'; foreach ($items as $item) { $href = '#' . $item->id; $title = $item->title_full; $link_attributes = ' id="tab-' . $item->id . '"' . ' data-toggle="tab" data-id="' . $item->id . '"' . ' role="tab" aria-controls="' . $item->id . '"' . ' aria-selected="' . ($item->open ? 'true' : 'false') . '"'; $class = 'rl_tabs-toggle nn_tabs-toggle'; // nav-link used for Boootstrap 4 $class .= ' nav-link'; $onclick = ''; $heading_attributes = ''; if ( ! empty($item->heading_attributes)) { $heading_attributes .= ' ' . $item->heading_attributes; } if ($item->haslink) { if (RL_RegEx::match('<a [^>]*href="(.*?)"', $title, $match)) { $href = $match[1]; } // nav-link used for Boootstrap 4 $class = 'rl_tabs-link nav-link'; if (RL_RegEx::match('<a [^>]*class="(.*?)"', $title, $match)) { $class = trim($class . ' ' . $match[1]); } $link_attributes = ''; if (RL_RegEx::match('<a ([^>]*)', $title, $match)) { $link_attributes = $match[1]; $link_attributes = trim(RL_RegEx::replace('(href|class)=".*?"', '', $link_attributes)); } if ( ! empty($item->link_attributes)) { $link_attributes .= ' ' . $item->link_attributes; } $title = RL_RegEx::replace('<a .*?>(.*?)</a>', '\1', $title); } $html[] = '<li class="' . self::getItemClass($item) . '" ' . $heading_attributes . '>' . '<a href="' . $href . '" title="' . htmlspecialchars($item->title) . '" class="' . $class . '"' . $onclick . $link_attributes . '>' . '<span class="rl_tabs-toggle-inner nn_tabs-toggle-inner">' . $title . '</span>' . '</a>' . '</li>'; } $html[] = '</ul>'; $html[] = '<!--googleon: index-->'; return implode("\n", $html); } private static function createId($alias) { $id = $alias; $i = 1; while (in_array($id, self::$ids)) { $id = $alias . '-' . ++$i; } self::$ids[] = $id; return $id; } } src/Document.php 0000604 00000003445 15245530525 0007632 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\HTML\HTMLHelper as JHtml; use RegularLabs\Library\Document as RL_Document; class Document { public static function addHeadStuff() { // do not load scripts/styles on feeds or print pages if (RL_Document::isFeed() || JFactory::getApplication()->input->getInt('print', 0)) { return; } $params = Params::get(); if ( ! $params->load_bootstrap_framework && $params->load_jquery) { JHtml::_('jquery.framework'); } if ($params->load_bootstrap_framework) { JHtml::_('bootstrap.framework'); } $options = [ 'use_hash' => (int) $params->use_hash, 'reload_iframes' => (int) $params->reload_iframes, 'init_timeout' => (int) $params->init_timeout, 'urlscroll' => 0, ]; RL_Document::scriptOptions($options, 'Tabs'); RL_Document::script('tabs/script.min.js', ($params->media_versioning ? '8.0.1' : ''), [], [], $params->load_jquery); if ($params->load_stylesheet) { RL_Document::stylesheet('tabs/style.min.css', ($params->media_versioning ? '8.0.1' : '')); } } public static function removeHeadStuff(&$html) { // Don't remove if tabs class is found if (strpos($html, 'class="rl_tabs-tab') !== false) { return; } // remove style and script if no items are found RL_Document::removeScriptsStyles($html, 'Tabs'); RL_Document::removeScriptsOptions($html, 'Tabs'); } } src/Plugin.php 0000604 00000020370 15245530525 0007306 0 ustar 00 <?php /** * @package Tabs * @version 7.6.0 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2020 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ /* * This class is used as template (extend) for most Regular Labs plugins * This class is not placed in the Regular Labs Library as a re-usable class because * it also needs to be working when the Regular Labs Library is not installed */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; if (is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php')) { require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; } use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Installer\Installer as JInstaller; use Joomla\CMS\Language\Text as JText; use Joomla\CMS\Plugin\CMSPlugin as JPlugin; use Joomla\CMS\Plugin\PluginHelper as JPluginHelper; use ReflectionMethod; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\Language as RL_Language; use RegularLabs\Library\Protect as RL_Protect; class Plugin extends JPlugin { public $_alias = ''; public $_title = ''; public $_lang_prefix = ''; public $_has_tags = false; public $_enable_in_frontend = true; public $_enable_in_admin = false; public $_can_disable_by_url = true; public $_disable_on_components = false; public $_protected_formats = []; public $_page_types = []; private $_init = false; private $_pass = null; private $_helper = null; protected function run() { if ( ! $this->passChecks()) { return false; } if ( ! $this->getHelper()) { return false; } $caller = debug_backtrace()[1]; if (empty($caller)) { return false; } $event = $caller['function']; if ( ! method_exists($this->_helper, $event)) { return false; } $reflect = new ReflectionMethod($this->_helper, $event); $parameters = $reflect->getParameters(); $arguments = []; // Check if arguments should be passed as reference or not foreach ($parameters as $count => $parameter) { if ($parameter->isPassedByReference()) { $arguments[] = &$caller['args'][$count]; continue; } $arguments[] = $caller['args'][$count]; } // Work-around for K2 stuff :( if ($event == 'onContentPrepare' && empty($arguments[1]->id) && strpos($arguments[0], 'com_k2') === 0 ) { return false; } return call_user_func_array([$this->_helper, $event], $arguments); } /** * Create the helper object * * @return object|null The plugins helper object */ private function getHelper() { // Already initialized, so return if ($this->_init) { return $this->_helper; } $this->_init = true; RL_Language::load('plg_' . $this->_type . '_' . $this->_name); $this->init(); $this->_helper = new Helper; return $this->_helper; } private function passChecks() { if ( ! is_null($this->_pass)) { return $this->_pass; } $this->_pass = false; if ( ! $this->isFrameworkEnabled()) { return false; } if ( ! self::passPageTypes()) { return false; } // allow in frontend? if ( ! $this->_enable_in_frontend && ! RL_Document::isAdmin()) { return false; } // allow in admin? if ( ! $this->_enable_in_admin && RL_Document::isAdmin() && ( ! isset(Params::get()->enable_admin) || ! Params::get()->enable_admin)) { return false; } // disabled by url? if ($this->_can_disable_by_url && RL_Protect::isDisabledByUrl($this->_alias)) { return false; } // disabled by component? if ($this->_disable_on_components && RL_Protect::isRestrictedComponent(isset(Params::get()->disabled_components) ? Params::get()->disabled_components : [], 'component')) { return false; } // restricted page? if (RL_Protect::isRestrictedPage($this->_has_tags, $this->_protected_formats)) { return false; } if ( ! $this->extraChecks()) { return false; } $this->_pass = true; return true; } public function passPageTypes() { if (empty($this->_page_types)) { return true; } if (in_array('*', $this->_page_types)) { return true; } if (empty(JFactory::$document)) { return true; } if (RL_Document::isFeed()) { return in_array('feed', $this->_page_types); } if (RL_Document::isPDF()) { return in_array('pdf', $this->_page_types); } $page_type = JFactory::getDocument()->getType(); if (in_array($page_type, $this->_page_types)) { return true; } return false; } public function extraChecks() { $input = JFactory::getApplication()->input; // Disable on Gridbox edit form: option=com_gridbox&view=gridbox if ($input->get('option') == 'com_gridbox' && $input->get('view') == 'gridbox') { return false; } // Disable on SP PageBuilder edit form: option=com_sppagebuilder&view=form if ($input->get('option') == 'com_sppagebuilder' && $input->get('view') == 'form') { return false; } return true; } public function init() { return; } /** * Check if the Regular Labs Library is enabled * * @return bool */ private function isFrameworkEnabled() { if ( ! defined('REGULAR_LABS_LIBRARY_ENABLED')) { $this->setIsFrameworkEnabled(); } if ( ! REGULAR_LABS_LIBRARY_ENABLED) { $this->throwError('REGULAR_LABS_LIBRARY_NOT_ENABLED'); } return REGULAR_LABS_LIBRARY_ENABLED; } /** * Set the define with whether the Regular Labs Library is enabled */ private function setIsFrameworkEnabled() { // Return false if Regular Labs Library is not installed if ( ! $this->isFrameworkInstalled()) { define('REGULAR_LABS_LIBRARY_ENABLED', false); return; } if ( ! JPluginHelper::isEnabled('system', 'regularlabs')) { $this->throwError('REGULAR_LABS_LIBRARY_NOT_ENABLED'); define('REGULAR_LABS_LIBRARY_ENABLED', false); return; } define('REGULAR_LABS_LIBRARY_ENABLED', true); } /** * Check if the Regular Labs Library is installed * * @return bool */ private function isFrameworkInstalled() { if ( ! defined('REGULAR_LABS_LIBRARY_INSTALLED')) { $this->setIsFrameworkInstalled(); } switch (REGULAR_LABS_LIBRARY_INSTALLED) { case 'outdated': $this->throwError('REGULAR_LABS_LIBRARY_OUTDATED'); return false; case 'no': $this->throwError('REGULAR_LABS_LIBRARY_NOT_INSTALLED'); return false; case 'yes': default: return true; } } /** * set the define with whether the Regular Labs Library is installed */ private function setIsFrameworkInstalled() { if ( ! is_file(JPATH_PLUGINS . '/system/regularlabs/regularlabs.xml') || ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php') ) { define('REGULAR_LABS_LIBRARY_INSTALLED', 'no'); return; } $plugin = JInstaller::parseXMLInstallFile(JPATH_PLUGINS . '/system/regularlabs/regularlabs.xml'); $library = JInstaller::parseXMLInstallFile(JPATH_LIBRARIES . '/regularlabs/regularlabs.xml'); if (empty($plugin) || empty($library)) { define('REGULAR_LABS_LIBRARY_INSTALLED', 'no'); return; } if (version_compare($plugin['version'], '20.6.16076', '<') || version_compare($library['version'], '20.6.16076', '<')) { define('REGULAR_LABS_LIBRARY_INSTALLED', 'outdated'); return; } define('REGULAR_LABS_LIBRARY_INSTALLED', 'yes'); } /** * Place an error in the message queue */ private function throwError($error) { // Return if page is not an admin page or the admin login page if ( ! JFactory::getApplication()->isClient('administrator') || JFactory::getUser()->get('guest') ) { return; } // load the admin language file JFactory::getLanguage()->load('plg_' . $this->_type . '_' . $this->_name, JPATH_PLUGINS . '/' . $this->_type . '/' . $this->_name); $text = JText::sprintf($this->_lang_prefix . '_' . $error, JText::_($this->_title)); $text = JText::_($text) . ' ' . JText::sprintf($this->_lang_prefix . '_EXTENSION_CAN_NOT_FUNCTION', JText::_($this->_title)); // Check if message is not already in queue $messagequeue = JFactory::getApplication()->getMessageQueue(); foreach ($messagequeue as $message) { if ($message['message'] == $text) { return; } } JFactory::getApplication()->enqueueMessage($text, 'error'); } } src/Params.php 0000604 00000007377 15245530525 0007307 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ namespace RegularLabs\Plugin\System\Tabs; defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use RegularLabs\Library\Parameters as RL_Parameters; use RegularLabs\Library\PluginTag as RL_PluginTag; use RegularLabs\Library\RegEx as RL_RegEx; use RegularLabs\Library\Uri as RL_Uri; class Params { protected static $params = null; protected static $regexes = null; public static function get() { if ( ! is_null(self::$params)) { return self::$params; } $params = RL_Parameters::getInstance()->getPluginParams('tabs'); $params->tag_open = RL_PluginTag::clean($params->tag_open); $params->tag_close = RL_PluginTag::clean($params->tag_close); $params->tag_link = isset($params->tag_link) ? $params->tag_link : 'tablink'; $params->tag_link = RL_PluginTag::clean($params->tag_link); $params->use_responsive_view = false; self::$params = $params; return self::$params; } public static function getTags($only_start_tags = false) { $params = self::get(); list($tag_start, $tag_end) = self::getTagCharacters(); $tags = [ [ $tag_start . $params->tag_open, $tag_start . $params->tag_link, ], [ $tag_start . '/' . $params->tag_close . $tag_end, $tag_start . '/' . $params->tag_link . $tag_end, ], ]; return $only_start_tags ? $tags[0] : $tags; } public static function getAlignment() { $params = self::get(); if ( ! $params->alignment) { $params->alignment = JFactory::getLanguage()->isRTL() ? 'right' : 'left'; } return 'align_' . $params->alignment; } public static function getPositioning() { return 'top'; } public static function getRegex($type = 'tag') { $regexes = self::getRegexes(); return isset($regexes->{$type}) ? $regexes->{$type} : $regexes->tag; } private static function getRegexes() { if ( ! is_null(self::$regexes)) { return self::$regexes; } $params = self::get(); // Tag character start and end list($tag_start, $tag_end) = self::getTagCharacters(); $pre = RL_PluginTag::getRegexSurroundingTagsPre(); $post = RL_PluginTag::getRegexSurroundingTagsPost(); $inside_tag = RL_PluginTag::getRegexInsideTag($tag_start, $tag_end); $tag_start = RL_RegEx::quote($tag_start); $tag_end = RL_RegEx::quote($tag_end); $delimiter = ($params->tag_delimiter == 'space') ? RL_PluginTag::getRegexSpaces() : '='; $set_id = '(?:-[a-zA-Z0-9-_]+)?'; self::$regexes = (object) []; self::$regexes->tag = '(?<pre>' . $pre . ')' . $tag_start . '(?<tag>' . $params->tag_open . 's?' . '(?<set_id>' . $set_id . ')' . $delimiter . '(?<data>' . $inside_tag . ')' . '|/' . $params->tag_close . $set_id . ')' . $tag_end . '(?<post>' . $post . ')'; self::$regexes->end = '(?<pre>' . $pre . ')' . $tag_start . '/' . $params->tag_close . $set_id . $tag_end . '(?<post>' . $post . ')'; self::$regexes->link = $tag_start . $params->tag_link . $set_id . $delimiter . '(?<id>' . $inside_tag . ')' . $tag_end . '(?<text>.*?)' . $tag_start . '/' . $params->tag_link . $tag_end; return self::$regexes; } public static function getTagCharacters() { if ( ! isset(self::$params->tag_character_start)) { self::setTagCharacters(); } return [self::$params->tag_character_start, self::$params->tag_character_end]; } public static function setTagCharacters() { $params = self::get(); list(self::$params->tag_character_start, self::$params->tag_character_end) = explode('.', $params->tag_characters); } } tabs.php 0000604 00000006504 15245530525 0006215 0 ustar 00 <?php /** * @package Tabs * @version 8.0.1 * * @author Peter van Westen <info@regularlabs.com> * @link http://www.regularlabs.com * @copyright Copyright © 2021 Regular Labs All Rights Reserved * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL */ defined('_JEXEC') or die; use Joomla\CMS\Factory as JFactory; use Joomla\CMS\Language\Text as JText; use RegularLabs\Library\Document as RL_Document; use RegularLabs\Library\Extension as RL_Extension; use RegularLabs\Library\Html as RL_Html; use RegularLabs\Library\Language as RL_Language; use RegularLabs\Library\Plugin as RL_Plugin; use RegularLabs\Library\Protect as RL_Protect; use RegularLabs\Plugin\System\Tabs\Document; use RegularLabs\Plugin\System\Tabs\Params; use RegularLabs\Plugin\System\Tabs\Protect; use RegularLabs\Plugin\System\Tabs\Replace; // Do not instantiate plugin on install pages // to prevent installation/update breaking because of potential breaking changes $input = JFactory::getApplication()->input; if (in_array($input->get('option'), ['com_installer', 'com_regularlabsmanager']) && $input->get('action') != '') { return; } if ( ! is_file(__DIR__ . '/vendor/autoload.php')) { return; } require_once __DIR__ . '/vendor/autoload.php'; if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php')) { JFactory::getLanguage()->load('plg_system_tabs', __DIR__); JFactory::getApplication()->enqueueMessage( JText::sprintf('TAB_EXTENSION_CAN_NOT_FUNCTION', JText::_('TABS')) . ' ' . JText::_('TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED'), 'error' ); return; } require_once JPATH_LIBRARIES . '/regularlabs/autoload.php'; if (! RL_Document::isJoomlaVersion(3, 'TABS')) { RL_Extension::disable('tabs', 'plugin'); RL_Language::load('plg_system_regularlabs'); JFactory::getApplication()->enqueueMessage( JText::sprintf('RL_PLUGIN_HAS_BEEN_DISABLED', JText::_('TABS')), 'error' ); return; } if (true) { class PlgSystemTabs extends RL_Plugin { public $_lang_prefix = 'TAB'; public $_has_tags = true; public $_disable_on_components = true; public $_jversion = 3; public function processArticle(&$string, $area = 'article', $context = '', $article = null, $page = 0) { Replace::replaceTags($string, $area, $context); } protected function loadStylesAndScripts(&$buffer) { Document::addHeadStuff(); } protected function changeDocumentBuffer(&$buffer) { return Replace::replaceTags($buffer, 'component'); } protected function changeFinalHtmlOutput(&$html) { $params = Params::get(); list($tag_start, $tag_end) = Params::getTagCharacters(); if ( strpos($html, $tag_start . $params->tag_open) === false && strpos($html, 'rl_tabs-scrollto') === false ) { Document::removeHeadStuff($html); return true; } // only do stuff in body list($pre, $body, $post) = RL_Html::getBody($html); Replace::replaceTags($body, 'body'); $html = $pre . $body . $post; return true; } protected function cleanFinalHtmlOutput(&$html) { $params = Params::get(); Protect::unprotectTags($html); RL_Protect::removeFromHtmlTagContent($html, Params::getTags(true)); RL_Protect::removeInlineComments($html, 'Tabs'); if ( ! $params->place_comments) { RL_Protect::removeCommentTags($html, 'Tabs'); } } } } tabs.xml 0000604 00000025617 15245530525 0006234 0 ustar 00 <?xml version="1.0" encoding="utf-8"?> <extension version="3.9" type="plugin" group="system" method="upgrade"> <name>PLG_SYSTEM_TABS</name> <description>PLG_SYSTEM_TABS_DESC</description> <version>8.0.1</version> <creationDate>April 2021</creationDate> <author>Regular Labs (Peter van Westen)</author> <authorEmail>info@regularlabs.com</authorEmail> <authorUrl>https://regularlabs.com</authorUrl> <copyright>Copyright © 2018 Regular Labs - All Rights Reserved</copyright> <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> <scriptfile>script.install.php</scriptfile> <updateservers> <server type="extension" priority="1" name="Regular Labs - Tabs"> https://download.regularlabs.com/updates.xml?e=XXX&type=.xml </server> </updateservers> <files> <filename plugin="tabs">tabs.php</filename> <filename>script.install.helper.php</filename> <folder>language</folder> <folder>src</folder> <folder>vendor</folder> </files> <media folder="media" destination="tabs"> <folder>css</folder> <folder>js</folder> <folder>less</folder> </media> <config> <fields name="params" addfieldpath="/libraries/regularlabs/fields"> <fieldset name="basic"> <field name="@loadlanguage_regularlabs" type="rl_loadlanguage" extension="plg_system_regularlabs" /> <field name="@loadlanguage" type="rl_loadlanguage" extension="plg_system_tabs" /> <field name="@license" type="rl_license" extension="TABS" /> <field name="@version" type="rl_version" extension="TABS" /> <field name="@header" type="rl_header" label="TABS" description="TABS_DESC" url="https://regularlabs.com/tabs" /> </fieldset> <fieldset name="RL_STYLING"> <field name="load_stylesheet" type="radio" class="btn-group" default="1" label="RL_LOAD_STYLESHEET" description="RL_LOAD_STYLESHEET_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="mainclass" type="text" default="" label="TAB_MAIN_CLASS" description="TAB_MAIN_CLASS_DESC" /> <field name="@notice_positioning" type="rl_onlypro" label="TAB_POSITIONING_HANDLES" description="TAB_POSITIONING_HANDLES_DESC" /> <field name="alignment" type="radio" class="btn-group" default="" label="TAB_ALIGNMENT_HANDLES" description="TAB_ALIGNMENT_HANDLES_DESC"> <option value="">RL_AUTO</option> <option value="left"><span class="icon-reglab-paragraph-left"></span></option> <option value="right"><span class="icon-reglab-paragraph-right"></span></option> <option value="center"><span class="icon-reglab-paragraph-center"></span></option> <option value="justify"><span class="icon-reglab-paragraph-justify"></span></option> </field> <field name="color_inactive_handles" type="radio" class="btn-group" default="0" label="TAB_COLOR_INACTIVE_HANDLES" description="TAB_COLOR_INACTIVE_HANDLES_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="outline_handles" type="radio" class="btn-group" default="1" label="TAB_OUTLINE_HANDLES" description="TAB_OUTLINE_HANDLES_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="outline_content" type="radio" class="btn-group" default="1" label="TAB_OUTLINE_CONTENT" description="TAB_OUTLINE_CONTENT_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> </fieldset> <fieldset name="RL_BEHAVIOUR"> <field name="@notice_fade" type="rl_onlypro" label="TAB_FADE" description="TAB_FADE_DESC" /> <field name="@notice_mode" type="rl_onlypro" label="TAB_MODE" description="TAB_MODE_DESC" /> <field name="@block_scroll_a" type="rl_block" start="1" label="TAB_SCROLL" /> <field name="@notice_scroll" type="rl_onlypro" label="TAB_SCROLL" description="TAB_SCROLL_DESC" /> <field name="@notice_linkscroll" type="rl_onlypro" label="TAB_SCROLL_LINKS" description="TAB_SCROLL_LINKS_DESC" /> <field name="@notice_urlscroll" type="rl_onlypro" label="TAB_SCROLL_BY_URL" description="TAB_SCROLL_BY_URL_DESC" /> <field name="@notice_scrolloffset" type="rl_onlypro" label="TAB_SCROLL_OFFSET" description="TAB_SCROLL_OFFSET_DESC" /> <field name="@block_scroll_b" type="rl_block" end="1" /> <field name="@block_slideshow_a" type="rl_block" start="1" label="TAB_SLIDESHOW" /> <field name="@notice_slideshow_timeout" type="rl_onlypro" label="TAB_SLIDESHOW_TIMEOUT" description="TAB_SLIDESHOW_TIMEOUT_DESC" /> <field name="@block_slideshow_b" type="rl_block" end="1" /> </fieldset> <fieldset name="RL_SETTINGS_EDITOR_BUTTON"> <field name="button_text" type="text" default="Tabs" label="RL_BUTTON_TEXT" description="RL_BUTTON_TEXT_DESC" /> <field name="enable_frontend" type="radio" class="btn-group" default="1" label="RL_ENABLE_IN_FRONTEND" description="RL_ENABLE_IN_FRONTEND_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="button_use_simple_button" type="radio" class="btn-group" default="0" label="RL_USE_SIMPLE_BUTTON" description="RL_USE_SIMPLE_BUTTON_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="button_max_count" type="list" class="input-mini" default="10" label="TAB_MAX_TAB_COUNT" description="TAB_MAX_TAB_COUNT_DESC" showon="button_use_simple_button:0"> <option value="5">5</option> <option value="10">10</option> <option value="20">20</option> <option value="30">30</option> </field> <field name="@showon_button_use_simple_button_yes_a" type="rl_showon" value="button_use_simple_button:1" /> <field name="button_use_custom_code" type="radio" class="btn-group" default="0" label="RL_USE_CUSTOM_CODE" description="RL_USE_CUSTOM_CODE_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="button_custom_code" type="rl_textareaplus" filter="RAW" texttype="html" width="400" height="300" default="<p>{tab Tab Title 1}</p>[:SELECTION:]<p>{tab Tab Title 2}</p><p>Tab text...</p><p>{/tabs}</p>" label="RL_CUSTOM_CODE" description="RL_CUSTOM_CODE_DESC" showon="button_use_custom_code:1" /> <field name="@showon_button_use_simple_button_yes_b" type="rl_showon" /> </fieldset> <fieldset name="RL_TAG_SYNTAX"> <field name="tag_open" type="text" size="20" default="tab" label="TAB_OPENING_TAG" description="TAB_OPENING_TAG_DESC" /> <field name="tag_close" type="text" size="20" default="tabs" label="TAB_CLOSING_TAG" description="TAB_CLOSING_TAG_DESC" /> <field name="tag_delimiter" type="radio" class="btn-group" size="2" default="space" label="RL_TAG_SYNTAX" description="TAB_TAG_SYNTAX_DESC" showon="tag_delimiter:="> <option value="space">TAB_SYNTAX_SPACE</option> <option value="=">TAB_SYNTAX_IS</option> </field> <field name="tag_characters" type="list" default="{.}" class="input-small" label="RL_TAG_CHARACTERS" description="RL_TAG_CHARACTERS_DESC"> <option value="{.}">{...}</option> <option value="[.]">[...]</option> <option value="«.»">«...»</option> <option value="{{.}}">{{...}}</option> <option value="[[.]]">[[...]]</option> <option value="[:.:]">[:...:]</option> <option value="[%.%]">[%...%]</option> </field> </fieldset> <fieldset name="advanced"> <field name="@notice_use_responsive_view" type="rl_onlypro" label="TAB_USE_RESPONSIVE_VIEW" description="TAB_USE_RESPONSIVE_VIEW_DESC" /> <field name="output_title_tag" type="radio" class="btn-group" default="1" label="TAB_OUTPUT_TITLE_TAG" description="TAB_OUTPUT_TITLE_TAG_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="title_tag" type="text" size="5" class="input-mini" default="h2" label="TAB_TITLE_TAG" description="TAB_TITLE_TAG_DESC" /> <field name="use_hash" type="radio" class="btn-group" default="1" label="TAB_USE_HASH" description="TAB_USE_HASH_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="reload_iframes" type="radio" class="btn-group" default="0" label="TAB_RELOAD_IFRAMES" description="TAB_RELOAD_IFRAMES_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="init_timeout" type="number" size="5" class="input-mini" default="0" label="TAB_INIT_TIMEOUT" description="TAB_INIT_TIMEOUT_DESC" /> <field name="@notice_use_cookies" type="rl_onlypro" label="TAB_USE_COOKIES" description="TAB_USE_COOKIES_DESC" /> <field name="@notice_disabled_components" type="rl_onlypro" label="RL_DISABLE_ON_COMPONENTS" description="RL_DISABLE_ON_COMPONENTS_DESC" /> <field name="enable_admin" type="radio" class="btn-group" default="0" label="RL_ENABLE_IN_ADMIN" description="RL_ENABLE_IN_ADMIN_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="place_comments" type="radio" class="btn-group" default="1" label="RL_PLACE_HTML_COMMENTS" description="RL_PLACE_HTML_COMMENTS_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="media_versioning" type="radio" class="btn-group" default="1" label="RL_MEDIA_VERSIONING" description="RL_MEDIA_VERSIONING_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="load_bootstrap_framework" type="radio" class="btn-group" default="1" label="RL_LOAD_BOOTSTRAP_FRAMEWORK" description="RL_LOAD_BOOTSTRAP_FRAMEWORK_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="@showon_no_load_bootstrap_framework_a" type="rl_showon" value="load_bootstrap_framework:0" /> <field name="@notice_load_bootstrap_framework" type="note" class="alert alert-danger" description="RL_BOOTSTRAP_FRAMEWORK_DISABLED,TABS" /> <field name="load_jquery" type="radio" class="btn-group" default="0" label="RL_LOAD_JQUERY" description="RL_LOAD_JQUERY_DESC"> <option value="0">JNO</option> <option value="1">JYES</option> </field> <field name="@notice_no_load_jquery" type="note" class="alert alert-danger" description="RL_JQUERY_DISABLED,TABS" showon="load_jquery:0" /> <field name="@showon_no_load_bootstrap_framework_b" type="rl_showon" /> </fieldset> </fields> </config> </extension> language/ja-JP/ja-JP.plg_system_tabs.sys.ini 0000604 00000001022 15245530525 0014642 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="システム - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Joomla! 用のタブを作成!" TABS="Tabs" language/ja-JP/ja-JP.plg_system_tabs.ini 0000604 00000022636 15245530525 0014043 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="システム - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Joomla! 用のタブを作成!" TABS="Tabs" INSERT_TABS="タブを挿入" TABS_DESC="Tabs を使用すると、任意の場所に Joomla コンテンツのタブを作ることができます!<br><br>例えば、タブブロックを配置する場合には、エディタボタンを使用することができます。構文は、シンプルに次のようになります:<br><span class="rl_code">{tab title="Tab Title 1"}<br>テキスト...<br>{tab title="Tab Title 2"}<br>テキスト...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] は機能しません。" TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library プラグインが有効になっていません。" TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs フレームワークプラグインがインストールされていません。" ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." TAB_ALIAS_DESC="タイトルに基づいて 1 つのタブが生成された際に、それを違うものにしたい場合は、必要に応じてタブに別名を付加します。" TAB_ALIGNMENT_HANDLES="ハンドルの配置" TAB_ALIGNMENT_HANDLES_DESC="ハンドルの位置合わせを選択してください。オプションの「自動」ハンドルが言語設定に基づいて、左または右に配置されます。" TAB_CLICK="クリック" TAB_CLOSING_TAG="終了タグ" TAB_CLOSING_TAG_DESC="Tabs の終了タグに使用される単語。<br><br>デフォルトでは、「tabs」です。したがって、終了タグは次のようになります:<br><span class="rl_code">{/tabs}</span><br><br>このタグ構文を使用して別のプラグインを使用している場合は、単語を変更することができます。" TAB_COLOR_INACTIVE_HANDLES="非アクティブハンドルの色" TAB_COLOR_INACTIVE_HANDLES_DESC="灰色の背景を非アクティブなタブハンドルで使用する場合は選択してください。" TAB_CONTENT_DESC="エディタに挿入された後は、タブの内容を編集することができます。" TAB_DEFAULT="既定値で開始" TAB_DEFAULT_DESC="デフォルトで開かれたこのタブを作るために選択します。デフォルトとして、タブごとにタブを設定する必要があります。" TAB_ERROR_EMPTY_TITLE="最初のタブにタイトルを指定してください。" TAB_FADE="フェード" TAB_FADE_DESC="タブを切り替える歳に、コンテンツのフェードを有効にする場合は選択してください。" TAB_HOVER="ホバー" TAB_INIT_TIMEOUT="遅延の初期化" TAB_INIT_TIMEOUT_DESC="ページ読み込み後に、タブスクリプトを初期化するための、ミリ秒単位の遅延を設定してください。タブが機能するには、これが必要な場合のある他のスクリプトの後に初期化するため、これを使用することができます。" ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." TAB_MAX_TAB_COUNT="タブの最大数" TAB_MAX_TAB_COUNT_DESC="エディタボタンのポップアップウィンドウに表示されるタブの最大数を設定してください。この数を増やすと、そのウィンドウの読み込みに時間がかかることがあります。" TAB_MODE="モード" TAB_MODE_DESC="マウスのクリックやホバーで、タブを変更する必要があるかどうかを選択してください。" TAB_NESTED_ID="ネストされたセットID" TAB_NESTED_ID_DESC="ネストされたセットにID を付加します。これは、同じ親タブ内で、他にネストされたセットと同じでは機能しません。" TAB_NESTED_SET="ネストされたセットとして処理" TAB_NESTED_SET_DESC="これは、別のタブセットの内部セットがある場合に選択してください" TAB_OLD="古い学校" TAB_OPENING_TAG="開始タグ" TAB_OPENING_TAG_DESC="Tabs の開始タグに使用される単語。<br><br>デフォルトでは、「tabs」です。したがって、開始タグは次のようになります:<br><span class="rl_code">{tab title="私のタブタイトル"}</span><br><br>このタグ構文を使用して別のプラグインを使用している場合は、単語を変更することができます。" TAB_OUTLINE="外郭を使用" TAB_OUTLINE_CONTENT="コンテンツの外郭" TAB_OUTLINE_CONTENT_DESC="コンテンツの外周に境界線とパディングを持っている場合に選択してください。" TAB_OUTLINE_HANDLES="ハンドルの外郭" TAB_OUTLINE_HANDLES_DESC="タブハンドルの外周に境界線を表示する場合は選択してください。" ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="ハンドルの位置決め" TAB_POSITIONING_HANDLES_DESC="ハンドルの位置 (配置) を選択してください。" TAB_RELOAD_IFRAMES="Iframe のリロード" TAB_RELOAD_IFRAMES_DESC="最初にアクティブになるタブにある IFRAME をリロードする場合は選択してください。閉じたタブに読み込まれたときに問題が発生した IFRAME を持っている場合のみ使用してください。" TAB_SAVE_COOKIES="クッキーを保存" TAB_SAVE_COOKIES_DESC="選択した場合は、アクティブなタブがクッキーに保存されます。他のカスタムスクリプトにこの情報を使用したい場合は、これを有効にしてください。" TAB_SCROLL="トップへスクロール" TAB_SCROLL_BY_URL="URLでスクロール" TAB_SCROLL_BY_URL_DESC="選択した場合、タブがURL経由で開かれたとき、ウィンドウはタブの一番上にスクロールします。URLのタブ名の最後にマイナス (-) を追加することで、このオプションを却下することができます。<br><br>選択していない場合、これを却下し、URL内のタブ名末尾にプラス (+) を追加することで、ページのスクロールを行うことができます。" TAB_SCROLL_DESC="有効にした場合、タブを開いた際にウィンドウがタブの一番上にスクロールします。" TAB_SCROLL_LINKS="リンクのスクロール" TAB_SCROLL_LINKS_DESC="有効にした場合、タブがリンク経由で開かれたとき、ウィンドウはタブの一番上にスクロールします。" TAB_SCROLL_OFFSET="スクロールの補正" TAB_SCROLL_OFFSET_DESC="ピクセル単位でのスクロールのオフセット。これが負の数に設定されている場合、ブラウザはタブ上のポイントにスクロールします。ウェブサイトがフローティングのトップメニューを持っている場合に便利です。" TAB_SCROLL_OFFSET_MOBILE="スクロールの補正 (モバイル)" TAB_SET_SETTINGS="タブセットの設定" TAB_SLIDESHOW="スライドショー" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" TAB_SLIDESHOW_TIMEOUT_DESC="次のタブへ行く前に表示する必要がある、各タブの時間 (ミリ秒単位で) になります。" TAB_STOP_SLIDESHOW_ON_CLICK="クリックで停止" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="タブハンドルの 1 つをクリックすると、スライドショーの停止を行いたい場合は選択してください。" TAB_TAB_NUMBER="タブ [[%1:number%]]" TAB_TAG_SYNTAX_DESC="タイトルからタグ名を分離するため、タグにスペースまたは「=」を使用するか選択してください。また、これはリンクタグに影響を与えます。" TAB_TITLE_EMPTY="タイトルだけのタブが使用されます。" TAB_TITLE_TAG="タグタイトル" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="クッキーを使用" TAB_USE_COOKIES_DESC="選択した場合は、アクティブなタブはクッキーに保存され、ページが再検討された際にアクティブのままになります。" TAB_USE_HASH="ハッシュを使用" TAB_USE_HASH_DESC="選択した場合は、アクティブなタブは、URLにハッシュフラグメントを経由して設定することができ (#my-tab-title) および、タブがアクティブになった際にURLへ追加されます" TAB_USE_RESPONSIVE_VIEW="代替のモバイルビューを使用" TAB_USE_RESPONSIVE_VIEW_DESC="モバイル幅の画面上に、スタックしたナビゲーションリストのタブを変更する場合は選択してください。" language/zh-CN/zh-CN.plg_system_tabs.ini 0000604 00000015712 15245530525 0014074 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="系统 - Regular Labs - 标签" PLG_SYSTEM_TABS_DESC="标签 - 在Joomla中制作内容标签!" TABS="标签" INSERT_TABS="插入标签" TABS_DESC="使用选项卡,您可以在Joomla中的任何位置制作内容选项卡!<br><br>您可以使用编辑器按钮放置示例选项卡块。语法如下:<br><span class="rl_code">{tab title="Tab Title 1"}<br>您的文字...<br>{tab title="Tab Title 2"}<br>您的文字...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]]无法执行。" TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs依赖库插件没启用。" TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs依赖库插件未安装。" TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs依赖库插件已过时。尝试重新安装[[%1:extension name%]]。" TAB_ALIAS_DESC="如果您希望它与基于标题生成的Tabs不同,则可以选择为该选项卡指定别名。" TAB_ALIGNMENT_HANDLES="对齐句柄" TAB_ALIGNMENT_HANDLES_DESC="选择手柄的对齐。选项'自动'将根据语言设置左右对齐手柄。" TAB_CLICK="点击" TAB_CLOSING_TAG="结束标记" TAB_CLOSING_TAG_DESC="用于标签的结束标记的单词。<br><br>默认情况下,这是'标签'。所以结束标记如下所示:<br><span class =”_QQ_“rl_code”_QQ_“> { / tabs}</span><br><br>如果您正在使用另一个使用此标记语法的插件,则可以更改该单词。" TAB_COLOR_INACTIVE_HANDLES="颜色不活动句柄" TAB_COLOR_INACTIVE_HANDLES_DESC="选择为非活动标签句柄设置灰色背景。" TAB_CONTENT_DESC="您可以在将选项卡插入编辑器后对其进行编辑。" TAB_DEFAULT="默认打开" TAB_DEFAULT_DESC="选择此选项可以默认打开此选项卡。您需要为每个选项卡设置一个选项卡作为默认选项卡。" TAB_ERROR_EMPTY_TITLE="请至少为第一个标签提供标题。" TAB_FADE="变脸" TAB_FADE_DESC="选择此选项可在选项卡之间切换时启用内容淡入淡出。" TAB_HOVER="悬停" TAB_INIT_TIMEOUT="初始化延迟" TAB_INIT_TIMEOUT_DESC="设置在页面加载后初始化Tabs脚本的延迟(以毫秒为单位)。您可以使用此选项在其他可能需要此功能的脚本之后初始化Tabs。" TAB_MAIN_CLASS="主类" TAB_MAIN_CLASS_DESC="可选择在主Tabs容器中添加额外的类名。" TAB_MAX_TAB_COUNT="最大标签数" TAB_MAX_TAB_COUNT_DESC="设置编辑器按钮弹出窗口中显示的最大选项卡数。增加此数字可能会导致该窗口加载时间更长。" TAB_MODE="模式" TAB_MODE_DESC="选择是否应在鼠标单击或悬停时更改选项卡。" TAB_NESTED_ID="嵌套集ID" TAB_NESTED_ID_DESC="为嵌套集提供一个id。这不应该与同一父标签中的任何其他嵌套集相同。" TAB_NESTED_SET="处理为嵌套集" TAB_NESTED_SET_DESC="选择这是否是另一个标签集内的集合" TAB_OLD="老派" TAB_OPENING_TAG="打开标签" TAB_OPENING_TAG_DESC="用于标签的开始标记的单词。<br><br>默认情况下,这是'标签'。所以开始标记如下所示:<br><span class="rl_code">{选项卡我的选项卡标题}</span><br><br>如果您正在使用另一个使用此标记语法的插件,则可以更改该单词。" TAB_OUTLINE="使用大纲" TAB_OUTLINE_CONTENT="大纲内容" TAB_OUTLINE_CONTENT_DESC="选择在内容周围添加边框和填充。" TAB_OUTLINE_HANDLES="大纲处理" TAB_OUTLINE_HANDLES_DESC="选择在标签句柄周围设置边框。" ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="定位手柄" TAB_POSITIONING_HANDLES_DESC="选择手柄的定位(放置)。" TAB_RELOAD_IFRAMES="重新加载iframe" TAB_RELOAD_IFRAMES_DESC="选择此选项可以在第一次激活所选标签时重新加载iframe。只有当您在关闭标签中加载导致问题的iframe时才使用此功能。" TAB_SAVE_COOKIES="保存Cookie" TAB_SAVE_COOKIES_DESC="如果选中,活动选项卡将存储在cookie中。如果要在其他自定义脚本中使用此信息,请启用此选项。" TAB_SCROLL="滚动到顶部" TAB_SCROLL_BY_URL="按网址滚动" TAB_SCROLL_BY_URL_DESC="如果选中,当通过URL打开选项卡时,窗口将滚动到选项卡的顶部。您可以通过在URL中选项卡名称的末尾添加减号( - )来否决此选项。<br><br>如果未选中,则可以通过在URL中的选项卡名称末尾添加加号(+)来否决此页面并使页面滚动。" TAB_SCROLL_DESC="如果选中,当打开选项卡时,窗口将滚动到选项卡的顶部。" TAB_SCROLL_LINKS="滚动链接" TAB_SCROLL_LINKS_DESC="如果选中,当通过链接打开选项卡时,窗口将滚动到选项卡的顶部。" TAB_SCROLL_OFFSET="滚动偏移量" TAB_SCROLL_OFFSET_DESC="滚动偏移量(以像素为单位)。如果将其设置为负数,浏览器将滚动到选项卡上方的某个点。当您的网站有浮动顶级菜单时,此功能非常有用。" TAB_SCROLL_OFFSET_MOBILE="滚动偏移(移动)" TAB_SET_SETTINGS="标签设置" TAB_SLIDESHOW="幻灯片" TAB_SLIDESHOW_DESC="选择此选项可使用默认或给定的超时自动逐个打开选项卡。" TAB_SLIDESHOW_TIMEOUT="幻灯片间隔" TAB_SLIDESHOW_TIMEOUT_DESC="每个标签在转到下一个标签之前应显示的时间(以毫秒为单位)。" TAB_STOP_SLIDESHOW_ON_CLICK="点击停止" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="选择此选项可在单击其中一个选项卡控制柄时停止幻灯片放映。" TAB_TAB_NUMBER="标签[[%1:number%]]" TAB_TAG_SYNTAX_DESC="选择是否在标签中使用空格或'='来将标签名称与标题分开。这也会影响链接标签。" TAB_TITLE_EMPTY="仅使用具有标题的标签。" TAB_TITLE_TAG="标题标签" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="使用Cookie" TAB_USE_COOKIES_DESC="如果选中,活动标签将存储在Cookie中,并在重新访问页面时保持活动状态。" TAB_USE_HASH="使用哈希" TAB_USE_HASH_DESC="如果选中,则可以通过URL中的哈希片段(#my-tab-title)设置活动选项卡,并在激活选项卡时将其添加到URL中" TAB_USE_RESPONSIVE_VIEW="使用其他移动视图" TAB_USE_RESPONSIVE_VIEW_DESC="选择将标签更改为移动宽度屏幕上的堆叠导航列表。" language/zh-CN/zh-CN.plg_system_tabs.sys.ini 0000604 00000001023 15245530525 0014677 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="系统 - Regular Labs - 标签" PLG_SYSTEM_TABS_DESC="标签 - 在Joomla中制作内容标签!" TABS="标签" language/ru-RU/ru-RU.plg_system_tabs.ini 0000604 00000030641 15245530525 0014160 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - вкладки в Joomla!" TABS="Tabs" INSERT_TABS="Добавить вкладки" TABS_DESC="С помощью Tabs'а Вы можете быстро и просто создавать вкладки в Joomla! где угодно.<br><br>Синтаксис плагина таков:<br><span class="rl_code">{tab title="Заголовок первой вкладки"}<br>Содержимое первой вкладки...<br>{tab title="Заголовок второй вкладки"}<br>Содержимое второй вкладки...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не может функционировать." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Плагин Regular Labs Library не включен." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Плагин Regular Labs Library не установлен." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Плагин библиотеки Regular Labs Library plugin устарел. Попробуйте его переустановить [[%1:extension name%]]." TAB_ALIAS_DESC="Позволяет задать специальный алиас вкладке, если Вы хотите, чтобы он отличался от того, который сгенерировал плагин на основании заголовка." TAB_ALIGNMENT_HANDLES="Выравнивание блока вкладок" TAB_ALIGNMENT_HANDLES_DESC="Выберите выравнивание блока вкладок. Опция 'Auto' выровняет блок слева или справа, на основе языковых настроек" TAB_CLICK="По клику мыши" TAB_CLOSING_TAG="Закрывающий тэг" TAB_CLOSING_TAG_DESC="Слово, используемое для обозначения окончания разметки вкладок.<br><br>По-умолчанию таким словом является 'tabs'. Таким образом, закрывающий тег плагина выглядит так:<br><span class="rl_code">{/tabs}</span><br><br>Вы можете изменить закрывающий тег, если используете другой плагин, который имеет такой синтаксис." TAB_COLOR_INACTIVE_HANDLES="Цвет неактивного блока вкладок" TAB_COLOR_INACTIVE_HANDLES_DESC="Выберите для серого фона неактивного блока вкладок" TAB_CONTENT_DESC="Вы можете редактировать содержимое вкладки после того, как оно было вставлено в редактор." TAB_DEFAULT="Открыто по умолчанию" TAB_DEFAULT_DESC="Активируйте эту опцию, чтобы сделать эту вкладку открытой по умолчанию. Вам нужно задать одну из вкладок в качестве вкладки по умолчанию." TAB_ERROR_EMPTY_TITLE="Пожалуйста, задайте заголовок хотя бы для первой вкладки." TAB_FADE="Исчезать" TAB_FADE_DESC="Выберите для активации эффекта появления контента при переключении между вкладками" TAB_HOVER="При наведении мыши" TAB_INIT_TIMEOUT="Задержка инициализации" TAB_INIT_TIMEOUT_DESC="Установите задержку в миллисекундах для инициализации скрипта плагина Tabs после загрузки страницы. Вы можете использовать это для инициализации вкладок после других скриптов, для которых это нужно, чтобы корректно работать." TAB_MAIN_CLASS="Основной класс" TAB_MAIN_CLASS_DESC="При желании добавьте дополнительные имена классов в основной контейнер вкладок." TAB_MAX_TAB_COUNT="Максимальное кол-во вкладок" TAB_MAX_TAB_COUNT_DESC="Установите максимальное количество вкладок, отображаемых во всплывающем окне кнопки редактора. Увеличение этого числа может привести к тому, что это окно будет загружаться дольше." TAB_MODE="Режим открытия" TAB_MODE_DESC="Выберите способ открытия вкладок: по клику мыши или при наведении." TAB_NESTED_ID="ID вложенного набора" TAB_NESTED_ID_DESC="Задайте ID вложенному набору. Он должен отличаться от других в той же родительской вкладки." TAB_NESTED_SET="Обрабатывать как вложенный набор" TAB_NESTED_SET_DESC="Активируйте данную опцию, если это набор внутри другого набора вкладок" TAB_OLD="Старый стиль" TAB_OPENING_TAG="Открывающий тег" TAB_OPENING_TAG_DESC="Слово, используемое для обозначения начала разметки вкладок.<br><br>По-умолчанию таким словом является 'tabs'. Таким образом, открывающий тег плагина выглядит так:<br><span class="rl_code">{tab title="Заголовок вкладки"}</span><br><br>Вы можете изменить закрывающий тег, если используете другой плагин, который имеет такой синтаксис." TAB_OUTLINE="Добавить рамку" TAB_OUTLINE_CONTENT="Обрамление содержимого вкладок" TAB_OUTLINE_CONTENT_DESC="Выберите для активации обводки и отступа вокруг содержимого" TAB_OUTLINE_HANDLES="Обрамление вкладок" TAB_OUTLINE_HANDLES_DESC="Активируйте данную опцию, чтобы задать рамку вокруг элементов управления вкладки." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Позиционирование блока вкладок" TAB_POSITIONING_HANDLES_DESC="Выберите позиционирование (положение) блока вкладок" TAB_RELOAD_IFRAMES="Перезагрузка фреймов" TAB_RELOAD_IFRAMES_DESC="Активируйте данную опцию, чтобы фреймы перезагружались при первой активации вкладки. Используйте это только тогда, когда у вас есть айфреймы, которые вызывают проблемы при загрузке в закрытых вкладках." TAB_SAVE_COOKIES="Сохранять Cookies" TAB_SAVE_COOKIES_DESC="При включении данной опции номер открытой вкладки будет сохранен в куки. Если вы хотите использовать эту информацию в своих скриптах, включите данный параметр." TAB_SCROLL="Автопрокрутка" TAB_SCROLL_BY_URL="Автопрокрутка при переходе по URL" TAB_SCROLL_BY_URL_DESC="Если включено, то при указании имени вкладки в URL страница при открытии будет автоматически прокручена к началу указанной вкладки. Если эта опция включена, то для определенной вкладки можно отключить автопрокрутку, добавив знак - (минус) в URL сразу после названия вкладки.<br><br>Если эта опция ВЫключена, то для определенной вкладки можно включить автопрокрутку, добавив знак + (плюч) в URL сразу после названия вкладки." TAB_SCROLL_DESC="При включении этой опции окно браузера будет автоматически прокручиваться к заголовку вкладки при ее выборе." TAB_SCROLL_LINKS="Автопрокрутка на ссылках" TAB_SCROLL_LINKS_DESC="При переходе по ссылке на вкладку страница будет автоматически прокручена к началу вкладки." TAB_SCROLL_OFFSET="Смещение прокрутки" TAB_SCROLL_OFFSET_DESC="Смещение прокрутки в пикселях. Если для этого параметра задано отрицательное число, браузер перейдет к точке над вкладкой. Это может быть полезно, когда у Вашего сайта есть закреплённое верхнее меню." TAB_SCROLL_OFFSET_MOBILE="Внешнее смещение (мобильная версия)" TAB_SET_SETTINGS="Настройки набора вкладок" TAB_SLIDESHOW="Слайдшоу" TAB_SLIDESHOW_DESC="Активируйте данную опцию, чтобы вкладки автоматически открывались одна за другой, используя значение по умолчанию или заданное время ожидания." TAB_SLIDESHOW_TIMEOUT="Интервал слайд-шоу" TAB_SLIDESHOW_TIMEOUT_DESC="Время, в течение которого, каждая вкладка должна отображаться перед переходом к следующей вкладке (в миллисекундах)." TAB_STOP_SLIDESHOW_ON_CLICK="Остановка по нажатию" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Активируйте данную опцию, чтобы остановить слайд-шоу при нажатии на один из маркеров вкладки." TAB_TAB_NUMBER="Вкладка [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Выберите, использовать ли пробел или '=' в тегах, чтобы отделить имя тега от заголовка." TAB_TITLE_EMPTY="Будут использоваться только вкладки с заголовком." TAB_TITLE_TAG="Тег заголовка" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Использовать Cookies" TAB_USE_COOKIES_DESC="При включении данного параметра номер активной вкладки сохраняется в куки, и при следующем посещении страницы эта вкладка будет активирована автоматически." TAB_USE_HASH="Использовать #-нотацию" TAB_USE_HASH_DESC="При включении этого параметра активную вкладку можно указать прямо в URL страницы, добавив символ # в конец URL (напр.: #название-вкладки)" TAB_USE_RESPONSIVE_VIEW="Использовать мобильную версию" TAB_USE_RESPONSIVE_VIEW_DESC="Активируйте данную опцию, чтобы изменить вкладки на сложенный список навигации на экранах мобильных телефонов." language/ru-RU/ru-RU.plg_system_tabs.sys.ini 0000604 00000001005 15245530525 0014765 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - вкладки в Joomla!" TABS="Tabs" language/cs-CZ/cs-CZ.plg_system_tabs.ini 0000604 00000016541 15245530525 0014075 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Systém - Regular Labs - Záložky" PLG_SYSTEM_TABS_DESC="Záložky - vytvořte záložky obsahu v Joomla!" TABS="Záložky" INSERT_TABS="Vložit záložky" ; TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nemůže fungovat." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Zásuvný modul Knihovna Regular Labs není aktivní." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Není instalován Knihovna Regular Labs." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Zásuvný modul knihovny Regular Labs je zastaralý. Pokuste znovu nainstalovat [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Kliknutí" TAB_CLOSING_TAG="Uzavírací značka(tag)" ; TAB_CLOSING_TAG_DESC="The word used for the closing tag for tabs.<br><br>By default this is 'tabs'. So an closing tag looks like:<br><span class="rl_code">{/tabs}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." TAB_DEFAULT="Výchozí otevřený" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." TAB_ERROR_EMPTY_TITLE="Uveďte alespoň název první karty." TAB_FADE="Slábnout" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Ukázání" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." TAB_MAIN_CLASS="Hlavní třída" TAB_MAIN_CLASS_DESC="Volitelně přidejte do hlavního kontejneru Záložek další názvy tříd." TAB_MAX_TAB_COUNT="Maximální počet záložek" TAB_MAX_TAB_COUNT_DESC="Nastavte maximální počet karet zobrazených v rozbalovacím okně editoru. Zvýšením tohoto čísla může dojít k delšímu načítání okna." TAB_MODE="Režim" TAB_MODE_DESC="Zvolte, zda by se karty měly měnit kliknutím myší nebo pohybem myši." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" ; TAB_OLD="Old School" TAB_OPENING_TAG="Otevírací značka(tag)" ; TAB_OPENING_TAG_DESC="The word used for the opening tags for tabs.<br><br>By default this is 'tab'. So an opening tag looks like:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." TAB_OUTLINE="Použít obrys" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Ukládat Cookies" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." ; TAB_SCROLL="Scroll to Top" ; TAB_SCROLL_BY_URL="Scroll by URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." ; TAB_SCROLL_LINKS="Scroll on Links" ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Prezentace" TAB_SLIDESHOW_DESC="Zvolte, chcete-li, aby se záložky automaticky otevíraly jednotlivě pomocí výchozího nebo daného časového limitu." TAB_SLIDESHOW_TIMEOUT="Interval prezentace" TAB_SLIDESHOW_TIMEOUT_DESC="Čas, po který by se měla každá karta zobrazovat před přechodem na další kartu (v milisekundách)." TAB_STOP_SLIDESHOW_ON_CLICK="Zastavit při kliknutí" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Vyberte, chcete-li zastavit prezentaci, když kliknete na jednu z karet záložek." TAB_TAB_NUMBER="Tab [[%1:number%]]" ; TAB_TAG_SYNTAX_DESC="Select whether to use a space or '=' in the tags to separate the tag name from the title." TAB_TITLE_EMPTY="Použit pouze záložky s názvem." ; TAB_TITLE_TAG="Title tag" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Použít Cookies" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." TAB_USE_HASH="Použít Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" TAB_USE_RESPONSIVE_VIEW="Použít alternativní mobilní zobrazení" TAB_USE_RESPONSIVE_VIEW_DESC="Zvolte, chcete-li karty na stohovaných navigačních seznamech změnit na obrazovkách s šířkou mobilního telefonu." language/cs-CZ/cs-CZ.plg_system_tabs.sys.ini 0000604 00000001040 15245530525 0014676 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Systém - Regular Labs - Záložky" PLG_SYSTEM_TABS_DESC="Záložky - vytvořte záložky obsahu v Joomla!" TABS="Záložky" language/zh-TW/zh-TW.plg_system_tabs.ini 0000604 00000016021 15245530525 0014152 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="系統 - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - 在 Joomla! 中產生內容分頁" TABS="Tabs" INSERT_TABS="插入分頁" TABS_DESC="使用 Tabs 能在 Joomla! 中隨處產生內容分頁。<br><br>您可以使用編輯按鈕放置範例分頁區塊。 簡單語法如下所示:<br><span class="rl_code">{tab title="分頁標題 1"}<br>您的文字...<br>{tab title="分頁標題 2"}<br>您的文字...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] 無法動作。" TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library 外掛未啟用。" TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library 外掛未安裝。" ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="標籤頁的對齊方式" TAB_ALIGNMENT_HANDLES_DESC="指定標籤頁要對齊的方式,選擇 ' 自動 ' 將會基於語言設定來置左或至右。" TAB_CLICK="按一下" TAB_CLOSING_TAG="結束標籤" TAB_CLOSING_TAG_DESC="單字用在分頁的結束標籤。<br><br>預設為 'tabs',因此結束標籤如下所示:<br><span class="rl_code">{/tabs}</span><br><br>可以變更單字如果您使用另一個外掛是使用此標籤語法。" TAB_COLOR_INACTIVE_HANDLES="未開啟時的標籤頁色彩" TAB_COLOR_INACTIVE_HANDLES_DESC="啟用時,在未開啟狀態的標籤頁,背景色將會顯示為灰色" ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="淡入" TAB_FADE_DESC="選取啟用在切換下滑時淡入淡出內容。" TAB_HOVER="指向" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="模式" TAB_MODE_DESC="選取滑鼠按一下或暫留時是否應變更分頁。" ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="舊版" TAB_OPENING_TAG="開始標籤" TAB_OPENING_TAG_DESC="單字用在分頁的開始標籤。<br><br>預設為 'tab',因此開始標籤如下所示:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>可以變更單字如果您使用另一個外掛是使用此標籤語法。" TAB_OUTLINE="使用外框" TAB_OUTLINE_CONTENT="內容加上外框" TAB_OUTLINE_CONTENT_DESC="選擇' 是 ',在內容周圍將會加上內距(padding)以及框線(border)。" TAB_OUTLINE_HANDLES="標籤頁加上外框" TAB_OUTLINE_HANDLES_DESC="選擇' 是 ',在標籤頁周圍將會加上框線(border)。" ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="標籤頁位置" TAB_POSITIONING_HANDLES_DESC="選擇標籤頁的位置 (放置)" ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="儲存 Cookies" TAB_SAVE_COOKIES_DESC="如果選取,作用中分頁將存放在 Cookies。 啟用此如果您要在其它自訂 scripts 使用此資訊。" TAB_SCROLL="捲動到頂端" TAB_SCROLL_BY_URL="由 URL 捲動" TAB_SCROLL_BY_URL_DESC="如果選取,透過 URL 開啟分頁時視窗將捲動到分頁的頂端。 您可以在 URL 的分頁名稱結尾加上減號 (-) 覆寫此選項的結果。<br><br>如果未選取,您可以在 URL 的分頁名稱結尾加上加號 (+) 覆寫此結果並使頁面捲動。" TAB_SCROLL_DESC="如果選取,分頁開啟時視窗將捲動到分頁的頂端。" TAB_SCROLL_LINKS="在 Links 捲動" TAB_SCROLL_LINKS_DESC="如果選取,分頁透過 Links 開啟時視窗將捲動到分頁的頂端。" TAB_SCROLL_OFFSET="捲動偏移" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." TAB_SCROLL_OFFSET_MOBILE="捲動偏移 (行動裝置)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="選取是否在標籤使用空格或 '=' 從標題分隔標籤名稱。 這也影響連結標籤。" ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="標題標籤" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="使用 Cookies" TAB_USE_COOKIES_DESC="如果選取,作用中分頁將存放在 Cookies 且當重新訪問頁面時繼續作用。" TAB_USE_HASH="使用 Hash" TAB_USE_HASH_DESC="如果選取,作用中分頁能在 URL 中透過 hash 分段設定 (#my-tab-title) 並當分頁啟動時加入到 URL" TAB_USE_RESPONSIVE_VIEW="使用行動裝置的替代瀏覽版面" TAB_USE_RESPONSIVE_VIEW_DESC="在行動裝置上,將標籤頁自動切換成一個堆疊的導覽列表。" language/zh-TW/zh-TW.plg_system_tabs.sys.ini 0000604 00000001015 15245530525 0014764 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="系統 - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - 在 Joomla! 中產生內容分頁" TABS="Tabs" language/it-IT/it-IT.plg_system_tabs.ini 0000604 00000016105 15245530525 0014107 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - crea i tab con contenuto in Joomla!" TABS="Tabs" INSERT_TABS="Iserisci Tabs" ; TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] non può funzionare." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Il plugin Regular Labs Library non è abilitato." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Il plugin Regular Labs Library non è installato." TAB_REGULAR_LABS_LIBRARY_OUTDATED="La libreria Regular Labs non è aggiornata. Prova a reinstallare [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Clicca" TAB_CLOSING_TAG="Tag di Chiusura" TAB_CLOSING_TAG_DESC="Parola usata per il tag di chiusura dei tabs.<br><br>Normalmente è 'tabs'. Un tag di chiusura è quindi tipo:<br><span class="rl_code">{/tabs}</span><br><br>Puoi cambiare la parola se altri plugin usano la stessa parola." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." TAB_DEFAULT="Aperto Predefinito" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Fade" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Modalità" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Vecchio Stile" TAB_OPENING_TAG="Tag di apertura" TAB_OPENING_TAG_DESC="Parola usata per il tag di apertura dei tabs.<br><br>Normalmente è 'tabs'. Un tag di apertura è quindi tipo:<br><span class="rl_code">{/tabs}</span><br><br>Puoi cambiare la parola se altri plugin usano la stessa parola." ; TAB_OUTLINE="Use outline" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." TAB_RELOAD_IFRAMES="Ricarica Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Salva Cookies" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." TAB_SCROLL="Scrolla verso l'alto" TAB_SCROLL_BY_URL="Scorri per URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." TAB_SCROLL_LINKS="Scroll ai Links" ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Seleziona per usare uno spazio o '=' nei tag per separare il nome del tag dal titolo." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." ; TAB_TITLE_TAG="Title tag" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Usa Cookies" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." ; TAB_USE_HASH="Use Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/it-IT/it-IT.plg_system_tabs.sys.ini 0000604 00000001017 15245530525 0014720 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - crea i tab con contenuto in Joomla!" TABS="Tabs" language/bg-BG/bg-BG.plg_system_tabs.ini 0000604 00000020302 15245530525 0013761 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Системна - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - създава табове в съдържанието на Joomla!" TABS="Tabs" INSERT_TABS="Вмъкване на табове" TABS_DESC="С Tabs Вие можете да поставите табове където и да е в Joomla!<br><br>Синтаксиса изглежда като:<br><span class="rl_code">{tab title="Име на таб 1"}<br>Вашият текст...<br>{tab title="Име на таб 2"}<br>Вашият текст...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не може да функционира." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Добавката Regular Labs Library не е включена." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Добавката Regular Labs Library не е инсталирана." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Версията на Regular Labs Library плъгина е стара. Опитайте да я преинсталирате [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." ; TAB_CLICK="Click" TAB_CLOSING_TAG="Етикет за затваряне" TAB_CLOSING_TAG_DESC="Тази дума ще се ползва за затваряне на етикет.<br><br>По подразбиране това е 'табове'. Затварянето на табове изглежда така:<br><span class="rl_code">{/tabs}</span><br><br>Можете да я смените, ако ползвате друга добавка която ползва този синтаксис." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." ; TAB_FADE="Fade" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." ; TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Вид" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" ; TAB_OLD="Old School" TAB_OPENING_TAG="Етикет за отваряне" TAB_OPENING_TAG_DESC="Тази дума ще се ползва за отваряне на етикет.<br><br>По подразбиране това е 'таб'. Отварянето изглежда така:<br><span class="rl_code">{tab title="Име на моя таб"}</span><br><br>Можете да я смените, ако ползвате друга добавка която ползва този синтаксис." TAB_OUTLINE="Ограждане" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Запис на Cookies" TAB_SAVE_COOKIES_DESC="Ако е избрано, активните табове ще се записват в cookies. Включете това, ако иксате да ползвате информацията в други скриптове." TAB_SCROLL="Скролиране към началото" TAB_SCROLL_BY_URL="Скролиране чрез URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." TAB_SCROLL_DESC="Ако е избрано, прозореца ще скролира до горната част с табове, когато има отворен таб." TAB_SCROLL_LINKS="Скролиране на връзките за таб" TAB_SCROLL_LINKS_DESC="Ако е избрано, прозореца ще скролира до горната част с таобве, когато таб е отворен през връзка за таб." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Изберете дали да се ползва интервал или '='." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Име на етикет" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Ползване на Cookies" TAB_USE_COOKIES_DESC="Ако е активно, конфигурацията за изглед на табовете ще се записва в браузъра на посетителя." ; TAB_USE_HASH="Use Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/bg-BG/bg-BG.plg_system_tabs.sys.ini 0000604 00000001072 15245530525 0014601 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Системна - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - създава табове в съдържанието на Joomla!" TABS="Tabs" language/es-ES/es-ES.plg_system_tabs.ini 0000604 00000020042 15245530525 0014056 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistema - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - crea pestañas de contenido en Joomla!" TABS="Pestañas" INSERT_TABS="Insertar pestañas" TABS_DESC="Con Tabs puedes crear pestañas de contenido en cualquier sitio en Joomla!<br><br>La sintaxis es:<br><span class="rl_code">{tab title="Titulo de Pestaña 1"}<br>Tu texto...<br>{tab title="Titulo de Pestaña 2"}<br>Tu texto...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] no puede funcionar." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="El plugin Regular Labs Library no está habilitado." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="El plugin Regular Labs Library no está instalado." TAB_REGULAR_LABS_LIBRARY_OUTDATED="El plugin de Regular Labs Library está desactualizado. Intente reinstalando [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Manejadores de alineación" TAB_ALIGNMENT_HANDLES_DESC="Selecciona la alineación de los manejadores. La opción 'Auto' alineará los manejadores a la izquierda o a la derecha basándose en la configuración de idioma." TAB_CLICK="Clic" TAB_CLOSING_TAG="Etiqueta de cierre" TAB_CLOSING_TAG_DESC="La palabra usada como etiqueta de cierre de las pestañas.<br><br>Por defecto es 'tabs'. Así, una etiqueta de cierre de pestaña se vería:<br><span class="rl_code">{/tabs}</span><br><br>Puedes cambiar la palabra si estás empleando otro plugin que use esta sintaxis de etiquetas." TAB_COLOR_INACTIVE_HANDLES="Colorear manejadores inactivos" TAB_COLOR_INACTIVE_HANDLES_DESC="Selecciona para tener un fondo gris para los manejadores de pestañas inactivas." TAB_CONTENT_DESC="Puedes editar el contenido de la pestaña después de insertarla en el editor." TAB_DEFAULT="Abierta por defecto" TAB_DEFAULT_DESC="Selecciona para hacer esta pestaña abierta por defecto. Tienes que seleccionar una pestaña por defecto." TAB_ERROR_EMPTY_TITLE="Por favor, dale un nombre al menos a la primera pestaña." TAB_FADE="Fundido" TAB_FADE_DESC="Selecciona para activar el fundido del contenido al alternar entre pestañas." TAB_HOVER="Superponer" TAB_INIT_TIMEOUT="Retardo al iniciar" TAB_INIT_TIMEOUT_DESC="Ajustar el retardo en milisegundos para inicializar el script de pestañas después de pageload. Puede usar esto para hacer las lengüetas inicializar después de otros scripts que requieran para funcionar." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." TAB_MAX_TAB_COUNT="Máximo número de pestañas" TAB_MAX_TAB_COUNT_DESC="Ajusta el número máximo de pestañas mostradas en la ventana emergente del botón del editor. Incrementar este número puede ocasionar que la ventana tarde mucho en cargar." TAB_MODE="Modo" TAB_MODE_DESC="Selecciona si las pestañas deben cambiar al hacer clic o al pasar el ratón sobre ellas." TAB_NESTED_ID="ID del Set de Pestañas" TAB_NESTED_ID_DESC="Poner un id al set anidado. Debe ser diferente a cualquier otro set anidado que haya dentro de la misma pestaña madre." TAB_NESTED_SET="Manejar como un Set Anidado" TAB_NESTED_SET_DESC="Selecciona si este es un set dentro de otro set de pestañas" TAB_OLD="Vieja escuela" TAB_OPENING_TAG="Etiqueta de apertura" TAB_OPENING_TAG_DESC="La palabra usada como etiqueta de apertura de las pestañas.<br><br>Por defecto es 'tab'. Así, una etiqueta de apertura se vería:<br><span class="rl_code">{tab title="Mi Titulo de Pestaña"}</span><br><br>Puedes cambiar la palabra si estás empleando otro plugin que use esta sintaxis de etiquetas." TAB_OUTLINE="Usar línea de contorno" TAB_OUTLINE_CONTENT="Contornear contenido" TAB_OUTLINE_CONTENT_DESC="Selecciona para tener un borde y espacio alrededor del contenido." TAB_OUTLINE_HANDLES="Manejadores del contorno" TAB_OUTLINE_HANDLES_DESC="Selecciona para tener un borde alrededor de los manejadores de pestaña." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Manejadores de posición" TAB_POSITIONING_HANDLES_DESC="Selecciona la posición (emplazamiento) de los manejadores." TAB_RELOAD_IFRAMES="Recargar iframes" TAB_RELOAD_IFRAMES_DESC="Selecciona para que los iframes se recarguen la primera vez que la pestaña es activada. Usa esto solo cuando tengas iframes que causen problemas al cargarse en pestañas cerradas." TAB_SAVE_COOKIES="Guardar cookies" TAB_SAVE_COOKIES_DESC="Si está seleccionado, las pestañas activas se almacenarán en las cookies. Activa esto si quieres usar esta información en otros scripts personalizados." TAB_SCROLL="Desplazar hasta arriba" TAB_SCROLL_BY_URL="Desplazar por URL" TAB_SCROLL_BY_URL_DESC="Si está seleccionado, la ventana se desplazará a la parte superior de las pestañas cuando se abre una pestaña vía URL. Puedes anular esta opción añadiendo un menos (-) al final del nombre de la pestaña en la URL.<br><br>Si no está seleccionado, puedes anular la opción y hacer que la página se desplace agregando un más (+) al final del nombre de la pestaña en la URL." TAB_SCROLL_DESC="Si está seleccionado, la ventana se desplazará a la parte superior de de las pestañas cuando se abre una pestaña." TAB_SCROLL_LINKS="Desplazamiento en Enlaces" TAB_SCROLL_LINKS_DESC="Si está seleccionado, la ventana se desplazará hasta arriba de las pestañas cuando se abre una pestaña a traves de un enlace." TAB_SCROLL_OFFSET="Compensación de desplazamiento" TAB_SCROLL_OFFSET_DESC="Compensación de desplazamiento en píxeles. Si tiene un valor negativo, el navegador se desplazará a un punto por encima de la pestaña. Esto puede ser práctico cuando tu web tiene un menú superior flotante." TAB_SCROLL_OFFSET_MOBILE="Compensación de desplazamiento (móvil)" TAB_SET_SETTINGS="Ajustes del Set de Pestañas" TAB_SLIDESHOW="Pase de diapositivas" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." TAB_SLIDESHOW_TIMEOUT="Tiempo del pase de diapositivas" TAB_SLIDESHOW_TIMEOUT_DESC="El tiempo que cada pestaña debe mostrarse antes de pasar a la siguiente pestaña (en milisegundos)." TAB_STOP_SLIDESHOW_ON_CLICK="Detener al clicar" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Selecciona para detener el pase de diapositivas al clicar en uno de los manejadores de pestaña." TAB_TAB_NUMBER="Pestaña[[%1:número%]]" TAB_TAG_SYNTAX_DESC="Seleccione si desea utilizar un espacio o '=' en las etiquetas para separar el nombre de etiqueta del título." TAB_TITLE_EMPTY="Solo se usarán las pestañas que tengan título." TAB_TITLE_TAG="Etiqueta de título" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Usar cookies" TAB_USE_COOKIES_DESC="Si está seleccionado, las pestañas activas serán almacenadas en las cookies y permanecerán activas cuando se vuelva a visitar la página." TAB_USE_HASH="Utilizar hash" TAB_USE_HASH_DESC="Si está seleccionado, la pestaña activa puede establecerse mediante el uso de hash en la dirección URL (#mi-titulo-de-pestaña) y se agregará a la dirección URL cuando se activa una pestaña" TAB_USE_RESPONSIVE_VIEW="Usar la vista de móvil alternativa" TAB_USE_RESPONSIVE_VIEW_DESC="Selecciona para cambiar las pestañas a una navegación de lista apilada en pantallas con ancho de móvil." language/es-ES/es-ES.plg_system_tabs.sys.ini 0000604 00000001030 15245530525 0014667 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistema - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - crea pestañas de contenido en Joomla!" TABS="Pestañas" language/nl-NL/nl-NL.plg_system_tabs.sys.ini 0000604 00000001010 15245530525 0014675 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Systeem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - maak inhoud tabs in Joomla!" TABS="Tabs" language/nl-NL/nl-NL.plg_system_tabs.ini 0000604 00000016661 15245530525 0014102 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Systeem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - maak inhoud tabs in Joomla!" TABS="Tabs" INSERT_TABS="Tabs invoegen" TABS_DESC="Met Tabs kunt u overal in Joomla! inhoud tabs invoegen<br><br>De syntax ziet er als volgt uit:<br><span class="rl_code">{tab title="Tab titel 1"}<br>Uw tekst...<br>{tab title="Tab titel 2"}<br>Uw tekst...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] zal niet goed functioneren." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is niet gepubliceerd." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin is niet geïnstalleerd." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is verouderd. Probeer de [[%1:extension name%]] opnieuw te installeren." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Uitlijning labels" TAB_ALIGNMENT_HANDLES_DESC="Selecteer de uitlijning van de labels. Optie 'Auto' zal de labels links of rechts uitlijnen, afhankelik van de taalinstellingen." TAB_CLICK="Klik" TAB_CLOSING_TAG="Sluittag" TAB_CLOSING_TAG_DESC="Het woord dat wordt gebruikt voor de sluittag voor tabs.<br><br>Standaard is dit 'tabs'. Dus een sluittag ziet er uit als:<br><span class="rl_code">{/tabs}</span><br><br>U kunt het woord wijzigen als u een andere plugin hebt die dit label als syntaxis gebruikt." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Vervagen" TAB_FADE_DESC="Selecteer om fading van content in te schakelen bij het wisselen tussen tabs." TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." TAB_MAX_TAB_COUNT="Maximum aantal Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Modus" TAB_MODE_DESC="Selecteer of de tabs moeten veranderen op muis klik of hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Klassiek" TAB_OPENING_TAG="Openingstag" TAB_OPENING_TAG_DESC="Het woord dat wordt gebruikt als openingstag voor tabs.<br><br>Standaard is dit 'tab'. Dus een openingstag ziet er uit als:<br><span class="rl_code">{tab title="Mijn tab titel"}</span><br><br>U kunt het woord wijzigen als u een andere plugin hebt die dit label als syntaxis gebruikt." TAB_OUTLINE="Gebruik omlijning" TAB_OUTLINE_CONTENT="Omlijning inhoud" TAB_OUTLINE_CONTENT_DESC="Selecteer deze optie om lijnen en padding te plaatsen rond de inhoud." TAB_OUTLINE_HANDLES="Omlijning labels" TAB_OUTLINE_HANDLES_DESC="Selecteer deze optie om de labels te omlijnen." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Positionering greepjes" TAB_POSITIONING_HANDLES_DESC="Selecteer de positionering (plaatsing) van de greepjes." TAB_RELOAD_IFRAMES="Herlaad Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Cookies opslaan" TAB_SAVE_COOKIES_DESC="Indien geselecteerd, worden actieve tabbladen opgeslagen in de cookies. Zet dit aan als u deze informatie wilt gebruiken in andere aangepaste scripts." TAB_SCROLL="Scroll naar boven" TAB_SCROLL_BY_URL="Scroll via URL" TAB_SCROLL_BY_URL_DESC="Indien geselecteerd, wordt het venster naar de bovenkant van de tabs gescrolled wanneer een tab wordt geopend via de URL. U kunt deze optie overrulen door de toevoeging van een min (-) teken aan het eind van de tab naam in de URL.<br><br>Indien niet geselecteerd, kunt u dit overrulen en de pagina laten scrollen door de toevoeging van een plus (+) teken aan het eind van de tab naam in de URL." TAB_SCROLL_DESC="Indien geselecteerd, wordt het venster naar de bovenkant van de tabs gescrolled wanneer een tab wordt geopend." TAB_SCROLL_LINKS="Scroll via links" TAB_SCROLL_LINKS_DESC="Indien geselecteerd, wordt het venster naar de bovenkant van de tabs gescrolled wanneer een tab wordt geopend via een link." TAB_SCROLL_OFFSET="Scroll offset" TAB_SCROLL_OFFSET_DESC="De scroll offset in pixel. Indien hier een negatief getal staat, zal de browser scrollen naar een punt boven de tab. Dat kan nuttig zijn wanneer uw website een zwevend menu boven heeft." TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobiel)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Diashow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Selecteer of u een spatie of een '=' wilt gebruiken in de tags om de tagnaam te scheiden van de titel." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Titel tag" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Gebruik cookies" TAB_USE_COOKIES_DESC="Indien geselecteerd, worden actieve tabs opgeslagen in cookies en blijven actief wanneer de pagina opnieuw wordt bezocht." TAB_USE_HASH="Gebruik Hash" TAB_USE_HASH_DESC="Indien geselecteerd, kan de actieve tab worden ingesteld via het hash fragment in de URL (#my-tab-titel) en zal worden toegevoegd aan de URL wanneer een tab is geactiveerd" TAB_USE_RESPONSIVE_VIEW="Gebruik alternatieve weergave mobiel" TAB_USE_RESPONSIVE_VIEW_DESC="Selecteer om de tabs te wijzigen in een gestapelde navigatie op smallere schermen van mobieltjes." language/ca-ES/ca-ES.plg_system_tabs.ini 0000604 00000016357 15245530525 0014024 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - per a fer pestanyes a Joomla!" TABS="Tabs" INSERT_TABS="Inserir Pestanyes" TABS_DESC="Amb Tabs podeu posar pestanyes arreu del vostre Joomla!<br><br>La sintaxi es així:<br><span class="rl_code">{tab title="Pestanya Titol 1"}<br>El vostre texte...<br>{tab title="Pestanya Titol 2"}<br>Mes texte...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] no pot funcionar." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="El plugin Regular Labs Library no está activat." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="El plugin Regular Labs Library no està instal·lat." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Click" TAB_CLOSING_TAG="Etiqueta (Tag)per tancar" TAB_CLOSING_TAG_DESC="La etiqueta a emprar per acabar de fer pestanyes<br><br>per defecte es 'tabs'. Així doncs tancar un grup de pestanyes seria:<br><span class="rl_code">{/tabs}</span><br><br>Podeu canviar aquesta etiqueta si empreu un altre conector (plugin) que tingui la mateixa sintaxi." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Fade" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." ; TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Mode" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" ; TAB_OLD="Old School" TAB_OPENING_TAG="Pestanya inicial (Tag)" TAB_OPENING_TAG_DESC="La paraula emprada per obrir pestanyes (tabs).<br><br>Per defecte es 'tab'. així com per exemple:<br><span class="rl_code">{tab title="El meu titol"}</span><br><br>Podeu canviar aquesta paraula si teniu altra conector (plugin) que ja emprea aquesta sintaxi." TAB_OUTLINE="Usar perfils" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Guardar Cookies" TAB_SAVE_COOKIES_DESC="Si activat, Les pestanyes actives es guarda`an a les cookies. Activeu-ho si voleu emprar aquesta informació a altres scripts." TAB_SCROLL="Scroll Amunt" TAB_SCROLL_BY_URL="Scroll per URL" TAB_SCROLL_BY_URL_DESC="Si activat, La finestra farà scroll al capdemunt de les pestanyes quan la pestanya sigui oberta via URL. Podeu sobreescriure aquesta opció afegint el signe menys (-) al final del nom de la pestanya a la URL.<br><br>Si no ho activeu, podeu sobreescriure-ho i fer scroll de la pàgina afegint el signe mes (+) al final del nom de la pestanya a la URL." TAB_SCROLL_DESC="Si activeu, la finestra farà scroll fins al capdemunt de les pestanyes quan obriu una d'elles." TAB_SCROLL_LINKS="Scroll als Links" TAB_SCROLL_LINKS_DESC="Si activat, la finestra farà scroll al capdemunt de les pestanyes quan la pestanya sigui oberta via a link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Seleccioneu si voleu fer servir un espai o '=' a les etiquetes per separar el nom del títol." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Titol TAG" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Usar Cookies" TAB_USE_COOKIES_DESC="Si activat, Les pestanyes actives seran guardades a les cookies i romandran actives quan revisiteu la pàgina." ; TAB_USE_HASH="Use Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/ca-ES/ca-ES.plg_system_tabs.sys.ini 0000604 00000001011 15245530525 0014616 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - per a fer pestanyes a Joomla!" TABS="Tabs" language/tr-TR/tr-TR.plg_system_tabs.ini 0000604 00000020247 15245530525 0014155 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Joomla sitelere içerik sekmeleri eklenmesini sağlar." TABS="Tabs" INSERT_TABS="Sekme Ekleyin" TABS_DESC="Tabs kullanarak joomla sitelerde istediğiniz yere içerik sekmeleri ekleyebilirsiniz.<br><br>Söz dizimi şu şekildedir:<br><span class="rl_code">{tab title="Sekme Başlığı 1"}<br>Metniniz...<br>{tab title="Sekme Başlığı 2"}<br>Metniniz...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] çalışamaz." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Kütüphanesi uygulama eki etkinleştirilmemiş." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Kütüphanesi uygulama eki kurulmamış." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Kütüphanesi uygulama eki güncel değil. Lütfen [[%1:extension name%]] uygulamasını yeniden kurmayı deneyin." TAB_ALIAS_DESC="İsteğe bağlı olarak sekmeye başlığa göre oluşturulan kısaltmadan farklı bir kısaltma yazabilirsiniz." TAB_ALIGNMENT_HANDLES="Tutamak Hizası" TAB_ALIGNMENT_HANDLES_DESC="Tutamakların hizalamasını seçin. 'Otomatik' seçeneği tutmakları dil ayarına göre sağa ya da sola doğru hizalar." TAB_CLICK="Tıklama" TAB_CLOSING_TAG="Kapanış Etiketi" TAB_CLOSING_TAG_DESC="Tabs etiketini kapatmak için kullanılacak sözcük.<br><br>Varsayılan olarak 'tabs' kullanılır. Bir kapanış etiketi şu şekilde görünür:<br><span class="rl_code">{/tabs}</span><br><br>Bu kod imi söz dizimini kullanan başka bir eklenti kullanıyorsanız etiket sözcüğünü değiştirebilirsiniz." TAB_COLOR_INACTIVE_HANDLES="Etkin Olmayan Tutamakların Rengi" TAB_COLOR_INACTIVE_HANDLES_DESC="Bu seçenek etkin olursa, etkin olmayan tutamakların art alanı gri olur." TAB_CONTENT_DESC="Sekme içeriğini, editöre ekledikten sonra düzenleyebilirsiniz." TAB_DEFAULT="Varsayılan Olarak Açılsın" TAB_DEFAULT_DESC="Bu seçenek etkin olursa, bu sekme varsayılan olarak açılır. Yalnız bir varsayılan sekme seçilebilir." TAB_ERROR_EMPTY_TITLE="En azından ilk sekme için bir başlık yazmalısınız." TAB_FADE="Soldurma" TAB_FADE_DESC="Bu seçenek etkin olursa, sekmeler arasında geçiş yaparken içerik soldurulur." TAB_HOVER="Duraksama" TAB_INIT_TIMEOUT="Yükleme Gecikmesi" TAB_INIT_TIMEOUT_DESC="Sayfa yüklendiktren sonra Tabs betiğinin ne kadar süre sonra yükleneceğini milisaniye cinsinden belirtin. Bu seçenek kullanılarak Tabs betiğinin çalışması için gereken diğer betiklerin yüklenmesi beklenebilir." TAB_MAIN_CLASS="Ana Sınıf" TAB_MAIN_CLASS_DESC="İsteğe bağlı olarak ana Tabs sınıfına ek sınıf adları ekleyebilirsiniz." TAB_MAX_TAB_COUNT="En Fazla Sekme Sayısı" TAB_MAX_TAB_COUNT_DESC="Düzenleyici düğmesi ile açılan pencerede görüntülenecek en fazla sekme sayısını yazın. Bu sayının arttırılması pencerenin daha uzun sürede yüklenmesine yol açar." TAB_MODE="Mod" TAB_MODE_DESC="Fare ile tıklandığında ya da sekme üzerine gelindiğinde değişiklik olup olmayacağını seçin." TAB_NESTED_ID="İçiçe Küme Kodu" TAB_NESTED_ID_DESC="İçiçe küme kodunu yazın. Bu kod aynı üst skme içindeki başka bir içiçe küme kodu ile aynı olmamalıdır." TAB_NESTED_SET="İçiçe Küme Olarak İşlensin" TAB_NESTED_SET_DESC="Bu seçenek etkin olursa, bü küme başka bir sekme kümesi içinde olarak değerlendirilir." TAB_OLD="Eski Yöntem" TAB_OPENING_TAG="Açılış Etiketi" TAB_OPENING_TAG_DESC="Tabs etiketini açmak için kullanılacak sözcük.<br><br>Varsayılan olarak 'tab' kullanılır. Bir açılış etiketi şu şekilde görünür:<br><span class="rl_code">{tab title="Kaydırıcı Başlığı"}</span><br><br>Bu etiket söz dizimini kullanan başka bir eklenti kullanıyorsanız etiket sözcüğünü değiştirebilirsiniz." TAB_OUTLINE="Çerçeve Kullanılsın" TAB_OUTLINE_CONTENT="Çerçeve İçeriği" TAB_OUTLINE_CONTENT_DESC="İçeriğin çevresindeki kenarlık ve boşluğu seçin." TAB_OUTLINE_HANDLES="Tutamak Çerçevesi" TAB_OUTLINE_HANDLES_DESC="Sekme tutamaçlarının çevresinde kenarlık olmasını seçin." TAB_OUTPUT_TITLE_TAG="Çıktı Başlık Etiketi" TAB_OUTPUT_TITLE_TAG_DESC="Başlık etiketini çıkarmak için seçin. Bu etiketler sekmeler oluşturulduğunda gizlenecek, ancak kaydırıcıların kullanılmadığı sayfalarda (javascript desteklemeyen tarayıcılarda olduğu gibi) görünür olacaktır." TAB_POSITIONING_HANDLES="Tutamak Konumu" TAB_POSITIONING_HANDLES_DESC="Tutamakların konumunu (yerini) seçin." TAB_RELOAD_IFRAMES="Iframe Bileşenleri Yeniden Yüklensin" TAB_RELOAD_IFRAMES_DESC="Bu seçenek etkin olursa, sekme ilk kez yüklenip etkinleştirildiğinde IFrame bileşenleri yeniden yüklenir. Bu seçenek yalnız kapalı sekme ile IFrame sorunları yaşanıyorsa etkinleştirilmelidir." TAB_SAVE_COOKIES="Çerez Kaydedilsin" TAB_SAVE_COOKIES_DESC="Bu seçenek etkin olursa, etkin sekme bileşenleri çerezler içinde saklanır. Bu bilgiyi başka uyarlanmış betiklerde kullanıyorsanız bu seçeneği etkinleştirin." TAB_SCROLL="Üste Kaydırılsın" TAB_SCROLL_BY_URL="Adrese Göre Kaydırılsın" TAB_SCROLL_BY_URL_DESC="Bu seçenek etkin olursa, bir sekme bir adres kullanılarak açıldığında pencere sekme bileşeninin üstüne kaydırılır. Bu seçeneği adresteki sekme adının sonuna bir eksi (-) işareti ekleyerek devre dışı bırakabilirsiniz.<br><br>Bu seçenek devre dışı bırakıldığında bu seçeneği adresteki sekme adının sonuna bir artı (+) işareti ekleyerek değiştirebilir ve sayfayı kaydırabilirsiniz." TAB_SCROLL_DESC="Bu seçenek etkin olursa, bir sekme bir bağlantı kullanılarak açıldığında pencere sekme üstüne kaydırılır." TAB_SCROLL_LINKS="Bağlantılarda Kaydırılsın" TAB_SCROLL_LINKS_DESC="Bu seçenek etkin olursa, bir sekme açıldığında pencere sekme üstüne kaydırılır." TAB_SCROLL_OFFSET="Kaydırma Boyutu" TAB_SCROLL_OFFSET_DESC="Piksel cinsinden kaydırma boyutu. Negatif bir sayı yazılırsa, web tarayıcı sekme üzerindeki bir noktaya kaydırır. Bu seçenek web sitenizde yüzen bir üst menü varsa yararlıdır." TAB_SCROLL_OFFSET_MOBILE="Kaydırma Boyutu (mobil)" TAB_SET_SETTINGS="Sekme Kümesi Ayarları" TAB_SLIDESHOW="Slayt Gösterisi" TAB_SLIDESHOW_DESC="Bu seçenek etkin olursa, sekmeler varsayılan ya da belirtilen süreye göre otomatik olarak açılır." TAB_SLIDESHOW_TIMEOUT="Slayt Gösterisi Süresi" TAB_SLIDESHOW_TIMEOUT_DESC="Her bir sekmenin sonraki sekme açılmadan önce görüntüleneceği süre (milisaniye cinsinden)." TAB_STOP_SLIDESHOW_ON_CLICK="Tıklandığında Durdurulsun" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Bu seçenek etkin olursa, sekme tutamaklarına tıklandığında slay gösterisi durur." TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Etiketin başlıktan boşluk ya da '=' karakteri ile ayrılacağını belirtin." TAB_TITLE_EMPTY="Yalnız bir başlığı olan sekmeler kullanılır." TAB_TITLE_TAG="Başlık Etiketi" TAB_TITLE_TAG_DESC="Bu, sekme başlıkları için kullanılan etiket türüdür. Bu etiketler sekmeler oluşturulduğunda gizlenir, ancak sekmelerin işlenmeyen sayfalarında (yazdırma sayfasında veya javascript desteklemeyen tarayıcılarda olduğu gibi) görünür olacaktır." TAB_USE_COOKIES="Çerezler Kullanılsın" TAB_USE_COOKIES_DESC="Bu seçenek etkin olursa, etkin sekme bileşenleri çerezler içinde saklanır ve sayfa yeniden ziyaret edildiğinde kullanılır." TAB_USE_HASH="Karma Kullanılsın" TAB_USE_HASH_DESC="Bu seçenek etkin olursa, etkin sekme için adres içinde bir karma değeri ayarlanabilir (#sekme-basligi) ve bir sekme etkin olduğunda adrese eklenir." TAB_USE_RESPONSIVE_VIEW="Alternatif Mobil Görünüm Kullanılsın" TAB_USE_RESPONSIVE_VIEW_DESC="Bu seçenek etkin olursa, mobil genişlikteki ekranlar için sekmeler duyarlı gezinme şeklinde görüntülenir." language/tr-TR/tr-TR.plg_system_tabs.sys.ini 0000604 00000001042 15245530525 0014762 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Joomla sitelere içerik sekmeleri eklenmesini sağlar." TABS="Tabs" language/sv-SE/sv-SE.plg_system_tabs.ini 0000604 00000016510 15245530525 0014125 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - skapa flikar i Joomla!" TABS="Tabs" INSERT_TABS="Infoga flikar" TABS_DESC="Med Tabs kan du skapa flikar i texter var som helst i Joomla!<br><br>Syntaxen är enkel:<br><span class="rl_code">{tab title="Flikrubrik 1"}<br>Din text...<br>{tab title="Flikrubrik 2"}<br>Din text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kan inte fungera." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin är inte aktiverad." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin är inte installerad." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Biblioteksplugin är för gammal. Försök att installera den igen [[%1:extension name%]]." TAB_ALIAS_DESC="Du kan fliken ett alias om du vill att den skall vara annorlunda jämfört med dem andra som baseras på rubrik." TAB_ALIGNMENT_HANDLES="Flikjustering" TAB_ALIGNMENT_HANDLES_DESC="Välj justering av flikarna. Alternativet 'Auto' justerar flikarna till vänster eller höger beroende på språkinställningarna." TAB_CLICK="Klicka" TAB_CLOSING_TAG="Sluttaggen" TAB_CLOSING_TAG_DESC="Ordet som används för att avsluta flikblocket.<br><br>Som standard är det 'tabs'. Så en sluttagg ser ut så här:<br><span class="rl_code">{/tabs}</span><br><br>Du kan ändra ordet om en annan plugin redan använder denna taggsyntax." TAB_COLOR_INACTIVE_HANDLES="Färg på Inaktiva handtag" TAB_COLOR_INACTIVE_HANDLES_DESC="Markera för att få en grå bakgrund på de inaktiva flikarna." TAB_CONTENT_DESC="Du kan ändra innehållet i fliken efter att den infogats i editorn." TAB_DEFAULT="Öppnad som standard" TAB_DEFAULT_DESC="Välj detta för att denna flik skall vara öppnad som standard. Du måste ange en flik som standard per flikgrupp ." TAB_ERROR_EMPTY_TITLE="Ge minst den första fliken en rubrik." TAB_FADE="Tona" TAB_FADE_DESC="Markera detta för att aktivera nedtoning av innehållet vid växling mellan flikar." TAB_HOVER="Peka" TAB_INIT_TIMEOUT="Startfördröjning" TAB_INIT_TIMEOUT_DESC="Ange en fördröjning i millisekunder att starta Flik-skriptet efter att sidan laddats. Du kan använda detta för att ladda in Flikerna efter att andra skripts körts för att få den att fungera." TAB_MAIN_CLASS="Huvudklass" TAB_MAIN_CLASS_DESC="Du kan lägga till extra klassnamn till flikarnas container." TAB_MAX_TAB_COUNT="Maximalt antal flikar." TAB_MAX_TAB_COUNT_DESC="Ange det maximala antalet flikar som visas i editorns knapp-fönster. Om du ökar antalet så tar det längre tid för fönstret att laddas." TAB_MODE="Läge" TAB_MODE_DESC="Välj om flikarna ska ändras på musklick eller vid pekning." TAB_NESTED_ID="Nästlad Grupp-ID" TAB_NESTED_ID_DESC="Ge den nästlade gruppen ett ID. Detta måste vara unikt och inte samma som någon annan i samma överliggande grupp." TAB_NESTED_SET="Hantera som nästlad grupp" TAB_NESTED_SET_DESC="Välj om denna grupp skall vara inne i en annan grupp." TAB_OLD="Gammalt sätt" TAB_OPENING_TAG="Starttaggen" TAB_OPENING_TAG_DESC="Ord som används till starttaggen i ett flikblock.<br><br>Som standard är det 'tab'. Så en starttagg ser ut så här:<br><span class="rl_code">{tab title="Min flikrubrik"}</span><br><br>Du kan ändra ordet om en annan plugin använder samma taggsyntax." TAB_OUTLINE="Använd kantlinje" TAB_OUTLINE_CONTENT="Rama in Innehåll" TAB_OUTLINE_CONTENT_DESC="Markera detta för att ha ram och innermarginal runt innehållet." TAB_OUTLINE_HANDLES="Ramhandtag" TAB_OUTLINE_HANDLES_DESC="Markera detta för att ha ramar runt flikarna." TAB_OUTPUT_TITLE_TAG="Resultat Rubrik-tagg" TAB_OUTPUT_TITLE_TAG_DESC="Markera för att mata ut rubriktaggen. Dessa taggar kommer att döljas när flikarna genereras, men visas på sidor där sliders inte hanteras (som i webbläsare som inte stöder javascript)." TAB_POSITIONING_HANDLES="Placera handtag" TAB_POSITIONING_HANDLES_DESC="Välj en position (placering) för handtagen." TAB_RELOAD_IFRAMES="Ladda om Iframes" TAB_RELOAD_IFRAMES_DESC="Välj att ladda om iFrames första gången som flikar som den är i är aktiverade. Används endast om du har iFrames som orsakar problem vid inladdning i stängda flikar." TAB_SAVE_COOKIES="Spara Cookies" TAB_SAVE_COOKIES_DESC="Om markerad, kommer de aktiva flikarna att sparas i en cookie. Aktivera detta om du vill använda denna information i andra anpassade skript." TAB_SCROLL="Bläddra högst upp" TAB_SCROLL_BY_URL="Bläddra efter URL" TAB_SCROLL_BY_URL_DESC="Om markerad, kommer fönstret bläddra upp till toppen av flikarna när en flik öppnas via URL. Du kan åsidosätta detta alternativ genom att lägga till ett minustecken (-) till slutet av flikens namn i webbadressen.<br><br>Om inte markerad kan du åsidosätta detta och göra att sidan bläddras genom att lägga till ett plustecken (+) till slutet av flikens namn i webbadressen." TAB_SCROLL_DESC="Om markerad, kommer fönstret att bläddra upp till toppen av flikarna när en flik öppnas." TAB_SCROLL_LINKS="Bläddra på Fliklänkar" TAB_SCROLL_LINKS_DESC="Om markerad, kommer fönstret bläddra upp till toppen av flikarna när en flik öppnas via en fliklänk." TAB_SCROLL_OFFSET="Rullgräns" TAB_SCROLL_OFFSET_DESC="En rullningsgräns i pixlar. Om detta sätts till ett negativt tal, kan webbläsaren rulla till en punkt ovanför flikarna. Detta kan vara användbart om webbplatsen har en flytande toppmeny." TAB_SCROLL_OFFSET_MOBILE="Rullgräns (mobil)" TAB_SET_SETTINGS="Flikgrupp-inställningar" TAB_SLIDESHOW="Bildväxlare" TAB_SLIDESHOW_DESC="Markera detta för att flikarna skall öppnas automatiskt en-efter-en med en standard eller angiven tidsintervall." TAB_SLIDESHOW_TIMEOUT="Bildintervall" TAB_SLIDESHOW_TIMEOUT_DESC="Den tid varje flik skall visas innan nästa flik visas (i millisekunder)." TAB_STOP_SLIDESHOW_ON_CLICK="Stoppa vid klick" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Välj detta för att stoppa bildväxlaren när man klickar på någon av flikarna." TAB_TAB_NUMBER="Flik [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Välj om du vill använda mellanslag eller '=' i taggar för att separera taggens namn från rubriken." TAB_TITLE_EMPTY="Endast flikar med rubriker, kommer att användas." TAB_TITLE_TAG="Rubriktagg" TAB_TITLE_TAG_DESC="Detta är den tagg som används för flikarnas rubriker. Dessa taggar kommer att döljas när bilderna genereras, men kommer att synas på sidor där flikarna inte hanteras (som på en sida för utskrift eller i webbläsare som inte stöder JavaScript)." TAB_USE_COOKIES="Använd Cookies" TAB_USE_COOKIES_DESC="Om markerad, kommer aktiva flikar att sparas i cookies och förblir aktiv när sidan återbesöks eller laddas om." TAB_USE_HASH="Använd #" TAB_USE_HASH_DESC="Om markerad kan den aktiva fliken sättas via #-delen i URL:en (#min-tab-rubrik) och läggs till URL:en när fliken är aktiv." TAB_USE_RESPONSIVE_VIEW="Använd alternativ mobil-vy" TAB_USE_RESPONSIVE_VIEW_DESC="Markera för att ändra flikar till en staplad navigeringslista på skärmar med mobil-bredd" language/sv-SE/sv-SE.plg_system_tabs.sys.ini 0000604 00000001002 15245530525 0014730 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - skapa flikar i Joomla!" TABS="Tabs" language/lt-LT/lt-LT.plg_system_tabs.sys.ini 0000604 00000001017 15245530525 0014734 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistema - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - prideda turino skirtukus Joomloje!" TABS="Tabs" language/lt-LT/lt-LT.plg_system_tabs.ini 0000604 00000017150 15245530525 0014124 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistema - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - prideda turino skirtukus Joomloje!" TABS="Tabs" INSERT_TABS="Įterpti skirtukus" TABS_DESC="Su Tabs galite pridėti turinio skirtukus bet kurioje vietoje.<br><br>Sintaksė paprastai atrodo taip:<br><span class="rl_code">{tab title="Skirtuko pavadinimas 1"}<br>Jūsų tekstas...<br>{tab title="Skirtuko pavadinimas 2"}<br>Jūsų tekstas...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] negali funkcionuoti." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library įskiepis nėra įgalintas." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library įskiepis nėra įdiegtas." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Lygiavimo apdorojimas" TAB_ALIGNMENT_HANDLES_DESC="Pasirinkite kontūrų lygiavimą. Parinktis 'auto' lygiuos kontūrą kairėje arba dešinėje, priklausomai nuo kalbos nustatymų." TAB_CLICK="Paspaudus" TAB_CLOSING_TAG="Uždaranti žymė" TAB_CLOSING_TAG_DESC="Žodis, naudojamas skirtuko uždarymo žymei.<br><br>Pagal nutylėjimą tai yra 'tabs'. Taigi, uždarymo žymė atrodo taip:<br><span class="rl_code">{/tabs}</span><br><br>Jūs galite pakeisti žodį, jei Jūs naudojate kitą įskiepį, kuris naudoja šią žymės sintaksę." TAB_COLOR_INACTIVE_HANDLES="Neaktyvių skirtukų spalva" TAB_COLOR_INACTIVE_HANDLES_DESC="Pažymėkite, kad neaktyvūs skirtukai būtų pilkos spalvos." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Išnykimas" TAB_FADE_DESC="Pasirinkite, kad įgalinti turinio išnykimą, kai persijungiama tarp skirtukų." TAB_HOVER="Užvedus" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Rėžimas" TAB_MODE_DESC="Pasirinkite, ar skirtukai turėtų pakeisti paspaudus pelės mygtuką, ar užvedus pelės kursorių." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Old School" TAB_OPENING_TAG="Atidaranti žymė" TAB_OPENING_TAG_DESC="Žodis, naudojamas skirtuko atidarymo žymei.<br><br>Pagal nutylėjimą tai yra 'tab'. Taigi, atidarymo žymė atrodo taip:<br><span class="rl_code">{tab title="Skirtuko pavadinimas"}</span><br><br>Jūs galite pakeisti žodį, jei Jūs naudojate kitą įskiepį, kuris naudoja šią žymės sintaksę." TAB_OUTLINE="Naudoti kontūrą" TAB_OUTLINE_CONTENT="Turinio kontūrai" TAB_OUTLINE_CONTENT_DESC="Pažymėkite, jei norite, kad aplink turinį būtų rėmelis ir atitraukimas." TAB_OUTLINE_HANDLES="Kontūras aplink kraštines" TAB_OUTLINE_HANDLES_DESC="Pažymėkite, jei norite, kad aplink skirtukus būtų rėmelis." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Pozicionavimo apdorojimas" TAB_POSITIONING_HANDLES_DESC="Pasirinkite pozicionavimo (talpinimo) adorojimą." TAB_RELOAD_IFRAMES="Perkrauti Iframe" TAB_RELOAD_IFRAMES_DESC="Pasirinkite. kad iframe perkrautų pirmą kartą skirtuką po aktyvavimo. Naudokite tik tada, kai iframe sukelia problemas, įkeliant uždarytus skirtukus." TAB_SAVE_COOKIES="Išsaugoti slapukus" TAB_SAVE_COOKIES_DESC="Jei pasirinkta, aktyvūs skirtukai bus išsaugoti slapukuose. Įgalinkite tai, jei norite naudoti šią informaciją kituose pasirinktiniuose scenarijuose." TAB_SCROLL="Pereiti į viršų" TAB_SCROLL_BY_URL="Perėjimas pagal URL" TAB_SCROLL_BY_URL_DESC="Jei pasirinkta, langas bus persuktas iki pirmojo skirtuko viršaus tada, kai skirtukas yra atidarytas per nuorodą. Galite panaikinti šią parinktį, nuorodoje pridedant minuso ženklą (-) prie skirtuko pavadinimo pabaigos.<br><br>Jei nepasirinkta, galite panaikinti šią parinktį, nuorodoje pridedant pliuso ženklą (+) prie skirtuko pavadinimo pabaigos." TAB_SCROLL_DESC="Jei pasirinkta, langas bus persuktas iki pirmojo skirtuko viršaus tada, kai skirtukas yra atidarytas." TAB_SCROLL_LINKS="Pereiti į skirtukų nuorodas" TAB_SCROLL_LINKS_DESC="Jei pasirinkta, langas pereis iki skirtuko viršaus, tada skirtukas bus atidarytas per skirtuko nuorodą." TAB_SCROLL_OFFSET="Perėjimo poslinkis" TAB_SCROLL_OFFSET_DESC="Perėjimo poslinkis pikseliais. Jei nurodytas neigiamas skaičius, naršyklė slinks į tašką, esantį aukščiau skirtuko. Tai gali būti naudinga, kad svetainėje naudojamas plaukiojantis viršutinis meniu." TAB_SCROLL_OFFSET_MOBILE="Perėjimo poslinkis (mobiliems)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Demonstracija" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Pasirinkite, ar naudoti tarpą ar '=' žymėje, kad atskirti žymę nuo pavadinimo." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Pavadinimo žymė" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Naudoti slapukus" TAB_USE_COOKIES_DESC="Jei pasirinkta, aktyvūs skirtukai bus išsaugoti slapukuose ir išliks aktyvūs, kai kitą kartą apsilankysite puslapyje." TAB_USE_HASH="Naudoti hash'ą" TAB_USE_HASH_DESC="Jei pasirinkta, aktyvus skirtukas gali būti nustatytas naudojant hash'o fragmentą nuorodoje (#skirtuko-pavadinimas) ir gali būti pridėtas prie nuorodos, kai skirtukas yra aktyvuotas" TAB_USE_RESPONSIVE_VIEW="Naudoti alternatyvų mobilų rodinį" TAB_USE_RESPONSIVE_VIEW_DESC="Pažymėkite, jei norite pakeisti skirtukų navigacijos sąrašą mobiliųjų ekranuose." language/id-ID/id-ID.plg_system_tabs.sys.ini 0000604 00000001006 15245530525 0014616 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - buat tab konten di Joomla!" TABS="Tabs" language/id-ID/id-ID.plg_system_tabs.ini 0000604 00000016536 15245530525 0014017 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - buat tab konten di Joomla!" TABS="Tabs" INSERT_TABS="Sisipkan Tab" TABS_DESC="Dengan Tabs anda dapat membuat tab konten dimana saja di Joomla!<br><br>Sintaksnya seperti:<br><span class="rl_code">{tab title="Judul Tab 1"}<br>Teks anda...<br>{tab title="Judul Tab 2"}<br>Teks anda...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] tidak berfungsi." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Plugin Pustaka Regular Labs tidak diaktifkan." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Plugin Pustaka Regular Labs tidak terpasang." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." TAB_ALIAS_DESC="Berikan tab sebuah alias secara opsional bila anda ingin ia berbeda dari Tab yang dihasilkan berdasarkan judul." TAB_ALIGNMENT_HANDLES="Kendali Perataan" TAB_ALIGNMENT_HANDLES_DESC="Pilih kendali perataan. Opsi 'Otomatis' akan meratakan ke kiri atau kanan berdasarkan pengaturan bahasa." TAB_CLICK="Klik" TAB_CLOSING_TAG="Tagar penutup" TAB_CLOSING_TAG_DESC="Kata yang digunakan untuk tagar penutup tabs.<br><br>Secara standar adalah 'tabs'. Maka tagar penutup akan seperti:<br><span class="rl_code">{/tabs}</span><br><br>Anda dapat menggantinya jika ada plugin lain yang telah menggunakan sintaks ini." TAB_COLOR_INACTIVE_HANDLES="Kendali Warna Tidak Aktif" TAB_COLOR_INACTIVE_HANDLES_DESC="Pilih warna latar abu-abu untuk kendali tab yang tidak-aktif." TAB_CONTENT_DESC="Anda dapat mengedit konten tab setelah memasukkannya ke dalam editor." TAB_DEFAULT="Terbuka secara Standar" TAB_DEFAULT_DESC="Pilih untuk membuat tab ini terbuka secara standar. Anda perlu mengatur salah satu tab sebagai standar." TAB_ERROR_EMPTY_TITLE="Berikan sebuah judul setidaknya pada tab yang pertama." TAB_FADE="Menghilang" TAB_FADE_DESC="Pilih untuk mengaktifkan menghilangnya konten ketika beralih diantara tab." TAB_HOVER="Hover" TAB_INIT_TIMEOUT="Tunda Inisiasi" TAB_INIT_TIMEOUT_DESC="Atur penundaan dalam milidetik untuk memulai skrip Tabs setelah muat halaman. Anda dapat menggunakan ini untuk membuat Tabs terpicu setelah skrip lainnya yang mungkin memerlukan ini agar dapat bekerja." TAB_MAIN_CLASS="Kelas Utama" TAB_MAIN_CLASS_DESC="Tambah nama kelas tambahan secara opsional ke dalam kontainer Tabs utama." TAB_MAX_TAB_COUNT="Jumlah maksimal Tabs" TAB_MAX_TAB_COUNT_DESC="Atur jumlah maksimal dari tabs yang ditampilkan di dalam jendela popup tombol editor. Menaikkan angka ini dapat mengakibatkan jendela dimuat lebih lama." TAB_MODE="Mode" TAB_MODE_DESC="Pilih apakah tab harus berganti pada saat tetikus diklik atau sedang berada di atasnya." TAB_NESTED_ID="ID Sekumpulan Bersarang" TAB_NESTED_ID_DESC="Berikan id untuk sekumpulan sarang. Ini tidak harus sama dengan sarang yang lainnya yang ada di dalam tab induk yang sama." TAB_NESTED_SET="Kendalikan sebagai Sekumpulan Sarang" TAB_NESTED_SET_DESC="Pilih apakah ini adalah sekumpulan di dalam sekumpulan tab yang lainnya" TAB_OLD="Cara Lama" TAB_OPENING_TAG="Tagar Pembuka" TAB_OPENING_TAG_DESC="Kata yang digunakan untuk tagar pembuka tabs.<br><br>Secara standar adalah 'tab'. Maka tagar pembukanya akan seperti:<br><span class="rl_code">{tab title="Judul Tab Saya"}</span><br><br>Anda dapat menggantinya jika ada plugin lain yang telah menggunakan sintaks tagar ini." TAB_OUTLINE="Gunakan garis luar" TAB_OUTLINE_CONTENT="Garis Luar Konten" TAB_OUTLINE_CONTENT_DESC="Pilih untuk menggunakan garis dan padding di sekeliling konten." TAB_OUTLINE_HANDLES="Kendali Garis Luar" TAB_OUTLINE_HANDLES_DESC="Pilih untuk menggunakan garis di sekeliling kendali tab." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Kendali Posisi" TAB_POSITIONING_HANDLES_DESC="Pilih posisi (penempatan) dari kendali." TAB_RELOAD_IFRAMES="Muat ulang Iframes" TAB_RELOAD_IFRAMES_DESC="Pilih untuk memuat ulang iframe pada saat pertama kali tab diaktifkan. Hanya gunakan ini bila anda memiliki iframe yang menyebabkan masalah pada saat dimuat di tab yang berdekatan." TAB_SAVE_COOKIES="Simpan Cookie" TAB_SAVE_COOKIES_DESC="Jika dipilih, tab yang sedang aktif akan disimpan di dalam cookie. Aktifkan ini jika anda ingin menggunakan informasi ini di dalam skrip kustom lain." TAB_SCROLL="Gulir ke Atas" TAB_SCROLL_BY_URL="Gulir berdasarkan URL" TAB_SCROLL_BY_URL_DESC="Jika dipilih, jendela akan bergulir ke atas tab pada saat tab terbuka melalui URL. Anda dapat mengganti opsi ini dengan menambahkan tanda minus (-) ke bagian akhir nama tab di dalam URL.<br><br>Jika tidak dipilih, anda dapat mengganti ini dan membuat halaman bergulir dengan menambahkan tanda tambah (+) di bagian akhir nama tab di dalam URL." TAB_SCROLL_DESC="Jika dipilih, jendela akan bergulir ke atas tab pada saat tab terbuka." TAB_SCROLL_LINKS="Gulir pada Tautan" TAB_SCROLL_LINKS_DESC="Jika dipilih, jendela akan bergulir ke atas tab pada saat tab terbuka melalui sebuah tautan." TAB_SCROLL_OFFSET="Offset gulir" TAB_SCROLL_OFFSET_DESC="Offset (atau batas) gulir dalam pixel. Jika ini diatur ke angka negatif, browser akan bergulir ke titik di atas tab. Ini dapat berguna sekali jika situs anda memiliki menu atas yang mengambang." TAB_SCROLL_OFFSET_MOBILE="Offset gulir (mobile)" TAB_SET_SETTINGS="Pengaturan Sekumpulan Tab" TAB_SLIDESHOW="Slideshow" TAB_SLIDESHOW_DESC="Pilih untuk membuat tab terbuka satu per satu secara otomatis berdasarkan waktu tertentu atau standar." TAB_SLIDESHOW_TIMEOUT="Interval Slideshow" TAB_SLIDESHOW_TIMEOUT_DESC="Waktu masing-masing tab tampil sebelum tab selanjutnya (dalam milidetik)." TAB_STOP_SLIDESHOW_ON_CLICK="Berhenti saat klik" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Pilih untuk menghentikan slideshow ketika mengklik salah satu kendali tab." TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Pilih apakah akan memakai spasi atau '=' di dalam tagar untuk memisahkan nama tagar dari judul." TAB_TITLE_EMPTY="Hanya tab yang memiliki judul yang akan digunakan." TAB_TITLE_TAG="Tagar judul" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Gunakan Cookie" TAB_USE_COOKIES_DESC="Jika dipilih, tab yang sedang aktif akan disimpan di dalam cookie dan tetap aktif pada saat halaman dikunjungi kembali." TAB_USE_HASH="Gunakan Tanda Pagar" TAB_USE_HASH_DESC="Jika dipilih, tab yang sedang aktif akan diatur melalui suatu fragmen tanda pagar di dalam URL (#judul-tab-saya) dan akan ditambahkan ke URL jika tab diaktifkan." TAB_USE_RESPONSIVE_VIEW="Gunakan tampilkan mobile alternatif" TAB_USE_RESPONSIVE_VIEW_DESC="Pilih untuk mengganti tab menjadi daftar navigasi pada lebar layar ponsel." language/sl-SI/sl-SI.plg_system_tabs.sys.ini 0000604 00000001020 15245530525 0014714 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - dodajanje zavihkov v vsebino Joomla!" TABS="Tabs" language/sl-SI/sl-SI.plg_system_tabs.ini 0000604 00000016245 15245530525 0014116 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Sistem - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - dodajanje zavihkov v vsebino Joomla!" TABS="Tabs" INSERT_TABS="Zavihek" TABS_DESC="Z Tabs boste lahko dodali zavihke kjerkoli v vsebino v Joomla!<br><br>Sintaksa preprosto izgleda:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne more delovati." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library vtičnik ni omogočen." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library vtičnik ni nameščen." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Poravnava ročaja" TAB_ALIGNMENT_HANDLES_DESC="Izberite poravnavo ročajev. Možnost 'Auto' bo uskladila ročice levo ali desno na temelju jezikovnih nastavitev." TAB_CLICK="Kliknite" TAB_CLOSING_TAG="Zapiranje oznake" TAB_CLOSING_TAG_DESC="Beseda se uporablja za zapiranje oznake za zavihke.<br><br>Privzeto je 'tabs'. Torej, zapiranje oznake izgleda:<br><span class="rl_code">{/tabs}</span><br><br>Spremenite lahko besedo, če uporabljate drug vtičnik, ki uporablja to oznake sintakso." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Pojemanje" TAB_FADE_DESC="Izberite, za omogočanje pojemanja vsebine, ko preklapljate med zavihki." TAB_HOVER="Postavite" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Način" TAB_MODE_DESC="Izberite, ali naj zavihki spremenijo na klik miške ali lebdenje." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Stara šola" TAB_OPENING_TAG="Odpiranje oznake" TAB_OPENING_TAG_DESC="Beseda se uporablja za odpiranje oznake za zavihke.<br><br>Privzeto je 'tab'. Torej odpiranje oznake izgleda:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>Spremenite lahko besedo, če uporabljate drug vtičnik, ki uporablja to oznake sintakso." TAB_OUTLINE="Uporabite oris" TAB_OUTLINE_CONTENT="Oris vsebine" TAB_OUTLINE_CONTENT_DESC="Izberite možnost obrobe in oblazinjenja okrog vsebine." TAB_OUTLINE_HANDLES="Oris ročajev" TAB_OUTLINE_HANDLES_DESC="Izberite možnost obrobe zavihka ročaja." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Shrani piškotke" TAB_SAVE_COOKIES_DESC="Če bo izbrano, aktivne strani se shranijo v piškotke. Omogočite to, če želite te podatke uporabiti v druge skripte po meri." TAB_SCROLL="Pomaknite se na vrh" TAB_SCROLL_BY_URL="Pomaknite se z URL" TAB_SCROLL_BY_URL_DESC="Če je izbrano, se bo okno, se pomaknite na vrh zavihka, ko je zavihek odprt preko URL. Lahko prekličete to možnost z dodajanjem minus (-), do konca zavihka ime URL.<br><br>Če ni izbrano, lahko prekličete to stran in se pomaknete z dodajanjem plus (+) do konca zavihka ime URL." TAB_SCROLL_DESC="Če je izbrano, se bo okno, se pomaknite na vrh prvega zavihka, ko se odpre zavihek." TAB_SCROLL_LINKS="Pomaknite se na povezavo zavihka" TAB_SCROLL_LINKS_DESC="Če je izbrano, se bo okno, se pomaknite na vrh zavihka, ko je zavihek odprt preko povezave zavihka." TAB_SCROLL_OFFSET="Pomikanje odmik" TAB_SCROLL_OFFSET_DESC="Pomikanje odmika v pikslih. Če je to določeno z negativnim predznakom, bo brskalnik pomaknil do točke nad zavihkom. To je lahko uporabno, če vaša spletna stran ima plavajoči zgornji meni." TAB_SCROLL_OFFSET_MOBILE="Pomikanje odmika (mobilno)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Diaprojekcija" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Izberite, ali za uporabo prostora ali '=' v oznake ločen ime oznake iz naslova." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Naslov oznake" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Uporabite piškotke" TAB_USE_COOKIES_DESC="Če bo izbrano, aktivnega zavihka shranjeni v piškotkih in bo ostal aktiven, ko je ponovno pregledana stran." TAB_USE_HASH="Uporaba Hash" TAB_USE_HASH_DESC="Če je izbrana, se lahko aktivno kartico je treba določiti s pomočjo hash fragment v URL (# moj-tab-naslov) in bo dodana URL, ko se aktivira zavihek" TAB_USE_RESPONSIVE_VIEW="Uporabite alternativni mobilni pogled" TAB_USE_RESPONSIVE_VIEW_DESC="Izberite za spremembo zavihke na zloženem navigacijskem seznamu na širino mobilnih zaslonov." language/pt-BR/pt-BR.plg_system_tabs.ini 0000604 00000016647 15245530525 0014116 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Construíndo conteúdo em abas no Joomla!" TABS="Tabs" INSERT_TABS="Inserir Abas" TABS_DESC="Com o Tabs você pode fazer conteúdo em abas em qualquer área do Joomla!<br><br>A sintaxe é simples:<br><span class="rl_code">{tab title="Título da aba 1"}<br>Seu Conteúdo...<br>{tab title="Título da aba 2"}<br>Seu Conteúdo...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="O [[%1:extension name%]] não pode funcionar." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="O plugin Regular Labs Library não está habilitado." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="O plugin Regular Labs Library não está instalado." TAB_REGULAR_LABS_LIBRARY_OUTDATED="O plugin da Biblioteca de Regular Labs está desatualizado. Tente reinstalar [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Alinhamento de Manipuladores" TAB_ALIGNMENT_HANDLES_DESC="Selecione o alinhamento dos manipuladores. A opção 'Auto' alinhará os manipuladores à esquerda ou direita baseado nas configurações de idioma." TAB_CLICK="Clique" TAB_CLOSING_TAG="Tag de Fechamento" TAB_CLOSING_TAG_DESC="A palavra usada para tag de fechamento para as abas.<br><br>Por padrão é 'tabs'. Então uma tag de fechamento segue assim:<br><span class="rl_code">{/tabs}</span><br><br>Você pode mudar a palavra se outro plugin usa esse mesmo formato de sintaxe com essa palavra." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Fade" TAB_FADE_DESC="Selecione para habilitar o Fade do conteúdo, ao alternar entre as abas." TAB_HOVER="Passar o Mouse" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Modo" TAB_MODE_DESC="Selecione se as abas devem mudar no clique ou no passar do mouse." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Jeito Antigo" TAB_OPENING_TAG="Tag de abertura" TAB_OPENING_TAG_DESC="A palavra usada para tag de abertura de abas.<br><br>Por padrão é 'tab'. Então a tag de abertura segue assim:<br><span class="rl_code">{tab title="Título da aba"}</span><br><br>Você pode mudar a palavra se outro plugin usa esse mesmo formato de sintaxe com essa palavra." TAB_OUTLINE="Usar contorno" TAB_OUTLINE_CONTENT="Contornar Conteúdo" TAB_OUTLINE_CONTENT_DESC="Selecione para fazer uma borda e preenchimento em torno do conteúdo." TAB_OUTLINE_HANDLES="Contornar Manipuladores" TAB_OUTLINE_HANDLES_DESC="Selecione esta opção para ter uma borda ao redor dos manipuladores das abas." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Posicionamento de Manipuladores" TAB_POSITIONING_HANDLES_DESC="Selecione o posicionamento (colocação) dos manipuladores" ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Salvar Cookies" TAB_SAVE_COOKIES_DESC="Se selecionado, a aba ativa será guardada no cookie. Habilite se você quer usar esta informação em outros scripts personalizados." TAB_SCROLL="Rolar para cima" TAB_SCROLL_BY_URL="Rolar pela URL" TAB_SCROLL_BY_URL_DESC="Se selecionado, a janela irá rola para o topo das abas quando uma aba for aberta através de URL. Você pode sobrescrever esta regra adicionando um sinal de menos (-) no fim do título da aba na URL.<br><br>Se não selecionado, você pode sobrescever esta regra adicionando um sinal de mais (+) no fim do título da aba na URL." TAB_SCROLL_DESC="Se selecionado, a janela irá rolar para o topo das abas quando uma aba for aberta." TAB_SCROLL_LINKS="Rolar em Links" TAB_SCROLL_LINKS_DESC="Se selecionado, a janela irá rolar para o topo das abas quando um aba for aberta por link." TAB_SCROLL_OFFSET="Distância de rolagem" TAB_SCROLL_OFFSET_DESC="A distância de rolagem em pixels. Se configurada para um número negativo, o navegador rolará para um ponto acima da aba. Isso pode ser útil quando seu site tem um menu flutuante." TAB_SCROLL_OFFSET_MOBILE="Distância de rolagem (móvel)" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Selecione se é para usar um espaço ou '=' nas tags para separar o do título o nome da tag." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Tag de título" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Usar Cookies" TAB_USE_COOKIES_DESC="Se selecionado, as abas ativas serão guardadas nos cookies e permanecerão ativas quando a página for reaberta." TAB_USE_HASH="Usar Hash" TAB_USE_HASH_DESC="Se selecionada, a guia ativa pode ser definida através do fragmento de hash na URL (#título-de-minha-guia) e será adicionada à URL quando uma guia for ativada" TAB_USE_RESPONSIVE_VIEW="Usar visão móvel alternativa" TAB_USE_RESPONSIVE_VIEW_DESC="selecione para alterar as abas para uma lista de navegação empilhada em telas de dispositivos móveis." language/pt-BR/pt-BR.plg_system_tabs.sys.ini 0000604 00000001025 15245530525 0014713 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Construíndo conteúdo em abas no Joomla!" TABS="Tabs" language/th-TH/th-TH.plg_system_tabs.sys.ini 0000604 00000001052 15245530525 0014713 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - สร้างแท็บเนื้อหาใน Joomla!" TABS="Tabs" language/th-TH/th-TH.plg_system_tabs.ini 0000604 00000026761 15245530525 0014114 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - สร้างแท็บเนื้อหาใน Joomla!" TABS="Tabs" INSERT_TABS="แทรก Tab" TABS_DESC="ด้วย Tabs คุณสามารถสร้างแท็บเนื้อหาได้ทุกที่ใน Joomla!<br><br>แท็กคำสั่งจะมีไวยากรณ์ในลักษณะต่อไปนี้:<br><span class="rl_code">{tab title="ชื่อ Tab 1"}<br>ข้อความของคุณ...<br>{tab title="ชื่อ Tab 2"}<br>ข้อความของคุณ...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="ไม่สามารถใช้งาน [[%1:extension name%]] ได้." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin ยังไม่ได้เปิดใช้งาน." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin ยังไม่ได้ถูกติดตั้ง." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="คลิก" TAB_CLOSING_TAG="แท็กคำสั่งปิดท้าย" TAB_CLOSING_TAG_DESC="คำสำหรับใช้เป็นแท็กคำสั่งปิดท้ายสำหรับการสร้างแท็บ<br><br>ค่ากำหนดเริ่มต้นเดิมจะเป็นคำว่า 'tabs' ดังนั้นแท็กคำสั่งปิดท้ายสำหรับการสร้างแท็บจึงเป็นลักษณะดังนี้:<br><span class="rl_code">{/tabs}</span><br><br>คุณสามารถเปลี่ยนไปใช้คำอื่นแทนได้หากคุณมีปลั๊กอินตัวอื่นที่ใช้แท็กคำสั่งที่มีไวยากรณ์เดียวกัน" ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="ค่อยจางหาย" TAB_FADE_DESC="เลือกว่าต้องการให้เนื้อหาค่อยๆจางหายเมื่อสลับระหว่างแท็บ" TAB_HOVER="วางเมาส์" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="โหมด" TAB_MODE_DESC="เลือกกำหนดว่าต้องการให้แท็บเปลี่ยนไปเมื่อคลิกเมาส์ หรือวางเมาส์" ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="ใช้แบบเดิม" TAB_OPENING_TAG="แท็กคำสั่งเปิดหัว" TAB_OPENING_TAG_DESC="คำสำหรับใช้เป็นแท็กเปิดสำหรับใช้งานแท็บ.<br><br>ค่ากำหนดเริ่มต้นที่ตั้งไว้คือคำว่า 'tab'. ดังนั้นแท็กเปิดจะมีลักษณะดังนี้:<br><span class="rl_code">{tab title="ชื่อแท็บของคุณ"}</span><br><br>คุณสามารถเปลี่ยนไปใช้เป็นคำอื่นแทนได้ หากคุณมีปลั๊กอินตัวอื่นที่ใช้คำเดียวกันนี้เป็นไวยากรณ์ในแท็กคำสั่งของปลั๊กอินตัวนั้น" TAB_OUTLINE="แสดงเส้นล้อมรอบ" ; TAB_OUTLINE_CONTENT="Outline Content" TAB_OUTLINE_CONTENT_DESC="เลือกว่าต้องการให้มีการแสดงกรอบเค้าโครงรวมของเนื้อหาทั้งหมด" ; TAB_OUTLINE_HANDLES="Outline Handles" TAB_OUTLINE_HANDLES_DESC="เลือกว่าต้องการให้แสดงเส้นกรอบรอบแท็บนั้นๆ" ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="บันทึกคุ๊กกี็" TAB_SAVE_COOKIES_DESC="หากเลือก แท็บที่เปิดใช้งานอยู่จะถูกเก็บเนื้อหาไว้ในคุ๊กกี้ เปิดใช้งานส่วนนี้หากคุณต้องการใช้งานข้อมูลเหล่านี้ในสคริปต์แบบกำหนดเองอื่นๆ" TAB_SCROLL="เลื่อนขึ้นข้างบน" TAB_SCROLL_BY_URL="เลื่อนขึ้นโดยใช้ที่อยู่ URL" TAB_SCROLL_BY_URL_DESC="หากเลือกค่านี้ หน้าต่างบราวเซอร์จะเลื่อนขึ้นไปด้านบนตรงส่วนหัวของแท็บ เมื่อมีการเปิดแท็บหนึ่งแท็บใดผ่านทางที่อยู่ URL คุณสามารถกำหนดค่าใหม่ทับลงไปในตัวเลือกนี้ได้ โดยการใส่เครื่องหมายลบ (-) ต่อท้ายชื่อแท็บบนที่อยู่ URL<br><br>หากคุณไม่ได้เลือกค่านี้ คุณสามารถกำหนดค่าใหม่ทับลงไปและเลื่อนหน้าเวปขึ้นด้านบนได้ด้วยการใส่เครื่องหมายบวก (+) ต่อท้ายชื่อแท็บบนที่อยู่ URL ได้" TAB_SCROLL_DESC="หากเลือก จะเลื่อนหน้าต่างขึ้นไปที่บริเวณหัว Tab เมื่อ Tab ดังกล่าวถูกเปิดดู" TAB_SCROLL_LINKS="เลื่อนขึ้นไปที่ Link" TAB_SCROLL_LINKS_DESC="หากเลือก จะเลื่อนหน้าต่างขึ้นไปบริเวณหัว Tab เมื่อ Tab ดังกล่าวถูกเปิดดูผ่าน link" ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="เลือกกำหนดว่าต้องการใช้การเว้นช่องว่าง - space หรือ '=' ในแท็กคำสั่ง เพื่อคั่นรายการชื่อแท็กคำสั่งจากชื่อ การกำหนดค่าในส่วนนี้จะมีผลกับแท็กคำสั่งที่เป็นลิงค์ด้วยเช่นกัน" ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="แท็กคำสั่งสำหรับชื่อแท็บ" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="ใช้งานคุ๊กกี้" TAB_USE_COOKIES_DESC="หากเลือก แท็บที่เปิดใช้อยู่จะถูกเก็บไว้ในคุ๊กกี้ และจะยังมองเห็นแท็บดังกล่าวได้อยู่ เมื่อกลับมาเปิดอ่านหน้านี้อีกครั้ง" TAB_USE_HASH="ใช้งาน Hash" TAB_USE_HASH_DESC="หากเลือก แท็บที่เปิดใช้อยู่จะสามารถกำหนดค่าผ่านทางชิ่นส่วนที่ประกอบกันที่อยู่ในที่อยู่ URL (#my-tab-title) และจะถูกเพิ่มเข้าไปในชื่อที่อยู่ URL เมื่อแท็บดังกล่าวถูกเปิดใช้งาน" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/pt-PT/pt-PT.plg_system_tabs.ini 0000604 00000016252 15245530525 0014146 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" ; PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" TABS="Separadores" ; INSERT_TABS="Insert Tabs" ; TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="O [[%1:extension name%]] não pode funcionar." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="O plugin Regular Labs Library não está ativado." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Plugin do Framework Regular Labs não está instalado." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Clique" TAB_CLOSING_TAG="Tag de fechamento" ; TAB_CLOSING_TAG_DESC="The word used for the closing tag for tabs.<br><br>By default this is 'tabs'. So an closing tag looks like:<br><span class="rl_code">{/tabs}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Desvanecer" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER=""Hover"" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Modo" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" ; TAB_OLD="Old School" TAB_OPENING_TAG="Tag de abertura" ; TAB_OPENING_TAG_DESC="The word used for the opening tags for tabs.<br><br>By default this is 'tab'. So an opening tag looks like:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_OUTLINE="Use outline" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Salvar Cookies" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." TAB_SCROLL="Rolar para o topo" TAB_SCROLL_BY_URL="Rolar por URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." TAB_SCROLL_LINKS="Rolagem dos links" ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Selecione se é para usar um espaço ou '=' nas tags para separar o do título o nome da tag." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Tag do Título" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Usar Cookies" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." ; TAB_USE_HASH="Use Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/pt-PT/pt-PT.plg_system_tabs.sys.ini 0000604 00000001023 15245530525 0014751 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" ; PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" TABS="Separadores" language/hr-HR/hr-HR.plg_system_tabs.ini 0000604 00000016204 15245530525 0014073 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - za pravljenje tabova u Joomli!" TABS="Kartice" INSERT_TABS="Umetni tab" ; TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] neće raditi." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library dodatak nije omogućen." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library dodatak nije instaliran." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Klik" TAB_CLOSING_TAG="Tag za zatvaranje" ; TAB_CLOSING_TAG_DESC="The word used for the closing tag for tabs.<br><br>By default this is 'tabs'. So an closing tag looks like:<br><span class="rl_code">{/tabs}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Izblijedi" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Mod" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Stari način" TAB_OPENING_TAG="Tag za otvaranje" ; TAB_OPENING_TAG_DESC="The word used for the opening tags for tabs.<br><br>By default this is 'tab'. So an opening tag looks like:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_OUTLINE="Use outline" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Spremi kolačiće" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." ; TAB_SCROLL="Scroll to Top" ; TAB_SCROLL_BY_URL="Scroll by URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." ; TAB_SCROLL_LINKS="Scroll on Links" ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" ; TAB_TAG_SYNTAX_DESC="Select whether to use a space or '=' in the tags to separate the tag name from the title." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Naziv oznake" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Koristi kolačiće" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." TAB_USE_HASH="Koristi Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/hr-HR/hr-HR.plg_system_tabs.sys.ini 0000604 00000001017 15245530525 0014704 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - za pravljenje tabova u Joomli!" TABS="Kartice" language/el-GR/el-GR.plg_system_tabs.sys.ini 0000604 00000001062 15245530525 0014660 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - φτιάξτε εφαρμογές με καρτέλες στο Joomla!" TABS="Tabs" language/el-GR/el-GR.plg_system_tabs.ini 0000604 00000021612 15245530525 0014046 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - φτιάξτε εφαρμογές με καρτέλες στο Joomla!" TABS="Tabs" INSERT_TABS="Πρόσθεσε καρτέλες" TABS_DESC="Με το Tabs μπορείτε να φτιάξετε εφαρμογές με καρτέλες οπουδήποτε στο Joomla!<br><br>Η σύνταξη πρέπει να είναι κάπως έτσι:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Το κείμενό σας...<br>{tab title="Tab Title 2"}<br>Το κείμενό σας...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="Το [[%1:extension name%]] δεν μπορεί να λειτουργήσει." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Το πρόσθετο Regular Labs Library δεν είναι ενεργό." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Το πρόσθετο Regular Labs Library plugin δεν είναι εγκατεστημένο." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Κλίκ" TAB_CLOSING_TAG="Ετικέτα Κλεισίματος" TAB_CLOSING_TAG_DESC="Η λέξη που χρησιμοποιείται για την ετικέτα κλεισίματος για τις καρτέλες.<br><br>Η προεπιλεγμένη λέξη είναι 'tabs'. Έτσι μια ετικέτα κλεισίματος δείχνει κάπως έτσι:<br><span class="rl_code">{/tabs}</span><br><br>Μπορείτε να αλλάξετε τη λέξη άν χρησιμοποιείτε κάποιο άλλο πρόσθετο το οποίο έχει ίδιο συντακτικό στις ετικέτες ." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Ξεθώριασμα" TAB_FADE_DESC="Επιλέξτε για να ενεργοποιήσετε εφέ "ξεθωριάσματος" του περιεχομένου κατά την αλλαγή καρτελών." TAB_HOVER="Hover" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Τρόπος" TAB_MODE_DESC="Επιλέξτε εαν θα γίνεται αλλαγή καρτελών κάνοντας κλικ ή hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Παλιά Σχολή" TAB_OPENING_TAG="Ετικέτα Ανοίγματος" TAB_OPENING_TAG_DESC="Η λέξη που χρησιμοποιείται για την ετικέτα ανοίγματος για τις καρτέλες.<br><br>Προκαθορισμένο αυτό είναι 'tab'. Έτσι μια ετικέτα ανοίγματος δείχνει κάπως έτσι:<br><span class="rl_code">{tab title="Ο Τίτλος Μου"}</span><br><br>Μπορείτε να αλλάξετε τη λέξη άν χρησιμοποιείτε κάποιο άλλο πρόσθετο το οποίο έχει αυτή την σύνταξη ετικέτας." TAB_OUTLINE="Χρησιμοποιήστε περίγραμμα" TAB_OUTLINE_CONTENT="Περίγραμμα Περιεχομένου" TAB_OUTLINE_CONTENT_DESC="Επιλέξτε για να έχετε border και padding γύρω απο το περιεχόμενο." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." ; TAB_RELOAD_IFRAMES="Reload Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Αποθήκευση Cookies" TAB_SAVE_COOKIES_DESC="Αν επιλεγεί, οι ενεργές καρτέλες θα αποθηκευτούν στα cookies. Ενεργοποιήστε αυτή την επιλογή αν θέλετε να χρησιμοποιήσετε αυτές τις πληροφορίες σε άλλα προσαρμοσμένα scripts." TAB_SCROLL="Μετάβαση στην κορυφή" TAB_SCROLL_BY_URL="Κύλιση με URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." TAB_SCROLL_DESC="Επιλεγμένο, το παράθυρο θα μεταβεί στην κορυφή των καρτελών όταν μια καρτέλα είναι ανοιχτή." TAB_SCROLL_LINKS="Κύλιση στους συνδέσμους καρτελών" TAB_SCROLL_LINKS_DESC="Αν επιλεγεί, το παράθυρο θα κάνει κύλιση στην κορυφή των καρτελών, όταν μια σελίδα ανοίγει απο link." ; TAB_SCROLL_OFFSET="Scroll offset" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Διαλέξτε αν θα χρησιμοποιήσετε space ή '=' στις ετικέτες για να χωρήσετε το όνομα της ετικετας από τον τίτλο." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Τίτλος" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Χρήση Cookies" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." ; TAB_USE_HASH="Use Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/pl-PL/pl-PL.plg_system_tabs.ini 0000604 00000016572 15245530525 0014113 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - stwórz zakładki z treścią w Joomla!" TABS="Tabs" INSERT_TABS="Wstaw Tabs" TABS_DESC="Używając Tabs możesz utworzyć zakładki zawartości gdziekolwiek w Joomla!<br><br>Składnia wygląda po prostu tak:<br><span class="rl_code">{tab title="Tytuł Zakładki 1"}<br>Twój tekst...<br>{tab title="Tytuł Zakładki 2"}<br>Twój tekst...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nie może działać." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Wtyczka Regular Labs Library nie jest włączona." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Dodatek Regular Labs Library nie jest zainstalowany." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Wtyczka Regular Labs Library jest przestarzała. Spróbuj zainstalować ponownie [[%1:extension name%]]." TAB_ALIAS_DESC="Opcjonalnie dodaj alias. Domyślnie jest generowany z tytułu." TAB_ALIGNMENT_HANDLES="Wyrównanie zakładek" TAB_ALIGNMENT_HANDLES_DESC="Wybierz wyrównanie zakładek. Opcja 'Auto' ustawi wyrównanie od lewej lub od prawej bazując na ustawieniach językowych." TAB_CLICK="Kliknięcie" TAB_CLOSING_TAG="Znacznik zamykający" TAB_CLOSING_TAG_DESC="Słowo kluczowe używane do zamykania tagu zakładek.<br><br>Domyślnie 'tabs'. Zatem zamknięcie zakładek wygląda tak:<br><span class="rl_code">{/tabs}</span><br><br>Możesz zmienić słowo kluczowe, jeśli używasz innej wtyczki, która posiada taką samą składnię słów kluczowych jak Tabs." TAB_COLOR_INACTIVE_HANDLES="Kolor nieaktywnej zakładki" TAB_COLOR_INACTIVE_HANDLES_DESC="Wybierz, aby ustawić szare tło dla nieaktywnych zakładek." TAB_CONTENT_DESC="Treść zakładek można będzie edytować po wstawieniu kodu do edytora." TAB_DEFAULT="Domyślnie otwarta" TAB_DEFAULT_DESC="Zaznacz, jeżeli zakładka ma być domyślnie otwarta. Tylko jedna zakładka może być domyślnie otwarta." TAB_ERROR_EMPTY_TITLE="Proszę wpisać tytuł przynajmniej jednej zakładki." TAB_FADE="Przenikanie" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Po najechaniu" TAB_INIT_TIMEOUT="Opóźnienie" TAB_INIT_TIMEOUT_DESC="Ustaw opóźnienie wykonania skryptu w milisekundach po załadowaniu strony. Może być konieczne, aby zainicjować skrypt Tabs po wykonaniu innych skryptów na stronie." TAB_MAIN_CLASS="Główna klasa CSS" TAB_MAIN_CLASS_DESC="Opcjonalnie można dodać klasę do głównego kontenera." TAB_MAX_TAB_COUNT="Maksymalna liczba zakładek" TAB_MAX_TAB_COUNT_DESC="Ustaw maksymalną liczbę zakładek pokazanych w oknie pop-up. Zwiększenie tej liczby może spowodować wydłużenie czasu załadowania okna." TAB_MODE="Tryb" TAB_MODE_DESC="Wybierz, czy zakładki powinny się zmieniać po kliknięciu czy najechaniu myszą." TAB_NESTED_ID="Ustaw ID" TAB_NESTED_ID_DESC="Wpisz unikalny identyfikator. Identyfikatory w obrębie zakładek nie powinny się powtarzać." TAB_NESTED_SET="Zagnieżdżone zakładki" TAB_NESTED_SET_DESC="Wybierz, jeżeli zakładki mają być zagnieżdżone wewnątrz już istniejących." TAB_OLD="Stara wersja" TAB_OPENING_TAG="Znacznik otwierający" TAB_OPENING_TAG_DESC="Słowo kluczowe używane do otwierania tagu zakładek.<br><br>Domyślnie 'tab'. Zatem otwarcie zakładek wygląda tak:<br><span class="rl_code">{tab title="Tytuł Zakładki"}</span><br><br>Możesz zmienić słowo kluczowe, jeśli używasz innej wtyczki, która posiada taką samą składnię słów kluczowych jak Tabs." TAB_OUTLINE="Użyj obramowania" TAB_OUTLINE_CONTENT="Ramka zawartości" TAB_OUTLINE_CONTENT_DESC="Wybierz, aby ustawić ramkę wokół zawartości" TAB_OUTLINE_HANDLES="Ramka zakładek" TAB_OUTLINE_HANDLES_DESC="Wybierz, aby ustawić ramkę wokół zakładek." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Pozycja zakładek" TAB_POSITIONING_HANDLES_DESC="Wybierz pozycjonowanie (umiejscowienie) zakładek." TAB_RELOAD_IFRAMES="Przeładuj Iframes" ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Zapisz ciasteczka" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." TAB_SCROLL="Przewiń do góry" TAB_SCROLL_BY_URL="Przewijaj po URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." TAB_SCROLL_LINKS="Przewiń poprzez link" ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." TAB_SCROLL_OFFSET="Przesunięcie przewijania" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" TAB_SET_SETTINGS="Ustawienia" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." TAB_STOP_SLIDESHOW_ON_CLICK="Zatrzymaj po kliknięciu" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." TAB_TAB_NUMBER="Zakładka [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Wybierz, czy używać spacji lub znaku '=' w znacznikach, aby oddzielić znacznik od tytułu." TAB_TITLE_EMPTY="Tylko zakładka, która ma tytuł, zostanie użyta." TAB_TITLE_TAG="Znacznik tytułu" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Używaj ciasteczek" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." TAB_USE_HASH="Użyj Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/pl-PL/pl-PL.plg_system_tabs.sys.ini 0000604 00000001023 15245530525 0014711 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - stwórz zakładki z treścią w Joomla!" TABS="Tabs" language/de-DE/de-DE.plg_system_tabs.ini 0000604 00000020626 15245530525 0013772 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Registerkarten in Joomla!" TABS="Registerkarten" INSERT_TABS="Registerkarten einfügen" TABS_DESC="Mit Tabs können Sie überall in Joomla! Registerkarten erstellen.<br><br>Die Syntax sieht so aus:<br><span class="rl_code">{tab title="Registerkarten-Titel 1"}<br>Ihr Text …<br>{tab title="Registerkarten-Titel 2"}<br>Ihr Text …<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kann nicht funktionieren." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Das Regular Labs Bibliothek-Plugin ist nicht aktiviert." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Das Regular Labs Bibliothek-Plugin ist nicht installiert." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Das Regular Labs Library Plugin ist veraltet. Bitte versuche die Erweiterung [[%1:extension name%]] neu zu installieren." TAB_ALIAS_DESC="Optional dem Tab einen eigenen Alias vergeben, wenn Sie nicht den von Tabs anhand des Titels generierten verwenden möchten." TAB_ALIGNMENT_HANDLES="Ausrichtung der Registerkarten" TAB_ALIGNMENT_HANDLES_DESC="Wählen Sie die Ausrichtung der Registerkarten. Option 'Auto' wird die Ausrichtung links oder rechts anhand der Spracheinstellungen vornehmen." TAB_CLICK="Klicken" TAB_CLOSING_TAG="Schließender Tag" TAB_CLOSING_TAG_DESC="Das Wort, das für den schließenden Tag für Registerkarten verwendet wird.<br><br>Standardmäßig ist dies 'tabs'. Ein schließender Tag sieht wie folgt aus:<br><span class="rl_code">{/tabs}</span><br><br>Sie können das Wort ändern, wenn Sie ein anderes Plugin verwenden, das dieselbe Tag-Syntax verwendet." TAB_COLOR_INACTIVE_HANDLES="Inaktive Registerkarten einfärben" TAB_COLOR_INACTIVE_HANDLES_DESC="Wählen Sie ob inaktive Registerkarten eine graue Hintergrundfarbe erhalten sollen." TAB_CONTENT_DESC="Sie können den Ihalt der Registerkarte editieren, nachdem Sie in den Editor eingefügt wurde." TAB_DEFAULT="Standardmäßiges Öffnen" TAB_DEFAULT_DESC="Wählen Sie ob diese Registerkarte standardmäßig geöffnet werden soll. Sie können nur eine Registerkarte eines Kartenblocks zum Standard erklären." TAB_ERROR_EMPTY_TITLE="Bitte geben Sie wenigstens der ersten Registerkarte einen Titel." TAB_FADE="Überblendung" TAB_FADE_DESC="Wählen um das Überblenden des Inhalts beim Wechsel zwischen Registerkarten zu aktivieren." TAB_HOVER="Mausberührung" TAB_INIT_TIMEOUT="Verzögerung initiieren" TAB_INIT_TIMEOUT_DESC="Verzögerung in Millisekunden eingeben, mit der das Tabs-Skript nach dem Laden der Seite initialisiert wird. Sie können dies verwenden, um Tabs nach anderen Skripten zu starten, falls diese es benötigen um zu funktionieren." TAB_MAIN_CLASS="Hauptklasse" TAB_MAIN_CLASS_DESC="Optional eigene Klassen-Namen zum Tabs-Hauptcontainer zufügen." TAB_MAX_TAB_COUNT="Maximale Anzahl an Registerkarten" TAB_MAX_TAB_COUNT_DESC="Die maximale Anzahl an Registerkarten eingeben, die im Editor-Button Popup-Fenster angezeigt werden sollen. Eine Erhöhung der Anzahl kann zu längeren Ladezeiten des Fensters führen." TAB_MODE="Modus" TAB_MODE_DESC="Wählen Sie, ob die Registerkarten bei Mausklick oder Mausberührung wechseln sollen." TAB_NESTED_ID="Verschachtelte Satz-ID" TAB_NESTED_ID_DESC="Vergeben Sie dem verschachtelten Satz eine ID. Dies sollte nicht die gleiche eines anderen verschachtelten Satzes innerhalb der gleichen Registerkarte sein." TAB_NESTED_SET="Als verschachtelten Satz behandeln" TAB_NESTED_SET_DESC="Wählen ob sich dieser Satz innerhalb eines anderen Registerkarten-Satzes befindet." TAB_OLD="Traditionell" TAB_OPENING_TAG="Öffnender Tag" TAB_OPENING_TAG_DESC="Das Wort, das für den öffnenden Tag für Registerkarten verwendet wird.<br><br>Standardmäßig ist dies 'tab'. Ein öffnender Tag sieht wie folgt aus:<br><span class="rl_code">{tab title="Mein Registerkarten-Titel"}</span><br><br>Sie können das Wort ändern, wenn Sie ein anderes Plugin verwenden, das die gleiche Tag-Syntax verwendet." TAB_OUTLINE="Umriss verwenden" TAB_OUTLINE_CONTENT="Inhalt umreißen" TAB_OUTLINE_CONTENT_DESC="Wählen Sie ob der Inhalt von einem Rahmen mit Abstand umgeben werden soll." TAB_OUTLINE_HANDLES="Registerkartengriffe umreißen" TAB_OUTLINE_HANDLES_DESC="Wählen Sie ob die Registerkartengriffe einen Rahmen erhalten sollen." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Positionierung der Registerkartengriffe" TAB_POSITIONING_HANDLES_DESC="Die Positionierung (Platzierung) der Registerkartengriffe wählen." TAB_RELOAD_IFRAMES="Iframes neu laden" TAB_RELOAD_IFRAMES_DESC="Wählen um die Iframes neu zu laden, sobald die Registerkarte, in der sie sich befinden, aktiviert wird. Nutzen Sie dies nur, wenn Ihre Iframes in geschlossenen Registerkarten Probleme verursachen." TAB_SAVE_COOKIES="Cookies speichern" TAB_SAVE_COOKIES_DESC="Wenn ausgewählt, werden die aktiven Registerkarten in den Cookies gespeichert. Aktivieren Sie diese Option, wenn Sie diese Informationen in anderen benutzerdefinierten Skripten verwenden möchten." TAB_SCROLL="Nach oben scrollen" TAB_SCROLL_BY_URL="Scrollen durch die URL" TAB_SCROLL_BY_URL_DESC="Wenn gewählt, wird das Fenster nach oben scrollen, wenn eine Registerkarte via URL geöffnet wird. Sie können diese Option überschreiben, wenn Sie ein Minuszeichen (-) ans Ende des Registerkarten-Namens in der URL anhängen.<br><br>Wenn nicht gewählt, können Sie das Scrollen überschreiben, in dem Sie ein Pluszeichen (+) ans Ende des Tabnames in der URL anhängen." TAB_SCROLL_DESC="Wenn gewählt, wird das Fenster nach oben scrollen, sobald eine Registerkarte geöffnet wird." TAB_SCROLL_LINKS="Scrollen bei Links" TAB_SCROLL_LINKS_DESC="Wenn gewählt, wird das Fenster nach oben scrollen, sobald eine Registerkarte über einen Link geöffnet wird." TAB_SCROLL_OFFSET="Scroll-Versatz" TAB_SCROLL_OFFSET_DESC="Der Scroll-Versatz in Pixeln. Wird eine negative Zahl eingegeben, wird der Browser zu einem Punkt oberhalb der Registerkarte scrollen. Dies kann nützlich sein, wenn Ihre Website ein fließendes Top-Menü besitzt." TAB_SCROLL_OFFSET_MOBILE="Scroll-Versatz (mobil)" TAB_SET_SETTINGS="Registerkartensatz-Einstellungen" TAB_SLIDESHOW="Diashow" TAB_SLIDESHOW_DESC="Wählen ob die Registerkarten nacheinander automatisch geöffnet werden sollen anhand einer gegebenen oder Standardzeitüberschreitung." TAB_SLIDESHOW_TIMEOUT="Diashow-Intervall" TAB_SLIDESHOW_TIMEOUT_DESC="Die Zeit, die eine Registerkarte angezeigt werden soll, bevor die nächste angezeigt wird (in Millisekunden)." TAB_STOP_SLIDESHOW_ON_CLICK="Bei Klick anhalten" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Wählen ob die Diashow durch Klick auf einen Registerkartengriff angehalten werden soll." TAB_TAB_NUMBER="Registerkarte [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Wählen ob ein Leerzeichen oder ein Gleichheitszeichen '=' in den Tags zum Trennen des Tagnamens von dem Titel verwendet werden soll." TAB_TITLE_EMPTY="Nur Registerkarten mit Titel werden angezeigt." TAB_TITLE_TAG="Titel-Tag" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Cookies verwenden" TAB_USE_COOKIES_DESC="Wenn gewählt, werden die aktiven Registerkarten in den Cookies gespeichert und bleiben aktiv, wenn die Seite wieder besucht wird." TAB_USE_HASH="Hash verwenden" TAB_USE_HASH_DESC="Wenn diese Option aktiviert ist, kann die aktive Registerkarte über das Hash-Fragment in der URL (#mein-registerkarten-titel) eingestellt werden und wird der URL hinzugefügt, sobald eine Registerkarte aktiviert ist." TAB_USE_RESPONSIVE_VIEW="Alternative Mobil-Ansicht verwenden" TAB_USE_RESPONSIVE_VIEW_DESC="Wählen ob bei schmalen Mobilbildschirmen die Registerkarten in eine gestapelte Navigationsliste umgewandelt werden sollen." language/de-DE/de-DE.plg_system_tabs.sys.ini 0000604 00000001017 15245530525 0014600 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - Registerkarten in Joomla!" TABS="Registerkarten" language/da-DK/da-DK.plg_system_tabs.ini 0000604 00000016545 15245530525 0014003 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - opret indholdsfaneblade i Joomla!" TABS="Tabs" INSERT_TABS="Indsæt faneblade" TABS_DESC="Med Tabs kan du lave indholdsfaneblade overalt i Joomla!<br><br>Syntaksen er ganske simpel:<br><span class="rl_code">{tab title="Fanebladstitel 1"}<br>Din tekst...<br>{tab title="Fanebladstitel 2"}<br>Din tekst...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kan ikke fungere." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library programudvidelse er ikke aktiveret." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library programudvidelse er ikke installeret." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin er forældet. Prøv at re-installere [[%1:extension name%]]." TAB_ALIAS_DESC="Du kan valgfrit give fanen et alias hvis du vil have at det skal være anderledes end de faner der genereres baseret på titlen." TAB_ALIGNMENT_HANDLES="Justeringshåndtag" TAB_ALIGNMENT_HANDLES_DESC="Vælg Justering af håndtagene. Egenskaben 'Automatisk' vil justere håndtagene til venstre eller højre baseret på sprog indstillingerne." TAB_CLICK="Klik" TAB_CLOSING_TAG="Lukkende mærkat" TAB_CLOSING_TAG_DESC="Ordet brugt for lukkende mærkat for faneblade.<br><br>Som standard er dette 'tabs'. Så en lukkende mærkat ser således ud:<br><span class="rl_code">{/tabs}</span><br><br>Du kan ændre dette ord, hvis du bruger en anden programudvidelse som bruger denne syntaks." TAB_COLOR_INACTIVE_HANDLES="Farvelæg inaktive håndtag" TAB_COLOR_INACTIVE_HANDLES_DESC="Vælg at farve de inaktive håndtags baggrund grå." TAB_CONTENT_DESC="Du kan redigere fanens indhold efter den er blevet indsat i redigeringen." TAB_DEFAULT="Åbnet som standard" TAB_DEFAULT_DESC="Vælg for at åbne denne fane som standard. Du skal indstille mindst en fane pr. fanelinje som standard." TAB_ERROR_EMPTY_TITLE="Vær venlig at give mindst første fane en titel." TAB_FADE="Nedblæd" TAB_FADE_DESC="Vælg for at nedtone indholdet når der skiftes mellem faner." TAB_HOVER="Hover" TAB_INIT_TIMEOUT="Aktivér forsinkelse" TAB_INIT_TIMEOUT_DESC="Indstil forsinkelsen i millisekunder før fane scripts initialiseres efter side hentning. Du kan bruge dette til at tvinge faner til at initialisere efter andre scripts der kræver dette for at virke." TAB_MAIN_CLASS="Hoved Class" TAB_MAIN_CLASS_DESC="Tilføj valgfrit ekstra klassenavne til hoved fane containeren." TAB_MAX_TAB_COUNT="Maksimum antal faner" TAB_MAX_TAB_COUNT_DESC="Indstil maksimum antal faner der vises i redigerings knap popup vinduet. Forøgelse af denne værdi kan forårsage at vinduet er længere tid om at vises." TAB_MODE="Tilstand" TAB_MODE_DESC="Vælg om fanerne ændres ved museklik eller når markøren holdes over fanerne." TAB_NESTED_ID="Sæt ID for indlejring" TAB_NESTED_ID_DESC="Indstil en værdi til det indlejrede sæt. Dette bør ikke være det samme som andre indlejrede sæt i samme overordnede fane." TAB_NESTED_SET="Håndtér det som et Indlejret sæt" TAB_NESTED_SET_DESC="Vælg om dette er et sæt inden i et andet sæt." TAB_OLD="Gammeldags" TAB_OPENING_TAG="Indledende mærkat" TAB_OPENING_TAG_DESC="Ordet brugt for indledende mærkat for faneblade.<br><br>Som standard er dette 'tab'. Så en indledende mærkat ser således ud:<br><span class="rl_code">{tab title="Fanebladstitel"}</span><br><br>Du kan ændre dette ord, hvis du bruger en anden programudvidelse som bruger denne syntaks." TAB_OUTLINE="Brug omrids" TAB_OUTLINE_CONTENT="Omrids om indhold" TAB_OUTLINE_CONTENT_DESC="Vælg om der skal være kant og fyld omkring indholdet." TAB_OUTLINE_HANDLES="Omrids om håndtag" TAB_OUTLINE_HANDLES_DESC="Vælg om der skal være en kant omkring fane håndtag." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Håndtags positionering" TAB_POSITIONING_HANDLES_DESC="Vælg hvordan håndtag skal positioneres (placeres)." TAB_RELOAD_IFRAMES="Genindlæs iframes" TAB_RELOAD_IFRAMES_DESC="Vælg for at få iframe til at genindlæse første gang den fane som det befinder sig i bliver aktiveret. Brug kun dette hvis du har iframes der skaber problemer når de indlæses i lukkede faner." TAB_SAVE_COOKIES="Gem Cookies" TAB_SAVE_COOKIES_DESC="Hvis valgt, vil de aktive faner gemmes i cookies. Aktivér dette hvis du ønsker at bruge informationen i andre brugerdefinerede scripts." TAB_SCROLL="Rul til top" TAB_SCROLL_BY_URL="Rul ved URL" TAB_SCROLL_BY_URL_DESC="Hvis valgt vil vinduet rulle til toppen af fanebladene når et faneblad åbnes via URL. Du kan overstyre dette valg ved at tilføje et minus (-) i enden af fanebladsnavnet i URL'en.<br>br />Hvis ikke valgt kan du overstyre dette og få siden til at rulle ved at tilføjge et plus (+) i enden af fanebladsnavnet i URL'en." TAB_SCROLL_DESC="Hvis valgt vil vinduet rulle toppen af fanebladene når et faneblad åbnes." TAB_SCROLL_LINKS="Rul ved links" TAB_SCROLL_LINKS_DESC="Hvis valgt, vil vinduet rulle til toppen af fanerne når en fane åbnes via et link." TAB_SCROLL_OFFSET="Rulle afstand" TAB_SCROLL_OFFSET_DESC="Rulle afstanden i punkter. Browseren vil rulle til et punkt over fanen, hvis dette sættes til en negativ værdi. Dette er brugbart hvis dit websted har en flydende topmenu." TAB_SCROLL_OFFSET_MOBILE="Rulle afstand (mobil)" TAB_SET_SETTINGS="Fane sæt indstillinger" TAB_SLIDESHOW="Diasshow" TAB_SLIDESHOW_DESC="Vælg for at få fanerne til automatisk at åbne en efter en vha. standard eller givne nedtælling." TAB_SLIDESHOW_TIMEOUT="Diasshow interval" TAB_SLIDESHOW_TIMEOUT_DESC="Den varighed en fane vises før der skiftes til næste fane (i millisekunder)." TAB_STOP_SLIDESHOW_ON_CLICK="Stop ved klik" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Vælg for at få diasshowet til at stoppe ved klik på en af fane håndtagene." TAB_TAB_NUMBER="Fane [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Vælg om der skal benyttes mellemrum eller '=' i mærkater for at adskille mærkatnavn fra titel." TAB_TITLE_EMPTY="Kun faner med en titel vil blive brugt." TAB_TITLE_TAG="Titel markering" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Brug Cookies" TAB_USE_COOKIES_DESC="Hvis valgt, vil aktive faner blive gemt i cookies og vil fortsætte med at være aktive hvis siden besøges igen." TAB_USE_HASH="Brug hashing" TAB_USE_HASH_DESC="Hvis valgt, kan den aktive fane sættes via URL'ens hash fragment (#min-fane-titel) og vil blive tilføjet URL'en når fanen aktiveres." TAB_USE_RESPONSIVE_VIEW="Brug alternativ mobil visning" TAB_USE_RESPONSIVE_VIEW_DESC="Vælg for at ændre fanerne til en vertikal navigations liste på en mobil skærms bredde." language/da-DK/da-DK.plg_system_tabs.sys.ini 0000604 00000001015 15245530525 0014602 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - opret indholdsfaneblade i Joomla!" TABS="Tabs" language/fa-IR/fa-IR.plg_system_tabs.sys.ini 0000604 00000001043 15245530525 0014637 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="تب ساز- سیستم" PLG_SYSTEM_TABS_DESC="تب ساز - ایجاد تب های محتوا در جوملا" TABS="Tab ها" language/fa-IR/fa-IR.plg_system_tabs.ini 0000604 00000023346 15245530525 0014034 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="تب ساز- سیستم" PLG_SYSTEM_TABS_DESC="تب ساز - ایجاد تب های محتوا در جوملا" TABS="Tab ها" INSERT_TABS="درج Tab ها" TABS_DESC="با این تب ساز شما می توانید در هر جای مطالب جوملای خود تب ایجاد کنید<br><br>نحوی استفاده به فرم پایین شبه است :<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] تابغ نمی تواند عمل کند" TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="پلاگین Regular Labs Library فعال نمی باشد" TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="پلاگین Regular Labs Library نصب نمی باشد" ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." TAB_ALIAS_DESC="اگر بخواهید یک نام متفاوت از نامی که تب بر اساس عنوان درست می کند داشته باشید بطور اختیاری به تب یک نام مستعار می دهد" TAB_ALIGNMENT_HANDLES="تراز کردن دستگیره ها" TAB_ALIGNMENT_HANDLES_DESC="انتخاب تراز کردن دستگیره ها . گزینه " خودکار " دستگیره ها را بر اساس تنظیمات زبان در سمت چپ یا راست تراز می کند" TAB_CLICK="کلیک" TAB_CLOSING_TAG="تگ بسته" TAB_CLOSING_TAG_DESC="کلمه ایی که برای تگ پایانی به کار می برید<br><br>به صورت پیش فرض کلمه 'tabs' قرار دارد که به نحوی زیر می توان پیاده کرد.<br><span class="rl_code">{/tabs}</span><br><br>شما می توانید این کلمه را در صورتی که از پلاگین دیگری با همین سینتکس استفاده می کنید عوض کنید" TAB_COLOR_INACTIVE_HANDLES="رنگ دستگیره های غیر فعال" TAB_COLOR_INACTIVE_HANDLES_DESC="برای داشتن پس زمینه خاکستری برای دستگیره های فعال نشده انتخاب شود" TAB_CONTENT_DESC="بعد از اضافه شدن زبانه به داخل ویرایشگر می توانید محتوای زبانه را ویرایش کنید" TAB_DEFAULT="باز شده بصورت پیشفرض" TAB_DEFAULT_DESC="انتخاب می کند که این تب بصورت پیشفرض باز باشد. نیاز هست که یک تب بصورت پیش فرض تنظیم شود" TAB_ERROR_EMPTY_TITLE="لطفا حداقل عنوان تب اول را تعیین کنید" TAB_FADE="محو شدن" TAB_FADE_DESC="اگر مایلید، هنگامی حرکت از یک تب به تب دیگر، اینتقال با جلوه ی محو شدن محتوای تب ها انجام شود، این گزینه را انتخاب کنید." TAB_HOVER="هاور" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." TAB_MAX_TAB_COUNT="حداکثر تعداد زبانه ها" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="حالت" TAB_MODE_DESC="انتخاب برای انکه تب با کلیک موس یا هاور تغییر کند" ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="روش قدیمی" TAB_OPENING_TAG="باز کردن تگ" TAB_OPENING_TAG_DESC="کلمه ایی که برای تگ اغازین برای تب ها استفاده می شود<br><br>به طور پیش فرض کلمه 'tab' قرار دارد . که می توانید شبه این عمل کنید:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>شما می توانید این کلمه را در صورتی که پلاگین با دستوری مشابه استفاده می کنید عوض نمایید." TAB_OUTLINE="استفاده از خطوط خارجی" TAB_OUTLINE_CONTENT="طرح کلی محتوا" TAB_OUTLINE_CONTENT_DESC="برای داشتن خط و حاشیه به دور محتوا انتخاب شود" TAB_OUTLINE_HANDLES="طرح کلی دستگیره ها" TAB_OUTLINE_HANDLES_DESC="برای داشتن خط به دور دستگیره های تب انتخاب شود" ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="موقعیت دستگیره ها" TAB_POSITIONING_HANDLES_DESC="تنظیم موقعیت ( جای گیری ) دستگیره ها" TAB_RELOAD_IFRAMES="بارگذای مجدد iFrame ها" TAB_RELOAD_IFRAMES_DESC="برای بارگذاری iFrame ها در بار اولی که تب ها فعال می شوند انتخاب شود. تنها وقتی استفاده می شود که داشتن iFrame ها باعث پیامدهایی در هنگام بارگذاری در تب های بسته شوند" TAB_SAVE_COOKIES="ذخیره کوکی ها" TAB_SAVE_COOKIES_DESC="اگر ذخیره ساز کوکی ها استفاده شود. تب های فعال در کوکی ذخیره می شوند. این ویژگی را در صورتی که بخواهید این اطاعات را در اسکرپیت سفارشی دیگری استفاده نمایید فعال نمایید." TAB_SCROLL="اسکرول به بالا" TAB_SCROLL_BY_URL="اسکرول با استفاده از آدرس" TAB_SCROLL_BY_URL_DESC="اگر این ویژگی انتخاب شود، وقتی که تب با استفاده از آدرس باز می شود پنجره به بالا اسکرول می شود. شما می توانید با استفاده از منفی (-) در انتهای نام تب در آدرس غیرفعال نمایید.<br><br>اگر انتخاب نشود، شما می توانید این ویژگی را غیرفعال کنید، و صفحه ی خود را با استفاده از اضافه کردن + به انتهای تب ها در ادرس اسکرول کنید" TAB_SCROLL_DESC="اگر این ویژگی انتخاب شود،وقتی که تب باز می شود پنجره به سمت بالا اسکرول می شود." TAB_SCROLL_LINKS="اسکرول در تب لینک ها" TAB_SCROLL_LINKS_DESC="اگر این ویژگی انتخاب شود .وقتی پنجره با تب لینک باز می شود به سمت بالا اسکرول می شود." TAB_SCROLL_OFFSET="جابجایی اسکرول" TAB_SCROLL_OFFSET_DESC="جابجایی اسکرول بر حسب پیکسل. اگر روی تعداد ناوبری تنظیم ش.د ، مرورگر به محل بالای تب اسکرول خواهد کرد. اینکار وقتی مفید است که وب سایت دارای منوی بالایی شناور است." TAB_SCROLL_OFFSET_MOBILE="جابجایی اسکرول ( موبایل )" ; TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="نمایش اسلاید" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" TAB_SLIDESHOW_TIMEOUT_DESC="زمان هر تب باید قبل از رفتن به تب بعدی نمایش داده شود ( بر حسب میلی ثانیه )" TAB_STOP_SLIDESHOW_ON_CLICK="توقف هنگام کلیک کردن" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="بمنظور متوقف کردن اسلاید هنگام کلیک بر روی یکی از دستگیره های تب ، انتخاب شود" ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="انتخاب برای انکه عنوان تگ از عنوان با یک فاصله یا = در تگ جدا شود." TAB_TITLE_EMPTY="تنها زبانه هایی که دارای یک عنوان هستند استفاده خواهند شد" TAB_TITLE_TAG="تگ عنوان" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="استفاده از کوکی ها" TAB_USE_COOKIES_DESC="اگر انتخاب شود ، تب های فعال در کوکی ذخیره می شوند و تا بازدید بعدی فعال باقی می ماند" TAB_USE_HASH="استفاده از Hash" TAB_USE_HASH_DESC="اگر انتخاب شود تب های فعال به صورت تکه های هش شده در ادرس تعیین می شوند (#my-tab-title) و وقتی تب فعال است به آدرس اضافه می شوند." TAB_USE_RESPONSIVE_VIEW="استفاده از نمای موبایل جایگزین" TAB_USE_RESPONSIVE_VIEW_DESC="برای تغییر تب ها به فهرست ناوبری چسبانده شده روی صفحه نمایش های عریض موبایل انتخاب شود" language/sr-YU/sr-YU.plg_system_tabs.sys.ini 0000604 00000001016 15245530525 0015001 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" ; PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" ; TABS="Tabs" language/sr-YU/sr-YU.plg_system_tabs.ini 0000604 00000016273 15245530525 0014177 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate ; PLG_SYSTEM_TABS="System - Regular Labs - Tabs" ; PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" ; TABS="Tabs" ; INSERT_TABS="Insert Tabs" ; TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne može da funkcioniše." ; TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is not enabled." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin nije instaliran." ; TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." ; TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." ; TAB_ALIGNMENT_HANDLES="Alignment Handles" ; TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Klik" TAB_CLOSING_TAG="Zatvarajući tag" ; TAB_CLOSING_TAG_DESC="The word used for the closing tag for tabs.<br><br>By default this is 'tabs'. So an closing tag looks like:<br><span class="rl_code">{/tabs}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" ; TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." ; TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." ; TAB_DEFAULT="Opened by Default" ; TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." ; TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." ; TAB_FADE="Fade" ; TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Prelazak preko" ; TAB_INIT_TIMEOUT="Initialise Delay" ; TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." ; TAB_MAIN_CLASS="Main Class" ; TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." ; TAB_MAX_TAB_COUNT="Maximum number of Tabs" ; TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Način rada" ; TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." ; TAB_NESTED_ID="Nested Set ID" ; TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." ; TAB_NESTED_SET="Handle as Nested Set" ; TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Starinski" TAB_OPENING_TAG="Otvarajući tag" ; TAB_OPENING_TAG_DESC="The word used for the opening tags for tabs.<br><br>By default this is 'tab'. So an opening tag looks like:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." ; TAB_OUTLINE="Use outline" ; TAB_OUTLINE_CONTENT="Outline Content" ; TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." ; TAB_OUTLINE_HANDLES="Outline Handles" ; TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." ; TAB_POSITIONING_HANDLES="Positioning Handles" ; TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." TAB_RELOAD_IFRAMES="Ponovo učitaj iframes." ; TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Sačuvaj kolačiće" ; TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." TAB_SCROLL="Idi na vrh" TAB_SCROLL_BY_URL="Idi putem URL" ; TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." ; TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." TAB_SCROLL_LINKS="Pomeri kada se korist veze klizača." ; TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." TAB_SCROLL_OFFSET="Korekcija pomeranja" ; TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." ; TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" ; TAB_SET_SETTINGS="Tab Set Settings" ; TAB_SLIDESHOW="Slideshow" ; TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." ; TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" ; TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." ; TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" ; TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." ; TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Odaberite da li ćete koristiti blanko ili '=' u tagovima da biste razdvojili naziv taga od naslova." ; TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Naslov tag" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Koristi kolačiće" ; TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." TAB_USE_HASH="Koristi Hash" ; TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" ; TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" ; TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/en-GB/en-GB.plg_system_tabs.sys.ini 0000604 00000001010 15245530525 0014615 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" TABS="Tabs" language/en-GB/en-GB.plg_system_tabs.ini 0000604 00000015743 15245530525 0014022 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - make content tabs in Joomla!" TABS="Tabs" INSERT_TABS="Insert Tabs" TABS_DESC="With Tabs you can make content tabs anywhere in Joomla!<br><br>The syntax simply looks like:<br><span class="rl_code">{tab title="Tab Title 1"}<br>Your text...<br>{tab title="Tab Title 2"}<br>Your text...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] cannot function." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is not enabled." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin is not installed." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]]." TAB_ALIAS_DESC="Optionally give the tab an alias if you want it to be different than the one Tabs generates based on the title." TAB_ALIGNMENT_HANDLES="Alignment Handles" TAB_ALIGNMENT_HANDLES_DESC="Select the alignment of the handles. Option 'Auto' will align the handles left or right based on the language settings." TAB_CLICK="Click" TAB_CLOSING_TAG="Closing Tag" TAB_CLOSING_TAG_DESC="The word used for the closing tag for tabs.<br><br>By default this is 'tabs'. So an closing tag looks like:<br><span class="rl_code">{/tabs}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." TAB_COLOR_INACTIVE_HANDLES="Color Inactive Handles" TAB_COLOR_INACTIVE_HANDLES_DESC="Select to have a grey background for the non-active tab handles." TAB_CONTENT_DESC="You can edit the content of the tab after it has been inserted into the editor." TAB_DEFAULT="Opened by Default" TAB_DEFAULT_DESC="Select to make this tab opened by default. You need to set one tab per tab as the default." TAB_ERROR_EMPTY_TITLE="Please give at least the first tab a title." TAB_FADE="Fade" TAB_FADE_DESC="Select to enable fading of the content when switching between tabs." TAB_HOVER="Hover" TAB_INIT_TIMEOUT="Initialise Delay" TAB_INIT_TIMEOUT_DESC="Set the delay in milliseconds to initialise the Tabs script after pageload. You can use this to make Tabs initialise after other scripts that may require this to function." TAB_MAIN_CLASS="Main Class" TAB_MAIN_CLASS_DESC="Optionally add extra class names to the main Tabs container." TAB_MAX_TAB_COUNT="Maximum number of Tabs" TAB_MAX_TAB_COUNT_DESC="Set the maximum number of tabs shown in the editor button popup window. Increasing this number can cause that window to take longer to load." TAB_MODE="Mode" TAB_MODE_DESC="Select whether the tabs should change on mouse click or hover." TAB_NESTED_ID="Nested Set ID" TAB_NESTED_ID_DESC="Give the nested set an id. This should not be the same as any other nested set within the same parent tab." TAB_NESTED_SET="Handle as Nested Set" TAB_NESTED_SET_DESC="Select if this is a set inside another tab set" TAB_OLD="Old School" TAB_OPENING_TAG="Opening Tag" TAB_OPENING_TAG_DESC="The word used for the opening tags for tabs.<br><br>By default this is 'tab'. So an opening tag looks like:<br><span class="rl_code">{tab title="My Tab Title"}</span><br><br>You can change the word if you are using another plugin that uses this tag syntax." TAB_OUTLINE="Use outline" TAB_OUTLINE_CONTENT="Outline Content" TAB_OUTLINE_CONTENT_DESC="Select to have a border and padding around the content." TAB_OUTLINE_HANDLES="Outline Handles" TAB_OUTLINE_HANDLES_DESC="Select to have a border around the tab handles." TAB_OUTPUT_TITLE_TAG="Output Title Tag" TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Positioning Handles" TAB_POSITIONING_HANDLES_DESC="Select the positioning (placement) of the handles." TAB_RELOAD_IFRAMES="Reload Iframes" TAB_RELOAD_IFRAMES_DESC="Select to make the iframes reload the first time the tab it is in gets activated. Only use this when you have iframes that cause issues when loaded in closed tabs." TAB_SAVE_COOKIES="Save Cookies" TAB_SAVE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies. Enable this if you want to use this information in other custom scripts." TAB_SCROLL="Scroll to Top" TAB_SCROLL_BY_URL="Scroll by URL" TAB_SCROLL_BY_URL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via the URL. You can overrule this option by adding a minus (-) to the end of the tab name in the URL.<br><br>If not selected, you can overrule this and make the page scroll by adding a plus (+) to the end of the tab name in the URL." TAB_SCROLL_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened." TAB_SCROLL_LINKS="Scroll on Links" TAB_SCROLL_LINKS_DESC="If selected, the window will scroll to the top of the tabs when a tab is opened via a link." TAB_SCROLL_OFFSET="Scroll offset" TAB_SCROLL_OFFSET_DESC="The scroll offset in pixels. If this is set to a negative number, the browser will scroll to a point above the tab. This can be useful when your website has a floating top menu." TAB_SCROLL_OFFSET_MOBILE="Scroll offset (mobile)" TAB_SET_SETTINGS="Tab Set Settings" TAB_SLIDESHOW="Slideshow" TAB_SLIDESHOW_DESC="Select to make the tabs automatically open one-by-one using the default or given timeout." TAB_SLIDESHOW_TIMEOUT="Slideshow Interval" TAB_SLIDESHOW_TIMEOUT_DESC="The time each tab should show before going to the next tab (in milliseconds)." TAB_STOP_SLIDESHOW_ON_CLICK="Stop on click" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Select to make the slideshow stop when clicking on one of the tab handles." TAB_TAB_NUMBER="Tab [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Select whether to use a space or '=' in the tags to separate the tag name from the title." TAB_TITLE_EMPTY="Only tabs that have a title will be used." TAB_TITLE_TAG="Title tag" TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Use Cookies" TAB_USE_COOKIES_DESC="If selected, the active tabs will be stored in the cookies and will remain active when page is revisited." TAB_USE_HASH="Use Hash" TAB_USE_HASH_DESC="If selected, the active tab can be set via the hash fragment in the URL (#my-tab-title) and will be added to the URL when a tab is activated" TAB_USE_RESPONSIVE_VIEW="Use alternative mobile view" TAB_USE_RESPONSIVE_VIEW_DESC="Select to change the tabs to a stacked navigation list on mobile width screens." language/uk-UA/uk-UA.plg_system_tabs.sys.ini 0000604 00000001062 15245530525 0014710 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - робіть вкладки зі змістом в Joomla!" TABS="Закладки" language/uk-UA/uk-UA.plg_system_tabs.ini 0000604 00000026510 15245530525 0014100 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="System - Regular Labs - Tabs" PLG_SYSTEM_TABS_DESC="Tabs - робіть вкладки зі змістом в Joomla!" TABS="Закладки" INSERT_TABS="Вставити вкладки" TABS_DESC="За допомогою Tabs ви можете зробити вкладок змісту в будь-якому місці в Joomla!<br><br>Синтаксис виглядає як:<br><span class="rl_code">{tab title="Вкладка 1"}<br>Ваш текст...<br>{tab title="Вкладка 2"}<br>Ваш текст...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не може функціонувати." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Плагин Regular Labs Library не увімкнено." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Плагин Regular Labs Library не встановлений." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Плагин Regular Labs Library застарілий. Будь ласка перевстановіть [[%1:extension name%]]." TAB_ALIAS_DESC="Додатково дайте вкладці псевдонім, якщо ви хочете відрізняти її від іншої вкладки, яка генерується виходячи з її назви." TAB_ALIGNMENT_HANDLES="Вирівнювання" TAB_ALIGNMENT_HANDLES_DESC="Виберіть як вирівнювати. Опція 'Авто' вирівнює вкладки вліво або вправо, в залежності від мовних параметрів." TAB_CLICK="Натисніть кнопку" TAB_CLOSING_TAG="Замикаючий Тег" TAB_CLOSING_TAG_DESC="Слово, яке використовується для закриваючого тегу вкладок.<br><br>За замовчуванням це 'tabs'. Тому закриваючий тег виглядає так:<br><span class="rl_code">{/tabs}</span><br><br>Ви можете змінити слова, якщо ви використовуєте інший плагін, який використовує цей синтаксис тегу." TAB_COLOR_INACTIVE_HANDLES="Колір неактивних вкладок" TAB_COLOR_INACTIVE_HANDLES_DESC="Виберіть, щоб мати сірий фон для не активної вкладки." TAB_CONTENT_DESC="Ви можете відредагувати вміст вкладки після того, як він був вставлений в редактор." TAB_DEFAULT="Відкрито за замовчуванням" TAB_DEFAULT_DESC="Виберіть, щоб ця вкладка відкривається за замовчуванням. Вам потрібно встановити одну вкладку, як вкладку за замовчуванням." TAB_ERROR_EMPTY_TITLE="Будь ласка, дайте назву хочаб першій вкладці." TAB_FADE="Зникати" TAB_FADE_DESC="Виберіть, щоб включити загасання змісту при перемиканні між вкладками." TAB_HOVER="Наведення миші" TAB_INIT_TIMEOUT="Затримка ініціалізації" TAB_INIT_TIMEOUT_DESC="Встановіть затримку в мілісекундах для ініціалізації скрипта вкладок після завантаження сторінки. Ви можете використовувати це, щоб ініціалізувати вкладки після інших скриптів, які можуть вимагати цю функцію." TAB_MAIN_CLASS="Головний клас" TAB_MAIN_CLASS_DESC="За бажанням додайте додаткові імена класів в контейнер головних вкладок." TAB_MAX_TAB_COUNT="Максимальна кількість вкладок" TAB_MAX_TAB_COUNT_DESC="Встановити максимальну кількість вкладок, що показуються кнопкою у спливаючому вікні в редакторі. Збільшення цього числа може викликати більше часу для завантаження цього вікна." TAB_MODE="Режим" TAB_MODE_DESC="Виберіть, як мають змінюватись вкладки по клацанню миші або при наведенні." TAB_NESTED_ID="Набір вкладених ID" TAB_NESTED_ID_DESC="Дайте вкладений набір ідентифікатора ID. Він не повинно бути таким само, як і будь-який інший вкладений в ту ж саму "батьківську" вкладку." TAB_NESTED_SET="Як вкладений набір" TAB_NESTED_SET_DESC="Виберіть, якщо цей набір всередині іншиого набору вкладок" TAB_OLD="Стара Школа" TAB_OPENING_TAG="Відкриваючий Тег" TAB_OPENING_TAG_DESC="Слово, яке використовується для тегів відкриття кладок.<br><br>За замовчуванням це 'tab'. Так що відкриваючий тег виглядає так:<br><span class="rl_code">{tab title="Назва вкладки"}</span><br><br>Ви можете змінити слова, якщо ви використовуєте інший плагін, який використовує цей синтаксис тегу." TAB_OUTLINE="Використовувати контур" TAB_OUTLINE_CONTENT="Окреслити зміст" TAB_OUTLINE_CONTENT_DESC="Виберіть, щоб мати межі і відступи навколо змісту." TAB_OUTLINE_HANDLES="Окреслити" TAB_OUTLINE_HANDLES_DESC="Виберіть, щоб окреслити межу навколо носія вкладки." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Позиціонування" TAB_POSITIONING_HANDLES_DESC="Виберіть позиціонування (розміщення)." TAB_RELOAD_IFRAMES="Перезавантажити Iframes" TAB_RELOAD_IFRAMES_DESC="Виберіть, щоб iframe перезавантажувалась при першому активуванні вкладки. Використовуйте це тільки, коли у вас є iframe, які викликають проблеми при завантаженні в закритих вкладках." TAB_SAVE_COOKIES="Зберегти куки" TAB_SAVE_COOKIES_DESC="У разі вибору, активні вкладки будуть збережені в кукіз. Ввімкніть цю опцію, якщо ви хочете використовувати цю інформацію в інших користувальницьких скриптах." TAB_SCROLL="Прокрутка" TAB_SCROLL_BY_URL="Виділіть по URL" TAB_SCROLL_BY_URL_DESC="Якщо вибрано, вікно прокручується у верхню частину вкладок, коли вкладка відкривається через URL. Ви можете змінити цей параметр, додавши мінус (-) в кінці імені вкладки в URL-адресі.<br><br>Якщо цей параметр не вибрано, ви можете перевизначити це і зробити прокрутку сторінок, додавши "плюс" ( + ) в кінці імені вкладки в URL-адресі." TAB_SCROLL_DESC="Якщо вибрано, вікно прокручується у верхню частину вкладки, коли вкладка відкривається ." TAB_SCROLL_LINKS="Перейдіть за посиланнями вкладок" TAB_SCROLL_LINKS_DESC="Якщо вибрано, вікно прокручується у верхню частину вкладки, коли кладка відкривається за допомогою посилання вкладки." TAB_SCROLL_OFFSET="Зміщення прокрутки" TAB_SCROLL_OFFSET_DESC="Зміщення в пікселях. Якщо задано від'ємне число, браузер зміщується до позиції над вкладкою. Це може бути корисно, коли ваш сайт має плаваюче верхнє меню." TAB_SCROLL_OFFSET_MOBILE="Зміщення прокрутки (мобільний)" TAB_SET_SETTINGS="Параметри набору вкладок" TAB_SLIDESHOW="Слайд-шоу" TAB_SLIDESHOW_DESC="Виберіть, щоб зробити аби закладки автоматично відкривати одна за одною, використовуючи заданий тайм-аут або за замовчуванням ." TAB_SLIDESHOW_TIMEOUT="Інтервал слайд-шоу" TAB_SLIDESHOW_TIMEOUT_DESC="Час для показу кожної вкладки перед походом до наступної вкладцки (в мілісекундах)." TAB_STOP_SLIDESHOW_ON_CLICK="Зупинити по кліку" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Виберіть, щоб зупинити слайд-шоу при натисканні на одну з вкладок." TAB_TAB_NUMBER="Вкладка [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Оберіть, чи використовувати пробіл або '=' в тегах, щоб відокремити ім'я тега від заголовка." TAB_TITLE_EMPTY="Тільки вкладки, які мають назву, будуть використовуватися." TAB_TITLE_TAG="Тег назви" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Використовувати кукіз" TAB_USE_COOKIES_DESC="Якщо вибрано, активні вкладки будуть збережені в кукіз і буде залишатися активними, коли сторінки відвідуються повторно." TAB_USE_HASH="Використовувати хеш" TAB_USE_HASH_DESC="Якщо вибрано, активніу вкладку можна встановити за допомогою хеш-фрагменту в URL (#my-tab-title), який буде додано до URL-адреси, коли активується вкладка" TAB_USE_RESPONSIVE_VIEW="Використовувати альтернативний мобільний вигляд" TAB_USE_RESPONSIVE_VIEW_DESC="Виберіть, щоб змінити вкладки на список навігації на мобільних екраніах." language/et-EE/et-EE.plg_system_tabs.ini 0000604 00000015772 15245530525 0014042 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Süsteem - Regular Labs - Sakid" PLG_SYSTEM_TABS_DESC="Tabs - loo sakke Joomlas" TABS="Sakid" INSERT_TABS="Sisesta sakid" TABS_DESC="Tabsiga saad luua artiklisse ja teistele aladele sakke<br><br>Süntaks näeb välja umbes selline:<br><span class="rl_code">{tab title="Saki pealkiri 1"}<br>Sinu tekst...<br>{tab title="Saki pealkiri 2"}<br>Sinu tekst...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ei saa töötada." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin pole lubatud." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin pole paigaldatud." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin on vana. Paigalda see uuesti [[%1:extension name%]]." TAB_ALIAS_DESC="Saad anda sakile oma aliase kui sulle ei meeldi automaatselt saki pealkirjast loodud alias." TAB_ALIGNMENT_HANDLES="Joondamise seaded" TAB_ALIGNMENT_HANDLES_DESC="Määra joondamine. 'Auto' joondab kas vasakule või paremale, sõltuvalt keelesätetest." TAB_CLICK="Klikkides" TAB_CLOSING_TAG="Sulgemise silt" TAB_CLOSING_TAG_DESC="Sõna, mida kasutatakse koodi lõpetamiseks.<br><br>Vaikimisi on see 'tabs'. Sellisel juhul sulgev tag näeb välja nii:<br><span class="rl_code">{/tabs}</span><br><br>Seda tag'i saad ise muuta kui mõni muu lisa kasutab samasugust tag'i süntaksit." TAB_COLOR_INACTIVE_HANDLES="Mitteaktiivsete värv" TAB_COLOR_INACTIVE_HANDLES_DESC="Vali näiteks hall taust mitteaktiivsetele sakkidele." TAB_CONTENT_DESC="Sa saad sakkide sisu muuta ka siis kui need on sisestatud redaktori aknasse." TAB_DEFAULT="Ava vaikimisi" TAB_DEFAULT_DESC="Määra, et see sakk on vaikimis avatud. Peamiseks määra vaid üks sakk." TAB_ERROR_EMPTY_TITLE="Anna vähemalt ühele sakile pealkiri." TAB_FADE="Tuhmumine" TAB_FADE_DESC="Luba tuhmumise efekt, kui sakke vahetatakse." TAB_HOVER="Üle liikumisel" TAB_INIT_TIMEOUT="Käivitamise viide" TAB_INIT_TIMEOUT_DESC="Määra viide millisekundites, millal pärast lehe laadimist sakid käivitatakse . Seda saad kasutada siis kui sul on vaja, et mõned skriptid jõuaksid käivituda enne, kui sakid käivituvad." TAB_MAIN_CLASS="Peamine klass" TAB_MAIN_CLASS_DESC="Lisavõimalus lisada klasse Tab'ise konteinerile." TAB_MAX_TAB_COUNT="Sakkide maksimaalne arv" TAB_MAX_TAB_COUNT_DESC="Määra maksimaalne sakkide arv, mida redaktori nupu alt hüpikaknasse näidatakse. Ära seda liiga suureks aja, muidu avaneb aken lihtsalt liiga kaua." TAB_MODE="Režiim" TAB_MODE_DESC="Vali, kas sakid peavad vahetuma hiire klikkides või üle liikumisel." TAB_NESTED_ID="Puuvaate komplekti ID" TAB_NESTED_ID_DESC="Anna puuvaates olevatele sakkidekopmplektile ID. See ei tohiks olla sama mis mõnel teisel alam-sakikomplektil." TAB_NESTED_SET="Kasuta puuvaate komplekti" TAB_NESTED_SET_DESC="Vali, kui see komplekt kuulub teise saki komplekti" TAB_OLD="Vana kool" TAB_OPENING_TAG="Avamise silt" TAB_OPENING_TAG_DESC="Sõna, mida kasutatakse koodi alustamiseks.<br><br>Vaikimisi on see 'tabs'. Sellisel juhul avamise silt näeb välja nii:<br><span class="rl_code">{tab title="Saki pealkiri"}</span><br><br>Seda tag'i saad ise muuta kui mõni muu lisa kasutab samasugust sildi süntaksit." TAB_OUTLINE="Kasuta kontuure" TAB_OUTLINE_CONTENT="Kontuuriga sisu" TAB_OUTLINE_CONTENT_DESC="Vali piirjoon ja servade kaugus sisust." TAB_OUTLINE_HANDLES="Kontuuriga ..." TAB_OUTLINE_HANDLES_DESC="Vali, et sakkide ümber näidatakse piirjoont." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Positsioneerimine" TAB_POSITIONING_HANDLES_DESC="Vali positsioneerimise (asendamise) kasutamine." TAB_RELOAD_IFRAMES="Lae iframe'd uuesti" TAB_RELOAD_IFRAMES_DESC="Määra, et iframe'tud asjad laetakse sakis alles siis kui sakk avatakse. Kasuta seda ainult siis, kui sul on iframe'de näitamisega probleeme." TAB_SAVE_COOKIES="Salvesta küpsised" TAB_SAVE_COOKIES_DESC="Selle seadega saab viimati valitud saki info salvestada küpsisesse. Seega, kui kasutaja tuleb kunagi samale lehele tagasi, siis avatakse talle just see sakk mis tal viimati lahti oli." TAB_SCROLL="Keri üles" TAB_SCROLL_BY_URL="Keri URL järgi" TAB_SCROLL_BY_URL_DESC="Selle valimisel keritakse kasutaja veebibrauseri aken nii, et sakid algavad kohe ülemisest äärest. Selle seade saab üle kirjutada kasutades miinusmärki saki nime lõpus URL aadressis.<br><br>Kui seda seadet ei vali, siis URL'is saad selle välja kutsuda kasutades saki nime lõpus plussmärki." TAB_SCROLL_DESC="Selle valimisel keritakse kasutaja veebibrauseri aken nii, et sakid algavad kohe ülemisest äärest." TAB_SCROLL_LINKS="Keri sakke linkide korral" TAB_SCROLL_LINKS_DESC="Selle valimisel keritakse kasutaja veebibrauseri aken saki lingile klikkides nii, et sakid algavad kohe ülemisest äärest." TAB_SCROLL_OFFSET="Kerimine" TAB_SCROLL_OFFSET_DESC="Kerimise arv pikslites. Kui siia sisestada negatiivne number, siis brauser kerib hoopis ülespoole. See võib olla kasulik siis kui su lehel on ujuvat laadi menüü." TAB_SCROLL_OFFSET_MOBILE="Kerimine (mobiilseadmetele)" TAB_SET_SETTINGS="Sakikomplekti seaded" TAB_SLIDESHOW="Slaidivaade" TAB_SLIDESHOW_DESC="Määra, et sakid avaneksid automaatselt üksteise järel etteantud aja jooksul." TAB_SLIDESHOW_TIMEOUT="Slaidivaate aeg" TAB_SLIDESHOW_TIMEOUT_DESC="Aeg, mil sakid vahetuvad (millisekundites)" TAB_STOP_SLIDESHOW_ON_CLICK="Peatu klikkides" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Kas slaidivaade peaks klikkimise peale seiskuma?" TAB_TAB_NUMBER="Sakk [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Vali, kas kasutatakse tühikut või võrdusmärki tag'ide eraldamiseks pealkrijast." TAB_TITLE_EMPTY="Kasutatakse vaid neid sakke, millel on pealkiri." TAB_TITLE_TAG="Pealkirja silt" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Kasuta küpsiseid" TAB_USE_COOKIES_DESC="Selle seadega saab viimati valitud saki info salvestada küpsisesse. Seega, kui kasutaja tuleb kunagi samale lehele tagasi, siis avatakse talle just see sakk, mis tal viimati lahti oli." TAB_USE_HASH="Kasuta Hash'i" TAB_USE_HASH_DESC="Kui see on valitud, siis saab URL'is määrata aktiivset sakki (#minu-saki-pealkiri)." TAB_USE_RESPONSIVE_VIEW="Kasuta alternatiivset mobiilivaadet" TAB_USE_RESPONSIVE_VIEW_DESC="Vali sakkide muutus mobbilsete seadmete ekraanil" language/et-EE/et-EE.plg_system_tabs.sys.ini 0000604 00000001001 15245530525 0014633 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Süsteem - Regular Labs - Sakid" PLG_SYSTEM_TABS_DESC="Tabs - loo sakke Joomlas" TABS="Sakid" language/fr-FR/fr-FR.plg_system_tabs.sys.ini 0000604 00000001147 15245530525 0014700 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Système - Panneaux à onglets Regular Labs" PLG_SYSTEM_TABS_DESC="Le plug-in système Tabs permet de créer/insérer des panneaux à onglets (tabs) dans tous les contenus Joomla!" TABS="Onglets" language/fr-FR/fr-FR.plg_system_tabs.ini 0000604 00000024127 15245530525 0014066 0 ustar 00 ;; @package Tabs ;; @version 8.0.1 ;; ;; @author Peter van Westen <info@regularlabs.com> ;; @link http://www.regularlabs.com ;; @copyright Copyright © 2021 Regular Labs All Rights Reserved ;; @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL ;; ;; @translate Want to help with translations? See: https://www.regularlabs.com/translate PLG_SYSTEM_TABS="Système - Panneaux à onglets Regular Labs" PLG_SYSTEM_TABS_DESC="Le plug-in système Tabs permet de créer/insérer des panneaux à onglets (tabs) dans tous les contenus Joomla!" TABS="Onglets" INSERT_TABS="Insérer un panneau à onglets" TABS_DESC="Le plug-in système Tabs de Regular Labs vous permet de créer/insérer des panneaux à onglets (tabs) dans tous les contenus Joomla tels les descriptions de catégorie, les articles, les modules personnalisés, et tout autre composant ayant une zone d'éditeur.<br><br>Vous pouvez insérer les panneaux à onglets à l'aide du bouton sous l'éditeur ou, en insérant les balises manuellement.<br>La syntaxe des panneaux à onglets prend cette forme :<br><span class="rl_code">{tab title="Titre 1"}<br>Votre texte...<br>{tab title="Titre 2"}<br>Votre texte...<br>{/tabs}</span>" TAB_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne peut pas fonctionner." TAB_REGULAR_LABS_LIBRARY_NOT_ENABLED="Le plugin Regular Labs Library n'est pas activé." TAB_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Le plugin Regular Labs Library n'est pas installé." TAB_REGULAR_LABS_LIBRARY_OUTDATED="Le plugin de la bibliothèque Regular Labs est obsolète. Essayez de réinstaller [[%1:extension name%]]." TAB_ALIAS_DESC="Vous pouvez attribuer un alias à l'onglet si vous voulez qu'il soit différent de celui généré sur la base du titre." TAB_ALIGNMENT_HANDLES="Alignement des onglets" TAB_ALIGNMENT_HANDLES_DESC="Sélectionnez l'alignement des onglets.<br>'Auto' aligne les onglets à gauche ou à droite en fonction des paramètres de langue.<br>Justifié aligne les onglets en fonction des paramètres de langue en les justifiant à la largeur totale du panneau." TAB_CLICK="Clic" TAB_CLOSING_TAG="Identifiant de fermeture" TAB_CLOSING_TAG_DESC="Mot utilisé comme identifiant de la balise de fermeture des panneaux à onglets, 'tabs' par défaut. Vous pouvez changer ce mot si un autre plug-in l'utilise déjà pour la syntaxe de ses balises.<br>Exemple des balises d'un panneau à 2 onglets :<br><span class="rl_code">{tab title="Onglet 1"}</span><br> Le contenu de l'onglet 1<br><span class="rl_code">{tab title="Onglet 2"}</span><br> Le contenu de l'onglet 2<br><span class="rl_code">{/tabs}</span>" TAB_COLOR_INACTIVE_HANDLES="Couleur d'onglets inactifs" TAB_COLOR_INACTIVE_HANDLES_DESC="En sélectionnant 'Oui', un fond gris est appliqué aux onglets fermés." TAB_CONTENT_DESC="Vous pouvez modifier le contenu de l'onglet après l'avoir inséré dans l'éditeur." TAB_DEFAULT="Ouvert par défaut" TAB_DEFAULT_DESC="Sélectionnez ce paramètre pour ouvrir cet onglet par défaut. Vous devez définir un onglet par défaut." TAB_ERROR_EMPTY_TITLE="Veuillez donner au moins un titre au premier onglet." TAB_FADE="Fondu de tansition" TAB_FADE_DESC="Sélectionnez 'Oui' pour activer un effet de fondu lors de la transition d'un onglet à l'autre." TAB_HOVER="Survol" TAB_INIT_TIMEOUT="Initialisation du script" TAB_INIT_TIMEOUT_DESC="Vous pouvez définir ici un délai en millisecondes avant l'initialisation du script des panneaux à onglets si, pour une raison de bon fonctionnement, vous devez laisser d'autres scripts s'initialiser en premier. Vous pouvez par exemple indiquer le temps calculé du chargement de la page." TAB_MAIN_CLASS="Classes supplémentaires" TAB_MAIN_CLASS_DESC="Vous pouvez ajouter un ou plusieurs noms de classe à appliquer à la div principale des panneaux à onglets (tabs). L'ajout d'une nouvelle classe permet de personnaliser les styles des classes de l'extension, en reprenant ces mêmes classes précédées de celle(s) ajoutée(s) dans un fichier CSS chargé dans la page." TAB_MAX_TAB_COUNT="Nombre d'onglets proposés" TAB_MAX_TAB_COUNT_DESC="Définissez le nombre d'onglets affichés dans la fenêtre des paramètres d'insertion disponible lors d'un clic du bouton placé sous l'éditeur. Attention, un nombre important d'onglets peut entraîner un chargement plus long de la fenêtre." TAB_MODE="Élément de transition" TAB_MODE_DESC="Sélectionner l'élément devant déclencher la transition entre les onglets : le clic ou le survol de souris sur l'onglet." TAB_NESTED_ID="Id du lot imbiqué" TAB_NESTED_ID_DESC="Donnez à cet ensemble imbriqué un id unique (ne doit pas être le même que tout autre ensemble imbriqué dans le même onglet parent)." TAB_NESTED_SET="Définir comme lot imbriqué" TAB_NESTED_SET_DESC="Sélectionnez ce paramètre si l'ensemble de ces panneaux à onglets se trouvent dans un autre ensemble de panneaux à onglets" TAB_OLD="Vieille école" TAB_OPENING_TAG="Identifiant d'ouverture" TAB_OPENING_TAG_DESC="Mot utilisé comme identifiant de la balise d'ouverture des panneaux à onglets, 'tab' par défaut. Vous pouvez changer ce mot si un autre plug-in l'utilise déjà pour la syntaxe de ses balises.<br>Exemple des balises d'un panneau à 2 onglets :<br><span class="rl_code">{tab title="Onglet 1"}</span><br> Le contenu de l'onglet 1<br><span class="rl_code">{tab title="Onglet 2"}</span><br> Le contenu de l'onglet 2<br><span class="rl_code">{/tabs}</span>" TAB_OUTLINE="Afficher les contours" TAB_OUTLINE_CONTENT="Contour des panneaux" TAB_OUTLINE_CONTENT_DESC="Sélectionnez 'Oui' si vous souhaitez attribuer une bordure à la zone de contenu." TAB_OUTLINE_HANDLES="Contour des onglets" TAB_OUTLINE_HANDLES_DESC="Sélectionnez cette option pour avoir une bordure autour des onglets." ; TAB_OUTPUT_TITLE_TAG="Output Title Tag" ; TAB_OUTPUT_TITLE_TAG_DESC="Select to output the title tag. These tags will be hidden when the tabs are generated, but will be visible on pages where the sliders are not handled (like on browsers that do not support javascript)." TAB_POSITIONING_HANDLES="Position des onglets" TAB_POSITIONING_HANDLES_DESC="Sélectionnez le positionnement (placement) des onglets : haut, bas, gauche ou droite du panneau." TAB_RELOAD_IFRAMES="Recharger les iframes" TAB_RELOAD_IFRAMES_DESC="Sélectionnez 'Oui' pour que les iframes soient rechargées lors de leur premier affichage (onglet activé) si elles ne s'affichent pas correctement après chargement dans des onglets fermés." TAB_SAVE_COOKIES="Cookies - Onglets actifs" TAB_SAVE_COOKIES_DESC="Sélectionnez 'Oui' pour que les onglets actifs soient mémorisés par des cookies. Activez cette option si vous souhaitez utiliser ces informations dans des scripts personnalisés." TAB_SCROLL="Défilement de fenêtre" TAB_SCROLL_BY_URL="Défilement par URL complète" TAB_SCROLL_BY_URL_DESC="Sélectionnez 'Oui' si vous souhaitez que la fenêtre défile vers le haut des onglets lorsqu'un onglet est ouvert via son URL complète.<br>Vous pouvez annuler cette option en ajoutant un signe moins (-) dans l'URL à la fin du nom de l'onglet." TAB_SCROLL_DESC="Sélectionnez 'Oui' si vous souhaitez que la fenêtre défile vers le haut des onglets lorsqu'un onglet est ouvert." TAB_SCROLL_LINKS="Défilement par lien d'ancre" TAB_SCROLL_LINKS_DESC="Sélectionnez 'Oui' si vous souhaitez que la fenêtre défile vers le haut des onglets lorsqu'un onglet est ouvert via un lien dans la même page (ancre)." TAB_SCROLL_OFFSET="Défilement compensé (ordi)" TAB_SCROLL_OFFSET_DESC="Vous pouvez appliquer un décalage en pixels au défilement de la fenêtre sur les onglets. Par exemple, si ce paramètre est réglé sur un nombre négatif comme -20px, le navigateur va défiler jusqu'à 20 pixels au-dessus des onglets. Un décalage négatif peut s'avérer utile lorsque votre site dispose d'un menu haut fixe (ne défilant pas avec la fenêtre) pouvant couvrir les panneaux à onglets." TAB_SCROLL_OFFSET_MOBILE="Défilement compensé (mobile)" TAB_SET_SETTINGS="Paramètres de la série d'onglets" TAB_SLIDESHOW="Diaporama" TAB_SLIDESHOW_DESC="Sélectionnez cette option pour que les onglets s'ouvrent automatiquement un par un à l'aide de la valeur par défaut ou délai donné." TAB_SLIDESHOW_TIMEOUT="Durée d'affichage" TAB_SLIDESHOW_TIMEOUT_DESC="Durée d'affichage de chaque onglet avant de passer au suivant (en millisecondes)." TAB_STOP_SLIDESHOW_ON_CLICK="Stopper au clic" TAB_STOP_SLIDESHOW_ON_CLICK_DESC="Sélectionnez 'Oui' si vous souhaitez que le défilement du diaporama stoppe lors d'un clic sur l'un des onglets." TAB_TAB_NUMBER="Onglet [[%1:number%]]" TAB_TAG_SYNTAX_DESC="Choisissez entre un espace et le caractère égal = le type de séparation à utiliser entre l'identifiant et le titre dans la syntaxe des balises d'ouverture." TAB_TITLE_EMPTY="Seuls les onglets qui ont un titre seront utilisés." TAB_TITLE_TAG="Balise de titre (affichage brut)" ; TAB_TITLE_TAG_DESC="This is the tag type used for the tab titles. These tags will be hidden when the tabs are generated, but will be visible on pages where the tabs are not handled (like on the print page or on browsers that do not support javascript)." TAB_USE_COOKIES="Cookies - État des onglets" TAB_USE_COOKIES_DESC="Sélectionnez 'Oui' pour que l'état des onglets (ouverts, fermés) soient mémorisé par des cookies. Cela permet de retrouver les onglets dans une page revisitée tels qu'ils étaient lorsque vous avez quitté la page." TAB_USE_HASH="Hachage dans l'URL" TAB_USE_HASH_DESC="Sélectionnez 'Oui' si vous souhaitez que l'onglet actif puisse être sélectionné via un fragment de hachage dans l'URL (...#titre). Si 'Oui', le hachage avec le titre est ajouté à l'URL lorsqu'un onglet est activé." TAB_USE_RESPONSIVE_VIEW="Affichage alternatif pour mobile" TAB_USE_RESPONSIVE_VIEW_DESC="Sélectionnez 'Oui' si vous souhaitez remplacer les onglets par une liste de navigation empilée sur les écrans des appareils mobiles (smartphone/tablette)." vendor/composer/ClassLoader.php 0000604 00000026316 15245530525 0012607 0 ustar 00 <?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Autoload; /** * ClassLoader implements a PSR-0, PSR-4 and classmap class loader. * * $loader = new \Composer\Autoload\ClassLoader(); * * // register classes with namespaces * $loader->add('Symfony\Component', __DIR__.'/component'); * $loader->add('Symfony', __DIR__.'/framework'); * * // activate the autoloader * $loader->register(); * * // to enable searching the include path (eg. for PEAR packages) * $loader->setUseIncludePath(true); * * In this example, if you try to use a class in the Symfony\Component * namespace or one of its children (Symfony\Component\Console for instance), * the autoloader will first look for the class under the component/ * directory, and it will then fallback to the framework/ directory if not * found before giving up. * * This class is loosely based on the Symfony UniversalClassLoader. * * @author Fabien Potencier <fabien@symfony.com> * @author Jordi Boggiano <j.boggiano@seld.be> * @see http://www.php-fig.org/psr/psr-0/ * @see http://www.php-fig.org/psr/psr-4/ */ class ClassLoader { // PSR-4 private $prefixLengthsPsr4 = []; private $prefixDirsPsr4 = []; private $fallbackDirsPsr4 = []; // PSR-0 private $prefixesPsr0 = []; private $fallbackDirsPsr0 = []; private $useIncludePath = false; private $classMap = []; private $classMapAuthoritative = false; private $missingClasses = []; private $apcuPrefix; public function getPrefixes() { if ( ! empty($this->prefixesPsr0)) { return call_user_func_array('array_merge', $this->prefixesPsr0); } return []; } public function getPrefixesPsr4() { return $this->prefixDirsPsr4; } public function getFallbackDirs() { return $this->fallbackDirsPsr0; } public function getFallbackDirsPsr4() { return $this->fallbackDirsPsr4; } public function getClassMap() { return $this->classMap; } /** * @param array $classMap Class to filename map */ public function addClassMap(array $classMap) { if ($this->classMap) { $this->classMap = array_merge($this->classMap, $classMap); } else { $this->classMap = $classMap; } } /** * Registers a set of PSR-0 directories for a given prefix, either * appending or prepending to the ones previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 root directories * @param bool $prepend Whether to prepend the directories */ public function add($prefix, $paths, $prepend = false) { if ( ! $prefix) { if ($prepend) { $this->fallbackDirsPsr0 = array_merge( (array) $paths, $this->fallbackDirsPsr0 ); } else { $this->fallbackDirsPsr0 = array_merge( $this->fallbackDirsPsr0, (array) $paths ); } return; } $first = $prefix[0]; if ( ! isset($this->prefixesPsr0[$first][$prefix])) { $this->prefixesPsr0[$first][$prefix] = (array) $paths; return; } if ($prepend) { $this->prefixesPsr0[$first][$prefix] = array_merge( (array) $paths, $this->prefixesPsr0[$first][$prefix] ); } else { $this->prefixesPsr0[$first][$prefix] = array_merge( $this->prefixesPsr0[$first][$prefix], (array) $paths ); } } /** * Registers a set of PSR-4 directories for a given namespace, either * appending or prepending to the ones previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * @param bool $prepend Whether to prepend the directories * * @throws \InvalidArgumentException */ public function addPsr4($prefix, $paths, $prepend = false) { if ( ! $prefix) { // Register directories for the root namespace. if ($prepend) { $this->fallbackDirsPsr4 = array_merge( (array) $paths, $this->fallbackDirsPsr4 ); } else { $this->fallbackDirsPsr4 = array_merge( $this->fallbackDirsPsr4, (array) $paths ); } } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) { // Register directories for a new namespace. $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } elseif ($prepend) { // Prepend directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( (array) $paths, $this->prefixDirsPsr4[$prefix] ); } else { // Append directories for an already registered namespace. $this->prefixDirsPsr4[$prefix] = array_merge( $this->prefixDirsPsr4[$prefix], (array) $paths ); } } /** * Registers a set of PSR-0 directories for a given prefix, * replacing any others previously set for this prefix. * * @param string $prefix The prefix * @param array|string $paths The PSR-0 base directories */ public function set($prefix, $paths) { if ( ! $prefix) { $this->fallbackDirsPsr0 = (array) $paths; } else { $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; } } /** * Registers a set of PSR-4 directories for a given namespace, * replacing any others previously set for this namespace. * * @param string $prefix The prefix/namespace, with trailing '\\' * @param array|string $paths The PSR-4 base directories * * @throws \InvalidArgumentException */ public function setPsr4($prefix, $paths) { if ( ! $prefix) { $this->fallbackDirsPsr4 = (array) $paths; } else { $length = strlen($prefix); if ('\\' !== $prefix[$length - 1]) { throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); } $this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length; $this->prefixDirsPsr4[$prefix] = (array) $paths; } } /** * Turns on searching the include path for class files. * * @param bool $useIncludePath */ public function setUseIncludePath($useIncludePath) { $this->useIncludePath = $useIncludePath; } /** * Can be used to check if the autoloader uses the include path to check * for classes. * * @return bool */ public function getUseIncludePath() { return $this->useIncludePath; } /** * Turns off searching the prefix and fallback directories for classes * that have not been registered with the class map. * * @param bool $classMapAuthoritative */ public function setClassMapAuthoritative($classMapAuthoritative) { $this->classMapAuthoritative = $classMapAuthoritative; } /** * Should class lookup fail if not found in the current class map? * * @return bool */ public function isClassMapAuthoritative() { return $this->classMapAuthoritative; } /** * APCu prefix to use to cache found/not-found classes, if the extension is enabled. * * @param string|null $apcuPrefix */ public function setApcuPrefix($apcuPrefix) { $this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null; } /** * The APCu prefix in use, or null if APCu caching is not enabled. * * @return string|null */ public function getApcuPrefix() { return $this->apcuPrefix; } /** * Registers this instance as an autoloader. * * @param bool $prepend Whether to prepend the autoloader or not */ public function register($prepend = false) { spl_autoload_register([$this, 'loadClass'], true, $prepend); } /** * Unregisters this instance as an autoloader. */ public function unregister() { spl_autoload_unregister([$this, 'loadClass']); } /** * Loads the given class or interface. * * @param string $class The name of the class * * @return bool|null True if loaded, null otherwise */ public function loadClass($class) { if ($file = $this->findFile($class)) { includeFile($file); return true; } } /** * Finds the path to the file where the class is defined. * * @param string $class The name of the class * * @return string|false The path if found, false otherwise */ public function findFile($class) { // class map lookup if (isset($this->classMap[$class])) { return $this->classMap[$class]; } if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { return false; } if (null !== $this->apcuPrefix) { $file = apcu_fetch($this->apcuPrefix . $class, $hit); if ($hit) { return $file; } } $file = $this->findFileWithExtension($class, '.php'); // Search for Hack files if we are running on HHVM if (false === $file && defined('HHVM_VERSION')) { $file = $this->findFileWithExtension($class, '.hh'); } if (null !== $this->apcuPrefix) { apcu_add($this->apcuPrefix . $class, $file); } if (false === $file) { // Remember that this class does not exist. $this->missingClasses[$class] = true; } return $file; } private function findFileWithExtension($class, $ext) { // PSR-4 lookup $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; $first = $class[0]; if (isset($this->prefixLengthsPsr4[$first])) { $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { foreach ($this->prefixDirsPsr4[$search] as $dir) { $length = $this->prefixLengthsPsr4[$first][$search]; if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) { return $file; } } } } } // PSR-4 fallback dirs foreach ($this->fallbackDirsPsr4 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { return $file; } } // PSR-0 lookup if (false !== $pos = strrpos($class, '\\')) { // namespaced class name $logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1) . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); } else { // PEAR-like class name $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; } if (isset($this->prefixesPsr0[$first])) { foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { if (0 === strpos($class, $prefix)) { foreach ($dirs as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } } } } // PSR-0 fallback dirs foreach ($this->fallbackDirsPsr0 as $dir) { if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { return $file; } } // PSR-0 include paths. if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) { return $file; } return false; } } /** * Scope isolated include. * * Prevents access to $this/self from included files. */ function includeFile($file) { include $file; } vendor/composer/autoload_real.php 0000604 00000002761 15245530525 0013224 0 ustar 00 <?php // autoload_real.php @generated by Composer class ComposerAutoloaderInit984a5d895b21919c58702468b682d755 { private static $loader; public static function loadClassLoader($class) { if ('Composer\Autoload\ClassLoader' === $class) { require __DIR__ . '/ClassLoader.php'; } } public static function getLoader() { if (null !== self::$loader) { return self::$loader; } spl_autoload_register(['ComposerAutoloaderInit984a5d895b21919c58702468b682d755', 'loadClassLoader'], true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader; spl_autoload_unregister(['ComposerAutoloaderInit984a5d895b21919c58702468b682d755', 'loadClassLoader']); $useStaticLoader = PHP_VERSION_ID >= 50600 && ! defined('HHVM_VERSION') && ( ! function_exists('zend_loader_file_encoded') || ! zend_loader_file_encoded()); if ($useStaticLoader) { require_once __DIR__ . '/autoload_static.php'; call_user_func(\Composer\Autoload\ComposerStaticInit984a5d895b21919c58702468b682d755::getInitializer($loader)); } else { $map = require __DIR__ . '/autoload_namespaces.php'; foreach ($map as $namespace => $path) { $loader->set($namespace, $path); } $map = require __DIR__ . '/autoload_psr4.php'; foreach ($map as $namespace => $path) { $loader->setPsr4($namespace, $path); } $classMap = require __DIR__ . '/autoload_classmap.php'; if ($classMap) { $loader->addClassMap($classMap); } } $loader->register(true); return $loader; } } vendor/composer/autoload_psr4.php 0000604 00000000313 15245530525 0013160 0 ustar 00 <?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return [ 'RegularLabs\\Plugin\\System\\Tabs\\' => [$baseDir . '/src'], ]; vendor/composer/installed.json 0000604 00000000003 15245530525 0012535 0 ustar 00 [] vendor/composer/autoload_classmap.php 0000604 00000000220 15245530525 0014070 0 ustar 00 <?php // autoload_classmap.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return [ ]; vendor/composer/autoload_static.php 0000604 00000001350 15245530525 0013561 0 ustar 00 <?php // autoload_static.php @generated by Composer namespace Composer\Autoload; class ComposerStaticInit984a5d895b21919c58702468b682d755 { public static $prefixLengthsPsr4 = [ 'R' => [ 'RegularLabs\\Plugin\\System\\Tabs\\' => 31, ], ]; public static $prefixDirsPsr4 = [ 'RegularLabs\\Plugin\\System\\Tabs\\' => [ 0 => __DIR__ . '/../..' . '/src', ], ]; public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { $loader->prefixLengthsPsr4 = ComposerStaticInit984a5d895b21919c58702468b682d755::$prefixLengthsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInit984a5d895b21919c58702468b682d755::$prefixDirsPsr4; }, null, ClassLoader::class); } } vendor/composer/autoload_namespaces.php 0000604 00000000222 15245530525 0014406 0 ustar 00 <?php // autoload_namespaces.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return [ ]; vendor/composer/LICENSE 0000604 00000002056 15245530525 0010702 0 ustar 00 Copyright (c) Nils Adermann, Jordi Boggiano Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. vendor/autoload.php 0000604 00000000262 15245530525 0010364 0 ustar 00 <?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit984a5d895b21919c58702468b682d755::getLoader();
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка