Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla4/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla4/advancedtemplates.zip

PKI�[����

advancedtemplates.phpnu�[���<?php
/**
 * @package         Advanced Template Manager
 * @version         3.9.5
 * 
 * @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\ArrayHelper as RL_Array;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\Log as RL_Log;

if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php'))
{
	return;
}

require_once JPATH_LIBRARIES . '/regularlabs/autoload.php';

if ( ! RL_Document::isJoomlaVersion(3))
{
	return;
}

if (true)
{
	class PlgActionlogAdvancedTemplates
		extends \RegularLabs\Library\ActionLogPlugin
	{
		public $name  = 'ADVANCEDTEMPLATEMANAGER';
		public $alias = 'advancedtemplates';

		public function __construct(&$subject, array $config = [])
		{
			parent::__construct($subject, $config);

			$this->items = [
				'style'    => (object) [
					'title' => 'PLG_ACTIONLOG_JOOMLA_TYPE_STYLE',
				],
				'template' => (object) [
					'title' =>
'PLG_ACTIONLOG_JOOMLA_TYPE_TEMPLATE',
				],
			];
		}

		public function onAfterTemplateStyleSetHome($context, $id)
		{
			if (strpos($context, $this->option) === false)
			{
				return;
			}

			if ( ! RL_Array::find(['*', 'change_default'],
$this->events))
			{
				return;
			}

			$style = $this->getStyleById($id);

			if ( ! $style)
			{
				return;
			}

			$languageKey = 'ATP_ACTIONLOGS_STYLE_SET_HOME';

			$message = [
				'style_name' => $style->title,
				'style_link' =>
'index.php?option=com_advancedtemplates&view=style&layout=edit&id='
. $id,
			];

			RL_Log::add($message, $languageKey, $context);
		}

		public function onAfterTemplateCopy($context, $from_name, $to_name)
		{
			if (strpos($context, $this->option) === false)
			{
				return;
			}

			if ( ! RL_Array::find(['*', 'template_copy'],
$this->events))
			{
				return;
			}

			$languageKey = 'ATP_ACTIONLOGS_TEMPLATE_COPY';

			$message = [
				'from_name' => $from_name,
				'to_name'   => $to_name,
			];

			RL_Log::add($message, $languageKey, $context);
		}

		public function onAfterTemplateFileCreate($context, $template,
$file_name)
		{
			if (strpos($context, $this->option) === false)
			{
				return;
			}

			if ( ! RL_Array::find(['*', 'files'],
$this->events))
			{
				return;
			}

			$languageKey = 'ATP_ACTIONLOGS_FILE_ADDED';

			$filelink =
'index.php?option=com_advancedtemplates&view=template&id='
. $template->extension_id
				. '&file=' . base64_encode($file_name);

			$message = [
				'type'     => JText::_('ATP_TEMPLATE_FILE'),
				'template' => $template->name,
				'file'     => ltrim($file_name, '/'),
				'filelink' => $filelink,
			];

			RL_Log::add($message, $languageKey, $context);
		}

		public function onAfterTemplateFileUpdate($context, $template,
$file_name)
		{
			if (strpos($context, $this->option) === false)
			{
				return;
			}

			if ( ! RL_Array::find(['*', 'files'],
$this->events))
			{
				return;
			}

			$languageKey = 'ATP_ACTIONLOGS_FILE_UPDATED';

			$filelink =
'index.php?option=com_advancedtemplates&view=template&id='
. $template->extension_id
				. '&file=' . base64_encode($file_name);

			$message = [
				'type'     => JText::_('ATP_TEMPLATE_FILE'),
				'template' => $template->name,
				'file'     => ltrim($file_name, '/'),
				'filelink' => $filelink,
			];

			RL_Log::add($message, $languageKey, $context);
		}

		public function onAfterTemplateFileDelete($context, $template,
$file_name)
		{
			if (strpos($context, $this->option) === false)
			{
				return;
			}

			if ( ! RL_Array::find(['*', 'files'],
$this->events))
			{
				return;
			}

			$languageKey = 'ATP_ACTIONLOGS_FILE_DELETED';

			$message = [
				'type'     => JText::_('ATP_TEMPLATE_FILE'),
				'template' => $template->name,
				'file'     => ltrim($file_name, '/'),
			];

			RL_Log::add($message, $languageKey, $context);
		}

		private function getStyleById($id)
		{
			$db = JFactory::getDbo();

			$query = $db->getQuery(true)
				->select('*')
				->from($db->quoteName('#__template_styles'))
				->where($db->quoteName('id') . ' = ' . (int)
$id);
			$db->setQuery($query);

			return $db->loadObject();
		}
	}
}
PKI�[YOm�kkadvancedtemplates.xmlnu�[���<?xml
version="1.0" encoding="UTF-8"?>
<extension version="3.9" type="plugin"
group="actionlog" method="upgrade">
	<name>PLG_ACTIONLOG_ADVANCEDTEMPLATES</name>
	<description>PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC</description>
	<version>3.9.5</version>
	<creationDate>February 2021</creationDate>
	<author>Regular Labs (Peter van Westen)</author>
	<authorEmail>info@regularlabs.com</authorEmail>
	<authorUrl>https://www.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 - Advanced Template Manager">
			https://download.regularlabs.com/updates.xml?e=advancedtemplatemanager&amp;type=.xml
		</server>
	</updateservers>

	<files>
		<filename
plugin="advancedtemplates">advancedtemplates.php</filename>
		<filename>script.install.helper.php</filename>
		<folder>language</folder>
	</files>

	<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_actionlog_advancedtemplates" />
				<field name="@license" type="rl_license"
extension="ADVANCEDTEMPLATEMANAGER" />
				<field name="@version" type="rl_version"
extension="ADVANCEDTEMPLATEMANAGER" />
				<field name="@dependency" type="rl_dependency"
					   label="RR_THE_COMPONENT"
					  
file="/administrator/components/com_advancedtemplates/advancedtemplates.php"
/>
				<field name="@header" type="rl_header"
					   label="ADVANCEDTEMPLATEMANAGER"
					   description="ADVANCEDTEMPLATEMANAGER_DESC"
					   url="https://www.regularlabs.com/advancedtemplatemanager"
/>

				<field name="@notice_settings" type="note"
class="alert alert-info"
					   description="ATP_SETTINGS,&lt;a
href=&quot;index.php?option=com_advancedtemplates&quot;
target=&quot;_blank&quot;&gt;,&lt;/a&gt;" />
			</fieldset>
		</fields>
	</config>
</extension>
PKI�[���ZBB5language/ar-AA/ar-AA.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] لا يمكن
تشغيله."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="مُنتج Regular Labs Library
غير مُمكن."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="مُنتج Regular Labs
Library غير مُثبت."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/ar-AA/ar-AA.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[���ZBB5language/ar-SA/ar-SA.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] لا يمكن
تشغيله."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="مُنتج Regular Labs Library
غير مُمكن."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="مُنتج Regular Labs
Library غير مُثبت."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/ar-SA/ar-SA.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��tdd5language/az-AZ/az-AZ.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не может
функционировать."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Плагин Regular Labs
Library не включен."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Плагин Regular Labs
Library не установлен."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/az-AZ/az-AZ.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[���5language/bg-BG/bg-BG.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не може
да функционира."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Добавката Regular Labs
Library не е включена."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Добавката Regular
Labs Library не е инсталирана."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Версията на Regular Labs
Library плъгина е стара. Опитайте да я
преинсталирате [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/bg-BG/bg-BG.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[ˬfhh5language/bn-BD/bn-BD.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] কাজ
করছে না।"
; ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is
not enabled."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs
ফ্রেমওয়ার্ক ইনস্টল করা
নাই।"
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/bn-BD/bn-BD.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[���8##5language/bs-BA/bs-BA.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne
funkcioniše."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library nije
omogućen."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
nije instaliran."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/bs-BA/bs-BA.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[#1?Z885language/ca-ES/ca-ES.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] no pot
funcionar."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="El plugin Regular Labs Library
no está activat."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="El plugin Regular Labs Library
no està instal·lat."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/ca-ES/ca-ES.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��3�TT5language/cs-CZ/cs-CZ.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systém - Regular Labs - Pokročilý
správce šablon"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Pokročilý správce šablon -
převezme kontrolu nad šablonami v Joomla!"
ADVANCEDTEMPLATEMANAGER="Pokročilý správce šablon"

ADVANCEDTEMPLATEMANAGER_DESC="S Pokročilým správcem šablon máte k
dispozici další možnosti a funkce pro ovládání šablon."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nemůže
fungovat."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin
není povolen."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Zásuvný modul Regular Labs
Library není nainstalován."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Zásuvný modul knihovny Regular
Labs je zastaralý. Pokuste znovu nainstalovat [[%1:extension
name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
ATP_THE_COMPONENT="komponenta Pokročilý správce šablon"
PKI�[zb1@��9language/cs-CZ/cs-CZ.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systém - Regular Labs - Pokročilý
správce šablon"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Pokročilý správce šablon -
převezme kontrolu nad šablonami v Joomla!"
ADVANCEDTEMPLATEMANAGER="Pokročilý správce šablon"
PKI�[vi�ll5language/da-DK/da-DK.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Avanceret
Skabelon Håndtering"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Avanceret Skabelon Håndtering -
Avanceret styring af skabeloner i Joomla!"
ADVANCEDTEMPLATEMANAGER="Avanceret Skabelon Håndtering"

ADVANCEDTEMPLATEMANAGER_DESC="Med Avanceret Skabelon Håndtering har
du ekstra indstillinger og funktionalitet til at kontrollere dine
skabeloner."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kan ikke
fungere."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library
programudvidelse er ikke aktiveret."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library
programudvidelse er ikke installeret."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin er
forældet. Prøv at re-installere [[%1:extension name%]]."

ATP_SETTINGS="Se venligst [[%1:start link%]]Skabelon
Håndteringen[[%2:end link%]] for indstillinger."
ATP_THE_COMPONENT="Avanceret Skabelon Håndterings komponent"
PKI�[��
=��9language/da-DK/da-DK.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Avanceret
Skabelon Håndtering"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Avanceret Skabelon Håndtering -
Avanceret styring af skabeloner i Joomla!"
ADVANCEDTEMPLATEMANAGER="Avanceret Skabelon Håndtering"
PKI�[����5language/de-DE/de-DE.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
Erweiterte Optionen für Templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Mit dem Advanced Template Manager haben
Sie extra Optionen und Funktionen um die Anzeige Ihrer Templates zu
steuern."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] wird nicht
funktionieren."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Das Regular Labs Library Plugin
ist nicht aktiviert."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library Plugin
ist nicht installiert."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Das Regular Labs Library Plugin ist
veraltet. Bitte versuche die Erweiterung [[%1:extension name%]] neu zu
installieren."

ATP_SETTINGS="Bitte klicken Sie auf [[%1:start link%]]Template
Manager[[%2:end link%]] für die Einstellungen."
ATP_THE_COMPONENT="Die Advanced Template Manager Komponente"
PKI�[�_i]��9language/de-DE/de-DE.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
Erweiterte Optionen für Templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�]\$��5language/el-GR/el-GR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="Το [[%1:extension name%]] δεν
μπορεί να λειτουργήσει."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Το πρόσθετο Regular
Labs Library δεν είναι ενεργό."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Το πρόσθετο Regular
Labs Library plugin δεν είναι εγκατεστημένο."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/el-GR/el-GR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�LM05language/en-GB/en-GB.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you have
extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] cannot
function."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is
not enabled."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin is
not installed."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[}~ؼ��9language/en-GB/en-GB.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��ԓDD5language/es-CL/es-CL.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] no podrá
funcionar."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="El Plugin de Framework Regular
Labs no está activado."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="El Plugin de Framework Regular
Labs no está instalado."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/es-CL/es-CL.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�["^�$ee5language/es-ES/es-ES.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Administrador
avanzado de plantillas"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Administrador avanzado de
plantillas - toma el control de las plantillas en Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] no podrá
funcionar."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="El plugin Regular Labs Library
no está habilitado."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="El plugin Regular Labs Library
no está instalado."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="El plugin de Regular Labs Library
está desactualizado. Intente reinstalando [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�@���9language/es-ES/es-ES.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Administrador
avanzado de plantillas"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Administrador avanzado de
plantillas - toma el control de las plantillas en Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[C$�[[5language/et-EE/et-EE.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Süsteem - Regular Labs -
Lisavõimalustega kujunduste haldur"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Lisavõimalustega kujunduste haldur
- võta Joomla! kujundustest viimast"
ADVANCEDTEMPLATEMANAGER="Lisavõimalustega kujunduste haldur"

ADVANCEDTEMPLATEMANAGER_DESC="Lisavõimalustega kujunduste haldur
annab juurde mõned lisavõimalused ja -funktsioonid, et võtta oma
kujundustest ja nende stiilidest viimast."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ei saa
töötada."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin pole
lubatud."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
pole paigaldatud."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin on
vana. Paigalda see uuesti [[%1:extension name%]]."

ATP_SETTINGS="Palun vaata [[%1:start link%]]Kujunduste halduri[[%2:end
link%]] seadeid."
ATP_THE_COMPONENT="Lisavõimalustega kujunduste haldur"
PKI�[���%��9language/et-EE/et-EE.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Süsteem - Regular Labs -
Lisavõimalustega kujunduste haldur"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Lisavõimalustega kujunduste haldur
- võta Joomla! kujundustest viimast"
ADVANCEDTEMPLATEMANAGER="Lisavõimalustega kujunduste haldur"
PKI�[���WW5language/fa-IR/fa-IR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] نمی
تواند کار کند."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="پلاگین Regular Labs
Library فعال نشده است."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="پلاگین Regular Labs
Library نصب نشده است."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/fa-IR/fa-IR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[ї�7>>5language/fi-FI/fi-FI.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ei voi
toimia."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library
liitännäinen ei ole käytössä."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library
liitännäistä ei ole asennettu."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/fi-FI/fi-FI.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[Z,d���5language/fr-FR/fr-FR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - options
avancées pour les templates Joomla!"
ADVANCEDTEMPLATEMANAGER="Gestionnaire avancé de Template"

ADVANCEDTEMPLATEMANAGER_DESC="Avec Advanced Template Manager vous
disposez d'options et de fonctionnalités supplémentaires afin de
mieux contrôler vos templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne peut pas
fonctionner."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Le plugin Regular Labs Library
n'est pas activé."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Le plugin Regular Labs Library
n'est pas installé."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Le plugin de la bibliothèque
Regular Labs est obsolète. Essayez de réinstaller [[%1:extension
name%]]."

ATP_SETTINGS="Merci de vous rendre dans la [[%1:start link%]]Gestion
des templates[[%2:end link%]] pour les paramètrages."
ATP_THE_COMPONENT="Le composant Advanced Template Manager"
PKI�[؀K���9language/fr-FR/fr-FR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - options
avancées pour les templates Joomla!"
ADVANCEDTEMPLATEMANAGER="Gestionnaire avancé de Template"
PKI�[�����5language/hi-IN/hi-IN.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] कार्य
नहीं कर सकता हैं."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs
रूपरेखा प्लगिन सक्षम नहीं
है."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs
रूपरेखा प्लगिन संस्थापित
नहीं है."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/hi-IN/hi-IN.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�4N�))5language/hr-HR/hr-HR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] neće
raditi."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library dodatak
nije omogućen."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library dodatak
nije instaliran."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/hr-HR/hr-HR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[j,SBB5language/hu-HU/hu-HU.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nem
működik."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library
beépülőmodul nincs engedélyezve."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="A Regular Labs Library
beépülőmodul nincs telepítve."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/hu-HU/hu-HU.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��5$$5language/id-ID/id-ID.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
kendalikan templat di Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Dengan Advanced Template Manager anda
memiliki opsi dan fungsi tambahan guna mengendalikan templat-templat."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] tidak
berfungsi."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Plugin Pustaka Regular Labs
tidak diaktifkan."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Plugin Pustaka Regular Labs
tidak terpasang."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Silakan lihat [[%1:start link%]]Pengelolaan
Templat[[%2:end link%]] untuk pengaturannya."
ATP_THE_COMPONENT="komponen Advanced Template Manager"
PKI�[[]����9language/id-ID/id-ID.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
kendalikan templat di Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�225language/it-IT/it-IT.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Prendi
il controllo dei template Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Con Advanced Template Manager hai
opzioni e funzionalità extra per gestire i tuoi template."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] non può
funzionare."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Il plugin Regular Labs Library
non è abilitato."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Il plugin Regular Labs Library
non è installato."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="La libreria Regular Labs non è
aggiornata. Prova a reinstallare [[%1:extension name%]]."

ATP_SETTINGS="Per favore leggi [[%1:start link%]]Template
Manager[[%2:end link%]] per le impostazioni."
ATP_THE_COMPONENT="Componente Advanced Template Manager"
PKI�[R�z#��9language/it-IT/it-IT.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Prendi
il controllo dei template Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�@�5language/ja-JP/ja-JP.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="システム - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Joomla!
テンプレートの高度なオプション"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="「Advanced Template
Manager」を使うと、テンプレートをコントロールする追加のオプションと機能が使えます。"

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]]
は機能しません。"
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs
フレームワークプラグインがインストールされていません。"
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs
フレームワークプラグインがインストールされていません。"
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="設定 (パラメータ) については、[[%1:start
link%]]テンプレート管理[[%2:end
link%]]を参照して下さい。"
ATP_THE_COMPONENT="Advanced Template Manager
コンポーネント"
PKI�[Ձh_��9language/ja-JP/ja-JP.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="システム - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Joomla!
テンプレートの高度なオプション"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[���VV5language/lt-LT/lt-LT.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - išplėstinė
šablonų tvarkyklė"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Išplėstinė šablonų tvarkyklė
- išplėstinės parinktys Joomla! šablonams"
ADVANCEDTEMPLATEMANAGER="Išplėstinė šablonų tvarkyklė"

ADVANCEDTEMPLATEMANAGER_DESC="Išplėstinė šablonų tvarkyklė
suteiks papildomas parinktis ir funkcionalumą šablonų valdymui."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] negali
veikti."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library įskiepis
nėra įgalintas."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library įskiepis
nėra įdiegtas."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Peržiūrėkite [[%1:start link%]]Šablonų tvarkyklės
[[%2:end link%]] nustatymus."
ATP_THE_COMPONENT="Išplėstinės šablonų tvarkyklės
komponentas"
PKI�[�꿴�9language/lt-LT/lt-LT.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - išplėstinė
šablonų tvarkyklė"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Išplėstinė šablonų tvarkyklė
- išplėstinės parinktys Joomla! šablonams"
ADVANCEDTEMPLATEMANAGER="Išplėstinė šablonų tvarkyklė"
PKI�[�i�=??5language/nb-NO/nb-NO.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] fungerer
ikke."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Rammeverk
programtillegg er ikke aktivert."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Rammeverk
programtillegg er ikke installert."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs biblioteket er
utdatert. Prøv å reinstaller [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/nb-NO/nb-NO.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�T�YY5language/nl-BE/nl-BE.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systeem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - neem de
controle over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Met Advanced Template Manager heb je
extra opties en functionaliteit om de controle te nemen over uw
templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kan niet
functioneren."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs bibliotheek plugin
is niet ingeschakeld."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regelmatig Labs bibliotheek
plugin niet geinstalleerd."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Gelieve het [[%1: start link%]]Template Beheer[[%2:end
link%]] te raadplegen voor instellingen"
ATP_THE_COMPONENT="het Advanced Template Manager component"
PKI�[?bg��9language/nl-BE/nl-BE.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systeem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - neem de
controle over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[x��eLL5language/nl-NL/nl-NL.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systeem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
geavanceerde opties voor templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Geavanceerde Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Met Geavanceerde Template Manager heeft
u extra opties en functies om uw templates te controleren."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] kan niet
functioneren."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is
niet gepubliceerd."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin is
niet geïnstalleerd."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
verouderd. Probeer de [[%1:extension name%]] opnieuw te installeren."

ATP_SETTINGS="AUB kijk in [[%1:start link%]]Templatebeheer[[%2:end
link%]] voor instellingen."
ATP_THE_COMPONENT="het Advanced Template Manager component"
PKI�[���9language/nl-NL/nl-NL.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Systeem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
geavanceerde opties voor templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Geavanceerde Template Manager"
PKI�[��CSMM5language/pl-PL/pl-PL.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
zaawansowane opcje w szablonach Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nie może
działać."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Wtyczka Regular Labs Library nie
jest włączona."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Wtyczka Regular Labs Library
nie jest zainstalowana."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Wtyczka Regular Labs Library jest
przestarzała. Spróbuj zainstalować ponownie [[%1:extension
name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[r_�4��9language/pl-PL/pl-PL.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
zaawansowane opcje w szablonach Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[I
�zz5language/pt-BR/pt-BR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Gerenciador
Avançado de Temas"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Gerenciador Avançado de Temas -
assuma o controle de temas no Joomla!"
ADVANCEDTEMPLATEMANAGER="Gerenciador Avançado de Temas"

ADVANCEDTEMPLATEMANAGER_DESC="Com o Gerenciador Avançado de Temas
você tem opções e funcionalidades extras para controlar teus
temas."

ATP_EXTENSION_CAN_NOT_FUNCTION="O [[%1:extension name%]] não pode
funcionar."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="O plugin Regular Labs Library
não está habilitado."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="O plugin Regular Labs Library
não está instalado."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="O plugin da Biblioteca de Regular
Labs está desatualizado. Tente reinstalar [[%1:extension name%]]."

ATP_SETTINGS="Por favor, veja o [[%1: link inicial%]] Gerenciador de
Temas [[%2: link final%]] para configurações."
ATP_THE_COMPONENT="o componente de Gerenciador Avançado de
Temas"
PKI�[C�����9language/pt-BR/pt-BR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Gerenciador
Avançado de Temas"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Gerenciador Avançado de Temas -
assuma o controle de temas no Joomla!"
ADVANCEDTEMPLATEMANAGER="Gerenciador Avançado de Temas"
PKI�[�SXD??5language/pt-PT/pt-PT.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
opções avançadas para modelos em Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Com o Advanced Template Manager terá
opções e funcionalidades adicionais para gerir os seus modelos."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] não pode
funcionar."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="O plugin Regular Labs Library
não está ativado."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="O plugin Regular Labs Library
não está instalado"
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Por fgavor, ver configurações em[[%1:start
link%]]Gestor de modelos[[%2:end link%]]."
ATP_THE_COMPONENT="o componente Advanced Template Manager"
PKI�[+�+@��9language/pt-PT/pt-PT.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistema - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
opções avançadas para modelos em Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[n�x##5language/ro-RO/ro-RO.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nu poate
functiona."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin
neactivat."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
neinstalat."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/ro-RO/ro-RO.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[!���RR5language/ru-RU/ru-RU.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
дополнительные настройки для шаблонов в
Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="С помощью Advanced Template
Manager у вас есть дополнительные варианты и
возможности для управления
шаблонами."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не может
работать."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Плагин Regular Labs
Library не включен."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library
плагин не установлен."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Плагин библиотеки
Regular Labs Library plugin устарел. Попробуйте его
переустановить [[%1:extension name%]]."

ATP_SETTINGS="Пожалуйста перейдите в [[%1:start
link%]]Advanced Template Manager[[%2:end link%]] для его
настройки."
ATP_THE_COMPONENT="компонент Advanced Template Manager"
PKI�[���S��9language/ru-RU/ru-RU.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
дополнительные настройки для шаблонов в
Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[����TT5language/sk-SK/sk-SK.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nemôže
fungovať."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library doplnok nie
je aktivovaný/povolený."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library doplnok
nie je nainštalovaný."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Plugin knižnice regulárnych Labs
je zastaralý. Skúste ho preinštalovať [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/sk-SK/sk-SK.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[u�++5language/sl-SI/sl-SI.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne more
delovati."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library vtičnik ni
omogočen."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library vtičnik
ni nameščen."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/sl-SI/sl-SI.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�]V�555language/sr-RS/sr-RS.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] nemože
funkcionisati."
; ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is
not enabled."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Libraryki dodadak
nije instaliran."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/sr-RS/sr-RS.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��`555language/sr-YU/sr-YU.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] ne može da
funkcioniše."
; ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin is
not enabled."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
nije instaliran."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/sr-YU/sr-YU.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[��--5language/sv-SE/sv-SE.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
avancerade alternativ för sidmallar i Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Med Advanced Template Manager får du
extra alternativ och funktioner till dina sidmallar."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] fungerar
inte."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin är
inte aktiverad."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
är inte installerad."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Biblioteksplugin är
för gammal. Försök att installera den igen [[%1:extension name%]]."

ATP_SETTINGS="Gå till [[%1:start link%]]Mallar[[%2:end link%]] för
inställningar."
ATP_THE_COMPONENT="Komponenten Advanced Template Manager"
PKI�[D0�a��9language/sv-SE/sv-SE.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager -
avancerade alternativ för sidmallar i Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�E�5language/th-TH/th-TH.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="ไม่สามารถใช้งาน
[[%1:extension name%]] ได้."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library plugin
ยังไม่ได้เปิดใช้งาน."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library plugin
ยังไม่ได้ถูกติดตั้ง."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/th-TH/th-TH.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[Q�qc~~5language/tr-TR/tr-TR.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Joomla
temalar için gelişmiş seçenekler sunar."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Advanced Template Manager ile temaları
denetlemek için ek seçenek ve işlevler eklenebilir."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]]
çalışamaz."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Kütüphanesi
uygulama eki etkinleştirilmemiş."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Kütüphanesi
uygulama eki kurulmamış."
ATP_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."

ATP_SETTINGS="Ayarlar için [[%1:start link%]]Template Manager sistem
uygulama eki[[%2:end link%]] bölümüne bakın."
ATP_THE_COMPONENT="Advanced Template Manager Bileşeni"
PKI�[A�Ӥ��9language/tr-TR/tr-TR.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="Sistem - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - Joomla
temalar için gelişmiş seçenekler sunar."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[�kC�775language/uk-UA/uk-UA.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Module Manager -
додаткове налаштування шаблонів Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="З Advanced Template Manager ви
отримаєте додаткові можливості і
функціональність для управління вашими
шаблонами."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] не може
функціонувати."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Плагін Regular Labs
Library не увімкнено."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Плагін Regular Labs
Library не встановлений."
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Плагин Regular Labs Library
застарілий. Будь ласка перевстановіть
[[%1:extension name%]]."

ATP_SETTINGS="Будь ласка використовуйте
[[%1:start link%]]Template Manager[[%2:end link%]] для
налаштування."
ATP_THE_COMPONENT="компонент Advanced Template Manager"
PKI�[�9z���9language/uk-UA/uk-UA.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Module Manager -
додаткове налаштування шаблонів Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[���OO5language/vi-VN/vi-VN.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Với Advanced Template Manager bạn
có các tùy chọn và tính năng thêm để quản lý template của
bạn."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]] không thể
thực hiện."
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Plugin Regular Labs Library
không được bật."
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Plugin Regular Labs Library
chưa được cài."
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

ATP_SETTINGS="Vui lòng xem [[%1:start link%]]Template Manager[[%2:end
link%]] để thiết lập."
ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[}~ؼ��9language/vi-VN/vi-VN.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[4�SR��5language/zh-CN/zh-CN.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="系统 - Regular Labs -
高级模板管理器"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="高级模板管理器 -
控制Joomla!中的模板"
ADVANCEDTEMPLATEMANAGER="高级模板管理器"

ADVANCEDTEMPLATEMANAGER_DESC="使用高级模板管理器,您可以使用其他选项和功能来控制模板。"

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension
name%]]不能运行。"
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular
Labs依赖库插件没启用。"
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular
Labs依赖库插件没安装。"
ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular
Labs依赖库插件已过时。尝试重新安装[[%1:extension
name%]]。"

ATP_SETTINGS="有关设置,请参见[[%1:start
link%]]模板管理器[[%2:end link%]]。"
ATP_THE_COMPONENT="高级模板管理器组件"
PKI�[�!0�zz9language/zh-CN/zh-CN.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="系统 - Regular Labs -
高级模板管理器"
PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="高级模板管理器 -
控制Joomla!中的模板"
ADVANCEDTEMPLATEMANAGER="高级模板管理器"
PKI�[���
 
5language/zh-TW/zh-TW.plg_system_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

; ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you
have extra options and functionality to control your templates."

ATP_EXTENSION_CAN_NOT_FUNCTION="[[%1:extension name%]]
無法動作。"
ATP_REGULAR_LABS_LIBRARY_NOT_ENABLED="Regular Labs Library
外掛未啟用。"
ATP_REGULAR_LABS_LIBRARY_NOT_INSTALLED="Regular Labs Library
外掛未安裝。"
; ATP_REGULAR_LABS_LIBRARY_OUTDATED="Regular Labs Library plugin is
outdated. Try to re-install [[%1:extension name%]]."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
; ATP_THE_COMPONENT="the Advanced Template Manager component"
PKI�[�Ս$��9language/zh-TW/zh-TW.plg_system_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ADVANCEDTEMPLATES="System - Regular Labs - Advanced
Template Manager"
; PLG_SYSTEM_ADVANCEDTEMPLATES_DESC="Advanced Template Manager - take
control over templates in Joomla!"
; ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PKI�[+B��}Y}Yscript.install.helper.phpnu�[���<?php
/**
 * @package         Advanced Template Manager
 * @version         3.9.5
 * 
 * @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 PlgActionlogAdvancedTemplatesInstallerScriptHelper
{
	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://www.regularlabs.com/extensions/' .
$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);
	}
}
PKI�[��c�QQscript.install.phpnu�[���<?php
/**
 * @package         Advanced Template Manager
 * @version         3.9.5
 * 
 * @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 PlgActionlogAdvancedTemplatesInstallerScript extends
PlgActionlogAdvancedTemplatesInstallerScriptHelper
{
	public $name           = 'ADVANCEDTEMPLATEMANAGER';
	public $alias          = 'advancedtemplates';
	public $extension_type = 'plugin';
	public $plugin_folder  = 'actionlog';

	public function uninstall($adapter)
	{
		$this->uninstallComponent($this->extname);
		$this->uninstallPlugin($this->extname, 'system');
	}
}
PKI�[�$��src/Document.phpnu�[���<?php
/**
 * @package         Advanced Template Manager
 * @version         3.9.5
 * 
 * @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\AdvancedTemplates;

defined('_JEXEC') or die;

use AdvancedTemplatesModelStyle;
use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\Form\Form as JForm;
use Joomla\CMS\Language\Text as JText;
use Joomla\CMS\Router\Route as JRoute;
use Joomla\Registry\Registry as JRegistry;
use RegularLabs\Library\Conditions as RL_Conditions;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\Language as RL_Language;
use RegularLabs\Library\Parameters as RL_Parameters;
use RegularLabs\Library\RegEx as RL_RegEx;

class Document
{
	static $style_params;

	/*
	 * Replace links to com_templates with com_advancedtemplates
	 */
	public static function replaceLinks(&$html)
	{
		if ( ! RL_Document::isHtml())
		{
			return false;
		}

		RL_Language::load('com_advancedtemplates');

		if (JFactory::getApplication()->input->get('option') ==
'com_templates')
		{
			self::replaceLinksInCoreTemplateManager($html);

			return true;
		}


		$html = RL_RegEx::replace(
			'((["\'])[^\s"\'%]*\?option=com_)(templates(\2|[^a-z-\"\'].*?\2))',
			'\1advanced\3',
			$html
		);

		$html = str_replace(
			[
				'?option=com_advancedtemplates&force=1',
				'?option=com_advancedtemplates&amp;force=1',
			],
			'?option=com_templates',
			$html
		);

		return true;
	}

	public static function replaceLinksInCoreTemplateManager(&$html)
	{
		if ( ! Params::get()->show_switch)
		{
			return  false;
		}


		$url = 'index.php?option=com_advancedtemplates';
		if (JFactory::getApplication()->input->get('view') ==
'style')
		{
			$url .= '&task=style.edit&id=' . (int)
JFactory::getApplication()->input->get('id');
		}

		$link = '<a style="float:right;" href="' .
JRoute::_($url) . '">' .
JText::_('ATP_SWITCH_TO_ADVANCED_TEMPLATE_MANAGER') .
'</a><div
style="clear:both;"></div>';
		$html =
RL_RegEx::replace('(</div>\s*</form>\s*(<\!--.*?-->\s*)*</div>)',
$link . '\1', $html);

		return true;
	}

	public static function setTemplate()
	{
		$params = Params::get();

		if
(JFactory::getApplication()->input->get('templateStyle'))
		{
			if (isset($params->template_positions_display) &&
$params->template_positions_display)
			{
				return;
			}
		}

		$active = self::getActiveStyle();

		// return if no active template is found
		if (empty($active))
		{
			return;
		}

		// convert params from json to JRegistry object. setTemplate need that.
		$active->params = new JRegistry($active->params);

		JFactory::getApplication()->setTemplate($active->template,
$active->params);
	}

	/**
	 * @return Object  The active style
	 */
	public static function getActiveStyle()
	{
		$styles = self::getStyles();

		$active = null;

		foreach ($styles as $id => &$style)
		{
			if ( ! self::isStyleActive($style, $active))
			{
				continue;
			}

			$active = $style;
			break;
		}

		return $active;
	}

	/**
	 * @return bool  True if the current style should be set as active
	 */
	public static function isStyleActive(&$style, &$active)
	{
		// continue if default language is already set
		if ($active && $style->home)
		{
			return false;
		}

		// check if style is set as language default
		if ($style->home && $style->home ==
JFactory::getLanguage()->getTag())
		{
			$active = $style;

			return false;
		}

		// check if style is set as main default
		if ($style->home === 1 || $style->home === '1')
		{
			$active = $style;

			return false;
		}

		// continue if style is set as default for a different language
		if ($style->home)
		{
			return false;
		}

		// continue is style assignments don't pass
		if ( ! self::stylePassesAssignments($style))
		{
			return false;
		}

		return true;
	}

	/**
	 * @return Array  An array of template styles with the id as key
	 */
	public static function getStyles()
	{
		$db    = JFactory::getDbo();
		$query = $db->getQuery(true)
			->select('s.*')
			->from('#__template_styles as s')
			->where('s.client_id = 0');
		$db->setQuery($query);

		$styles = $db->loadObjectList('id');

		return $styles;
	}

	/**
	 * @param $style
	 *
	 * @return Object  The advanced parameter object
	 */
	public static function getStyleParams($style)
	{
		$params = Params::get();

		$adv_params = self::getAdvancedParams($style);

		if ( ! $params->show_assignto_homepage)
		{
			$adv_params->assignto_homepage = 0;
		}
		if ( ! $params->show_assignto_usergrouplevels)
		{
			$adv_params->assignto_usergrouplevels = 0;
		}
		if ( ! $params->show_assignto_date)
		{
			$adv_params->assignto_date = 0;
		}
		if ( ! $params->show_assignto_languages)
		{
			$adv_params->assignto_languages = 0;
		}
		if ( ! $params->show_assignto_templates)
		{
			$adv_params->assignto_templates = 0;
		}
		if ( ! $params->show_assignto_urls)
		{
			$adv_params->assignto_urls = 0;
		}
		if ( ! $params->show_assignto_devices)
		{
			$adv_params->assignto_devices = 0;
		}
		if ( ! $params->show_assignto_os)
		{
			$adv_params->assignto_os = 0;
		}
		if ( ! $params->show_assignto_browsers)
		{
			$adv_params->assignto_browsers = 0;
		}
		if ( ! $params->show_assignto_components)
		{
			$adv_params->assignto_components = 0;
		}
		if ( ! $params->show_assignto_tags)
		{
			$adv_params->show_assignto_tags = 0;
		}
		if ( ! $params->show_assignto_content)
		{
			$adv_params->assignto_contentpagetypes = 0;
			$adv_params->assignto_cats             = 0;
			$adv_params->assignto_articles         = 0;
		}

		return $adv_params;
	}

	/**
	 * @param $style
	 *
	 * @return bool
	 */
	public static function stylePassesAssignments(&$style)
	{
		$params      = self::getStyleParams($style);
		$assignments = RL_Conditions::getConditionsFromParams($params);

		if ( ! RL_Conditions::hasConditions($assignments))
		{
			return false;
		}

		return RL_Conditions::pass($assignments, $params->match_method);
	}

	/**
	 * @param $id
	 *
	 * @return object  The advanced params for the template style in a json
string
	 */
	public static function getAdvancedParams($style)
	{
		if (isset(self::$style_params[$style->id]))
		{
			return self::$style_params[$style->id];
		}

		$db    = JFactory::getDbo();
		$query = $db->getQuery(true)
			->select('a.params')
			->from('#__advancedtemplates AS a')
			->where('a.styleid = ' . (int) $style->id);
		$db->setQuery($query);

		$params = $db->loadResult();

		// if no params are found in database, get the default params
		if (empty($params))
		{
			require_once JPATH_ADMINISTRATOR .
'/components/com_advancedtemplates/models/style.php';
			$model  = new AdvancedTemplatesModelStyle;
			$params = (object) $model->initAssignments($style->id, $style);
		}

		self::$style_params[$style->id] =
RL_Parameters::getInstance()->getParams($params, JPATH_ADMINISTRATOR .
'/components/com_advancedtemplates/assignments.xml');

		return self::$style_params[$style->id];
	}

	public static function changeMenuItemForm($form)
	{
		if ( ! ($form instanceof JForm))
		{
			return false;
		}

		// Check we are manipulating a valid form.
		$name = $form->getName();
		if ($name != 'com_menus.item')
		{
			return true;
		}

		$form->removeField('template_style_id');

		return true;
	}
}
PKI�[������src/Params.phpnu�[���<?php
/**
 * @package         Advanced Template Manager
 * @version         3.9.5
 * 
 * @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\AdvancedTemplates;

defined('_JEXEC') or die;

use RegularLabs\Library\Parameters as RL_Parameters;

class Params
{
	protected static $params = null;

	public static function get()
	{
		if ( ! is_null(self::$params))
		{
			return self::$params;
		}

		$params =
RL_Parameters::getInstance()->getComponentParams('advancedtemplates');

		self::$params = $params;

		return self::$params;
	}
}
PKI�[��Ͳ�vendor/autoload.phpnu�[���<?php

// autoload.php @generated by Composer

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitbb523eca11cc998f0b74510de948c64d::getLoader();
PKI�[?�6H��%vendor/composer/autoload_classmap.phpnu�[���<?php

// autoload_classmap.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir   = dirname($vendorDir);

return [
];
PKI�[�-�z��'vendor/composer/autoload_namespaces.phpnu�[���<?php

// autoload_namespaces.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir   = dirname($vendorDir);

return [
];
PKI�[������!vendor/composer/autoload_psr4.phpnu�[���<?php

// autoload_psr4.php @generated by Composer

$vendorDir = dirname(dirname(__FILE__));
$baseDir   = dirname($vendorDir);

return [
	'RegularLabs\\Plugin\\System\\AdvancedTemplates\\' =>
[$baseDir . '/src'],
];
PKI�[��yW��!vendor/composer/autoload_real.phpnu�[���<?php

// autoload_real.php @generated by Composer

class ComposerAutoloaderInitbb523eca11cc998f0b74510de948c64d
{
	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(['ComposerAutoloaderInitbb523eca11cc998f0b74510de948c64d',
'loadClassLoader'], true, true);
		self::$loader = $loader = new \Composer\Autoload\ClassLoader;
		spl_autoload_unregister(['ComposerAutoloaderInitbb523eca11cc998f0b74510de948c64d',
'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\ComposerStaticInitbb523eca11cc998f0b74510de948c64d::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;
	}
}
PKI�[Zj��#vendor/composer/autoload_static.phpnu�[���<?php

// autoload_static.php @generated by Composer

namespace Composer\Autoload;

class ComposerStaticInitbb523eca11cc998f0b74510de948c64d
{
	public static $prefixLengthsPsr4 = [
		'R' =>
			[
				'RegularLabs\\Plugin\\System\\AdvancedTemplates\\' => 44,
			],
	];

	public static $prefixDirsPsr4 = [
		'RegularLabs\\Plugin\\System\\AdvancedTemplates\\' =>
			[
				0 => __DIR__ . '/../..' . '/src',
			],
	];

	public static function getInitializer(ClassLoader $loader)
	{
		return \Closure::bind(function () use ($loader) {
			$loader->prefixLengthsPsr4 =
ComposerStaticInitbb523eca11cc998f0b74510de948c64d::$prefixLengthsPsr4;
			$loader->prefixDirsPsr4    =
ComposerStaticInitbb523eca11cc998f0b74510de948c64d::$prefixDirsPsr4;
		}, null, ClassLoader::class);
	}
}
PKI�[f�p�,�,vendor/composer/ClassLoader.phpnu�[���<?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;
}
PKI�[D�hpvendor/composer/installed.jsonnu�[���[]
PKI�[ �..vendor/composer/LICENSEnu�[���
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.

PK�{�[�כ�>>8language/cs-CZ/cs-CZ.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Pokročilý správce šablon"

ADVANCEDTEMPLATEMANAGER_DESC="S Pokročilým správcem šablon máte k
dispozici další možnosti a funkce pro ovládání šablon."

; ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
ATP_THE_COMPONENT="komponenta Pokročilý správce šablon"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[�ȯ��<language/cs-CZ/cs-CZ.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Pokročilý správce šablon"
PK�{�[��6VV8language/da-DK/da-DK.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Avanceret Skabelon Håndtering"

ADVANCEDTEMPLATEMANAGER_DESC="Med Avanceret Skabelon Håndtering har
du ekstra indstillinger og funktionalitet til at kontrollere dine
skabeloner."

ATP_SETTINGS="Se venligst [[%1:start link%]]Skabelon
Håndteringen[[%2:end link%]] for indstillinger."
ATP_THE_COMPONENT="Avanceret Skabelon Håndterings komponent"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[�5J��<language/da-DK/da-DK.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Avanceret Skabelon Håndtering"
PK�{�[l�?���8language/de-DE/de-DE.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Aktionsprotokoll - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Zeichnet Aktionen der Benutzer
für Advanced Template Manager auf."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Mit dem Advanced Template Manager haben
Sie extra Optionen und Funktionen um die Anzeige Ihrer Templates zu
steuern."

ATP_SETTINGS="Bitte klicken Sie auf [[%1:start link%]]Template
Manager[[%2:end link%]] für die Einstellungen."
ATP_THE_COMPONENT="die Advanced Template Manager Komponente"
ATP_THE_SYSTEM_PLUGIN="das Advanced Template Manager
System-Plugin"

ATP_ACTION_FOLDER_FILE_ACTIONS="Ordner-/Datei-Aktionen"
ATP_ACTION_TEMPLATE_COPY="Template kopieren"
ATP_ACTIONLOGS_FILE_ADDED="Benutzer <a
href='{accountlink}'>{username}</a> fügte <a
href='{filelink}'>{file}</a> dem Template {template}
zu"
ATP_ACTIONLOGS_FILE_DELETED="Benutzer <a
href='{accountlink}'>{username}</a> löschte {file} vom
Template {template}"
ATP_ACTIONLOGS_FILE_UPDATED="Benutzer <a
href='{accountlink}'>{username}</a> aktualisierte <a
href='{filelink}'>{file}</a> im Template
{template}"
ATP_ACTIONLOGS_STYLE_SET_HOME="Benutzer <a
href='{accountlink}'>{username}</a> änderte den
Standard Template-Stil auf <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="Benutzer <a
href='{accountlink}'>{username}</a> kreierte ein neues
Template namens '{to_name}' (Kopie von
'{from_name}')"
ATP_TEMPLATE_FILE="Template-Datei"
PK�{�[�����<language/de-DE/de-DE.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Aktionsprotokoll - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Zeichnet Aktionen der Benutzer
für Advanced Template Manager auf."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[�4�8language/en-GB/en-GB.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs - Advanced
Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users for
Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="With Advanced Template Manager you have
extra options and functionality to control your templates."

ATP_SETTINGS="Please see the [[%1:start link%]]Template
Manager[[%2:end link%]] for settings."
ATP_THE_COMPONENT="the Advanced Template Manager component"
ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
ATP_ACTION_TEMPLATE_COPY="Copy Template"
ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
ATP_TEMPLATE_FILE="template file"
PK�{�[ܡ�f��<language/en-GB/en-GB.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs - Advanced
Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users for
Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[RR�ܣ�8language/et-EE/et-EE.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Toimingute logi - Regular Labs -
Lisavõimalustega kujunduste haldamine"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Salvesta kasutajate toimingud
lisavõimalustega kujunduste halduris"
ADVANCEDTEMPLATEMANAGER="Lisavõimalustega kujunduste haldur"

ADVANCEDTEMPLATEMANAGER_DESC="Lisavõimalustega kujunduste haldur
annab juurde mõned lisavõimalused ja -funktsioonid, et võtta oma
kujundustest ja nende stiilidest viimast."

ATP_SETTINGS="Palun vaata [[%1:start link%]]Kujunduste halduri[[%2:end
link%]] seadeid."
ATP_THE_COMPONENT="Lisavõimalustega kujunduste haldur"
ATP_THE_SYSTEM_PLUGIN="lisavõimalustega kujundustehalduri
süsteemiplugin"

ATP_ACTION_FOLDER_FILE_ACTIONS="Kausta/faili toimingud"
ATP_ACTION_TEMPLATE_COPY="Kopeeri kujundus"
ATP_ACTIONLOGS_FILE_ADDED="Kasutaja <a
href='{accountlink}'>{username}</a> lisas kujundusele
{template} faili <a
href='{filelink}'>{file}</a>"
ATP_ACTIONLOGS_FILE_DELETED="Kasutaja <a
href='{accountlink}'>{username}</a> kustutas kujundusest
{template} faili {file}"
ATP_ACTIONLOGS_FILE_UPDATED="Kasutaja <a
href='{accountlink}'>{username}</a> uuendas kujunduse
{template} faili <a
href='{filelink}'>{file}</a>"
ATP_ACTIONLOGS_STYLE_SET_HOME="Kasutaja <a
href='{accountlink}'>{username}</a> määras kujunduse
vaikimisi stiiliks <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="Kasutaja <a
href='{accountlink}'>{username}</a> lõi uue kujunduse
nimega '{to_name}' (koopia kujundusest
'{from_name}')"
ATP_TEMPLATE_FILE="kujunduse fail"
PK�{�[ɺ�<language/et-EE/et-EE.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Toimingute logi - Regular Labs -
Lisavõimalustega kujunduste haldamine"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Salvesta kasutajate toimingud
lisavõimalustega kujunduste halduris"
ADVANCEDTEMPLATEMANAGER="Lisavõimalustega kujunduste haldur"
PK�{�[*0���8language/fr-FR/fr-FR.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Journal des actions - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Enregistrer les actions des
utilisateurs pour Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Gestionnaire avancé de Template"

ADVANCEDTEMPLATEMANAGER_DESC="Avec Advanced Template Manager vous
disposez d'options et de fonctionnalités supplémentaires afin de
mieux contrôler vos templates."

ATP_SETTINGS="Merci de vous rendre dans la [[%1:start link%]]Gestion
des templates[[%2:end link%]] pour les paramètrages."
ATP_THE_COMPONENT="Le composant Advanced Template Manager"
ATP_THE_SYSTEM_PLUGIN="Plugin système Advanced Template Manager"

ATP_ACTION_FOLDER_FILE_ACTIONS="Actions Dossier/Fichier"
ATP_ACTION_TEMPLATE_COPY="Copier le template"
ATP_ACTIONLOGS_FILE_ADDED="L'utilisateur <a
href='{accountlink}'>{username}</a> a ajouté <a
href='{filelink}'>{file}</a> au template
{template}"
ATP_ACTIONLOGS_FILE_DELETED="L'utilisateur <a
href='{accountlink}'>{username}</a> a supprimé {file}
du template {template}"
ATP_ACTIONLOGS_FILE_UPDATED="L'utilisateur <a
href='{accountlink}'>{username}</a> a mis à jour <a
href='{filelink}'>{file}</a> dans le template
{template}"
ATP_ACTIONLOGS_STYLE_SET_HOME="L'utilisateur <a
href='{accountlink}'>{username}</a> a changé le style
par défaut du template en <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="L'utilisateur <a
href='{accountlink}'>{username}</a> a créé un nouveau
template basé sur '{to_name}' (copie de
'{from_name}')"
ATP_TEMPLATE_FILE="fichier de template"
PK�{�[0(s{��<language/fr-FR/fr-FR.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Journal des actions - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Enregistrer les actions des
utilisateurs pour Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Gestionnaire avancé de Template"
PK�{�[%(+�BB8language/id-ID/id-ID.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Dengan Advanced Template Manager anda
memiliki opsi dan fungsi tambahan guna mengendalikan templat-templat."

ATP_SETTINGS="Silakan lihat [[%1:start link%]]Pengelolaan
Templat[[%2:end link%]] untuk pengaturannya."
ATP_THE_COMPONENT="komponen Advanced Template Manager"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/id-ID/id-ID.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[�+�558language/it-IT/it-IT.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Con Advanced Template Manager hai
opzioni e funzionalità extra per gestire i tuoi template."

ATP_SETTINGS="Per favore leggi [[%1:start link%]]Template
Manager[[%2:end link%]] per le impostazioni."
ATP_THE_COMPONENT="Componente Advanced Template Manager"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/it-IT/it-IT.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[8�L��8language/ja-JP/ja-JP.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="「Advanced Template
Manager」を使うと、テンプレートをコントロールする追加のオプションと機能が使えます。"

ATP_SETTINGS="設定 (パラメータ) については、[[%1:start
link%]]テンプレート管理[[%2:end
link%]]を参照して下さい。"
ATP_THE_COMPONENT="Advanced Template Manager
コンポーネント"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/ja-JP/ja-JP.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[���OO8language/lt-LT/lt-LT.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Išplėstinė šablonų tvarkyklė"

ADVANCEDTEMPLATEMANAGER_DESC="Išplėstinė šablonų tvarkyklė
suteiks papildomas parinktis ir funkcionalumą šablonų valdymui."

ATP_SETTINGS="Peržiūrėkite [[%1:start link%]]Šablonų tvarkyklės
[[%2:end link%]] nustatymus."
ATP_THE_COMPONENT="Išplėstinės šablonų tvarkyklės
komponentas"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���
��<language/lt-LT/lt-LT.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Išplėstinė šablonų tvarkyklė"
PK�{�[n��yQQ8language/nl-BE/nl-BE.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Met Advanced Template Manager heb je
extra opties en functionaliteit om de controle te nemen over uw
templates."

ATP_SETTINGS="Gelieve het [[%1: start link%]]Template Beheer[[%2:end
link%]] te raadplegen voor instellingen"
ATP_THE_COMPONENT="het Advanced Template Manager component"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/nl-BE/nl-BE.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[�;e�ll8language/nl-NL/nl-NL.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Actie Log - Regular Labs -
Geavanceerde Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Sla de acties op van gebruikers
voor Geavanceerde Template Manager"
ADVANCEDTEMPLATEMANAGER="Geavanceerde Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Met Geavanceerde Template Manager heeft
u extra opties en functies om uw templates te controleren."

ATP_SETTINGS="AUB kijk in [[%1:start link%]]Templatebeheer[[%2:end
link%]] voor instellingen."
ATP_THE_COMPONENT="de Geavanceerde Template Manager component"
ATP_THE_SYSTEM_PLUGIN="de Geavanceerde Template Manager systeem
plug-in"

ATP_ACTION_FOLDER_FILE_ACTIONS="Map/Bestandsacties"
ATP_ACTION_TEMPLATE_COPY="Template kopiëren"
ATP_ACTIONLOGS_FILE_ADDED="Gebruiker <a
href='{accountlink}'>{username}</a> voegde <a
href='{filelink}'>{file}</a> toe aan template
{template}"
ATP_ACTIONLOGS_FILE_DELETED="Gebruiker <a
href='{accountlink}'>{username}</a> verwijderde {file}
van template {template}"
ATP_ACTIONLOGS_FILE_UPDATED="Gebruiker <a
href='{accountlink}'>{username}</a> updatete <a
href='{filelink}'>{file}</a> in template
{template}"
ATP_ACTIONLOGS_STYLE_SET_HOME="Gebruiker <a
href='{accountlink}'>{username}</a> veranderde de
standaard template stijl naar <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="Gebruiker <a
href='{accountlink}'>{username}</a> maakte een nieuwe
template genaamd '{to_name}' (copy of
'{from_name}')"
ATP_TEMPLATE_FILE="template bestand"
PK�{�[��*`��<language/nl-NL/nl-NL.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Actie Log - Regular Labs -
Geavanceerde Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Sla de acties op van gebruikers
voor Geavanceerde Template Manager"
ADVANCEDTEMPLATEMANAGER="Geavanceerde Template Manager"
PK�{�[m0�aa8language/pt-BR/pt-BR.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Gerenciador Avançado de Temas"

ADVANCEDTEMPLATEMANAGER_DESC="Com o Gerenciador Avançado de Temas
você tem opções e funcionalidades extras para controlar teus
temas."

ATP_SETTINGS="Por favor, veja o [[%1: link inicial%]] Gerenciador de
Temas [[%2: link final%]] para configurações."
ATP_THE_COMPONENT="o componente de Gerenciador Avançado de
Temas"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[M�6`��<language/pt-BR/pt-BR.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Gerenciador Avançado de Temas"
PK�{�[{�${@@8language/pt-PT/pt-PT.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Com o Advanced Template Manager terá
opções e funcionalidades adicionais para gerir os seus modelos."

ATP_SETTINGS="Por fgavor, ver configurações em[[%1:start
link%]]Gestor de modelos[[%2:end link%]]."
ATP_THE_COMPONENT="o componente Advanced Template Manager"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/pt-PT/pt-PT.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[�����8language/ru-RU/ru-RU.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="С помощью Advanced Template
Manager у вас есть дополнительные варианты и
возможности для управления
шаблонами."

ATP_SETTINGS="Пожалуйста перейдите в [[%1:start
link%]]Advanced Template Manager[[%2:end link%]] для его
настройки."
ATP_THE_COMPONENT="компонент Advanced Template Manager"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/ru-RU/ru-RU.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[��888language/sv-SE/sv-SE.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Aktivitetslogg - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Sparar aktiviteter för
användare av Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Med Advanced Template Manager får du
extra alternativ och funktioner till dina sidmallar."

ATP_SETTINGS="Gå till [[%1:start link%]]Mallar[[%2:end link%]] för
inställningar."
ATP_THE_COMPONENT="Komponenten Advanced Template Manager"
ATP_THE_SYSTEM_PLUGIN="Advanced Template Manager system-plugin"

ATP_ACTION_FOLDER_FILE_ACTIONS="Mapp/Fil-aktiviteter"
ATP_ACTION_TEMPLATE_COPY="Kopiera Sidmall"
ATP_ACTIONLOGS_FILE_ADDED="Användare <a
href='{accountlink}'>{username}</a> lade till <a
href='{filelink}'>{file}</a> till sidmall
{template}"
ATP_ACTIONLOGS_FILE_DELETED="Användare <a
href='{accountlink}'>{username}</a> tog bort {file}
från sidmallen {template}"
ATP_ACTIONLOGS_FILE_UPDATED="Användare <a
href='{accountlink}'>{username}</a> uppdaterade <a
href='{filelink}'>{file}</a> i sidmallen
{template}"
ATP_ACTIONLOGS_STYLE_SET_HOME="Användare <a
href='{accountlink}'>{username}</a> ändrade standard
sidmallstil till <a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="Användare <a
href='{accountlink}'>{username}</a> skpade en ny sidmall
kallad '{to_name}' (kopia av '{from_name}')"
ATP_TEMPLATE_FILE="sidmallfil"
PK�{�[�8�|��<language/sv-SE/sv-SE.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Aktivitetslogg - Regular Labs -
Advanced Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Sparar aktiviteter för
användare av Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[am���8language/tr-TR/tr-TR.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs - Advanced
Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Kullanıcıların Advanced
Template Manager bileşeninde yaptığı işlemler kaydededilir."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Advanced Template Manager ile temaları
denetlemek için ek seçenek ve işlevler eklenebilir."

ATP_SETTINGS="Ayarlar için [[%1:start link%]]Template Manager sistem
uygulama eki[[%2:end link%]] bölümüne bakın."
ATP_THE_COMPONENT="Advanced Template Manager bileşeni"
ATP_THE_SYSTEM_PLUGIN="Advanced Template Manager Sistem Uygulama
Eki"

ATP_ACTION_FOLDER_FILE_ACTIONS="Klasör/Dosya İşlemleri"
ATP_ACTION_TEMPLATE_COPY="Temayı Kopyalayın"
ATP_ACTIONLOGS_FILE_ADDED="<a
href='{accountlink}'>{username}</a> kullanıcısı
{template} temasına <a href='{filelink}'>{file}</a>
dosyasını ekledi"
ATP_ACTIONLOGS_FILE_DELETED="<a
href='{accountlink}'>{username}</a> kullanıcısı
{template} temasından <a
href='{filelink}'>{file}</a> dosyasını sildi"
ATP_ACTIONLOGS_FILE_UPDATED="<a
href='{accountlink}'>{username}</a> kullanıcısı
{template} temasında <a href='{filelink}'>{file}</a>
dosyasını güncelledi"
ATP_ACTIONLOGS_STYLE_SET_HOME="<a
href='{accountlink}'>{username}</a> kullanıcısı
varsayılan tema biçemini <a
href='{style_link}'>{style_name}</a> olarak
değiştirdi"
ATP_ACTIONLOGS_TEMPLATE_COPY="<a
href='{accountlink}'>{username}</a> kullanıcısı
'{to_name}' ('{from_name}' kopyası) adında bir tema
oluşturdu"
ATP_TEMPLATE_FILE="Tema Dosyası"
PK�{�[�uD��<language/tr-TR/tr-TR.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs - Advanced
Template Manager"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Kullanıcıların Advanced
Template Manager bileşeninde yaptığı işlemler kaydededilir."
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[:���8language/uk-UA/uk-UA.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="З Advanced Template Manager ви
отримаєте додаткові можливості і
функціональність для управління вашими
шаблонами."

ATP_SETTINGS="Будь ласка використовуйте
[[%1:start link%]]Template Manager[[%2:end link%]] для
налаштування."
ATP_THE_COMPONENT="компонент Advanced Template Manager"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/uk-UA/uk-UA.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[j���PP8language/vi-VN/vi-VN.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"

ADVANCEDTEMPLATEMANAGER_DESC="Với Advanced Template Manager bạn
có các tùy chọn và tính năng thêm để quản lý template của
bạn."

ATP_SETTINGS="Vui lòng xem [[%1:start link%]]Template Manager[[%2:end
link%]] để thiết lập."
ATP_THE_COMPONENT="the Advanced Template Manager component"
; ATP_THE_SYSTEM_PLUGIN="the Advanced Template Manager system
plugin"

; ATP_ACTION_FOLDER_FILE_ACTIONS="Folder/File Actions"
; ATP_ACTION_TEMPLATE_COPY="Copy Template"
; ATP_ACTIONLOGS_FILE_ADDED="User <a
href='{accountlink}'>{username}</a> added <a
href='{filelink}'>{file}</a> to template
{template}"
; ATP_ACTIONLOGS_FILE_DELETED="User <a
href='{accountlink}'>{username}</a> deleted {file} from
template {template}"
; ATP_ACTIONLOGS_FILE_UPDATED="User <a
href='{accountlink}'>{username}</a> updated <a
href='{filelink}'>{file}</a> in template
{template}"
; ATP_ACTIONLOGS_STYLE_SET_HOME="User <a
href='{accountlink}'>{username}</a> changed the default
template style to <a
href='{style_link}'>{style_name}</a>"
; ATP_ACTIONLOGS_TEMPLATE_COPY="User <a
href='{accountlink}'>{username}</a> created a new
template called '{to_name}' (copy of
'{from_name}')"
; ATP_TEMPLATE_FILE="template file"
PK�{�[���e��<language/vi-VN/vi-VN.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="Action Log - Regular Labs -
Advanced Template Manager"
; PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="Record the actions of users
for Advanced Template Manager"
ADVANCEDTEMPLATEMANAGER="Advanced Template Manager"
PK�{�[~G����8language/zh-CN/zh-CN.plg_actionlog_advancedtemplates.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="操作日志 - Regular Labs -
高级模板管理器"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="记录高级模板管理器用户的操作"
ADVANCEDTEMPLATEMANAGER="高级模板管理器"

ADVANCEDTEMPLATEMANAGER_DESC="使用高级模板管理器,您可以使用其他选项和功能来控制模板。"

ATP_SETTINGS="有关设置,请参见[[%1:start
link%]]模板管理器[[%2:end link%]]。"
ATP_THE_COMPONENT="高级模板管理器组件"
ATP_THE_SYSTEM_PLUGIN="高级模板管理器系统插件"

ATP_ACTION_FOLDER_FILE_ACTIONS="文件夹/文件操作"
ATP_ACTION_TEMPLATE_COPY="复制模板"
ATP_ACTIONLOGS_FILE_ADDED="用户<a
href='{accountlink}'>{username}</a>将<a
href='{filelink}'>{file}</a>添加到模板{template}"
ATP_ACTIONLOGS_FILE_DELETED="用户<a
href='{accountlink}'>{username}</a>已从模板{template}中删除{file}"
ATP_ACTIONLOGS_FILE_UPDATED="用户<a
href='{accountlink}'>{username}</a>已从模板{template}中更新<a
href='{filelink}'>{file}</a>"
ATP_ACTIONLOGS_STYLE_SET_HOME="用户<a
href='{accountlink}'>{username}</a>将默认模板样式更改为<a
href='{style_link}'>{style_name}</a>"
ATP_ACTIONLOGS_TEMPLATE_COPY="用户<a
href='{accountlink}'>{username}</a>创建了一个名为“{to_name}”的新模板(“{from_name}”的副本)"
ATP_TEMPLATE_FILE="模板文件"
PK�{�[iV�;<language/zh-CN/zh-CN.plg_actionlog_advancedtemplates.sys.ininu�[���;;
@package         Advanced Template Manager
;; @version         3.9.5
;; 
;; @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_ACTIONLOG_ADVANCEDTEMPLATES="操作日志 - Regular Labs -
高级模板管理器"
PLG_ACTIONLOG_ADVANCEDTEMPLATES_DESC="记录高级模板管理器用户的操作"
ADVANCEDTEMPLATEMANAGER="高级模板管理器"
PKI�[����

advancedtemplates.phpnu�[���PKI�[YOm�kkOadvancedtemplates.xmlnu�[���PKI�[���ZBB5�language/ar-AA/ar-AA.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�language/ar-AA/ar-AA.plg_system_advancedtemplates.sys.ininu�[���PKI�[���ZBB5�"language/ar-SA/ar-SA.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9O(language/ar-SA/ar-SA.plg_system_advancedtemplates.sys.ininu�[���PKI�[��tdd5Q+language/az-AZ/az-AZ.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��91language/az-AZ/az-AZ.plg_system_advancedtemplates.sys.ininu�[���PKI�[���54language/bg-BG/bg-BG.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��98:language/bg-BG/bg-BG.plg_system_advancedtemplates.sys.ininu�[���PKI�[ˬfhh5:=language/bn-BD/bn-BD.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9Clanguage/bn-BD/bn-BD.plg_system_advancedtemplates.sys.ininu�[���PKI�[���8##5	Flanguage/bs-BA/bs-BA.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�Klanguage/bs-BA/bs-BA.plg_system_advancedtemplates.sys.ininu�[���PKI�[#1?Z885�Nlanguage/ca-ES/ca-ES.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��90Tlanguage/ca-ES/ca-ES.plg_system_advancedtemplates.sys.ininu�[���PKI�[��3�TT52Wlanguage/cs-CZ/cs-CZ.plg_system_advancedtemplates.ininu�[���PKI�[zb1@��9�\language/cs-CZ/cs-CZ.plg_system_advancedtemplates.sys.ininu�[���PKI�[vi�ll5�_language/da-DK/da-DK.plg_system_advancedtemplates.ininu�[���PKI�[��
=��9�elanguage/da-DK/da-DK.plg_system_advancedtemplates.sys.ininu�[���PKI�[����5�hlanguage/de-DE/de-DE.plg_system_advancedtemplates.ininu�[���PKI�[�_i]��9�nlanguage/de-DE/de-DE.plg_system_advancedtemplates.sys.ininu�[���PKI�[�]\$��5�qlanguage/el-GR/el-GR.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�wlanguage/el-GR/el-GR.plg_system_advancedtemplates.sys.ininu�[���PKI�[�LM05�zlanguage/en-GB/en-GB.plg_system_advancedtemplates.ininu�[���PKI�[}~ؼ��9N�language/en-GB/en-GB.plg_system_advancedtemplates.sys.ininu�[���PKI�[��ԓDD5J�language/es-CL/es-CL.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�language/es-CL/es-CL.plg_system_advancedtemplates.sys.ininu�[���PKI�["^�$ee5��language/es-ES/es-ES.plg_system_advancedtemplates.ininu�[���PKI�[�@���9��language/es-ES/es-ES.plg_system_advancedtemplates.sys.ininu�[���PKI�[C$�[[5ڔlanguage/et-EE/et-EE.plg_system_advancedtemplates.ininu�[���PKI�[���%��9��language/et-EE/et-EE.plg_system_advancedtemplates.sys.ininu�[���PKI�[���WW5��language/fa-IR/fa-IR.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9n�language/fa-IR/fa-IR.plg_system_advancedtemplates.sys.ininu�[���PKI�[ї�7>>5p�language/fi-FI/fi-FI.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�language/fi-FI/fi-FI.plg_system_advancedtemplates.sys.ininu�[���PKI�[Z,d���5�language/fr-FR/fr-FR.plg_system_advancedtemplates.ininu�[���PKI�[؀K���9�language/fr-FR/fr-FR.plg_system_advancedtemplates.sys.ininu�[���PKI�[�����5�language/hi-IN/hi-IN.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9;�language/hi-IN/hi-IN.plg_system_advancedtemplates.sys.ininu�[���PKI�[�4N�))5=�language/hr-HR/hr-HR.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9��language/hr-HR/hr-HR.plg_system_advancedtemplates.sys.ininu�[���PKI�[j,SBB5��language/hu-HU/hu-HU.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9t�language/hu-HU/hu-HU.plg_system_advancedtemplates.sys.ininu�[���PKI�[��5$$5v�language/id-ID/id-ID.plg_system_advancedtemplates.ininu�[���PKI�[[]����9��language/id-ID/id-ID.plg_system_advancedtemplates.sys.ininu�[���PKI�[�225��language/it-IT/it-IT.plg_system_advancedtemplates.ininu�[���PKI�[R�z#��9��language/it-IT/it-IT.plg_system_advancedtemplates.sys.ininu�[���PKI�[�@�5��language/ja-JP/ja-JP.plg_system_advancedtemplates.ininu�[���PKI�[Ձh_��9��language/ja-JP/ja-JP.plg_system_advancedtemplates.sys.ininu�[���PKI�[���VV5�language/lt-LT/lt-LT.plg_system_advancedtemplates.ininu�[���PKI�[�꿴�9��language/lt-LT/lt-LT.plg_system_advancedtemplates.sys.ininu�[���PKI�[�i�=??5�language/nb-NO/nb-NO.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9~�language/nb-NO/nb-NO.plg_system_advancedtemplates.sys.ininu�[���PKI�[�T�YY5��language/nl-BE/nl-BE.plg_system_advancedtemplates.ininu�[���PKI�[?bg��9>language/nl-BE/nl-BE.plg_system_advancedtemplates.sys.ininu�[���PKI�[x��eLL5?language/nl-NL/nl-NL.plg_system_advancedtemplates.ininu�[���PKI�[���9�language/nl-NL/nl-NL.plg_system_advancedtemplates.sys.ininu�[���PKI�[��CSMM5�language/pl-PL/pl-PL.plg_system_advancedtemplates.ininu�[���PKI�[r_�4��9�language/pl-PL/pl-PL.plg_system_advancedtemplates.sys.ininu�[���PKI�[I
�zz5�language/pt-BR/pt-BR.plg_system_advancedtemplates.ininu�[���PKI�[C�����9�language/pt-BR/pt-BR.plg_system_advancedtemplates.sys.ininu�[���PKI�[�SXD??5�!language/pt-PT/pt-PT.plg_system_advancedtemplates.ininu�[���PKI�[+�+@��97'language/pt-PT/pt-PT.plg_system_advancedtemplates.sys.ininu�[���PKI�[n�x##59*language/ro-RO/ro-RO.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�/language/ro-RO/ro-RO.plg_system_advancedtemplates.sys.ininu�[���PKI�[!���RR5�2language/ru-RU/ru-RU.plg_system_advancedtemplates.ininu�[���PKI�[���S��9z9language/ru-RU/ru-RU.plg_system_advancedtemplates.sys.ininu�[���PKI�[����TT5�<language/sk-SK/sk-SK.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9[Blanguage/sk-SK/sk-SK.plg_system_advancedtemplates.sys.ininu�[���PKI�[u�++5]Elanguage/sl-SI/sl-SI.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�Jlanguage/sl-SI/sl-SI.plg_system_advancedtemplates.sys.ininu�[���PKI�[�]V�555�Mlanguage/sr-RS/sr-RS.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�Slanguage/sr-RS/sr-RS.plg_system_advancedtemplates.sys.ininu�[���PKI�[��`555�Vlanguage/sr-YU/sr-YU.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9%\language/sr-YU/sr-YU.plg_system_advancedtemplates.sys.ininu�[���PKI�[��--5'_language/sv-SE/sv-SE.plg_system_advancedtemplates.ininu�[���PKI�[D0�a��9�dlanguage/sv-SE/sv-SE.plg_system_advancedtemplates.sys.ininu�[���PKI�[�EЧ�5�glanguage/th-TH/th-TH.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9�mlanguage/th-TH/th-TH.plg_system_advancedtemplates.sys.ininu�[���PKI�[Q�qc~~5�planguage/tr-TR/tr-TR.plg_system_advancedtemplates.ininu�[���PKI�[A�Ӥ��9�vlanguage/tr-TR/tr-TR.plg_system_advancedtemplates.sys.ininu�[���PKI�[�kC�775�ylanguage/uk-UA/uk-UA.plg_system_advancedtemplates.ininu�[���PKI�[�9z���9R�language/uk-UA/uk-UA.plg_system_advancedtemplates.sys.ininu�[���PKI�[���OO5j�language/vi-VN/vi-VN.plg_system_advancedtemplates.ininu�[���PKI�[}~ؼ��9�language/vi-VN/vi-VN.plg_system_advancedtemplates.sys.ininu�[���PKI�[4�SR��5�language/zh-CN/zh-CN.plg_system_advancedtemplates.ininu�[���PKI�[�!0�zz9Z�language/zh-CN/zh-CN.plg_system_advancedtemplates.sys.ininu�[���PKI�[���

5=�language/zh-TW/zh-TW.plg_system_advancedtemplates.ininu�[���PKI�[�Ս$��9™language/zh-TW/zh-TW.plg_system_advancedtemplates.sys.ininu�[���PKI�[+B��}Y}YĜscript.install.helper.phpnu�[���PKI�[��c�QQ��script.install.phpnu�[���PKI�[�$���src/Document.phpnu�[���PKI�[������>src/Params.phpnu�[���PKI�[��Ͳ�zvendor/autoload.phpnu�[���PKI�[?�6H��%ovendor/composer/autoload_classmap.phpnu�[���PKI�[�-�z��'Tvendor/composer/autoload_namespaces.phpnu�[���PKI�[������!=vendor/composer/autoload_psr4.phpnu�[���PKI�[��yW��!fvendor/composer/autoload_real.phpnu�[���PKI�[Zj��#�$vendor/composer/autoload_static.phpnu�[���PKI�[f�p�,�,�'vendor/composer/ClassLoader.phpnu�[���PKI�[D�hpUvendor/composer/installed.jsonnu�[���PKI�[
�..kUvendor/composer/LICENSEnu�[���PK�{�[�כ�>>8�Ylanguage/cs-CZ/cs-CZ.plg_actionlog_advancedtemplates.ininu�[���PK�{�[�ȯ��<�alanguage/cs-CZ/cs-CZ.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[��6VV8�dlanguage/da-DK/da-DK.plg_actionlog_advancedtemplates.ininu�[���PK�{�[�5J��<Kllanguage/da-DK/da-DK.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[l�?���8Tolanguage/de-DE/de-DE.plg_actionlog_advancedtemplates.ininu�[���PK�{�[�����<>wlanguage/de-DE/de-DE.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[�4�8Mzlanguage/en-GB/en-GB.plg_actionlog_advancedtemplates.ininu�[���PK�{�[ܡ�f��<ԁlanguage/en-GB/en-GB.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[RR�ܣ�8Ԅlanguage/et-EE/et-EE.plg_actionlog_advancedtemplates.ininu�[���PK�{�[ɺ�<ߌlanguage/et-EE/et-EE.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[*0���8�language/fr-FR/fr-FR.plg_actionlog_advancedtemplates.ininu�[���PK�{�[0(s{��<G�language/fr-FR/fr-FR.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[%(+�BB8e�language/id-ID/id-ID.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<�language/id-ID/id-ID.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[�+�558�language/it-IT/it-IT.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<��language/it-IT/it-IT.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[8�L��8��language/ja-JP/ja-JP.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<��language/ja-JP/ja-JP.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[���OO8��language/lt-LT/lt-LT.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���
��<q�language/lt-LT/lt-LT.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[n��yQQ8~�language/nl-BE/nl-BE.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<7�language/nl-BE/nl-BE.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[�;e�ll8;�language/nl-NL/nl-NL.plg_actionlog_advancedtemplates.ininu�[���PK�{�[��*`��<�language/nl-NL/nl-NL.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[m0�aa8�language/pt-BR/pt-BR.plg_actionlog_advancedtemplates.ininu�[���PK�{�[M�6`��<��language/pt-BR/pt-BR.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[{�${@@8��language/pt-PT/pt-PT.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<��language/pt-PT/pt-PT.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[�����8��language/ru-RU/ru-RU.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<�language/ru-RU/ru-RU.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[��888�language/sv-SE/sv-SE.plg_actionlog_advancedtemplates.ininu�[���PK�{�[�8�|��<planguage/sv-SE/sv-SE.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[am���8zlanguage/tr-TR/tr-TR.plg_actionlog_advancedtemplates.ininu�[���PK�{�[�uD��<�language/tr-TR/tr-TR.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[:���8�language/uk-UA/uk-UA.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<language/uk-UA/uk-UA.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[j���PP8language/vi-VN/vi-VN.plg_actionlog_advancedtemplates.ininu�[���PK�{�[���e��<�%language/vi-VN/vi-VN.plg_actionlog_advancedtemplates.sys.ininu�[���PK�{�[~G����8�(language/zh-CN/zh-CN.plg_actionlog_advancedtemplates.ininu�[���PK�{�[iV�;<0language/zh-CN/zh-CN.plg_actionlog_advancedtemplates.sys.ininu�[���PK��CA3